@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.
@@ -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.2",
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.2"
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 .