@microsoft/typespec-msgraph-reference 1.0.7 → 1.0.9

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.
@@ -1269,6 +1269,7 @@ namespace reference.`microsoft.graph` {
1269
1269
  @complex model appManagementApplicationConfiguration extends appManagementConfiguration {
1270
1270
  audiences: audiencesConfiguration | null;
1271
1271
  identifierUris: identifierUriConfiguration | null;
1272
+ redirectUris: redirectUriConfiguration | null;
1272
1273
  }
1273
1274
 
1274
1275
  @abstract
@@ -2510,6 +2511,12 @@ namespace reference.`microsoft.graph` {
2510
2511
  thumbnailUrl: string | null;
2511
2512
  }
2512
2513
 
2514
+ @complex model chatMessageBody {
2515
+ content: string | null;
2516
+ contentType: bodyType | null;
2517
+ messageBodyContentType: chatMessageBodyContentType | null;
2518
+ }
2519
+
2513
2520
  @open
2514
2521
  @complex model chatMessageFromIdentitySet extends identitySet {
2515
2522
  }
@@ -3873,6 +3880,7 @@ namespace reference.`microsoft.graph` {
3873
3880
  @complex model customAppManagementApplicationConfiguration {
3874
3881
  audiences: audiencesConfiguration | null;
3875
3882
  identifierUris: identifierUriConfiguration | null;
3883
+ redirectUris: redirectUriConfiguration | null;
3876
3884
  }
3877
3885
 
3878
3886
  @complex model customAppManagementConfiguration extends appManagementConfiguration {
@@ -12145,11 +12153,94 @@ namespace reference.`microsoft.graph` {
12145
12153
  urlPrefixes: string[] | null;
12146
12154
  }
12147
12155
 
12156
+ @complex model redirectUriAllowedDomainConfiguration {
12157
+ allowedDomains: string[];
12158
+ excludeActors: appManagementPolicyActorExemptions | null;
12159
+ isStateSetByMicrosoft: boolean;
12160
+ publicClient: redirectUriPlatformAllowedDomainConfiguration | null;
12161
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
12162
+ spa: redirectUriPlatformAllowedDomainConfiguration | null;
12163
+ state: appManagementRestrictionState;
12164
+ web: redirectUriPlatformAllowedDomainConfiguration | null;
12165
+ }
12166
+
12167
+ @complex model redirectUriAllowedSchemeConfiguration {
12168
+ allowedSchemes: string[];
12169
+ excludeActors: appManagementPolicyActorExemptions | null;
12170
+ isStateSetByMicrosoft: boolean;
12171
+ publicClient: redirectUriPlatformAllowedSchemeConfiguration | null;
12172
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
12173
+ spa: redirectUriPlatformAllowedSchemeConfiguration | null;
12174
+ state: appManagementRestrictionState;
12175
+ web: redirectUriPlatformAllowedSchemeConfiguration | null;
12176
+ }
12177
+
12178
+ @complex model redirectUriBlockedDomainConfiguration {
12179
+ blockedDomains: string[];
12180
+ excludeActors: appManagementPolicyActorExemptions | null;
12181
+ isStateSetByMicrosoft: boolean;
12182
+ publicClient: redirectUriPlatformBlockedDomainConfiguration | null;
12183
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
12184
+ spa: redirectUriPlatformBlockedDomainConfiguration | null;
12185
+ state: appManagementRestrictionState;
12186
+ web: redirectUriPlatformBlockedDomainConfiguration | null;
12187
+ }
12188
+
12189
+ @complex model redirectUriBlockedSchemeConfiguration {
12190
+ blockedSchemes: string[];
12191
+ excludeActors: appManagementPolicyActorExemptions | null;
12192
+ exemptFormats: string[];
12193
+ isStateSetByMicrosoft: boolean;
12194
+ publicClient: redirectUriPlatformBlockedSchemeConfiguration | null;
12195
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
12196
+ spa: redirectUriPlatformBlockedSchemeConfiguration | null;
12197
+ state: appManagementRestrictionState;
12198
+ web: redirectUriPlatformBlockedSchemeConfiguration | null;
12199
+ }
12200
+
12201
+ @complex model redirectUriConfiguration {
12202
+ uriWithBlockedDomain: redirectUriBlockedDomainConfiguration | null;
12203
+ uriWithBlockedScheme: redirectUriBlockedSchemeConfiguration | null;
12204
+ uriWithoutAllowedDomain: redirectUriAllowedDomainConfiguration | null;
12205
+ uriWithoutAllowedScheme: redirectUriAllowedSchemeConfiguration | null;
12206
+ uriWithWildcard: redirectUriWildcardConfiguration | null;
12207
+ }
12208
+
12209
+ @complex model redirectUriPlatformAllowedDomainConfiguration {
12210
+ allowedDomains: string[];
12211
+ }
12212
+
12213
+ @complex model redirectUriPlatformAllowedSchemeConfiguration {
12214
+ allowedSchemes: string[];
12215
+ }
12216
+
12217
+ @complex model redirectUriPlatformBlockedDomainConfiguration {
12218
+ blockedDomains: string[];
12219
+ }
12220
+
12221
+ @complex model redirectUriPlatformBlockedSchemeConfiguration {
12222
+ blockedSchemes: string[];
12223
+ exemptFormats: string[];
12224
+ }
12225
+
12148
12226
  @complex model redirectUriSettings {
12149
12227
  index: int32 | null;
12150
12228
  uri: string | null;
12151
12229
  }
12152
12230
 
12231
+ @complex model redirectUriWildcardConfiguration {
12232
+ excludeActors: appManagementPolicyActorExemptions | null;
12233
+ excludeFormats: redirectUriWildcardExcludeFormats | null;
12234
+ isStateSetByMicrosoft: boolean;
12235
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
12236
+ state: appManagementRestrictionState;
12237
+ }
12238
+
12239
+ @complex model redirectUriWildcardExcludeFormats {
12240
+ excludeWildcardsInPath: boolean;
12241
+ excludeWildcardsInPathWithDomains: string[];
12242
+ }
12243
+
12153
12244
  @complex model referencedObject {
12154
12245
  referencedObjectName: string | null;
12155
12246
  referencedProperty: string | null;
@@ -23178,7 +23269,7 @@ This model is shared with the CCS retrieval API and search where it is already u
23178
23269
 
23179
23270
  @entity model chatMessage extends entity {
23180
23271
  attachments: chatMessageAttachment[] | null;
23181
- body: itemBody;
23272
+ body: chatMessageBody;
23182
23273
  channelIdentity: channelIdentity | null;
23183
23274
  chatId: string | null;
23184
23275
  @computed createdDateTime: offsetDateTime | null;
@@ -23208,7 +23299,7 @@ This model is shared with the CCS retrieval API and search where it is already u
23208
23299
  }
23209
23300
 
23210
23301
  @entity model chatMessageInfo extends entity {
23211
- body: itemBody | null;
23302
+ body: chatMessageBody | null;
23212
23303
  @computed createdDateTime: offsetDateTime | null;
23213
23304
  eventDetail: eventMessageDetail | null;
23214
23305
  from: chatMessageFromIdentitySet | null;
@@ -55564,6 +55655,13 @@ typically alternating request/response, implicitly forming a turn.Represents a c
55564
55655
  unknownFutureValue: 8,
55565
55656
  }
55566
55657
 
55658
+ enum chatMessageBodyContentType {
55659
+ text: 0,
55660
+ html: 1,
55661
+ markdown: 2,
55662
+ unknownFutureValue: 3,
55663
+ }
55664
+
55567
55665
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
55568
55666
  enum chatMessageImportance {
55569
55667
  normal: 0,
@@ -14892,36 +14892,41 @@ namespace reference.`microsoft.graph` {
14892
14892
  }
14893
14893
 
14894
14894
  @open
14895
- @entity model onlineMeeting extends entity {
14895
+ @entity model onlineMeeting extends onlineMeetingBase {
14896
+ attendeeReport: stream | null;
14897
+ broadcastSettings: broadcastMeetingSettings | null;
14898
+ creationDateTime: offsetDateTime | null;
14899
+ endDateTime: offsetDateTime | null;
14900
+ externalId: string | null;
14901
+ isBroadcast: boolean | null;
14902
+ participants: meetingParticipants | null;
14903
+ startDateTime: offsetDateTime | null;
14904
+ @contains recordings: callRecording[];
14905
+ @contains transcripts: callTranscript[];
14906
+ }
14907
+
14908
+ @abstract
14909
+ @open
14910
+ @entity model onlineMeetingBase extends entity {
14896
14911
  allowAttendeeToEnableCamera: boolean | null;
14897
14912
  allowAttendeeToEnableMic: boolean | null;
14898
14913
  allowedPresenters: onlineMeetingPresenters | null;
14899
14914
  allowMeetingChat: meetingChatMode | null;
14900
14915
  allowParticipantsToChangeName: boolean | null;
14901
14916
  allowTeamworkReactions: boolean | null;
14902
- attendeeReport: stream | null;
14903
14917
  audioConferencing: audioConferencing | null;
14904
- broadcastSettings: broadcastMeetingSettings | null;
14905
14918
  chatInfo: chatInfo | null;
14906
- creationDateTime: offsetDateTime | null;
14907
- endDateTime: offsetDateTime | null;
14908
- externalId: string | null;
14909
- isBroadcast: boolean | null;
14910
14919
  isEntryExitAnnounced: boolean | null;
14911
14920
  joinInformation: itemBody | null;
14912
14921
  joinMeetingIdSettings: joinMeetingIdSettings | null;
14913
14922
  joinWebUrl: string | null;
14914
14923
  lobbyBypassSettings: lobbyBypassSettings | null;
14915
- participants: meetingParticipants | null;
14916
14924
  recordAutomatically: boolean | null;
14917
14925
  shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
14918
- startDateTime: offsetDateTime | null;
14919
14926
  subject: string | null;
14920
14927
  videoTeleconferenceId: string | null;
14921
14928
  watermarkProtection: watermarkProtectionValues | null;
14922
14929
  @contains attendanceReports: meetingAttendanceReport[];
14923
- @contains recordings: callRecording[];
14924
- @contains transcripts: callTranscript[];
14925
14930
  }
14926
14931
 
14927
14932
  /**
@@ -63,6 +63,7 @@ namespace reference.`microsoft.graph` {
63
63
 
64
64
  @complex model appManagementApplicationConfiguration extends appManagementConfiguration {
65
65
  identifierUris: identifierUriConfiguration | null;
66
+ redirectUris: redirectUriConfiguration | null;
66
67
  }
67
68
 
68
69
  @abstract
@@ -193,6 +194,7 @@ namespace reference.`microsoft.graph` {
193
194
 
194
195
  @complex model customAppManagementApplicationConfiguration {
195
196
  identifierUris: identifierUriConfiguration | null;
197
+ redirectUris: redirectUriConfiguration | null;
196
198
  }
197
199
 
198
200
  @complex model customAppManagementConfiguration extends appManagementConfiguration {
@@ -610,11 +612,94 @@ namespace reference.`microsoft.graph` {
610
612
  redirectUris: string[];
611
613
  }
612
614
 
615
+ @complex model redirectUriAllowedDomainConfiguration {
616
+ allowedDomains: string[];
617
+ excludeActors: appManagementPolicyActorExemptions | null;
618
+ isStateSetByMicrosoft: boolean;
619
+ publicClient: redirectUriPlatformAllowedDomainConfiguration | null;
620
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
621
+ spa: redirectUriPlatformAllowedDomainConfiguration | null;
622
+ state: appManagementRestrictionState;
623
+ web: redirectUriPlatformAllowedDomainConfiguration | null;
624
+ }
625
+
626
+ @complex model redirectUriAllowedSchemeConfiguration {
627
+ allowedSchemes: string[];
628
+ excludeActors: appManagementPolicyActorExemptions | null;
629
+ isStateSetByMicrosoft: boolean;
630
+ publicClient: redirectUriPlatformAllowedSchemeConfiguration | null;
631
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
632
+ spa: redirectUriPlatformAllowedSchemeConfiguration | null;
633
+ state: appManagementRestrictionState;
634
+ web: redirectUriPlatformAllowedSchemeConfiguration | null;
635
+ }
636
+
637
+ @complex model redirectUriBlockedDomainConfiguration {
638
+ blockedDomains: string[];
639
+ excludeActors: appManagementPolicyActorExemptions | null;
640
+ isStateSetByMicrosoft: boolean;
641
+ publicClient: redirectUriPlatformBlockedDomainConfiguration | null;
642
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
643
+ spa: redirectUriPlatformBlockedDomainConfiguration | null;
644
+ state: appManagementRestrictionState;
645
+ web: redirectUriPlatformBlockedDomainConfiguration | null;
646
+ }
647
+
648
+ @complex model redirectUriBlockedSchemeConfiguration {
649
+ blockedSchemes: string[];
650
+ excludeActors: appManagementPolicyActorExemptions | null;
651
+ exemptFormats: string[];
652
+ isStateSetByMicrosoft: boolean;
653
+ publicClient: redirectUriPlatformBlockedSchemeConfiguration | null;
654
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
655
+ spa: redirectUriPlatformBlockedSchemeConfiguration | null;
656
+ state: appManagementRestrictionState;
657
+ web: redirectUriPlatformBlockedSchemeConfiguration | null;
658
+ }
659
+
660
+ @complex model redirectUriConfiguration {
661
+ uriWithBlockedDomain: redirectUriBlockedDomainConfiguration | null;
662
+ uriWithBlockedScheme: redirectUriBlockedSchemeConfiguration | null;
663
+ uriWithoutAllowedDomain: redirectUriAllowedDomainConfiguration | null;
664
+ uriWithoutAllowedScheme: redirectUriAllowedSchemeConfiguration | null;
665
+ uriWithWildcard: redirectUriWildcardConfiguration | null;
666
+ }
667
+
668
+ @complex model redirectUriPlatformAllowedDomainConfiguration {
669
+ allowedDomains: string[];
670
+ }
671
+
672
+ @complex model redirectUriPlatformAllowedSchemeConfiguration {
673
+ allowedSchemes: string[];
674
+ }
675
+
676
+ @complex model redirectUriPlatformBlockedDomainConfiguration {
677
+ blockedDomains: string[];
678
+ }
679
+
680
+ @complex model redirectUriPlatformBlockedSchemeConfiguration {
681
+ blockedSchemes: string[];
682
+ exemptFormats: string[];
683
+ }
684
+
613
685
  @complex model redirectUriSettings {
614
686
  index: int32 | null;
615
687
  uri: string | null;
616
688
  }
617
689
 
690
+ @complex model redirectUriWildcardConfiguration {
691
+ excludeActors: appManagementPolicyActorExemptions | null;
692
+ excludeFormats: redirectUriWildcardExcludeFormats | null;
693
+ isStateSetByMicrosoft: boolean;
694
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
695
+ state: appManagementRestrictionState;
696
+ }
697
+
698
+ @complex model redirectUriWildcardExcludeFormats {
699
+ excludeWildcardsInPath: boolean;
700
+ excludeWildcardsInPathWithDomains: string[];
701
+ }
702
+
618
703
  @complex model requestSignatureVerification {
619
704
  allowedWeakAlgorithms: weakAlgorithms | null;
620
705
  isSignedRequestRequired: boolean;
@@ -1141,6 +1141,7 @@ namespace reference.`microsoft.graph` {
1141
1141
  @complex model appManagementApplicationConfiguration extends appManagementConfiguration {
1142
1142
  audiences: audiencesConfiguration | null;
1143
1143
  identifierUris: identifierUriConfiguration | null;
1144
+ redirectUris: redirectUriConfiguration | null;
1144
1145
  }
1145
1146
 
1146
1147
  @abstract
@@ -2194,6 +2195,12 @@ namespace reference.`microsoft.graph` {
2194
2195
  thumbnailUrl: string | null;
2195
2196
  }
2196
2197
 
2198
+ @complex model chatMessageBody {
2199
+ content: string | null;
2200
+ contentType: bodyType | null;
2201
+ messageBodyContentType: chatMessageBodyContentType | null;
2202
+ }
2203
+
2197
2204
  @open
2198
2205
  @complex model chatMessageFromIdentitySet extends identitySet {
2199
2206
  }
@@ -2927,6 +2934,7 @@ namespace reference.`microsoft.graph` {
2927
2934
  @complex model customAppManagementApplicationConfiguration {
2928
2935
  audiences: audiencesConfiguration | null;
2929
2936
  identifierUris: identifierUriConfiguration | null;
2937
+ redirectUris: redirectUriConfiguration | null;
2930
2938
  }
2931
2939
 
2932
2940
  @complex model customAppManagementConfiguration extends appManagementConfiguration {
@@ -10267,11 +10275,94 @@ namespace reference.`microsoft.graph` {
10267
10275
  urlPrefixes: string[] | null;
10268
10276
  }
10269
10277
 
10278
+ @complex model redirectUriAllowedDomainConfiguration {
10279
+ allowedDomains: string[];
10280
+ excludeActors: appManagementPolicyActorExemptions | null;
10281
+ isStateSetByMicrosoft: boolean;
10282
+ publicClient: redirectUriPlatformAllowedDomainConfiguration | null;
10283
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
10284
+ spa: redirectUriPlatformAllowedDomainConfiguration | null;
10285
+ state: appManagementRestrictionState;
10286
+ web: redirectUriPlatformAllowedDomainConfiguration | null;
10287
+ }
10288
+
10289
+ @complex model redirectUriAllowedSchemeConfiguration {
10290
+ allowedSchemes: string[];
10291
+ excludeActors: appManagementPolicyActorExemptions | null;
10292
+ isStateSetByMicrosoft: boolean;
10293
+ publicClient: redirectUriPlatformAllowedSchemeConfiguration | null;
10294
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
10295
+ spa: redirectUriPlatformAllowedSchemeConfiguration | null;
10296
+ state: appManagementRestrictionState;
10297
+ web: redirectUriPlatformAllowedSchemeConfiguration | null;
10298
+ }
10299
+
10300
+ @complex model redirectUriBlockedDomainConfiguration {
10301
+ blockedDomains: string[];
10302
+ excludeActors: appManagementPolicyActorExemptions | null;
10303
+ isStateSetByMicrosoft: boolean;
10304
+ publicClient: redirectUriPlatformBlockedDomainConfiguration | null;
10305
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
10306
+ spa: redirectUriPlatformBlockedDomainConfiguration | null;
10307
+ state: appManagementRestrictionState;
10308
+ web: redirectUriPlatformBlockedDomainConfiguration | null;
10309
+ }
10310
+
10311
+ @complex model redirectUriBlockedSchemeConfiguration {
10312
+ blockedSchemes: string[];
10313
+ excludeActors: appManagementPolicyActorExemptions | null;
10314
+ exemptFormats: string[];
10315
+ isStateSetByMicrosoft: boolean;
10316
+ publicClient: redirectUriPlatformBlockedSchemeConfiguration | null;
10317
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
10318
+ spa: redirectUriPlatformBlockedSchemeConfiguration | null;
10319
+ state: appManagementRestrictionState;
10320
+ web: redirectUriPlatformBlockedSchemeConfiguration | null;
10321
+ }
10322
+
10323
+ @complex model redirectUriConfiguration {
10324
+ uriWithBlockedDomain: redirectUriBlockedDomainConfiguration | null;
10325
+ uriWithBlockedScheme: redirectUriBlockedSchemeConfiguration | null;
10326
+ uriWithoutAllowedDomain: redirectUriAllowedDomainConfiguration | null;
10327
+ uriWithoutAllowedScheme: redirectUriAllowedSchemeConfiguration | null;
10328
+ uriWithWildcard: redirectUriWildcardConfiguration | null;
10329
+ }
10330
+
10331
+ @complex model redirectUriPlatformAllowedDomainConfiguration {
10332
+ allowedDomains: string[];
10333
+ }
10334
+
10335
+ @complex model redirectUriPlatformAllowedSchemeConfiguration {
10336
+ allowedSchemes: string[];
10337
+ }
10338
+
10339
+ @complex model redirectUriPlatformBlockedDomainConfiguration {
10340
+ blockedDomains: string[];
10341
+ }
10342
+
10343
+ @complex model redirectUriPlatformBlockedSchemeConfiguration {
10344
+ blockedSchemes: string[];
10345
+ exemptFormats: string[];
10346
+ }
10347
+
10270
10348
  @complex model redirectUriSettings {
10271
10349
  index: int32 | null;
10272
10350
  uri: string | null;
10273
10351
  }
10274
10352
 
10353
+ @complex model redirectUriWildcardConfiguration {
10354
+ excludeActors: appManagementPolicyActorExemptions | null;
10355
+ excludeFormats: redirectUriWildcardExcludeFormats | null;
10356
+ isStateSetByMicrosoft: boolean;
10357
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
10358
+ state: appManagementRestrictionState;
10359
+ }
10360
+
10361
+ @complex model redirectUriWildcardExcludeFormats {
10362
+ excludeWildcardsInPath: boolean;
10363
+ excludeWildcardsInPathWithDomains: string[];
10364
+ }
10365
+
10275
10366
  @complex model referencedObject {
10276
10367
  referencedObjectName: string | null;
10277
10368
  referencedProperty: string | null;
@@ -20592,7 +20683,7 @@ namespace reference.`microsoft.graph` {
20592
20683
 
20593
20684
  @entity model chatMessage extends entity {
20594
20685
  attachments: chatMessageAttachment[] | null;
20595
- body: itemBody;
20686
+ body: chatMessageBody;
20596
20687
  channelIdentity: channelIdentity | null;
20597
20688
  chatId: string | null;
20598
20689
  @computed createdDateTime: offsetDateTime | null;
@@ -20622,7 +20713,7 @@ namespace reference.`microsoft.graph` {
20622
20713
  }
20623
20714
 
20624
20715
  @entity model chatMessageInfo extends entity {
20625
- body: itemBody | null;
20716
+ body: chatMessageBody | null;
20626
20717
  @computed createdDateTime: offsetDateTime | null;
20627
20718
  eventDetail: eventMessageDetail | null;
20628
20719
  from: chatMessageFromIdentitySet | null;
@@ -50998,6 +51089,13 @@ namespace reference.`microsoft.graph` {
50998
51089
  unknownFutureValue: 8,
50999
51090
  }
51000
51091
 
51092
+ enum chatMessageBodyContentType {
51093
+ text: 0,
51094
+ html: 1,
51095
+ markdown: 2,
51096
+ unknownFutureValue: 3,
51097
+ }
51098
+
51001
51099
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
51002
51100
  enum chatMessageImportance {
51003
51101
  normal: 0,