Skip to content

Commit

Permalink
metadata.xml 20241116 ~ 3.7.0-Preview1 ExO Release (+1 day)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwille committed Nov 16, 2024
1 parent 0f29c37 commit ce98863
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 13 deletions.
14 changes: 14 additions & 0 deletions docs/metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5101,6 +5101,10 @@
<Property Name="ConditionalCompany" Type="Collection(Edm.String)" />
<Property Name="ConditionalDepartment" Type="Collection(Edm.String)" />
<Property Name="AcceptMessagesOnlyFromSendersOrMembers" Type="Collection(Edm.String)" />
<Property Name="BypassModerationFromSendersOrMembersWithDisplayNames" Type="Collection(Edm.String)" />
<Property Name="AcceptMessagesOnlyFromSendersOrMembersWithDisplayNames" Type="Collection(Edm.String)" />
<Property Name="GrantSendOnBehalfToWithDisplayNames" Type="Collection(Edm.String)" />
<Property Name="ModeratedByWithDisplayNames" Type="Collection(Edm.String)" />
<Property Name="RequireSenderAuthenticationEnabled" Type="Edm.Boolean" />
<Property Name="ModerationEnabled" Type="Edm.Boolean" />
<Property Name="ModeratedBy" Type="Collection(Edm.String)" />
Expand Down Expand Up @@ -5150,6 +5154,10 @@
<PropertyPath>ConditionalCompany</PropertyPath>
<PropertyPath>ConditionalDepartment</PropertyPath>
<PropertyPath>AcceptMessagesOnlyFromSendersOrMembers</PropertyPath>
<PropertyPath>BypassModerationFromSendersOrMembersWithDisplayNames</PropertyPath>
<PropertyPath>AcceptMessagesOnlyFromSendersOrMembersWithDisplayNames</PropertyPath>
<PropertyPath>GrantSendOnBehalfToWithDisplayNames</PropertyPath>
<PropertyPath>ModeratedByWithDisplayNames</PropertyPath>
<PropertyPath>RequireSenderAuthenticationEnabled</PropertyPath>
<PropertyPath>ModerationEnabled</PropertyPath>
<PropertyPath>ModeratedBy</PropertyPath>
Expand Down Expand Up @@ -5272,6 +5280,9 @@
<Property Name="MigrationToUnifiedGroupInProgress" Type="Edm.Boolean" />
<Property Name="RejectMessagesFromSendersOrMembers" Type="Collection(Edm.String)" />
<Property Name="AcceptMessagesOnlyFromSendersOrMembers" Type="Collection(Edm.String)" />
<Property Name="GrantSendOnBehalfToWithDisplayNames" Type="Collection(Edm.String)" />
<Property Name="AcceptMessagesOnlyFromSendersOrMembersWithDisplayNames" Type="Collection(Edm.String)" />
<Property Name="RejectMessagesFromSendersOrMembersWithDisplayNames" Type="Collection(Edm.String)" />
<Property Name="SendAsPermissionList" Type="Collection(Edm.String)" />
<Property Name="ObjectId" Type="Edm.String" />
<Property Name="DistinguishedName" Type="Edm.String" />
Expand All @@ -5291,6 +5302,9 @@
<PropertyPath>Language</PropertyPath>
<PropertyPath>RejectMessagesFromSendersOrMembers</PropertyPath>
<PropertyPath>AcceptMessagesOnlyFromSendersOrMembers</PropertyPath>
<PropertyPath>GrantSendOnBehalfToWithDisplayNames</PropertyPath>
<PropertyPath>AcceptMessagesOnlyFromSendersOrMembersWithDisplayNames</PropertyPath>
<PropertyPath>RejectMessagesFromSendersOrMembersWithDisplayNames</PropertyPath>
<PropertyPath>SendAsPermissionList</PropertyPath>
<PropertyPath>ObjectId</PropertyPath>
<PropertyPath>DistinguishedName</PropertyPath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.OData.Client" Version="7.21.3" />
<PackageReference Include="Microsoft.OData.Core" Version="7.21.3" />
<PackageReference Include="Microsoft.OData.Edm" Version="7.21.3" />
<PackageReference Include="Microsoft.Spatial" Version="7.21.3" />
<PackageReference Include="Microsoft.OData.Client" Version="8.2.1" />
<PackageReference Include="Microsoft.OData.Core" Version="8.2.1" />
<PackageReference Include="Microsoft.OData.Edm" Version="8.2.1" />
<PackageReference Include="Microsoft.Spatial" Version="8.2.1" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.4.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.66.2" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.2.1" />
</ItemGroup>

<ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions src/GetMailBoxDemo/GetMailBoxDemo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.OData.Core" Version="7.21.3" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.1" />
<PackageReference Include="Microsoft.OData.Core" Version="8.2.1" />
<PackageReference Include="Simple.OData.V4.Client" Version="6.0.1" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 2 additions & 4 deletions src/GetMailBoxDemo/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
using Microsoft.Extensions.Configuration;
using Microsoft.OData.Client;
using Simple.OData.Client;
using System;
using System.Net.Http.Headers;
using System.Security.Principal;
using ExO = AdminApiClient.For.ExchangeOnline.OData;

var builder = new ConfigurationBuilder()
Expand All @@ -22,7 +20,7 @@
// ALWAYS get the current metadata document
await GetCurrentMetadata();

//string mailboxesAsString = await Scenario_PlainHttpAndJson();
string mailboxesAsString = await Scenario_PlainHttpAndJson();
//Console.WriteLine(mailboxesAsString);

//var mailboxesAsEnumberable = await Scenario_SimpleODataClient_CustomDto();
Expand All @@ -39,7 +37,7 @@

// await Scenario_SimpleODataClient_VariousQueries();
// await Scenario_SimpleODataClient_MaxPageSize_LocalMetadataDoc();
await Scenario_SimpleODataClient_MailboxStatistics();
// await Scenario_SimpleODataClient_MailboxStatistics();

Console.ReadKey();

Expand Down

0 comments on commit ce98863

Please sign in to comment.