@microsoft/msgraph-sdk 1.0.0-preview.43 → 1.0.0-preview.45

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
@@ -2088,7 +2088,7 @@ export interface AgreementFileData extends AdditionalDataHolder, BackedModel, Pa
2088
2088
  /**
2089
2089
  * Data that represents the terms of use PDF document. Read-only.
2090
2090
  */
2091
- data?: String | null;
2091
+ data?: ArrayBuffer | null;
2092
2092
  /**
2093
2093
  * The OdataType property
2094
2094
  */
@@ -2518,7 +2518,7 @@ export interface AlternativeSecurityId extends AdditionalDataHolder, BackedModel
2518
2518
  /**
2519
2519
  * For internal use only.
2520
2520
  */
2521
- key?: String | null;
2521
+ key?: ArrayBuffer | null;
2522
2522
  /**
2523
2523
  * The OdataType property
2524
2524
  */
@@ -3523,6 +3523,10 @@ export interface Application extends DirectoryObject, Parsable {
3523
3523
  * The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable.
3524
3524
  */
3525
3525
  appRoles?: AppRole[] | null;
3526
+ /**
3527
+ * The authenticationBehaviors property
3528
+ */
3529
+ authenticationBehaviors?: AuthenticationBehaviors | null;
3526
3530
  /**
3527
3531
  * Specifies the certification status of the application.
3528
3532
  */
@@ -3590,7 +3594,7 @@ export interface Application extends DirectoryObject, Parsable {
3590
3594
  /**
3591
3595
  * The main logo for the application. Not nullable.
3592
3596
  */
3593
- logo?: String | null;
3597
+ logo?: ArrayBuffer | null;
3594
3598
  /**
3595
3599
  * Specifies whether the Native Authentication APIs are enabled for the application. The possible values are: none and all. Default is none. For more information, see Native Authentication.
3596
3600
  */
@@ -4484,7 +4488,7 @@ export interface AttachmentSession extends Entity, Parsable {
4484
4488
  /**
4485
4489
  * The content streams that are uploaded.
4486
4490
  */
4487
- content?: String | null;
4491
+ content?: ArrayBuffer | null;
4488
4492
  /**
4489
4493
  * The date and time in UTC when the upload session will expire. The complete file must be uploaded before this expiration time is reached.
4490
4494
  */
@@ -5509,6 +5513,32 @@ export interface AuthenticationAttributeCollectionPageViewConfiguration extends
5509
5513
  */
5510
5514
  title?: string | null;
5511
5515
  }
5516
+ export interface AuthenticationBehaviors extends AdditionalDataHolder, BackedModel, Parsable {
5517
+ /**
5518
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
5519
+ */
5520
+ additionalData?: Record<string, unknown>;
5521
+ /**
5522
+ * Stores model information.
5523
+ */
5524
+ backingStoreEnabled?: boolean | null;
5525
+ /**
5526
+ * The blockAzureADGraphAccess property
5527
+ */
5528
+ blockAzureADGraphAccess?: boolean | null;
5529
+ /**
5530
+ * The OdataType property
5531
+ */
5532
+ odataType?: string | null;
5533
+ /**
5534
+ * The removeUnverifiedEmailClaim property
5535
+ */
5536
+ removeUnverifiedEmailClaim?: boolean | null;
5537
+ /**
5538
+ * The requireClientServicePrincipal property
5539
+ */
5540
+ requireClientServicePrincipal?: boolean | null;
5541
+ }
5512
5542
  export interface AuthenticationCombinationConfiguration extends Entity, Parsable {
5513
5543
  /**
5514
5544
  * Which authentication method combinations this configuration applies to. Must be an allowedCombinations object, part of the authenticationStrengthPolicy. The only possible value for fido2combinationConfigurations is 'fido2'.
@@ -7812,15 +7842,15 @@ export interface Calendar extends Entity, Parsable {
7812
7842
  */
7813
7843
  calendarView?: Event[] | null;
7814
7844
  /**
7815
- * true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access.
7845
+ * true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who shared a calendar and granted write access.
7816
7846
  */
7817
7847
  canEdit?: boolean | null;
7818
7848
  /**
7819
- * true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it.
7849
+ * true if the user has permission to share the calendar, false otherwise. Only the user who created the calendar can share it.
7820
7850
  */
7821
7851
  canShare?: boolean | null;
7822
7852
  /**
7823
- * true if the user can read calendar items that have been marked private, false otherwise.
7853
+ * If true, the user can read calendar items that have been marked private, false otherwise.
7824
7854
  */
7825
7855
  canViewPrivateItems?: boolean | null;
7826
7856
  /**
@@ -8176,7 +8206,7 @@ export interface CallRecording extends Entity, Parsable {
8176
8206
  /**
8177
8207
  * The content of the recording. Read-only.
8178
8208
  */
8179
- content?: String | null;
8209
+ content?: ArrayBuffer | null;
8180
8210
  /**
8181
8211
  * The unique identifier that links the transcript with its corresponding recording. Read-only.
8182
8212
  */
@@ -8288,7 +8318,7 @@ export interface CallTranscript extends Entity, Parsable {
8288
8318
  /**
8289
8319
  * The content of the transcript. Read-only.
8290
8320
  */
8291
- content?: String | null;
8321
+ content?: ArrayBuffer | null;
8292
8322
  /**
8293
8323
  * The unique identifier that links the transcript with its corresponding recording. Read-only.
8294
8324
  */
@@ -8312,7 +8342,7 @@ export interface CallTranscript extends Entity, Parsable {
8312
8342
  /**
8313
8343
  * The time-aligned metadata of the utterances in the transcript. Read-only.
8314
8344
  */
8315
- metadataContent?: String | null;
8345
+ metadataContent?: ArrayBuffer | null;
8316
8346
  /**
8317
8347
  * The URL that can be used to access the content of the transcript. Read-only.
8318
8348
  */
@@ -8386,7 +8416,7 @@ export interface CertificateAuthority extends AdditionalDataHolder, BackedModel,
8386
8416
  /**
8387
8417
  * Required. The base64 encoded string representing the public certificate.
8388
8418
  */
8389
- certificate?: String | null;
8419
+ certificate?: ArrayBuffer | null;
8390
8420
  /**
8391
8421
  * The URL of the certificate revocation list.
8392
8422
  */
@@ -13397,6 +13427,12 @@ export declare function createAuthenticationAttributeCollectionPageFromDiscrimin
13397
13427
  * @returns {AuthenticationAttributeCollectionPageViewConfiguration}
13398
13428
  */
13399
13429
  export declare function createAuthenticationAttributeCollectionPageViewConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
13430
+ /**
13431
+ * Creates a new instance of the appropriate class based on discriminator value
13432
+ * @param parseNode The parse node to use to read the discriminator value and create the object
13433
+ * @returns {AuthenticationBehaviors}
13434
+ */
13435
+ export declare function createAuthenticationBehaviorsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
13400
13436
  /**
13401
13437
  * Creates a new instance of the appropriate class based on discriminator value
13402
13438
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -28146,6 +28182,11 @@ export declare function deserializeIntoAuthenticationAttributeCollectionPage(aut
28146
28182
  * @returns {Record<string, (node: ParseNode) => void>}
28147
28183
  */
28148
28184
  export declare function deserializeIntoAuthenticationAttributeCollectionPageViewConfiguration(authenticationAttributeCollectionPageViewConfiguration?: Partial<AuthenticationAttributeCollectionPageViewConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
28185
+ /**
28186
+ * The deserialization information for the current model
28187
+ * @returns {Record<string, (node: ParseNode) => void>}
28188
+ */
28189
+ export declare function deserializeIntoAuthenticationBehaviors(authenticationBehaviors?: Partial<AuthenticationBehaviors> | undefined): Record<string, (node: ParseNode) => void>;
28149
28190
  /**
28150
28191
  * The deserialization information for the current model
28151
28192
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -38718,7 +38759,7 @@ export interface DeviceAndAppManagementData extends AdditionalDataHolder, Backed
38718
38759
  /**
38719
38760
  * Not yet documented
38720
38761
  */
38721
- content?: String | null;
38762
+ content?: ArrayBuffer | null;
38722
38763
  /**
38723
38764
  * The OdataType property
38724
38765
  */
@@ -41544,7 +41585,7 @@ export interface DriveItem extends BaseItem, Parsable {
41544
41585
  /**
41545
41586
  * The content stream, if the item represents a file.
41546
41587
  */
41547
- content?: String | null;
41588
+ content?: ArrayBuffer | null;
41548
41589
  /**
41549
41590
  * An eTag for the content of the item. This eTag isn't changed if only the metadata is changed. Note This property isn't returned if the item is a folder. Read-only.
41550
41591
  */
@@ -41729,7 +41770,7 @@ export interface DriveItemVersion extends BaseItemVersion, Parsable {
41729
41770
  /**
41730
41771
  * The content stream for this version of the item.
41731
41772
  */
41732
- content?: String | null;
41773
+ content?: ArrayBuffer | null;
41733
41774
  /**
41734
41775
  * Indicates the size of the content stream for this version of the item.
41735
41776
  */
@@ -43513,7 +43554,7 @@ export interface EnterpriseCodeSigningCertificate extends Entity, Parsable {
43513
43554
  /**
43514
43555
  * The Windows Enterprise Code-Signing Certificate in the raw data format. Set to null once certificate has been uploaded and other properties have been populated.
43515
43556
  */
43516
- content?: String | null;
43557
+ content?: ArrayBuffer | null;
43517
43558
  /**
43518
43559
  * The cert expiration date and time (using ISO 8601 format, in UTC time). Uploading a valid cert file through the Intune admin console will automatically populate this value in the HTTP response. Supports: $filter, $select, $top, $OrderBy, $skip. $Search is not supported.
43519
43560
  */
@@ -43660,7 +43701,7 @@ export interface EnumeratedDeviceRegistrationMembership extends DeviceRegistrati
43660
43701
  }
43661
43702
  export interface Event extends OutlookItem, Parsable {
43662
43703
  /**
43663
- * true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. Default is true.
43704
+ * true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true.
43664
43705
  */
43665
43706
  allowNewTimeProposals?: boolean | null;
43666
43707
  /**
@@ -43676,7 +43717,7 @@ export interface Event extends OutlookItem, Parsable {
43676
43717
  */
43677
43718
  body?: ItemBody | null;
43678
43719
  /**
43679
- * The preview of the message associated with the event. It is in text format.
43720
+ * The preview of the message associated with the event. It's in text format.
43680
43721
  */
43681
43722
  bodyPreview?: string | null;
43682
43723
  /**
@@ -43696,7 +43737,7 @@ export interface Event extends OutlookItem, Parsable {
43696
43737
  */
43697
43738
  hasAttachments?: boolean | null;
43698
43739
  /**
43699
- * When set to true, each attendee only sees themselves in the meeting request and meeting Tracking list. Default is false.
43740
+ * When set to true, each attendee only sees themselves in the meeting request and meeting Tracking list. The default is false.
43700
43741
  */
43701
43742
  hideAttendees?: boolean | null;
43702
43743
  /**
@@ -43708,11 +43749,11 @@ export interface Event extends OutlookItem, Parsable {
43708
43749
  */
43709
43750
  importance?: Importance | null;
43710
43751
  /**
43711
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
43752
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
43712
43753
  */
43713
43754
  instances?: Event[] | null;
43714
43755
  /**
43715
- * Set to true if the event lasts all day. If true, regardless of whether it's a single-day or multi-day event, start and end time must be set to midnight and be in the same time zone.
43756
+ * Set to true if the event lasts all day. If true, regardless of whether it's a single-day or multi-day event, start, and endtime must be set to midnight and be in the same time zone.
43716
43757
  */
43717
43758
  isAllDay?: boolean | null;
43718
43759
  /**
@@ -43720,15 +43761,15 @@ export interface Event extends OutlookItem, Parsable {
43720
43761
  */
43721
43762
  isCancelled?: boolean | null;
43722
43763
  /**
43723
- * Set to true if the user has updated the meeting in Outlook but has not sent the updates to attendees. Set to false if all changes have been sent, or if the event is an appointment without any attendees.
43764
+ * Set to true if the user has updated the meeting in Outlook but hasn't sent the updates to attendees. Set to false if all changes are sent, or if the event is an appointment without any attendees.
43724
43765
  */
43725
43766
  isDraft?: boolean | null;
43726
43767
  /**
43727
- * True if this event has online meeting information (that is, onlineMeeting points to an onlineMeetingInfo resource), false otherwise. Default is false (onlineMeeting is null). Optional. After you set isOnlineMeeting to true, Microsoft Graph initializes onlineMeeting. Subsequently Outlook ignores any further changes to isOnlineMeeting, and the meeting remains available online.
43768
+ * True if this event has online meeting information (that is, onlineMeeting points to an onlineMeetingInfo resource), false otherwise. Default is false (onlineMeeting is null). Optional. After you set isOnlineMeeting to true, Microsoft Graph initializes onlineMeeting. Subsequently, Outlook ignores any further changes to isOnlineMeeting, and the meeting remains available online.
43728
43769
  */
43729
43770
  isOnlineMeeting?: boolean | null;
43730
43771
  /**
43731
- * Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). This also applies if a delegate organized the event on behalf of the owner.
43772
+ * Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner.
43732
43773
  */
43733
43774
  isOrganizer?: boolean | null;
43734
43775
  /**
@@ -43740,7 +43781,7 @@ export interface Event extends OutlookItem, Parsable {
43740
43781
  */
43741
43782
  location?: Location | null;
43742
43783
  /**
43743
- * The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection would be removed and replaced by the new location value.
43784
+ * The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value.
43744
43785
  */
43745
43786
  locations?: Location[] | null;
43746
43787
  /**
@@ -43748,11 +43789,11 @@ export interface Event extends OutlookItem, Parsable {
43748
43789
  */
43749
43790
  multiValueExtendedProperties?: MultiValueLegacyExtendedProperty[] | null;
43750
43791
  /**
43751
- * Details for an attendee to join the meeting online. Default is null. Read-only. After you set the isOnlineMeeting and onlineMeetingProvider properties to enable a meeting online, Microsoft Graph initializes onlineMeeting. When set, the meeting remains available online, and you cannot change the isOnlineMeeting, onlineMeetingProvider, and onlneMeeting properties again.
43792
+ * Details for an attendee to join the meeting online. The default is null. Read-only. After you set the isOnlineMeeting and onlineMeetingProvider properties to enable a meeting online, Microsoft Graph initializes onlineMeeting. When set, the meeting remains available online, and you can't change the isOnlineMeeting, onlineMeetingProvider, and onlneMeeting properties again.
43752
43793
  */
43753
43794
  onlineMeeting?: OnlineMeetingInfo | null;
43754
43795
  /**
43755
- * Represents the online meeting service provider. By default, onlineMeetingProvider is unknown. The possible values are unknown, teamsForBusiness, skypeForBusiness, and skypeForConsumer. Optional. After you set onlineMeetingProvider, Microsoft Graph initializes onlineMeeting. Subsequently you cannot change onlineMeetingProvider again, and the meeting remains available online.
43796
+ * Represents the online meeting service provider. By default, onlineMeetingProvider is unknown. The possible values are unknown, teamsForBusiness, skypeForBusiness, and skypeForConsumer. Optional. After you set onlineMeetingProvider, Microsoft Graph initializes onlineMeeting. Subsequently, you can't change onlineMeetingProvider again, and the meeting remains available online.
43756
43797
  */
43757
43798
  onlineMeetingProvider?: OnlineMeetingProviderType | null;
43758
43799
  /**
@@ -43768,7 +43809,7 @@ export interface Event extends OutlookItem, Parsable {
43768
43809
  */
43769
43810
  originalEndTimeZone?: string | null;
43770
43811
  /**
43771
- * Represents the start time of an event when it is initially created as an occurrence or exception in a recurring series. This property is not returned for events that are single instances. Its date and time information is expressed in ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
43812
+ * Represents the start time of an event when it's initially created as an occurrence or exception in a recurring series. This property is not returned for events that are single instances. Its date and time information is expressed in ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
43772
43813
  */
43773
43814
  originalStart?: Date | null;
43774
43815
  /**
@@ -43792,7 +43833,7 @@ export interface Event extends OutlookItem, Parsable {
43792
43833
  */
43793
43834
  responseStatus?: ResponseStatus | null;
43794
43835
  /**
43795
- * Possible values are: normal, personal, private, confidential.
43836
+ * Possible values are: normal, personal, private, and confidential.
43796
43837
  */
43797
43838
  sensitivity?: Sensitivity | null;
43798
43839
  /**
@@ -43816,7 +43857,7 @@ export interface Event extends OutlookItem, Parsable {
43816
43857
  */
43817
43858
  subject?: string | null;
43818
43859
  /**
43819
- * A custom identifier specified by a client app for the server to avoid redundant POST operations in case of client retries to create the same event. This is useful when low network connectivity causes the client to time out before receiving a response from the server for the client's prior create-event request. After you set transactionId when creating an event, you cannot change transactionId in a subsequent update. This property is only returned in a response payload if an app has set it. Optional.
43860
+ * A custom identifier specified by a client app for the server to avoid redundant POST operations in case of client retries to create the same event. It's useful when low network connectivity causes the client to time out before receiving a response from the server for the client's prior create-event request. After you set transactionId when creating an event, you can't change transactionId in a subsequent update. This property is only returned in a response payload if an app has set it. Optional.
43820
43861
  */
43821
43862
  transactionId?: string | null;
43822
43863
  /**
@@ -43824,7 +43865,7 @@ export interface Event extends OutlookItem, Parsable {
43824
43865
  */
43825
43866
  type?: EventType | null;
43826
43867
  /**
43827
- * The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL cannot be accessed from within an iFrame.
43868
+ * The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame.
43828
43869
  */
43829
43870
  webLink?: string | null;
43830
43871
  }
@@ -43848,7 +43889,7 @@ export interface EventMessage extends Message, Parsable {
43848
43889
  */
43849
43890
  isAllDay?: boolean | null;
43850
43891
  /**
43851
- * True if this meeting request is accessible to a delegate, false otherwise. Default is false.
43892
+ * True if this meeting request is accessible to a delegate, false otherwise. The default is false.
43852
43893
  */
43853
43894
  isDelegated?: boolean | null;
43854
43895
  /**
@@ -44387,7 +44428,7 @@ export interface FileAttachment extends Attachment, Parsable {
44387
44428
  /**
44388
44429
  * The base64-encoded contents of the file.
44389
44430
  */
44390
- contentBytes?: String | null;
44431
+ contentBytes?: ArrayBuffer | null;
44391
44432
  /**
44392
44433
  * The ID of the attachment in the Exchange store.
44393
44434
  */
@@ -44412,11 +44453,11 @@ export interface FileEncryptionInfo extends AdditionalDataHolder, BackedModel, P
44412
44453
  /**
44413
44454
  * The key used to encrypt the file content.
44414
44455
  */
44415
- encryptionKey?: String | null;
44456
+ encryptionKey?: ArrayBuffer | null;
44416
44457
  /**
44417
44458
  * The file digest prior to encryption. ProfileVersion1 requires a non-null FileDigest.
44418
44459
  */
44419
- fileDigest?: String | null;
44460
+ fileDigest?: ArrayBuffer | null;
44420
44461
  /**
44421
44462
  * The file digest algorithm. ProfileVersion1 currently only supports SHA256 for the FileDigestAlgorithm.
44422
44463
  */
@@ -44424,15 +44465,15 @@ export interface FileEncryptionInfo extends AdditionalDataHolder, BackedModel, P
44424
44465
  /**
44425
44466
  * The initialization vector (IV) used for the encryption algorithm. Must be 16 bytes.
44426
44467
  */
44427
- initializationVector?: String | null;
44468
+ initializationVector?: ArrayBuffer | null;
44428
44469
  /**
44429
44470
  * The hash of the concatenation of the IV and encrypted file content. Must be 32 bytes.
44430
44471
  */
44431
- mac?: String | null;
44472
+ mac?: ArrayBuffer | null;
44432
44473
  /**
44433
44474
  * The key used to compute the message authentication code of the concatenation of the IV and encrypted file content. Must be 32 bytes.
44434
44475
  */
44435
- macKey?: String | null;
44476
+ macKey?: ArrayBuffer | null;
44436
44477
  /**
44437
44478
  * The OdataType property
44438
44479
  */
@@ -45891,7 +45932,7 @@ export interface ImportedWindowsAutopilotDeviceIdentity extends Entity, Parsable
45891
45932
  /**
45892
45933
  * Hardware Blob of the Windows autopilot device.
45893
45934
  */
45894
- hardwareIdentifier?: String | null;
45935
+ hardwareIdentifier?: ArrayBuffer | null;
45895
45936
  /**
45896
45937
  * The Import Id of the Windows autopilot device.
45897
45938
  */
@@ -46587,7 +46628,7 @@ export interface IosCustomConfiguration extends DeviceConfiguration, Parsable {
46587
46628
  /**
46588
46629
  * Payload. (UTF8 encoded byte array)
46589
46630
  */
46590
- payload?: String | null;
46631
+ payload?: ArrayBuffer | null;
46591
46632
  /**
46592
46633
  * Payload file name (.mobileconfig
46593
46634
  */
@@ -47439,7 +47480,7 @@ export interface IosMobileAppConfiguration extends ManagedDeviceMobileAppConfigu
47439
47480
  /**
47440
47481
  * mdm app configuration Base64 binary.
47441
47482
  */
47442
- encodedSettingXml?: String | null;
47483
+ encodedSettingXml?: ArrayBuffer | null;
47443
47484
  /**
47444
47485
  * app configuration setting items.
47445
47486
  */
@@ -48103,7 +48144,7 @@ export interface KeyCredential extends AdditionalDataHolder, BackedModel, Parsab
48103
48144
  /**
48104
48145
  * A 40-character binary type that can be used to identify the credential. Optional. When not provided in the payload, defaults to the thumbprint of the certificate.
48105
48146
  */
48106
- customKeyIdentifier?: String | null;
48147
+ customKeyIdentifier?: ArrayBuffer | null;
48107
48148
  /**
48108
48149
  * The friendly name for the key, with a maximum length of 90 characters. Longer values are accepted but shortened. Optional.
48109
48150
  */
@@ -48115,7 +48156,7 @@ export interface KeyCredential extends AdditionalDataHolder, BackedModel, Parsab
48115
48156
  /**
48116
48157
  * The certificate's raw data in byte array converted to Base64 string. Returned only on $select for a single object, that is, GET applications/{applicationId}?$select=keyCredentials or GET servicePrincipals/{servicePrincipalId}?$select=keyCredentials; otherwise, it's always null. From a .cer certificate, you can read the key using the Convert.ToBase64String() method. For more information, see Get the certificate key.
48117
48158
  */
48118
- key?: String | null;
48159
+ key?: ArrayBuffer | null;
48119
48160
  /**
48120
48161
  * The unique identifier (GUID) for the key.
48121
48162
  */
@@ -49203,7 +49244,7 @@ export interface MacOSCustomConfiguration extends DeviceConfiguration, Parsable
49203
49244
  /**
49204
49245
  * Payload. (UTF8 encoded byte array)
49205
49246
  */
49206
- payload?: String | null;
49247
+ payload?: ArrayBuffer | null;
49207
49248
  /**
49208
49249
  * Payload file name (.mobileconfig
49209
49250
  */
@@ -51523,13 +51564,13 @@ export interface Message extends OutlookItem, Parsable {
51523
51564
  /**
51524
51565
  * Indicates the position of the message within the conversation.
51525
51566
  */
51526
- conversationIndex?: String | null;
51567
+ conversationIndex?: ArrayBuffer | null;
51527
51568
  /**
51528
51569
  * The collection of open extensions defined for the message. Nullable.
51529
51570
  */
51530
51571
  extensions?: Extension[] | null;
51531
51572
  /**
51532
- * The flag value that indicates the status, start date, due date, or completion date for the message.
51573
+ * Indicates the status, start date, due date, or completion date for the message.
51533
51574
  */
51534
51575
  flag?: FollowupFlag | null;
51535
51576
  /**
@@ -51589,7 +51630,7 @@ export interface Message extends OutlookItem, Parsable {
51589
51630
  */
51590
51631
  replyTo?: Recipient[] | null;
51591
51632
  /**
51592
- * The account that is actually used to generate the message. In most cases, this value is the same as the from property. You can set this property to a different value when sending a message from a shared mailbox, for a shared calendar, or as a delegate. In any case, the value must correspond to the actual mailbox used. Find out more about setting the from and sender properties of a message.
51633
+ * The account that is used to generate the message. In most cases, this value is the same as the from property. You can set this property to a different value when sending a message from a shared mailbox, for a shared calendar, or as a delegate. In any case, the value must correspond to the actual mailbox used. Find out more about setting the from and sender properties of a message.
51593
51634
  */
51594
51635
  sender?: Recipient | null;
51595
51636
  /**
@@ -52148,7 +52189,7 @@ export interface MimeContent extends AdditionalDataHolder, BackedModel, Parsable
52148
52189
  /**
52149
52190
  * The byte array that contains the actual content.
52150
52191
  */
52151
- value?: String | null;
52192
+ value?: ArrayBuffer | null;
52152
52193
  }
52153
52194
  export type MiracastChannel = (typeof MiracastChannelObject)[keyof typeof MiracastChannelObject];
52154
52195
  /**
@@ -52327,7 +52368,7 @@ export interface MobileAppContentFile extends Entity, Parsable {
52327
52368
  /**
52328
52369
  * The manifest information.
52329
52370
  */
52330
- manifest?: String | null;
52371
+ manifest?: ArrayBuffer | null;
52331
52372
  /**
52332
52373
  * the file name.
52333
52374
  */
@@ -53331,7 +53372,7 @@ export interface OmaSettingStringXml extends OmaSetting, Parsable {
53331
53372
  /**
53332
53373
  * Value. (UTF8 encoded byte array)
53333
53374
  */
53334
- value?: String | null;
53375
+ value?: ArrayBuffer | null;
53335
53376
  }
53336
53377
  export interface OnAttributeCollectionExternalUsersSelfServiceSignUp extends OnAttributeCollectionHandler, Parsable {
53337
53378
  /**
@@ -53523,7 +53564,7 @@ export interface OnenotePage extends OnenoteEntitySchemaObjectModel, Parsable {
53523
53564
  /**
53524
53565
  * The page's HTML content.
53525
53566
  */
53526
- content?: String | null;
53567
+ content?: ArrayBuffer | null;
53527
53568
  /**
53528
53569
  * The URL for the page's HTML content. Read-only.
53529
53570
  */
@@ -53647,7 +53688,7 @@ export interface OnenoteResource extends OnenoteEntityBaseModel, Parsable {
53647
53688
  /**
53648
53689
  * The content stream
53649
53690
  */
53650
- content?: String | null;
53691
+ content?: ArrayBuffer | null;
53651
53692
  /**
53652
53693
  * The URL for downloading the content
53653
53694
  */
@@ -53723,7 +53764,7 @@ export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
53723
53764
  /**
53724
53765
  * The content stream of the attendee report of a Microsoft Teams live event. Read-only.
53725
53766
  */
53726
- attendeeReport?: String | null;
53767
+ attendeeReport?: ArrayBuffer | null;
53727
53768
  /**
53728
53769
  * Settings related to a live event.
53729
53770
  */
@@ -54573,7 +54614,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
54573
54614
  /**
54574
54615
  * Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image reduces bandwidth requirements and make the page load faster.
54575
54616
  */
54576
- backgroundImage?: String | null;
54617
+ backgroundImage?: ArrayBuffer | null;
54577
54618
  /**
54578
54619
  * A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only.
54579
54620
  */
@@ -54581,7 +54622,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
54581
54622
  /**
54582
54623
  * A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
54583
54624
  */
54584
- bannerLogo?: String | null;
54625
+ bannerLogo?: ArrayBuffer | null;
54585
54626
  /**
54586
54627
  * A relative URL for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only.
54587
54628
  */
@@ -54609,7 +54650,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
54609
54650
  /**
54610
54651
  * CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
54611
54652
  */
54612
- customCSS?: String | null;
54653
+ customCSS?: ArrayBuffer | null;
54613
54654
  /**
54614
54655
  * A relative URL for the customCSS property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only.
54615
54656
  */
@@ -54641,7 +54682,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
54641
54682
  /**
54642
54683
  * A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
54643
54684
  */
54644
- favicon?: String | null;
54685
+ favicon?: ArrayBuffer | null;
54645
54686
  /**
54646
54687
  * A relative url for the favicon above that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only.
54647
54688
  */
@@ -54653,7 +54694,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
54653
54694
  /**
54654
54695
  * A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
54655
54696
  */
54656
- headerLogo?: String | null;
54697
+ headerLogo?: ArrayBuffer | null;
54657
54698
  /**
54658
54699
  * A relative URL for the headerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only.
54659
54700
  */
@@ -54673,11 +54714,11 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
54673
54714
  /**
54674
54715
  * A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo.
54675
54716
  */
54676
- squareLogo?: String | null;
54717
+ squareLogo?: ArrayBuffer | null;
54677
54718
  /**
54678
54719
  * A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo.
54679
54720
  */
54680
- squareLogoDark?: String | null;
54721
+ squareLogoDark?: ArrayBuffer | null;
54681
54722
  /**
54682
54723
  * A relative URL for the squareLogoDark property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only.
54683
54724
  */
@@ -55166,7 +55207,7 @@ export interface PasswordCredential extends AdditionalDataHolder, BackedModel, P
55166
55207
  /**
55167
55208
  * Do not use.
55168
55209
  */
55169
- customKeyIdentifier?: String | null;
55210
+ customKeyIdentifier?: ArrayBuffer | null;
55170
55211
  /**
55171
55212
  * Friendly name for the password. Optional.
55172
55213
  */
@@ -59629,7 +59670,7 @@ export interface Report extends AdditionalDataHolder, BackedModel, Parsable {
59629
59670
  /**
59630
59671
  * Not yet documented
59631
59672
  */
59632
- content?: String | null;
59673
+ content?: ArrayBuffer | null;
59633
59674
  /**
59634
59675
  * The OdataType property
59635
59676
  */
@@ -61996,7 +62037,7 @@ export interface SelfSignedCertificate extends AdditionalDataHolder, BackedModel
61996
62037
  /**
61997
62038
  * Custom key identifier.
61998
62039
  */
61999
- customKeyIdentifier?: String | null;
62040
+ customKeyIdentifier?: ArrayBuffer | null;
62000
62041
  /**
62001
62042
  * The friendly name for the key.
62002
62043
  */
@@ -62008,7 +62049,7 @@ export interface SelfSignedCertificate extends AdditionalDataHolder, BackedModel
62008
62049
  /**
62009
62050
  * The value for the key credential. Should be a Base-64 encoded value.
62010
62051
  */
62011
- key?: String | null;
62052
+ key?: ArrayBuffer | null;
62012
62053
  /**
62013
62054
  * The unique identifier (GUID) for the key.
62014
62055
  */
@@ -63239,6 +63280,11 @@ export declare function serializeAuthenticationAttributeCollectionPage(writer: S
63239
63280
  * @param writer Serialization writer to use to serialize this model
63240
63281
  */
63241
63282
  export declare function serializeAuthenticationAttributeCollectionPageViewConfiguration(writer: SerializationWriter, authenticationAttributeCollectionPageViewConfiguration?: Partial<AuthenticationAttributeCollectionPageViewConfiguration> | undefined | null): void;
63283
+ /**
63284
+ * Serializes information the current object
63285
+ * @param writer Serialization writer to use to serialize this model
63286
+ */
63287
+ export declare function serializeAuthenticationBehaviors(writer: SerializationWriter, authenticationBehaviors?: Partial<AuthenticationBehaviors> | undefined | null): void;
63242
63288
  /**
63243
63289
  * Serializes information the current object
63244
63290
  * @param writer Serialization writer to use to serialize this model
@@ -73597,7 +73643,7 @@ export interface ServiceAnnouncementAttachment extends Entity, Parsable {
73597
73643
  /**
73598
73644
  * The attachment content.
73599
73645
  */
73600
- content?: String | null;
73646
+ content?: ArrayBuffer | null;
73601
73647
  /**
73602
73648
  * The contentType property
73603
73649
  */
@@ -74250,7 +74296,7 @@ export interface ServiceUpdateMessage extends Parsable, ServiceAnnouncementBase
74250
74296
  /**
74251
74297
  * The zip file that contains all attachments for a message.
74252
74298
  */
74253
- attachmentsArchive?: String | null;
74299
+ attachmentsArchive?: ArrayBuffer | null;
74254
74300
  /**
74255
74301
  * The body property
74256
74302
  */
@@ -75209,7 +75255,7 @@ export interface SignInActivity extends AdditionalDataHolder, BackedModel, Parsa
75209
75255
  */
75210
75256
  lastNonInteractiveSignInRequestId?: string | null;
75211
75257
  /**
75212
- * The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user attempted (either successfully or unsuccessfully) to sign in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID.
75258
+ * The last interactive sign-in date and time for a specific user. This property records the last time a user attempted an interactive sign-in to the directory—whether the attempt was successful or not. Note: Since unsuccessful attempts are also logged, this value might not accurately reflect actual system usage. For tracking actual account access, please use the lastSuccessfulSignInDateTime property. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
75213
75259
  */
75214
75260
  lastSignInDateTime?: Date | null;
75215
75261
  /**
@@ -75217,7 +75263,7 @@ export interface SignInActivity extends AdditionalDataHolder, BackedModel, Parsa
75217
75263
  */
75218
75264
  lastSignInRequestId?: string | null;
75219
75265
  /**
75220
- * The date and time of the user's most recent successful sign-in activity. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
75266
+ * The date and time of the user's most recent successful interactive sign-in. Use this property if you need to determine when the account was truly accessed. This field can be used to build reports, such as inactive users. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID.
75221
75267
  */
75222
75268
  lastSuccessfulSignInDateTime?: Date | null;
75223
75269
  /**
@@ -77468,7 +77514,7 @@ export interface TaskFileAttachment extends AttachmentBase, Parsable {
77468
77514
  /**
77469
77515
  * The base64-encoded contents of the file.
77470
77516
  */
77471
- contentBytes?: String | null;
77517
+ contentBytes?: ArrayBuffer | null;
77472
77518
  }
77473
77519
  export type TaskStatus = (typeof TaskStatusObject)[keyof typeof TaskStatusObject];
77474
77520
  export interface Team extends Entity, Parsable {
@@ -78242,7 +78288,7 @@ export interface TeamworkHostedContent extends Entity, Parsable {
78242
78288
  /**
78243
78289
  * Write only. Bytes for the hosted content (such as images).
78244
78290
  */
78245
- contentBytes?: String | null;
78291
+ contentBytes?: ArrayBuffer | null;
78246
78292
  /**
78247
78293
  * Write only. Content type. such as image/png, image/jpg.
78248
78294
  */
@@ -78966,7 +79012,7 @@ export interface Thumbnail extends AdditionalDataHolder, BackedModel, Parsable {
78966
79012
  /**
78967
79013
  * The content stream for the thumbnail.
78968
79014
  */
78969
- content?: String | null;
79015
+ content?: ArrayBuffer | null;
78970
79016
  /**
78971
79017
  * The height of the thumbnail, in pixels.
78972
79018
  */
@@ -83637,7 +83683,7 @@ export interface VirtualEventPresenterDetails extends AdditionalDataHolder, Back
83637
83683
  /**
83638
83684
  * The content stream of the presenter's photo.
83639
83685
  */
83640
- photo?: String | null;
83686
+ photo?: ArrayBuffer | null;
83641
83687
  /**
83642
83688
  * The presenter's Twitter profile URL.
83643
83689
  */
@@ -84766,7 +84812,7 @@ export interface Windows10EndpointProtectionConfiguration extends DeviceConfigur
84766
84812
  /**
84767
84813
  * Xml content containing information regarding exploit protection details.
84768
84814
  */
84769
- defenderExploitProtectionXml?: String | null;
84815
+ defenderExploitProtectionXml?: ArrayBuffer | null;
84770
84816
  /**
84771
84817
  * Name of the file from which DefenderExploitProtectionXml was obtained.
84772
84818
  */
@@ -85513,11 +85559,11 @@ export interface Windows10GeneralConfiguration extends DeviceConfiguration, Pars
85513
85559
  /**
85514
85560
  * This policy setting allows you to import Edge assets to be used with startMenuLayoutXml policy. Start layout can contain secondary tile from Edge app which looks for Edge local asset file. Edge local asset would not exist and cause Edge secondary tile to appear empty in this case. This policy only gets applied when startMenuLayoutXml policy is modified. The value should be a UTF-8 Base64 encoded byte array.
85515
85561
  */
85516
- startMenuLayoutEdgeAssetsXml?: String | null;
85562
+ startMenuLayoutEdgeAssetsXml?: ArrayBuffer | null;
85517
85563
  /**
85518
85564
  * Allows admins to override the default Start menu layout and prevents the user from changing it. The layout is modified by specifying an XML file based on a layout modification schema. XML needs to be in a UTF8 encoded byte array format.
85519
85565
  */
85520
- startMenuLayoutXml?: String | null;
85566
+ startMenuLayoutXml?: ArrayBuffer | null;
85521
85567
  /**
85522
85568
  * Type of display modes for the start menu.
85523
85569
  */
@@ -86626,7 +86672,7 @@ export interface WindowsInformationProtectionAppLockerFile extends Entity, Parsa
86626
86672
  /**
86627
86673
  * File as a byte array
86628
86674
  */
86629
- file?: String | null;
86675
+ file?: ArrayBuffer | null;
86630
86676
  /**
86631
86677
  * SHA256 hash of the file
86632
86678
  */
@@ -86657,7 +86703,7 @@ export interface WindowsInformationProtectionDataRecoveryCertificate extends Add
86657
86703
  /**
86658
86704
  * Data recovery Certificate
86659
86705
  */
86660
- certificate?: String | null;
86706
+ certificate?: ArrayBuffer | null;
86661
86707
  /**
86662
86708
  * Data recovery Certificate description
86663
86709
  */
@@ -88844,47 +88890,47 @@ export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder
88844
88890
  */
88845
88891
  additionalData?: Record<string, unknown>;
88846
88892
  /**
88847
- * Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
88893
+ * Represents the worksheet protection option of allowing using auto filter feature.
88848
88894
  */
88849
88895
  allowAutoFilter?: boolean | null;
88850
88896
  /**
88851
- * Indicates whether the worksheet protection option to allow deleting columns is enabled.
88897
+ * Represents the worksheet protection option of allowing deleting columns.
88852
88898
  */
88853
88899
  allowDeleteColumns?: boolean | null;
88854
88900
  /**
88855
- * Indicates whether the worksheet protection option to allow deleting rows is enabled.
88901
+ * Represents the worksheet protection option of allowing deleting rows.
88856
88902
  */
88857
88903
  allowDeleteRows?: boolean | null;
88858
88904
  /**
88859
- * Indicates whether the worksheet protection option to allow formatting cells is enabled.
88905
+ * Represents the worksheet protection option of allowing formatting cells.
88860
88906
  */
88861
88907
  allowFormatCells?: boolean | null;
88862
88908
  /**
88863
- * Indicates whether the worksheet protection option to allow formatting columns is enabled.
88909
+ * Represents the worksheet protection option of allowing formatting columns.
88864
88910
  */
88865
88911
  allowFormatColumns?: boolean | null;
88866
88912
  /**
88867
- * Indicates whether the worksheet protection option to allow formatting rows is enabled.
88913
+ * Represents the worksheet protection option of allowing formatting rows.
88868
88914
  */
88869
88915
  allowFormatRows?: boolean | null;
88870
88916
  /**
88871
- * Indicates whether the worksheet protection option to allow inserting columns is enabled.
88917
+ * Represents the worksheet protection option of allowing inserting columns.
88872
88918
  */
88873
88919
  allowInsertColumns?: boolean | null;
88874
88920
  /**
88875
- * Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
88921
+ * Represents the worksheet protection option of allowing inserting hyperlinks.
88876
88922
  */
88877
88923
  allowInsertHyperlinks?: boolean | null;
88878
88924
  /**
88879
- * Indicates whether the worksheet protection option to allow inserting rows is enabled.
88925
+ * Represents the worksheet protection option of allowing inserting rows.
88880
88926
  */
88881
88927
  allowInsertRows?: boolean | null;
88882
88928
  /**
88883
- * Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
88929
+ * Represents the worksheet protection option of allowing using pivot table feature.
88884
88930
  */
88885
88931
  allowPivotTables?: boolean | null;
88886
88932
  /**
88887
- * Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
88933
+ * Represents the worksheet protection option of allowing using sort feature.
88888
88934
  */
88889
88935
  allowSort?: boolean | null;
88890
88936
  /**