@microsoft/msgraph-sdk 1.0.0-preview.20 → 1.0.0-preview.21

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
@@ -2129,7 +2129,7 @@ export interface Album extends AdditionalDataHolder, BackedModel, Parsable {
2129
2129
  */
2130
2130
  backingStoreEnabled?: boolean;
2131
2131
  /**
2132
- * Unique identifier of the [driveItem][] that is the cover of the album.
2132
+ * Unique identifier of the driveItem that is the cover of the album.
2133
2133
  */
2134
2134
  coverImageItemId?: string;
2135
2135
  /**
@@ -2159,7 +2159,7 @@ export interface Alert extends Entity, Parsable {
2159
2159
  */
2160
2160
  azureTenantId?: string;
2161
2161
  /**
2162
- * Category of the alert (for example, credentialTheft, ransomware, etc.).
2162
+ * Category of the alert (for example, credentialTheft, ransomware).
2163
2163
  */
2164
2164
  category?: string;
2165
2165
  /**
@@ -2191,11 +2191,11 @@ export interface Alert extends Entity, Parsable {
2191
2191
  */
2192
2192
  detectionIds?: string[];
2193
2193
  /**
2194
- * Time at which the event(s) that served as the trigger(s) to generate the alert occurred. 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.
2194
+ * Time at which the event or events that served as the trigger to generate the alert occurred. 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.
2195
2195
  */
2196
2196
  eventDateTime?: Date;
2197
2197
  /**
2198
- * Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive. (supports update)
2198
+ * Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive. Supports update.
2199
2199
  */
2200
2200
  feedback?: AlertFeedback;
2201
2201
  /**
@@ -2259,7 +2259,7 @@ export interface Alert extends Entity, Parsable {
2259
2259
  */
2260
2260
  severity?: AlertSeverity;
2261
2261
  /**
2262
- * Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search, etc.
2262
+ * Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search.
2263
2263
  */
2264
2264
  sourceMaterials?: string[];
2265
2265
  /**
@@ -2267,7 +2267,7 @@ export interface Alert extends Entity, Parsable {
2267
2267
  */
2268
2268
  status?: AlertStatus;
2269
2269
  /**
2270
- * User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW', etc.) (supports update).
2270
+ * User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW') (supports update).
2271
2271
  */
2272
2272
  tags?: string[];
2273
2273
  /**
@@ -3542,7 +3542,7 @@ export interface Application extends DirectoryObject, Parsable {
3542
3542
  */
3543
3543
  homeRealmDiscoveryPolicies?: HomeRealmDiscoveryPolicy[];
3544
3544
  /**
3545
- * Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://<application-client-id>, or specify a more readable URI like https://contoso.com/api. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
3545
+ * Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://<appId>, or specify a more readable URI like https://contoso.com/api. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
3546
3546
  */
3547
3547
  identifierUris?: string[];
3548
3548
  /**
@@ -5339,6 +5339,82 @@ export interface AuthenticationCombinationConfigurationCollectionResponse extend
5339
5339
  */
5340
5340
  value?: AuthenticationCombinationConfiguration[];
5341
5341
  }
5342
+ export interface AuthenticationConditionApplication extends AdditionalDataHolder, BackedModel, Parsable {
5343
+ /**
5344
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
5345
+ */
5346
+ additionalData?: Record<string, unknown>;
5347
+ /**
5348
+ * The identifier for an application corresponding to a condition that triggers an authenticationEventListener.
5349
+ */
5350
+ appId?: string;
5351
+ /**
5352
+ * Stores model information.
5353
+ */
5354
+ backingStoreEnabled?: boolean;
5355
+ /**
5356
+ * The OdataType property
5357
+ */
5358
+ odataType?: string;
5359
+ }
5360
+ export interface AuthenticationConditions extends AdditionalDataHolder, BackedModel, Parsable {
5361
+ /**
5362
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
5363
+ */
5364
+ additionalData?: Record<string, unknown>;
5365
+ /**
5366
+ * Applications which trigger a custom authentication extension.
5367
+ */
5368
+ applications?: AuthenticationConditionsApplications;
5369
+ /**
5370
+ * Stores model information.
5371
+ */
5372
+ backingStoreEnabled?: boolean;
5373
+ /**
5374
+ * The OdataType property
5375
+ */
5376
+ odataType?: string;
5377
+ }
5378
+ export interface AuthenticationConditionsApplications extends AdditionalDataHolder, BackedModel, Parsable {
5379
+ /**
5380
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
5381
+ */
5382
+ additionalData?: Record<string, unknown>;
5383
+ /**
5384
+ * Stores model information.
5385
+ */
5386
+ backingStoreEnabled?: boolean;
5387
+ /**
5388
+ * The includeApplications property
5389
+ */
5390
+ includeApplications?: AuthenticationConditionApplication[];
5391
+ /**
5392
+ * The OdataType property
5393
+ */
5394
+ odataType?: string;
5395
+ }
5396
+ export interface AuthenticationConfigurationValidation extends AdditionalDataHolder, BackedModel, Parsable {
5397
+ /**
5398
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
5399
+ */
5400
+ additionalData?: Record<string, unknown>;
5401
+ /**
5402
+ * Stores model information.
5403
+ */
5404
+ backingStoreEnabled?: boolean;
5405
+ /**
5406
+ * Errors in the validation result of a customAuthenticationExtension.
5407
+ */
5408
+ errors?: GenericError[];
5409
+ /**
5410
+ * The OdataType property
5411
+ */
5412
+ odataType?: string;
5413
+ /**
5414
+ * Warnings in the validation result of a customAuthenticationExtension.
5415
+ */
5416
+ warnings?: GenericError[];
5417
+ }
5342
5418
  export interface AuthenticationContextClassReference extends Entity, Parsable {
5343
5419
  /**
5344
5420
  * A short explanation of the policies that are enforced by authenticationContextClassReference. This value should be used to provide secondary text to describe the authentication context class reference when building user-facing admin experiences. For example, a selection UX.
@@ -5359,6 +5435,22 @@ export interface AuthenticationContextClassReferenceCollectionResponse extends B
5359
5435
  */
5360
5436
  value?: AuthenticationContextClassReference[];
5361
5437
  }
5438
+ export interface AuthenticationEventListener extends Entity, Parsable {
5439
+ /**
5440
+ * The authenticationEventsFlowId property
5441
+ */
5442
+ authenticationEventsFlowId?: string;
5443
+ /**
5444
+ * The conditions on which this authenticationEventListener should trigger.
5445
+ */
5446
+ conditions?: AuthenticationConditions;
5447
+ }
5448
+ export interface AuthenticationEventListenerCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
5449
+ /**
5450
+ * The value property
5451
+ */
5452
+ value?: AuthenticationEventListener[];
5453
+ }
5362
5454
  export interface AuthenticationFlowsPolicy extends Entity, Parsable {
5363
5455
  /**
5364
5456
  * Inherited property. A description of the policy. Optional. Read-only.
@@ -5883,6 +5975,12 @@ export interface AzureADRegistrationPolicy extends AdditionalDataHolder, BackedM
5883
5975
  */
5884
5976
  odataType?: string;
5885
5977
  }
5978
+ export interface AzureAdTokenAuthentication extends CustomExtensionAuthenticationConfiguration, Parsable {
5979
+ /**
5980
+ * The appID of the Microsoft Entra application to use to authenticate an app with a custom extension.
5981
+ */
5982
+ resourceId?: string;
5983
+ }
5886
5984
  export interface AzureCommunicationServicesUserConversationMember extends ConversationMember, Parsable {
5887
5985
  /**
5888
5986
  * Azure Communication Services ID of the user.
@@ -6153,6 +6251,22 @@ export interface BookingAppointment extends Entity, Parsable {
6153
6251
  * The URL of the meeting to join anonymously.
6154
6252
  */
6155
6253
  anonymousJoinWebUrl?: string;
6254
+ /**
6255
+ * The customerEmailAddress property
6256
+ */
6257
+ customerEmailAddress?: string;
6258
+ /**
6259
+ * The customerName property
6260
+ */
6261
+ customerName?: string;
6262
+ /**
6263
+ * Notes from the customer associated with this appointment.
6264
+ */
6265
+ customerNotes?: string;
6266
+ /**
6267
+ * The customerPhone property
6268
+ */
6269
+ customerPhone?: string;
6156
6270
  /**
6157
6271
  * A collection of customer properties for an appointment. An appointment contains a list of customer information and each unit will indicate the properties of a customer who is part of that appointment. Optional.
6158
6272
  */
@@ -6694,6 +6808,10 @@ export interface BookingStaffMember extends BookingStaffMemberBase, Parsable {
6694
6808
  * True indicates that a staff member will be notified via email when a booking assigned to them is created or changed.
6695
6809
  */
6696
6810
  isEmailNotificationEnabled?: boolean;
6811
+ /**
6812
+ * The membershipStatus property
6813
+ */
6814
+ membershipStatus?: BookingStaffMembershipStatus;
6697
6815
  /**
6698
6816
  * The role property
6699
6817
  */
@@ -6722,6 +6840,7 @@ export interface BookingStaffMemberBaseCollectionResponse extends BaseCollection
6722
6840
  */
6723
6841
  value?: BookingStaffMemberBase[];
6724
6842
  }
6843
+ export type BookingStaffMembershipStatus = (typeof BookingStaffMembershipStatusObject)[keyof typeof BookingStaffMembershipStatusObject];
6725
6844
  export type BookingStaffRole = (typeof BookingStaffRoleObject)[keyof typeof BookingStaffRoleObject];
6726
6845
  export type BookingType = (typeof BookingTypeObject)[keyof typeof BookingTypeObject];
6727
6846
  /**
@@ -7185,7 +7304,7 @@ export interface Bundle extends AdditionalDataHolder, BackedModel, Parsable {
7185
7304
  */
7186
7305
  additionalData?: Record<string, unknown>;
7187
7306
  /**
7188
- * If the bundle is an [album][], then the album property is included
7307
+ * If the bundle is an album, then the album property is included
7189
7308
  */
7190
7309
  album?: Album;
7191
7310
  /**
@@ -9636,7 +9755,7 @@ export interface ColumnDefinition extends Entity, Parsable {
9636
9755
  */
9637
9756
  lookup?: LookupColumn;
9638
9757
  /**
9639
- * The API-facing name of the column as it appears in the [fields][] on a [listItem][]. For the user-facing name, see displayName.
9758
+ * The API-facing name of the column as it appears in the fields on a listItem. For the user-facing name, see displayName.
9640
9759
  */
9641
9760
  name?: string;
9642
9761
  /**
@@ -9819,6 +9938,62 @@ export interface CommunicationsUserIdentity extends Identity, Parsable {
9819
9938
  */
9820
9939
  tenantId?: string;
9821
9940
  }
