@fusionauth/typescript-client 1.34.0 → 1.36.0

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/README.md CHANGED
@@ -28,7 +28,7 @@ Refer to the FusionAuth API documentation to for request and response formats.
28
28
 
29
29
  If you have a question or support issue regarding this client library, we'd love to hear from you.
30
30
 
31
- If you have a paid edition with support included, please [open a ticket in your account portal](https://account.fusionauth.io/account/support/). Learn more about [paid editions here](https://fusionauth.io/pricing/).
31
+ If you have a paid edition with support included, please [open a ticket in your account portal](https://account.fusionauth.io/account/support/). Learn more about [paid editions here](https://fusionauth.io/pricing).
32
32
 
33
33
  Otherwise, please [post your question in the community forum](https://fusionauth.io/community/forum/).
34
34
 
@@ -1221,7 +1221,7 @@ export declare class FusionAuthClient {
1221
1221
  */
1222
1222
  retrieveAction(actionId: UUID): Promise<ClientResponse<ActionResponse>>;
1223
1223
  /**
1224
- * Retrieves all of the actions for the user with the given Id. This will return all time based actions that are active,
1224
+ * Retrieves all the actions for the user with the given Id. This will return all time based actions that are active,
1225
1225
  * and inactive as well as non-time based actions.
1226
1226
  *
1227
1227
  * @param {UUID} userId The Id of the user to fetch the actions for.
@@ -1229,14 +1229,14 @@ export declare class FusionAuthClient {
1229
1229
  */
1230
1230
  retrieveActions(userId: UUID): Promise<ClientResponse<ActionResponse>>;
1231
1231
  /**
1232
- * Retrieves all of the actions for the user with the given Id that are currently preventing the User from logging in.
1232
+ * Retrieves all the actions for the user with the given Id that are currently preventing the User from logging in.
1233
1233
  *
1234
1234
  * @param {UUID} userId The Id of the user to fetch the actions for.
1235
1235
  * @returns {Promise<ClientResponse<ActionResponse>>}
1236
1236
  */
1237
1237
  retrieveActionsPreventingLogin(userId: UUID): Promise<ClientResponse<ActionResponse>>;
1238
1238
  /**
1239
- * Retrieves all of the actions for the user with the given Id that are currently active.
1239
+ * Retrieves all the actions for the user with the given Id that are currently active.
1240
1240
  * An active action means one that is time based and has not been canceled, and has not ended.
1241
1241
  *
1242
1242
  * @param {UUID} userId The Id of the user to fetch the actions for.
@@ -1251,7 +1251,7 @@ export declare class FusionAuthClient {
1251
1251
  */
1252
1252
  retrieveApplication(applicationId: UUID): Promise<ClientResponse<ApplicationResponse>>;
1253
1253
  /**
1254
- * Retrieves all of the applications.
1254
+ * Retrieves all the applications.
1255
1255
  *
1256
1256
  * @returns {Promise<ClientResponse<ApplicationResponse>>}
1257
1257
  */
@@ -1271,7 +1271,7 @@ export declare class FusionAuthClient {
1271
1271
  */
1272
1272
  retrieveConnector(connectorId: UUID): Promise<ClientResponse<ConnectorResponse>>;
1273
1273
  /**
1274
- * Retrieves all of the connectors.
1274
+ * Retrieves all the connectors.
1275
1275
  *
1276
1276
  * @returns {Promise<ClientResponse<ConnectorResponse>>}
1277
1277
  */
@@ -1284,7 +1284,7 @@ export declare class FusionAuthClient {
1284
1284
  */
1285
1285
  retrieveConsent(consentId: UUID): Promise<ClientResponse<ConsentResponse>>;
1286
1286
  /**
1287
- * Retrieves all of the consent.
1287
+ * Retrieves all the consent.
1288
1288
  *
1289
1289
  * @returns {Promise<ClientResponse<ConsentResponse>>}
1290
1290
  */
@@ -1316,7 +1316,7 @@ export declare class FusionAuthClient {
1316
1316
  */
1317
1317
  retrieveEmailTemplatePreview(request: PreviewRequest): Promise<ClientResponse<PreviewResponse>>;
1318
1318
  /**
1319
- * Retrieves all of the email templates.
1319
+ * Retrieves all the email templates.
1320
1320
  *
1321
1321
  * @returns {Promise<ClientResponse<EmailTemplateResponse>>}
1322
1322
  */
@@ -1345,7 +1345,7 @@ export declare class FusionAuthClient {
1345
1345
  */
1346
1346
  retrieveEntityType(entityTypeId: UUID): Promise<ClientResponse<EntityTypeResponse>>;
1347
1347
  /**
1348
- * Retrieves all of the Entity Types.
1348
+ * Retrieves all the Entity Types.
1349
1349
  *
1350
1350
  * @returns {Promise<ClientResponse<EntityTypeResponse>>}
1351
1351
  */
@@ -1358,14 +1358,14 @@ export declare class FusionAuthClient {
1358
1358
  */
1359
1359
  retrieveEventLog(eventLogId: number): Promise<ClientResponse<EventLogResponse>>;
1360
1360
  /**
1361
- * Retrieves all of the families that a user belongs to.
1361
+ * Retrieves all the families that a user belongs to.
1362
1362
  *
1363
1363
  * @param {UUID} userId The User's id
1364
1364
  * @returns {Promise<ClientResponse<FamilyResponse>>}
1365
1365
  */
1366
1366
  retrieveFamilies(userId: UUID): Promise<ClientResponse<FamilyResponse>>;
1367
1367
  /**
1368
- * Retrieves all of the members of a family by the unique Family Id.
1368
+ * Retrieves all the members of a family by the unique Family Id.
1369
1369
  *
1370
1370
  * @param {UUID} familyId The unique Id of the Family.
1371
1371
  * @returns {Promise<ClientResponse<FamilyResponse>>}
@@ -1386,13 +1386,13 @@ export declare class FusionAuthClient {
1386
1386
  */
1387
1387
  retrieveFormField(fieldId: UUID): Promise<ClientResponse<FormFieldResponse>>;
1388
1388
  /**
1389
- * Retrieves all of the forms fields
1389
+ * Retrieves all the forms fields
1390
1390
  *
1391
1391
  * @returns {Promise<ClientResponse<FormFieldResponse>>}
1392
1392
  */
1393
1393
  retrieveFormFields(): Promise<ClientResponse<FormFieldResponse>>;
1394
1394
  /**
1395
- * Retrieves all of the forms.
1395
+ * Retrieves all the forms.
1396
1396
  *
1397
1397
  * @returns {Promise<ClientResponse<FormResponse>>}
1398
1398
  */
@@ -1405,7 +1405,7 @@ export declare class FusionAuthClient {
1405
1405
  */
1406
1406
  retrieveGroup(groupId: UUID): Promise<ClientResponse<GroupResponse>>;
1407
1407
  /**
1408
- * Retrieves all of the groups.
1408
+ * Retrieves all the groups.
1409
1409
  *
1410
1410
  * @returns {Promise<ClientResponse<GroupResponse>>}
1411
1411
  */
@@ -1434,13 +1434,13 @@ export declare class FusionAuthClient {
1434
1434
  */
1435
1435
  retrieveIdentityProviderByType(type: IdentityProviderType): Promise<ClientResponse<IdentityProviderResponse>>;
1436
1436
  /**
1437
- * Retrieves all of the identity providers.
1437
+ * Retrieves all the identity providers.
1438
1438
  *
1439
1439
  * @returns {Promise<ClientResponse<IdentityProviderResponse>>}
1440
1440
  */
1441
1441
  retrieveIdentityProviders(): Promise<ClientResponse<IdentityProviderResponse>>;
1442
1442
  /**
1443
- * Retrieves all of the actions for the user with the given Id that are currently inactive.
1443
+ * Retrieves all the actions for the user with the given Id that are currently inactive.
1444
1444
  * An inactive action means one that is time based and has been canceled or has expired, or is not time based.
1445
1445
  *
1446
1446
  * @param {UUID} userId The Id of the user to fetch the actions for.
@@ -1448,13 +1448,13 @@ export declare class FusionAuthClient {
1448
1448
  */
1449
1449
  retrieveInactiveActions(userId: UUID): Promise<ClientResponse<ActionResponse>>;
1450
1450
  /**
1451
- * Retrieves all of the applications that are currently inactive.
1451
+ * Retrieves all the applications that are currently inactive.
1452
1452
  *
1453
1453
  * @returns {Promise<ClientResponse<ApplicationResponse>>}
1454
1454
  */
1455
1455
  retrieveInactiveApplications(): Promise<ClientResponse<ApplicationResponse>>;
1456
1456
  /**
1457
- * Retrieves all of the user actions that are currently inactive.
1457
+ * Retrieves all the user actions that are currently inactive.
1458
1458
  *
1459
1459
  * @returns {Promise<ClientResponse<UserActionResponse>>}
1460
1460
  */
@@ -1499,7 +1499,7 @@ export declare class FusionAuthClient {
1499
1499
  */
1500
1500
  retrieveKey(keyId: UUID): Promise<ClientResponse<KeyResponse>>;
1501
1501
  /**
1502
- * Retrieves all of the keys.
1502
+ * Retrieves all the keys.
1503
1503
  *
1504
1504
  * @returns {Promise<ClientResponse<KeyResponse>>}
1505
1505
  */
@@ -1512,13 +1512,13 @@ export declare class FusionAuthClient {
1512
1512
  */
1513
1513
  retrieveLambda(lambdaId: UUID): Promise<ClientResponse<LambdaResponse>>;
1514
1514
  /**
1515
- * Retrieves all of the lambdas.
1515
+ * Retrieves all the lambdas.
1516
1516
  *
1517
1517
  * @returns {Promise<ClientResponse<LambdaResponse>>}
1518
1518
  */
1519
1519
  retrieveLambdas(): Promise<ClientResponse<LambdaResponse>>;
1520
1520
  /**
1521
- * Retrieves all of the lambdas for the provided type.
1521
+ * Retrieves all the lambdas for the provided type.
1522
1522
  *
1523
1523
  * @param {LambdaType} type The type of the lambda to return.
1524
1524
  * @returns {Promise<ClientResponse<LambdaResponse>>}
@@ -1549,7 +1549,7 @@ export declare class FusionAuthClient {
1549
1549
  */
1550
1550
  retrieveMessageTemplatePreview(request: PreviewMessageTemplateRequest): Promise<ClientResponse<PreviewMessageTemplateResponse>>;
1551
1551
  /**
1552
- * Retrieves all of the message templates.
1552
+ * Retrieves all the message templates.
1553
1553
  *
1554
1554
  * @returns {Promise<ClientResponse<MessageTemplateResponse>>}
1555
1555
  */
@@ -1562,7 +1562,7 @@ export declare class FusionAuthClient {
1562
1562
  */
1563
1563
  retrieveMessenger(messengerId: UUID): Promise<ClientResponse<MessengerResponse>>;
1564
1564
  /**
1565
- * Retrieves all of the messengers.
1565
+ * Retrieves all the messengers.
1566
1566
  *
1567
1567
  * @returns {Promise<ClientResponse<MessengerResponse>>}
1568
1568
  */
@@ -1609,7 +1609,7 @@ export declare class FusionAuthClient {
1609
1609
  */
1610
1610
  retrievePasswordValidationRulesWithTenantId(tenantId: UUID): Promise<ClientResponse<PasswordValidationRulesResponse>>;
1611
1611
  /**
1612
- * Retrieves all of the children for the given parent email address.
1612
+ * Retrieves all the children for the given parent email address.
1613
1613
  *
1614
1614
  * @param {string} parentEmail The email of the parent.
1615
1615
  * @returns {Promise<ClientResponse<PendingResponse>>}
@@ -1688,7 +1688,7 @@ export declare class FusionAuthClient {
1688
1688
  */
1689
1689
  retrieveTenant(tenantId: UUID): Promise<ClientResponse<TenantResponse>>;
1690
1690
  /**
1691
- * Retrieves all of the tenants.
1691
+ * Retrieves all the tenants.
1692
1692
  *
1693
1693
  * @returns {Promise<ClientResponse<TenantResponse>>}
1694
1694
  */
@@ -1701,7 +1701,7 @@ export declare class FusionAuthClient {
1701
1701
  */
1702
1702
  retrieveTheme(themeId: UUID): Promise<ClientResponse<ThemeResponse>>;
1703
1703
  /**
1704
- * Retrieves all of the themes.
1704
+ * Retrieves all the themes.
1705
1705
  *
1706
1706
  * @returns {Promise<ClientResponse<ThemeResponse>>}
1707
1707
  */
@@ -1750,7 +1750,7 @@ export declare class FusionAuthClient {
1750
1750
  */
1751
1751
  retrieveUserActionReasons(): Promise<ClientResponse<UserActionReasonResponse>>;
1752
1752
  /**
1753
- * Retrieves all of the user actions.
1753
+ * Retrieves all the user actions.
1754
1754
  *
1755
1755
  * @returns {Promise<ClientResponse<UserActionResponse>>}
1756
1756
  */
@@ -1793,7 +1793,7 @@ export declare class FusionAuthClient {
1793
1793
  */
1794
1794
  retrieveUserByVerificationId(verificationId: string): Promise<ClientResponse<UserResponse>>;
1795
1795
  /**
1796
- * Retrieves all of the comments for the user with the given Id.
1796
+ * Retrieves all the comments for the user with the given Id.
1797
1797
  *
1798
1798
  * @param {UUID} userId The Id of the user.
1799
1799
  * @returns {Promise<ClientResponse<UserCommentResponse>>}
@@ -1807,7 +1807,7 @@ export declare class FusionAuthClient {
1807
1807
  */
1808
1808
  retrieveUserConsent(userConsentId: UUID): Promise<ClientResponse<UserConsentResponse>>;
1809
1809
  /**
1810
- * Retrieves all of the consents for a User.
1810
+ * Retrieves all the consents for a User.
1811
1811
  *
1812
1812
  * @param {UUID} userId The User's Id
1813
1813
  * @returns {Promise<ClientResponse<UserConsentResponse>>}
@@ -2019,6 +2019,13 @@ export declare class FusionAuthClient {
2019
2019
  * @returns {Promise<ClientResponse<EventLogSearchResponse>>}
2020
2020
  */
2021
2021
  searchEventLogs(request: EventLogSearchRequest): Promise<ClientResponse<EventLogSearchResponse>>;
2022
+ /**
2023
+ * Searches group members with the specified criteria and pagination.
2024
+ *
2025
+ * @param {GroupMemberSearchRequest} request The search criteria and pagination information.
2026
+ * @returns {Promise<ClientResponse<GroupMemberSearchResponse>>}
2027
+ */
2028
+ searchGroupMembers(request: GroupMemberSearchRequest): Promise<ClientResponse<GroupMemberSearchResponse>>;
2022
2029
  /**
2023
2030
  * Searches the IP Access Control Lists with the specified criteria and pagination.
2024
2031
  *
@@ -2256,6 +2263,13 @@ export declare class FusionAuthClient {
2256
2263
  * @returns {Promise<ClientResponse<GroupResponse>>}
2257
2264
  */
2258
2265
  updateGroup(groupId: UUID, request: GroupRequest): Promise<ClientResponse<GroupResponse>>;
2266
+ /**
2267
+ * Creates a member in a group.
2268
+ *
2269
+ * @param {MemberRequest} request The request object that contains all the information used to create the group member(s).
2270
+ * @returns {Promise<ClientResponse<MemberResponse>>}
2271
+ */
2272
+ updateGroupMembers(request: MemberRequest): Promise<ClientResponse<MemberResponse>>;
2259
2273
  /**
2260
2274
  * Updates the IP Access Control List with the given Id.
2261
2275
  *
@@ -3521,7 +3535,7 @@ export interface EntityTypeSearchRequest {
3521
3535
  search?: EntityTypeSearchCriteria;
3522
3536
  }
3523
3537
  /**
3524
- * Search request for entity types.
3538
+ * Search response for entity types.
3525
3539
  *
3526
3540
  * @author Brian Pontarelli
3527
3541
  */
@@ -3685,10 +3699,12 @@ export declare enum EventType {
3685
3699
  UserDeactivate = "user.deactivate",
3686
3700
  UserDelete = "user.delete",
3687
3701
  UserDeleteComplete = "user.delete.complete",
3688
- UserLoginIdDuplicateOnCreate = "user.loginId.duplicate.create",
3689
- UserLoginIdDuplicateOnUpdate = "user.loginId.duplicate.update",
3690
3702
  UserEmailUpdate = "user.email.update",
3691
3703
  UserEmailVerified = "user.email.verified",
3704
+ UserIdentityProviderLink = "user.identity-provider.link",
3705
+ UserIdentityProviderUnlink = "user.identity-provider.unlink",
3706
+ UserLoginIdDuplicateOnCreate = "user.loginId.duplicate.create",
3707
+ UserLoginIdDuplicateOnUpdate = "user.loginId.duplicate.update",
3692
3708
  UserLoginFailed = "user.login.failed",
3693
3709
  UserLoginNewDevice = "user.login.new-device",
3694
3710
  UserLoginSuccess = "user.login.success",
@@ -4108,8 +4124,35 @@ export interface GroupMember {
4108
4124
  groupId?: UUID;
4109
4125
  id?: UUID;
4110
4126
  insertInstant?: number;
4127
+ user?: User;
4111
4128
  userId?: UUID;
4112
4129
  }
4130
+ /**
4131
+ * Search criteria for Group Members
4132
+ *
4133
+ * @author Daniel DeGroff
4134
+ */
4135
+ export interface GroupMemberSearchCriteria extends BaseSearchCriteria {
4136
+ groupId?: UUID;
4137
+ userId?: UUID;
4138
+ }
4139
+ /**
4140
+ * Search request for Group Members.
4141
+ *
4142
+ * @author Daniel DeGroff
4143
+ */
4144
+ export interface GroupMemberSearchRequest {
4145
+ search?: GroupMemberSearchCriteria;
4146
+ }
4147
+ /**
4148
+ * Search response for Group Members
4149
+ *
4150
+ * @author Daniel DeGroff
4151
+ */
4152
+ export interface GroupMemberSearchResponse {
4153
+ members?: Array<GroupMember>;
4154
+ total?: number;
4155
+ }
4113
4156
  /**
4114
4157
  * Group API request object.
4115
4158
  *
@@ -4212,7 +4255,7 @@ export declare enum IdentityProviderLinkingStrategy {
4212
4255
  /**
4213
4256
  * @author Daniel DeGroff
4214
4257
  */
4215
- export interface IdentityProviderLinkRequest {
4258
+ export interface IdentityProviderLinkRequest extends BaseEventRequest {
4216
4259
  displayName?: string;
4217
4260
  identityProviderId?: UUID;
4218
4261
  identityProviderUserId?: string;
@@ -4650,9 +4693,15 @@ export declare enum KeyUse {
4650
4693
  export interface KickstartSuccessEvent extends BaseEvent {
4651
4694
  instanceId?: UUID;
4652
4695
  }
4653
- export interface Lambda extends Enableable {
4696
+ /**
4697
+ * A JavaScript lambda function that is executed during certain events inside FusionAuth.
4698
+ *
4699
+ * @author Brian Pontarelli
4700
+ */
4701
+ export interface Lambda {
4654
4702
  body?: string;
4655
4703
  debug?: boolean;
4704
+ engineType?: LambdaEngineType;
4656
4705
  id?: UUID;
4657
4706
  insertInstant?: number;
4658
4707
  lastUpdateInstant?: number;
@@ -4670,6 +4719,13 @@ export interface LambdaConfiguration {
4670
4719
  export interface LambdaConfiguration {
4671
4720
  reconcileId?: UUID;
4672
4721
  }
4722
+ /**
4723
+ * @author Daniel DeGroff
4724
+ */
4725
+ export declare enum LambdaEngineType {
4726
+ GraalJS = "GraalJS",
4727
+ Nashorn = "Nashorn"
4728
+ }
4673
4729
  /**
4674
4730
  * Lambda API request object.
4675
4731
  *
@@ -4711,7 +4767,11 @@ export declare enum LambdaType {
4711
4767
  SteamReconcile = "SteamReconcile",
4712
4768
  TwitchReconcile = "TwitchReconcile",
4713
4769
  XboxReconcile = "XboxReconcile",
4714
- ClientCredentialsJWTPopulate = "ClientCredentialsJWTPopulate"
4770
+ ClientCredentialsJWTPopulate = "ClientCredentialsJWTPopulate",
4771
+ SCIMServerGroupRequestConverter = "SCIMServerGroupRequestConverter",
4772
+ SCIMServerGroupResponseConverter = "SCIMServerGroupResponseConverter",
4773
+ SCIMServerUserRequestConverter = "SCIMServerUserRequestConverter",
4774
+ SCIMServerUserResponseConverter = "SCIMServerUserResponseConverter"
4715
4775
  }
4716
4776
  /**
4717
4777
  * Models an LDAP connector.
@@ -5063,7 +5123,10 @@ export interface NintendoApplicationConfiguration extends BaseIdentityProviderAp
5063
5123
  buttonText?: string;
5064
5124
  client_id?: string;
5065
5125
  client_secret?: string;
5126
+ emailClaim?: string;
5066
5127
  scope?: string;
5128
+ uniqueIdClaim?: string;
5129
+ usernameClaim?: string;
5067
5130
  }
5068
5131
  /**
5069
5132
  * Nintendo gaming login provider.
@@ -5074,7 +5137,10 @@ export interface NintendoIdentityProvider extends BaseIdentityProvider<NintendoA
5074
5137
  buttonText?: string;
5075
5138
  client_id?: string;
5076
5139
  client_secret?: string;
5140
+ emailClaim?: string;
5077
5141
  scope?: string;
5142
+ uniqueIdClaim?: string;
5143
+ usernameClaim?: string;
5078
5144
  }
5079
5145
  /**
5080
5146
  * A marker interface indicating this event cannot be made transactional.
@@ -5120,6 +5186,7 @@ export interface OAuthError {
5120
5186
  error_reason?: OAuthErrorReason;
5121
5187
  error_uri?: string;
5122
5188
  two_factor_id?: string;
5189
+ two_factor_methods?: Array<TwoFactorMethod>;
5123
5190
  }
5124
5191
  export declare enum OAuthErrorReason {
5125
5192
  auth_code_not_found = "auth_code_not_found",
@@ -5462,13 +5529,16 @@ export interface ReactorResponse {
5462
5529
  */
5463
5530
  export interface ReactorStatus {
5464
5531
  advancedIdentityProviders?: ReactorFeatureStatus;
5532
+ advancedLambdas?: ReactorFeatureStatus;
5465
5533
  advancedMultiFactorAuthentication?: ReactorFeatureStatus;
5466
5534
  advancedRegistration?: ReactorFeatureStatus;
5467
5535
  applicationThemes?: ReactorFeatureStatus;
5468
5536
  breachedPasswordDetection?: ReactorFeatureStatus;
5469
5537
  connectors?: ReactorFeatureStatus;
5470
5538
  entityManagement?: ReactorFeatureStatus;
5539
+ expiration?: string;
5471
5540
  licensed?: boolean;
5541
+ scimServer?: ReactorFeatureStatus;
5472
5542
  threatDetection?: ReactorFeatureStatus;
5473
5543
  }
5474
5544
  /**
@@ -5997,6 +6067,7 @@ export interface Tenant {
5997
6067
  insertInstant?: number;
5998
6068
  issuer?: string;
5999
6069
  jwtConfiguration?: JWTConfiguration;
6070
+ lambdaConfiguration?: TenantLambdaConfiguration;
6000
6071
  lastUpdateInstant?: number;
6001
6072
  loginConfiguration?: TenantLoginConfiguration;
6002
6073
  logoutURL?: string;
@@ -6009,6 +6080,7 @@ export interface Tenant {
6009
6080
  passwordValidationRules?: PasswordValidationRules;
6010
6081
  rateLimitConfiguration?: TenantRateLimitConfiguration;
6011
6082
  registrationConfiguration?: TenantRegistrationConfiguration;
6083
+ scimServerConfiguration?: TenantSCIMServerConfiguration;
6012
6084
  ssoConfiguration?: TenantSSOConfiguration;
6013
6085
  state?: ObjectState;
6014
6086
  themeId?: UUID;
@@ -6049,6 +6121,17 @@ export interface TenantDeleteRequest extends BaseEventRequest {
6049
6121
  export interface TenantFormConfiguration {
6050
6122
  adminUserFormId?: UUID;
6051
6123
  }
6124
+ /**
6125
+ * @author Rob Davis
6126
+ */
6127
+ export interface TenantLambdaConfiguration {
6128
+ scimEnterpriseUserRequestConverterId?: UUID;
6129
+ scimEnterpriseUserResponseConverterId?: UUID;
6130
+ scimGroupRequestConverterId?: UUID;
6131
+ scimGroupResponseConverterId?: UUID;
6132
+ scimUserRequestConverterId?: UUID;
6133
+ scimUserResponseConverterId?: UUID;
6134
+ }
6052
6135
  /**
6053
6136
  * @author Daniel DeGroff
6054
6137
  */
@@ -6097,6 +6180,14 @@ export interface TenantResponse {
6097
6180
  tenant?: Tenant;
6098
6181
  tenants?: Array<Tenant>;
6099
6182
  }
6183
+ /**
6184
+ * @author Rob Davis
6185
+ */
6186
+ export interface TenantSCIMServerConfiguration extends Enableable {
6187
+ clientEntityTypeId?: UUID;
6188
+ schemas?: Record<string, any>;
6189
+ serverEntityTypeId?: UUID;
6190
+ }
6100
6191
  /**
6101
6192
  * @author Brett Pontarelli
6102
6193
  */
@@ -6713,6 +6804,24 @@ export interface UserEmailUpdateEvent extends BaseEvent {
6713
6804
  export interface UserEmailVerifiedEvent extends BaseEvent {
6714
6805
  user?: User;
6715
6806
  }
6807
+ /**
6808
+ * Models the User Identity Provider Link Event.
6809
+ *
6810
+ * @author Rob Davis
6811
+ */
6812
+ export interface UserIdentityProviderLinkEvent extends BaseEvent {
6813
+ identityProviderLink?: IdentityProviderLink;
6814
+ user?: User;
6815
+ }
6816
+ /**
6817
+ * Models the User Identity Provider Unlink Event.
6818
+ *
6819
+ * @author Rob Davis
6820
+ */
6821
+ export interface UserIdentityProviderUnlinkEvent extends BaseEvent {
6822
+ identityProviderLink?: IdentityProviderLink;
6823
+ user?: User;
6824
+ }
6716
6825
  /**
6717
6826
  * @author Daniel DeGroff
6718
6827
  */