@microsoft/typespec-msgraph-reference 1.0.6 → 1.0.7
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 +18 -18
- package/.rush/temp/shrinkwrap-deps.json +10 -10
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +114 -3
- package/lib/Bleu/V1.0/main.tsp +295 -11
- package/lib/Delos/Beta/main.tsp +212 -3
- package/lib/Delos/V1.0/main.tsp +225 -0
- package/lib/Fairfax/Beta/main.tsp +296 -2
- package/lib/Fairfax/V1.0/main.tsp +267 -24
- package/lib/GovSG/V1.0/main.tsp +27 -0
- package/lib/Mooncake/Beta/main.tsp +145 -1
- package/lib/Mooncake/V1.0/main.tsp +64 -0
- package/lib/Prod/Beta/main.tsp +608 -6
- package/lib/Prod/V1.0/main.tsp +130 -4
- package/lib/USNat/Beta/main.tsp +107 -2
- package/lib/USNat/V1.0/main.tsp +62 -21
- package/lib/USSec/Beta/main.tsp +124 -2
- package/lib/USSec/V1.0/main.tsp +62 -21
- package/package.json +2 -2
|
@@ -257,12 +257,44 @@ namespace reference.`microsoft.graph` {
|
|
|
257
257
|
blueprintId: string | null;
|
|
258
258
|
}
|
|
259
259
|
|
|
260
|
+
@complex model aiInteractionAttachment {
|
|
261
|
+
attachmentId: string | null;
|
|
262
|
+
content: string | null;
|
|
263
|
+
contentType: string | null;
|
|
264
|
+
contentUrl: string | null;
|
|
265
|
+
name: string | null;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
@complex model aiInteractionContext {
|
|
269
|
+
contextReference: string | null;
|
|
270
|
+
contextType: string | null;
|
|
271
|
+
displayName: string | null;
|
|
272
|
+
}
|
|
273
|
+
|
|
260
274
|
@complex model aiInteractionEntity {
|
|
261
275
|
identifier: string | null;
|
|
262
276
|
name: string | null;
|
|
263
277
|
version: string | null;
|
|
264
278
|
}
|
|
265
279
|
|
|
280
|
+
@complex model aiInteractionLink {
|
|
281
|
+
displayName: string | null;
|
|
282
|
+
linkType: string | null;
|
|
283
|
+
linkUrl: string | null;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
@complex model aiInteractionMention {
|
|
287
|
+
mentioned: aiInteractionMentionedIdentitySet | null;
|
|
288
|
+
mentionId: int32 | null;
|
|
289
|
+
mentionText: string | null;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
@open
|
|
293
|
+
@complex model aiInteractionMentionedIdentitySet extends identitySet {
|
|
294
|
+
conversation: teamworkConversationIdentity | null;
|
|
295
|
+
tag: teamworkTagIdentity | null;
|
|
296
|
+
}
|
|
297
|
+
|
|
266
298
|
@complex model aiInteractionPlugin extends aiInteractionEntity {
|
|
267
299
|
}
|
|
268
300
|
|
|
@@ -304,6 +336,9 @@ namespace reference.`microsoft.graph` {
|
|
|
304
336
|
@complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
|
|
305
337
|
}
|
|
306
338
|
|
|
339
|
+
@complex model allDomains extends validatingDomains {
|
|
340
|
+
}
|
|
341
|
+
|
|
307
342
|
/**
|
|
308
343
|
* Represents an assignment to all licensed users in the tenant.
|
|
309
344
|
*/
|
|
@@ -564,6 +599,11 @@ namespace reference.`microsoft.graph` {
|
|
|
564
599
|
skuId: guid | null;
|
|
565
600
|
}
|
|
566
601
|
|
|
602
|
+
@complex model assignedPlaceMode extends placeMode {
|
|
603
|
+
assignedUserEmailAddress: string | null;
|
|
604
|
+
assignedUserId: string | null;
|
|
605
|
+
}
|
|
606
|
+
|
|
567
607
|
@complex model assignedPlan {
|
|
568
608
|
assignedDateTime: offsetDateTime | null;
|
|
569
609
|
capabilityStatus: string | null;
|
|
@@ -761,6 +801,13 @@ namespace reference.`microsoft.graph` {
|
|
|
761
801
|
authenticationContextValue: string | null;
|
|
762
802
|
}
|
|
763
803
|
|
|
804
|
+
@complex model authenticationAppDeviceDetails {
|
|
805
|
+
appVersion: string | null;
|
|
806
|
+
clientApp: string | null;
|
|
807
|
+
deviceId: string | null;
|
|
808
|
+
operatingSystem: string | null;
|
|
809
|
+
}
|
|
810
|
+
|
|
764
811
|
@complex model authenticationBehaviors {
|
|
765
812
|
blockAzureADGraphAccess: boolean | null;
|
|
766
813
|
removeUnverifiedEmailClaim: boolean | null;
|
|
@@ -2464,6 +2511,9 @@ namespace reference.`microsoft.graph` {
|
|
|
2464
2511
|
objectId: string | null;
|
|
2465
2512
|
}
|
|
2466
2513
|
|
|
2514
|
+
@complex model dropInPlaceMode extends placeMode {
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2467
2517
|
/**
|
|
2468
2518
|
* Allows IT admins to set a predefined default search engine for MDM-Controlled devices.
|
|
2469
2519
|
*/
|
|
@@ -2520,6 +2570,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2520
2570
|
users: string[] | null;
|
|
2521
2571
|
}
|
|
2522
2572
|
|
|
2573
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
2574
|
+
domainNames: string[];
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2523
2577
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
2524
2578
|
scopes: string[];
|
|
2525
2579
|
}
|
|
@@ -2839,6 +2893,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2839
2893
|
enableIdTokenIssuance: boolean | null;
|
|
2840
2894
|
}
|
|
2841
2895
|
|
|
2896
|
+
@complex model importBuildingMapSetting {
|
|
2897
|
+
isDryRun: boolean;
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2842
2900
|
@complex model importedWindowsAutopilotDeviceIdentityState {
|
|
2843
2901
|
/**
|
|
2844
2902
|
* Device error code reported by Device Directory Service(DDS).
|
|
@@ -3558,6 +3616,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3558
3616
|
v13_0: boolean;
|
|
3559
3617
|
}
|
|
3560
3618
|
|
|
3619
|
+
@complex model mailboxDetails {
|
|
3620
|
+
emailAddress: string | null;
|
|
3621
|
+
externalDirectoryObjectId: string | null;
|
|
3622
|
+
}
|
|
3623
|
+
|
|
3561
3624
|
@complex model mailboxSettings {
|
|
3562
3625
|
archiveFolder: string | null;
|
|
3563
3626
|
automaticRepliesSetting: automaticRepliesSetting | null;
|
|
@@ -4437,6 +4500,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4437
4500
|
street: string | null;
|
|
4438
4501
|
}
|
|
4439
4502
|
|
|
4503
|
+
@abstract
|
|
4504
|
+
@complex model placeMode {
|
|
4505
|
+
}
|
|
4506
|
+
|
|
4440
4507
|
@open
|
|
4441
4508
|
@complex model plannerAppliedCategories {
|
|
4442
4509
|
}
|
|
@@ -5062,6 +5129,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5062
5129
|
resourceAppId: string;
|
|
5063
5130
|
}
|
|
5064
5131
|
|
|
5132
|
+
@complex model reservablePlaceMode extends placeMode {
|
|
5133
|
+
}
|
|
5134
|
+
|
|
5065
5135
|
/**
|
|
5066
5136
|
* Reset passcode action result
|
|
5067
5137
|
*/
|
|
@@ -5110,6 +5180,12 @@ namespace reference.`microsoft.graph` {
|
|
|
5110
5180
|
@complex model resourceData {
|
|
5111
5181
|
}
|
|
5112
5182
|
|
|
5183
|
+
@complex model resourceLink {
|
|
5184
|
+
linkType: resourceLinkType;
|
|
5185
|
+
name: string | null;
|
|
5186
|
+
value: string | null;
|
|
5187
|
+
}
|
|
5188
|
+
|
|
5113
5189
|
@complex model resourcePermission {
|
|
5114
5190
|
type: string;
|
|
5115
5191
|
value: string;
|
|
@@ -5749,6 +5825,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5749
5825
|
tabId: string | null;
|
|
5750
5826
|
}
|
|
5751
5827
|
|
|
5828
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends subjectSet {
|
|
5829
|
+
}
|
|
5830
|
+
|
|
5752
5831
|
@complex model targetApplicationOwners extends subjectSet {
|
|
5753
5832
|
}
|
|
5754
5833
|
|
|
@@ -6074,6 +6153,10 @@ namespace reference.`microsoft.graph` {
|
|
|
6074
6153
|
tone: tone;
|
|
6075
6154
|
}
|
|
6076
6155
|
|
|
6156
|
+
@complex model unavailablePlaceMode extends placeMode {
|
|
6157
|
+
reason: string | null;
|
|
6158
|
+
}
|
|
6159
|
+
|
|
6077
6160
|
@complex model unifiedApprovalStage {
|
|
6078
6161
|
approvalStageTimeOutInDays: int32 | null;
|
|
6079
6162
|
escalationApprovers: subjectSet[] | null;
|
|
@@ -6351,10 +6434,9 @@ namespace reference.`microsoft.graph` {
|
|
|
6351
6434
|
userId: string | null;
|
|
6352
6435
|
}
|
|
6353
6436
|
|
|
6354
|
-
@
|
|
6355
|
-
|
|
6356
|
-
|
|
6357
|
-
workLocationType: workLocationType;
|
|
6437
|
+
@abstract
|
|
6438
|
+
@complex model validatingDomains {
|
|
6439
|
+
rootDomains: rootDomains;
|
|
6358
6440
|
}
|
|
6359
6441
|
|
|
6360
6442
|
@complex model verifiedDomain {
|
|
@@ -7594,6 +7676,30 @@ namespace reference.`microsoft.graph` {
|
|
|
7594
7676
|
@entity model agreementFileVersion extends agreementFileProperties {
|
|
7595
7677
|
}
|
|
7596
7678
|
|
|
7679
|
+
@entity model aiInteraction extends entity {
|
|
7680
|
+
appClass: string;
|
|
7681
|
+
attachments: aiInteractionAttachment[] | null;
|
|
7682
|
+
body: itemBody | null;
|
|
7683
|
+
contexts: aiInteractionContext[] | null;
|
|
7684
|
+
conversationType: string | null;
|
|
7685
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
7686
|
+
etag: string | null;
|
|
7687
|
+
from: identitySet;
|
|
7688
|
+
interactionType: aiInteractionType;
|
|
7689
|
+
links: aiInteractionLink[] | null;
|
|
7690
|
+
locale: string;
|
|
7691
|
+
mentions: aiInteractionMention[] | null;
|
|
7692
|
+
requestId: string;
|
|
7693
|
+
sessionId: string;
|
|
7694
|
+
}
|
|
7695
|
+
|
|
7696
|
+
@entity model aiInteractionHistory extends entity {
|
|
7697
|
+
}
|
|
7698
|
+
|
|
7699
|
+
@entity model aiUser extends entity {
|
|
7700
|
+
@contains interactionHistory: aiInteractionHistory | null;
|
|
7701
|
+
}
|
|
7702
|
+
|
|
7597
7703
|
@graphDeprecated("Deprecation")
|
|
7598
7704
|
@open
|
|
7599
7705
|
@entity model alert extends entity {
|
|
@@ -8677,6 +8783,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8677
8783
|
publication: publicationFacet | null;
|
|
8678
8784
|
}
|
|
8679
8785
|
|
|
8786
|
+
@abstract
|
|
8787
|
+
@entity model baseMapFeature extends entity {
|
|
8788
|
+
properties: string | null;
|
|
8789
|
+
}
|
|
8790
|
+
|
|
8680
8791
|
@entity model baseSitePage extends baseItem {
|
|
8681
8792
|
pageLayout: pageLayoutType | null;
|
|
8682
8793
|
publishingState: publicationFacet | null;
|
|
@@ -8880,6 +8991,18 @@ namespace reference.`microsoft.graph` {
|
|
|
8880
8991
|
@entity model bookingStaffMemberBase extends entity {
|
|
8881
8992
|
}
|
|
8882
8993
|
|
|
8994
|
+
@entity model building extends place {
|
|
8995
|
+
resourceLinks: resourceLink[];
|
|
8996
|
+
wifiState: placeFeatureEnablement;
|
|
8997
|
+
@contains map: buildingMap | null;
|
|
8998
|
+
}
|
|
8999
|
+
|
|
9000
|
+
@entity model buildingMap extends baseMapFeature {
|
|
9001
|
+
placeId: string | null;
|
|
9002
|
+
@contains footprints: footprintMap[];
|
|
9003
|
+
@contains levels: levelMap[];
|
|
9004
|
+
}
|
|
9005
|
+
|
|
8883
9006
|
@entity model bulkUpload extends entity {
|
|
8884
9007
|
}
|
|
8885
9008
|
|
|
@@ -9080,6 +9203,12 @@ namespace reference.`microsoft.graph` {
|
|
|
9080
9203
|
messageType: chatMessageType;
|
|
9081
9204
|
}
|
|
9082
9205
|
|
|
9206
|
+
@entity model checkInClaim extends MsGraph.SharedModels.entity {
|
|
9207
|
+
@computed @key calendarEventId: string;
|
|
9208
|
+
checkInMethod: checkInMethod;
|
|
9209
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
9210
|
+
}
|
|
9211
|
+
|
|
9083
9212
|
@entity model checklistItem extends entity {
|
|
9084
9213
|
checkedDateTime: offsetDateTime | null;
|
|
9085
9214
|
@computed createdDateTime: offsetDateTime;
|
|
@@ -9207,6 +9336,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9207
9336
|
@entity model cloudPcReport extends entity {
|
|
9208
9337
|
}
|
|
9209
9338
|
|
|
9339
|
+
@entity model cloudPcServicePlan extends entity {
|
|
9340
|
+
displayName: string;
|
|
9341
|
+
ramInGB: int32;
|
|
9342
|
+
storageInGB: int32;
|
|
9343
|
+
vCpuCount: int32;
|
|
9344
|
+
}
|
|
9345
|
+
|
|
9210
9346
|
@entity model cloudPcUserSetting extends entity {
|
|
9211
9347
|
@computed createdDateTime: offsetDateTime | null;
|
|
9212
9348
|
displayName: string | null;
|
|
@@ -9477,6 +9613,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9477
9613
|
@contains posts: post[];
|
|
9478
9614
|
}
|
|
9479
9615
|
|
|
9616
|
+
@entity model copilotRoot extends MsGraph.SharedModels.entity {
|
|
9617
|
+
@contains interactionHistory: aiInteractionHistory | null;
|
|
9618
|
+
@contains users: aiUser[];
|
|
9619
|
+
}
|
|
9620
|
+
|
|
9480
9621
|
@entity model countryNamedLocation extends namedLocation {
|
|
9481
9622
|
countriesAndRegions: string[];
|
|
9482
9623
|
countryLookupMethod: countryLookupMethodType | null;
|
|
@@ -9672,6 +9813,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9672
9813
|
@contains channels: channel[];
|
|
9673
9814
|
}
|
|
9674
9815
|
|
|
9816
|
+
@entity model desk extends place {
|
|
9817
|
+
displayDeviceName: string | null;
|
|
9818
|
+
heightAdjustableState: placeFeatureEnablement;
|
|
9819
|
+
mailboxDetails: mailboxDetails | null;
|
|
9820
|
+
mode: placeMode | null;
|
|
9821
|
+
}
|
|
9822
|
+
|
|
9675
9823
|
/**
|
|
9676
9824
|
* A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned.
|
|
9677
9825
|
*/
|
|
@@ -11580,6 +11728,10 @@ namespace reference.`microsoft.graph` {
|
|
|
11580
11728
|
subject: string | null;
|
|
11581
11729
|
}
|
|
11582
11730
|
|
|
11731
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
11732
|
+
validatingDomains: validatingDomains;
|
|
11733
|
+
}
|
|
11734
|
+
|
|
11583
11735
|
@entity model fido2AuthenticationMethod extends authenticationMethod {
|
|
11584
11736
|
aaGuid: string | null;
|
|
11585
11737
|
attestationCertificates: string[] | null;
|
|
@@ -11676,6 +11828,17 @@ namespace reference.`microsoft.graph` {
|
|
|
11676
11828
|
supportedAttributeTypes: attributeType[];
|
|
11677
11829
|
}
|
|
11678
11830
|
|
|
11831
|
+
@entity model fixtureMap extends baseMapFeature {
|
|
11832
|
+
placeId: string | null;
|
|
11833
|
+
}
|
|
11834
|
+
|
|
11835
|
+
@entity model floor extends place {
|
|
11836
|
+
sortOrder: int32 | null;
|
|
11837
|
+
}
|
|
11838
|
+
|
|
11839
|
+
@entity model footprintMap extends baseMapFeature {
|
|
11840
|
+
}
|
|
11841
|
+
|
|
11679
11842
|
@abstract
|
|
11680
11843
|
@entity model governanceInsight extends entity {
|
|
11681
11844
|
insightCreatedDateTime: offsetDateTime | null;
|
|
@@ -11683,6 +11846,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11683
11846
|
|
|
11684
11847
|
@open
|
|
11685
11848
|
@entity model group extends directoryObject {
|
|
11849
|
+
accessType: groupAccessType | null;
|
|
11686
11850
|
allowExternalSenders: boolean | null;
|
|
11687
11851
|
assignedLabels: assignedLabel[] | null;
|
|
11688
11852
|
assignedLicenses: assignedLicense[] | null;
|
|
@@ -11699,6 +11863,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11699
11863
|
infoCatalogs: string[];
|
|
11700
11864
|
isArchived: boolean | null;
|
|
11701
11865
|
isAssignableToRole: boolean | null;
|
|
11866
|
+
isFavorite: boolean | null;
|
|
11702
11867
|
isManagementRestricted: boolean | null;
|
|
11703
11868
|
isSubscribedByMail: boolean | null;
|
|
11704
11869
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -11726,7 +11891,9 @@ namespace reference.`microsoft.graph` {
|
|
|
11726
11891
|
serviceProvisioningErrors: serviceProvisioningError[] | null;
|
|
11727
11892
|
theme: string | null;
|
|
11728
11893
|
uniqueName: string | null;
|
|
11894
|
+
unseenConversationsCount: int32 | null;
|
|
11729
11895
|
unseenCount: int32 | null;
|
|
11896
|
+
unseenMessagesCount: int32 | null;
|
|
11730
11897
|
visibility: string | null;
|
|
11731
11898
|
welcomeMessageEnabled: boolean | null;
|
|
11732
11899
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -12919,6 +13086,13 @@ namespace reference.`microsoft.graph` {
|
|
|
12919
13086
|
rights: usageRights;
|
|
12920
13087
|
}
|
|
12921
13088
|
|
|
13089
|
+
@entity model levelMap extends baseMapFeature {
|
|
13090
|
+
placeId: string | null;
|
|
13091
|
+
@contains fixtures: fixtureMap[];
|
|
13092
|
+
@contains sections: sectionMap[];
|
|
13093
|
+
@contains units: unitMap[];
|
|
13094
|
+
}
|
|
13095
|
+
|
|
12922
13096
|
@entity model licenseDetails extends entity {
|
|
12923
13097
|
servicePlans: servicePlanInfo[];
|
|
12924
13098
|
skuId: guid | null;
|
|
@@ -12942,6 +13116,7 @@ namespace reference.`microsoft.graph` {
|
|
|
12942
13116
|
@contains drive: drive | null;
|
|
12943
13117
|
@contains items: listItem[];
|
|
12944
13118
|
@contains operations: richLongRunningOperation[];
|
|
13119
|
+
@contains permissions: permission[];
|
|
12945
13120
|
@contains subscriptions: subscription[];
|
|
12946
13121
|
}
|
|
12947
13122
|
|
|
@@ -12953,6 +13128,7 @@ namespace reference.`microsoft.graph` {
|
|
|
12953
13128
|
@contains documentSetVersions: documentSetVersion[];
|
|
12954
13129
|
@contains driveItem: driveItem | null;
|
|
12955
13130
|
@contains fields: fieldValueSet | null;
|
|
13131
|
+
@contains permissions: permission[];
|
|
12956
13132
|
@contains versions: listItemVersion[];
|
|
12957
13133
|
}
|
|
12958
13134
|
|
|
@@ -15014,7 +15190,12 @@ namespace reference.`microsoft.graph` {
|
|
|
15014
15190
|
address: physicalAddress | null;
|
|
15015
15191
|
displayName: string;
|
|
15016
15192
|
geoCoordinates: outlookGeoCoordinates | null;
|
|
15193
|
+
isWheelChairAccessible: boolean | null;
|
|
15194
|
+
label: string | null;
|
|
15195
|
+
parentId: string | null;
|
|
15017
15196
|
phone: string | null;
|
|
15197
|
+
tags: string[];
|
|
15198
|
+
@contains checkIns: checkInClaim[];
|
|
15018
15199
|
}
|
|
15019
15200
|
|
|
15020
15201
|
@entity model planner extends entity {
|
|
@@ -15135,6 +15316,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15135
15316
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
15136
15317
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
15137
15318
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
15319
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
15138
15320
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
15139
15321
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
15140
15322
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
@@ -15165,7 +15347,6 @@ namespace reference.`microsoft.graph` {
|
|
|
15165
15347
|
activity: string | null;
|
|
15166
15348
|
availability: string | null;
|
|
15167
15349
|
statusMessage: presenceStatusMessage | null;
|
|
15168
|
-
workLocation: userWorkLocation | null;
|
|
15169
15350
|
}
|
|
15170
15351
|
|
|
15171
15352
|
@entity model print extends MsGraph.SharedModels.entity {
|
|
@@ -15703,16 +15884,16 @@ namespace reference.`microsoft.graph` {
|
|
|
15703
15884
|
emailAddress: string | null;
|
|
15704
15885
|
floorLabel: string | null;
|
|
15705
15886
|
floorNumber: int32 | null;
|
|
15706
|
-
isWheelChairAccessible: boolean | null;
|
|
15707
|
-
label: string | null;
|
|
15708
15887
|
nickname: string;
|
|
15709
|
-
|
|
15888
|
+
placeId: string | null;
|
|
15889
|
+
teamsEnabledState: placeFeatureEnablement;
|
|
15710
15890
|
videoDeviceName: string | null;
|
|
15711
15891
|
}
|
|
15712
15892
|
|
|
15713
15893
|
@entity model roomList extends place {
|
|
15714
15894
|
emailAddress: string | null;
|
|
15715
15895
|
@contains rooms: room[];
|
|
15896
|
+
@contains workspaces: workspace[];
|
|
15716
15897
|
}
|
|
15717
15898
|
|
|
15718
15899
|
@entity model samlOrWsFedExternalDomainFederation extends samlOrWsFedProvider {
|
|
@@ -15745,6 +15926,13 @@ namespace reference.`microsoft.graph` {
|
|
|
15745
15926
|
@entity model searchEntity extends entity {
|
|
15746
15927
|
}
|
|
15747
15928
|
|
|
15929
|
+
@entity model section extends place {
|
|
15930
|
+
}
|
|
15931
|
+
|
|
15932
|
+
@entity model sectionMap extends baseMapFeature {
|
|
15933
|
+
placeId: string | null;
|
|
15934
|
+
}
|
|
15935
|
+
|
|
15748
15936
|
@open
|
|
15749
15937
|
@entity model secureScore extends entity {
|
|
15750
15938
|
activeUserCount: int32 | null;
|
|
@@ -16149,23 +16337,29 @@ namespace reference.`microsoft.graph` {
|
|
|
16149
16337
|
appDisplayName: string | null;
|
|
16150
16338
|
appId: string | null;
|
|
16151
16339
|
appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
|
|
16340
|
+
authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
|
|
16152
16341
|
clientAppUsed: string | null;
|
|
16153
16342
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
16154
16343
|
correlationId: string | null;
|
|
16155
16344
|
@computed createdDateTime: offsetDateTime;
|
|
16156
16345
|
deviceDetail: deviceDetail | null;
|
|
16346
|
+
homeTenantId: string | null;
|
|
16157
16347
|
ipAddress: string | null;
|
|
16158
16348
|
isInteractive: boolean | null;
|
|
16159
16349
|
location: signInLocation | null;
|
|
16160
16350
|
resourceDisplayName: string | null;
|
|
16161
16351
|
resourceId: string | null;
|
|
16352
|
+
resourceTenantId: string | null;
|
|
16162
16353
|
riskDetail: riskDetail | null;
|
|
16163
16354
|
riskEventTypes: riskEventType[] | null;
|
|
16164
16355
|
riskEventTypes_v2: string[] | null;
|
|
16165
16356
|
riskLevelAggregated: riskLevel | null;
|
|
16166
16357
|
riskLevelDuringSignIn: riskLevel | null;
|
|
16167
16358
|
riskState: riskState | null;
|
|
16359
|
+
servicePrincipalId: string | null;
|
|
16360
|
+
servicePrincipalName: string | null;
|
|
16168
16361
|
status: signInStatus | null;
|
|
16362
|
+
userAgent: string | null;
|
|
16169
16363
|
userDisplayName: string | null;
|
|
16170
16364
|
userId: string;
|
|
16171
16365
|
userPrincipalName: string | null;
|
|
@@ -16930,6 +17124,10 @@ namespace reference.`microsoft.graph` {
|
|
|
16930
17124
|
@references roleDefinition: unifiedRoleDefinition | null;
|
|
16931
17125
|
}
|
|
16932
17126
|
|
|
17127
|
+
@entity model unitMap extends baseMapFeature {
|
|
17128
|
+
placeId: string | null;
|
|
17129
|
+
}
|
|
17130
|
+
|
|
16933
17131
|
@open
|
|
16934
17132
|
@entity model unmuteParticipantOperation extends commsOperation {
|
|
16935
17133
|
}
|
|
@@ -18133,6 +18331,7 @@ namespace reference.`microsoft.graph` {
|
|
|
18133
18331
|
@contains onPremisesConnections: cloudPcOnPremisesConnection[];
|
|
18134
18332
|
@contains provisioningPolicies: cloudPcProvisioningPolicy[];
|
|
18135
18333
|
@contains report: cloudPcReport | null;
|
|
18334
|
+
@contains servicePlans: cloudPcServicePlan[];
|
|
18136
18335
|
@contains userSettings: cloudPcUserSetting[];
|
|
18137
18336
|
}
|
|
18138
18337
|
|
|
@@ -21047,6 +21246,15 @@ namespace reference.`microsoft.graph` {
|
|
|
21047
21246
|
protected: boolean;
|
|
21048
21247
|
}
|
|
21049
21248
|
|
|
21249
|
+
@entity model workspace extends place {
|
|
21250
|
+
capacity: int32 | null;
|
|
21251
|
+
displayDeviceName: string | null;
|
|
21252
|
+
emailAddress: string | null;
|
|
21253
|
+
mode: placeMode | null;
|
|
21254
|
+
nickname: string;
|
|
21255
|
+
placeId: string | null;
|
|
21256
|
+
}
|
|
21257
|
+
|
|
21050
21258
|
@entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
21051
21259
|
authenticationModeConfiguration: x509CertificateAuthenticationModeConfiguration | null;
|
|
21052
21260
|
certificateAuthorityScopes: x509CertificateAuthorityScope[] | null;
|
|
@@ -21065,6 +21273,8 @@ namespace reference.`microsoft.graph` {
|
|
|
21065
21273
|
target: 1,
|
|
21066
21274
|
createdBy: 2,
|
|
21067
21275
|
unknownFutureValue: 99,
|
|
21276
|
+
targetManager: 100,
|
|
21277
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
21068
21278
|
}
|
|
21069
21279
|
|
|
21070
21280
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -21072,6 +21282,10 @@ namespace reference.`microsoft.graph` {
|
|
|
21072
21282
|
createdBy: 2,
|
|
21073
21283
|
approver: 3,
|
|
21074
21284
|
unknownFutureValue: 99,
|
|
21285
|
+
targetOrRequestor: 100,
|
|
21286
|
+
targetManager: 101,
|
|
21287
|
+
requestForOthers: 102,
|
|
21288
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
21075
21289
|
}
|
|
21076
21290
|
|
|
21077
21291
|
enum accessPackageAssignmentState {
|
|
@@ -21261,6 +21475,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21261
21475
|
unknownFutureValue: 5,
|
|
21262
21476
|
}
|
|
21263
21477
|
|
|
21478
|
+
enum aiInteractionType {
|
|
21479
|
+
userPrompt: 0,
|
|
21480
|
+
aiResponse: 1,
|
|
21481
|
+
unknownFutureValue: 2,
|
|
21482
|
+
}
|
|
21483
|
+
|
|
21264
21484
|
enum alertFeedback {
|
|
21265
21485
|
`unknown`: 0,
|
|
21266
21486
|
truePositive: 1,
|
|
@@ -21297,6 +21517,7 @@ namespace reference.`microsoft.graph` {
|
|
|
21297
21517
|
allDirectoryServicePrincipals: 6,
|
|
21298
21518
|
allConfiguredConnectedOrganizationUsers: 7,
|
|
21299
21519
|
allExternalUsers: 8,
|
|
21520
|
+
allDirectoryAgentIdentities: 9,
|
|
21300
21521
|
unknownFutureValue: 10,
|
|
21301
21522
|
}
|
|
21302
21523
|
|
|
@@ -22194,6 +22415,14 @@ namespace reference.`microsoft.graph` {
|
|
|
22194
22415
|
unknownFutureValue: 3,
|
|
22195
22416
|
}
|
|
22196
22417
|
|
|
22418
|
+
enum checkInMethod {
|
|
22419
|
+
unspecified: 0,
|
|
22420
|
+
manual: 1,
|
|
22421
|
+
inferred: 2,
|
|
22422
|
+
verified: 3,
|
|
22423
|
+
unknownFutureValue: 4,
|
|
22424
|
+
}
|
|
22425
|
+
|
|
22197
22426
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22198
22427
|
@graphFlags
|
|
22199
22428
|
enum clonableTeamParts {
|
|
@@ -23876,6 +24105,14 @@ namespace reference.`microsoft.graph` {
|
|
|
23876
24105
|
unknownFutureValue: 2,
|
|
23877
24106
|
}
|
|
23878
24107
|
|
|
24108
|
+
enum groupAccessType {
|
|
24109
|
+
none: 0,
|
|
24110
|
+
private: 1,
|
|
24111
|
+
secret: 2,
|
|
24112
|
+
public: 3,
|
|
24113
|
+
unknownFutureValue: 4,
|
|
24114
|
+
}
|
|
24115
|
+
|
|
23879
24116
|
enum groupType {
|
|
23880
24117
|
unifiedGroups: 0,
|
|
23881
24118
|
azureAD: 1,
|
|
@@ -25106,6 +25343,13 @@ namespace reference.`microsoft.graph` {
|
|
|
25106
25343
|
other: 3,
|
|
25107
25344
|
}
|
|
25108
25345
|
|
|
25346
|
+
enum placeFeatureEnablement {
|
|
25347
|
+
`unknown`: 0,
|
|
25348
|
+
enabled: 1,
|
|
25349
|
+
disabled: 2,
|
|
25350
|
+
unknownFutureValue: 3,
|
|
25351
|
+
}
|
|
25352
|
+
|
|
25109
25353
|
enum plannerContainerType {
|
|
25110
25354
|
group: 1,
|
|
25111
25355
|
unknownFutureValue: 2,
|
|
@@ -27077,6 +27321,11 @@ namespace reference.`microsoft.graph` {
|
|
|
27077
27321
|
unknownFutureValue: 8,
|
|
27078
27322
|
}
|
|
27079
27323
|
|
|
27324
|
+
enum resourceLinkType {
|
|
27325
|
+
url: 0,
|
|
27326
|
+
unknownFutureValue: 1,
|
|
27327
|
+
}
|
|
27328
|
+
|
|
27080
27329
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
27081
27330
|
enum responseType {
|
|
27082
27331
|
none: 0,
|
|
@@ -27206,6 +27455,16 @@ namespace reference.`microsoft.graph` {
|
|
|
27206
27455
|
unknownFutureValue: 4,
|
|
27207
27456
|
}
|
|
27208
27457
|
|
|
27458
|
+
enum rootDomains {
|
|
27459
|
+
none: 0,
|
|
27460
|
+
all: 1,
|
|
27461
|
+
allFederated: 2,
|
|
27462
|
+
allManaged: 3,
|
|
27463
|
+
enumerated: 4,
|
|
27464
|
+
allManagedAndEnumeratedFederated: 5,
|
|
27465
|
+
unknownFutureValue: 6,
|
|
27466
|
+
}
|
|
27467
|
+
|
|
27209
27468
|
enum routingType {
|
|
27210
27469
|
forwarded: 0,
|
|
27211
27470
|
lookup: 1,
|
|
@@ -29571,22 +29830,6 @@ namespace reference.`microsoft.graph` {
|
|
|
29571
29830
|
failed: 3,
|
|
29572
29831
|
}
|
|
29573
29832
|
|
|
29574
|
-
enum workLocationSource {
|
|
29575
|
-
none: 0,
|
|
29576
|
-
manual: 1,
|
|
29577
|
-
scheduled: 2,
|
|
29578
|
-
automatic: 3,
|
|
29579
|
-
unknownFutureValue: 4,
|
|
29580
|
-
}
|
|
29581
|
-
|
|
29582
|
-
enum workLocationType {
|
|
29583
|
-
unspecified: 0,
|
|
29584
|
-
office: 1,
|
|
29585
|
-
remote: 2,
|
|
29586
|
-
timeOff: 3,
|
|
29587
|
-
unknownFutureValue: 4,
|
|
29588
|
-
}
|
|
29589
|
-
|
|
29590
29833
|
enum x509CertificateAffinityLevel {
|
|
29591
29834
|
low: 0,
|
|
29592
29835
|
high: 1,
|
package/lib/GovSG/V1.0/main.tsp
CHANGED
|
@@ -21,6 +21,9 @@ namespace reference.`microsoft.graph` {
|
|
|
21
21
|
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
@complex model allDomains extends validatingDomains {
|
|
25
|
+
}
|
|
26
|
+
|
|
24
27
|
@complex model alternativeSecurityId {
|
|
25
28
|
identityProvider: string | null;
|
|
26
29
|
key: binary | null;
|
|
@@ -199,6 +202,10 @@ namespace reference.`microsoft.graph` {
|
|
|
199
202
|
users: string[] | null;
|
|
200
203
|
}
|
|
201
204
|
|
|
205
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
206
|
+
domainNames: string[];
|
|
207
|
+
}
|
|
208
|
+
|
|
202
209
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
203
210
|
scopes: string[];
|
|
204
211
|
}
|
|
@@ -551,6 +558,11 @@ namespace reference.`microsoft.graph` {
|
|
|
551
558
|
excludedResourceActions: string[] | null;
|
|
552
559
|
}
|
|
553
560
|
|
|
561
|
+
@abstract
|
|
562
|
+
@complex model validatingDomains {
|
|
563
|
+
rootDomains: rootDomains;
|
|
564
|
+
}
|
|
565
|
+
|
|
554
566
|
@complex model verifiedDomain {
|
|
555
567
|
capabilities: string | null;
|
|
556
568
|
isDefault: boolean | null;
|
|
@@ -977,6 +989,10 @@ namespace reference.`microsoft.graph` {
|
|
|
977
989
|
subject: string | null;
|
|
978
990
|
}
|
|
979
991
|
|
|
992
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
993
|
+
validatingDomains: validatingDomains;
|
|
994
|
+
}
|
|
995
|
+
|
|
980
996
|
@open
|
|
981
997
|
@entity model group extends directoryObject {
|
|
982
998
|
assignedLabels: assignedLabel[] | null;
|
|
@@ -1226,6 +1242,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1226
1242
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
1227
1243
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
1228
1244
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
1245
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
1229
1246
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
1230
1247
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
1231
1248
|
@contains tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
@@ -1631,6 +1648,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1631
1648
|
unknownFutureValue: 3,
|
|
1632
1649
|
}
|
|
1633
1650
|
|
|
1651
|
+
enum rootDomains {
|
|
1652
|
+
none: 0,
|
|
1653
|
+
all: 1,
|
|
1654
|
+
allFederated: 2,
|
|
1655
|
+
allManaged: 3,
|
|
1656
|
+
enumerated: 4,
|
|
1657
|
+
allManagedAndEnumeratedFederated: 5,
|
|
1658
|
+
unknownFutureValue: 6,
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1634
1661
|
enum scopeCollectionKind {
|
|
1635
1662
|
allAllowed: 0,
|
|
1636
1663
|
enumerated: 1,
|