9941
+ export interface CompanySubscription extends Entity, Parsable {
9942
+ /**
9943
+ * The commerceSubscriptionId property
9944
+ */
9945
+ commerceSubscriptionId?: string;
9946
+ /**
9947
+ * The createdDateTime property
9948
+ */
9949
+ createdDateTime?: Date;
9950
+ /**
9951
+ * The isTrial property
9952
+ */
9953
+ isTrial?: boolean;
9954
+ /**
9955
+ * The nextLifecycleDateTime property
9956
+ */
9957
+ nextLifecycleDateTime?: Date;
9958
+ /**
9959
+ * The ownerId property
9960
+ */
9961
+ ownerId?: string;
9962
+ /**
9963
+ * The ownerTenantId property
9964
+ */
9965
+ ownerTenantId?: string;
9966
+ /**
9967
+ * The ownerType property
9968
+ */
9969
+ ownerType?: string;
9970
+ /**
9971
+ * The serviceStatus property
9972
+ */
9973
+ serviceStatus?: ServicePlanInfo[];
9974
+ /**
9975
+ * The skuId property
9976
+ */
9977
+ skuId?: string;
9978
+ /**
9979
+ * The skuPartNumber property
9980
+ */
9981
+ skuPartNumber?: string;
9982
+ /**
9983
+ * The status property
9984
+ */
9985
+ status?: string;
9986
+ /**
9987
+ * The totalLicenses property
9988
+ */
9989
+ totalLicenses?: number;
9990
+ }
9991
+ export interface CompanySubscriptionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
9992
+ /**
9993
+ * The value property
9994
+ */
9995
+ value?: CompanySubscription[];
9996
+ }
9822
9997
  export interface Compliance extends AdditionalDataHolder, BackedModel, Parsable {
9823
9998
  /**
9824
9999
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -12546,6 +12721,30 @@ export declare function createAuthenticationCombinationConfigurationCollectionRe
12546
12721
  * @returns {AuthenticationCombinationConfiguration}
12547
12722
  */
12548
12723
  export declare function createAuthenticationCombinationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12724
+ /**
12725
+ * Creates a new instance of the appropriate class based on discriminator value
12726
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12727
+ * @returns {AuthenticationConditionApplication}
12728
+ */
12729
+ export declare function createAuthenticationConditionApplicationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12730
+ /**
12731
+ * Creates a new instance of the appropriate class based on discriminator value
12732
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12733
+ * @returns {AuthenticationConditionsApplications}
12734
+ */
12735
+ export declare function createAuthenticationConditionsApplicationsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12736
+ /**
12737
+ * Creates a new instance of the appropriate class based on discriminator value
12738
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12739
+ * @returns {AuthenticationConditions}
12740
+ */
12741
+ export declare function createAuthenticationConditionsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12742
+ /**
12743
+ * Creates a new instance of the appropriate class based on discriminator value
12744
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12745
+ * @returns {AuthenticationConfigurationValidation}
12746
+ */
12747
+ export declare function createAuthenticationConfigurationValidationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12549
12748
  /**
12550
12749
  * Creates a new instance of the appropriate class based on discriminator value
12551
12750
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -12558,6 +12757,18 @@ export declare function createAuthenticationContextClassReferenceCollectionRespo
12558
12757
  * @returns {AuthenticationContextClassReference}
12559
12758
  */
12560
12759
  export declare function createAuthenticationContextClassReferenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12760
+ /**
12761
+ * Creates a new instance of the appropriate class based on discriminator value
12762
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12763
+ * @returns {AuthenticationEventListenerCollectionResponse}
12764
+ */
12765
+ export declare function createAuthenticationEventListenerCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12766
+ /**
12767
+ * Creates a new instance of the appropriate class based on discriminator value
12768
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12769
+ * @returns {AuthenticationEventListener}
12770
+ */
12771
+ export declare function createAuthenticationEventListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12561
12772
  /**
12562
12773
  * Creates a new instance of the appropriate class based on discriminator value
12563
12774
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -12738,6 +12949,12 @@ export declare function createAzureAdPopTokenAuthenticationFromDiscriminatorValu
12738
12949
  * @returns {AzureADRegistrationPolicy}
12739
12950
  */
12740
12951
  export declare function createAzureADRegistrationPolicyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12952
+ /**
12953
+ * Creates a new instance of the appropriate class based on discriminator value
12954
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12955
+ * @returns {AzureAdTokenAuthentication}
12956
+ */
12957
+ export declare function createAzureAdTokenAuthenticationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12741
12958
  /**
12742
12959
  * Creates a new instance of the appropriate class based on discriminator value
12743
12960
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -13812,6 +14029,18 @@ export declare function createCommunicationsPhoneIdentityFromDiscriminatorValue(
13812
14029
  * @returns {CommunicationsUserIdentity}
13813
14030
  */
13814
14031
  export declare function createCommunicationsUserIdentityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14032
+ /**
14033
+ * Creates a new instance of the appropriate class based on discriminator value
14034
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14035
+ * @returns {CompanySubscriptionCollectionResponse}
14036
+ */
14037
+ export declare function createCompanySubscriptionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14038
+ /**
14039
+ * Creates a new instance of the appropriate class based on discriminator value
14040
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14041
+ * @returns {CompanySubscription}
14042
+ */
14043
+ export declare function createCompanySubscriptionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
13815
14044
  /**
13816
14045
  * Creates a new instance of the appropriate class based on discriminator value
13817
14046
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -14226,6 +14455,18 @@ export declare function createCrossTenantUserSyncInboundFromDiscriminatorValue(p
14226
14455
  * @returns {CurrencyColumn}
14227
14456
  */
14228
14457
  export declare function createCurrencyColumnFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14458
+ /**
14459
+ * Creates a new instance of the appropriate class based on discriminator value
14460
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14461
+ * @returns {CustomAuthenticationExtensionCollectionResponse}
14462
+ */
14463
+ export declare function createCustomAuthenticationExtensionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14464
+ /**
14465
+ * Creates a new instance of the appropriate class based on discriminator value
14466
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14467
+ * @returns {CustomAuthenticationExtension}
14468
+ */
14469
+ export declare function createCustomAuthenticationExtensionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14229
14470
  /**
14230
14471
  * Creates a new instance of the appropriate class based on discriminator value
14231
14472
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -14274,6 +14515,12 @@ export declare function createCustomExtensionDataFromDiscriminatorValue(parseNod
14274
14515
  * @returns {CustomExtensionEndpointConfiguration}
14275
14516
  */
14276
14517
  export declare function createCustomExtensionEndpointConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14518
+ /**
14519
+ * Creates a new instance of the appropriate class based on discriminator value
14520
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14521
+ * @returns {CustomExtensionOverwriteConfiguration}
14522
+ */
14523
+ export declare function createCustomExtensionOverwriteConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14277
14524
  /**
14278
14525
  * Creates a new instance of the appropriate class based on discriminator value
14279
14526
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -16290,6 +16537,12 @@ export declare function createHorizontalSectionFromDiscriminatorValue(parseNode:
16290
16537
  * @returns {HostSecurityState}
16291
16538
  */
16292
16539
  export declare function createHostSecurityStateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16540
+ /**
16541
+ * Creates a new instance of the appropriate class based on discriminator value
16542
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16543
+ * @returns {HttpRequestEndpoint}
16544
+ */
16545
+ export declare function createHttpRequestEndpointFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16293
16546
  /**
16294
16547
  * Creates a new instance of the appropriate class based on discriminator value
16295
16548
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -18102,6 +18355,54 @@ export declare function createMobileThreatDefenseConnectorFromDiscriminatorValue
18102
18355
  * @returns {ModifiedProperty}
18103
18356
  */
18104
18357
  export declare function createModifiedPropertyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18358
+ /**
18359
+ * Creates a new instance of the appropriate class based on discriminator value
18360
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18361
+ * @returns {MultiTenantOrganization}
18362
+ */
18363
+ export declare function createMultiTenantOrganizationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18364
+ /**
18365
+ * Creates a new instance of the appropriate class based on discriminator value
18366
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18367
+ * @returns {MultiTenantOrganizationIdentitySyncPolicyTemplate}
18368
+ */
18369
+ export declare function createMultiTenantOrganizationIdentitySyncPolicyTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18370
+ /**
18371
+ * Creates a new instance of the appropriate class based on discriminator value
18372
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18373
+ * @returns {MultiTenantOrganizationJoinRequestRecord}
18374
+ */
18375
+ export declare function createMultiTenantOrganizationJoinRequestRecordFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18376
+ /**
18377
+ * Creates a new instance of the appropriate class based on discriminator value
18378
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18379
+ * @returns {MultiTenantOrganizationJoinRequestTransitionDetails}
18380
+ */
18381
+ export declare function createMultiTenantOrganizationJoinRequestTransitionDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18382
+ /**
18383
+ * Creates a new instance of the appropriate class based on discriminator value
18384
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18385
+ * @returns {MultiTenantOrganizationMemberCollectionResponse}
18386
+ */
18387
+ export declare function createMultiTenantOrganizationMemberCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18388
+ /**
18389
+ * Creates a new instance of the appropriate class based on discriminator value
18390
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18391
+ * @returns {MultiTenantOrganizationMember}
18392
+ */
18393
+ export declare function createMultiTenantOrganizationMemberFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18394
+ /**
18395
+ * Creates a new instance of the appropriate class based on discriminator value
18396
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18397
+ * @returns {MultiTenantOrganizationMemberTransitionDetails}
18398
+ */
18399
+ export declare function createMultiTenantOrganizationMemberTransitionDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18400
+ /**
18401
+ * Creates a new instance of the appropriate class based on discriminator value
18402
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18403
+ * @returns {MultiTenantOrganizationPartnerConfigurationTemplate}
18404
+ */
18405
+ export declare function createMultiTenantOrganizationPartnerConfigurationTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18105
18406
  /**
18106
18407
  * Creates a new instance of the appropriate class based on discriminator value
18107
18408
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -18474,6 +18775,36 @@ export declare function createOnPremisesExtensionAttributesFromDiscriminatorValu
18474
18775
  * @returns {OnPremisesProvisioningError}
18475
18776
  */
18476
18777
  export declare function createOnPremisesProvisioningErrorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18778
+ /**
18779
+ * Creates a new instance of the appropriate class based on discriminator value
18780
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18781
+ * @returns {OnTokenIssuanceStartCustomExtension}
18782
+ */
18783
+ export declare function createOnTokenIssuanceStartCustomExtensionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18784
+ /**
18785
+ * Creates a new instance of the appropriate class based on discriminator value
18786
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18787
+ * @returns {OnTokenIssuanceStartCustomExtensionHandler}
18788
+ */
18789
+ export declare function createOnTokenIssuanceStartCustomExtensionHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18790
+ /**
18791
+ * Creates a new instance of the appropriate class based on discriminator value
18792
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18793
+ * @returns {OnTokenIssuanceStartHandler}
18794
+ */
18795
+ export declare function createOnTokenIssuanceStartHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18796
+ /**
18797
+ * Creates a new instance of the appropriate class based on discriminator value
18798
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18799
+ * @returns {OnTokenIssuanceStartListener}
18800
+ */
18801
+ export declare function createOnTokenIssuanceStartListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18802
+ /**
18803
+ * Creates a new instance of the appropriate class based on discriminator value
18804
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18805
+ * @returns {OnTokenIssuanceStartReturnClaim}
18806
+ */
18807
+ export declare function createOnTokenIssuanceStartReturnClaimFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18477
18808
  /**
18478
18809
  * Creates a new instance of the appropriate class based on discriminator value
18479
18810
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -19062,6 +19393,12 @@ export declare function createPolicyBaseFromDiscriminatorValue(parseNode: ParseN
19062
19393
  * @returns {PolicyRoot}
19063
19394
  */
19064
19395
  export declare function createPolicyRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19396
+ /**
19397
+ * Creates a new instance of the appropriate class based on discriminator value
19398
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19399
+ * @returns {PolicyTemplate}
19400
+ */
19401
+ export declare function createPolicyTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19065
19402
  /**
19066
19403
  * Creates a new instance of the appropriate class based on discriminator value
19067
19404
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -23985,6 +24322,10 @@ export interface CrossTenantAccessPolicy extends Parsable, PolicyBase {
23985
24322
  * Defines partner-specific configurations for external Microsoft Entra organizations.
23986
24323
  */
23987
24324
  partners?: CrossTenantAccessPolicyConfigurationPartner[];
24325
+ /**
24326
+ * Represents the base policy in the directory for multitenant organization settings.
24327
+ */
24328
+ templates?: PolicyTemplate;
23988
24329
  }
