@workos-inc/widgets 1.13.0 → 1.13.1-next.1780691322935

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.
@@ -613,18 +613,17 @@ type GetDataIntegrationAuthorizeUrlResponse = {
613
613
  interface GetAuthorizationStatusResponse {
614
614
  isConnecting: boolean;
615
615
  }
616
- interface DataIntegrationOverrideResponse {
617
- id: string;
618
- enabled: boolean;
619
- scopes?: string[] | null;
616
+ interface DataIntegrationCredentials {
617
+ credentialsType: "shared" | "custom" | "organization";
618
+ hasCredentials: boolean;
620
619
  /** @nullable */
621
620
  client_id?: string | null;
622
- hasCredentials: boolean;
623
621
  /** @nullable */
624
622
  redactedClientSecret?: string | null;
623
+ redirectUri: string;
625
624
  }
626
- interface DataIntegrationWithOverride {
627
- object: "data_integration";
625
+ interface DataIntegrationConfiguration {
626
+ object: "data_integration_configuration";
628
627
  id: string;
629
628
  name: string;
630
629
  /** @nullable */
@@ -632,17 +631,16 @@ interface DataIntegrationWithOverride {
632
631
  slug: string;
633
632
  integrationType: string;
634
633
  ownership: "userland_user" | "organization";
635
- credentialsType: "shared" | "custom" | "organization";
636
- scopes?: string[] | null;
637
634
  enabled: boolean;
635
+ scopes?: string[] | null;
636
+ defaultScopes: string[];
637
+ availableScopes: string[];
638
+ credentials: DataIntegrationCredentials;
638
639
  createdAt: string;
639
640
  updatedAt: string;
640
- redirectUri: string;
641
- availableScopes: string[];
642
- orgOverride?: DataIntegrationOverrideResponse | null;
643
641
  }
644
- interface DataIntegrationWithOverrideResponse {
645
- data: DataIntegrationWithOverride[];
642
+ interface DataIntegrationConfigurationResponse {
643
+ data: DataIntegrationConfiguration[];
646
644
  }
647
645
  type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
648
646
  declare const DirectoryType: {
@@ -784,6 +782,12 @@ type ExpireOrganizationApiKey404 = {
784
782
  type ExpireOrganizationApiKey409 = {
785
783
  message: string;
786
784
  };
785
+ type ListDataIntegrationConfigurations403 = {
786
+ message: string;
787
+ };
788
+ type ListDataIntegrationConfigurations404 = {
789
+ message: string;
790
+ };
787
791
  type DeleteDataInstallation200 = {
788
792
  success: boolean;
789
793
  };
@@ -796,12 +800,6 @@ type DeleteDataInstallation404 = {
796
800
  type MyDataIntegrations403 = {
797
801
  message: string;
798
802
  };
799
- type ListDataIntegrationOrganizationOverrides403 = {
800
- message: string;
801
- };
802
- type ListDataIntegrationOrganizationOverrides404 = {
803
- message: string;
804
- };
805
803
  type GetDataInstallationAuthorizationStatus400 = {
806
804
  message: string;
807
805
  };
@@ -823,7 +821,7 @@ type GetDataIntegrationAuthorizeUrl403 = {
823
821
  type GetDataIntegrationAuthorizeUrl404 = {
824
822
  message: string;
825
823
  };
826
- type UpsertDataIntegrationOrganizationOverrideBody = {
824
+ type UpsertDataIntegrationConfigurationBody = {
827
825
  enabled?: boolean;
828
826
  scopes?: string[] | null;
829
827
  /** @minLength 1 */
@@ -831,16 +829,16 @@ type UpsertDataIntegrationOrganizationOverrideBody = {
831
829
  /** @minLength 1 */
832
830
  client_secret?: string;
833
831
  };
834
- type UpsertDataIntegrationOrganizationOverride400 = {
832
+ type UpsertDataIntegrationConfiguration400 = {
835
833
  message: string;
836
834
  };
837
- type UpsertDataIntegrationOrganizationOverride403 = {
835
+ type UpsertDataIntegrationConfiguration403 = {
838
836
  message: string;
839
837
  };
840
- type UpsertDataIntegrationOrganizationOverride404 = {
838
+ type UpsertDataIntegrationConfiguration404 = {
841
839
  message: string;
842
840
  };
843
- type UpsertDataIntegrationOrganizationOverride422 = {
841
+ type UpsertDataIntegrationConfiguration422 = {
844
842
  message: string;
845
843
  };
846
844
  type CreateUserApiKey400ErrorsItem = {
@@ -1476,6 +1474,27 @@ type expireOrganizationApiKeyResponseError = (expireOrganizationApiKeyResponse40
1476
1474
  type expireOrganizationApiKeyResponse = expireOrganizationApiKeyResponseSuccess | expireOrganizationApiKeyResponseError;
1477
1475
  declare const getExpireOrganizationApiKeyUrl: (apiKeyId: string) => string;
1478
1476
  declare const expireOrganizationApiKey: (apiKeyId: string, expireOrganizationApiKeyRequest: ExpireOrganizationApiKeyRequest, options?: RequestInit) => Promise<expireOrganizationApiKeyResponse>;
1477
+ type listDataIntegrationConfigurationsResponse200 = {
1478
+ data: DataIntegrationConfigurationResponse;
1479
+ status: 200;
1480
+ };
1481
+ type listDataIntegrationConfigurationsResponse403 = {
1482
+ data: ListDataIntegrationConfigurations403;
1483
+ status: 403;
1484
+ };
1485
+ type listDataIntegrationConfigurationsResponse404 = {
1486
+ data: ListDataIntegrationConfigurations404;
1487
+ status: 404;
1488
+ };
1489
+ type listDataIntegrationConfigurationsResponseSuccess = listDataIntegrationConfigurationsResponse200 & {
1490
+ headers: Headers;
1491
+ };
1492
+ type listDataIntegrationConfigurationsResponseError = (listDataIntegrationConfigurationsResponse403 | listDataIntegrationConfigurationsResponse404) & {
1493
+ headers: Headers;
1494
+ };
1495
+ type listDataIntegrationConfigurationsResponse = listDataIntegrationConfigurationsResponseSuccess | listDataIntegrationConfigurationsResponseError;
1496
+ declare const getListDataIntegrationConfigurationsUrl: () => string;
1497
+ declare const listDataIntegrationConfigurations: (options?: RequestInit) => Promise<listDataIntegrationConfigurationsResponse>;
1479
1498
  type deleteDataInstallationResponse200 = {
1480
1499
  data: DeleteDataInstallation200;
1481
1500
  status: 200;
@@ -1514,27 +1533,6 @@ type myDataIntegrationsResponseError = myDataIntegrationsResponse403 & {
1514
1533
  type myDataIntegrationsResponse = myDataIntegrationsResponseSuccess | myDataIntegrationsResponseError;
1515
1534
  declare const getMyDataIntegrationsUrl: () => string;
1516
1535
  declare const myDataIntegrations: (options?: RequestInit) => Promise<myDataIntegrationsResponse>;
1517
- type listDataIntegrationOrganizationOverridesResponse200 = {
1518
- data: DataIntegrationWithOverrideResponse;
1519
- status: 200;
1520
- };
1521
- type listDataIntegrationOrganizationOverridesResponse403 = {
1522
- data: ListDataIntegrationOrganizationOverrides403;
1523
- status: 403;
1524
- };
1525
- type listDataIntegrationOrganizationOverridesResponse404 = {
1526
- data: ListDataIntegrationOrganizationOverrides404;
1527
- status: 404;
1528
- };
1529
- type listDataIntegrationOrganizationOverridesResponseSuccess = listDataIntegrationOrganizationOverridesResponse200 & {
1530
- headers: Headers;
1531
- };
1532
- type listDataIntegrationOrganizationOverridesResponseError = (listDataIntegrationOrganizationOverridesResponse403 | listDataIntegrationOrganizationOverridesResponse404) & {
1533
- headers: Headers;
1534
- };
1535
- type listDataIntegrationOrganizationOverridesResponse = listDataIntegrationOrganizationOverridesResponseSuccess | listDataIntegrationOrganizationOverridesResponseError;
1536
- declare const getListDataIntegrationOrganizationOverridesUrl: () => string;
1537
- declare const listDataIntegrationOrganizationOverrides: (options?: RequestInit) => Promise<listDataIntegrationOrganizationOverridesResponse>;
1538
1536
  type getDataInstallationAuthorizationStatusResponse200 = {
1539
1537
  data: GetAuthorizationStatusResponse;
1540
1538
  status: 200;
@@ -1585,35 +1583,35 @@ type getDataIntegrationAuthorizeUrlResponseError = (getDataIntegrationAuthorizeU
1585
1583
  type getDataIntegrationAuthorizeUrlResponse = getDataIntegrationAuthorizeUrlResponseSuccess | getDataIntegrationAuthorizeUrlResponseError;
1586
1584
  declare const getGetDataIntegrationAuthorizeUrlUrl: (slug: string, params?: GetDataIntegrationAuthorizeUrlParams) => string;
1587
1585
  declare const getDataIntegrationAuthorizeUrl: (slug: string, params?: GetDataIntegrationAuthorizeUrlParams, options?: RequestInit) => Promise<getDataIntegrationAuthorizeUrlResponse>;
1588
- type upsertDataIntegrationOrganizationOverrideResponse200 = {
1589
- data: DataIntegrationOverrideResponse;
1586
+ type upsertDataIntegrationConfigurationResponse200 = {
1587
+ data: DataIntegrationConfiguration;
1590
1588
  status: 200;
1591
1589
  };
1592
- type upsertDataIntegrationOrganizationOverrideResponse400 = {
1593
- data: UpsertDataIntegrationOrganizationOverride400;
1590
+ type upsertDataIntegrationConfigurationResponse400 = {
1591
+ data: UpsertDataIntegrationConfiguration400;
1594
1592
  status: 400;
1595
1593
  };
1596
- type upsertDataIntegrationOrganizationOverrideResponse403 = {
1597
- data: UpsertDataIntegrationOrganizationOverride403;
1594
+ type upsertDataIntegrationConfigurationResponse403 = {
1595
+ data: UpsertDataIntegrationConfiguration403;
1598
1596
  status: 403;
1599
1597
  };
1600
- type upsertDataIntegrationOrganizationOverrideResponse404 = {
1601
- data: UpsertDataIntegrationOrganizationOverride404;
1598
+ type upsertDataIntegrationConfigurationResponse404 = {
1599
+ data: UpsertDataIntegrationConfiguration404;
1602
1600
  status: 404;
1603
1601
  };
1604
- type upsertDataIntegrationOrganizationOverrideResponse422 = {
1605
- data: UpsertDataIntegrationOrganizationOverride422;
1602
+ type upsertDataIntegrationConfigurationResponse422 = {
1603
+ data: UpsertDataIntegrationConfiguration422;
1606
1604
  status: 422;
1607
1605
  };
1608
- type upsertDataIntegrationOrganizationOverrideResponseSuccess = upsertDataIntegrationOrganizationOverrideResponse200 & {
1606
+ type upsertDataIntegrationConfigurationResponseSuccess = upsertDataIntegrationConfigurationResponse200 & {
1609
1607
  headers: Headers;
1610
1608
  };
1611
- type upsertDataIntegrationOrganizationOverrideResponseError = (upsertDataIntegrationOrganizationOverrideResponse400 | upsertDataIntegrationOrganizationOverrideResponse403 | upsertDataIntegrationOrganizationOverrideResponse404 | upsertDataIntegrationOrganizationOverrideResponse422) & {
1609
+ type upsertDataIntegrationConfigurationResponseError = (upsertDataIntegrationConfigurationResponse400 | upsertDataIntegrationConfigurationResponse403 | upsertDataIntegrationConfigurationResponse404 | upsertDataIntegrationConfigurationResponse422) & {
1612
1610
  headers: Headers;
1613
1611
  };
1614
- type upsertDataIntegrationOrganizationOverrideResponse = upsertDataIntegrationOrganizationOverrideResponseSuccess | upsertDataIntegrationOrganizationOverrideResponseError;
1615
- declare const getUpsertDataIntegrationOrganizationOverrideUrl: (slug: string) => string;
1616
- declare const upsertDataIntegrationOrganizationOverride: (slug: string, upsertDataIntegrationOrganizationOverrideBody: UpsertDataIntegrationOrganizationOverrideBody, options?: RequestInit) => Promise<upsertDataIntegrationOrganizationOverrideResponse>;
1612
+ type upsertDataIntegrationConfigurationResponse = upsertDataIntegrationConfigurationResponseSuccess | upsertDataIntegrationConfigurationResponseError;
1613
+ declare const getUpsertDataIntegrationConfigurationUrl: (slug: string) => string;
1614
+ declare const upsertDataIntegrationConfiguration: (slug: string, upsertDataIntegrationConfigurationBody: UpsertDataIntegrationConfigurationBody, options?: RequestInit) => Promise<upsertDataIntegrationConfigurationResponse>;
1617
1615
  type createUserApiKeyResponse201 = {
1618
1616
  data: CreateUserApiKeyResponse;
1619
1617
  status: 201;
@@ -2601,4 +2599,4 @@ type settingsResponse = settingsResponseSuccess | settingsResponseError;
2601
2599
  declare const getSettingsUrl: () => string;
2602
2600
  declare const settings: (options?: RequestInit) => Promise<settingsResponse>;
2603
2601
 
2604
- export { type ActiveSession, type ActiveSessionCurrentLocation, type ActiveSessionState, type ActiveSessionsResponse, type AuditLogStreamJSON, type AuditLogStreamState, type AuditLogStreamType, type AuthenticationInformation403, type AuthenticationInformationResponse, type AuthenticationInformationResponseData, type AuthenticationInformationResponseDataPasswordSettings, type AuthenticationInformationResponseDataVerificationMethods, type AuthenticationInformationResponseDataVerificationMethodsMfa, type AuthenticationInformationResponseDataVerificationMethodsPasskey, type AuthenticationInformationResponseDataVerificationMethodsPassword, type CreateOrganizationApiKey400, type CreateOrganizationApiKey400ErrorsItem, type CreateOrganizationApiKey403, type CreateOrganizationApiKey404, type CreateOrganizationApiKey422, type CreateOrganizationApiKey422ErrorsItem, type CreateOrganizationApiKeyRequest, type CreateOrganizationApiKeyResponse, type CreatePassword201, type CreatePassword400, type CreatePassword403, type CreatePasswordRequest, type CreateTotpFactor400, type CreateTotpFactor403, type CreateTotpFactorResponse, type CreateTotpFactorResponseAuthenticationChallenge, type CreateTotpFactorResponseAuthenticationFactor, type CreateUserApiKey400, type CreateUserApiKey400ErrorsItem, type CreateUserApiKey403, type CreateUserApiKey404, type CreateUserApiKey422, type CreateUserApiKey422ErrorsItem, type CreateUserApiKeyRequest, type CreateUserApiKeyResponse, type DataInstallation, type DataIntegration, type DataIntegrationOverrideResponse, type DataIntegrationWithOverride, type DataIntegrationWithOverrideResponse, type DataIntegrationsResponse, type DeleteDataInstallation200, type DeleteDataInstallation403, type DeleteDataInstallation404, type DeleteOrganizationApiKey200, type DeleteOrganizationApiKey403, type DeleteOrganizationApiKey404, type DeleteOrganizationDomain403, type DeleteOrganizationDomain404, type DeletePasskey200, type DeletePasskey400, type DeletePasskey403, type DeleteTotpFactors200, type DeleteTotpFactors400, type DeleteTotpFactors403, type DeleteUserApiKey200, type DeleteUserApiKey403, type DeleteUserApiKey404, type DirectoriesResponse, type Directory, type DirectoryMetadata, DirectoryState, DirectoryType, type DirectoryUsersMetadata, DomainVerificationNameServer, type ExpireOrganizationApiKey400, type ExpireOrganizationApiKey400ErrorsItem, type ExpireOrganizationApiKey403, type ExpireOrganizationApiKey404, type ExpireOrganizationApiKey409, type ExpireOrganizationApiKeyRequest, type ExpireUserApiKey400, type ExpireUserApiKey400ErrorsItem, type ExpireUserApiKey403, type ExpireUserApiKey404, type ExpireUserApiKey409, type ExpireUserApiKeyRequest, type GenerateAdminPortalLink201, type GenerateAdminPortalLink403, type GenerateAdminPortalLink404, type GenerateAdminPortalLink500, GenerateAdminPortalLinkIntent, type GenerateAdminPortalLinkParams, type GetAuditLogStream200, type GetAuditLogStream403, type GetAuthorizationStatusResponse, type GetDataInstallationAuthorizationStatus400, type GetDataInstallationAuthorizationStatus403, type GetDataInstallationAuthorizationStatus404, type GetDataIntegrationAuthorizeUrl400, type GetDataIntegrationAuthorizeUrl403, type GetDataIntegrationAuthorizeUrl404, type GetDataIntegrationAuthorizeUrlParams, type GetDataIntegrationAuthorizeUrlResponse, type GetDirectory403, type GetDirectory404, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type InviteMemberResponse, type ListDataIntegrationOrganizationOverrides403, type ListDataIntegrationOrganizationOverrides404, type ListDirectories403, type ListDirectories404, type ListMetadata, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions400ErrorsItem, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, type ListOrganizationApiKeys400ErrorsItem, type ListOrganizationApiKeys403, type ListOrganizationApiKeysParams, type ListOrganizationApiKeysResponse, type ListOrganizationApiKeysResponseData, type ListOrganizationApiKeysResponseListMetadata, type ListOrganizationDomains200, type ListOrganizationDomains403, type ListOrganizationDomains404, type ListUserApiKeyPermission, type ListUserApiKeyPermissions400, type ListUserApiKeyPermissions400ErrorsItem, type ListUserApiKeyPermissions403, type ListUserApiKeyPermissionsParams, type ListUserApiKeyPermissionsResponse, type ListUserApiKeyPermissionsResponseListMetadata, type ListUserApiKeys400, type ListUserApiKeys400ErrorsItem, type ListUserApiKeys403, type ListUserApiKeysParams, type ListUserApiKeysResponse, type ListUserApiKeysResponseData, type ListUserApiKeysResponseDataOwner, type ListUserApiKeysResponseListMetadata, type Me, type Me403, type MeOauthProfiles, type Member, type MemberActions, MemberActionsItem, type MemberRole, type MemberRoles, MemberStatus, type Members403, type Members404, type MembersParams, type MembersResponse, type MyDataIntegrations403, type OAuthProfile, OidcSessionState, type OrganizationDomain, OrganizationDomainState, type OrganizationInfo, type Organizations403, type Organizations404, type OrganizationsResponse, type RegisterPasskey400, type RegisterPasskey403, type RegisterPasskeyResponse, type RegisterPasskeyResponseOptions, type RemoveMember400, type RemoveMember403, type RemoveMember404, type RemoveMemberResponse, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ResendInviteResponse, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsRequest, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeMemberResponse, type RevokeSession200, type RevokeSession400, type RevokeSession403, type Roles403, type Roles404, type RolesAndConfig403, type RolesAndConfig404, type RolesAndConfigResponse, SamlSessionState, type SendEmailChange400, type SendEmailChange403, type SendEmailChange409, type SendEmailChange422, type SendEmailChange429, type SendEmailChangeRequest, type SendEmailChangeResponse, type SendVerification400, type SendVerification403, type SendVerificationResponse, type Sessions403, type Settings403, type SettingsResponse, type SsoConnection, type SsoConnectionSessionJSON, SsoConnectionSessionJSONState, type UpdateMe400, type UpdateMe403, type UpdateMeBody, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdateMemberResponse, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordRequest, type UpsertDataIntegrationOrganizationOverride400, type UpsertDataIntegrationOrganizationOverride403, type UpsertDataIntegrationOrganizationOverride404, type UpsertDataIntegrationOrganizationOverride422, type UpsertDataIntegrationOrganizationOverrideBody, type Verify400, type Verify403, type VerifyEmailChange400, type VerifyEmailChange403, type VerifyEmailChange409, type VerifyEmailChange422, type VerifyEmailChange429, type VerifyEmailChangeRequest, type VerifyEmailChangeResponse, type VerifyPasskey200, type VerifyPasskey400, type VerifyPasskey403, type VerifyPasskeyRequest, type VerifyPasskeyRequestResponse, type VerifyRequest, type VerifyResponse, type VerifyTotpFactor200, type VerifyTotpFactor400, type VerifyTotpFactor403, type VerifyTotpFactorRequest, type X509CertificateJSON, authenticationInformation, type authenticationInformationResponse, type authenticationInformationResponse200, type authenticationInformationResponse403, type authenticationInformationResponseError, type authenticationInformationResponseSuccess, createOrganizationApiKey, type createOrganizationApiKeyResponse, type createOrganizationApiKeyResponse201, type createOrganizationApiKeyResponse400, type createOrganizationApiKeyResponse403, type createOrganizationApiKeyResponse404, type createOrganizationApiKeyResponse422, type createOrganizationApiKeyResponseError, type createOrganizationApiKeyResponseSuccess, createPassword, type createPasswordResponse, type createPasswordResponse201, type createPasswordResponse400, type createPasswordResponse403, type createPasswordResponseError, type createPasswordResponseSuccess, createTotpFactor, type createTotpFactorResponse, type createTotpFactorResponse201, type createTotpFactorResponse400, type createTotpFactorResponse403, type createTotpFactorResponseError, type createTotpFactorResponseSuccess, createUserApiKey, type createUserApiKeyResponse, type createUserApiKeyResponse201, type createUserApiKeyResponse400, type createUserApiKeyResponse403, type createUserApiKeyResponse404, type createUserApiKeyResponse422, type createUserApiKeyResponseError, type createUserApiKeyResponseSuccess, deleteDataInstallation, type deleteDataInstallationResponse, type deleteDataInstallationResponse200, type deleteDataInstallationResponse403, type deleteDataInstallationResponse404, type deleteDataInstallationResponseError, type deleteDataInstallationResponseSuccess, deleteOrganizationApiKey, type deleteOrganizationApiKeyResponse, type deleteOrganizationApiKeyResponse200, type deleteOrganizationApiKeyResponse403, type deleteOrganizationApiKeyResponse404, type deleteOrganizationApiKeyResponseError, type deleteOrganizationApiKeyResponseSuccess, deleteOrganizationDomain, type deleteOrganizationDomainResponse, type deleteOrganizationDomainResponse200, type deleteOrganizationDomainResponse403, type deleteOrganizationDomainResponse404, type deleteOrganizationDomainResponseError, type deleteOrganizationDomainResponseSuccess, deletePasskey, type deletePasskeyResponse, type deletePasskeyResponse200, type deletePasskeyResponse400, type deletePasskeyResponse403, type deletePasskeyResponseError, type deletePasskeyResponseSuccess, deleteTotpFactors, type deleteTotpFactorsResponse, type deleteTotpFactorsResponse200, type deleteTotpFactorsResponse400, type deleteTotpFactorsResponse403, type deleteTotpFactorsResponseError, type deleteTotpFactorsResponseSuccess, deleteUserApiKey, type deleteUserApiKeyResponse, type deleteUserApiKeyResponse200, type deleteUserApiKeyResponse403, type deleteUserApiKeyResponse404, type deleteUserApiKeyResponseError, type deleteUserApiKeyResponseSuccess, expireOrganizationApiKey, type expireOrganizationApiKeyResponse, type expireOrganizationApiKeyResponse200, type expireOrganizationApiKeyResponse400, type expireOrganizationApiKeyResponse403, type expireOrganizationApiKeyResponse404, type expireOrganizationApiKeyResponse409, type expireOrganizationApiKeyResponseError, type expireOrganizationApiKeyResponseSuccess, expireUserApiKey, type expireUserApiKeyResponse, type expireUserApiKeyResponse200, type expireUserApiKeyResponse400, type expireUserApiKeyResponse403, type expireUserApiKeyResponse404, type expireUserApiKeyResponse409, type expireUserApiKeyResponseError, type expireUserApiKeyResponseSuccess, generateAdminPortalLink, type generateAdminPortalLinkResponse, type generateAdminPortalLinkResponse201, type generateAdminPortalLinkResponse403, type generateAdminPortalLinkResponse404, type generateAdminPortalLinkResponse500, type generateAdminPortalLinkResponseError, type generateAdminPortalLinkResponseSuccess, getAuditLogStream, type getAuditLogStreamResponse, type getAuditLogStreamResponse200, type getAuditLogStreamResponse403, type getAuditLogStreamResponseError, type getAuditLogStreamResponseSuccess, getAuthenticationInformationUrl, getCreateOrganizationApiKeyUrl, getCreatePasswordUrl, getCreateTotpFactorUrl, getCreateUserApiKeyUrl, getDataInstallationAuthorizationStatus, type getDataInstallationAuthorizationStatusResponse, type getDataInstallationAuthorizationStatusResponse200, type getDataInstallationAuthorizationStatusResponse400, type getDataInstallationAuthorizationStatusResponse403, type getDataInstallationAuthorizationStatusResponse404, type getDataInstallationAuthorizationStatusResponseError, type getDataInstallationAuthorizationStatusResponseSuccess, getDataIntegrationAuthorizeUrl, type getDataIntegrationAuthorizeUrlResponse, type getDataIntegrationAuthorizeUrlResponse200, type getDataIntegrationAuthorizeUrlResponse400, type getDataIntegrationAuthorizeUrlResponse403, type getDataIntegrationAuthorizeUrlResponse404, type getDataIntegrationAuthorizeUrlResponseError, type getDataIntegrationAuthorizeUrlResponseSuccess, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainUrl, getDeletePasskeyUrl, getDeleteTotpFactorsUrl, getDeleteUserApiKeyUrl, getDirectory, type getDirectoryResponse, type getDirectoryResponse200, type getDirectoryResponse403, type getDirectoryResponse404, type getDirectoryResponseError, type getDirectoryResponseSuccess, getExpireOrganizationApiKeyUrl, getExpireUserApiKeyUrl, getGenerateAdminPortalLinkUrl, getGetAuditLogStreamUrl, getGetDataInstallationAuthorizationStatusUrl, getGetDataIntegrationAuthorizeUrlUrl, getGetDirectoryUrl, getInviteMemberUrl, getListDataIntegrationOrganizationOverridesUrl, getListDirectoriesUrl, getListOrganizationApiKeyPermissionsUrl, getListOrganizationApiKeysUrl, getListOrganizationDomainsUrl, getListSsoConnectionsUrl, getListUserApiKeyPermissionsUrl, getListUserApiKeysUrl, getMeUrl, getMembersUrl, getMyDataIntegrationsUrl, getOrganizationsUrl, getRegisterPasskeyUrl, getRemoveMemberUrl, getResendInviteUrl, getReverifyOrganizationDomainUrl, getRevokeAllSessionsUrl, getRevokeInviteUrl, getRevokeSessionUrl, getRolesAndConfigUrl, getRolesUrl, getSendEmailChangeUrl, getSendVerificationUrl, getSessionsUrl, getSettingsUrl, getUpdateMeUrl, getUpdateMemberUrl, getUpdatePasswordUrl, getUpsertDataIntegrationOrganizationOverrideUrl, getVerifyEmailChangeUrl, getVerifyPasskeyUrl, getVerifyTotpFactorUrl, getVerifyUrl, inviteMember, type inviteMemberResponse, type inviteMemberResponse201, type inviteMemberResponse400, type inviteMemberResponse403, type inviteMemberResponse404, type inviteMemberResponseError, type inviteMemberResponseSuccess, listDataIntegrationOrganizationOverrides, type listDataIntegrationOrganizationOverridesResponse, type listDataIntegrationOrganizationOverridesResponse200, type listDataIntegrationOrganizationOverridesResponse403, type listDataIntegrationOrganizationOverridesResponse404, type listDataIntegrationOrganizationOverridesResponseError, type listDataIntegrationOrganizationOverridesResponseSuccess, listDirectories, type listDirectoriesResponse, type listDirectoriesResponse200, type listDirectoriesResponse403, type listDirectoriesResponse404, type listDirectoriesResponseError, type listDirectoriesResponseSuccess, listOrganizationApiKeyPermissions, type listOrganizationApiKeyPermissionsResponse, type listOrganizationApiKeyPermissionsResponse200, type listOrganizationApiKeyPermissionsResponse400, type listOrganizationApiKeyPermissionsResponse403, type listOrganizationApiKeyPermissionsResponseError, type listOrganizationApiKeyPermissionsResponseSuccess, listOrganizationApiKeys, type listOrganizationApiKeysResponse, type listOrganizationApiKeysResponse200, type listOrganizationApiKeysResponse400, type listOrganizationApiKeysResponse403, type listOrganizationApiKeysResponseError, type listOrganizationApiKeysResponseSuccess, listOrganizationDomains, type listOrganizationDomainsResponse, type listOrganizationDomainsResponse200, type listOrganizationDomainsResponse403, type listOrganizationDomainsResponse404, type listOrganizationDomainsResponseError, type listOrganizationDomainsResponseSuccess, listSsoConnections, type listSsoConnectionsResponse, type listSsoConnectionsResponse200, type listSsoConnectionsResponseSuccess, listUserApiKeyPermissions, type listUserApiKeyPermissionsResponse, type listUserApiKeyPermissionsResponse200, type listUserApiKeyPermissionsResponse400, type listUserApiKeyPermissionsResponse403, type listUserApiKeyPermissionsResponseError, type listUserApiKeyPermissionsResponseSuccess, listUserApiKeys, type listUserApiKeysResponse, type listUserApiKeysResponse200, type listUserApiKeysResponse400, type listUserApiKeysResponse403, type listUserApiKeysResponseError, type listUserApiKeysResponseSuccess, me, type meResponse, type meResponse200, type meResponse403, type meResponseError, type meResponseSuccess, members, type membersResponse, type membersResponse200, type membersResponse403, type membersResponse404, type membersResponseError, type membersResponseSuccess, myDataIntegrations, type myDataIntegrationsResponse, type myDataIntegrationsResponse200, type myDataIntegrationsResponse403, type myDataIntegrationsResponseError, type myDataIntegrationsResponseSuccess, organizations, type organizationsResponse, type organizationsResponse200, type organizationsResponse403, type organizationsResponse404, type organizationsResponseError, type organizationsResponseSuccess, registerPasskey, type registerPasskeyResponse, type registerPasskeyResponse201, type registerPasskeyResponse400, type registerPasskeyResponse403, type registerPasskeyResponseError, type registerPasskeyResponseSuccess, removeMember, type removeMemberResponse, type removeMemberResponse200, type removeMemberResponse400, type removeMemberResponse403, type removeMemberResponse404, type removeMemberResponseError, type removeMemberResponseSuccess, resendInvite, type resendInviteResponse, type resendInviteResponse201, type resendInviteResponse400, type resendInviteResponse403, type resendInviteResponse404, type resendInviteResponse422, type resendInviteResponseError, type resendInviteResponseSuccess, reverifyOrganizationDomain, type reverifyOrganizationDomainResponse, type reverifyOrganizationDomainResponse200, type reverifyOrganizationDomainResponse403, type reverifyOrganizationDomainResponse404, type reverifyOrganizationDomainResponseError, type reverifyOrganizationDomainResponseSuccess, revokeAllSessions, type revokeAllSessionsResponse, type revokeAllSessionsResponse200, type revokeAllSessionsResponse400, type revokeAllSessionsResponse403, type revokeAllSessionsResponseError, type revokeAllSessionsResponseSuccess, revokeInvite, type revokeInviteResponse, type revokeInviteResponse200, type revokeInviteResponse400, type revokeInviteResponse403, type revokeInviteResponse404, type revokeInviteResponseError, type revokeInviteResponseSuccess, revokeSession, type revokeSessionResponse, type revokeSessionResponse200, type revokeSessionResponse400, type revokeSessionResponse403, type revokeSessionResponseError, type revokeSessionResponseSuccess, roles, rolesAndConfig, type rolesAndConfigResponse, type rolesAndConfigResponse200, type rolesAndConfigResponse403, type rolesAndConfigResponse404, type rolesAndConfigResponseError, type rolesAndConfigResponseSuccess, type rolesResponse, type rolesResponse200, type rolesResponse403, type rolesResponse404, type rolesResponseError, type rolesResponseSuccess, sendEmailChange, type sendEmailChangeResponse, type sendEmailChangeResponse200, type sendEmailChangeResponse400, type sendEmailChangeResponse403, type sendEmailChangeResponse409, type sendEmailChangeResponse422, type sendEmailChangeResponse429, type sendEmailChangeResponseError, type sendEmailChangeResponseSuccess, sendVerification, type sendVerificationResponse, type sendVerificationResponse200, type sendVerificationResponse400, type sendVerificationResponse403, type sendVerificationResponseError, type sendVerificationResponseSuccess, sessions, type sessionsResponse, type sessionsResponse200, type sessionsResponse403, type sessionsResponseError, type sessionsResponseSuccess, settings, type settingsResponse, type settingsResponse200, type settingsResponse403, type settingsResponseError, type settingsResponseSuccess, updateMe, type updateMeResponse, type updateMeResponse200, type updateMeResponse400, type updateMeResponse403, type updateMeResponseError, type updateMeResponseSuccess, updateMember, type updateMemberResponse, type updateMemberResponse200, type updateMemberResponse400, type updateMemberResponse403, type updateMemberResponse404, type updateMemberResponse422, type updateMemberResponseError, type updateMemberResponseSuccess, updatePassword, type updatePasswordResponse, type updatePasswordResponse201, type updatePasswordResponse400, type updatePasswordResponse403, type updatePasswordResponseError, type updatePasswordResponseSuccess, upsertDataIntegrationOrganizationOverride, type upsertDataIntegrationOrganizationOverrideResponse, type upsertDataIntegrationOrganizationOverrideResponse200, type upsertDataIntegrationOrganizationOverrideResponse400, type upsertDataIntegrationOrganizationOverrideResponse403, type upsertDataIntegrationOrganizationOverrideResponse404, type upsertDataIntegrationOrganizationOverrideResponse422, type upsertDataIntegrationOrganizationOverrideResponseError, type upsertDataIntegrationOrganizationOverrideResponseSuccess, verify, verifyEmailChange, type verifyEmailChangeResponse, type verifyEmailChangeResponse200, type verifyEmailChangeResponse400, type verifyEmailChangeResponse403, type verifyEmailChangeResponse409, type verifyEmailChangeResponse422, type verifyEmailChangeResponse429, type verifyEmailChangeResponseError, type verifyEmailChangeResponseSuccess, verifyPasskey, type verifyPasskeyResponse, type verifyPasskeyResponse200, type verifyPasskeyResponse400, type verifyPasskeyResponse403, type verifyPasskeyResponseError, type verifyPasskeyResponseSuccess, type verifyResponse, type verifyResponse200, type verifyResponse400, type verifyResponse403, type verifyResponseError, type verifyResponseSuccess, verifyTotpFactor, type verifyTotpFactorResponse, type verifyTotpFactorResponse200, type verifyTotpFactorResponse400, type verifyTotpFactorResponse403, type verifyTotpFactorResponseError, type verifyTotpFactorResponseSuccess };
2602
+ export { type ActiveSession, type ActiveSessionCurrentLocation, type ActiveSessionState, type ActiveSessionsResponse, type AuditLogStreamJSON, type AuditLogStreamState, type AuditLogStreamType, type AuthenticationInformation403, type AuthenticationInformationResponse, type AuthenticationInformationResponseData, type AuthenticationInformationResponseDataPasswordSettings, type AuthenticationInformationResponseDataVerificationMethods, type AuthenticationInformationResponseDataVerificationMethodsMfa, type AuthenticationInformationResponseDataVerificationMethodsPasskey, type AuthenticationInformationResponseDataVerificationMethodsPassword, type CreateOrganizationApiKey400, type CreateOrganizationApiKey400ErrorsItem, type CreateOrganizationApiKey403, type CreateOrganizationApiKey404, type CreateOrganizationApiKey422, type CreateOrganizationApiKey422ErrorsItem, type CreateOrganizationApiKeyRequest, type CreateOrganizationApiKeyResponse, type CreatePassword201, type CreatePassword400, type CreatePassword403, type CreatePasswordRequest, type CreateTotpFactor400, type CreateTotpFactor403, type CreateTotpFactorResponse, type CreateTotpFactorResponseAuthenticationChallenge, type CreateTotpFactorResponseAuthenticationFactor, type CreateUserApiKey400, type CreateUserApiKey400ErrorsItem, type CreateUserApiKey403, type CreateUserApiKey404, type CreateUserApiKey422, type CreateUserApiKey422ErrorsItem, type CreateUserApiKeyRequest, type CreateUserApiKeyResponse, type DataInstallation, type DataIntegration, type DataIntegrationConfiguration, type DataIntegrationConfigurationResponse, type DataIntegrationCredentials, type DataIntegrationsResponse, type DeleteDataInstallation200, type DeleteDataInstallation403, type DeleteDataInstallation404, type DeleteOrganizationApiKey200, type DeleteOrganizationApiKey403, type DeleteOrganizationApiKey404, type DeleteOrganizationDomain403, type DeleteOrganizationDomain404, type DeletePasskey200, type DeletePasskey400, type DeletePasskey403, type DeleteTotpFactors200, type DeleteTotpFactors400, type DeleteTotpFactors403, type DeleteUserApiKey200, type DeleteUserApiKey403, type DeleteUserApiKey404, type DirectoriesResponse, type Directory, type DirectoryMetadata, DirectoryState, DirectoryType, type DirectoryUsersMetadata, DomainVerificationNameServer, type ExpireOrganizationApiKey400, type ExpireOrganizationApiKey400ErrorsItem, type ExpireOrganizationApiKey403, type ExpireOrganizationApiKey404, type ExpireOrganizationApiKey409, type ExpireOrganizationApiKeyRequest, type ExpireUserApiKey400, type ExpireUserApiKey400ErrorsItem, type ExpireUserApiKey403, type ExpireUserApiKey404, type ExpireUserApiKey409, type ExpireUserApiKeyRequest, type GenerateAdminPortalLink201, type GenerateAdminPortalLink403, type GenerateAdminPortalLink404, type GenerateAdminPortalLink500, GenerateAdminPortalLinkIntent, type GenerateAdminPortalLinkParams, type GetAuditLogStream200, type GetAuditLogStream403, type GetAuthorizationStatusResponse, type GetDataInstallationAuthorizationStatus400, type GetDataInstallationAuthorizationStatus403, type GetDataInstallationAuthorizationStatus404, type GetDataIntegrationAuthorizeUrl400, type GetDataIntegrationAuthorizeUrl403, type GetDataIntegrationAuthorizeUrl404, type GetDataIntegrationAuthorizeUrlParams, type GetDataIntegrationAuthorizeUrlResponse, type GetDirectory403, type GetDirectory404, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type InviteMemberResponse, type ListDataIntegrationConfigurations403, type ListDataIntegrationConfigurations404, type ListDirectories403, type ListDirectories404, type ListMetadata, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions400ErrorsItem, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, type ListOrganizationApiKeys400ErrorsItem, type ListOrganizationApiKeys403, type ListOrganizationApiKeysParams, type ListOrganizationApiKeysResponse, type ListOrganizationApiKeysResponseData, type ListOrganizationApiKeysResponseListMetadata, type ListOrganizationDomains200, type ListOrganizationDomains403, type ListOrganizationDomains404, type ListUserApiKeyPermission, type ListUserApiKeyPermissions400, type ListUserApiKeyPermissions400ErrorsItem, type ListUserApiKeyPermissions403, type ListUserApiKeyPermissionsParams, type ListUserApiKeyPermissionsResponse, type ListUserApiKeyPermissionsResponseListMetadata, type ListUserApiKeys400, type ListUserApiKeys400ErrorsItem, type ListUserApiKeys403, type ListUserApiKeysParams, type ListUserApiKeysResponse, type ListUserApiKeysResponseData, type ListUserApiKeysResponseDataOwner, type ListUserApiKeysResponseListMetadata, type Me, type Me403, type MeOauthProfiles, type Member, type MemberActions, MemberActionsItem, type MemberRole, type MemberRoles, MemberStatus, type Members403, type Members404, type MembersParams, type MembersResponse, type MyDataIntegrations403, type OAuthProfile, OidcSessionState, type OrganizationDomain, OrganizationDomainState, type OrganizationInfo, type Organizations403, type Organizations404, type OrganizationsResponse, type RegisterPasskey400, type RegisterPasskey403, type RegisterPasskeyResponse, type RegisterPasskeyResponseOptions, type RemoveMember400, type RemoveMember403, type RemoveMember404, type RemoveMemberResponse, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ResendInviteResponse, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsRequest, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeMemberResponse, type RevokeSession200, type RevokeSession400, type RevokeSession403, type Roles403, type Roles404, type RolesAndConfig403, type RolesAndConfig404, type RolesAndConfigResponse, SamlSessionState, type SendEmailChange400, type SendEmailChange403, type SendEmailChange409, type SendEmailChange422, type SendEmailChange429, type SendEmailChangeRequest, type SendEmailChangeResponse, type SendVerification400, type SendVerification403, type SendVerificationResponse, type Sessions403, type Settings403, type SettingsResponse, type SsoConnection, type SsoConnectionSessionJSON, SsoConnectionSessionJSONState, type UpdateMe400, type UpdateMe403, type UpdateMeBody, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdateMemberResponse, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordRequest, type UpsertDataIntegrationConfiguration400, type UpsertDataIntegrationConfiguration403, type UpsertDataIntegrationConfiguration404, type UpsertDataIntegrationConfiguration422, type UpsertDataIntegrationConfigurationBody, type Verify400, type Verify403, type VerifyEmailChange400, type VerifyEmailChange403, type VerifyEmailChange409, type VerifyEmailChange422, type VerifyEmailChange429, type VerifyEmailChangeRequest, type VerifyEmailChangeResponse, type VerifyPasskey200, type VerifyPasskey400, type VerifyPasskey403, type VerifyPasskeyRequest, type VerifyPasskeyRequestResponse, type VerifyRequest, type VerifyResponse, type VerifyTotpFactor200, type VerifyTotpFactor400, type VerifyTotpFactor403, type VerifyTotpFactorRequest, type X509CertificateJSON, authenticationInformation, type authenticationInformationResponse, type authenticationInformationResponse200, type authenticationInformationResponse403, type authenticationInformationResponseError, type authenticationInformationResponseSuccess, createOrganizationApiKey, type createOrganizationApiKeyResponse, type createOrganizationApiKeyResponse201, type createOrganizationApiKeyResponse400, type createOrganizationApiKeyResponse403, type createOrganizationApiKeyResponse404, type createOrganizationApiKeyResponse422, type createOrganizationApiKeyResponseError, type createOrganizationApiKeyResponseSuccess, createPassword, type createPasswordResponse, type createPasswordResponse201, type createPasswordResponse400, type createPasswordResponse403, type createPasswordResponseError, type createPasswordResponseSuccess, createTotpFactor, type createTotpFactorResponse, type createTotpFactorResponse201, type createTotpFactorResponse400, type createTotpFactorResponse403, type createTotpFactorResponseError, type createTotpFactorResponseSuccess, createUserApiKey, type createUserApiKeyResponse, type createUserApiKeyResponse201, type createUserApiKeyResponse400, type createUserApiKeyResponse403, type createUserApiKeyResponse404, type createUserApiKeyResponse422, type createUserApiKeyResponseError, type createUserApiKeyResponseSuccess, deleteDataInstallation, type deleteDataInstallationResponse, type deleteDataInstallationResponse200, type deleteDataInstallationResponse403, type deleteDataInstallationResponse404, type deleteDataInstallationResponseError, type deleteDataInstallationResponseSuccess, deleteOrganizationApiKey, type deleteOrganizationApiKeyResponse, type deleteOrganizationApiKeyResponse200, type deleteOrganizationApiKeyResponse403, type deleteOrganizationApiKeyResponse404, type deleteOrganizationApiKeyResponseError, type deleteOrganizationApiKeyResponseSuccess, deleteOrganizationDomain, type deleteOrganizationDomainResponse, type deleteOrganizationDomainResponse200, type deleteOrganizationDomainResponse403, type deleteOrganizationDomainResponse404, type deleteOrganizationDomainResponseError, type deleteOrganizationDomainResponseSuccess, deletePasskey, type deletePasskeyResponse, type deletePasskeyResponse200, type deletePasskeyResponse400, type deletePasskeyResponse403, type deletePasskeyResponseError, type deletePasskeyResponseSuccess, deleteTotpFactors, type deleteTotpFactorsResponse, type deleteTotpFactorsResponse200, type deleteTotpFactorsResponse400, type deleteTotpFactorsResponse403, type deleteTotpFactorsResponseError, type deleteTotpFactorsResponseSuccess, deleteUserApiKey, type deleteUserApiKeyResponse, type deleteUserApiKeyResponse200, type deleteUserApiKeyResponse403, type deleteUserApiKeyResponse404, type deleteUserApiKeyResponseError, type deleteUserApiKeyResponseSuccess, expireOrganizationApiKey, type expireOrganizationApiKeyResponse, type expireOrganizationApiKeyResponse200, type expireOrganizationApiKeyResponse400, type expireOrganizationApiKeyResponse403, type expireOrganizationApiKeyResponse404, type expireOrganizationApiKeyResponse409, type expireOrganizationApiKeyResponseError, type expireOrganizationApiKeyResponseSuccess, expireUserApiKey, type expireUserApiKeyResponse, type expireUserApiKeyResponse200, type expireUserApiKeyResponse400, type expireUserApiKeyResponse403, type expireUserApiKeyResponse404, type expireUserApiKeyResponse409, type expireUserApiKeyResponseError, type expireUserApiKeyResponseSuccess, generateAdminPortalLink, type generateAdminPortalLinkResponse, type generateAdminPortalLinkResponse201, type generateAdminPortalLinkResponse403, type generateAdminPortalLinkResponse404, type generateAdminPortalLinkResponse500, type generateAdminPortalLinkResponseError, type generateAdminPortalLinkResponseSuccess, getAuditLogStream, type getAuditLogStreamResponse, type getAuditLogStreamResponse200, type getAuditLogStreamResponse403, type getAuditLogStreamResponseError, type getAuditLogStreamResponseSuccess, getAuthenticationInformationUrl, getCreateOrganizationApiKeyUrl, getCreatePasswordUrl, getCreateTotpFactorUrl, getCreateUserApiKeyUrl, getDataInstallationAuthorizationStatus, type getDataInstallationAuthorizationStatusResponse, type getDataInstallationAuthorizationStatusResponse200, type getDataInstallationAuthorizationStatusResponse400, type getDataInstallationAuthorizationStatusResponse403, type getDataInstallationAuthorizationStatusResponse404, type getDataInstallationAuthorizationStatusResponseError, type getDataInstallationAuthorizationStatusResponseSuccess, getDataIntegrationAuthorizeUrl, type getDataIntegrationAuthorizeUrlResponse, type getDataIntegrationAuthorizeUrlResponse200, type getDataIntegrationAuthorizeUrlResponse400, type getDataIntegrationAuthorizeUrlResponse403, type getDataIntegrationAuthorizeUrlResponse404, type getDataIntegrationAuthorizeUrlResponseError, type getDataIntegrationAuthorizeUrlResponseSuccess, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainUrl, getDeletePasskeyUrl, getDeleteTotpFactorsUrl, getDeleteUserApiKeyUrl, getDirectory, type getDirectoryResponse, type getDirectoryResponse200, type getDirectoryResponse403, type getDirectoryResponse404, type getDirectoryResponseError, type getDirectoryResponseSuccess, getExpireOrganizationApiKeyUrl, getExpireUserApiKeyUrl, getGenerateAdminPortalLinkUrl, getGetAuditLogStreamUrl, getGetDataInstallationAuthorizationStatusUrl, getGetDataIntegrationAuthorizeUrlUrl, getGetDirectoryUrl, getInviteMemberUrl, getListDataIntegrationConfigurationsUrl, getListDirectoriesUrl, getListOrganizationApiKeyPermissionsUrl, getListOrganizationApiKeysUrl, getListOrganizationDomainsUrl, getListSsoConnectionsUrl, getListUserApiKeyPermissionsUrl, getListUserApiKeysUrl, getMeUrl, getMembersUrl, getMyDataIntegrationsUrl, getOrganizationsUrl, getRegisterPasskeyUrl, getRemoveMemberUrl, getResendInviteUrl, getReverifyOrganizationDomainUrl, getRevokeAllSessionsUrl, getRevokeInviteUrl, getRevokeSessionUrl, getRolesAndConfigUrl, getRolesUrl, getSendEmailChangeUrl, getSendVerificationUrl, getSessionsUrl, getSettingsUrl, getUpdateMeUrl, getUpdateMemberUrl, getUpdatePasswordUrl, getUpsertDataIntegrationConfigurationUrl, getVerifyEmailChangeUrl, getVerifyPasskeyUrl, getVerifyTotpFactorUrl, getVerifyUrl, inviteMember, type inviteMemberResponse, type inviteMemberResponse201, type inviteMemberResponse400, type inviteMemberResponse403, type inviteMemberResponse404, type inviteMemberResponseError, type inviteMemberResponseSuccess, listDataIntegrationConfigurations, type listDataIntegrationConfigurationsResponse, type listDataIntegrationConfigurationsResponse200, type listDataIntegrationConfigurationsResponse403, type listDataIntegrationConfigurationsResponse404, type listDataIntegrationConfigurationsResponseError, type listDataIntegrationConfigurationsResponseSuccess, listDirectories, type listDirectoriesResponse, type listDirectoriesResponse200, type listDirectoriesResponse403, type listDirectoriesResponse404, type listDirectoriesResponseError, type listDirectoriesResponseSuccess, listOrganizationApiKeyPermissions, type listOrganizationApiKeyPermissionsResponse, type listOrganizationApiKeyPermissionsResponse200, type listOrganizationApiKeyPermissionsResponse400, type listOrganizationApiKeyPermissionsResponse403, type listOrganizationApiKeyPermissionsResponseError, type listOrganizationApiKeyPermissionsResponseSuccess, listOrganizationApiKeys, type listOrganizationApiKeysResponse, type listOrganizationApiKeysResponse200, type listOrganizationApiKeysResponse400, type listOrganizationApiKeysResponse403, type listOrganizationApiKeysResponseError, type listOrganizationApiKeysResponseSuccess, listOrganizationDomains, type listOrganizationDomainsResponse, type listOrganizationDomainsResponse200, type listOrganizationDomainsResponse403, type listOrganizationDomainsResponse404, type listOrganizationDomainsResponseError, type listOrganizationDomainsResponseSuccess, listSsoConnections, type listSsoConnectionsResponse, type listSsoConnectionsResponse200, type listSsoConnectionsResponseSuccess, listUserApiKeyPermissions, type listUserApiKeyPermissionsResponse, type listUserApiKeyPermissionsResponse200, type listUserApiKeyPermissionsResponse400, type listUserApiKeyPermissionsResponse403, type listUserApiKeyPermissionsResponseError, type listUserApiKeyPermissionsResponseSuccess, listUserApiKeys, type listUserApiKeysResponse, type listUserApiKeysResponse200, type listUserApiKeysResponse400, type listUserApiKeysResponse403, type listUserApiKeysResponseError, type listUserApiKeysResponseSuccess, me, type meResponse, type meResponse200, type meResponse403, type meResponseError, type meResponseSuccess, members, type membersResponse, type membersResponse200, type membersResponse403, type membersResponse404, type membersResponseError, type membersResponseSuccess, myDataIntegrations, type myDataIntegrationsResponse, type myDataIntegrationsResponse200, type myDataIntegrationsResponse403, type myDataIntegrationsResponseError, type myDataIntegrationsResponseSuccess, organizations, type organizationsResponse, type organizationsResponse200, type organizationsResponse403, type organizationsResponse404, type organizationsResponseError, type organizationsResponseSuccess, registerPasskey, type registerPasskeyResponse, type registerPasskeyResponse201, type registerPasskeyResponse400, type registerPasskeyResponse403, type registerPasskeyResponseError, type registerPasskeyResponseSuccess, removeMember, type removeMemberResponse, type removeMemberResponse200, type removeMemberResponse400, type removeMemberResponse403, type removeMemberResponse404, type removeMemberResponseError, type removeMemberResponseSuccess, resendInvite, type resendInviteResponse, type resendInviteResponse201, type resendInviteResponse400, type resendInviteResponse403, type resendInviteResponse404, type resendInviteResponse422, type resendInviteResponseError, type resendInviteResponseSuccess, reverifyOrganizationDomain, type reverifyOrganizationDomainResponse, type reverifyOrganizationDomainResponse200, type reverifyOrganizationDomainResponse403, type reverifyOrganizationDomainResponse404, type reverifyOrganizationDomainResponseError, type reverifyOrganizationDomainResponseSuccess, revokeAllSessions, type revokeAllSessionsResponse, type revokeAllSessionsResponse200, type revokeAllSessionsResponse400, type revokeAllSessionsResponse403, type revokeAllSessionsResponseError, type revokeAllSessionsResponseSuccess, revokeInvite, type revokeInviteResponse, type revokeInviteResponse200, type revokeInviteResponse400, type revokeInviteResponse403, type revokeInviteResponse404, type revokeInviteResponseError, type revokeInviteResponseSuccess, revokeSession, type revokeSessionResponse, type revokeSessionResponse200, type revokeSessionResponse400, type revokeSessionResponse403, type revokeSessionResponseError, type revokeSessionResponseSuccess, roles, rolesAndConfig, type rolesAndConfigResponse, type rolesAndConfigResponse200, type rolesAndConfigResponse403, type rolesAndConfigResponse404, type rolesAndConfigResponseError, type rolesAndConfigResponseSuccess, type rolesResponse, type rolesResponse200, type rolesResponse403, type rolesResponse404, type rolesResponseError, type rolesResponseSuccess, sendEmailChange, type sendEmailChangeResponse, type sendEmailChangeResponse200, type sendEmailChangeResponse400, type sendEmailChangeResponse403, type sendEmailChangeResponse409, type sendEmailChangeResponse422, type sendEmailChangeResponse429, type sendEmailChangeResponseError, type sendEmailChangeResponseSuccess, sendVerification, type sendVerificationResponse, type sendVerificationResponse200, type sendVerificationResponse400, type sendVerificationResponse403, type sendVerificationResponseError, type sendVerificationResponseSuccess, sessions, type sessionsResponse, type sessionsResponse200, type sessionsResponse403, type sessionsResponseError, type sessionsResponseSuccess, settings, type settingsResponse, type settingsResponse200, type settingsResponse403, type settingsResponseError, type settingsResponseSuccess, updateMe, type updateMeResponse, type updateMeResponse200, type updateMeResponse400, type updateMeResponse403, type updateMeResponseError, type updateMeResponseSuccess, updateMember, type updateMemberResponse, type updateMemberResponse200, type updateMemberResponse400, type updateMemberResponse403, type updateMemberResponse404, type updateMemberResponse422, type updateMemberResponseError, type updateMemberResponseSuccess, updatePassword, type updatePasswordResponse, type updatePasswordResponse201, type updatePasswordResponse400, type updatePasswordResponse403, type updatePasswordResponseError, type updatePasswordResponseSuccess, upsertDataIntegrationConfiguration, type upsertDataIntegrationConfigurationResponse, type upsertDataIntegrationConfigurationResponse200, type upsertDataIntegrationConfigurationResponse400, type upsertDataIntegrationConfigurationResponse403, type upsertDataIntegrationConfigurationResponse404, type upsertDataIntegrationConfigurationResponse422, type upsertDataIntegrationConfigurationResponseError, type upsertDataIntegrationConfigurationResponseSuccess, verify, verifyEmailChange, type verifyEmailChangeResponse, type verifyEmailChangeResponse200, type verifyEmailChangeResponse400, type verifyEmailChangeResponse403, type verifyEmailChangeResponse409, type verifyEmailChangeResponse422, type verifyEmailChangeResponse429, type verifyEmailChangeResponseError, type verifyEmailChangeResponseSuccess, verifyPasskey, type verifyPasskeyResponse, type verifyPasskeyResponse200, type verifyPasskeyResponse400, type verifyPasskeyResponse403, type verifyPasskeyResponseError, type verifyPasskeyResponseSuccess, type verifyResponse, type verifyResponse200, type verifyResponse400, type verifyResponse403, type verifyResponseError, type verifyResponseSuccess, verifyTotpFactor, type verifyTotpFactorResponse, type verifyTotpFactorResponse200, type verifyTotpFactorResponse400, type verifyTotpFactorResponse403, type verifyTotpFactorResponseError, type verifyTotpFactorResponseSuccess };
@@ -89,9 +89,9 @@ __export(react_query_exports, {
89
89
  getGetDirectoryUrl: () => getGetDirectoryUrl,
90
90
  getInviteMemberMutationOptions: () => getInviteMemberMutationOptions,
91
91
  getInviteMemberUrl: () => getInviteMemberUrl,
92
- getListDataIntegrationOrganizationOverridesQueryKey: () => getListDataIntegrationOrganizationOverridesQueryKey,
93
- getListDataIntegrationOrganizationOverridesQueryOptions: () => getListDataIntegrationOrganizationOverridesQueryOptions,
94
- getListDataIntegrationOrganizationOverridesUrl: () => getListDataIntegrationOrganizationOverridesUrl,
92
+ getListDataIntegrationConfigurationsQueryKey: () => getListDataIntegrationConfigurationsQueryKey,
93
+ getListDataIntegrationConfigurationsQueryOptions: () => getListDataIntegrationConfigurationsQueryOptions,
94
+ getListDataIntegrationConfigurationsUrl: () => getListDataIntegrationConfigurationsUrl,
95
95
  getListDirectoriesQueryKey: () => getListDirectoriesQueryKey,
96
96
  getListDirectoriesQueryOptions: () => getListDirectoriesQueryOptions,
97
97
  getListDirectoriesUrl: () => getListDirectoriesUrl,
@@ -161,8 +161,8 @@ __export(react_query_exports, {
161
161
  getUpdateMemberUrl: () => getUpdateMemberUrl,
162
162
  getUpdatePasswordMutationOptions: () => getUpdatePasswordMutationOptions,
163
163
  getUpdatePasswordUrl: () => getUpdatePasswordUrl,
164
- getUpsertDataIntegrationOrganizationOverrideMutationOptions: () => getUpsertDataIntegrationOrganizationOverrideMutationOptions,
165
- getUpsertDataIntegrationOrganizationOverrideUrl: () => getUpsertDataIntegrationOrganizationOverrideUrl,
164
+ getUpsertDataIntegrationConfigurationMutationOptions: () => getUpsertDataIntegrationConfigurationMutationOptions,
165
+ getUpsertDataIntegrationConfigurationUrl: () => getUpsertDataIntegrationConfigurationUrl,
166
166
  getVerifyEmailChangeMutationOptions: () => getVerifyEmailChangeMutationOptions,
167
167
  getVerifyEmailChangeUrl: () => getVerifyEmailChangeUrl,
168
168
  getVerifyMutationOptions: () => getVerifyMutationOptions,
@@ -172,7 +172,7 @@ __export(react_query_exports, {
172
172
  getVerifyTotpFactorUrl: () => getVerifyTotpFactorUrl,
173
173
  getVerifyUrl: () => getVerifyUrl,
174
174
  inviteMember: () => inviteMember,
175
- listDataIntegrationOrganizationOverrides: () => listDataIntegrationOrganizationOverrides,
175
+ listDataIntegrationConfigurations: () => listDataIntegrationConfigurations,
176
176
  listDirectories: () => listDirectories,
177
177
  listOrganizationApiKeyPermissions: () => listOrganizationApiKeyPermissions,
178
178
  listOrganizationApiKeys: () => listOrganizationApiKeys,
@@ -200,7 +200,7 @@ __export(react_query_exports, {
200
200
  updateMe: () => updateMe,
201
201
  updateMember: () => updateMember,
202
202
  updatePassword: () => updatePassword,
203
- upsertDataIntegrationOrganizationOverride: () => upsertDataIntegrationOrganizationOverride,
203
+ upsertDataIntegrationConfiguration: () => upsertDataIntegrationConfiguration,
204
204
  useAuthenticationInformation: () => useAuthenticationInformation,
205
205
  useCreateOrganizationApiKey: () => useCreateOrganizationApiKey,
206
206
  useCreatePassword: () => useCreatePassword,
@@ -220,7 +220,7 @@ __export(react_query_exports, {
220
220
  useGetDataIntegrationAuthorizeUrl: () => useGetDataIntegrationAuthorizeUrl,
221
221
  useGetDirectory: () => useGetDirectory,
222
222
  useInviteMember: () => useInviteMember,
223
- useListDataIntegrationOrganizationOverrides: () => useListDataIntegrationOrganizationOverrides,
223
+ useListDataIntegrationConfigurations: () => useListDataIntegrationConfigurations,
224
224
  useListDirectories: () => useListDirectories,
225
225
  useListOrganizationApiKeyPermissions: () => useListOrganizationApiKeyPermissions,
226
226
  useListOrganizationApiKeys: () => useListOrganizationApiKeys,
@@ -248,7 +248,7 @@ __export(react_query_exports, {
248
248
  useUpdateMe: () => useUpdateMe,
249
249
  useUpdateMember: () => useUpdateMember,
250
250
  useUpdatePassword: () => useUpdatePassword,
251
- useUpsertDataIntegrationOrganizationOverride: () => useUpsertDataIntegrationOrganizationOverride,
251
+ useUpsertDataIntegrationConfiguration: () => useUpsertDataIntegrationConfiguration,
252
252
  useVerify: () => useVerify,
253
253
  useVerifyEmailChange: () => useVerifyEmailChange,
254
254
  useVerifyPasskey: () => useVerifyPasskey,
@@ -523,6 +523,38 @@ const useExpireOrganizationApiKey = (options, queryClient) => {
523
523
  queryClient
524
524
  );
525
525
  };
526
+ const getListDataIntegrationConfigurationsUrl = () => {
527
+ return `https://api.workos.com/_widgets/DataIntegrations/configurations`;
528
+ };
529
+ const listDataIntegrationConfigurations = async (options) => {
530
+ const res = await fetch(getListDataIntegrationConfigurationsUrl(), {
531
+ ...options,
532
+ method: "GET"
533
+ });
534
+ const body = [204, 205, 304].includes(res.status) ? null : await res.text();
535
+ const data = body ? JSON.parse(body) : {};
536
+ return {
537
+ data,
538
+ status: res.status,
539
+ headers: res.headers
540
+ };
541
+ };
542
+ const getListDataIntegrationConfigurationsQueryKey = () => {
543
+ return [
544
+ `https://api.workos.com/_widgets/DataIntegrations/configurations`
545
+ ];
546
+ };
547
+ const getListDataIntegrationConfigurationsQueryOptions = (options) => {
548
+ const { query: queryOptions, fetch: fetchOptions } = options ?? {};
549
+ const queryKey = queryOptions?.queryKey ?? getListDataIntegrationConfigurationsQueryKey();
550
+ const queryFn = ({ signal }) => listDataIntegrationConfigurations({ signal, ...fetchOptions });
551
+ return { queryKey, queryFn, ...queryOptions };
552
+ };
553
+ function useListDataIntegrationConfigurations(options, queryClient) {
554
+ const queryOptions = getListDataIntegrationConfigurationsQueryOptions(options);
555
+ const query = (0, import_react_query.useQuery)(queryOptions, queryClient);
556
+ return { ...query, queryKey: queryOptions.queryKey };
557
+ }
526
558
  const getDeleteDataInstallationUrl = (installationId) => {
527
559
  return `https://api.workos.com/_widgets/DataIntegrations/installations/${installationId}`;
528
560
  };
@@ -584,38 +616,6 @@ function useMyDataIntegrations(options, queryClient) {
584
616
  const query = (0, import_react_query.useQuery)(queryOptions, queryClient);
585
617
  return { ...query, queryKey: queryOptions.queryKey };
586
618
  }
587
- const getListDataIntegrationOrganizationOverridesUrl = () => {
588
- return `https://api.workos.com/_widgets/DataIntegrations/organization-overrides`;
589
- };
590
- const listDataIntegrationOrganizationOverrides = async (options) => {
591
- const res = await fetch(getListDataIntegrationOrganizationOverridesUrl(), {
592
- ...options,
593
- method: "GET"
594
- });
595
- const body = [204, 205, 304].includes(res.status) ? null : await res.text();
596
- const data = body ? JSON.parse(body) : {};
597
- return {
598
- data,
599
- status: res.status,
600
- headers: res.headers
601
- };
602
- };
603
- const getListDataIntegrationOrganizationOverridesQueryKey = () => {
604
- return [
605
- `https://api.workos.com/_widgets/DataIntegrations/organization-overrides`
606
- ];
607
- };
608
- const getListDataIntegrationOrganizationOverridesQueryOptions = (options) => {
609
- const { query: queryOptions, fetch: fetchOptions } = options ?? {};
610
- const queryKey = queryOptions?.queryKey ?? getListDataIntegrationOrganizationOverridesQueryKey();
611
- const queryFn = ({ signal }) => listDataIntegrationOrganizationOverrides({ signal, ...fetchOptions });
612
- return { queryKey, queryFn, ...queryOptions };
613
- };
614
- function useListDataIntegrationOrganizationOverrides(options, queryClient) {
615
- const queryOptions = getListDataIntegrationOrganizationOverridesQueryOptions(options);
616
- const query = (0, import_react_query.useQuery)(queryOptions, queryClient);
617
- return { ...query, queryKey: queryOptions.queryKey };
618
- }
619
619
  const getGetDataInstallationAuthorizationStatusUrl = (dataIntegrationId, state) => {
620
620
  return `https://api.workos.com/_widgets/DataIntegrations/${dataIntegrationId}/authorization-status/${state}`;
621
621
  };
@@ -712,19 +712,16 @@ function useGetDataIntegrationAuthorizeUrl(slug, params, options, queryClient) {
712
712
  const query = (0, import_react_query.useQuery)(queryOptions, queryClient);
713
713
  return { ...query, queryKey: queryOptions.queryKey };
714
714
  }
715
- const getUpsertDataIntegrationOrganizationOverrideUrl = (slug) => {
716
- return `https://api.workos.com/_widgets/DataIntegrations/${slug}/organization-override`;
715
+ const getUpsertDataIntegrationConfigurationUrl = (slug) => {
716
+ return `https://api.workos.com/_widgets/DataIntegrations/${slug}/configuration`;
717
717
  };
718
- const upsertDataIntegrationOrganizationOverride = async (slug, upsertDataIntegrationOrganizationOverrideBody, options) => {
719
- const res = await fetch(
720
- getUpsertDataIntegrationOrganizationOverrideUrl(slug),
721
- {
722
- ...options,
723
- method: "PUT",
724
- headers: { "Content-Type": "application/json", ...options?.headers },
725
- body: JSON.stringify(upsertDataIntegrationOrganizationOverrideBody)
726
- }
727
- );
718
+ const upsertDataIntegrationConfiguration = async (slug, upsertDataIntegrationConfigurationBody, options) => {
719
+ const res = await fetch(getUpsertDataIntegrationConfigurationUrl(slug), {
720
+ ...options,
721
+ method: "PUT",
722
+ headers: { "Content-Type": "application/json", ...options?.headers },
723
+ body: JSON.stringify(upsertDataIntegrationConfigurationBody)
724
+ });
728
725
  const body = [204, 205, 304].includes(res.status) ? null : await res.text();
729
726
  const data = body ? JSON.parse(body) : {};
730
727
  return {
@@ -733,18 +730,18 @@ const upsertDataIntegrationOrganizationOverride = async (slug, upsertDataIntegra
733
730
  headers: res.headers
734
731
  };
735
732
  };
736
- const getUpsertDataIntegrationOrganizationOverrideMutationOptions = (options) => {
737
- const mutationKey = ["upsertDataIntegrationOrganizationOverride"];
733
+ const getUpsertDataIntegrationConfigurationMutationOptions = (options) => {
734
+ const mutationKey = ["upsertDataIntegrationConfiguration"];
738
735
  const { mutation: mutationOptions, fetch: fetchOptions } = options ? options.mutation && "mutationKey" in options.mutation && options.mutation.mutationKey ? options : { ...options, mutation: { ...options.mutation, mutationKey } } : { mutation: { mutationKey }, fetch: void 0 };
739
736
  const mutationFn = (props) => {
740
737
  const { slug, data } = props ?? {};
741
- return upsertDataIntegrationOrganizationOverride(slug, data, fetchOptions);
738
+ return upsertDataIntegrationConfiguration(slug, data, fetchOptions);
742
739
  };
743
740
  return { mutationFn, ...mutationOptions };
744
741
  };
745
- const useUpsertDataIntegrationOrganizationOverride = (options, queryClient) => {
742
+ const useUpsertDataIntegrationConfiguration = (options, queryClient) => {
746
743
  return (0, import_react_query.useMutation)(
747
- getUpsertDataIntegrationOrganizationOverrideMutationOptions(options),
744
+ getUpsertDataIntegrationConfigurationMutationOptions(options),
748
745
  queryClient
749
746
  );
750
747
  };
@@ -2081,9 +2078,9 @@ function useSettings(options, queryClient) {
2081
2078
  getGetDirectoryUrl,
2082
2079
  getInviteMemberMutationOptions,
2083
2080
  getInviteMemberUrl,
2084
- getListDataIntegrationOrganizationOverridesQueryKey,
2085
- getListDataIntegrationOrganizationOverridesQueryOptions,
2086
- getListDataIntegrationOrganizationOverridesUrl,
2081
+ getListDataIntegrationConfigurationsQueryKey,
2082
+ getListDataIntegrationConfigurationsQueryOptions,
2083
+ getListDataIntegrationConfigurationsUrl,
2087
2084
  getListDirectoriesQueryKey,
2088
2085
  getListDirectoriesQueryOptions,
2089
2086
  getListDirectoriesUrl,
@@ -2153,8 +2150,8 @@ function useSettings(options, queryClient) {
2153
2150
  getUpdateMemberUrl,
2154
2151
  getUpdatePasswordMutationOptions,
2155
2152
  getUpdatePasswordUrl,
2156
- getUpsertDataIntegrationOrganizationOverrideMutationOptions,
2157
- getUpsertDataIntegrationOrganizationOverrideUrl,
2153
+ getUpsertDataIntegrationConfigurationMutationOptions,
2154
+ getUpsertDataIntegrationConfigurationUrl,
2158
2155
  getVerifyEmailChangeMutationOptions,
2159
2156
  getVerifyEmailChangeUrl,
2160
2157
  getVerifyMutationOptions,
@@ -2164,7 +2161,7 @@ function useSettings(options, queryClient) {
2164
2161
  getVerifyTotpFactorUrl,
2165
2162
  getVerifyUrl,
2166
2163
  inviteMember,
2167
- listDataIntegrationOrganizationOverrides,
2164
+ listDataIntegrationConfigurations,
2168
2165
  listDirectories,
2169
2166
  listOrganizationApiKeyPermissions,
2170
2167
  listOrganizationApiKeys,
@@ -2192,7 +2189,7 @@ function useSettings(options, queryClient) {
2192
2189
  updateMe,
2193
2190
  updateMember,
2194
2191
  updatePassword,
2195
- upsertDataIntegrationOrganizationOverride,
2192
+ upsertDataIntegrationConfiguration,
2196
2193
  useAuthenticationInformation,
2197
2194
  useCreateOrganizationApiKey,
2198
2195
  useCreatePassword,
@@ -2212,7 +2209,7 @@ function useSettings(options, queryClient) {
2212
2209
  useGetDataIntegrationAuthorizeUrl,
2213
2210
  useGetDirectory,
2214
2211
  useInviteMember,
2215
- useListDataIntegrationOrganizationOverrides,
2212
+ useListDataIntegrationConfigurations,
2216
2213
  useListDirectories,
2217
2214
  useListOrganizationApiKeyPermissions,
2218
2215
  useListOrganizationApiKeys,
@@ -2240,7 +2237,7 @@ function useSettings(options, queryClient) {
2240
2237
  useUpdateMe,
2241
2238
  useUpdateMember,
2242
2239
  useUpdatePassword,
2243
- useUpsertDataIntegrationOrganizationOverride,
2240
+ useUpsertDataIntegrationConfiguration,
2244
2241
  useVerify,
2245
2242
  useVerifyEmailChange,
2246
2243
  useVerifyPasskey,