@microsoft/msgraph-sdk 1.0.0-preview.69 → 1.0.0-preview.70

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/models/index.d.ts CHANGED
@@ -8014,6 +8014,10 @@ export interface CallOptions extends AdditionalDataHolder, BackedModel, Parsable
8014
8014
  * Indicates whether delta roster is enabled for the call.
8015
8015
  */
8016
8016
  isDeltaRosterEnabled?: boolean | null;
8017
+ /**
8018
+ * Indicates whether delta roster filtering by participant interactivity is enabled.
8019
+ */
8020
+ isInteractiveRosterEnabled?: boolean | null;
8017
8021
  /**
8018
8022
  * The OdataType property
8019
8023
  */
@@ -9565,7 +9569,7 @@ export interface CloudPcDeviceImage extends Entity, Parsable {
9565
9569
  */
9566
9570
  lastModifiedDateTime?: Date | null;
9567
9571
  /**
9568
- * The operating system (OS) of the image. For example, Windows 10 Enterprise. Read-only.
9572
+ * The operating system (OS) of the image. For example, Windows 11 Enterprise. Read-only.
9569
9573
  */
9570
9574
  operatingSystem?: string | null;
9571
9575
  /**
@@ -48515,7 +48519,7 @@ export interface GovernanceInsightCollectionResponse extends BaseCollectionPagin
48515
48519
  }
48516
48520
  export interface GranularMailboxRestoreArtifact extends MailboxRestoreArtifact, Parsable {
48517
48521
  /**
48518
- * .
48522
+ * This property will be deprecated soon. Don't use.
48519
48523
  */
48520
48524
  artifactCount?: number | null;
48521
48525
  /**
@@ -57127,6 +57131,10 @@ export interface OnlineMeetingBase extends Entity, Parsable {
57127
57131
  * Indicates whether breakout rooms are enabled for the meeting.
57128
57132
  */
57129
57133
  allowBreakoutRooms?: boolean | null;
57134
+ /**
57135
+ * The allowCopyingAndSharingMeetingContent property
57136
+ */
57137
+ allowCopyingAndSharingMeetingContent?: boolean | null;
57130
57138
  /**
57131
57139
  * Specifies the users who can admit from the lobby. Possible values are: organizerAndCoOrganizersAndPresenters, organizerAndCoOrganizers, unknownFutureValue.
57132
57140
  */
@@ -92864,6 +92872,10 @@ export interface WhatIfAnalysisResult extends ConditionalAccessPolicy, Parsable
92864
92872
  * Contains properties and inherited properties for Win32 apps.
92865
92873
  */
92866
92874
  export interface Win32LobApp extends MobileLobApp, Parsable {
92875
+ /**
92876
+ * Indicates the Windows architecture(s) this app should be installed on. The app will be treated as not applicable for devices with architectures not matching the selected value. When a non-null value is provided for the `allowedArchitectures` property, the value of the `applicableArchitectures` property is set to `none`. Possible values are: `null`, `x86`, `x64`, `arm64`.
92877
+ */
92878
+ allowedArchitectures?: WindowsArchitecture[] | null;
92867
92879
  /**
92868
92880
  * Contains properties for Windows architecture.
92869
92881
  */
@@ -100187,16 +100199,16 @@ export declare const ManagedAppDataEncryptionTypeObject: {
100187
100199
  readonly WhenDeviceLocked: "whenDeviceLocked";
100188
100200
  };
100189
100201
  /**
100190
- * Storage locations where managed apps can potentially store their data
100202
+ * The storage locations where managed apps can potentially store their data.
100191
100203
  */
100192
100204
  export declare const ManagedAppDataStorageLocationObject: {
100193
- /** OneDrive for business */
100205
+ /** Indicates allowed storage location for the managed app to save files is 'OneDrive for Business'. */
100194
100206
  readonly OneDriveForBusiness: "oneDriveForBusiness";
100195
- /** SharePoint */
100207
+ /** Indicates allowed storage location for the managed app to save files is 'Sharepoint'. */
100196
100208
  readonly SharePoint: "sharePoint";
100197
- /** Box */
100209
+ /** Indicates that the allowed storage location for a managed app to save files is to 'Box'. Box is a non-Microsoft solution that enables cloud-based file storage capabilities. */
100198
100210
  readonly Box: "box";
100199
- /** Local storage on the device */
100211
+ /** Indicates allowed storage location for the managed app to save files is local storage on the device. */
100200
100212
  readonly LocalStorage: "localStorage";
100201
100213
  };
100202
100214
  /**