23989
24330
  export interface CrossTenantAccessPolicyB2BSetting extends AdditionalDataHolder, BackedModel, Parsable {
23990
24331
  /**
@@ -24079,6 +24420,10 @@ export interface CrossTenantAccessPolicyConfigurationPartner extends AdditionalD
24079
24420
  * Determines the partner-specific configuration for trusting other Conditional Access claims from external Microsoft Entra organizations.
24080
24421
  */
24081
24422
  inboundTrust?: CrossTenantAccessPolicyInboundTrust;
24423
+ /**
24424
+ * Identifies whether a tenant is a member of a multitenant organization.
24425
+ */
24426
+ isInMultiTenantOrganization?: boolean;
24082
24427
  /**
24083
24428
  * Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization.
24084
24429
  */
@@ -24232,6 +24577,14 @@ export interface CurrencyColumn extends AdditionalDataHolder, BackedModel, Parsa
24232
24577
  */
24233
24578
  odataType?: string;
24234
24579
  }
24580
+ export interface CustomAuthenticationExtension extends CustomCalloutExtension, Parsable {
24581
+ }
24582
+ export interface CustomAuthenticationExtensionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
24583
+ /**
24584
+ * The value property
24585
+ */
24586
+ value?: CustomAuthenticationExtension[];
24587
+ }
24235
24588
  export interface CustomCalloutExtension extends Entity, Parsable {
24236
24589
  /**
24237
24590
  * Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow.
@@ -24336,6 +24689,10 @@ export interface CustomExtensionClientConfiguration extends AdditionalDataHolder
24336
24689
  * Stores model information.
24337
24690
  */
24338
24691
  backingStoreEnabled?: boolean;
24692
+ /**
24693
+ * The max number of retries that Microsoft Entra ID makes to the external API. Values of 0 or 1 are supported. If null, the default for the service applies.
24694
+ */
24695
+ maximumRetries?: number;
24339
24696
  /**
24340
24697
  * The OdataType property
24341
24698
  */
@@ -24373,6 +24730,24 @@ export interface CustomExtensionEndpointConfiguration extends AdditionalDataHold
24373
24730
  */
24374
24731
  odataType?: string;
24375
24732
  }
