@microsoft/msgraph-sdk 1.0.0-preview.65 → 1.0.0-preview.66

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
@@ -2,7 +2,7 @@ import { type CallRecord } from './callRecords/index.js';
2
2
  import { type LifecycleWorkflowsContainer, type Workflow } from './identityGovernance/index.js';
3
3
  import { type Billing } from './partners/billing/index.js';
4
4
  import { type Acronym, type Bookmark, type Qna } from './search/index.js';
5
- import { BehaviorDuringRetentionPeriod, type AuditCoreRoot, type CasesRoot, type IdentityContainer as I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f, type Incident, type LabelsRoot, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/index.js';
5
+ import { BehaviorDuringRetentionPeriod, type CasesRoot, type IdentityContainer as I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f, type Incident, type LabelsRoot, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/index.js';
6
6
  import { type Set, type Store, type Term } from './termStore/index.js';
7
7
  import { type AdditionalDataHolder, type BackedModel, type DateOnly, type Duration, type Guid, type Parsable, type ParseNode, type SerializationWriter, type TimeOnly, type UntypedNode } from '@microsoft/kiota-abstractions';
8
8
  export interface AadUserConversationMember extends ConversationMember, Parsable {
@@ -3757,6 +3757,12 @@ export interface ApplicationCollectionResponse extends BaseCollectionPaginationC
3757
3757
  */
3758
3758
  value?: Application[] | null;
3759
3759
  }
3760
+ export interface ApplicationContext extends Parsable, SignInContext {
3761
+ /**
3762
+ * Collection of appId values for the applications.
3763
+ */
3764
+ includeApplications?: string[] | null;
3765
+ }
3760
3766
  export interface ApplicationEnforcedRestrictionsSessionControl extends ConditionalAccessSessionControl, Parsable {
3761
3767
  }
3762
3768
  export type ApplicationGuardBlockClipboardSharingType = (typeof ApplicationGuardBlockClipboardSharingTypeObject)[keyof typeof ApplicationGuardBlockClipboardSharingTypeObject];
@@ -5273,6 +5279,12 @@ export interface AuditResource extends AdditionalDataHolder, BackedModel, Parsab
5273
5279
  */
5274
5280
  resourceId?: string | null;
5275
5281
  }
5282
+ export interface AuthContext extends Parsable, SignInContext {
5283
+ /**
5284
+ * Supported values are c1 through c99.
5285
+ */
5286
+ authenticationContextValue?: string | null;
5287
+ }
5276
5288
  export interface Authentication extends Entity, Parsable {
5277
5289
  /**
5278
5290
  * The email address registered to a user for authentication.
@@ -5580,6 +5592,20 @@ export interface AuthenticationEventsFlowCollectionResponse extends BaseCollecti
5580
5592
  */
5581
5593
  value?: AuthenticationEventsFlow[] | null;
5582
5594
  }
5595
+ export interface AuthenticationFlow extends AdditionalDataHolder, BackedModel, Parsable {
5596
+ /**
5597
+ * Stores model information.
5598
+ */
5599
+ backingStoreEnabled?: boolean | null;
5600
+ /**
5601
+ * The OdataType property
5602
+ */
5603
+ odataType?: string | null;
5604
+ /**
5605
+ * Represents the transfer methods in scope for the policy. The possible values are: none, deviceCodeFlow, authenticationTransfer, unknownFutureValue. Default value is none.
5606
+ */
5607
+ transferMethod?: ConditionalAccessTransferMethods[] | null;
5608
+ }
5583
5609
  export interface AuthenticationFlowsPolicy extends Entity, Parsable {
5584
5610
  /**
5585
5611
  * Inherited property. A description of the policy. Optional. Read-only.
@@ -8349,6 +8375,24 @@ export interface CertificationControl extends AdditionalDataHolder, BackedModel,
8349
8375
  */
8350
8376
  url?: string | null;
8351
8377
  }
8378
+ export interface ChallengingWord extends AdditionalDataHolder, BackedModel, Parsable {
8379
+ /**
8380
+ * Stores model information.
8381
+ */
8382
+ backingStoreEnabled?: boolean | null;
8383
+ /**
8384
+ * Number of times the word was found challenging by the student during the reading session.
8385
+ */
8386
+ count?: number | null;
8387
+ /**
8388
+ * The OdataType property
8389
+ */
8390
+ odataType?: string | null;
8391
+ /**
8392
+ * The specific word that the student found challenging during the reading session.
8393
+ */
8394
+ word?: string | null;
8395
+ }
8352
8396
  export interface ChangeTrackedEntity extends Entity, Parsable {
8353
8397
  /**
8354
8398
  * Identity of the creator of the entity.
@@ -10799,7 +10843,7 @@ export interface ConditionalAccessPolicy extends Entity, Parsable {
10799
10843
  */
10800
10844
  state?: ConditionalAccessPolicyState | null;
10801
10845
  /**
10802
- * The templateId property
10846
+ * Specifies the unique identifier of a Conditional Access template. Inherited from entity.
10803
10847
  */
10804
10848
  templateId?: string | null;
10805
10849
  }
@@ -12756,6 +12800,12 @@ export declare function createApplePushNotificationCertificateFromDiscriminatorV
12756
12800
  * @returns {ApplicationCollectionResponse}
12757
12801
  */
12758
12802
  export declare function createApplicationCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12803
+ /**
12804
+ * Creates a new instance of the appropriate class based on discriminator value
12805
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12806
+ * @returns {ApplicationContext}
12807
+ */
12808
+ export declare function createApplicationContextFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12759
12809
  /**
12760
12810
  * Creates a new instance of the appropriate class based on discriminator value
12761
12811
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -13224,6 +13274,12 @@ export declare function createAuditPropertyFromDiscriminatorValue(parseNode: Par
13224
13274
  * @returns {AuditResource}
13225
13275
  */
13226
13276
  export declare function createAuditResourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
13277
+ /**
13278
+ * Creates a new instance of the appropriate class based on discriminator value
13279
+ * @param parseNode The parse node to use to read the discriminator value and create the object
13280
+ * @returns {AuthContext}
13281
+ */
13282
+ export declare function createAuthContextFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
13227
13283
  /**
13228
13284
  * Creates a new instance of the appropriate class based on discriminator value
13229
13285
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -13332,6 +13388,12 @@ export declare function createAuthenticationEventsFlowCollectionResponseFromDisc
13332
13388
  * @returns {AuthenticationEventsFlow}
13333
13389
  */
13334
13390
  export declare function createAuthenticationEventsFlowFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
13391
+ /**
13392
+ * Creates a new instance of the appropriate class based on discriminator value
13393
+ * @param parseNode The parse node to use to read the discriminator value and create the object
13394
+ * @returns {AuthenticationFlow}
13395
+ */
13396
+ export declare function createAuthenticationFlowFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
13335
13397
  /**
13336
13398
  * Creates a new instance of the appropriate class based on discriminator value
13337
13399
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -14106,6 +14168,12 @@ export declare function createCertificationControlFromDiscriminatorValue(parseNo
14106
14168
  * @returns {Certification}
14107
14169
  */
14108
14170
  export declare function createCertificationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14171
+ /**
14172
+ * Creates a new instance of the appropriate class based on discriminator value
14173
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14174
+ * @returns {ChallengingWord}
14175
+ */
14176
+ export declare function createChallengingWordFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14109
14177
  /**
14110
14178
  * Creates a new instance of the appropriate class based on discriminator value
14111
14179
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -15900,6 +15968,12 @@ export declare function createDeviceGeoLocationFromDiscriminatorValue(parseNode:
15900
15968
  * @returns {DeviceHealthAttestationState}
15901
15969
  */
15902
15970
  export declare function createDeviceHealthAttestationStateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
15971
+ /**
15972
+ * Creates a new instance of the appropriate class based on discriminator value
15973
+ * @param parseNode The parse node to use to read the discriminator value and create the object
15974
+ * @returns {DeviceInfo}
15975
+ */
15976
+ export declare function createDeviceInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
15903
15977
  /**
15904
15978
  * Creates a new instance of the appropriate class based on discriminator value
15905
15979
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -20142,6 +20216,12 @@ export declare function createOutlookUserFromDiscriminatorValue(parseNode: Parse
20142
20216
  * @returns {OutOfBoxExperienceSetting}
20143
20217
  */
20144
20218
  export declare function createOutOfBoxExperienceSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20219
+ /**
20220
+ * Creates a new instance of the appropriate class based on discriminator value
20221
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20222
+ * @returns {OutOfOfficeSettings}
20223
+ */
20224
+ export declare function createOutOfOfficeSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20145
20225
  /**
20146
20226
  * Creates a new instance of the appropriate class based on discriminator value
20147
20227
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -20376,6 +20456,12 @@ export declare function createPhoneAuthenticationMethodFromDiscriminatorValue(pa
20376
20456
  * @returns {Phone}
20377
20457
  */
20378
20458
  export declare function createPhoneFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20459
+ /**
20460
+ * Creates a new instance of the appropriate class based on discriminator value
20461
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20462
+ * @returns {PhoneUserConversationMember}
20463
+ */
20464
+ export declare function createPhoneUserConversationMemberFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20379
20465
  /**
20380
20466
  * Creates a new instance of the appropriate class based on discriminator value
20381
20467
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21330,6 +21416,18 @@ export declare function createRbacApplicationFromDiscriminatorValue(parseNode: P
21330
21416
  * @returns {ReactionsFacet}
21331
21417
  */
21332
21418
  export declare function createReactionsFacetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21419
+ /**
21420
+ * Creates a new instance of the appropriate class based on discriminator value
21421
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21422
+ * @returns {ReadingAssignmentSubmissionCollectionResponse}
21423
+ */
21424
+ export declare function createReadingAssignmentSubmissionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21425
+ /**
21426
+ * Creates a new instance of the appropriate class based on discriminator value
21427
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21428
+ * @returns {ReadingAssignmentSubmission}
21429
+ */
21430
+ export declare function createReadingAssignmentSubmissionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21333
21431
  /**
21334
21432
  * Creates a new instance of the appropriate class based on discriminator value
21335
21433
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21432,6 +21530,18 @@ export declare function createReferencedObjectFromDiscriminatorValue(parseNode:
21432
21530
  * @returns {ReferenceUpdate}
21433
21531
  */
21434
21532
  export declare function createReferenceUpdateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21533
+ /**
21534
+ * Creates a new instance of the appropriate class based on discriminator value
21535
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21536
+ * @returns {ReflectCheckInResponseCollectionResponse}
21537
+ */
21538
+ export declare function createReflectCheckInResponseCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21539
+ /**
21540
+ * Creates a new instance of the appropriate class based on discriminator value
21541
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21542
+ * @returns {ReflectCheckInResponse}
21543
+ */
21544
+ export declare function createReflectCheckInResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21435
21545
  /**
21436
21546
  * Creates a new instance of the appropriate class based on discriminator value
21437
21547
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21516,6 +21626,12 @@ export declare function createReportFromDiscriminatorValue(parseNode: ParseNode
21516
21626
  * @returns {ReportRoot}
21517
21627
  */
21518
21628
  export declare function createReportRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21629
+ /**
21630
+ * Creates a new instance of the appropriate class based on discriminator value
21631
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21632
+ * @returns {ReportsRoot}
21633
+ */
21634
+ export declare function createReportsRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21519
21635
  /**
21520
21636
  * Creates a new instance of the appropriate class based on discriminator value
21521
21637
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -22296,6 +22412,12 @@ export declare function createServicePrincipalRiskDetectionCollectionResponseFro
22296
22412
  * @returns {ServicePrincipalRiskDetection}
22297
22413
  */
22298
22414
  export declare function createServicePrincipalRiskDetectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22415
+ /**
22416
+ * Creates a new instance of the appropriate class based on discriminator value
22417
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22418
+ * @returns {ServicePrincipalSignIn}
22419
+ */
22420
+ export declare function createServicePrincipalSignInFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22299
22421
  /**
22300
22422
  * Creates a new instance of the appropriate class based on discriminator value
22301
22423
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -22560,6 +22682,18 @@ export declare function createSignInActivityFromDiscriminatorValue(parseNode: Pa
22560
22682
  * @returns {SignInCollectionResponse}
22561
22683
  */
22562
22684
  export declare function createSignInCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22685
+ /**
22686
+ * Creates a new instance of the appropriate class based on discriminator value
22687
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22688
+ * @returns {SignInConditions}
22689
+ */
22690
+ export declare function createSignInConditionsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22691
+ /**
22692
+ * Creates a new instance of the appropriate class based on discriminator value
22693
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22694
+ * @returns {SignInContext}
22695
+ */
22696
+ export declare function createSignInContextFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22563
22697
  /**
22564
22698
  * Creates a new instance of the appropriate class based on discriminator value
22565
22699
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -22578,6 +22712,12 @@ export declare function createSignInFromDiscriminatorValue(parseNode: ParseNode
22578
22712
  * @returns {SigningCertificateUpdateStatus}
22579
22713
  */
22580
22714
  export declare function createSigningCertificateUpdateStatusFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22715
+ /**
22716
+ * Creates a new instance of the appropriate class based on discriminator value
22717
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22718
+ * @returns {SignInIdentity}
22719
+ */
22720
+ export declare function createSignInIdentityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22581
22721
  /**
22582
22722
  * Creates a new instance of the appropriate class based on discriminator value
22583
22723
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -24330,6 +24470,12 @@ export declare function createUsedInsightCollectionResponseFromDiscriminatorValu
24330
24470
  * @returns {UsedInsight}
24331
24471
  */
24332
24472
  export declare function createUsedInsightFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
24473
+ /**
24474
+ * Creates a new instance of the appropriate class based on discriminator value
24475
+ * @param parseNode The parse node to use to read the discriminator value and create the object
24476
+ * @returns {UserActionContext}
24477
+ */
24478
+ export declare function createUserActionContextFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
24333
24479
  /**
24334
24480
  * Creates a new instance of the appropriate class based on discriminator value
24335
24481
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -24840,6 +24986,12 @@ export declare function createUserSecurityStateFromDiscriminatorValue(parseNode:
24840
24986
  * @returns {UserSettings}
24841
24987
  */
24842
24988
  export declare function createUserSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
24989
+ /**
24990
+ * Creates a new instance of the appropriate class based on discriminator value
24991
+ * @param parseNode The parse node to use to read the discriminator value and create the object
24992
+ * @returns {UserSignIn}
24993
+ */
24994
+ export declare function createUserSignInFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
24843
24995
  /**
24844
24996
  * Creates a new instance of the appropriate class based on discriminator value
24845
24997
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -25158,6 +25310,12 @@ export declare function createWebPartPositionFromDiscriminatorValue(parseNode: P
25158
25310
  * @returns {Website}
25159
25311
  */
25160
25312
  export declare function createWebsiteFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25313
+ /**
25314
+ * Creates a new instance of the appropriate class based on discriminator value
25315
+ * @param parseNode The parse node to use to read the discriminator value and create the object
25316
+ * @returns {WhatIfAnalysisResult}
25317
+ */
25318
+ export declare function createWhatIfAnalysisResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25161
25319
  /**
25162
25320
  * Creates a new instance of the appropriate class based on discriminator value
25163
25321
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -28231,6 +28389,12 @@ export declare function deserializeIntoApplication(application?: Partial<Applica
28231
28389
  * @returns {Record<string, (node: ParseNode) => void>}
28232
28390
  */
28233
28391
  export declare function deserializeIntoApplicationCollectionResponse(applicationCollectionResponse?: Partial<ApplicationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
28392
+ /**
28393
+ * The deserialization information for the current model
28394
+ * @param ApplicationContext The instance to deserialize into.
28395
+ * @returns {Record<string, (node: ParseNode) => void>}
28396
+ */
28397
+ export declare function deserializeIntoApplicationContext(applicationContext?: Partial<ApplicationContext> | undefined): Record<string, (node: ParseNode) => void>;
28234
28398
  /**
28235
28399
  * The deserialization information for the current model
28236
28400
  * @param ApplicationEnforcedRestrictionsSessionControl The instance to deserialize into.
@@ -28693,6 +28857,12 @@ export declare function deserializeIntoAuditProperty(auditProperty?: Partial<Aud
28693
28857
  * @returns {Record<string, (node: ParseNode) => void>}
28694
28858
  */
28695
28859
  export declare function deserializeIntoAuditResource(auditResource?: Partial<AuditResource> | undefined): Record<string, (node: ParseNode) => void>;
28860
+ /**
28861
+ * The deserialization information for the current model
28862
+ * @param AuthContext The instance to deserialize into.
28863
+ * @returns {Record<string, (node: ParseNode) => void>}
28864
+ */
28865
+ export declare function deserializeIntoAuthContext(authContext?: Partial<AuthContext> | undefined): Record<string, (node: ParseNode) => void>;
28696
28866
  /**
28697
28867
  * The deserialization information for the current model
28698
28868
  * @param Authentication The instance to deserialize into.
@@ -28807,6 +28977,12 @@ export declare function deserializeIntoAuthenticationEventsFlow(authenticationEv
28807
28977
  * @returns {Record<string, (node: ParseNode) => void>}
28808
28978
  */
28809
28979
  export declare function deserializeIntoAuthenticationEventsFlowCollectionResponse(authenticationEventsFlowCollectionResponse?: Partial<AuthenticationEventsFlowCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
28980
+ /**
28981
+ * The deserialization information for the current model
28982
+ * @param AuthenticationFlow The instance to deserialize into.
28983
+ * @returns {Record<string, (node: ParseNode) => void>}
28984
+ */
28985
+ export declare function deserializeIntoAuthenticationFlow(authenticationFlow?: Partial<AuthenticationFlow> | undefined): Record<string, (node: ParseNode) => void>;
28810
28986
  /**
28811
28987
  * The deserialization information for the current model
28812
28988
  * @param AuthenticationFlowsPolicy The instance to deserialize into.
@@ -29575,6 +29751,12 @@ export declare function deserializeIntoCertification(certification?: Partial<Cer
29575
29751
  * @returns {Record<string, (node: ParseNode) => void>}
29576
29752
  */
29577
29753
  export declare function deserializeIntoCertificationControl(certificationControl?: Partial<CertificationControl> | undefined): Record<string, (node: ParseNode) => void>;
29754
+ /**
29755
+ * The deserialization information for the current model
29756
+ * @param ChallengingWord The instance to deserialize into.
29757
+ * @returns {Record<string, (node: ParseNode) => void>}
29758
+ */
29759
+ export declare function deserializeIntoChallengingWord(challengingWord?: Partial<ChallengingWord> | undefined): Record<string, (node: ParseNode) => void>;
29578
29760
  /**
29579
29761
  * The deserialization information for the current model
29580
29762
  * @param ChangeTrackedEntity The instance to deserialize into.
@@ -31369,6 +31551,12 @@ export declare function deserializeIntoDeviceGeoLocation(deviceGeoLocation?: Par
31369
31551
  * @returns {Record<string, (node: ParseNode) => void>}
31370
31552
  */
31371
31553
  export declare function deserializeIntoDeviceHealthAttestationState(deviceHealthAttestationState?: Partial<DeviceHealthAttestationState> | undefined): Record<string, (node: ParseNode) => void>;
31554
+ /**
31555
+ * The deserialization information for the current model
31556
+ * @param DeviceInfo The instance to deserialize into.
31557
+ * @returns {Record<string, (node: ParseNode) => void>}
31558
+ */
31559
+ export declare function deserializeIntoDeviceInfo(deviceInfo?: Partial<DeviceInfo> | undefined): Record<string, (node: ParseNode) => void>;
31372
31560
  /**
31373
31561
  * The deserialization information for the current model
31374
31562
  * @param DeviceInstallState The instance to deserialize into.
@@ -35611,6 +35799,12 @@ export declare function deserializeIntoOutlookUser(outlookUser?: Partial<Outlook
35611
35799
  * @returns {Record<string, (node: ParseNode) => void>}
35612
35800
  */
35613
35801
  export declare function deserializeIntoOutOfBoxExperienceSetting(outOfBoxExperienceSetting?: Partial<OutOfBoxExperienceSetting> | undefined): Record<string, (node: ParseNode) => void>;
35802
+ /**
35803
+ * The deserialization information for the current model
35804
+ * @param OutOfOfficeSettings The instance to deserialize into.
35805
+ * @returns {Record<string, (node: ParseNode) => void>}
35806
+ */
35807
+ export declare function deserializeIntoOutOfOfficeSettings(outOfOfficeSettings?: Partial<OutOfOfficeSettings> | undefined): Record<string, (node: ParseNode) => void>;
35614
35808
  /**
35615
35809
  * The deserialization information for the current model
35616
35810
  * @param PackageEscaped The instance to deserialize into.
@@ -35845,6 +36039,12 @@ export declare function deserializeIntoPhoneAuthenticationMethod(phoneAuthentica
35845
36039
  * @returns {Record<string, (node: ParseNode) => void>}
35846
36040
  */
35847
36041
  export declare function deserializeIntoPhoneAuthenticationMethodCollectionResponse(phoneAuthenticationMethodCollectionResponse?: Partial<PhoneAuthenticationMethodCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
36042
+ /**
36043
+ * The deserialization information for the current model
36044
+ * @param PhoneUserConversationMember The instance to deserialize into.
36045
+ * @returns {Record<string, (node: ParseNode) => void>}
36046
+ */
36047
+ export declare function deserializeIntoPhoneUserConversationMember(phoneUserConversationMember?: Partial<PhoneUserConversationMember> | undefined): Record<string, (node: ParseNode) => void>;
35848
36048
  /**
35849
36049
  * The deserialization information for the current model
35850
36050
  * @param Photo The instance to deserialize into.
@@ -36799,6 +36999,18 @@ export declare function deserializeIntoRbacApplication(rbacApplication?: Partial
36799
36999
  * @returns {Record<string, (node: ParseNode) => void>}
36800
37000
  */
36801
37001
  export declare function deserializeIntoReactionsFacet(reactionsFacet?: Partial<ReactionsFacet> | undefined): Record<string, (node: ParseNode) => void>;
37002
+ /**
37003
+ * The deserialization information for the current model
37004
+ * @param ReadingAssignmentSubmission The instance to deserialize into.
37005
+ * @returns {Record<string, (node: ParseNode) => void>}
37006
+ */
37007
+ export declare function deserializeIntoReadingAssignmentSubmission(readingAssignmentSubmission?: Partial<ReadingAssignmentSubmission> | undefined): Record<string, (node: ParseNode) => void>;
37008
+ /**
37009
+ * The deserialization information for the current model
37010
+ * @param ReadingAssignmentSubmissionCollectionResponse The instance to deserialize into.
37011
+ * @returns {Record<string, (node: ParseNode) => void>}
37012
+ */
37013
+ export declare function deserializeIntoReadingAssignmentSubmissionCollectionResponse(readingAssignmentSubmissionCollectionResponse?: Partial<ReadingAssignmentSubmissionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
36802
37014
  /**
36803
37015
  * The deserialization information for the current model
36804
37016
  * @param RecentNotebook The instance to deserialize into.
@@ -36901,6 +37113,18 @@ export declare function deserializeIntoReferencedObject(referencedObject?: Parti
36901
37113
  * @returns {Record<string, (node: ParseNode) => void>}
36902
37114
  */
36903
37115
  export declare function deserializeIntoReferenceUpdate(referenceUpdate?: Partial<ReferenceUpdate> | undefined): Record<string, (node: ParseNode) => void>;
37116
+ /**
37117
+ * The deserialization information for the current model
37118
+ * @param ReflectCheckInResponse The instance to deserialize into.
37119
+ * @returns {Record<string, (node: ParseNode) => void>}
37120
+ */
37121
+ export declare function deserializeIntoReflectCheckInResponse(reflectCheckInResponse?: Partial<ReflectCheckInResponse> | undefined): Record<string, (node: ParseNode) => void>;
37122
+ /**
37123
+ * The deserialization information for the current model
37124
+ * @param ReflectCheckInResponseCollectionResponse The instance to deserialize into.
37125
+ * @returns {Record<string, (node: ParseNode) => void>}
37126
+ */
37127
+ export declare function deserializeIntoReflectCheckInResponseCollectionResponse(reflectCheckInResponseCollectionResponse?: Partial<ReflectCheckInResponseCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
36904
37128
  /**
36905
37129
  * The deserialization information for the current model
36906
37130
  * @param RegistrationEnforcement The instance to deserialize into.
@@ -36985,6 +37209,12 @@ export declare function deserializeIntoReport(report?: Partial<Report> | undefin
36985
37209
  * @returns {Record<string, (node: ParseNode) => void>}
36986
37210
  */
36987
37211
  export declare function deserializeIntoReportRoot(reportRoot?: Partial<ReportRoot> | undefined): Record<string, (node: ParseNode) => void>;
37212
+ /**
37213
+ * The deserialization information for the current model
37214
+ * @param ReportsRoot The instance to deserialize into.
37215
+ * @returns {Record<string, (node: ParseNode) => void>}
37216
+ */
37217
+ export declare function deserializeIntoReportsRoot(reportsRoot?: Partial<ReportsRoot> | undefined): Record<string, (node: ParseNode) => void>;
36988
37218
  /**
36989
37219
  * The deserialization information for the current model
36990
37220
  * @param Request The instance to deserialize into.
@@ -37765,6 +37995,12 @@ export declare function deserializeIntoServicePrincipalRiskDetection(servicePrin
37765
37995
  * @returns {Record<string, (node: ParseNode) => void>}
37766
37996
  */
37767
37997
  export declare function deserializeIntoServicePrincipalRiskDetectionCollectionResponse(servicePrincipalRiskDetectionCollectionResponse?: Partial<ServicePrincipalRiskDetectionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
37998
+ /**
37999
+ * The deserialization information for the current model
38000
+ * @param ServicePrincipalSignIn The instance to deserialize into.
38001
+ * @returns {Record<string, (node: ParseNode) => void>}
38002
+ */
38003
+ export declare function deserializeIntoServicePrincipalSignIn(servicePrincipalSignIn?: Partial<ServicePrincipalSignIn> | undefined): Record<string, (node: ParseNode) => void>;
37768
38004
  /**
37769
38005
  * The deserialization information for the current model
37770
38006
  * @param ServiceProvisioningError The instance to deserialize into.
@@ -38035,6 +38271,18 @@ export declare function deserializeIntoSignInActivity(signInActivity?: Partial<S
38035
38271
  * @returns {Record<string, (node: ParseNode) => void>}
38036
38272
  */
38037
38273
  export declare function deserializeIntoSignInCollectionResponse(signInCollectionResponse?: Partial<SignInCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
38274
+ /**
38275
+ * The deserialization information for the current model
38276
+ * @param SignInConditions The instance to deserialize into.
38277
+ * @returns {Record<string, (node: ParseNode) => void>}
38278
+ */
38279
+ export declare function deserializeIntoSignInConditions(signInConditions?: Partial<SignInConditions> | undefined): Record<string, (node: ParseNode) => void>;
38280
+ /**
38281
+ * The deserialization information for the current model
38282
+ * @param SignInContext The instance to deserialize into.
38283
+ * @returns {Record<string, (node: ParseNode) => void>}
38284
+ */
38285
+ export declare function deserializeIntoSignInContext(signInContext?: Partial<SignInContext> | undefined): Record<string, (node: ParseNode) => void>;
38038
38286
  /**
38039
38287
  * The deserialization information for the current model
38040
38288
  * @param SignInFrequencySessionControl The instance to deserialize into.
@@ -38047,6 +38295,12 @@ export declare function deserializeIntoSignInFrequencySessionControl(signInFrequ
38047
38295
  * @returns {Record<string, (node: ParseNode) => void>}
38048
38296
  */
38049
38297
  export declare function deserializeIntoSigningCertificateUpdateStatus(signingCertificateUpdateStatus?: Partial<SigningCertificateUpdateStatus> | undefined): Record<string, (node: ParseNode) => void>;
38298
+ /**
38299
+ * The deserialization information for the current model
38300
+ * @param SignInIdentity The instance to deserialize into.
38301
+ * @returns {Record<string, (node: ParseNode) => void>}
38302
+ */
38303
+ export declare function deserializeIntoSignInIdentity(signInIdentity?: Partial<SignInIdentity> | undefined): Record<string, (node: ParseNode) => void>;
38050
38304
  /**
38051
38305
  * The deserialization information for the current model
38052
38306
  * @param SignInLocation The instance to deserialize into.
@@ -39805,6 +40059,12 @@ export declare function deserializeIntoUsedInsightCollectionResponse(usedInsight
39805
40059
  * @returns {Record<string, (node: ParseNode) => void>}
39806
40060
  */
39807
40061
  export declare function deserializeIntoUser(user?: Partial<User> | undefined): Record<string, (node: ParseNode) => void>;
40062
+ /**
40063
+ * The deserialization information for the current model
40064
+ * @param UserActionContext The instance to deserialize into.
40065
+ * @returns {Record<string, (node: ParseNode) => void>}
40066
+ */
40067
+ export declare function deserializeIntoUserActionContext(userActionContext?: Partial<UserActionContext> | undefined): Record<string, (node: ParseNode) => void>;
39808
40068
  /**
39809
40069
  * The deserialization information for the current model
39810
40070
  * @param UserActivity The instance to deserialize into.
@@ -40309,6 +40569,12 @@ export declare function deserializeIntoUserSecurityState(userSecurityState?: Par
40309
40569
  * @returns {Record<string, (node: ParseNode) => void>}
40310
40570
  */
40311
40571
  export declare function deserializeIntoUserSettings(userSettings?: Partial<UserSettings> | undefined): Record<string, (node: ParseNode) => void>;
40572
+ /**
40573
+ * The deserialization information for the current model
40574
+ * @param UserSignIn The instance to deserialize into.
40575
+ * @returns {Record<string, (node: ParseNode) => void>}
40576
+ */
40577
+ export declare function deserializeIntoUserSignIn(userSignIn?: Partial<UserSignIn> | undefined): Record<string, (node: ParseNode) => void>;
40312
40578
  /**
40313
40579
  * The deserialization information for the current model
40314
40580
  * @param UserSignInInsight The instance to deserialize into.
@@ -40627,6 +40893,12 @@ export declare function deserializeIntoWebPartPosition(webPartPosition?: Partial
40627
40893
  * @returns {Record<string, (node: ParseNode) => void>}
40628
40894
  */
40629
40895
  export declare function deserializeIntoWebsite(website?: Partial<Website> | undefined): Record<string, (node: ParseNode) => void>;
40896
+ /**
40897
+ * The deserialization information for the current model
40898
+ * @param WhatIfAnalysisResult The instance to deserialize into.
40899
+ * @returns {Record<string, (node: ParseNode) => void>}
40900
+ */
40901
+ export declare function deserializeIntoWhatIfAnalysisResult(whatIfAnalysisResult?: Partial<WhatIfAnalysisResult> | undefined): Record<string, (node: ParseNode) => void>;
40630
40902
  /**
40631
40903
  * The deserialization information for the current model
40632
40904
  * @param Win32LobApp The instance to deserialize into.
@@ -43202,6 +43474,132 @@ export interface DeviceHealthAttestationState extends AdditionalDataHolder, Back
43202
43474
  */
43203
43475
  windowsPE?: string | null;
43204
43476
  }
43477
+ export interface DeviceInfo extends AdditionalDataHolder, BackedModel, Parsable {
43478
+ /**
43479
+ * Stores model information.
43480
+ */
43481
+ backingStoreEnabled?: boolean | null;
43482
+ /**
43483
+ * Unique identifier set by Azure Device Registration Service at the time of registration.
43484
+ */
43485
+ deviceId?: string | null;
43486
+ /**
43487
+ * The display name for the device.
43488
+ */
43489
+ displayName?: string | null;
43490
+ /**
43491
+ * Enrollment profile applied to the device.
43492
+ */
43493
+ enrollmentProfileName?: string | null;
43494
+ /**
43495
+ * Extension attribute.
43496
+ */
43497
+ extensionAttribute1?: string | null;
43498
+ /**
43499
+ * Extension attribute.
43500
+ */
43501
+ extensionAttribute10?: string | null;
43502
+ /**
43503
+ * Extension attribute.
43504
+ */
43505
+ extensionAttribute11?: string | null;
43506
+ /**
43507
+ * Extension attribute.
43508
+ */
43509
+ extensionAttribute12?: string | null;
43510
+ /**
43511
+ * Extension attribute.
43512
+ */
43513
+ extensionAttribute13?: string | null;
43514
+ /**
43515
+ * Extension attribute.
43516
+ */
43517
+ extensionAttribute14?: string | null;
43518
+ /**
43519
+ * Extension attribute.
43520
+ */
43521
+ extensionAttribute15?: string | null;
43522
+ /**
43523
+ * Extension attribute.
43524
+ */
43525
+ extensionAttribute2?: string | null;
43526
+ /**
43527
+ * Extension attribute.
43528
+ */
43529
+ extensionAttribute3?: string | null;
43530
+ /**
43531
+ * Extension attribute.
43532
+ */
43533
+ extensionAttribute4?: string | null;
43534
+ /**
43535
+ * Extension attribute.
43536
+ */
43537
+ extensionAttribute5?: string | null;
43538
+ /**
43539
+ * Extension attribute.
43540
+ */
43541
+ extensionAttribute6?: string | null;
43542
+ /**
43543
+ * Extension attribute.
43544
+ */
43545
+ extensionAttribute7?: string | null;
43546
+ /**
43547
+ * Extension attribute.
43548
+ */
43549
+ extensionAttribute8?: string | null;
43550
+ /**
43551
+ * Extension attribute.
43552
+ */
43553
+ extensionAttribute9?: string | null;
43554
+ /**
43555
+ * Indicates the device compliance status with Mobile Management Device (MDM) policies. Default is false.
43556
+ */
43557
+ isCompliant?: boolean | null;
43558
+ /**
43559
+ * Manufacturer of the device.
43560
+ */
43561
+ manufacturer?: string | null;
43562
+ /**
43563
+ * Application identifier used to register device into MDM.
43564
+ */
43565
+ mdmAppId?: string | null;
43566
+ /**
43567
+ * Model of the device.
43568
+ */
43569
+ model?: string | null;
43570
+ /**
43571
+ * The OdataType property
43572
+ */
43573
+ odataType?: string | null;
43574
+ /**
43575
+ * The type of operating system on the device.
43576
+ */
43577
+ operatingSystem?: string | null;
43578
+ /**
43579
+ * The version of the operating system on the device.
43580
+ */
43581
+ operatingSystemVersion?: string | null;
43582
+ /**
43583
+ * Ownership of the device. This property is set by Intune.
43584
+ */
43585
+ ownership?: string | null;
43586
+ /**
43587
+ * A collection of physical identifiers for the device.
43588
+ */
43589
+ physicalIds?: string[] | null;
43590
+ /**
43591
+ * The profile type of the device.
43592
+ */
43593
+ profileType?: string | null;
43594
+ /**
43595
+ * List of labels applied to the device by the system.
43596
+ */
43597
+ systemLabels?: string[] | null;
43598
+ /**
43599
+ * Type of trust for the joined device.
43600
+ */
43601
+ trustType?: string | null;
43602
+ }
43205
43603
  /**
43206
43604
  * Contains properties for the installation state for a device.
43207
43605
  */
@@ -45681,6 +46079,10 @@ export interface EducationRoot extends AdditionalDataHolder, BackedModel, Parsab
45681
46079
  * The OdataType property
45682
46080
  */
45683
46081
  odataType?: string | null;
46082
+ /**
46083
+ * The reports property
46084
+ */
46085
+ reports?: ReportsRoot | null;
45684
46086
  /**
45685
46087
  * The schools property
45686
46088
  */
@@ -47569,6 +47971,10 @@ export interface FileStorage extends Entity, Parsable {
47569
47971
  deletedContainers?: FileStorageContainer[] | null;
47570
47972
  }
47571
47973
  export interface FileStorageContainer extends Entity, Parsable {
47974
+ /**
47975
+ * The columns property
47976
+ */
47977
+ columns?: ColumnDefinition[] | null;
47572
47978
  /**
47573
47979
  * Container type ID of the fileStorageContainer. For details about container types, see Container Types. Each container must have only one container type. Read-only.
47574
47980
  */
@@ -49064,6 +49470,7 @@ export interface Initiator extends Identity, Parsable {
49064
49470
  initiatorType?: InitiatorType | null;
49065
49471
  }
49066
49472
  export type InitiatorType = (typeof InitiatorTypeObject)[keyof typeof InitiatorTypeObject];
49473
+ export type InsiderRiskLevel = (typeof InsiderRiskLevelObject)[keyof typeof InsiderRiskLevelObject];
49067
49474
  export interface InsightIdentity extends AdditionalDataHolder, BackedModel, Parsable {
49068
49475
  /**
49069
49476
  * The email address of the user who shared the item.
@@ -56525,6 +56932,10 @@ export interface OnlineMeetingBase extends Entity, Parsable {
56525
56932
  * Specifies the configuration settings for meeting chat restrictions.
56526
56933
  */
56527
56934
  chatRestrictions?: ChatRestrictions | null;
56935
+ /**
56936
+ * The isEndToEndEncryptionEnabled property
56937
+ */
56938
+ isEndToEndEncryptionEnabled?: boolean | null;
56528
56939
  /**
56529
56940
  * Indicates whether to announce when callers join or leave.
56530
56941
  */
@@ -57580,6 +57991,24 @@ export interface OutOfBoxExperienceSetting extends AdditionalDataHolder, BackedM
57580
57991
  */
57581
57992
  userType?: WindowsUserType | null;
57582
57993
  }
57994
+ export interface OutOfOfficeSettings extends AdditionalDataHolder, BackedModel, Parsable {
57995
+ /**
57996
+ * Stores model information.
57997
+ */
57998
+ backingStoreEnabled?: boolean | null;
57999
+ /**
58000
+ * The isOutOfOffice property
58001
+ */
58002
+ isOutOfOffice?: boolean | null;
58003
+ /**
58004
+ * The message property
58005
+ */
58006
+ message?: string | null;
58007
+ /**
58008
+ * The OdataType property
58009
+ */
58010
+ odataType?: string | null;
58011
+ }
57583
58012
  export interface PackageEscaped extends AdditionalDataHolder, BackedModel, Parsable {
57584
58013
  /**
57585
58014
  * Stores model information.
@@ -58430,6 +58859,12 @@ export interface PhoneAuthenticationMethodCollectionResponse extends BaseCollect
58430
58859
  value?: PhoneAuthenticationMethod[] | null;
58431
58860
  }
58432
58861
  export type PhoneType = (typeof PhoneTypeObject)[keyof typeof PhoneTypeObject];
58862
+ export interface PhoneUserConversationMember extends ConversationMember, Parsable {
58863
+ /**
58864
+ * The phoneNumber property
58865
+ */
58866
+ phoneNumber?: string | null;
58867
+ }
58433
58868
  export interface Photo extends AdditionalDataHolder, BackedModel, Parsable {
58434
58869
  /**
58435
58870
  * Stores model information.
@@ -59353,6 +59788,14 @@ export interface Presence extends Entity, Parsable {
59353
59788
  * The base presence information for a user. Possible values are Available, AvailableIdle, Away, BeRightBack, Busy, BusyIdle, DoNotDisturb, Offline, PresenceUnknown
59354
59789
  */
59355
59790
  availability?: string | null;
59791
+ /**
59792
+ * The outOfOfficeSettings property
59793
+ */
59794
+ outOfOfficeSettings?: OutOfOfficeSettings | null;
59795
+ /**
59796
+ * The sequenceNumber property
59797
+ */
59798
+ sequenceNumber?: string | null;
59356
59799
  /**
59357
59800
  * The presence status message of a user.
59358
59801
  */
@@ -61678,6 +62121,98 @@ export interface ReactionsFacet extends AdditionalDataHolder, BackedModel, Parsa
61678
62121
  */
61679
62122
  shareCount?: number | null;
61680
62123
  }
62124
+ export interface ReadingAssignmentSubmission extends Entity, Parsable {
62125
+ /**
62126
+ * Accuracy score of the reading progress.
62127
+ */
62128
+ accuracyScore?: number | null;
62129
+ /**
62130
+ * Indicates whether the submission is an attempt by the student or a miscue edit done by the educator. The possible values are Attempt and EditMiscue.
62131
+ */
62132
+ action?: string | null;
62133
+ /**
62134
+ * ID of the assignment with which this submission is associated.
62135
+ */
62136
+ assignmentId?: string | null;
62137
+ /**
62138
+ * List of words that the student found challenging during the reading session.
62139
+ */
62140
+ challengingWords?: ChallengingWord[] | null;
62141
+ /**
62142
+ * ID of the class this reading progress is associated with.
62143
+ */
62144
+ classId?: string | null;
62145
+ /**
62146
+ * Insertions of the reading progress.
62147
+ */
62148
+ insertions?: number | null;
62149
+ /**
62150
+ * Mispronunciations of the reading progress.
62151
+ */
62152
+ mispronunciations?: number | null;
62153
+ /**
62154
+ * Number of exclamation marks missed in the reading passage.
62155
+ */
62156
+ missedExclamationMarks?: number | null;
62157
+ /**
62158
+ * Number of periods missed in the reading passage.
62159
+ */
62160
+ missedPeriods?: number | null;
62161
+ /**
62162
+ * Number of question marks missed in the reading passage.
62163
+ */
62164
+ missedQuestionMarks?: number | null;
62165
+ /**
62166
+ * Number of short words missed during the reading session.
62167
+ */
62168
+ missedShorts?: number | null;
62169
+ /**
62170
+ * Score that reflects the student's use of intonation and expression. Lower scores indicate more monotone reading.
62171
+ */
62172
+ monotoneScore?: number | null;
62173
+ /**
62174
+ * Omissions of the reading progress.
62175
+ */
62176
+ omissions?: number | null;
62177
+ /**
62178
+ * Number of times the student repeated words or phrases during the reading session.
62179
+ */
62180
+ repetitions?: number | null;
62181
+ /**
62182
+ * Number of times the student self-corrected their reading errors.
62183
+ */
62184
+ selfCorrections?: number | null;
62185
+ /**
62186
+ * ID of the user this reading progress is associated with.
62187
+ */
62188
+ studentId?: string | null;
62189
+ /**
62190
+ * Date and time of the submission this reading progress is associated with. 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.
62191
+ */
62192
+ submissionDateTime?: Date | null;
62193
+ /**
62194
+ * ID of the submission this reading progress is associated with.
62195
+ */
62196
+ submissionId?: string | null;
62197
+ /**
62198
+ * Number of unexpected pauses made during the reading session.
62199
+ */
62200
+ unexpectedPauses?: number | null;
62201
+ /**
62202
+ * Words count of the reading progress.
62203
+ */
62204
+ wordCount?: number | null;
62205
+ /**
62206
+ * Words per minute of the reading progress.
62207
+ */
62208
+ wordsPerMinute?: number | null;
62209
+ }
62210
+ export interface ReadingAssignmentSubmissionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
62211
+ /**
62212
+ * The value property
62213
+ */
62214
+ value?: ReadingAssignmentSubmission[] | null;
62215
+ }
61681
62216
  export interface RecentNotebook extends AdditionalDataHolder, BackedModel, Parsable {
61682
62217
  /**
61683
62218
  * Stores model information.
@@ -61964,6 +62499,54 @@ export interface ReferenceUpdate extends AdditionalDataHolder, BackedModel, Pars
61964
62499
  */
61965
62500
  odataType?: string | null;
61966
62501
  }
62502
+ export interface ReflectCheckInResponse extends Entity, Parsable {
62503
+ /**
62504
+ * Identifier for the Reflect check-in.
62505
+ */
62506
+ checkInId?: string | null;
62507
+ /**
62508
+ * The question or prompt of the Reflect check-in that this response addresses.
62509
+ */
62510
+ checkInTitle?: string | null;
62511
+ /**
62512
+ * ID of the class associated with the Reflect check-in.
62513
+ */
62514
+ classId?: string | null;
62515
+ /**
62516
+ * Date and time when the Reflect check-in was created. 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.
62517
+ */
62518
+ createdDateTime?: Date | null;
62519
+ /**
62520
+ * ID of the user who created the Reflect check-in.
62521
+ */
62522
+ creatorId?: string | null;
62523
+ /**
62524
+ * Indicates whether the Reflect check-in is closed (true) or open (false).
62525
+ */
62526
+ isClosed?: boolean | null;
62527
+ /**
62528
+ * ID of the user who responded to the Reflect check-in.
62529
+ */
62530
+ responderId?: string | null;
62531
+ /**
62532
+ * The responseEmotion property
62533
+ */
62534
+ responseEmotion?: ResponseEmotionType | null;
62535
+ /**
62536
+ * The responseFeedback property
62537
+ */
62538
+ responseFeedback?: ResponseFeedbackType | null;
62539
+ /**
62540
+ * Date and time when the response to the Reflect check-in was submitted. 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.
62541
+ */
62542
+ submitDateTime?: Date | null;
62543
+ }
62544
+ export interface ReflectCheckInResponseCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
62545
+ /**
62546
+ * The value property
62547
+ */
62548
+ value?: ReflectCheckInResponse[] | null;
62549
+ }
61967
62550
  export interface RegistrationEnforcement extends AdditionalDataHolder, BackedModel, Parsable {
61968
62551
  /**
61969
62552
  * Run campaigns to remind users to set up targeted authentication methods.
@@ -62355,6 +62938,16 @@ export interface ReportRoot extends AdditionalDataHolder, BackedModel, Parsable
62355
62938
  */
62356
62939
  security?: SecurityReportsRoot | null;
62357
62940
  }
62941
+ export interface ReportsRoot extends Entity, Parsable {
62942
+ /**
62943
+ * The readingAssignmentSubmissions property
62944
+ */
62945
+ readingAssignmentSubmissions?: ReadingAssignmentSubmission[] | null;
62946
+ /**
62947
+ * The reflectCheckInResponses property
62948
+ */
62949
+ reflectCheckInResponses?: ReflectCheckInResponse[] | null;
62950
+ }
62358
62951
  export interface Request extends Entity, Parsable {
62359
62952
  /**
62360
62953
  * The identifier of the approval of the request.
@@ -62653,6 +63246,8 @@ export interface ResourceVisualization extends AdditionalDataHolder, BackedModel
62653
63246
  */
62654
63247
  type?: string | null;
62655
63248
  }
63249
+ export type ResponseEmotionType = (typeof ResponseEmotionTypeObject)[keyof typeof ResponseEmotionTypeObject];
63250
+ export type ResponseFeedbackType = (typeof ResponseFeedbackTypeObject)[keyof typeof ResponseFeedbackTypeObject];
62656
63251
  export interface ResponseStatus extends AdditionalDataHolder, BackedModel, Parsable {
62657
63252
  /**
62658
63253
  * Stores model information.
@@ -64450,10 +65045,6 @@ export interface Security extends Entity, Parsable {
64450
65045
  * The attackSimulation property
64451
65046
  */
64452
65047
  attackSimulation?: AttackSimulationRoot | null;
64453
- /**
64454
- * The auditLog property
64455
- */
64456
- auditLog?: AuditCoreRoot | null;
64457
65048
  /**
64458
65049
  * The cases property
64459
65050
  */
@@ -65854,6 +66445,13 @@ export declare function serializeApplication(writer: SerializationWriter, applic
65854
66445
  * @param writer Serialization writer to use to serialize this model
65855
66446
  */
65856
66447
  export declare function serializeApplicationCollectionResponse(writer: SerializationWriter, applicationCollectionResponse?: Partial<ApplicationCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
66448
+ /**
66449
+ * Serializes information the current object
66450
+ * @param ApplicationContext The instance to serialize from.
66451
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
66452
+ * @param writer Serialization writer to use to serialize this model
66453
+ */
66454
+ export declare function serializeApplicationContext(writer: SerializationWriter, applicationContext?: Partial<ApplicationContext> | undefined | null, isSerializingDerivedType?: boolean): void;
65857
66455
  /**
65858
66456
  * Serializes information the current object
65859
66457
  * @param ApplicationEnforcedRestrictionsSessionControl The instance to serialize from.
@@ -66393,6 +66991,13 @@ export declare function serializeAuditProperty(writer: SerializationWriter, audi
66393
66991
  * @param writer Serialization writer to use to serialize this model
66394
66992
  */
66395
66993
  export declare function serializeAuditResource(writer: SerializationWriter, auditResource?: Partial<AuditResource> | undefined | null, isSerializingDerivedType?: boolean): void;
66994
+ /**
66995
+ * Serializes information the current object
66996
+ * @param AuthContext The instance to serialize from.
66997
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
66998
+ * @param writer Serialization writer to use to serialize this model
66999
+ */
67000
+ export declare function serializeAuthContext(writer: SerializationWriter, authContext?: Partial<AuthContext> | undefined | null, isSerializingDerivedType?: boolean): void;
66396
67001
  /**
66397
67002
  * Serializes information the current object
66398
67003
  * @param Authentication The instance to serialize from.
@@ -66526,6 +67131,13 @@ export declare function serializeAuthenticationEventsFlow(writer: SerializationW
66526
67131
  * @param writer Serialization writer to use to serialize this model
66527
67132
  */
66528
67133
  export declare function serializeAuthenticationEventsFlowCollectionResponse(writer: SerializationWriter, authenticationEventsFlowCollectionResponse?: Partial<AuthenticationEventsFlowCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
67134
+ /**
67135
+ * Serializes information the current object
67136
+ * @param AuthenticationFlow The instance to serialize from.
67137
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
67138
+ * @param writer Serialization writer to use to serialize this model
67139
+ */
67140
+ export declare function serializeAuthenticationFlow(writer: SerializationWriter, authenticationFlow?: Partial<AuthenticationFlow> | undefined | null, isSerializingDerivedType?: boolean): void;
66529
67141
  /**
66530
67142
  * Serializes information the current object
66531
67143
  * @param AuthenticationFlowsPolicy The instance to serialize from.
@@ -67422,6 +68034,13 @@ export declare function serializeCertification(writer: SerializationWriter, cert
67422
68034
  * @param writer Serialization writer to use to serialize this model
67423
68035
  */
67424
68036
  export declare function serializeCertificationControl(writer: SerializationWriter, certificationControl?: Partial<CertificationControl> | undefined | null, isSerializingDerivedType?: boolean): void;
68037
+ /**
68038
+ * Serializes information the current object
68039
+ * @param ChallengingWord The instance to serialize from.
68040
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
68041
+ * @param writer Serialization writer to use to serialize this model
68042
+ */
68043
+ export declare function serializeChallengingWord(writer: SerializationWriter, challengingWord?: Partial<ChallengingWord> | undefined | null, isSerializingDerivedType?: boolean): void;
67425
68044
  /**
67426
68045
  * Serializes information the current object
67427
68046
  * @param ChangeTrackedEntity The instance to serialize from.
@@ -69515,6 +70134,13 @@ export declare function serializeDeviceGeoLocation(writer: SerializationWriter,
69515
70134
  * @param writer Serialization writer to use to serialize this model
69516
70135
  */
69517
70136
  export declare function serializeDeviceHealthAttestationState(writer: SerializationWriter, deviceHealthAttestationState?: Partial<DeviceHealthAttestationState> | undefined | null, isSerializingDerivedType?: boolean): void;
70137
+ /**
70138
+ * Serializes information the current object
70139
+ * @param DeviceInfo The instance to serialize from.
70140
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
70141
+ * @param writer Serialization writer to use to serialize this model
70142
+ */
70143
+ export declare function serializeDeviceInfo(writer: SerializationWriter, deviceInfo?: Partial<DeviceInfo> | undefined | null, isSerializingDerivedType?: boolean): void;
69518
70144
  /**
69519
70145
  * Serializes information the current object
69520
70146
  * @param DeviceInstallState The instance to serialize from.
@@ -74464,6 +75090,13 @@ export declare function serializeOutlookUser(writer: SerializationWriter, outloo
74464
75090
  * @param writer Serialization writer to use to serialize this model
74465
75091
  */
74466
75092
  export declare function serializeOutOfBoxExperienceSetting(writer: SerializationWriter, outOfBoxExperienceSetting?: Partial<OutOfBoxExperienceSetting> | undefined | null, isSerializingDerivedType?: boolean): void;
75093
+ /**
75094
+ * Serializes information the current object
75095
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
75096
+ * @param OutOfOfficeSettings The instance to serialize from.
75097
+ * @param writer Serialization writer to use to serialize this model
75098
+ */
75099
+ export declare function serializeOutOfOfficeSettings(writer: SerializationWriter, outOfOfficeSettings?: Partial<OutOfOfficeSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
74467
75100
  /**
74468
75101
  * Serializes information the current object
74469
75102
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -74737,6 +75370,13 @@ export declare function serializePhoneAuthenticationMethod(writer: Serialization
74737
75370
  * @param writer Serialization writer to use to serialize this model
74738
75371
  */
74739
75372
  export declare function serializePhoneAuthenticationMethodCollectionResponse(writer: SerializationWriter, phoneAuthenticationMethodCollectionResponse?: Partial<PhoneAuthenticationMethodCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
75373
+ /**
75374
+ * Serializes information the current object
75375
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
75376
+ * @param PhoneUserConversationMember The instance to serialize from.
75377
+ * @param writer Serialization writer to use to serialize this model
75378
+ */
75379
+ export declare function serializePhoneUserConversationMember(writer: SerializationWriter, phoneUserConversationMember?: Partial<PhoneUserConversationMember> | undefined | null, isSerializingDerivedType?: boolean): void;
74740
75380
  /**
74741
75381
  * Serializes information the current object
74742
75382
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -75850,6 +76490,20 @@ export declare function serializeRbacApplication(writer: SerializationWriter, rb
75850
76490
  * @param writer Serialization writer to use to serialize this model
75851
76491
  */
75852
76492
  export declare function serializeReactionsFacet(writer: SerializationWriter, reactionsFacet?: Partial<ReactionsFacet> | undefined | null, isSerializingDerivedType?: boolean): void;
76493
+ /**
76494
+ * Serializes information the current object
76495
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76496
+ * @param ReadingAssignmentSubmission The instance to serialize from.
76497
+ * @param writer Serialization writer to use to serialize this model
76498
+ */
76499
+ export declare function serializeReadingAssignmentSubmission(writer: SerializationWriter, readingAssignmentSubmission?: Partial<ReadingAssignmentSubmission> | undefined | null, isSerializingDerivedType?: boolean): void;
76500
+ /**
76501
+ * Serializes information the current object
76502
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76503
+ * @param ReadingAssignmentSubmissionCollectionResponse The instance to serialize from.
76504
+ * @param writer Serialization writer to use to serialize this model
76505
+ */
76506
+ export declare function serializeReadingAssignmentSubmissionCollectionResponse(writer: SerializationWriter, readingAssignmentSubmissionCollectionResponse?: Partial<ReadingAssignmentSubmissionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
75853
76507
  /**
75854
76508
  * Serializes information the current object
75855
76509
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -75969,6 +76623,20 @@ export declare function serializeReferencedObject(writer: SerializationWriter, r
75969
76623
  * @param writer Serialization writer to use to serialize this model
75970
76624
  */
75971
76625
  export declare function serializeReferenceUpdate(writer: SerializationWriter, referenceUpdate?: Partial<ReferenceUpdate> | undefined | null, isSerializingDerivedType?: boolean): void;
76626
+ /**
76627
+ * Serializes information the current object
76628
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76629
+ * @param ReflectCheckInResponse The instance to serialize from.
76630
+ * @param writer Serialization writer to use to serialize this model
76631
+ */
76632
+ export declare function serializeReflectCheckInResponse(writer: SerializationWriter, reflectCheckInResponse?: Partial<ReflectCheckInResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
76633
+ /**
76634
+ * Serializes information the current object
76635
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76636
+ * @param ReflectCheckInResponseCollectionResponse The instance to serialize from.
76637
+ * @param writer Serialization writer to use to serialize this model
76638
+ */
76639
+ export declare function serializeReflectCheckInResponseCollectionResponse(writer: SerializationWriter, reflectCheckInResponseCollectionResponse?: Partial<ReflectCheckInResponseCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
75972
76640
  /**
75973
76641
  * Serializes information the current object
75974
76642
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -76067,6 +76735,13 @@ export declare function serializeReport(writer: SerializationWriter, report?: Pa
76067
76735
  * @param writer Serialization writer to use to serialize this model
76068
76736
  */
76069
76737
  export declare function serializeReportRoot(writer: SerializationWriter, reportRoot?: Partial<ReportRoot> | undefined | null, isSerializingDerivedType?: boolean): void;
76738
+ /**
76739
+ * Serializes information the current object
76740
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76741
+ * @param ReportsRoot The instance to serialize from.
76742
+ * @param writer Serialization writer to use to serialize this model
76743
+ */
76744
+ export declare function serializeReportsRoot(writer: SerializationWriter, reportsRoot?: Partial<ReportsRoot> | undefined | null, isSerializingDerivedType?: boolean): void;
76070
76745
  /**
76071
76746
  * Serializes information the current object
76072
76747
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -76977,6 +77652,13 @@ export declare function serializeServicePrincipalRiskDetection(writer: Serializa
76977
77652
  * @param writer Serialization writer to use to serialize this model
76978
77653
  */
76979
77654
  export declare function serializeServicePrincipalRiskDetectionCollectionResponse(writer: SerializationWriter, servicePrincipalRiskDetectionCollectionResponse?: Partial<ServicePrincipalRiskDetectionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
77655
+ /**
77656
+ * Serializes information the current object
77657
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
77658
+ * @param ServicePrincipalSignIn The instance to serialize from.
77659
+ * @param writer Serialization writer to use to serialize this model
77660
+ */
77661
+ export declare function serializeServicePrincipalSignIn(writer: SerializationWriter, servicePrincipalSignIn?: Partial<ServicePrincipalSignIn> | undefined | null, isSerializingDerivedType?: boolean): void;
76980
77662
  /**
76981
77663
  * Serializes information the current object
76982
77664
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -77292,6 +77974,20 @@ export declare function serializeSignInActivity(writer: SerializationWriter, sig
77292
77974
  * @param writer Serialization writer to use to serialize this model
77293
77975
  */
77294
77976
  export declare function serializeSignInCollectionResponse(writer: SerializationWriter, signInCollectionResponse?: Partial<SignInCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
77977
+ /**
77978
+ * Serializes information the current object
77979
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
77980
+ * @param SignInConditions The instance to serialize from.
77981
+ * @param writer Serialization writer to use to serialize this model
77982
+ */
77983
+ export declare function serializeSignInConditions(writer: SerializationWriter, signInConditions?: Partial<SignInConditions> | undefined | null, isSerializingDerivedType?: boolean): void;
77984
+ /**
77985
+ * Serializes information the current object
77986
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
77987
+ * @param SignInContext The instance to serialize from.
77988
+ * @param writer Serialization writer to use to serialize this model
77989
+ */
77990
+ export declare function serializeSignInContext(writer: SerializationWriter, signInContext?: Partial<SignInContext> | undefined | null, isSerializingDerivedType?: boolean): void;
77295
77991
  /**
77296
77992
  * Serializes information the current object
77297
77993
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -77306,6 +78002,13 @@ export declare function serializeSignInFrequencySessionControl(writer: Serializa
77306
78002
  * @param writer Serialization writer to use to serialize this model
77307
78003
  */
77308
78004
  export declare function serializeSigningCertificateUpdateStatus(writer: SerializationWriter, signingCertificateUpdateStatus?: Partial<SigningCertificateUpdateStatus> | undefined | null, isSerializingDerivedType?: boolean): void;
78005
+ /**
78006
+ * Serializes information the current object
78007
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
78008
+ * @param SignInIdentity The instance to serialize from.
78009
+ * @param writer Serialization writer to use to serialize this model
78010
+ */
78011
+ export declare function serializeSignInIdentity(writer: SerializationWriter, signInIdentity?: Partial<SignInIdentity> | undefined | null, isSerializingDerivedType?: boolean): void;
77309
78012
  /**
77310
78013
  * Serializes information the current object
77311
78014
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -79357,6 +80060,13 @@ export declare function serializeUsedInsightCollectionResponse(writer: Serializa
79357
80060
  * @param writer Serialization writer to use to serialize this model
79358
80061
  */
79359
80062
  export declare function serializeUser(writer: SerializationWriter, user?: Partial<User> | undefined | null, isSerializingDerivedType?: boolean): void;
80063
+ /**
80064
+ * Serializes information the current object
80065
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
80066
+ * @param UserActionContext The instance to serialize from.
80067
+ * @param writer Serialization writer to use to serialize this model
80068
+ */
80069
+ export declare function serializeUserActionContext(writer: SerializationWriter, userActionContext?: Partial<UserActionContext> | undefined | null, isSerializingDerivedType?: boolean): void;
79360
80070
  /**
79361
80071
  * Serializes information the current object
79362
80072
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -79945,6 +80655,13 @@ export declare function serializeUserSecurityState(writer: SerializationWriter,
79945
80655
  * @param writer Serialization writer to use to serialize this model
79946
80656
  */
79947
80657
  export declare function serializeUserSettings(writer: SerializationWriter, userSettings?: Partial<UserSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
80658
+ /**
80659
+ * Serializes information the current object
80660
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
80661
+ * @param UserSignIn The instance to serialize from.
80662
+ * @param writer Serialization writer to use to serialize this model
80663
+ */
80664
+ export declare function serializeUserSignIn(writer: SerializationWriter, userSignIn?: Partial<UserSignIn> | undefined | null, isSerializingDerivedType?: boolean): void;
79948
80665
  /**
79949
80666
  * Serializes information the current object
79950
80667
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -80316,6 +81033,13 @@ export declare function serializeWebPartPosition(writer: SerializationWriter, we
80316
81033
  * @param writer Serialization writer to use to serialize this model
80317
81034
  */
80318
81035
  export declare function serializeWebsite(writer: SerializationWriter, website?: Partial<Website> | undefined | null, isSerializingDerivedType?: boolean): void;
81036
+ /**
81037
+ * Serializes information the current object
81038
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
81039
+ * @param WhatIfAnalysisResult The instance to serialize from.
81040
+ * @param writer Serialization writer to use to serialize this model
81041
+ */
81042
+ export declare function serializeWhatIfAnalysisResult(writer: SerializationWriter, whatIfAnalysisResult?: Partial<WhatIfAnalysisResult> | undefined | null, isSerializingDerivedType?: boolean): void;
80319
81043
  /**
80320
81044
  * Serializes information the current object
80321
81045
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -82041,6 +82765,12 @@ export interface ServicePrincipalRiskDetectionCollectionResponse extends BaseCol
82041
82765
  */
82042
82766
  value?: ServicePrincipalRiskDetection[] | null;
82043
82767
  }
82768
+ export interface ServicePrincipalSignIn extends Parsable, SignInIdentity {
82769
+ /**
82770
+ * appId of the service principal that is signing in.
82771
+ */
82772
+ servicePrincipalId?: string | null;
82773
+ }
82044
82774
  export interface ServiceProvisioningError extends AdditionalDataHolder, BackedModel, Parsable {
82045
82775
  /**
82046
82776
  * Stores model information.
@@ -82869,7 +83599,7 @@ export interface ShiftActivity extends AdditionalDataHolder, BackedModel, Parsab
82869
83599
  */
82870
83600
  displayName?: string | null;
82871
83601
  /**
82872
- * The end date and time for the shiftActivity. 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. Required.
83602
+ * The end date and time for the shiftActivity. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.
82873
83603
  */
82874
83604
  endDateTime?: Date | null;
82875
83605
  /**
@@ -82881,7 +83611,7 @@ export interface ShiftActivity extends AdditionalDataHolder, BackedModel, Parsab
82881
83611
  */
82882
83612
  odataType?: string | null;
82883
83613
  /**
82884
- * The start date and time for the shiftActivity. 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. Required.
83614
+ * The start date and time for the shiftActivity. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.
82885
83615
  */
82886
83616
  startDateTime?: Date | null;
82887
83617
  /**
@@ -83071,6 +83801,66 @@ export interface SignInCollectionResponse extends BaseCollectionPaginationCountR
83071
83801
  */
83072
83802
  value?: SignIn[] | null;
83073
83803
  }
83804
+ export interface SignInConditions extends AdditionalDataHolder, BackedModel, Parsable {
83805
+ /**
83806
+ * Type of authentication flow. The possible value is: deviceCodeFlow or authenticationTransfer. Default value is none.
83807
+ */
83808
+ authenticationFlow?: AuthenticationFlow | null;
83809
+ /**
83810
+ * Stores model information.
83811
+ */
83812
+ backingStoreEnabled?: boolean | null;
83813
+ /**
83814
+ * Client application type. The possible value is: all, browser, mobileAppsAndDesktopClients, exchangeActiveSync, easSupported, other, unknownFutureValue. Default value is all.
83815
+ */
83816
+ clientAppType?: ConditionalAccessClientApp | null;
83817
+ /**
83818
+ * Country from where the identity is authenticating.
83819
+ */
83820
+ country?: string | null;
83821
+ /**
83822
+ * Information about the device used for the sign-in.
83823
+ */
83824
+ deviceInfo?: DeviceInfo | null;
83825
+ /**
83826
+ * Device platform. The possible value is: android, iOS, windows, windowsPhone, macOS, all, unknownFutureValue, linux. Default value is all.
83827
+ */
83828
+ devicePlatform?: ConditionalAccessDevicePlatform | null;
83829
+ /**
83830
+ * Insider risk associated with the authenticating user. The possible value is: none, minor, moderate, elevated, unknownFutureValue. Default value is none.
83831
+ */
83832
+ insiderRiskLevel?: InsiderRiskLevel | null;
83833
+ /**
83834
+ * Ip address of the authenticating identity.
83835
+ */
83836
+ ipAddress?: string | null;
83837
+ /**
83838
+ * The OdataType property
83839
+ */
83840
+ odataType?: string | null;
83841
+ /**
83842
+ * Risk associated with the service principal. The possible value is: low, medium, high, hidden, none, unknownFutureValue. Default value is none.
83843
+ */
83844
+ servicePrincipalRiskLevel?: RiskLevel | null;
83845
+ /**
83846
+ * Sign-in risk associated with the user. The possible value is: low, medium, high, hidden, none, unknownFutureValue. Default value is none.
83847
+ */
83848
+ signInRiskLevel?: RiskLevel | null;
83849
+ /**
83850
+ * The authenticating user's risk level. The possible value is: low, medium, high, hidden, none, unknownFutureValue. Default value is none.
83851
+ */
83852
+ userRiskLevel?: RiskLevel | null;
83853
+ }
83854
+ export interface SignInContext extends AdditionalDataHolder, BackedModel, Parsable {
83855
+ /**
83856
+ * Stores model information.
83857
+ */
83858
+ backingStoreEnabled?: boolean | null;
83859
+ /**
83860
+ * The OdataType property
83861
+ */
83862
+ odataType?: string | null;
83863
+ }
83074
83864
  export type SignInFrequencyAuthenticationType = (typeof SignInFrequencyAuthenticationTypeObject)[keyof typeof SignInFrequencyAuthenticationTypeObject];
83075
83865
  export type SignInFrequencyInterval = (typeof SignInFrequencyIntervalObject)[keyof typeof SignInFrequencyIntervalObject];
83076
83866
  export interface SignInFrequencySessionControl extends ConditionalAccessSessionControl, Parsable {
@@ -83110,6 +83900,16 @@ export interface SigningCertificateUpdateStatus extends AdditionalDataHolder, Ba
83110
83900
  */
83111
83901
  odataType?: string | null;
83112
83902
  }
83903
+ export interface SignInIdentity extends AdditionalDataHolder, BackedModel, Parsable {
83904
+ /**
83905
+ * Stores model information.
83906
+ */
83907
+ backingStoreEnabled?: boolean | null;
83908
+ /**
83909
+ * The OdataType property
83910
+ */
83911
+ odataType?: string | null;
83912
+ }
83113
83913
  export interface SignInLocation extends AdditionalDataHolder, BackedModel, Parsable {
83114
83914
  /**
83115
83915
  * Stores model information.
@@ -88833,6 +89633,13 @@ export interface User extends DirectoryObject, Parsable {
88833
89633
  userType?: string | null;
88834
89634
  }
88835
89635
  export type UserAccountSecurityType = (typeof UserAccountSecurityTypeObject)[keyof typeof UserAccountSecurityTypeObject];
89636
+ export type UserAction = (typeof UserActionObject)[keyof typeof UserActionObject];
89637
+ export interface UserActionContext extends Parsable, SignInContext {
89638
+ /**
89639
+ * Represents the user action that the authenticating identity is performing. The possible values are: registerSecurityInformation, registerOrJoinDevices, unknownFutureValue.
89640
+ */
89641
+ userAction?: UserAction | null;
89642
+ }
88836
89643
  export interface UserActivity extends Entity, Parsable {
88837
89644
  /**
88838
89645
  * Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists.
@@ -90616,6 +91423,20 @@ export interface UserSettings extends Entity, Parsable {
90616
91423
  */
90617
91424
  windows?: WindowsSetting[] | null;
90618
91425
  }
91426
+ export interface UserSignIn extends Parsable, SignInIdentity {
91427
+ /**
91428
+ * TenantId of the guest user as applies to Microsoft Entra B2B scenarios.
91429
+ */
91430
+ externalTenantId?: string | null;
91431
+ /**
91432
+ * The externalUserType property
91433
+ */
91434
+ externalUserType?: ConditionalAccessGuestOrExternalUserTypes[] | null;
91435
+ /**
91436
+ * Object ID of the user.
91437
+ */
91438
+ userId?: string | null;
91439
+ }
90619
91440
  export interface UserSignInInsight extends GovernanceInsight, Parsable {
90620
91441
  /**
90621
91442
  * Indicates when the user last signed in.
@@ -91650,6 +92471,17 @@ export type WeekIndex = (typeof WeekIndexObject)[keyof typeof WeekIndexObject];
91650
92471
  export type WeeklySchedule = (typeof WeeklyScheduleObject)[keyof typeof WeeklyScheduleObject];
91651
92472
  export type WelcomeScreenMeetingInformation = (typeof WelcomeScreenMeetingInformationObject)[keyof typeof WelcomeScreenMeetingInformationObject];
91652
92473
  export type WellknownListName = (typeof WellknownListNameObject)[keyof typeof WellknownListNameObject];
92474
+ export type WhatIfAnalysisReasons = (typeof WhatIfAnalysisReasonsObject)[keyof typeof WhatIfAnalysisReasonsObject];
92475
+ export interface WhatIfAnalysisResult extends ConditionalAccessPolicy, Parsable {
92476
+ /**
92477
+ * The analysisReasons property
92478
+ */
92479
+ analysisReasons?: WhatIfAnalysisReasons[] | null;
92480
+ /**
92481
+ * Specifies whether the policy applies to the sign-in properties provided in the request body. If policyApplies is true, the policy applies to the sign-in based on the sign-in properties provided. If policyApplies is false, the policy doesn't apply to the sign-in based on the sign-in properties provided and the analysisReasons property is populated to show the reason for the policy not applying.
92482
+ */
92483
+ policyApplies?: boolean | null;
92484
+ }
91653
92485
  /**
91654
92486
  * Contains properties and inherited properties for Win32 apps.
91655
92487
  */
@@ -96159,47 +96991,47 @@ export interface WorkbookWorksheetProtection extends Entity, Parsable {
96159
96991
  }
96160
96992
  export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder, BackedModel, Parsable {
96161
96993
  /**
96162
- * Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
96994
+ * Represents the worksheet protection option of allowing using auto filter feature.
96163
96995
  */
96164
96996
  allowAutoFilter?: boolean | null;
96165
96997
  /**
96166
- * Indicates whether the worksheet protection option to allow deleting columns is enabled.
96998
+ * Represents the worksheet protection option of allowing deleting columns.
96167
96999
  */
96168
97000
  allowDeleteColumns?: boolean | null;
96169
97001
  /**
96170
- * Indicates whether the worksheet protection option to allow deleting rows is enabled.
97002
+ * Represents the worksheet protection option of allowing deleting rows.
96171
97003
  */
96172
97004
  allowDeleteRows?: boolean | null;
96173
97005
  /**
96174
- * Indicates whether the worksheet protection option to allow formatting cells is enabled.
97006
+ * Represents the worksheet protection option of allowing formatting cells.
96175
97007
  */
96176
97008
  allowFormatCells?: boolean | null;
96177
97009
  /**
96178
- * Indicates whether the worksheet protection option to allow formatting columns is enabled.
97010
+ * Represents the worksheet protection option of allowing formatting columns.
96179
97011
  */
96180
97012
  allowFormatColumns?: boolean | null;
96181
97013
  /**
96182
- * Indicates whether the worksheet protection option to allow formatting rows is enabled.
97014
+ * Represents the worksheet protection option of allowing formatting rows.
96183
97015
  */
96184
97016
  allowFormatRows?: boolean | null;
96185
97017
  /**
96186
- * Indicates whether the worksheet protection option to allow inserting columns is enabled.
97018
+ * Represents the worksheet protection option of allowing inserting columns.
96187
97019
  */
96188
97020
  allowInsertColumns?: boolean | null;
96189
97021
  /**
96190
- * Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
97022
+ * Represents the worksheet protection option of allowing inserting hyperlinks.
96191
97023
  */
96192
97024
  allowInsertHyperlinks?: boolean | null;
96193
97025
  /**
96194
- * Indicates whether the worksheet protection option to allow inserting rows is enabled.
97026
+ * Represents the worksheet protection option of allowing inserting rows.
96195
97027
  */
96196
97028
  allowInsertRows?: boolean | null;
96197
97029
  /**
96198
- * Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
97030
+ * Represents the worksheet protection option of allowing using pivot table feature.
96199
97031
  */
96200
97032
  allowPivotTables?: boolean | null;
96201
97033
  /**
96202
- * Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
97034
+ * Represents the worksheet protection option of allowing using sort feature.
96203
97035
  */
96204
97036
  allowSort?: boolean | null;
96205
97037
  /**
@@ -98764,6 +99596,13 @@ export declare const InitiatorTypeObject: {
98764
99596
  readonly System: "system";
98765
99597
  readonly UnknownFutureValue: "unknownFutureValue";
98766
99598
  };
99599
+ export declare const InsiderRiskLevelObject: {
99600
+ readonly None: "none";
99601
+ readonly Minor: "minor";
99602
+ readonly Moderate: "moderate";
99603
+ readonly Elevated: "elevated";
99604
+ readonly UnknownFutureValue: "unknownFutureValue";
99605
+ };
98767
99606
  /**
98768
99607
  * Possible values for the install intent chosen by the admin.
98769
99608
  */
@@ -101258,6 +102097,76 @@ export declare const RequiredPasswordTypeObject: {
101258
102097
  /** Numeric password required. */
101259
102098
  readonly Numeric: "numeric";
101260
102099
  };
102100
+ export declare const ResponseEmotionTypeObject: {
102101
+ readonly None: "none";
102102
+ readonly Confident: "confident";
102103
+ readonly Excited: "excited";
102104
+ readonly Happy: "happy";
102105
+ readonly Motivated: "motivated";
102106
+ readonly Peaceful: "peaceful";
102107
+ readonly Ambitious: "ambitious";
102108
+ readonly Cheerful: "cheerful";
102109
+ readonly Comfortable: "comfortable";
102110
+ readonly Creative: "creative";
102111
+ readonly Determined: "determined";
102112
+ readonly Energized: "energized";
102113
+ readonly Focused: "focused";
102114
+ readonly Fulfilled: "fulfilled";
102115
+ readonly Grateful: "grateful";
102116
+ readonly Included: "included";
102117
+ readonly Inspired: "inspired";
102118
+ readonly Optimistic: "optimistic";
102119
+ readonly Proud: "proud";
102120
+ readonly Successful: "successful";
102121
+ readonly Valuable: "valuable";
102122
+ readonly Annoyed: "annoyed";
102123
+ readonly Bored: "bored";
102124
+ readonly Calm: "calm";
102125
+ readonly Confused: "confused";
102126
+ readonly Glad: "glad";
102127
+ readonly Content: "content";
102128
+ readonly Pensive: "pensive";
102129
+ readonly Reserved: "reserved";
102130
+ readonly Restless: "restless";
102131
+ readonly Shocked: "shocked";
102132
+ readonly Tired: "tired";
102133
+ readonly Angry: "angry";
102134
+ readonly Depressed: "depressed";
102135
+ readonly Exhausted: "exhausted";
102136
+ readonly Lonely: "lonely";
102137
+ readonly Nervous: "nervous";
102138
+ readonly Anxious: "anxious";
102139
+ readonly Apathetic: "apathetic";
102140
+ readonly Concerned: "concerned";
102141
+ readonly Disappointed: "disappointed";
102142
+ readonly Frightened: "frightened";
102143
+ readonly Frustrated: "frustrated";
102144
+ readonly Hopeless: "hopeless";
102145
+ readonly Hurt: "hurt";
102146
+ readonly Jealous: "jealous";
102147
+ readonly Miserable: "miserable";
102148
+ readonly Overwhelmed: "overwhelmed";
102149
+ readonly Skeptical: "skeptical";
102150
+ readonly Stressed: "stressed";
102151
+ readonly Stuck: "stuck";
102152
+ readonly Worthless: "worthless";
102153
+ readonly Awed: "awed";
102154
+ readonly Ashamed: "ashamed";
102155
+ readonly Curious: "curious";
102156
+ readonly Sensitive: "sensitive";
102157
+ readonly Sad: "sad";
102158
+ readonly UnknownFutureValue: "unknownFutureValue";
102159
+ };
102160
+ export declare const ResponseFeedbackTypeObject: {
102161
+ readonly None: "none";
102162
+ readonly NotDetected: "notDetected";
102163
+ readonly VeryUnpleasant: "veryUnpleasant";
102164
+ readonly Unpleasant: "unpleasant";
102165
+ readonly Neutral: "neutral";
102166
+ readonly Pleasant: "pleasant";
102167
+ readonly VeryPleasant: "veryPleasant";
102168
+ readonly UnknownFutureValue: "unknownFutureValue";
102169
+ };
101261
102170
  export declare const ResponseTypeObject: {
101262
102171
  readonly None: "none";
101263
102172
  readonly Organizer: "organizer";
@@ -102183,6 +103092,11 @@ export declare const UserAccountSecurityTypeObject: {
102183
103092
  readonly Administrator: "administrator";
102184
103093
  readonly UnknownFutureValue: "unknownFutureValue";
102185
103094
  };
103095
+ export declare const UserActionObject: {
103096
+ readonly RegisterSecurityInformation: "registerSecurityInformation";
103097
+ readonly RegisterOrJoinDevices: "registerOrJoinDevices";
103098
+ readonly UnknownFutureValue: "unknownFutureValue";
103099
+ };
102186
103100
  export declare const UserActivityTypeObject: {
102187
103101
  readonly UploadText: "uploadText";
102188
103102
  readonly UploadFile: "uploadFile";
@@ -102454,6 +103368,29 @@ export declare const WellknownListNameObject: {
102454
103368
  readonly FlaggedEmails: "flaggedEmails";
102455
103369
  readonly UnknownFutureValue: "unknownFutureValue";
102456
103370
  };
103371
+ export declare const WhatIfAnalysisReasonsObject: {
103372
+ readonly NotSet: "notSet";
103373
+ readonly NotEnoughInformation: "notEnoughInformation";
103374
+ readonly InvalidCondition: "invalidCondition";
103375
+ readonly Users: "users";
103376
+ readonly WorkloadIdentities: "workloadIdentities";
103377
+ readonly Application: "application";
103378
+ readonly UserActions: "userActions";
103379
+ readonly AuthenticationContext: "authenticationContext";
103380
+ readonly DevicePlatform: "devicePlatform";
103381
+ readonly Devices: "devices";
103382
+ readonly ClientApps: "clientApps";
103383
+ readonly Location: "location";
103384
+ readonly SignInRisk: "signInRisk";
103385
+ readonly EmptyPolicy: "emptyPolicy";
103386
+ readonly InvalidPolicy: "invalidPolicy";
103387
+ readonly PolicyNotEnabled: "policyNotEnabled";
103388
+ readonly UserRisk: "userRisk";
103389
+ readonly Time: "time";
103390
+ readonly InsiderRisk: "insiderRisk";
103391
+ readonly AuthenticationFlow: "authenticationFlow";
103392
+ readonly UnknownFutureValue: "unknownFutureValue";
103393
+ };
102457
103394
  /**
102458
103395
  * Contains value for delivery optimization priority.
102459
103396
  */