@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.
@@ -699,6 +699,13 @@ namespace reference.`microsoft.graph` {
699
699
  certificateUserIds: string[] | null;
700
700
  }
701
701
 
702
+ @complex model automaticRepliesMailTips {
703
+ message: string | null;
704
+ messageLanguage: localeInfo | null;
705
+ scheduledEndTime: dateTimeTimeZone | null;
706
+ scheduledStartTime: dateTimeTimeZone | null;
707
+ }
708
+
702
709
  @complex model automaticRepliesSetting {
703
710
  externalAudience: externalAudienceScope | null;
704
711
  externalReplyMessage: string | null;
@@ -2313,6 +2320,11 @@ namespace reference.`microsoft.graph` {
2313
2320
  outboundAllowed: boolean | null;
2314
2321
  }
2315
2322
 
2323
+ @complex model includeTarget {
2324
+ id: string;
2325
+ targetType: authenticationMethodTargetType;
2326
+ }
2327
+
2316
2328
  @open
2317
2329
  @complex model incompleteData {
2318
2330
  missingDataBeforeDateTime: offsetDateTime | null;
@@ -2955,6 +2967,26 @@ namespace reference.`microsoft.graph` {
2955
2967
  workingHours: workingHours | null;
2956
2968
  }
2957
2969
 
2970
+ @complex model mailTips {
2971
+ automaticReplies: automaticRepliesMailTips | null;
2972
+ customMailTip: string | null;
2973
+ deliveryRestricted: boolean | null;
2974
+ emailAddress: emailAddress | null;
2975
+ error: mailTipsError | null;
2976
+ externalMemberCount: int32 | null;
2977
+ isModerated: boolean | null;
2978
+ mailboxFull: boolean | null;
2979
+ maxMessageSize: int32 | null;
2980
+ recipientScope: recipientScopeType | null;
2981
+ recipientSuggestions: recipient[] | null;
2982
+ totalMemberCount: int32 | null;
2983
+ }
2984
+
2985
+ @complex model mailTipsError {
2986
+ code: string | null;
2987
+ message: string | null;
2988
+ }
2989
+
2958
2990
  @complex model malware {
2959
2991
  description: string | null;
2960
2992
  }
@@ -5729,11 +5761,21 @@ namespace reference.`microsoft.graph` {
5729
5761
  x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
5730
5762
  }
5731
5763
 
5764
+ @complex model x509CertificateAuthorityScope {
5765
+ includeTargets: includeTarget[] | null;
5766
+ publicKeyInfrastructureIdentifier: string | null;
5767
+ subjectKeyIdentifier: string | null;
5768
+ }
5769
+
5732
5770
  @complex model x509CertificateCRLValidationConfiguration {
5733
5771
  exemptedCertificateAuthoritiesSubjectKeyIdentifiers: string[] | null;
5734
5772
  state: x509CertificateCRLValidationConfigurationState;
5735
5773
  }
5736
5774
 
5775
+ @complex model x509CertificateIssuerHintsConfiguration {
5776
+ state: x509CertificateIssuerHintsState | null;
5777
+ }
5778
+
5737
5779
  @complex model x509CertificateRule {
5738
5780
  identifier: string | null;
5739
5781
  issuerSubjectIdentifier: string | null;
@@ -17975,8 +18017,10 @@ namespace reference.`microsoft.graph` {
17975
18017
 
17976
18018
  @entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
17977
18019
  authenticationModeConfiguration: x509CertificateAuthenticationModeConfiguration | null;
18020
+ certificateAuthorityScopes: x509CertificateAuthorityScope[] | null;
17978
18021
  certificateUserBindings: x509CertificateUserBinding[] | null;
17979
18022
  crlValidationConfiguration: x509CertificateCRLValidationConfiguration;
18023
+ issuerHintsConfiguration: x509CertificateIssuerHintsConfiguration | null;
17980
18024
  @contains includeTargets: authenticationMethodTarget[];
17981
18025
  }
17982
18026
 
@@ -20553,6 +20597,21 @@ namespace reference.`microsoft.graph` {
20553
20597
  unknownFutureValue: 4,
20554
20598
  }
20555
20599
 
20600
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
20601
+ @graphFlags
20602
+ enum mailTipsType {
20603
+ automaticReplies: 1,
20604
+ mailboxFullStatus: 2,
20605
+ customMailTip: 4,
20606
+ externalMemberCount: 8,
20607
+ totalMemberCount: 16,
20608
+ maxMessageSize: 32,
20609
+ deliveryRestriction: 64,
20610
+ moderationStatus: 128,
20611
+ recipientScope: 256,
20612
+ recipientSuggestions: 512,
20613
+ }
20614
+
20556
20615
  /**
20557
20616
  * A managed (MAM) application's availability.
20558
20617
  */
@@ -22138,6 +22197,16 @@ namespace reference.`microsoft.graph` {
22138
22197
  adults: 7,
22139
22198
  }
22140
22199
 
22200
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
22201
+ @graphFlags
22202
+ enum recipientScopeType {
22203
+ none: 0,
22204
+ `internal`: 1,
22205
+ external: 2,
22206
+ externalPartner: 4,
22207
+ externalNonPartner: 8,
22208
+ }
22209
+
22141
22210
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
22142
22211
  enum recurrencePatternType {
22143
22212
  daily: 0,
@@ -24489,6 +24558,12 @@ namespace reference.`microsoft.graph` {
24489
24558
  unknownFutureValue: 2,
24490
24559
  }
24491
24560
 
24561
+ enum x509CertificateIssuerHintsState {
24562
+ disabled: 0,
24563
+ enabled: 1,
24564
+ unknownFutureValue: 2,
24565
+ }
24566
+
24492
24567
  enum x509CertificateRuleType {
24493
24568
  issuerSubject: 0,
24494
24569
  policyOID: 1,