24733
+ export interface CustomExtensionOverwriteConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
24734
+ /**
24735
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
24736
+ */
24737
+ additionalData?: Record<string, unknown>;
24738
+ /**
24739
+ * Stores model information.
24740
+ */
24741
+ backingStoreEnabled?: boolean;
24742
+ /**
24743
+ * Configuration regarding properties of the custom extension which can be overwritten per event listener. If no values are provided, the properties on the custom extension are used.
24744
+ */
24745
+ clientConfiguration?: CustomExtensionClientConfiguration;
24746
+ /**
24747
+ * The OdataType property
24748
+ */
24749
+ odataType?: string;
24750
+ }
24376
24751
  export interface CustomExtensionStageSetting extends Entity, Parsable {
24377
24752
  /**
24378
24753
  * Indicates the custom workflow extension that will be executed at this stage. Nullable. Supports $expand.
@@ -26225,6 +26600,26 @@ export declare function deserializeIntoAuthenticationCombinationConfiguration(au
26225
26600
  * @returns {Record<string, (node: ParseNode) => void>}
26226
26601
  */
26227
26602
  export declare function deserializeIntoAuthenticationCombinationConfigurationCollectionResponse(authenticationCombinationConfigurationCollectionResponse?: Partial<AuthenticationCombinationConfigurationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
26603
+ /**
26604
+ * The deserialization information for the current model
26605
+ * @returns {Record<string, (node: ParseNode) => void>}
26606
+ */
26607
+ export declare function deserializeIntoAuthenticationConditionApplication(authenticationConditionApplication?: Partial<AuthenticationConditionApplication> | undefined): Record<string, (node: ParseNode) => void>;
26608
+ /**
26609
+ * The deserialization information for the current model
26610
+ * @returns {Record<string, (node: ParseNode) => void>}
26611
+ */
26612
+ export declare function deserializeIntoAuthenticationConditions(authenticationConditions?: Partial<AuthenticationConditions> | undefined): Record<string, (node: ParseNode) => void>;
26613
+ /**
26614
+ * The deserialization information for the current model
26615
+ * @returns {Record<string, (node: ParseNode) => void>}
26616
+ */
26617
+ export declare function deserializeIntoAuthenticationConditionsApplications(authenticationConditionsApplications?: Partial<AuthenticationConditionsApplications> | undefined): Record<string, (node: ParseNode) => void>;
26618
+ /**
26619
+ * The deserialization information for the current model
26620
+ * @returns {Record<string, (node: ParseNode) => void>}
26621
+ */
26622
+ export declare function deserializeIntoAuthenticationConfigurationValidation(authenticationConfigurationValidation?: Partial<AuthenticationConfigurationValidation> | undefined): Record<string, (node: ParseNode) => void>;
26228
26623
  /**
26229
26624
  * The deserialization information for the current model
26230
26625
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -26235,6 +26630,16 @@ export declare function deserializeIntoAuthenticationContextClassReference(authe
26235
26630
  * @returns {Record<string, (node: ParseNode) => void>}
26236
26631
  */
26237
26632
  export declare function deserializeIntoAuthenticationContextClassReferenceCollectionResponse(authenticationContextClassReferenceCollectionResponse?: Partial<AuthenticationContextClassReferenceCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
26633
+ /**
26634
+ * The deserialization information for the current model
26635
+ * @returns {Record<string, (node: ParseNode) => void>}
26636
+ */
26637
+ export declare function deserializeIntoAuthenticationEventListener(authenticationEventListener?: Partial<AuthenticationEventListener> | undefined): Record<string, (node: ParseNode) => void>;
26638
+ /**
26639
+ * The deserialization information for the current model
26640
+ * @returns {Record<string, (node: ParseNode) => void>}
26641
+ */
26642
+ export declare function deserializeIntoAuthenticationEventListenerCollectionResponse(authenticationEventListenerCollectionResponse?: Partial<AuthenticationEventListenerCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
26238
26643
  /**
26239
26644
  * The deserialization information for the current model
26240
26645
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -26380,6 +26785,11 @@ export declare function deserializeIntoAzureAdPopTokenAuthentication(azureAdPopT
26380
26785
  * @returns {Record<string, (node: ParseNode) => void>}
26381
26786
  */
26382
26787
  export declare function deserializeIntoAzureADRegistrationPolicy(azureADRegistrationPolicy?: Partial<AzureADRegistrationPolicy> | undefined): Record<string, (node: ParseNode) => void>;
26788
+ /**
26789
+ * The deserialization information for the current model
26790
+ * @returns {Record<string, (node: ParseNode) => void>}
26791
+ */
26792
+ export declare function deserializeIntoAzureAdTokenAuthentication(azureAdTokenAuthentication?: Partial<AzureAdTokenAuthentication> | undefined): Record<string, (node: ParseNode) => void>;
26383
26793
  /**
26384
26794
  * The deserialization information for the current model
26385
26795
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -27275,6 +27685,16 @@ export declare function deserializeIntoCommunicationsPhoneIdentity(communication
27275
27685
  * @returns {Record<string, (node: ParseNode) => void>}
27276
27686
  */
27277
27687
  export declare function deserializeIntoCommunicationsUserIdentity(communicationsUserIdentity?: Partial<CommunicationsUserIdentity> | undefined): Record<string, (node: ParseNode) => void>;
27688
+ /**
27689
+ * The deserialization information for the current model
27690
+ * @returns {Record<string, (node: ParseNode) => void>}
27691
+ */
27692
+ export declare function deserializeIntoCompanySubscription(companySubscription?: Partial<CompanySubscription> | undefined): Record<string, (node: ParseNode) => void>;
27693
+ /**
27694
+ * The deserialization information for the current model
27695
+ * @returns {Record<string, (node: ParseNode) => void>}
27696
+ */
27697
+ export declare function deserializeIntoCompanySubscriptionCollectionResponse(companySubscriptionCollectionResponse?: Partial<CompanySubscriptionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
27278
27698
  /**
27279
27699
  * The deserialization information for the current model
27280
27700
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -27620,6 +28040,16 @@ export declare function deserializeIntoCrossTenantUserSyncInbound(crossTenantUse
27620
28040
  * @returns {Record<string, (node: ParseNode) => void>}
27621
28041
  */
27622
28042
  export declare function deserializeIntoCurrencyColumn(currencyColumn?: Partial<CurrencyColumn> | undefined): Record<string, (node: ParseNode) => void>;
28043
+ /**
28044
+ * The deserialization information for the current model
28045
+ * @returns {Record<string, (node: ParseNode) => void>}
28046
+ */
28047
+ export declare function deserializeIntoCustomAuthenticationExtension(customAuthenticationExtension?: Partial<CustomAuthenticationExtension> | undefined): Record<string, (node: ParseNode) => void>;
28048
+ /**
28049
+ * The deserialization information for the current model
28050
+ * @returns {Record<string, (node: ParseNode) => void>}
28051
+ */
28052
+ export declare function deserializeIntoCustomAuthenticationExtensionCollectionResponse(customAuthenticationExtensionCollectionResponse?: Partial<CustomAuthenticationExtensionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
27623
28053
  /**
27624
28054
  * The deserialization information for the current model
27625
28055
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -27660,6 +28090,11 @@ export declare function deserializeIntoCustomExtensionData(customExtensionData?:
27660
28090
  * @returns {Record<string, (node: ParseNode) => void>}
27661
28091
  */
27662
28092
  export declare function deserializeIntoCustomExtensionEndpointConfiguration(customExtensionEndpointConfiguration?: Partial<CustomExtensionEndpointConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
28093
+ /**
28094
+ * The deserialization information for the current model
28095
+ * @returns {Record<string, (node: ParseNode) => void>}
28096
+ */
28097
+ export declare function deserializeIntoCustomExtensionOverwriteConfiguration(customExtensionOverwriteConfiguration?: Partial<CustomExtensionOverwriteConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
27663
28098
  /**
27664
28099
  * The deserialization information for the current model
27665
28100
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -29340,6 +29775,11 @@ export declare function deserializeIntoHorizontalSectionColumnCollectionResponse
29340
29775
  * @returns {Record<string, (node: ParseNode) => void>}
29341
29776
  */
29342
29777
  export declare function deserializeIntoHostSecurityState(hostSecurityState?: Partial<HostSecurityState> | undefined): Record<string, (node: ParseNode) => void>;
29778
+ /**
29779
+ * The deserialization information for the current model
29780
+ * @returns {Record<string, (node: ParseNode) => void>}
29781
+ */
29782
+ export declare function deserializeIntoHttpRequestEndpoint(httpRequestEndpoint?: Partial<HttpRequestEndpoint> | undefined): Record<string, (node: ParseNode) => void>;
29343
29783
  /**
29344
29784
  * The deserialization information for the current model
29345
29785
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -30850,6 +31290,46 @@ export declare function deserializeIntoMobileThreatDefenseConnectorCollectionRes
30850
31290
  * @returns {Record<string, (node: ParseNode) => void>}
30851
31291
  */
30852
31292
  export declare function deserializeIntoModifiedProperty(modifiedProperty?: Partial<ModifiedProperty> | undefined): Record<string, (node: ParseNode) => void>;
31293
+ /**
31294
+ * The deserialization information for the current model
31295
+ * @returns {Record<string, (node: ParseNode) => void>}
31296
+ */
31297
+ export declare function deserializeIntoMultiTenantOrganization(multiTenantOrganization?: Partial<MultiTenantOrganization> | undefined): Record<string, (node: ParseNode) => void>;
31298
+ /**
31299
+ * The deserialization information for the current model
31300
+ * @returns {Record<string, (node: ParseNode) => void>}
31301
+ */
31302
+ export declare function deserializeIntoMultiTenantOrganizationIdentitySyncPolicyTemplate(multiTenantOrganizationIdentitySyncPolicyTemplate?: Partial<MultiTenantOrganizationIdentitySyncPolicyTemplate> | undefined): Record<string, (node: ParseNode) => void>;
31303
+ /**
31304
+ * The deserialization information for the current model
31305
+ * @returns {Record<string, (node: ParseNode) => void>}
31306
+ */
31307
+ export declare function deserializeIntoMultiTenantOrganizationJoinRequestRecord(multiTenantOrganizationJoinRequestRecord?: Partial<MultiTenantOrganizationJoinRequestRecord> | undefined): Record<string, (node: ParseNode) => void>;
31308
+ /**
31309
+ * The deserialization information for the current model
31310
+ * @returns {Record<string, (node: ParseNode) => void>}
31311
+ */
31312
+ export declare function deserializeIntoMultiTenantOrganizationJoinRequestTransitionDetails(multiTenantOrganizationJoinRequestTransitionDetails?: Partial<MultiTenantOrganizationJoinRequestTransitionDetails> | undefined): Record<string, (node: ParseNode) => void>;
31313
+ /**
31314
+ * The deserialization information for the current model
31315
+ * @returns {Record<string, (node: ParseNode) => void>}
31316
+ */
31317
+ export declare function deserializeIntoMultiTenantOrganizationMember(multiTenantOrganizationMember?: Partial<MultiTenantOrganizationMember> | undefined): Record<string, (node: ParseNode) => void>;
31318
+ /**
31319
+ * The deserialization information for the current model
31320
+ * @returns {Record<string, (node: ParseNode) => void>}
31321
+ */
31322
+ export declare function deserializeIntoMultiTenantOrganizationMemberCollectionResponse(multiTenantOrganizationMemberCollectionResponse?: Partial<MultiTenantOrganizationMemberCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
31323
+ /**
31324
+ * The deserialization information for the current model
31325
+ * @returns {Record<string, (node: ParseNode) => void>}
31326
+ */
31327
+ export declare function deserializeIntoMultiTenantOrganizationMemberTransitionDetails(multiTenantOrganizationMemberTransitionDetails?: Partial<MultiTenantOrganizationMemberTransitionDetails> | undefined): Record<string, (node: ParseNode) => void>;
31328
+ /**
31329
+ * The deserialization information for the current model
31330
+ * @returns {Record<string, (node: ParseNode) => void>}
31331
+ */
31332
+ export declare function deserializeIntoMultiTenantOrganizationPartnerConfigurationTemplate(multiTenantOrganizationPartnerConfigurationTemplate?: Partial<MultiTenantOrganizationPartnerConfigurationTemplate> | undefined): Record<string, (node: ParseNode) => void>;
30853
31333
  /**
30854
31334
  * The deserialization information for the current model
30855
31335
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -31160,6 +31640,31 @@ export declare function deserializeIntoOnPremisesExtensionAttributes(onPremisesE
31160
31640
  * @returns {Record<string, (node: ParseNode) => void>}
31161
31641
  */
31162
31642
  export declare function deserializeIntoOnPremisesProvisioningError(onPremisesProvisioningError?: Partial<OnPremisesProvisioningError> | undefined): Record<string, (node: ParseNode) => void>;
31643
+ /**
31644
+ * The deserialization information for the current model
31645
+ * @returns {Record<string, (node: ParseNode) => void>}
31646
+ */
31647
+ export declare function deserializeIntoOnTokenIssuanceStartCustomExtension(onTokenIssuanceStartCustomExtension?: Partial<OnTokenIssuanceStartCustomExtension> | undefined): Record<string, (node: ParseNode) => void>;
31648
+ /**
31649
+ * The deserialization information for the current model
31650
+ * @returns {Record<string, (node: ParseNode) => void>}
31651
+ */
31652
+ export declare function deserializeIntoOnTokenIssuanceStartCustomExtensionHandler(onTokenIssuanceStartCustomExtensionHandler?: Partial<OnTokenIssuanceStartCustomExtensionHandler> | undefined): Record<string, (node: ParseNode) => void>;
31653
+ /**
31654
+ * The deserialization information for the current model
31655
+ * @returns {Record<string, (node: ParseNode) => void>}
31656
+ */
31657
+ export declare function deserializeIntoOnTokenIssuanceStartHandler(onTokenIssuanceStartHandler?: Partial<OnTokenIssuanceStartHandler> | undefined): Record<string, (node: ParseNode) => void>;
31658
+ /**
31659
+ * The deserialization information for the current model
31660
+ * @returns {Record<string, (node: ParseNode) => void>}
31661
+ */
31662
+ export declare function deserializeIntoOnTokenIssuanceStartListener(onTokenIssuanceStartListener?: Partial<OnTokenIssuanceStartListener> | undefined): Record<string, (node: ParseNode) => void>;
31663
+ /**
31664
+ * The deserialization information for the current model
31665
+ * @returns {Record<string, (node: ParseNode) => void>}
31666
+ */
31667
+ export declare function deserializeIntoOnTokenIssuanceStartReturnClaim(onTokenIssuanceStartReturnClaim?: Partial<OnTokenIssuanceStartReturnClaim> | undefined): Record<string, (node: ParseNode) => void>;
31163
31668
  /**
31164
31669
  * The deserialization information for the current model
31165
31670
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -31650,6 +32155,11 @@ export declare function deserializeIntoPolicyBase(policyBase?: Partial<PolicyBas
31650
32155
  * @returns {Record<string, (node: ParseNode) => void>}
31651
32156
  */
31652
32157
  export declare function deserializeIntoPolicyRoot(policyRoot?: Partial<PolicyRoot> | undefined): Record<string, (node: ParseNode) => void>;
32158
+ /**
32159
+ * The deserialization information for the current model
32160
+ * @returns {Record<string, (node: ParseNode) => void>}
32161
+ */
32162
+ export declare function deserializeIntoPolicyTemplate(policyTemplate?: Partial<PolicyTemplate> | undefined): Record<string, (node: ParseNode) => void>;
31653
32163
  /**
31654
32164
  * The deserialization information for the current model
31655
32165
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -38209,6 +38719,10 @@ export interface Directory extends Entity, Parsable {
38209
38719
  * A container for on-premises directory synchronization functionalities that are available for the organization.
38210
38720
  */
38211
38721
  onPremisesSynchronization?: OnPremisesDirectorySynchronization[];
38722
+ /**
38723
+ * The subscriptions property
38724
+ */
38725
+ subscriptions?: CompanySubscription[];
38212
38726
  }
38213
38727
  export interface DirectoryAudit extends Entity, Parsable {
38214
38728
  /**
@@ -38518,7 +39032,7 @@ export interface DocumentSetVersionItem extends AdditionalDataHolder, BackedMode
38518
39032
  }
38519
39033
  export interface Domain extends Entity, Parsable {
38520
39034
  /**
38521
- * Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Microsoft Entra ID performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. Not nullable.
39035
+ * Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Microsoft Entra ID performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. Not nullable. To update this property in delegated scenarios, the calling app must be assigned the Directory.AccessAsUser.All delegated permission.
38522
39036
  */
38523
39037
  authenticationType?: string;
38524
39038
  /**
@@ -38526,7 +39040,7 @@ export interface Domain extends Entity, Parsable {
38526
39040
  */
38527
39041
  availabilityStatus?: string;
38528
39042
  /**
38529
- * The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group.
39043
+ * The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example, /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group.
38530
39044
  */
38531
39045
  domainNameReferences?: DirectoryObject[];
38532
39046
  /**
@@ -38534,15 +39048,15 @@ export interface Domain extends Entity, Parsable {
38534
39048
  */
38535
39049
  federationConfiguration?: InternalDomainFederation[];
38536
39050
  /**
38537
- * The value of the property is false if the DNS record management of the domain has been delegated to Microsoft 365. Otherwise, the value is true. Not nullable
39051
+ * The value of the property is false if the DNS record management of the domain is delegated to Microsoft 365. Otherwise, the value is true. Not nullable
38538
39052
  */
38539
39053
  isAdminManaged?: boolean;
38540
39054
  /**
38541
- * true if this is the default domain that is used for user creation. There is only one default domain per company. Not nullable
39055
+ * true if this is the default domain that is used for user creation. There's only one default domain per company. Not nullable
38542
39056
  */
38543
39057
  isDefault?: boolean;
38544
39058
  /**
38545
- * true if this is the initial domain created by Microsoft Online Services (contoso.com). There is only one initial domain per company. Not nullable
39059
+ * true if this is the initial domain created by Microsoft Online Services (contoso.com). There's only one initial domain per company. Not nullable
38546
39060
  */
38547
39061
  isInitial?: boolean;
38548
39062
  /**
@@ -38562,11 +39076,11 @@ export interface Domain extends Entity, Parsable {
38562
39076
  */
38563
39077
  model?: string;
38564
39078
  /**
38565
- * Specifies the number of days before a user receives notification that their password will expire. If the property is not set, a default value of 14 days will be used.
39079
+ * Specifies the number of days before a user receives notification that their password will expire. If the property isn't set, a default value of 14 days is used.
38566
39080
  */
38567
39081
  passwordNotificationWindowInDays?: number;
38568
39082
  /**
38569
- * Specifies the length of time that a password is valid before it must be changed. If the property is not set, a default value of 90 days will be used.
39083
+ * Specifies the length of time that a password is valid before it must be changed. If the property isn't set, a default value of 90 days is used.
38570
39084
  */
38571
39085
  passwordValidityPeriodInDays?: number;
38572
39086
  /**
@@ -38578,7 +39092,7 @@ export interface Domain extends Entity, Parsable {
38578
39092
  */
38579
39093
  state?: DomainState;
38580
39094
  /**
38581
- * The capabilities assigned to the domain. Can include 0, 1 or more of following values: Email, Sharepoint, EmailInternalRelayOnly, OfficeCommunicationsOnline, SharePointDefaultDomain, FullRedelegation, SharePointPublic, OrgIdAuthentication, Yammer, Intune. The values which you can add/remove using Graph API include: Email, OfficeCommunicationsOnline, Yammer. Not nullable.
39095
+ * The capabilities assigned to the domain. Can include 0, 1 or more of following values: Email, Sharepoint, EmailInternalRelayOnly, OfficeCommunicationsOnline, SharePointDefaultDomain, FullRedelegation, SharePointPublic, OrgIdAuthentication, Yammer, Intune. The values that you can add or remove using the API include: Email, OfficeCommunicationsOnline, Yammer. Not nullable.
38582
39096
  */
38583
39097
  supportedServices?: string[];
38584
39098
  /**
@@ -38610,7 +39124,7 @@ export interface DomainDnsMxRecord extends DomainDnsRecord, Parsable {
38610
39124
  }
38611
39125
  export interface DomainDnsRecord extends Entity, Parsable {
38612
39126
  /**
38613
- * If false, this record must be configured by the customer at the DNS host for Microsoft Online Services to operate correctly with the domain.
39127
+ * If false, the customer must configure this record at the DNS host for Microsoft Online Services to operate correctly with the domain.
38614
39128
  */
38615
39129
  isOptional?: boolean;
38616
39130
  /**
@@ -38702,17 +39216,17 @@ export interface DomainState extends AdditionalDataHolder, BackedModel, Parsable
38702
39216
  */
38703
39217
  odataType?: string;
38704
39218
  /**
38705
- * Type of asynchronous operation. The values can be ForceDelete or Verification
39219
+ * Type of asynchronous operation. The values can be ForceDelete or Verification.
38706
39220
  */
38707
39221
  operation?: string;
38708
39222
  /**
38709
- * Current status of the operation. Scheduled - Operation has been scheduled but has not started. InProgress - Task has started and is in progress. Failed - Operation has failed.
39223
+ * Current status of the operation. Scheduled - Operation is scheduled but hasn't started. InProgress - Task is in progress. Failed - The operation failed.
38710
39224
  */
38711
39225
  status?: string;
38712
39226
  }
38713
39227
  export interface Drive extends BaseItem, Parsable {
38714
39228
  /**
38715
- * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.
39229
+ * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive.
38716
39230
  */
38717
39231
  bundles?: DriveItem[];
38718
39232
  /**
@@ -38876,11 +39390,11 @@ export interface DriveItem extends BaseItem, Parsable {
38876
39390
  */
38877
39391
  subscriptions?: Subscription[];
38878
39392
  /**
38879
- * Collection of [thumbnailSet][] objects associated with the item. For more information, see [getting thumbnails][]. Read-only. Nullable.
39393
+ * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable.
38880
39394
  */
38881
39395
  thumbnails?: ThumbnailSet[];
38882
39396
  /**
38883
- * The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.
39397
+ * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable.
38884
39398
  */
38885
39399
  versions?: DriveItemVersion[];
38886
39400
  /**
@@ -41208,7 +41722,7 @@ export interface ExtensionSchemaProperty extends AdditionalDataHolder, BackedMod
41208
41722
  */
41209
41723
  odataType?: string;
41210
41724
  /**
41211
- * The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer or String. See the table in the Supported property data types section for more details.
41725
+ * The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer, or String. For more information, see Supported property data types.
41212
41726
  */
41213
41727
  type?: string;
41214
41728
  }
@@ -42405,6 +42919,12 @@ export interface HostSecurityState extends AdditionalDataHolder, BackedModel, Pa
42405
42919
  */
42406
42920
  riskScore?: string;
42407
42921
  }
42922
+ export interface HttpRequestEndpoint extends CustomExtensionEndpointConfiguration, Parsable {
42923
+ /**
42924
+ * The HTTP endpoint that a custom extension calls.
42925
+ */
42926
+ targetUrl?: string;
42927
+ }
42408
42928
  export interface HyperlinkOrPictureColumn extends AdditionalDataHolder, BackedModel, Parsable {
42409
42929
  /**
42410
42930
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -42472,6 +42992,10 @@ export interface IdentityContainer extends Entity, Parsable {
42472
42992
  * Represents entry point for API connectors.
42473
42993
  */
42474
42994
  apiConnectors?: IdentityApiConnector[];
42995
+ /**
42996
+ * Represents listeners for custom authentication extension events in Azure AD for workforce and customers.
42997
+ */
42998
+ authenticationEventListeners?: AuthenticationEventListener[];
42475
42999
  /**
42476
43000
  * Represents entry point for B2X/self-service sign-up identity userflows.
42477
43001
  */
@@ -42480,6 +43004,10 @@ export interface IdentityContainer extends Entity, Parsable {
42480
43004
  * the entry point for the Conditional Access (CA) object model.
42481
43005
  */
42482
43006
  conditionalAccess?: ConditionalAccessRoot;
43007
+ /**
43008
+ * Represents custom extensions to authentication flows in Azure AD for workforce and customers.
43009
+ */
43010
+ customAuthenticationExtensions?: CustomAuthenticationExtension[];
42483
43011
  /**
42484
43012
  * The identityProviders property
42485
43013
  */
@@ -44917,11 +45445,11 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
44917
45445
  */
44918
45446
  backingStoreEnabled?: boolean;
44919
45447
  /**
44920
- * Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a [drive][]. Read-only.
45448
+ * Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a drive. Read-only.
44921
45449
  */
44922
45450
  driveId?: string;
44923
45451
  /**
44924
- * Identifies the type of drive. Only returned if the item is located in a [drive][]. See [drive][] resource for values.
45452
+ * Identifies the type of drive. Only returned if the item is located in a drive. See drive resource for values.
44925
45453
  */
44926
45454
  driveType?: string;
44927
45455
  /**
@@ -44941,7 +45469,7 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
44941
45469
  */
44942
45470
  path?: string;
44943
45471
  /**
44944
- * A unique identifier for a shared resource that can be accessed via the [Shares][] API.
45472
+ * A unique identifier for a shared resource that can be accessed via the Shares API.
44945
45473
  */
44946
45474
  shareId?: string;
44947
45475
  /**
@@ -44949,7 +45477,7 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
44949
45477
  */
44950
45478
  sharepointIds?: SharepointIds;
44951
45479
  /**
44952
- * For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that [site][] resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated.
45480
+ * For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that site resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated.
44953
45481
  */
44954
45482
  siteId?: string;
44955
45483
  }
@@ -45290,7 +45818,7 @@ export interface LearningContent extends Entity, Parsable {
45290
45818
  */
45291
45819
  lastModifiedDateTime?: Date;
45292
45820
  /**
45293
- * The level property
45821
+ * The difficulty level of the learning content. Possible values are: Beginner, Intermediate, Advanced, unknownFutureValue. Optional.
45294
45822
  */
45295
45823
  level?: Level;
45296
45824
  /**
@@ -45625,7 +46153,7 @@ export interface ListItem extends BaseItem, Parsable {
45625
46153
  */
45626
46154
  documentSetVersions?: DocumentSetVersion[];
45627
46155
  /**
45628
- * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]
46156
+ * For document libraries, the driveItem relationship exposes the listItem as a driveItem
45629
46157
  */
45630
46158
  driveItem?: DriveItem;
45631
46159
  /**
@@ -49421,6 +49949,190 @@ export interface ModifiedProperty extends AdditionalDataHolder, BackedModel, Par
49421
49949
  oldValue?: string;
49422
49950
  }
49423
49951
  export type MultiFactorAuthConfiguration = (typeof MultiFactorAuthConfigurationObject)[keyof typeof MultiFactorAuthConfigurationObject];
49952
+ export interface MultiTenantOrganization extends Entity, Parsable {
49953
+ /**
49954
+ * Date when multitenant organization was created. Read-only.
49955
+ */
49956
+ createdDateTime?: Date;
49957
+ /**
49958
+ * Description of the multitenant organization.
49959
+ */
49960
+ description?: string;
49961
+ /**
49962
+ * Display name of the multitenant organization.
49963
+ */
49964
+ displayName?: string;
49965
+ /**
49966
+ * Defines the status of a tenant joining a multitenant organization.
49967
+ */
49968
+ joinRequest?: MultiTenantOrganizationJoinRequestRecord;
49969
+ /**
49970
+ * State of the multitenant organization. The possible values are: active, inactive, unknownFutureValue. active indicates the multitenant organization is created. inactive indicates the multitenant organization isn't created. Read-only.
49971
+ */
49972
+ state?: MultiTenantOrganizationState;
49973
+ /**
49974
+ * Defines tenants added to a multitenant organization.
49975
+ */
49976
+ tenants?: MultiTenantOrganizationMember[];
49977
+ }
49978
+ export interface MultiTenantOrganizationIdentitySyncPolicyTemplate extends Entity, Parsable {
49979
+ /**
49980
+ * The templateApplicationLevel property
49981
+ */
49982
+ templateApplicationLevel?: TemplateApplicationLevel[];
49983
+ /**
49984
+ * Defines whether users can be synchronized from the partner tenant.
49985
+ */
49986
+ userSyncInbound?: CrossTenantUserSyncInbound;
49987
+ }
49988
+ export interface MultiTenantOrganizationJoinRequestRecord extends Entity, Parsable {
49989
+ /**
49990
+ * Tenant ID of the Microsoft Entra tenant that added a tenant to the multitenant organization. To reset a failed join request, set addedByTenantId to 00000000-0000-0000-0000-000000000000. Required.
49991
+ */
49992
+ addedByTenantId?: string;
49993
+ /**
49994
+ * State of the tenant in the multitenant organization. The possible values are: pending, active, removed, unknownFutureValue. Tenants in the pending state must join the multitenant organization to participate in the multitenant organization. Tenants in the active state can participate in the multitenant organization. Tenants in the removed state are in the process of being removed from the multitenant organization. Read-only.
49995
+ */
49996
+ memberState?: MultiTenantOrganizationMemberState;
49997
+ /**
49998
+ * Role of the tenant in the multitenant organization. The possible values are: owner, member (default), unknownFutureValue. Tenants with the owner role can manage the multitenant organization. There can be multiple tenants with the owner role in a multitenant organization. Tenants with the member role can participate in a multitenant organization.
49999
+ */
50000
+ role?: MultiTenantOrganizationMemberRole;
50001
+ /**
50002
+ * Details of the processing status for a tenant joining a multitenant organization. Read-only.
50003
+ */
50004
+ transitionDetails?: MultiTenantOrganizationJoinRequestTransitionDetails;
50005
+ }
50006
+ export interface MultiTenantOrganizationJoinRequestTransitionDetails extends AdditionalDataHolder, BackedModel, Parsable {
50007
+ /**
50008
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
50009
+ */
50010
+ additionalData?: Record<string, unknown>;
50011
+ /**
50012
+ * Stores model information.
50013
+ */
50014
+ backingStoreEnabled?: boolean;
50015
+ /**
50016
+ * State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only.
50017
+ */
50018
+ desiredMemberState?: MultiTenantOrganizationMemberState;
50019
+ /**
50020
+ * Details that explain the processing status if any. Read-only.
50021
+ */
50022
+ details?: string;
50023
+ /**
50024
+ * The OdataType property
50025
+ */
50026
+ odataType?: string;
50027
+ /**
50028
+ * Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only.
50029
+ */
50030
+ status?: MultiTenantOrganizationMemberProcessingStatus;
50031
+ }
50032
+ export interface MultiTenantOrganizationMember extends DirectoryObject, Parsable {
50033
+ /**
50034
+ * Tenant ID of the tenant that added the tenant to the multitenant organization. Read-only.
50035
+ */
50036
+ addedByTenantId?: Guid;
50037
+ /**
50038
+ * Date and time when the tenant was added to the multitenant organization. Read-only.
50039
+ */
50040
+ addedDateTime?: Date;
50041
+ /**
50042
+ * Display name of the tenant added to the multitenant organization.
50043
+ */
50044
+ displayName?: string;
50045
+ /**
50046
+ * Date and time when the tenant joined the multitenant organization. Read-only.
50047
+ */
50048
+ joinedDateTime?: Date;
50049
+ /**
50050
+ * Role of the tenant in the multitenant organization. The possible values are: owner, member (default), unknownFutureValue. Tenants with the owner role can manage the multitenant organization but tenants with the member role can only participate in a multitenant organization. There can be multiple tenants with the owner role in a multitenant organization.
50051
+ */
50052
+ role?: MultiTenantOrganizationMemberRole;
50053
+ /**
50054
+ * State of the tenant in the multitenant organization. The possible values are: pending, active, removed, unknownFutureValue. Tenants in the pending state must join the multitenant organization to participate in the multitenant organization. Tenants in the active state can participate in the multitenant organization. Tenants in the removed state are in the process of being removed from the multitenant organization. Read-only.
50055
+ */
50056
+ state?: MultiTenantOrganizationMemberState;
50057
+ /**
50058
+ * Tenant ID of the Microsoft Entra tenant added to the multitenant organization. Set at the time tenant is added.Supports $filter. Key.
50059
+ */
50060
+ tenantId?: string;
50061
+ /**
50062
+ * Details of the processing status for a tenant in a multitenant organization. Read-only. Nullable.
50063
+ */
50064
+ transitionDetails?: MultiTenantOrganizationMemberTransitionDetails;
50065
+ }
50066
+ export interface MultiTenantOrganizationMemberCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
50067
+ /**
50068
+ * The value property
50069
+ */
50070
+ value?: MultiTenantOrganizationMember[];
50071
+ }
50072
+ export type MultiTenantOrganizationMemberProcessingStatus = (typeof MultiTenantOrganizationMemberProcessingStatusObject)[keyof typeof MultiTenantOrganizationMemberProcessingStatusObject];
50073
+ export type MultiTenantOrganizationMemberRole = (typeof MultiTenantOrganizationMemberRoleObject)[keyof typeof MultiTenantOrganizationMemberRoleObject];
50074
+ export type MultiTenantOrganizationMemberState = (typeof MultiTenantOrganizationMemberStateObject)[keyof typeof MultiTenantOrganizationMemberStateObject];
50075
+ export interface MultiTenantOrganizationMemberTransitionDetails extends AdditionalDataHolder, BackedModel, Parsable {
50076
+ /**
50077
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
50078
+ */
50079
+ additionalData?: Record<string, unknown>;
50080
+ /**
50081
+ * Stores model information.
50082
+ */
50083
+ backingStoreEnabled?: boolean;
50084
+ /**
50085
+ * Role of the tenant in the multitenant organization. The possible values are: owner, member, unknownFutureValue.
50086
+ */
50087
+ desiredRole?: MultiTenantOrganizationMemberRole;
50088
+ /**
50089
+ * State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only.
50090
+ */
50091
+ desiredState?: MultiTenantOrganizationMemberState;
50092
+ /**
50093
+ * Details that explain the processing status if any. Read-only.
50094
+ */
50095
+ details?: string;
50096
+ /**
50097
+ * The OdataType property
50098
+ */
50099
+ odataType?: string;
50100
+ /**
50101
+ * Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only.
50102
+ */
50103
+ status?: MultiTenantOrganizationMemberProcessingStatus;
50104
+ }
50105
+ export interface MultiTenantOrganizationPartnerConfigurationTemplate extends Entity, Parsable {
50106
+ /**
50107
+ * Determines the partner-specific configuration for automatic user consent settings. Unless configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false.
50108
+ */
50109
+ automaticUserConsentSettings?: InboundOutboundPolicyConfiguration;
50110
+ /**
50111
+ * Defines your partner-specific configuration for users from other organizations accessing your resources via Microsoft Entra B2B collaboration.
50112
+ */
50113
+ b2bCollaborationInbound?: CrossTenantAccessPolicyB2BSetting;
50114
+ /**
50115
+ * Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B collaboration.
50116
+ */
50117
+ b2bCollaborationOutbound?: CrossTenantAccessPolicyB2BSetting;
50118
+ /**
50119
+ * Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
50120
+ */
50121
+ b2bDirectConnectInbound?: CrossTenantAccessPolicyB2BSetting;
50122
+ /**
50123
+ * Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B direct connect.
50124
+ */
50125
+ b2bDirectConnectOutbound?: CrossTenantAccessPolicyB2BSetting;
50126
+ /**
50127
+ * Determines the partner-specific configuration for trusting other Conditional Access claims from external Microsoft Entra organizations.
50128
+ */
50129
+ inboundTrust?: CrossTenantAccessPolicyInboundTrust;
50130
+ /**
50131
+ * The templateApplicationLevel property
50132
+ */
50133
+ templateApplicationLevel?: TemplateApplicationLevel[];
50134
+ }
50135
+ export type MultiTenantOrganizationState = (typeof MultiTenantOrganizationStateObject)[keyof typeof MultiTenantOrganizationStateObject];
49424
50136
  export interface MultiValueLegacyExtendedProperty extends Entity, Parsable {
49425
50137
  /**
49426
50138
  * A collection of property values.
@@ -50765,6 +51477,60 @@ export interface OnPremisesProvisioningError extends AdditionalDataHolder, Backe
50765
51477
  */
50766
51478
  value?: string;
50767
51479
  }
51480
+ export interface OnTokenIssuanceStartCustomExtension extends CustomAuthenticationExtension, Parsable {
51481
+ /**
51482
+ * Collection of claims to be returned by the API called by this custom authentication extension. Used to populate claims mapping experience in Microsoft Entra admin center. Optional.
51483
+ */
51484
+ claimsForTokenConfiguration?: OnTokenIssuanceStartReturnClaim[];
51485
+ }
51486
+ export interface OnTokenIssuanceStartCustomExtensionHandler extends OnTokenIssuanceStartHandler, Parsable {
51487
+ /**
51488
+ * The configuration property
51489
+ */
51490
+ configuration?: CustomExtensionOverwriteConfiguration;
51491
+ /**
51492
+ * The customExtension property
51493
+ */
51494
+ customExtension?: OnTokenIssuanceStartCustomExtension;
51495
+ }
51496
+ export interface OnTokenIssuanceStartHandler extends AdditionalDataHolder, BackedModel, Parsable {
51497
+ /**
51498
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
51499
+ */
51500
+ additionalData?: Record<string, unknown>;
51501
+ /**
51502
+ * Stores model information.
51503
+ */
51504
+ backingStoreEnabled?: boolean;
51505
+ /**
51506
+ * The OdataType property
51507
+ */
51508
+ odataType?: string;
51509
+ }
51510
+ export interface OnTokenIssuanceStartListener extends AuthenticationEventListener, Parsable {
51511
+ /**
51512
+ * The handler to invoke when conditions are met for this onTokenIssuanceStartListener.
51513
+ */
51514
+ handler?: OnTokenIssuanceStartHandler;
51515
+ }
51516
+ export interface OnTokenIssuanceStartReturnClaim extends AdditionalDataHolder, BackedModel, Parsable {
51517
+ /**
51518
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
51519
+ */
51520
+ additionalData?: Record<string, unknown>;
51521
+ /**
51522
+ * Stores model information.
51523
+ */
51524
+ backingStoreEnabled?: boolean;
51525
+ /**
51526
+ * The identifier of the claim returned by an API that is to be add to a token being issued.
51527
+ */
51528
+ claimIdInApiResponse?: string;
51529
+ /**
51530
+ * The OdataType property
51531
+ */
51532
+ odataType?: string;
51533
+ }
50768
51534
  export interface OpenShift extends ChangeTrackedEntity, Parsable {
50769
51535
  /**
50770
51536
  * An unpublished open shift.
@@ -52012,11 +52778,11 @@ export interface PermissionGrantConditionSetCollectionResponse extends BaseColle
52012
52778
  }
52013
52779
  export interface PermissionGrantPolicy extends Parsable, PolicyBase {
52014
52780
  /**
52015
- * Condition sets which are excluded in this permission grant policy. Automatically expanded on GET.
52781
+ * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET.
52016
52782
  */
52017
52783
  excludes?: PermissionGrantConditionSet[];
52018
52784
  /**
52019
- * Condition sets which are included in this permission grant policy. Automatically expanded on GET.
52785
+ * Condition sets that are included in this permission grant policy. Automatically expanded on GET.
52020
52786
  */
52021
52787
  includes?: PermissionGrantConditionSet[];
52022
52788
  }
@@ -53032,6 +53798,16 @@ export interface PolicyRoot extends Entity, Parsable {
53032
53798
  */
53033
53799
  tokenLifetimePolicies?: TokenLifetimePolicy[];
53034
53800
  }
53801
+ export interface PolicyTemplate extends Entity, Parsable {
53802
+ /**
53803
+ * Defines an optional cross-tenant access policy template with user synchronization settings for a multitenant organization.
53804
+ */
53805
+ multiTenantOrganizationIdentitySynchronization?: MultiTenantOrganizationIdentitySyncPolicyTemplate;
53806
+ /**
53807
+ * Defines an optional cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
53808
+ */
53809
+ multiTenantOrganizationPartnerConfiguration?: MultiTenantOrganizationPartnerConfigurationTemplate;
53810
+ }
53035
53811
  export interface PositiveReinforcementNotification extends BaseEndUserNotification, Parsable {
53036
53812
  /**
53037
53813
  * Delivery preference. Possible values are: unknown, deliverImmedietly, deliverAfterCampaignEnd, unknownFutureValue.
@@ -56461,7 +57237,7 @@ export interface RiskDetection extends Entity, Parsable {
56461
57237
  */
56462
57238
  riskDetail?: RiskDetail;
56463
57239
  /**
56464
- * The type of risk event detected. The possible values are adminConfirmedUserCompromised, anomalousToken, anomalousUserActivity, anonymizedIPAddress, generic, impossibleTravel, investigationsThreatIntelligence, leakedCredentials, maliciousIPAddress,malwareInfectedIPAddress, mcasSuspiciousInboxManipulationRules, newCountry, passwordSpray,riskyIPAddress, suspiciousAPITraffic, suspiciousBrowser,suspiciousInboxForwarding, suspiciousIPAddress, tokenIssuerAnomaly, unfamiliarFeatures, unlikelyTravel. If the risk detection is a premium detection, will show generic. For more information about each value, see Risk types and detection.
57240
+ * The type of risk event detected. The possible values are adminConfirmedUserCompromised, anomalousToken, anomalousUserActivity, anonymizedIPAddress, generic, impossibleTravel, investigationsThreatIntelligence, suspiciousSendingPatterns, leakedCredentials, maliciousIPAddress,malwareInfectedIPAddress, mcasSuspiciousInboxManipulationRules, newCountry, passwordSpray,riskyIPAddress, suspiciousAPITraffic, suspiciousBrowser,suspiciousInboxForwarding, suspiciousIPAddress, tokenIssuerAnomaly, unfamiliarFeatures, unlikelyTravel. If the risk detection is a premium detection, will show generic. For more information about each value, see Risk types and detection.
56465
57241
  */
56466
57242
  riskEventType?: string;
56467
57243
  /**
@@ -59265,6 +60041,26 @@ export declare function serializeAuthenticationCombinationConfiguration(writer:
59265
60041
  * @param writer Serialization writer to use to serialize this model
59266
60042
  */
59267
60043
  export declare function serializeAuthenticationCombinationConfigurationCollectionResponse(writer: SerializationWriter, authenticationCombinationConfigurationCollectionResponse?: Partial<AuthenticationCombinationConfigurationCollectionResponse> | undefined): void;
60044
+ /**
60045
+ * Serializes information the current object
60046
+ * @param writer Serialization writer to use to serialize this model
60047
+ */
60048
+ export declare function serializeAuthenticationConditionApplication(writer: SerializationWriter, authenticationConditionApplication?: Partial<AuthenticationConditionApplication> | undefined): void;
60049
+ /**
60050
+ * Serializes information the current object
60051
+ * @param writer Serialization writer to use to serialize this model
60052
+ */
60053
+ export declare function serializeAuthenticationConditions(writer: SerializationWriter, authenticationConditions?: Partial<AuthenticationConditions> | undefined): void;
60054
+ /**
60055
+ * Serializes information the current object
60056
+ * @param writer Serialization writer to use to serialize this model
60057
+ */
60058
+ export declare function serializeAuthenticationConditionsApplications(writer: SerializationWriter, authenticationConditionsApplications?: Partial<AuthenticationConditionsApplications> | undefined): void;
60059
+ /**
60060
+ * Serializes information the current object
60061
+ * @param writer Serialization writer to use to serialize this model
60062
+ */
60063
+ export declare function serializeAuthenticationConfigurationValidation(writer: SerializationWriter, authenticationConfigurationValidation?: Partial<AuthenticationConfigurationValidation> | undefined): void;
59268
60064
  /**
59269
60065
  * Serializes information the current object
59270
60066
  * @param writer Serialization writer to use to serialize this model
@@ -59275,6 +60071,16 @@ export declare function serializeAuthenticationContextClassReference(writer: Ser
59275
60071
  * @param writer Serialization writer to use to serialize this model
59276
60072
  */
59277
60073
  export declare function serializeAuthenticationContextClassReferenceCollectionResponse(writer: SerializationWriter, authenticationContextClassReferenceCollectionResponse?: Partial<AuthenticationContextClassReferenceCollectionResponse> | undefined): void;
60074
+ /**
60075
+ * Serializes information the current object
60076
+ * @param writer Serialization writer to use to serialize this model
60077
+ */
60078
+ export declare function serializeAuthenticationEventListener(writer: SerializationWriter, authenticationEventListener?: Partial<AuthenticationEventListener> | undefined): void;
60079
+ /**
60080
+ * Serializes information the current object
60081
+ * @param writer Serialization writer to use to serialize this model
60082
+ */
60083
+ export declare function serializeAuthenticationEventListenerCollectionResponse(writer: SerializationWriter, authenticationEventListenerCollectionResponse?: Partial<AuthenticationEventListenerCollectionResponse> | undefined): void;
59278
60084
  /**
59279
60085
  * Serializes information the current object
59280
60086
  * @param writer Serialization writer to use to serialize this model
@@ -59420,6 +60226,11 @@ export declare function serializeAzureAdPopTokenAuthentication(writer: Serializa
59420
60226
  * @param writer Serialization writer to use to serialize this model
59421
60227
  */
59422
60228
  export declare function serializeAzureADRegistrationPolicy(writer: SerializationWriter, azureADRegistrationPolicy?: Partial<AzureADRegistrationPolicy> | undefined): void;
60229
+ /**
60230
+ * Serializes information the current object
60231
+ * @param writer Serialization writer to use to serialize this model
60232
+ */
60233
+ export declare function serializeAzureAdTokenAuthentication(writer: SerializationWriter, azureAdTokenAuthentication?: Partial<AzureAdTokenAuthentication> | undefined): void;
59423
60234
  /**
59424
60235
  * Serializes information the current object
59425
60236
  * @param writer Serialization writer to use to serialize this model
@@ -60315,6 +61126,16 @@ export declare function serializeCommunicationsPhoneIdentity(writer: Serializati
60315
61126
  * @param writer Serialization writer to use to serialize this model
60316
61127
  */
60317
61128
  export declare function serializeCommunicationsUserIdentity(writer: SerializationWriter, communicationsUserIdentity?: Partial<CommunicationsUserIdentity> | undefined): void;
61129
+ /**
61130
+ * Serializes information the current object
61131
+ * @param writer Serialization writer to use to serialize this model
61132
+ */
61133
+ export declare function serializeCompanySubscription(writer: SerializationWriter, companySubscription?: Partial<CompanySubscription> | undefined): void;
61134
+ /**
61135
+ * Serializes information the current object
61136
+ * @param writer Serialization writer to use to serialize this model
61137
+ */
61138
+ export declare function serializeCompanySubscriptionCollectionResponse(writer: SerializationWriter, companySubscriptionCollectionResponse?: Partial<CompanySubscriptionCollectionResponse> | undefined): void;
60318
61139
  /**
60319
61140
  * Serializes information the current object
60320
61141
  * @param writer Serialization writer to use to serialize this model
@@ -60660,6 +61481,16 @@ export declare function serializeCrossTenantUserSyncInbound(writer: Serializatio
60660
61481
  * @param writer Serialization writer to use to serialize this model
60661
61482
  */
60662
61483
  export declare function serializeCurrencyColumn(writer: SerializationWriter, currencyColumn?: Partial<CurrencyColumn> | undefined): void;
61484
+ /**
61485
+ * Serializes information the current object
61486
+ * @param writer Serialization writer to use to serialize this model
61487
+ */
61488
+ export declare function serializeCustomAuthenticationExtension(writer: SerializationWriter, customAuthenticationExtension?: Partial<CustomAuthenticationExtension> | undefined): void;
61489
+ /**
61490
+ * Serializes information the current object
61491
+ * @param writer Serialization writer to use to serialize this model
61492
+ */
61493
+ export declare function serializeCustomAuthenticationExtensionCollectionResponse(writer: SerializationWriter, customAuthenticationExtensionCollectionResponse?: Partial<CustomAuthenticationExtensionCollectionResponse> | undefined): void;
60663
61494
  /**
60664
61495
  * Serializes information the current object
60665
61496
  * @param writer Serialization writer to use to serialize this model
@@ -60700,6 +61531,11 @@ export declare function serializeCustomExtensionData(writer: SerializationWriter
60700
61531
  * @param writer Serialization writer to use to serialize this model
60701
61532
  */
60702
61533
  export declare function serializeCustomExtensionEndpointConfiguration(writer: SerializationWriter, customExtensionEndpointConfiguration?: Partial<CustomExtensionEndpointConfiguration> | undefined): void;
61534
+ /**
61535
+ * Serializes information the current object
61536
+ * @param writer Serialization writer to use to serialize this model
61537
+ */
61538
+ export declare function serializeCustomExtensionOverwriteConfiguration(writer: SerializationWriter, customExtensionOverwriteConfiguration?: Partial<CustomExtensionOverwriteConfiguration> | undefined): void;
60703
61539
  /**
60704
61540
  * Serializes information the current object
60705
61541
  * @param writer Serialization writer to use to serialize this model
@@ -62380,6 +63216,11 @@ export declare function serializeHorizontalSectionColumnCollectionResponse(write
62380
63216
  * @param writer Serialization writer to use to serialize this model
62381
63217
  */
62382
63218
  export declare function serializeHostSecurityState(writer: SerializationWriter, hostSecurityState?: Partial<HostSecurityState> | undefined): void;
63219
+ /**
63220
+ * Serializes information the current object
63221
+ * @param writer Serialization writer to use to serialize this model
63222
+ */
63223
+ export declare function serializeHttpRequestEndpoint(writer: SerializationWriter, httpRequestEndpoint?: Partial<HttpRequestEndpoint> | undefined): void;
62383
63224
  /**
62384
63225
  * Serializes information the current object
62385
63226
  * @param writer Serialization writer to use to serialize this model
@@ -63890,6 +64731,46 @@ export declare function serializeMobileThreatDefenseConnectorCollectionResponse(
63890
64731
  * @param writer Serialization writer to use to serialize this model
63891
64732
  */
63892
64733
  export declare function serializeModifiedProperty(writer: SerializationWriter, modifiedProperty?: Partial<ModifiedProperty> | undefined): void;
64734
+ /**
64735
+ * Serializes information the current object
64736
+ * @param writer Serialization writer to use to serialize this model
64737
+ */
64738
+ export declare function serializeMultiTenantOrganization(writer: SerializationWriter, multiTenantOrganization?: Partial<MultiTenantOrganization> | undefined): void;
64739
+ /**
64740
+ * Serializes information the current object
64741
+ * @param writer Serialization writer to use to serialize this model
64742
+ */
64743
+ export declare function serializeMultiTenantOrganizationIdentitySyncPolicyTemplate(writer: SerializationWriter, multiTenantOrganizationIdentitySyncPolicyTemplate?: Partial<MultiTenantOrganizationIdentitySyncPolicyTemplate> | undefined): void;
64744
+ /**
64745
+ * Serializes information the current object
64746
+ * @param writer Serialization writer to use to serialize this model
64747
+ */
64748
+ export declare function serializeMultiTenantOrganizationJoinRequestRecord(writer: SerializationWriter, multiTenantOrganizationJoinRequestRecord?: Partial<MultiTenantOrganizationJoinRequestRecord> | undefined): void;
64749
+ /**
64750
+ * Serializes information the current object
64751
+ * @param writer Serialization writer to use to serialize this model
64752
+ */
64753
+ export declare function serializeMultiTenantOrganizationJoinRequestTransitionDetails(writer: SerializationWriter, multiTenantOrganizationJoinRequestTransitionDetails?: Partial<MultiTenantOrganizationJoinRequestTransitionDetails> | undefined): void;
64754
+ /**
64755
+ * Serializes information the current object
64756
+ * @param writer Serialization writer to use to serialize this model
64757
+ */
64758
+ export declare function serializeMultiTenantOrganizationMember(writer: SerializationWriter, multiTenantOrganizationMember?: Partial<MultiTenantOrganizationMember> | undefined): void;
64759
+ /**
64760
+ * Serializes information the current object
64761
+ * @param writer Serialization writer to use to serialize this model
64762
+ */
64763
+ export declare function serializeMultiTenantOrganizationMemberCollectionResponse(writer: SerializationWriter, multiTenantOrganizationMemberCollectionResponse?: Partial<MultiTenantOrganizationMemberCollectionResponse> | undefined): void;
64764
+ /**
64765
+ * Serializes information the current object
64766
+ * @param writer Serialization writer to use to serialize this model
64767
+ */
64768
+ export declare function serializeMultiTenantOrganizationMemberTransitionDetails(writer: SerializationWriter, multiTenantOrganizationMemberTransitionDetails?: Partial<MultiTenantOrganizationMemberTransitionDetails> | undefined): void;
64769
+ /**
64770
+ * Serializes information the current object
64771
+ * @param writer Serialization writer to use to serialize this model
64772
+ */
64773
+ export declare function serializeMultiTenantOrganizationPartnerConfigurationTemplate(writer: SerializationWriter, multiTenantOrganizationPartnerConfigurationTemplate?: Partial<MultiTenantOrganizationPartnerConfigurationTemplate> | undefined): void;
63893
64774
  /**
63894
64775
  * Serializes information the current object
63895
64776
  * @param writer Serialization writer to use to serialize this model
@@ -64200,6 +65081,31 @@ export declare function serializeOnPremisesExtensionAttributes(writer: Serializa
64200
65081
  * @param writer Serialization writer to use to serialize this model
64201
65082
  */
64202
65083
  export declare function serializeOnPremisesProvisioningError(writer: SerializationWriter, onPremisesProvisioningError?: Partial<OnPremisesProvisioningError> | undefined): void;
65084
+ /**
65085
+ * Serializes information the current object
65086
+ * @param writer Serialization writer to use to serialize this model
65087
+ */
65088
+ export declare function serializeOnTokenIssuanceStartCustomExtension(writer: SerializationWriter, onTokenIssuanceStartCustomExtension?: Partial<OnTokenIssuanceStartCustomExtension> | undefined): void;
65089
+ /**
65090
+ * Serializes information the current object
65091
+ * @param writer Serialization writer to use to serialize this model
65092
+ */
65093
+ export declare function serializeOnTokenIssuanceStartCustomExtensionHandler(writer: SerializationWriter, onTokenIssuanceStartCustomExtensionHandler?: Partial<OnTokenIssuanceStartCustomExtensionHandler> | undefined): void;
65094
+ /**
65095
+ * Serializes information the current object
65096
+ * @param writer Serialization writer to use to serialize this model
65097
+ */
65098
+ export declare function serializeOnTokenIssuanceStartHandler(writer: SerializationWriter, onTokenIssuanceStartHandler?: Partial<OnTokenIssuanceStartHandler> | undefined): void;
65099
+ /**
65100
+ * Serializes information the current object
65101
+ * @param writer Serialization writer to use to serialize this model
65102
+ */
65103
+ export declare function serializeOnTokenIssuanceStartListener(writer: SerializationWriter, onTokenIssuanceStartListener?: Partial<OnTokenIssuanceStartListener> | undefined): void;
65104
+ /**
65105
+ * Serializes information the current object
65106
+ * @param writer Serialization writer to use to serialize this model
65107
+ */
65108
+ export declare function serializeOnTokenIssuanceStartReturnClaim(writer: SerializationWriter, onTokenIssuanceStartReturnClaim?: Partial<OnTokenIssuanceStartReturnClaim> | undefined): void;
64203
65109
  /**
64204
65110
  * Serializes information the current object
64205
65111
  * @param writer Serialization writer to use to serialize this model
@@ -64690,6 +65596,11 @@ export declare function serializePolicyBase(writer: SerializationWriter, policyB
64690
65596
  * @param writer Serialization writer to use to serialize this model
64691
65597
  */
64692
65598
  export declare function serializePolicyRoot(writer: SerializationWriter, policyRoot?: Partial<PolicyRoot> | undefined): void;
65599
+ /**
65600
+ * Serializes information the current object
65601
+ * @param writer Serialization writer to use to serialize this model
65602
+ */
65603
+ export declare function serializePolicyTemplate(writer: SerializationWriter, policyTemplate?: Partial<PolicyTemplate> | undefined): void;
64693
65604
  /**
64694
65605
  * Serializes information the current object
64695
65606
  * @param writer Serialization writer to use to serialize this model
@@ -73527,6 +74438,7 @@ export interface TeleconferenceDeviceVideoQuality extends Parsable, Teleconferen
73527
74438
  */
73528
74439
  averageOutboundFrameRate?: number;
73529
74440
  }
74441
+ export type TemplateApplicationLevel = (typeof TemplateApplicationLevelObject)[keyof typeof TemplateApplicationLevelObject];
73530
74442
  export type TemplateScenarios = (typeof TemplateScenariosObject)[keyof typeof TemplateScenariosObject];
73531
74443
  export interface TemporaryAccessPassAuthenticationMethod extends AuthenticationMethod, Parsable {
73532
74444
  /**
@@ -73651,6 +74563,10 @@ export interface TenantRelationship extends AdditionalDataHolder, BackedModel, P
73651
74563
  * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant.
73652
74564
  */
73653
74565
  delegatedAdminRelationships?: DelegatedAdminRelationship[];
74566
+ /**
74567
+ * Defines an organization with more than one instance of Microsoft Entra ID.
74568
+ */
74569
+ multiTenantOrganization?: MultiTenantOrganization;
73654
74570
  /**
73655
74571
  * The OdataType property
73656
74572
  */
@@ -78079,7 +78995,7 @@ export interface VerifiedDomain extends AdditionalDataHolder, BackedModel, Parsa
78079
78995
  */
78080
78996
  isInitial?: boolean;
78081
78997
  /**
78082
- * The domain name; for example, contoso.com`.
78998
+ * The domain name; for example, contoso.com.
78083
78999
  */
78084
79000
  name?: string;
78085
79001
  /**
@@ -84073,6 +84989,12 @@ export declare const BookingsAvailabilityStatusObject: {
84073
84989
  readonly OutOfOffice: "outOfOffice";
84074
84990
  readonly UnknownFutureValue: "unknownFutureValue";
84075
84991
  };
84992
+ export declare const BookingStaffMembershipStatusObject: {
84993
+ readonly Active: "active";
84994
+ readonly PendingAcceptance: "pendingAcceptance";
84995
+ readonly RejectedByStaff: "rejectedByStaff";
84996
+ readonly UnknownFutureValue: "unknownFutureValue";
84997
+ };
84076
84998
  export declare const BookingStaffRoleObject: {
84077
84999
  readonly Guest: "guest";
84078
85000
  readonly Administrator: "administrator";
@@ -86157,6 +87079,29 @@ export declare const MultiFactorAuthConfigurationObject: {
86157
87079
  readonly Required: "required";
86158
87080
  readonly UnknownFutureValue: "unknownFutureValue";
86159
87081
  };
87082
+ export declare const MultiTenantOrganizationMemberProcessingStatusObject: {
87083
+ readonly NotStarted: "notStarted";
87084
+ readonly Running: "running";
87085
+ readonly Succeeded: "succeeded";
87086
+ readonly Failed: "failed";
87087
+ readonly UnknownFutureValue: "unknownFutureValue";
87088
+ };
87089
+ export declare const MultiTenantOrganizationMemberRoleObject: {
87090
+ readonly Owner: "owner";
87091
+ readonly Member: "member";
87092
+ readonly UnknownFutureValue: "unknownFutureValue";
87093
+ };
87094
+ export declare const MultiTenantOrganizationMemberStateObject: {
87095
+ readonly Pending: "pending";
87096
+ readonly Active: "active";
87097
+ readonly Removed: "removed";
87098
+ readonly UnknownFutureValue: "unknownFutureValue";
87099
+ };
87100
+ export declare const MultiTenantOrganizationStateObject: {
87101
+ readonly Active: "active";
87102
+ readonly Inactive: "inactive";
87103
+ readonly UnknownFutureValue: "unknownFutureValue";
87104
+ };
86160
87105
  export declare const MutabilityObject: {
86161
87106
  readonly ReadWrite: "ReadWrite";
86162
87107
  readonly ReadOnly: "ReadOnly";
@@ -88637,6 +89582,12 @@ export declare const TeamworkUserIdentityTypeObject: {
88637
89582
  readonly UnknownFutureValue: "unknownFutureValue";
88638
89583
  readonly EmailUser: "emailUser";
88639
89584
  };
89585
+ export declare const TemplateApplicationLevelObject: {
89586
+ readonly None: "none";
89587
+ readonly NewPartners: "newPartners";
89588
+ readonly ExistingPartners: "existingPartners";
89589
+ readonly UnknownFutureValue: "unknownFutureValue";
89590
+ };
88640
89591
  export declare const TemplateScenariosObject: {
88641
89592
  readonly NewEscaped: "new";
88642
89593
  readonly SecureFoundation: "secureFoundation";