@microsoft/typespec-msgraph-reference 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +17 -17
- package/.rush/temp/shrinkwrap-deps.json +37 -59
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +725 -44
- package/lib/Bleu/V1.0/main.tsp +25 -0
- package/lib/Delos/Beta/main.tsp +1477 -51
- package/lib/Delos/V1.0/main.tsp +670 -9
- package/lib/Fairfax/Beta/main.tsp +828 -45
- package/lib/Fairfax/V1.0/main.tsp +26 -11
- package/lib/GovSG/Beta/main.tsp +112 -0
- package/lib/Mooncake/Beta/main.tsp +725 -44
- package/lib/Prod/Beta/main.tsp +203 -30
- package/lib/Prod/V1.0/main.tsp +33 -0
- package/lib/USNat/Beta/main.tsp +197 -3
- package/lib/USNat/V1.0/main.tsp +24 -9
- package/lib/USSec/Beta/main.tsp +197 -3
- package/lib/USSec/V1.0/main.tsp +24 -9
- package/package.json +5 -5
package/lib/USNat/Beta/main.tsp
CHANGED
|
@@ -8,7 +8,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
@privatePreviewDefinition("MicrosofEntitlementManagementCustomextensions", "2023-03-01", "2023-12-31", "<theOwner>")
|
|
11
|
-
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "
|
|
11
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2025-03-26", "2026-03-26", "private preview elements are required to be marked as deprecated")
|
|
12
12
|
// Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
|
|
13
13
|
@privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
|
|
14
14
|
@deprecatedDefinition("SynchronizationSecret_Deprecation", "<ChangeLogCategory>", "2026-02-06", "2027-07-06", "Use connectivityParameters for oauth flows and scim endpoint connectivity. Use SynchronizationJobSettings for job-specific settings This property will be removed.")
|
|
@@ -396,6 +396,7 @@ namespace reference.`microsoft.graph` {
|
|
|
396
396
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
397
397
|
audiences: audiencesConfiguration | null;
|
|
398
398
|
identifierUris: identifierUriConfiguration | null;
|
|
399
|
+
redirectUris: redirectUriConfiguration | null;
|
|
399
400
|
}
|
|
400
401
|
|
|
401
402
|
@abstract
|
|
@@ -940,6 +941,26 @@ namespace reference.`microsoft.graph` {
|
|
|
940
941
|
thumbnailUrl: string | null;
|
|
941
942
|
}
|
|
942
943
|
|
|
944
|
+
@complex model chatMessageBody {
|
|
945
|
+
content: string | null;
|
|
946
|
+
contentType: bodyType | null;
|
|
947
|
+
messageBodyContentType: chatMessageBodyContentType | null;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
@complex model chatMessageCitation {
|
|
951
|
+
excerpt: string | null;
|
|
952
|
+
iconType: string | null;
|
|
953
|
+
id: int32 | null;
|
|
954
|
+
sensitivityLabel: chatMessageCitationSensitivityLabel | null;
|
|
955
|
+
title: string | null;
|
|
956
|
+
webUrl: string | null;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
@complex model chatMessageCitationSensitivityLabel {
|
|
960
|
+
description: string | null;
|
|
961
|
+
displayName: string | null;
|
|
962
|
+
}
|
|
963
|
+
|
|
943
964
|
@open
|
|
944
965
|
@complex model chatMessageFromIdentitySet extends identitySet {
|
|
945
966
|
}
|
|
@@ -1391,6 +1412,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1391
1412
|
targets: crossTenantAccessPolicyTarget[] | null;
|
|
1392
1413
|
}
|
|
1393
1414
|
|
|
1415
|
+
@complex model crossTenantGroupSyncInbound {
|
|
1416
|
+
isSyncAllowed: boolean;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1394
1419
|
@complex model crossTenantUserSyncInbound {
|
|
1395
1420
|
isSyncAllowed: boolean | null;
|
|
1396
1421
|
}
|
|
@@ -1407,6 +1432,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1407
1432
|
@complex model customAppManagementApplicationConfiguration {
|
|
1408
1433
|
audiences: audiencesConfiguration | null;
|
|
1409
1434
|
identifierUris: identifierUriConfiguration | null;
|
|
1435
|
+
redirectUris: redirectUriConfiguration | null;
|
|
1410
1436
|
}
|
|
1411
1437
|
|
|
1412
1438
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
@@ -2985,8 +3011,26 @@ namespace reference.`microsoft.graph` {
|
|
|
2985
3011
|
internalUrl: string | null;
|
|
2986
3012
|
}
|
|
2987
3013
|
|
|
3014
|
+
@complex model onPremisesCurrentExportData {
|
|
3015
|
+
clientMachineName: string | null;
|
|
3016
|
+
pendingObjectsAddition: int32 | null;
|
|
3017
|
+
pendingObjectsDeletion: int32 | null;
|
|
3018
|
+
pendingObjectsUpdate: int32 | null;
|
|
3019
|
+
serviceAccount: string | null;
|
|
3020
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
3021
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
3022
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
3023
|
+
}
|
|
3024
|
+
|
|
2988
3025
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
2989
3026
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
3027
|
+
anchorAttribute: string | null;
|
|
3028
|
+
applicationId: string | null;
|
|
3029
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
3030
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
3031
|
+
synchronizationClientVersion: string | null;
|
|
3032
|
+
synchronizationInterval: duration | null;
|
|
3033
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
2990
3034
|
}
|
|
2991
3035
|
|
|
2992
3036
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -3073,6 +3117,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3073
3117
|
singleSignOnMode: singleSignOnMode | null;
|
|
3074
3118
|
}
|
|
3075
3119
|
|
|
3120
|
+
@complex model onPremisesWritebackConfiguration {
|
|
3121
|
+
unifiedGroupContainer: string | null;
|
|
3122
|
+
userContainer: string | null;
|
|
3123
|
+
}
|
|
3124
|
+
|
|
3076
3125
|
@complex model onTokenIssuanceStartCustomExtensionHandler extends onTokenIssuanceStartHandler {
|
|
3077
3126
|
configuration: customExtensionOverwriteConfiguration | null;
|
|
3078
3127
|
@references customExtension: onTokenIssuanceStartCustomExtension | null;
|
|
@@ -3732,6 +3781,89 @@ namespace reference.`microsoft.graph` {
|
|
|
3732
3781
|
retentionPeriodOverrideDays: int32 | null;
|
|
3733
3782
|
}
|
|
3734
3783
|
|
|
3784
|
+
@complex model redirectUriAllowedDomainConfiguration {
|
|
3785
|
+
allowedDomains: string[];
|
|
3786
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3787
|
+
isStateSetByMicrosoft: boolean;
|
|
3788
|
+
publicClient: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
3789
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3790
|
+
spa: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
3791
|
+
state: appManagementRestrictionState;
|
|
3792
|
+
web: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3795
|
+
@complex model redirectUriAllowedSchemeConfiguration {
|
|
3796
|
+
allowedSchemes: string[];
|
|
3797
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3798
|
+
isStateSetByMicrosoft: boolean;
|
|
3799
|
+
publicClient: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
3800
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3801
|
+
spa: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
3802
|
+
state: appManagementRestrictionState;
|
|
3803
|
+
web: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3806
|
+
@complex model redirectUriBlockedDomainConfiguration {
|
|
3807
|
+
blockedDomains: string[];
|
|
3808
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3809
|
+
isStateSetByMicrosoft: boolean;
|
|
3810
|
+
publicClient: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
3811
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3812
|
+
spa: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
3813
|
+
state: appManagementRestrictionState;
|
|
3814
|
+
web: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3817
|
+
@complex model redirectUriBlockedSchemeConfiguration {
|
|
3818
|
+
blockedSchemes: string[];
|
|
3819
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3820
|
+
exemptFormats: string[];
|
|
3821
|
+
isStateSetByMicrosoft: boolean;
|
|
3822
|
+
publicClient: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
3823
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3824
|
+
spa: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
3825
|
+
state: appManagementRestrictionState;
|
|
3826
|
+
web: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
@complex model redirectUriConfiguration {
|
|
3830
|
+
uriWithBlockedDomain: redirectUriBlockedDomainConfiguration | null;
|
|
3831
|
+
uriWithBlockedScheme: redirectUriBlockedSchemeConfiguration | null;
|
|
3832
|
+
uriWithoutAllowedDomain: redirectUriAllowedDomainConfiguration | null;
|
|
3833
|
+
uriWithoutAllowedScheme: redirectUriAllowedSchemeConfiguration | null;
|
|
3834
|
+
uriWithWildcard: redirectUriWildcardConfiguration | null;
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3837
|
+
@complex model redirectUriPlatformAllowedDomainConfiguration {
|
|
3838
|
+
allowedDomains: string[];
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
@complex model redirectUriPlatformAllowedSchemeConfiguration {
|
|
3842
|
+
allowedSchemes: string[];
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
@complex model redirectUriPlatformBlockedDomainConfiguration {
|
|
3846
|
+
blockedDomains: string[];
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
@complex model redirectUriPlatformBlockedSchemeConfiguration {
|
|
3850
|
+
blockedSchemes: string[];
|
|
3851
|
+
exemptFormats: string[];
|
|
3852
|
+
}
|
|
3853
|
+
|
|
3854
|
+
@complex model redirectUriWildcardConfiguration {
|
|
3855
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3856
|
+
excludeFormats: redirectUriWildcardExcludeFormats | null;
|
|
3857
|
+
isStateSetByMicrosoft: boolean;
|
|
3858
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3859
|
+
state: appManagementRestrictionState;
|
|
3860
|
+
}
|
|
3861
|
+
|
|
3862
|
+
@complex model redirectUriWildcardExcludeFormats {
|
|
3863
|
+
excludeWildcardsInPath: boolean;
|
|
3864
|
+
excludeWildcardsInPathWithDomains: string[];
|
|
3865
|
+
}
|
|
3866
|
+
|
|
3735
3867
|
@complex model referencedObject {
|
|
3736
3868
|
referencedObjectName: string | null;
|
|
3737
3869
|
referencedProperty: string | null;
|
|
@@ -4365,6 +4497,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4365
4497
|
upgradeAvailable: boolean | null;
|
|
4366
4498
|
}
|
|
4367
4499
|
|
|
4500
|
+
@open
|
|
4501
|
+
@complex model stringDictionary extends Dictionary {
|
|
4502
|
+
}
|
|
4503
|
+
|
|
4368
4504
|
@complex model stringKeyAttributeMappingSourceValuePair {
|
|
4369
4505
|
key: string | null;
|
|
4370
4506
|
value: attributeMappingSource | null;
|
|
@@ -5780,6 +5916,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5780
5916
|
}
|
|
5781
5917
|
|
|
5782
5918
|
@entity model admin extends MsGraph.SharedModels.entity {
|
|
5919
|
+
@contains entra: entra | null;
|
|
5783
5920
|
@contains people: peopleAdminSettings | null;
|
|
5784
5921
|
@contains serviceAnnouncement: serviceAnnouncement | null;
|
|
5785
5922
|
@contains sharepoint: sharepoint | null;
|
|
@@ -5812,6 +5949,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5812
5949
|
@entity model agentIdentity extends servicePrincipal {
|
|
5813
5950
|
agentIdentityBlueprintId: string;
|
|
5814
5951
|
@computed createdDateTime: offsetDateTime | null;
|
|
5952
|
+
managerApplications: guid;
|
|
5953
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
5954
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
5815
5955
|
@references sponsors: directoryObject[];
|
|
5816
5956
|
}
|
|
5817
5957
|
|
|
@@ -5824,6 +5964,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5824
5964
|
|
|
5825
5965
|
@open
|
|
5826
5966
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
5967
|
+
managerApplications: guid;
|
|
5827
5968
|
@references sponsors: directoryObject[];
|
|
5828
5969
|
}
|
|
5829
5970
|
|
|
@@ -6498,14 +6639,16 @@ namespace reference.`microsoft.graph` {
|
|
|
6498
6639
|
|
|
6499
6640
|
@entity model chatMessage extends entity {
|
|
6500
6641
|
attachments: chatMessageAttachment[] | null;
|
|
6501
|
-
body:
|
|
6642
|
+
body: chatMessageBody;
|
|
6502
6643
|
channelIdentity: channelIdentity | null;
|
|
6503
6644
|
chatId: string | null;
|
|
6645
|
+
citations: chatMessageCitation[] | null;
|
|
6504
6646
|
@computed createdDateTime: offsetDateTime | null;
|
|
6505
6647
|
deletedDateTime: offsetDateTime | null;
|
|
6506
6648
|
etag: string | null;
|
|
6507
6649
|
eventDetail: eventMessageDetail | null;
|
|
6508
6650
|
from: chatMessageFromIdentitySet | null;
|
|
6651
|
+
hasReplies: boolean;
|
|
6509
6652
|
importance: chatMessageImportance;
|
|
6510
6653
|
@computed lastEditedDateTime: offsetDateTime | null;
|
|
6511
6654
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
@@ -6528,7 +6671,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6528
6671
|
}
|
|
6529
6672
|
|
|
6530
6673
|
@entity model chatMessageInfo extends entity {
|
|
6531
|
-
body:
|
|
6674
|
+
body: chatMessageBody | null;
|
|
6532
6675
|
@computed createdDateTime: offsetDateTime | null;
|
|
6533
6676
|
eventDetail: eventMessageDetail | null;
|
|
6534
6677
|
from: chatMessageFromIdentitySet | null;
|
|
@@ -6849,6 +6992,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6849
6992
|
|
|
6850
6993
|
@entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
|
|
6851
6994
|
displayName: string | null;
|
|
6995
|
+
groupSyncInbound: crossTenantGroupSyncInbound | null;
|
|
6852
6996
|
@computed @key tenantId: string;
|
|
6853
6997
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
6854
6998
|
}
|
|
@@ -7282,6 +7426,9 @@ namespace reference.`microsoft.graph` {
|
|
|
7282
7426
|
@computed @key id: string;
|
|
7283
7427
|
}
|
|
7284
7428
|
|
|
7429
|
+
@entity model entra extends entity {
|
|
7430
|
+
}
|
|
7431
|
+
|
|
7285
7432
|
@entity model evaluateLabelJobResponse extends jobResponseBase {
|
|
7286
7433
|
result: evaluateLabelJobResultGroup | null;
|
|
7287
7434
|
}
|
|
@@ -8794,6 +8941,9 @@ namespace reference.`microsoft.graph` {
|
|
|
8794
8941
|
|
|
8795
8942
|
@entity model planner extends entity {
|
|
8796
8943
|
@contains buckets: plannerBucket[];
|
|
8944
|
+
|
|
8945
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
8946
|
+
@contains goals: plannerGoal[];
|
|
8797
8947
|
@contains plans: plannerPlan[];
|
|
8798
8948
|
@contains rosters: plannerRoster[];
|
|
8799
8949
|
@contains tasks: plannerTask[];
|
|
@@ -8821,6 +8971,18 @@ namespace reference.`microsoft.graph` {
|
|
|
8821
8971
|
@entity model plannerDelta extends entity {
|
|
8822
8972
|
}
|
|
8823
8973
|
|
|
8974
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
8975
|
+
@entity model plannerGoal extends plannerDelta {
|
|
8976
|
+
displayName: string;
|
|
8977
|
+
finishDate: offsetDateTime | null;
|
|
8978
|
+
notes: itemBody | null;
|
|
8979
|
+
planId: string;
|
|
8980
|
+
priority: int32 | null;
|
|
8981
|
+
startDate: offsetDateTime | null;
|
|
8982
|
+
status: plannerGoalStatus;
|
|
8983
|
+
@references tasks: plannerTask[];
|
|
8984
|
+
}
|
|
8985
|
+
|
|
8824
8986
|
@entity model plannerGroup extends entity {
|
|
8825
8987
|
@references plans: plannerPlan[];
|
|
8826
8988
|
}
|
|
@@ -8841,6 +9003,9 @@ namespace reference.`microsoft.graph` {
|
|
|
8841
9003
|
title: string;
|
|
8842
9004
|
@references buckets: plannerBucket[];
|
|
8843
9005
|
@contains details: plannerPlanDetails | null;
|
|
9006
|
+
|
|
9007
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
9008
|
+
@references goals: plannerGoal[];
|
|
8844
9009
|
@references tasks: plannerTask[];
|
|
8845
9010
|
}
|
|
8846
9011
|
|
|
@@ -8881,6 +9046,9 @@ namespace reference.`microsoft.graph` {
|
|
|
8881
9046
|
@computed createdDateTime: offsetDateTime | null;
|
|
8882
9047
|
creationSource: plannerTaskCreation | null;
|
|
8883
9048
|
dueDateTime: offsetDateTime | null;
|
|
9049
|
+
|
|
9050
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
9051
|
+
goalIds: string[];
|
|
8884
9052
|
hasChat: boolean;
|
|
8885
9053
|
hasDescription: boolean | null;
|
|
8886
9054
|
isArchived: boolean | null;
|
|
@@ -11088,6 +11256,10 @@ namespace reference.`microsoft.graph` {
|
|
|
11088
11256
|
@contains installedApps: userScopeTeamsAppInstallation[];
|
|
11089
11257
|
}
|
|
11090
11258
|
|
|
11259
|
+
@entity model uxSetting extends entity {
|
|
11260
|
+
restrictNonAdminAccess: nonAdminSetting;
|
|
11261
|
+
}
|
|
11262
|
+
|
|
11091
11263
|
@entity model verticalSection extends entity {
|
|
11092
11264
|
emphasis: sectionEmphasisType | null;
|
|
11093
11265
|
@contains webparts: webPart[];
|
|
@@ -12189,6 +12361,13 @@ namespace reference.`microsoft.graph` {
|
|
|
12189
12361
|
unknownFutureValue: 8,
|
|
12190
12362
|
}
|
|
12191
12363
|
|
|
12364
|
+
enum chatMessageBodyContentType {
|
|
12365
|
+
text: 0,
|
|
12366
|
+
html: 1,
|
|
12367
|
+
markdown: 2,
|
|
12368
|
+
unknownFutureValue: 3,
|
|
12369
|
+
}
|
|
12370
|
+
|
|
12192
12371
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
12193
12372
|
enum chatMessageImportance {
|
|
12194
12373
|
normal: 0,
|
|
@@ -13161,6 +13340,12 @@ namespace reference.`microsoft.graph` {
|
|
|
13161
13340
|
unknownFutureValue: 4,
|
|
13162
13341
|
}
|
|
13163
13342
|
|
|
13343
|
+
enum nonAdminSetting {
|
|
13344
|
+
`false`: 0,
|
|
13345
|
+
`true`: 1,
|
|
13346
|
+
unknownFutureValue: 2,
|
|
13347
|
+
}
|
|
13348
|
+
|
|
13164
13349
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
13165
13350
|
enum objectDefinitionMetadata {
|
|
13166
13351
|
PropertyNameAccountEnabled: 0,
|
|
@@ -13448,6 +13633,15 @@ namespace reference.`microsoft.graph` {
|
|
|
13448
13633
|
unknownFutureValue: 3,
|
|
13449
13634
|
}
|
|
13450
13635
|
|
|
13636
|
+
enum plannerGoalStatus {
|
|
13637
|
+
notStarted: 0,
|
|
13638
|
+
onTrack: 1,
|
|
13639
|
+
behind: 2,
|
|
13640
|
+
atRisk: 3,
|
|
13641
|
+
closed: 4,
|
|
13642
|
+
unknownFutureValue: 5,
|
|
13643
|
+
}
|
|
13644
|
+
|
|
13451
13645
|
enum plannerPlanAccessLevel {
|
|
13452
13646
|
readAccess: 0,
|
|
13453
13647
|
readWriteAccess: 1,
|
package/lib/USNat/V1.0/main.tsp
CHANGED
|
@@ -6201,30 +6201,36 @@ namespace reference.`microsoft.graph` {
|
|
|
6201
6201
|
}
|
|
6202
6202
|
|
|
6203
6203
|
@open
|
|
6204
|
-
@entity model onlineMeeting extends
|
|
6204
|
+
@entity model onlineMeeting extends onlineMeetingBase {
|
|
6205
|
+
attendeeReport: stream | null;
|
|
6206
|
+
broadcastSettings: broadcastMeetingSettings | null;
|
|
6207
|
+
creationDateTime: offsetDateTime | null;
|
|
6208
|
+
endDateTime: offsetDateTime | null;
|
|
6209
|
+
externalId: string | null;
|
|
6210
|
+
isBroadcast: boolean | null;
|
|
6211
|
+
participants: meetingParticipants | null;
|
|
6212
|
+
startDateTime: offsetDateTime | null;
|
|
6213
|
+
}
|
|
6214
|
+
|
|
6215
|
+
@abstract
|
|
6216
|
+
@open
|
|
6217
|
+
@entity model onlineMeetingBase extends entity {
|
|
6205
6218
|
allowAttendeeToEnableCamera: boolean | null;
|
|
6206
6219
|
allowAttendeeToEnableMic: boolean | null;
|
|
6207
6220
|
allowedPresenters: onlineMeetingPresenters | null;
|
|
6208
6221
|
allowMeetingChat: meetingChatMode | null;
|
|
6209
6222
|
allowParticipantsToChangeName: boolean | null;
|
|
6210
6223
|
allowTeamworkReactions: boolean | null;
|
|
6211
|
-
attendeeReport: stream | null;
|
|
6212
6224
|
audioConferencing: audioConferencing | null;
|
|
6213
|
-
broadcastSettings: broadcastMeetingSettings | null;
|
|
6214
6225
|
chatInfo: chatInfo | null;
|
|
6215
|
-
creationDateTime: offsetDateTime | null;
|
|
6216
|
-
endDateTime: offsetDateTime | null;
|
|
6217
|
-
externalId: string | null;
|
|
6218
|
-
isBroadcast: boolean | null;
|
|
6219
6226
|
isEntryExitAnnounced: boolean | null;
|
|
6220
6227
|
joinInformation: itemBody | null;
|
|
6221
6228
|
joinMeetingIdSettings: joinMeetingIdSettings | null;
|
|
6222
6229
|
joinWebUrl: string | null;
|
|
6223
6230
|
lobbyBypassSettings: lobbyBypassSettings | null;
|
|
6224
|
-
|
|
6231
|
+
meetingType: onlineMeetingType | null;
|
|
6225
6232
|
recordAutomatically: boolean | null;
|
|
6226
6233
|
shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
|
|
6227
|
-
startDateTime: offsetDateTime | null;
|
|
6228
6234
|
subject: string | null;
|
|
6229
6235
|
videoTeleconferenceId: string | null;
|
|
6230
6236
|
watermarkProtection: watermarkProtectionValues | null;
|
|
@@ -9775,6 +9781,15 @@ namespace reference.`microsoft.graph` {
|
|
|
9775
9781
|
coorganizer: 4,
|
|
9776
9782
|
}
|
|
9777
9783
|
|
|
9784
|
+
enum onlineMeetingType {
|
|
9785
|
+
adhoc: 0,
|
|
9786
|
+
scheduled: 1,
|
|
9787
|
+
recurring: 2,
|
|
9788
|
+
broadcast: 3,
|
|
9789
|
+
meetnow: 4,
|
|
9790
|
+
unknownFutureValue: 5,
|
|
9791
|
+
}
|
|
9792
|
+
|
|
9778
9793
|
@graphFlags
|
|
9779
9794
|
enum onlineMeetingVideoDisabledReason {
|
|
9780
9795
|
watermarkProtection: 1,
|