@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/USSec/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.")
|
|
@@ -413,6 +413,7 @@ namespace reference.`microsoft.graph` {
|
|
|
413
413
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
414
414
|
audiences: audiencesConfiguration | null;
|
|
415
415
|
identifierUris: identifierUriConfiguration | null;
|
|
416
|
+
redirectUris: redirectUriConfiguration | null;
|
|
416
417
|
}
|
|
417
418
|
|
|
418
419
|
@abstract
|
|
@@ -961,6 +962,26 @@ namespace reference.`microsoft.graph` {
|
|
|
961
962
|
thumbnailUrl: string | null;
|
|
962
963
|
}
|
|
963
964
|
|
|
965
|
+
@complex model chatMessageBody {
|
|
966
|
+
content: string | null;
|
|
967
|
+
contentType: bodyType | null;
|
|
968
|
+
messageBodyContentType: chatMessageBodyContentType | null;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
@complex model chatMessageCitation {
|
|
972
|
+
excerpt: string | null;
|
|
973
|
+
iconType: string | null;
|
|
974
|
+
id: int32 | null;
|
|
975
|
+
sensitivityLabel: chatMessageCitationSensitivityLabel | null;
|
|
976
|
+
title: string | null;
|
|
977
|
+
webUrl: string | null;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
@complex model chatMessageCitationSensitivityLabel {
|
|
981
|
+
description: string | null;
|
|
982
|
+
displayName: string | null;
|
|
983
|
+
}
|
|
984
|
+
|
|
964
985
|
@open
|
|
965
986
|
@complex model chatMessageFromIdentitySet extends identitySet {
|
|
966
987
|
}
|
|
@@ -1421,6 +1442,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1421
1442
|
targets: crossTenantAccessPolicyTarget[] | null;
|
|
1422
1443
|
}
|
|
1423
1444
|
|
|
1445
|
+
@complex model crossTenantGroupSyncInbound {
|
|
1446
|
+
isSyncAllowed: boolean;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1424
1449
|
@complex model crossTenantUserSyncInbound {
|
|
1425
1450
|
isSyncAllowed: boolean | null;
|
|
1426
1451
|
}
|
|
@@ -1437,6 +1462,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1437
1462
|
@complex model customAppManagementApplicationConfiguration {
|
|
1438
1463
|
audiences: audiencesConfiguration | null;
|
|
1439
1464
|
identifierUris: identifierUriConfiguration | null;
|
|
1465
|
+
redirectUris: redirectUriConfiguration | null;
|
|
1440
1466
|
}
|
|
1441
1467
|
|
|
1442
1468
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
@@ -3054,8 +3080,26 @@ namespace reference.`microsoft.graph` {
|
|
|
3054
3080
|
internalUrl: string | null;
|
|
3055
3081
|
}
|
|
3056
3082
|
|
|
3083
|
+
@complex model onPremisesCurrentExportData {
|
|
3084
|
+
clientMachineName: string | null;
|
|
3085
|
+
pendingObjectsAddition: int32 | null;
|
|
3086
|
+
pendingObjectsDeletion: int32 | null;
|
|
3087
|
+
pendingObjectsUpdate: int32 | null;
|
|
3088
|
+
serviceAccount: string | null;
|
|
3089
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
3090
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
3091
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
3092
|
+
}
|
|
3093
|
+
|
|
3057
3094
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
3058
3095
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
3096
|
+
anchorAttribute: string | null;
|
|
3097
|
+
applicationId: string | null;
|
|
3098
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
3099
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
3100
|
+
synchronizationClientVersion: string | null;
|
|
3101
|
+
synchronizationInterval: duration | null;
|
|
3102
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
3059
3103
|
}
|
|
3060
3104
|
|
|
3061
3105
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -3142,6 +3186,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3142
3186
|
singleSignOnMode: singleSignOnMode | null;
|
|
3143
3187
|
}
|
|
3144
3188
|
|
|
3189
|
+
@complex model onPremisesWritebackConfiguration {
|
|
3190
|
+
unifiedGroupContainer: string | null;
|
|
3191
|
+
userContainer: string | null;
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3145
3194
|
@complex model onTokenIssuanceStartCustomExtensionHandler extends onTokenIssuanceStartHandler {
|
|
3146
3195
|
configuration: customExtensionOverwriteConfiguration | null;
|
|
3147
3196
|
@references customExtension: onTokenIssuanceStartCustomExtension | null;
|
|
@@ -3919,6 +3968,89 @@ namespace reference.`microsoft.graph` {
|
|
|
3919
3968
|
retentionPeriodOverrideDays: int32 | null;
|
|
3920
3969
|
}
|
|
3921
3970
|
|
|
3971
|
+
@complex model redirectUriAllowedDomainConfiguration {
|
|
3972
|
+
allowedDomains: string[];
|
|
3973
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3974
|
+
isStateSetByMicrosoft: boolean;
|
|
3975
|
+
publicClient: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
3976
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3977
|
+
spa: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
3978
|
+
state: appManagementRestrictionState;
|
|
3979
|
+
web: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
@complex model redirectUriAllowedSchemeConfiguration {
|
|
3983
|
+
allowedSchemes: string[];
|
|
3984
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3985
|
+
isStateSetByMicrosoft: boolean;
|
|
3986
|
+
publicClient: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
3987
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3988
|
+
spa: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
3989
|
+
state: appManagementRestrictionState;
|
|
3990
|
+
web: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
@complex model redirectUriBlockedDomainConfiguration {
|
|
3994
|
+
blockedDomains: string[];
|
|
3995
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3996
|
+
isStateSetByMicrosoft: boolean;
|
|
3997
|
+
publicClient: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
3998
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3999
|
+
spa: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
4000
|
+
state: appManagementRestrictionState;
|
|
4001
|
+
web: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
4002
|
+
}
|
|
4003
|
+
|
|
4004
|
+
@complex model redirectUriBlockedSchemeConfiguration {
|
|
4005
|
+
blockedSchemes: string[];
|
|
4006
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
4007
|
+
exemptFormats: string[];
|
|
4008
|
+
isStateSetByMicrosoft: boolean;
|
|
4009
|
+
publicClient: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
4010
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
4011
|
+
spa: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
4012
|
+
state: appManagementRestrictionState;
|
|
4013
|
+
web: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
@complex model redirectUriConfiguration {
|
|
4017
|
+
uriWithBlockedDomain: redirectUriBlockedDomainConfiguration | null;
|
|
4018
|
+
uriWithBlockedScheme: redirectUriBlockedSchemeConfiguration | null;
|
|
4019
|
+
uriWithoutAllowedDomain: redirectUriAllowedDomainConfiguration | null;
|
|
4020
|
+
uriWithoutAllowedScheme: redirectUriAllowedSchemeConfiguration | null;
|
|
4021
|
+
uriWithWildcard: redirectUriWildcardConfiguration | null;
|
|
4022
|
+
}
|
|
4023
|
+
|
|
4024
|
+
@complex model redirectUriPlatformAllowedDomainConfiguration {
|
|
4025
|
+
allowedDomains: string[];
|
|
4026
|
+
}
|
|
4027
|
+
|
|
4028
|
+
@complex model redirectUriPlatformAllowedSchemeConfiguration {
|
|
4029
|
+
allowedSchemes: string[];
|
|
4030
|
+
}
|
|
4031
|
+
|
|
4032
|
+
@complex model redirectUriPlatformBlockedDomainConfiguration {
|
|
4033
|
+
blockedDomains: string[];
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4036
|
+
@complex model redirectUriPlatformBlockedSchemeConfiguration {
|
|
4037
|
+
blockedSchemes: string[];
|
|
4038
|
+
exemptFormats: string[];
|
|
4039
|
+
}
|
|
4040
|
+
|
|
4041
|
+
@complex model redirectUriWildcardConfiguration {
|
|
4042
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
4043
|
+
excludeFormats: redirectUriWildcardExcludeFormats | null;
|
|
4044
|
+
isStateSetByMicrosoft: boolean;
|
|
4045
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
4046
|
+
state: appManagementRestrictionState;
|
|
4047
|
+
}
|
|
4048
|
+
|
|
4049
|
+
@complex model redirectUriWildcardExcludeFormats {
|
|
4050
|
+
excludeWildcardsInPath: boolean;
|
|
4051
|
+
excludeWildcardsInPathWithDomains: string[];
|
|
4052
|
+
}
|
|
4053
|
+
|
|
3922
4054
|
@complex model referencedObject {
|
|
3923
4055
|
referencedObjectName: string | null;
|
|
3924
4056
|
referencedProperty: string | null;
|
|
@@ -4576,6 +4708,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4576
4708
|
upgradeAvailable: boolean | null;
|
|
4577
4709
|
}
|
|
4578
4710
|
|
|
4711
|
+
@open
|
|
4712
|
+
@complex model stringDictionary extends Dictionary {
|
|
4713
|
+
}
|
|
4714
|
+
|
|
4579
4715
|
@complex model stringKeyAttributeMappingSourceValuePair {
|
|
4580
4716
|
key: string | null;
|
|
4581
4717
|
value: attributeMappingSource | null;
|
|
@@ -6015,6 +6151,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6015
6151
|
|
|
6016
6152
|
@entity model admin extends MsGraph.SharedModels.entity {
|
|
6017
6153
|
@contains cloudLicensing: reference.`microsoft.graph.cloudLicensing`.adminCloudLicensing | null;
|
|
6154
|
+
@contains entra: entra | null;
|
|
6018
6155
|
@contains people: peopleAdminSettings | null;
|
|
6019
6156
|
@contains serviceAnnouncement: serviceAnnouncement | null;
|
|
6020
6157
|
@contains sharepoint: sharepoint | null;
|
|
@@ -6047,6 +6184,9 @@ namespace reference.`microsoft.graph` {
|
|
|
6047
6184
|
@entity model agentIdentity extends servicePrincipal {
|
|
6048
6185
|
agentIdentityBlueprintId: string;
|
|
6049
6186
|
@computed createdDateTime: offsetDateTime | null;
|
|
6187
|
+
managerApplications: guid;
|
|
6188
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
6189
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
6050
6190
|
@references sponsors: directoryObject[];
|
|
6051
6191
|
}
|
|
6052
6192
|
|
|
@@ -6058,6 +6198,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6058
6198
|
|
|
6059
6199
|
@open
|
|
6060
6200
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
6201
|
+
managerApplications: guid;
|
|
6061
6202
|
@references sponsors: directoryObject[];
|
|
6062
6203
|
}
|
|
6063
6204
|
|
|
@@ -6732,14 +6873,16 @@ namespace reference.`microsoft.graph` {
|
|
|
6732
6873
|
|
|
6733
6874
|
@entity model chatMessage extends entity {
|
|
6734
6875
|
attachments: chatMessageAttachment[] | null;
|
|
6735
|
-
body:
|
|
6876
|
+
body: chatMessageBody;
|
|
6736
6877
|
channelIdentity: channelIdentity | null;
|
|
6737
6878
|
chatId: string | null;
|
|
6879
|
+
citations: chatMessageCitation[] | null;
|
|
6738
6880
|
@computed createdDateTime: offsetDateTime | null;
|
|
6739
6881
|
deletedDateTime: offsetDateTime | null;
|
|
6740
6882
|
etag: string | null;
|
|
6741
6883
|
eventDetail: eventMessageDetail | null;
|
|
6742
6884
|
from: chatMessageFromIdentitySet | null;
|
|
6885
|
+
hasReplies: boolean;
|
|
6743
6886
|
importance: chatMessageImportance;
|
|
6744
6887
|
@computed lastEditedDateTime: offsetDateTime | null;
|
|
6745
6888
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
@@ -6762,7 +6905,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6762
6905
|
}
|
|
6763
6906
|
|
|
6764
6907
|
@entity model chatMessageInfo extends entity {
|
|
6765
|
-
body:
|
|
6908
|
+
body: chatMessageBody | null;
|
|
6766
6909
|
@computed createdDateTime: offsetDateTime | null;
|
|
6767
6910
|
eventDetail: eventMessageDetail | null;
|
|
6768
6911
|
from: chatMessageFromIdentitySet | null;
|
|
@@ -7089,6 +7232,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7089
7232
|
|
|
7090
7233
|
@entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
|
|
7091
7234
|
displayName: string | null;
|
|
7235
|
+
groupSyncInbound: crossTenantGroupSyncInbound | null;
|
|
7092
7236
|
@computed @key tenantId: string;
|
|
7093
7237
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
7094
7238
|
}
|
|
@@ -7521,6 +7665,9 @@ namespace reference.`microsoft.graph` {
|
|
|
7521
7665
|
@computed @key id: string;
|
|
7522
7666
|
}
|
|
7523
7667
|
|
|
7668
|
+
@entity model entra extends entity {
|
|
7669
|
+
}
|
|
7670
|
+
|
|
7524
7671
|
@entity model evaluateLabelJobResponse extends jobResponseBase {
|
|
7525
7672
|
result: evaluateLabelJobResultGroup | null;
|
|
7526
7673
|
}
|
|
@@ -9030,6 +9177,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9030
9177
|
|
|
9031
9178
|
@entity model planner extends entity {
|
|
9032
9179
|
@contains buckets: plannerBucket[];
|
|
9180
|
+
|
|
9181
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
9182
|
+
@contains goals: plannerGoal[];
|
|
9033
9183
|
@contains plans: plannerPlan[];
|
|
9034
9184
|
@contains rosters: plannerRoster[];
|
|
9035
9185
|
@contains tasks: plannerTask[];
|
|
@@ -9057,6 +9207,18 @@ namespace reference.`microsoft.graph` {
|
|
|
9057
9207
|
@entity model plannerDelta extends entity {
|
|
9058
9208
|
}
|
|
9059
9209
|
|
|
9210
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
9211
|
+
@entity model plannerGoal extends plannerDelta {
|
|
9212
|
+
displayName: string;
|
|
9213
|
+
finishDate: offsetDateTime | null;
|
|
9214
|
+
notes: itemBody | null;
|
|
9215
|
+
planId: string;
|
|
9216
|
+
priority: int32 | null;
|
|
9217
|
+
startDate: offsetDateTime | null;
|
|
9218
|
+
status: plannerGoalStatus;
|
|
9219
|
+
@references tasks: plannerTask[];
|
|
9220
|
+
}
|
|
9221
|
+
|
|
9060
9222
|
@entity model plannerGroup extends entity {
|
|
9061
9223
|
@references plans: plannerPlan[];
|
|
9062
9224
|
}
|
|
@@ -9077,6 +9239,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9077
9239
|
title: string;
|
|
9078
9240
|
@references buckets: plannerBucket[];
|
|
9079
9241
|
@contains details: plannerPlanDetails | null;
|
|
9242
|
+
|
|
9243
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
9244
|
+
@references goals: plannerGoal[];
|
|
9080
9245
|
@references tasks: plannerTask[];
|
|
9081
9246
|
}
|
|
9082
9247
|
|
|
@@ -9117,6 +9282,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9117
9282
|
@computed createdDateTime: offsetDateTime | null;
|
|
9118
9283
|
creationSource: plannerTaskCreation | null;
|
|
9119
9284
|
dueDateTime: offsetDateTime | null;
|
|
9285
|
+
|
|
9286
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
9287
|
+
goalIds: string[];
|
|
9120
9288
|
hasChat: boolean;
|
|
9121
9289
|
hasDescription: boolean | null;
|
|
9122
9290
|
isArchived: boolean | null;
|
|
@@ -11342,6 +11510,10 @@ namespace reference.`microsoft.graph` {
|
|
|
11342
11510
|
@contains installedApps: userScopeTeamsAppInstallation[];
|
|
11343
11511
|
}
|
|
11344
11512
|
|
|
11513
|
+
@entity model uxSetting extends entity {
|
|
11514
|
+
restrictNonAdminAccess: nonAdminSetting;
|
|
11515
|
+
}
|
|
11516
|
+
|
|
11345
11517
|
@entity model verticalSection extends entity {
|
|
11346
11518
|
emphasis: sectionEmphasisType | null;
|
|
11347
11519
|
@contains webparts: webPart[];
|
|
@@ -12445,6 +12617,13 @@ namespace reference.`microsoft.graph` {
|
|
|
12445
12617
|
unknownFutureValue: 8,
|
|
12446
12618
|
}
|
|
12447
12619
|
|
|
12620
|
+
enum chatMessageBodyContentType {
|
|
12621
|
+
text: 0,
|
|
12622
|
+
html: 1,
|
|
12623
|
+
markdown: 2,
|
|
12624
|
+
unknownFutureValue: 3,
|
|
12625
|
+
}
|
|
12626
|
+
|
|
12448
12627
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
12449
12628
|
enum chatMessageImportance {
|
|
12450
12629
|
normal: 0,
|
|
@@ -13453,6 +13632,12 @@ namespace reference.`microsoft.graph` {
|
|
|
13453
13632
|
unknownFutureValue: 4,
|
|
13454
13633
|
}
|
|
13455
13634
|
|
|
13635
|
+
enum nonAdminSetting {
|
|
13636
|
+
`false`: 0,
|
|
13637
|
+
`true`: 1,
|
|
13638
|
+
unknownFutureValue: 2,
|
|
13639
|
+
}
|
|
13640
|
+
|
|
13456
13641
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
13457
13642
|
enum objectDefinitionMetadata {
|
|
13458
13643
|
PropertyNameAccountEnabled: 0,
|
|
@@ -13746,6 +13931,15 @@ namespace reference.`microsoft.graph` {
|
|
|
13746
13931
|
unknownFutureValue: 3,
|
|
13747
13932
|
}
|
|
13748
13933
|
|
|
13934
|
+
enum plannerGoalStatus {
|
|
13935
|
+
notStarted: 0,
|
|
13936
|
+
onTrack: 1,
|
|
13937
|
+
behind: 2,
|
|
13938
|
+
atRisk: 3,
|
|
13939
|
+
closed: 4,
|
|
13940
|
+
unknownFutureValue: 5,
|
|
13941
|
+
}
|
|
13942
|
+
|
|
13749
13943
|
enum plannerPlanAccessLevel {
|
|
13750
13944
|
readAccess: 0,
|
|
13751
13945
|
readWriteAccess: 1,
|
package/lib/USSec/V1.0/main.tsp
CHANGED
|
@@ -6040,30 +6040,36 @@ namespace reference.`microsoft.graph` {
|
|
|
6040
6040
|
}
|
|
6041
6041
|
|
|
6042
6042
|
@open
|
|
6043
|
-
@entity model onlineMeeting extends
|
|
6043
|
+
@entity model onlineMeeting extends onlineMeetingBase {
|
|
6044
|
+
attendeeReport: stream | null;
|
|
6045
|
+
broadcastSettings: broadcastMeetingSettings | null;
|
|
6046
|
+
creationDateTime: offsetDateTime | null;
|
|
6047
|
+
endDateTime: offsetDateTime | null;
|
|
6048
|
+
externalId: string | null;
|
|
6049
|
+
isBroadcast: boolean | null;
|
|
6050
|
+
participants: meetingParticipants | null;
|
|
6051
|
+
startDateTime: offsetDateTime | null;
|
|
6052
|
+
}
|
|
6053
|
+
|
|
6054
|
+
@abstract
|
|
6055
|
+
@open
|
|
6056
|
+
@entity model onlineMeetingBase extends entity {
|
|
6044
6057
|
allowAttendeeToEnableCamera: boolean | null;
|
|
6045
6058
|
allowAttendeeToEnableMic: boolean | null;
|
|
6046
6059
|
allowedPresenters: onlineMeetingPresenters | null;
|
|
6047
6060
|
allowMeetingChat: meetingChatMode | null;
|
|
6048
6061
|
allowParticipantsToChangeName: boolean | null;
|
|
6049
6062
|
allowTeamworkReactions: boolean | null;
|
|
6050
|
-
attendeeReport: stream | null;
|
|
6051
6063
|
audioConferencing: audioConferencing | null;
|
|
6052
|
-
broadcastSettings: broadcastMeetingSettings | null;
|
|
6053
6064
|
chatInfo: chatInfo | null;
|
|
6054
|
-
creationDateTime: offsetDateTime | null;
|
|
6055
|
-
endDateTime: offsetDateTime | null;
|
|
6056
|
-
externalId: string | null;
|
|
6057
|
-
isBroadcast: boolean | null;
|
|
6058
6065
|
isEntryExitAnnounced: boolean | null;
|
|
6059
6066
|
joinInformation: itemBody | null;
|
|
6060
6067
|
joinMeetingIdSettings: joinMeetingIdSettings | null;
|
|
6061
6068
|
joinWebUrl: string | null;
|
|
6062
6069
|
lobbyBypassSettings: lobbyBypassSettings | null;
|
|
6063
|
-
|
|
6070
|
+
meetingType: onlineMeetingType | null;
|
|
6064
6071
|
recordAutomatically: boolean | null;
|
|
6065
6072
|
shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
|
|
6066
|
-
startDateTime: offsetDateTime | null;
|
|
6067
6073
|
subject: string | null;
|
|
6068
6074
|
videoTeleconferenceId: string | null;
|
|
6069
6075
|
watermarkProtection: watermarkProtectionValues | null;
|
|
@@ -9559,6 +9565,15 @@ namespace reference.`microsoft.graph` {
|
|
|
9559
9565
|
coorganizer: 4,
|
|
9560
9566
|
}
|
|
9561
9567
|
|
|
9568
|
+
enum onlineMeetingType {
|
|
9569
|
+
adhoc: 0,
|
|
9570
|
+
scheduled: 1,
|
|
9571
|
+
recurring: 2,
|
|
9572
|
+
broadcast: 3,
|
|
9573
|
+
meetnow: 4,
|
|
9574
|
+
unknownFutureValue: 5,
|
|
9575
|
+
}
|
|
9576
|
+
|
|
9562
9577
|
@graphFlags
|
|
9563
9578
|
enum onlineMeetingVideoDisabledReason {
|
|
9564
9579
|
watermarkProtection: 1,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/typespec-msgraph-reference",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "Reference models for Microsoft Graph across multiple clouds",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"homepage": "https://github.com/microsoftgraph/typespec-msgraph#readme",
|
|
19
19
|
"type": "module",
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": ">=
|
|
21
|
+
"node": ">=22.0.0"
|
|
22
22
|
},
|
|
23
23
|
"exports": {
|
|
24
24
|
"./Bleu/Beta": {
|
|
@@ -71,9 +71,9 @@
|
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@typespec/compiler": "~1.
|
|
75
|
-
"@typespec/http": "~1.
|
|
76
|
-
"@microsoft/typespec-msgraph": "1.
|
|
74
|
+
"@typespec/compiler": "~1.14.0",
|
|
75
|
+
"@typespec/http": "~1.14.0",
|
|
76
|
+
"@microsoft/typespec-msgraph": "1.4.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"typescript": "~5.9.2"
|