@microsoft/typespec-msgraph-reference 1.0.6 → 1.0.8
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 +18 -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
package/lib/USSec/V1.0/main.tsp
CHANGED
|
@@ -283,6 +283,9 @@ namespace reference.`microsoft.graph` {
|
|
|
283
283
|
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
284
284
|
}
|
|
285
285
|
|
|
286
|
+
@complex model allDomains extends validatingDomains {
|
|
287
|
+
}
|
|
288
|
+
|
|
286
289
|
@complex model alternativeSecurityId {
|
|
287
290
|
identityProvider: string | null;
|
|
288
291
|
key: binary | null;
|
|
@@ -500,6 +503,13 @@ namespace reference.`microsoft.graph` {
|
|
|
500
503
|
authenticationContextValue: string | null;
|
|
501
504
|
}
|
|
502
505
|
|
|
506
|
+
@complex model authenticationAppDeviceDetails {
|
|
507
|
+
appVersion: string | null;
|
|
508
|
+
clientApp: string | null;
|
|
509
|
+
deviceId: string | null;
|
|
510
|
+
operatingSystem: string | null;
|
|
511
|
+
}
|
|
512
|
+
|
|
503
513
|
@complex model authenticationBehaviors {
|
|
504
514
|
blockAzureADGraphAccess: boolean | null;
|
|
505
515
|
removeUnverifiedEmailClaim: boolean | null;
|
|
@@ -1377,6 +1387,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1377
1387
|
users: string[] | null;
|
|
1378
1388
|
}
|
|
1379
1389
|
|
|
1390
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
1391
|
+
domainNames: string[];
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1380
1394
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
1381
1395
|
scopes: string[];
|
|
1382
1396
|
}
|
|
@@ -3303,6 +3317,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3303
3317
|
tabId: string | null;
|
|
3304
3318
|
}
|
|
3305
3319
|
|
|
3320
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends subjectSet {
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3306
3323
|
@complex model targetApplicationOwners extends subjectSet {
|
|
3307
3324
|
}
|
|
3308
3325
|
|
|
@@ -3725,10 +3742,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3725
3742
|
userId: string | null;
|
|
3726
3743
|
}
|
|
3727
3744
|
|
|
3728
|
-
@
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
workLocationType: workLocationType;
|
|
3745
|
+
@abstract
|
|
3746
|
+
@complex model validatingDomains {
|
|
3747
|
+
rootDomains: rootDomains;
|
|
3732
3748
|
}
|
|
3733
3749
|
|
|
3734
3750
|
@complex model verifiedDomain {
|
|
@@ -5495,6 +5511,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5495
5511
|
subject: string | null;
|
|
5496
5512
|
}
|
|
5497
5513
|
|
|
5514
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
5515
|
+
validatingDomains: validatingDomains;
|
|
5516
|
+
}
|
|
5517
|
+
|
|
5498
5518
|
@entity model fido2AuthenticationMethod extends authenticationMethod {
|
|
5499
5519
|
aaGuid: string | null;
|
|
5500
5520
|
attestationCertificates: string[] | null;
|
|
@@ -5537,6 +5557,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5537
5557
|
|
|
5538
5558
|
@open
|
|
5539
5559
|
@entity model group extends directoryObject {
|
|
5560
|
+
accessType: groupAccessType | null;
|
|
5540
5561
|
allowExternalSenders: boolean | null;
|
|
5541
5562
|
assignedLabels: assignedLabel[] | null;
|
|
5542
5563
|
assignedLicenses: assignedLicense[] | null;
|
|
@@ -5553,6 +5574,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5553
5574
|
infoCatalogs: string[];
|
|
5554
5575
|
isArchived: boolean | null;
|
|
5555
5576
|
isAssignableToRole: boolean | null;
|
|
5577
|
+
isFavorite: boolean | null;
|
|
5556
5578
|
isManagementRestricted: boolean | null;
|
|
5557
5579
|
isSubscribedByMail: boolean | null;
|
|
5558
5580
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -5580,7 +5602,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5580
5602
|
serviceProvisioningErrors: serviceProvisioningError[] | null;
|
|
5581
5603
|
theme: string | null;
|
|
5582
5604
|
uniqueName: string | null;
|
|
5605
|
+
unseenConversationsCount: int32 | null;
|
|
5583
5606
|
unseenCount: int32 | null;
|
|
5607
|
+
unseenMessagesCount: int32 | null;
|
|
5584
5608
|
visibility: string | null;
|
|
5585
5609
|
welcomeMessageEnabled: boolean | null;
|
|
5586
5610
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -5800,6 +5824,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5800
5824
|
@contains drive: drive | null;
|
|
5801
5825
|
@contains items: listItem[];
|
|
5802
5826
|
@contains operations: richLongRunningOperation[];
|
|
5827
|
+
@contains permissions: permission[];
|
|
5803
5828
|
@contains subscriptions: subscription[];
|
|
5804
5829
|
}
|
|
5805
5830
|
|
|
@@ -5810,6 +5835,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5810
5835
|
@contains documentSetVersions: documentSetVersion[];
|
|
5811
5836
|
@contains driveItem: driveItem | null;
|
|
5812
5837
|
@contains fields: fieldValueSet | null;
|
|
5838
|
+
@contains permissions: permission[];
|
|
5813
5839
|
@contains versions: listItemVersion[];
|
|
5814
5840
|
}
|
|
5815
5841
|
|
|
@@ -6392,6 +6418,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6392
6418
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
6393
6419
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
6394
6420
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
6421
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
6395
6422
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
6396
6423
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
6397
6424
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
@@ -6422,7 +6449,6 @@ namespace reference.`microsoft.graph` {
|
|
|
6422
6449
|
activity: string | null;
|
|
6423
6450
|
availability: string | null;
|
|
6424
6451
|
statusMessage: presenceStatusMessage | null;
|
|
6425
|
-
workLocation: userWorkLocation | null;
|
|
6426
6452
|
}
|
|
6427
6453
|
|
|
6428
6454
|
@entity model privilegedAccessGroup extends entity {
|
|
@@ -6986,23 +7012,29 @@ namespace reference.`microsoft.graph` {
|
|
|
6986
7012
|
appDisplayName: string | null;
|
|
6987
7013
|
appId: string | null;
|
|
6988
7014
|
appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
|
|
7015
|
+
authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
|
|
6989
7016
|
clientAppUsed: string | null;
|
|
6990
7017
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
6991
7018
|
correlationId: string | null;
|
|
6992
7019
|
@computed createdDateTime: offsetDateTime;
|
|
6993
7020
|
deviceDetail: deviceDetail | null;
|
|
7021
|
+
homeTenantId: string | null;
|
|
6994
7022
|
ipAddress: string | null;
|
|
6995
7023
|
isInteractive: boolean | null;
|
|
6996
7024
|
location: signInLocation | null;
|
|
6997
7025
|
resourceDisplayName: string | null;
|
|
6998
7026
|
resourceId: string | null;
|
|
7027
|
+
resourceTenantId: string | null;
|
|
6999
7028
|
riskDetail: riskDetail | null;
|
|
7000
7029
|
riskEventTypes: riskEventType[] | null;
|
|
7001
7030
|
riskEventTypes_v2: string[] | null;
|
|
7002
7031
|
riskLevelAggregated: riskLevel | null;
|
|
7003
7032
|
riskLevelDuringSignIn: riskLevel | null;
|
|
7004
7033
|
riskState: riskState | null;
|
|
7034
|
+
servicePrincipalId: string | null;
|
|
7035
|
+
servicePrincipalName: string | null;
|
|
7005
7036
|
status: signInStatus | null;
|
|
7037
|
+
userAgent: string | null;
|
|
7006
7038
|
userDisplayName: string | null;
|
|
7007
7039
|
userId: string;
|
|
7008
7040
|
userPrincipalName: string | null;
|
|
@@ -8113,6 +8145,8 @@ namespace reference.`microsoft.graph` {
|
|
|
8113
8145
|
target: 1,
|
|
8114
8146
|
createdBy: 2,
|
|
8115
8147
|
unknownFutureValue: 99,
|
|
8148
|
+
targetManager: 100,
|
|
8149
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
8116
8150
|
}
|
|
8117
8151
|
|
|
8118
8152
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -8120,6 +8154,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8120
8154
|
createdBy: 2,
|
|
8121
8155
|
approver: 3,
|
|
8122
8156
|
unknownFutureValue: 99,
|
|
8157
|
+
targetOrRequestor: 100,
|
|
8158
|
+
targetManager: 101,
|
|
8159
|
+
requestForOthers: 102,
|
|
8160
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
8123
8161
|
}
|
|
8124
8162
|
|
|
8125
8163
|
enum accessPackageAssignmentState {
|
|
@@ -8302,6 +8340,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8302
8340
|
allDirectoryServicePrincipals: 6,
|
|
8303
8341
|
allConfiguredConnectedOrganizationUsers: 7,
|
|
8304
8342
|
allExternalUsers: 8,
|
|
8343
|
+
allDirectoryAgentIdentities: 9,
|
|
8305
8344
|
unknownFutureValue: 10,
|
|
8306
8345
|
}
|
|
8307
8346
|
|
|
@@ -9169,6 +9208,14 @@ namespace reference.`microsoft.graph` {
|
|
|
9169
9208
|
unknownFutureValue: 2,
|
|
9170
9209
|
}
|
|
9171
9210
|
|
|
9211
|
+
enum groupAccessType {
|
|
9212
|
+
none: 0,
|
|
9213
|
+
private: 1,
|
|
9214
|
+
secret: 2,
|
|
9215
|
+
public: 3,
|
|
9216
|
+
unknownFutureValue: 4,
|
|
9217
|
+
}
|
|
9218
|
+
|
|
9172
9219
|
enum groupType {
|
|
9173
9220
|
unifiedGroups: 0,
|
|
9174
9221
|
azureAD: 1,
|
|
@@ -9919,6 +9966,16 @@ namespace reference.`microsoft.graph` {
|
|
|
9919
9966
|
unknownFutureValue: 4,
|
|
9920
9967
|
}
|
|
9921
9968
|
|
|
9969
|
+
enum rootDomains {
|
|
9970
|
+
none: 0,
|
|
9971
|
+
all: 1,
|
|
9972
|
+
allFederated: 2,
|
|
9973
|
+
allManaged: 3,
|
|
9974
|
+
enumerated: 4,
|
|
9975
|
+
allManagedAndEnumeratedFederated: 5,
|
|
9976
|
+
unknownFutureValue: 6,
|
|
9977
|
+
}
|
|
9978
|
+
|
|
9922
9979
|
enum routingType {
|
|
9923
9980
|
forwarded: 0,
|
|
9924
9981
|
lookup: 1,
|
|
@@ -10587,22 +10644,6 @@ namespace reference.`microsoft.graph` {
|
|
|
10587
10644
|
failed: 3,
|
|
10588
10645
|
}
|
|
10589
10646
|
|
|
10590
|
-
enum workLocationSource {
|
|
10591
|
-
none: 0,
|
|
10592
|
-
manual: 1,
|
|
10593
|
-
scheduled: 2,
|
|
10594
|
-
automatic: 3,
|
|
10595
|
-
unknownFutureValue: 4,
|
|
10596
|
-
}
|
|
10597
|
-
|
|
10598
|
-
enum workLocationType {
|
|
10599
|
-
unspecified: 0,
|
|
10600
|
-
office: 1,
|
|
10601
|
-
remote: 2,
|
|
10602
|
-
timeOff: 3,
|
|
10603
|
-
unknownFutureValue: 4,
|
|
10604
|
-
}
|
|
10605
|
-
|
|
10606
10647
|
enum x509CertificateAffinityLevel {
|
|
10607
10648
|
low: 0,
|
|
10608
10649
|
high: 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.8",
|
|
4
4
|
"description": "Reference models for Microsoft Graph across multiple clouds",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@typespec/compiler": "~1.9.0",
|
|
75
75
|
"@typespec/http": "~1.9.0",
|
|
76
|
-
"@microsoft/typespec-msgraph": "1.2.
|
|
76
|
+
"@microsoft/typespec-msgraph": "1.2.2"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"typescript": "~5.9.2"
|