@microsoft/typespec-msgraph-reference 1.0.2 → 1.0.3
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 +19 -19
- package/.rush/temp/shrinkwrap-deps.json +97 -97
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +62535 -8268
- package/lib/Bleu/V1.0/main.tsp +16735 -31
- package/lib/Delos/Beta/main.tsp +56664 -2116
- package/lib/Delos/V1.0/main.tsp +16351 -0
- package/lib/Fairfax/Beta/main.tsp +417 -564
- package/lib/Fairfax/V1.0/main.tsp +23 -0
- package/lib/GovSG/Beta/main.tsp +50 -0
- package/lib/GovSG/V1.0/main.tsp +7 -0
- package/lib/Mooncake/Beta/main.tsp +163 -564
- package/lib/Mooncake/V1.0/main.tsp +75 -0
- package/lib/Prod/Beta/main.tsp +549 -567
- package/lib/Prod/V1.0/main.tsp +287 -1
- package/lib/USNat/Beta/main.tsp +1184 -7
- package/lib/USNat/V1.0/main.tsp +416 -0
- package/lib/USSec/Beta/main.tsp +781 -7
- package/lib/USSec/V1.0/main.tsp +23 -0
- package/package.json +2 -2
- package/rush-logs/typespec-msgraph-reference.build.log +1 -1
package/lib/USSec/V1.0/main.tsp
CHANGED
|
@@ -1475,6 +1475,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1475
1475
|
outboundAllowed: boolean | null;
|
|
1476
1476
|
}
|
|
1477
1477
|
|
|
1478
|
+
@complex model includeTarget {
|
|
1479
|
+
id: string;
|
|
1480
|
+
targetType: authenticationMethodTargetType;
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1478
1483
|
@complex model incomingContext {
|
|
1479
1484
|
observedParticipantId: string | null;
|
|
1480
1485
|
onBehalfOf: identitySet | null;
|
|
@@ -3429,11 +3434,21 @@ namespace reference.`microsoft.graph` {
|
|
|
3429
3434
|
x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
3430
3435
|
}
|
|
3431
3436
|
|
|
3437
|
+
@complex model x509CertificateAuthorityScope {
|
|
3438
|
+
includeTargets: includeTarget[] | null;
|
|
3439
|
+
publicKeyInfrastructureIdentifier: string | null;
|
|
3440
|
+
subjectKeyIdentifier: string | null;
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3432
3443
|
@complex model x509CertificateCRLValidationConfiguration {
|
|
3433
3444
|
exemptedCertificateAuthoritiesSubjectKeyIdentifiers: string[] | null;
|
|
3434
3445
|
state: x509CertificateCRLValidationConfigurationState;
|
|
3435
3446
|
}
|
|
3436
3447
|
|
|
3448
|
+
@complex model x509CertificateIssuerHintsConfiguration {
|
|
3449
|
+
state: x509CertificateIssuerHintsState | null;
|
|
3450
|
+
}
|
|
3451
|
+
|
|
3437
3452
|
@complex model x509CertificateRule {
|
|
3438
3453
|
identifier: string | null;
|
|
3439
3454
|
issuerSubjectIdentifier: string | null;
|
|
@@ -7376,8 +7391,10 @@ namespace reference.`microsoft.graph` {
|
|
|
7376
7391
|
|
|
7377
7392
|
@entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
7378
7393
|
authenticationModeConfiguration: x509CertificateAuthenticationModeConfiguration | null;
|
|
7394
|
+
certificateAuthorityScopes: x509CertificateAuthorityScope[] | null;
|
|
7379
7395
|
certificateUserBindings: x509CertificateUserBinding[] | null;
|
|
7380
7396
|
crlValidationConfiguration: x509CertificateCRLValidationConfiguration;
|
|
7397
|
+
issuerHintsConfiguration: x509CertificateIssuerHintsConfiguration | null;
|
|
7381
7398
|
@contains includeTargets: authenticationMethodTarget[];
|
|
7382
7399
|
}
|
|
7383
7400
|
|
|
@@ -9734,6 +9751,12 @@ namespace reference.`microsoft.graph` {
|
|
|
9734
9751
|
unknownFutureValue: 2,
|
|
9735
9752
|
}
|
|
9736
9753
|
|
|
9754
|
+
enum x509CertificateIssuerHintsState {
|
|
9755
|
+
disabled: 0,
|
|
9756
|
+
enabled: 1,
|
|
9757
|
+
unknownFutureValue: 2,
|
|
9758
|
+
}
|
|
9759
|
+
|
|
9737
9760
|
enum x509CertificateRuleType {
|
|
9738
9761
|
issuerSubject: 0,
|
|
9739
9762
|
policyOID: 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.3",
|
|
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.0.
|
|
76
|
+
"@microsoft/typespec-msgraph": "1.0.3"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"typescript": "~5.9.2"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
Invoking: tsc -p .
|
|
1
|
+
Invoking: tsc -p .
|