@microsoft/typespec-msgraph-reference 1.0.8 → 1.0.10
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 +17 -17
- package/.rush/temp/shrinkwrap-deps.json +37 -59
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +725 -44
- package/lib/Bleu/V1.0/main.tsp +25 -0
- package/lib/Delos/Beta/main.tsp +1477 -51
- package/lib/Delos/V1.0/main.tsp +670 -9
- package/lib/Fairfax/Beta/main.tsp +828 -45
- package/lib/Fairfax/V1.0/main.tsp +26 -11
- package/lib/GovSG/Beta/main.tsp +112 -0
- package/lib/Mooncake/Beta/main.tsp +725 -44
- package/lib/Prod/Beta/main.tsp +203 -30
- package/lib/Prod/V1.0/main.tsp +33 -0
- package/lib/USNat/Beta/main.tsp +197 -3
- package/lib/USNat/V1.0/main.tsp +24 -9
- package/lib/USSec/Beta/main.tsp +197 -3
- package/lib/USSec/V1.0/main.tsp +24 -9
- package/package.json +5 -5
package/lib/Bleu/V1.0/main.tsp
CHANGED
|
@@ -3332,6 +3332,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3332
3332
|
sourceId: string;
|
|
3333
3333
|
}
|
|
3334
3334
|
|
|
3335
|
+
@complex model meetingEngagement {
|
|
3336
|
+
dateTime: offsetDateTime | null;
|
|
3337
|
+
engagementSubType: string | null;
|
|
3338
|
+
engagementType: meetingEngagementType | null;
|
|
3339
|
+
}
|
|
3340
|
+
|
|
3335
3341
|
@abstract
|
|
3336
3342
|
@complex model meetingInfo {
|
|
3337
3343
|
}
|
|
@@ -7537,6 +7543,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7537
7543
|
@entity model attendanceRecord extends entity {
|
|
7538
7544
|
attendanceIntervals: attendanceInterval[] | null;
|
|
7539
7545
|
emailAddress: string | null;
|
|
7546
|
+
engagements: meetingEngagement[] | null;
|
|
7540
7547
|
externalRegistrationInformation: virtualEventExternalRegistrationInformation | null;
|
|
7541
7548
|
identity: identity | null;
|
|
7542
7549
|
registrationId: string | null;
|
|
@@ -13280,6 +13287,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13280
13287
|
lobbyBypassSettings: lobbyBypassSettings | null;
|
|
13281
13288
|
meetingOptionsWebUrl: string | null;
|
|
13282
13289
|
meetingSpokenLanguageTag: string | null;
|
|
13290
|
+
meetingType: onlineMeetingType | null;
|
|
13283
13291
|
recordAutomatically: boolean | null;
|
|
13284
13292
|
sensitivityLabelAssignment: onlineMeetingSensitivityLabelAssignment | null;
|
|
13285
13293
|
shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
|
|
@@ -22084,6 +22092,14 @@ namespace reference.`microsoft.graph` {
|
|
|
22084
22092
|
unknownFutureValue: 3,
|
|
22085
22093
|
}
|
|
22086
22094
|
|
|
22095
|
+
enum meetingEngagementType {
|
|
22096
|
+
reaction: 0,
|
|
22097
|
+
hand: 1,
|
|
22098
|
+
camera: 2,
|
|
22099
|
+
microphone: 3,
|
|
22100
|
+
unknownFutureValue: 4,
|
|
22101
|
+
}
|
|
22102
|
+
|
|
22087
22103
|
enum meetingLiveShareOptions {
|
|
22088
22104
|
enabled: 0,
|
|
22089
22105
|
disabled: 1,
|
|
@@ -22452,6 +22468,15 @@ namespace reference.`microsoft.graph` {
|
|
|
22452
22468
|
coorganizer: 4,
|
|
22453
22469
|
}
|
|
22454
22470
|
|
|
22471
|
+
enum onlineMeetingType {
|
|
22472
|
+
adhoc: 0,
|
|
22473
|
+
scheduled: 1,
|
|
22474
|
+
recurring: 2,
|
|
22475
|
+
broadcast: 3,
|
|
22476
|
+
meetnow: 4,
|
|
22477
|
+
unknownFutureValue: 5,
|
|
22478
|
+
}
|
|
22479
|
+
|
|
22455
22480
|
@graphFlags
|
|
22456
22481
|
enum onlineMeetingVideoDisabledReason {
|
|
22457
22482
|
watermarkProtection: 1,
|