@workos-inc/widgets 1.12.0 → 1.12.1-next.1778264725486

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.
@@ -586,6 +586,30 @@ type GetDataIntegrationAuthorizeUrlResponse = {
586
586
  interface GetAuthorizationStatusResponse {
587
587
  isConnecting: boolean;
588
588
  }
589
+ interface DataIntegrationOverrideResponse {
590
+ id: string;
591
+ enabled: boolean;
592
+ scopes?: string[] | null;
593
+ }
594
+ interface DataIntegrationWithOverride {
595
+ object: "data_integration";
596
+ id: string;
597
+ name: string;
598
+ /** @nullable */
599
+ description?: string | null;
600
+ slug: string;
601
+ integrationType: string;
602
+ ownership: "userland_user" | "organization";
603
+ credentialsType: "shared" | "custom" | "organization";
604
+ scopes?: string[] | null;
605
+ enabled: boolean;
606
+ createdAt: string;
607
+ updatedAt: string;
608
+ orgOverride?: DataIntegrationOverrideResponse | null;
609
+ }
610
+ interface DataIntegrationWithOverrideResponse {
611
+ data: DataIntegrationWithOverride[];
612
+ }
589
613
  type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
590
614
  declare const DirectoryType: {
591
615
  readonly azure_scim_v20: "azure scim v2.0";
@@ -721,6 +745,12 @@ type DeleteDataInstallation404 = {
721
745
  type MyDataIntegrations403 = {
722
746
  message: string;
723
747
  };
748
+ type ListDataIntegrationOrganizationOverrides403 = {
749
+ message: string;
750
+ };
751
+ type ListDataIntegrationOrganizationOverrides404 = {
752
+ message: string;
753
+ };
724
754
  type GetDataInstallationAuthorizationStatus400 = {
725
755
  message: string;
726
756
  };
@@ -742,6 +772,26 @@ type GetDataIntegrationAuthorizeUrl403 = {
742
772
  type GetDataIntegrationAuthorizeUrl404 = {
743
773
  message: string;
744
774
  };
775
+ type UpsertDataIntegrationOrganizationOverrideBody = {
776
+ enabled?: boolean;
777
+ scopes?: string[] | null;
778
+ /** @minLength 1 */
779
+ client_id?: string;
780
+ /** @minLength 1 */
781
+ client_secret?: string;
782
+ };
783
+ type UpsertDataIntegrationOrganizationOverride400 = {
784
+ message: string;
785
+ };
786
+ type UpsertDataIntegrationOrganizationOverride403 = {
787
+ message: string;
788
+ };
789
+ type UpsertDataIntegrationOrganizationOverride404 = {
790
+ message: string;
791
+ };
792
+ type UpsertDataIntegrationOrganizationOverride422 = {
793
+ message: string;
794
+ };
745
795
  type CreateUserApiKey400ErrorsItem = {
746
796
  code: string;
747
797
  field: string;
@@ -1375,6 +1425,54 @@ declare function useMyDataIntegrations<TData = Awaited<ReturnType<typeof myDataI
1375
1425
  }, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
1376
1426
  queryKey: DataTag<QueryKey, TData, TError>;
1377
1427
  };
1428
+ type listDataIntegrationOrganizationOverridesResponse200 = {
1429
+ data: DataIntegrationWithOverrideResponse;
1430
+ status: 200;
1431
+ };
1432
+ type listDataIntegrationOrganizationOverridesResponse403 = {
1433
+ data: ListDataIntegrationOrganizationOverrides403;
1434
+ status: 403;
1435
+ };
1436
+ type listDataIntegrationOrganizationOverridesResponse404 = {
1437
+ data: ListDataIntegrationOrganizationOverrides404;
1438
+ status: 404;
1439
+ };
1440
+ type listDataIntegrationOrganizationOverridesResponseSuccess = listDataIntegrationOrganizationOverridesResponse200 & {
1441
+ headers: Headers;
1442
+ };
1443
+ type listDataIntegrationOrganizationOverridesResponseError = (listDataIntegrationOrganizationOverridesResponse403 | listDataIntegrationOrganizationOverridesResponse404) & {
1444
+ headers: Headers;
1445
+ };
1446
+ type listDataIntegrationOrganizationOverridesResponse = listDataIntegrationOrganizationOverridesResponseSuccess | listDataIntegrationOrganizationOverridesResponseError;
1447
+ declare const getListDataIntegrationOrganizationOverridesUrl: () => string;
1448
+ declare const listDataIntegrationOrganizationOverrides: (options?: RequestInit) => Promise<listDataIntegrationOrganizationOverridesResponse>;
1449
+ declare const getListDataIntegrationOrganizationOverridesQueryKey: () => readonly ["https://api.workos.com/_widgets/DataIntegrations/organization-overrides"];
1450
+ declare const getListDataIntegrationOrganizationOverridesQueryOptions: <TData = Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError = ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404>(options?: {
1451
+ query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError, TData>>;
1452
+ fetch?: RequestInit;
1453
+ }) => UseQueryOptions<Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError, TData> & {
1454
+ queryKey: DataTag<QueryKey, TData, TError>;
1455
+ };
1456
+ type ListDataIntegrationOrganizationOverridesQueryResult = NonNullable<Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>>;
1457
+ type ListDataIntegrationOrganizationOverridesQueryError = ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404;
1458
+ declare function useListDataIntegrationOrganizationOverrides<TData = Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError = ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404>(options: {
1459
+ query: Partial<UseQueryOptions<Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError, TData>> & Pick<DefinedInitialDataOptions<Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError, Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>>, "initialData">;
1460
+ fetch?: RequestInit;
1461
+ }, queryClient?: QueryClient): DefinedUseQueryResult<TData, TError> & {
1462
+ queryKey: DataTag<QueryKey, TData, TError>;
1463
+ };
1464
+ declare function useListDataIntegrationOrganizationOverrides<TData = Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError = ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404>(options?: {
1465
+ query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError, TData>> & Pick<UndefinedInitialDataOptions<Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError, Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>>, "initialData">;
1466
+ fetch?: RequestInit;
1467
+ }, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
1468
+ queryKey: DataTag<QueryKey, TData, TError>;
1469
+ };
1470
+ declare function useListDataIntegrationOrganizationOverrides<TData = Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError = ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404>(options?: {
1471
+ query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof listDataIntegrationOrganizationOverrides>>, TError, TData>>;
1472
+ fetch?: RequestInit;
1473
+ }, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
1474
+ queryKey: DataTag<QueryKey, TData, TError>;
1475
+ };
1378
1476
  type getDataInstallationAuthorizationStatusResponse200 = {
1379
1477
  data: GetAuthorizationStatusResponse;
1380
1478
  status: 200;
@@ -1479,6 +1577,58 @@ declare function useGetDataIntegrationAuthorizeUrl<TData = Awaited<ReturnType<ty
1479
1577
  }, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
1480
1578
  queryKey: DataTag<QueryKey, TData, TError>;
1481
1579
  };
1580
+ type upsertDataIntegrationOrganizationOverrideResponse200 = {
1581
+ data: DataIntegrationOverrideResponse;
1582
+ status: 200;
1583
+ };
1584
+ type upsertDataIntegrationOrganizationOverrideResponse400 = {
1585
+ data: UpsertDataIntegrationOrganizationOverride400;
1586
+ status: 400;
1587
+ };
1588
+ type upsertDataIntegrationOrganizationOverrideResponse403 = {
1589
+ data: UpsertDataIntegrationOrganizationOverride403;
1590
+ status: 403;
1591
+ };
1592
+ type upsertDataIntegrationOrganizationOverrideResponse404 = {
1593
+ data: UpsertDataIntegrationOrganizationOverride404;
1594
+ status: 404;
1595
+ };
1596
+ type upsertDataIntegrationOrganizationOverrideResponse422 = {
1597
+ data: UpsertDataIntegrationOrganizationOverride422;
1598
+ status: 422;
1599
+ };
1600
+ type upsertDataIntegrationOrganizationOverrideResponseSuccess = upsertDataIntegrationOrganizationOverrideResponse200 & {
1601
+ headers: Headers;
1602
+ };
1603
+ type upsertDataIntegrationOrganizationOverrideResponseError = (upsertDataIntegrationOrganizationOverrideResponse400 | upsertDataIntegrationOrganizationOverrideResponse403 | upsertDataIntegrationOrganizationOverrideResponse404 | upsertDataIntegrationOrganizationOverrideResponse422) & {
1604
+ headers: Headers;
1605
+ };
1606
+ type upsertDataIntegrationOrganizationOverrideResponse = upsertDataIntegrationOrganizationOverrideResponseSuccess | upsertDataIntegrationOrganizationOverrideResponseError;
1607
+ declare const getUpsertDataIntegrationOrganizationOverrideUrl: (slug: string) => string;
1608
+ declare const upsertDataIntegrationOrganizationOverride: (slug: string, upsertDataIntegrationOrganizationOverrideBody: UpsertDataIntegrationOrganizationOverrideBody, options?: RequestInit) => Promise<upsertDataIntegrationOrganizationOverrideResponse>;
1609
+ declare const getUpsertDataIntegrationOrganizationOverrideMutationOptions: <TError = UpsertDataIntegrationOrganizationOverride400 | UpsertDataIntegrationOrganizationOverride403 | UpsertDataIntegrationOrganizationOverride404 | UpsertDataIntegrationOrganizationOverride422, TContext = unknown>(options?: {
1610
+ mutation?: UseMutationOptions<Awaited<ReturnType<typeof upsertDataIntegrationOrganizationOverride>>, TError, {
1611
+ slug: string;
1612
+ data: UpsertDataIntegrationOrganizationOverrideBody;
1613
+ }, TContext>;
1614
+ fetch?: RequestInit;
1615
+ }) => UseMutationOptions<Awaited<ReturnType<typeof upsertDataIntegrationOrganizationOverride>>, TError, {
1616
+ slug: string;
1617
+ data: UpsertDataIntegrationOrganizationOverrideBody;
1618
+ }, TContext>;
1619
+ type UpsertDataIntegrationOrganizationOverrideMutationResult = NonNullable<Awaited<ReturnType<typeof upsertDataIntegrationOrganizationOverride>>>;
1620
+ type UpsertDataIntegrationOrganizationOverrideMutationBody = UpsertDataIntegrationOrganizationOverrideBody;
1621
+ type UpsertDataIntegrationOrganizationOverrideMutationError = UpsertDataIntegrationOrganizationOverride400 | UpsertDataIntegrationOrganizationOverride403 | UpsertDataIntegrationOrganizationOverride404 | UpsertDataIntegrationOrganizationOverride422;
1622
+ declare const useUpsertDataIntegrationOrganizationOverride: <TError = UpsertDataIntegrationOrganizationOverride400 | UpsertDataIntegrationOrganizationOverride403 | UpsertDataIntegrationOrganizationOverride404 | UpsertDataIntegrationOrganizationOverride422, TContext = unknown>(options?: {
1623
+ mutation?: UseMutationOptions<Awaited<ReturnType<typeof upsertDataIntegrationOrganizationOverride>>, TError, {
1624
+ slug: string;
1625
+ data: UpsertDataIntegrationOrganizationOverrideBody;
1626
+ }, TContext>;
1627
+ fetch?: RequestInit;
1628
+ }, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof upsertDataIntegrationOrganizationOverride>>, TError, {
1629
+ slug: string;
1630
+ data: UpsertDataIntegrationOrganizationOverrideBody;
1631
+ }, TContext>;
1482
1632
  type createUserApiKeyResponse201 = {
1483
1633
  data: CreateUserApiKeyResponse;
1484
1634
  status: 201;
@@ -3276,4 +3426,4 @@ declare function useSettings<TData = Awaited<ReturnType<typeof settings>>, TErro
3276
3426
  queryKey: DataTag<QueryKey, TData, TError>;
3277
3427
  };
3278
3428
 
3279
- export { type ActiveSession, type ActiveSessionCurrentLocation, type ActiveSessionState, type ActiveSessionsResponse, type AuditLogStreamJSON, type AuditLogStreamState, type AuditLogStreamType, type AuthenticationInformation403, type AuthenticationInformationQueryError, type AuthenticationInformationQueryResult, 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 CreateOrganizationApiKeyMutationBody, type CreateOrganizationApiKeyMutationError, type CreateOrganizationApiKeyMutationResult, type CreateOrganizationApiKeyRequest, type CreateOrganizationApiKeyResponse, type CreatePassword201, type CreatePassword400, type CreatePassword403, type CreatePasswordMutationBody, type CreatePasswordMutationError, type CreatePasswordMutationResult, type CreatePasswordRequest, type CreateTotpFactor400, type CreateTotpFactor403, type CreateTotpFactorMutationError, type CreateTotpFactorMutationResult, type CreateTotpFactorResponse, type CreateTotpFactorResponseAuthenticationChallenge, type CreateTotpFactorResponseAuthenticationFactor, type CreateUserApiKey400, type CreateUserApiKey400ErrorsItem, type CreateUserApiKey403, type CreateUserApiKey404, type CreateUserApiKey422, type CreateUserApiKey422ErrorsItem, type CreateUserApiKeyMutationBody, type CreateUserApiKeyMutationError, type CreateUserApiKeyMutationResult, type CreateUserApiKeyRequest, type CreateUserApiKeyResponse, type DataInstallation, type DataIntegration, type DataIntegrationsResponse, type DeleteDataInstallation200, type DeleteDataInstallation403, type DeleteDataInstallation404, type DeleteDataInstallationMutationError, type DeleteDataInstallationMutationResult, type DeleteOrganizationApiKey200, type DeleteOrganizationApiKey403, type DeleteOrganizationApiKey404, type DeleteOrganizationApiKeyMutationError, type DeleteOrganizationApiKeyMutationResult, type DeleteOrganizationDomain403, type DeleteOrganizationDomain404, type DeleteOrganizationDomainMutationError, type DeleteOrganizationDomainMutationResult, type DeletePasskey200, type DeletePasskey400, type DeletePasskey403, type DeletePasskeyMutationError, type DeletePasskeyMutationResult, type DeleteTotpFactors200, type DeleteTotpFactors400, type DeleteTotpFactors403, type DeleteTotpFactorsMutationError, type DeleteTotpFactorsMutationResult, type DeleteUserApiKey200, type DeleteUserApiKey403, type DeleteUserApiKey404, type DeleteUserApiKeyMutationError, type DeleteUserApiKeyMutationResult, type DirectoriesResponse, type Directory, type DirectoryMetadata, DirectoryState, DirectoryType, type DirectoryUsersMetadata, DomainVerificationNameServer, type GenerateAdminPortalLink201, type GenerateAdminPortalLink403, type GenerateAdminPortalLink404, type GenerateAdminPortalLink500, GenerateAdminPortalLinkIntent, type GenerateAdminPortalLinkMutationError, type GenerateAdminPortalLinkMutationResult, type GenerateAdminPortalLinkParams, type GetAuditLogStream200, type GetAuditLogStream403, type GetAuditLogStreamQueryError, type GetAuditLogStreamQueryResult, type GetAuthorizationStatusResponse, type GetDataInstallationAuthorizationStatus400, type GetDataInstallationAuthorizationStatus403, type GetDataInstallationAuthorizationStatus404, type GetDataInstallationAuthorizationStatusQueryError, type GetDataInstallationAuthorizationStatusQueryResult, type GetDataIntegrationAuthorizeUrl400, type GetDataIntegrationAuthorizeUrl403, type GetDataIntegrationAuthorizeUrl404, type GetDataIntegrationAuthorizeUrlParams, type GetDataIntegrationAuthorizeUrlQueryError, type GetDataIntegrationAuthorizeUrlQueryResult, type GetDataIntegrationAuthorizeUrlResponse, type GetDirectory403, type GetDirectory404, type GetDirectoryQueryError, type GetDirectoryQueryResult, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type InviteMemberMutationBody, type InviteMemberMutationError, type InviteMemberMutationResult, type InviteMemberResponse, type ListDirectories403, type ListDirectories404, type ListDirectoriesQueryError, type ListDirectoriesQueryResult, type ListMetadata, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions400ErrorsItem, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsQueryError, type ListOrganizationApiKeyPermissionsQueryResult, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, type ListOrganizationApiKeys400ErrorsItem, type ListOrganizationApiKeys403, type ListOrganizationApiKeysParams, type ListOrganizationApiKeysQueryError, type ListOrganizationApiKeysQueryResult, type ListOrganizationApiKeysResponse, type ListOrganizationApiKeysResponseData, type ListOrganizationApiKeysResponseListMetadata, type ListOrganizationDomains200, type ListOrganizationDomains403, type ListOrganizationDomains404, type ListOrganizationDomainsQueryError, type ListOrganizationDomainsQueryResult, type ListSsoConnectionsQueryError, type ListSsoConnectionsQueryResult, type ListUserApiKeyPermission, type ListUserApiKeyPermissions400, type ListUserApiKeyPermissions400ErrorsItem, type ListUserApiKeyPermissions403, type ListUserApiKeyPermissionsParams, type ListUserApiKeyPermissionsQueryError, type ListUserApiKeyPermissionsQueryResult, type ListUserApiKeyPermissionsResponse, type ListUserApiKeyPermissionsResponseListMetadata, type ListUserApiKeys400, type ListUserApiKeys400ErrorsItem, type ListUserApiKeys403, type ListUserApiKeysParams, type ListUserApiKeysQueryError, type ListUserApiKeysQueryResult, type ListUserApiKeysResponse, type ListUserApiKeysResponseData, type ListUserApiKeysResponseDataOwner, type ListUserApiKeysResponseListMetadata, type Me, type Me403, type MeOauthProfiles, type MeQueryError, type MeQueryResult, type Member, type MemberActions, MemberActionsItem, type MemberRole, type MemberRoles, MemberStatus, type Members403, type Members404, type MembersParams, type MembersQueryError, type MembersQueryResult, type MembersResponse, type MyDataIntegrations403, type MyDataIntegrationsQueryError, type MyDataIntegrationsQueryResult, type OAuthProfile, OidcSessionState, type OrganizationDomain, OrganizationDomainState, type OrganizationInfo, type Organizations403, type Organizations404, type OrganizationsQueryError, type OrganizationsQueryResult, type OrganizationsResponse, type RegisterPasskey400, type RegisterPasskey403, type RegisterPasskeyMutationError, type RegisterPasskeyMutationResult, type RegisterPasskeyResponse, type RegisterPasskeyResponseOptions, type RemoveMember400, type RemoveMember403, type RemoveMember404, type RemoveMemberMutationError, type RemoveMemberMutationResult, type RemoveMemberResponse, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ResendInviteMutationError, type ResendInviteMutationResult, type ResendInviteResponse, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type ReverifyOrganizationDomainMutationError, type ReverifyOrganizationDomainMutationResult, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsMutationBody, type RevokeAllSessionsMutationError, type RevokeAllSessionsMutationResult, type RevokeAllSessionsRequest, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeInviteMutationError, type RevokeInviteMutationResult, type RevokeMemberResponse, type RevokeSession200, type RevokeSession400, type RevokeSession403, type RevokeSessionMutationError, type RevokeSessionMutationResult, type Roles403, type Roles404, type RolesAndConfig403, type RolesAndConfig404, type RolesAndConfigQueryError, type RolesAndConfigQueryResult, type RolesAndConfigResponse, type RolesQueryError, type RolesQueryResult, SamlSessionState, type SendEmailChange400, type SendEmailChange403, type SendEmailChange409, type SendEmailChange422, type SendEmailChange429, type SendEmailChangeMutationBody, type SendEmailChangeMutationError, type SendEmailChangeMutationResult, type SendEmailChangeRequest, type SendEmailChangeResponse, type SendVerification400, type SendVerification403, type SendVerificationMutationError, type SendVerificationMutationResult, type SendVerificationResponse, type Sessions403, type SessionsQueryError, type SessionsQueryResult, type Settings403, type SettingsQueryError, type SettingsQueryResult, type SettingsResponse, type SsoConnection, type SsoConnectionSessionJSON, SsoConnectionSessionJSONState, type UpdateMe400, type UpdateMe403, type UpdateMeBody, type UpdateMeMutationBody, type UpdateMeMutationError, type UpdateMeMutationResult, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdateMemberMutationBody, type UpdateMemberMutationError, type UpdateMemberMutationResult, type UpdateMemberResponse, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordMutationBody, type UpdatePasswordMutationError, type UpdatePasswordMutationResult, type UpdatePasswordRequest, type Verify400, type Verify403, type VerifyEmailChange400, type VerifyEmailChange403, type VerifyEmailChange409, type VerifyEmailChange422, type VerifyEmailChange429, type VerifyEmailChangeMutationBody, type VerifyEmailChangeMutationError, type VerifyEmailChangeMutationResult, type VerifyEmailChangeRequest, type VerifyEmailChangeResponse, type VerifyMutationBody, type VerifyMutationError, type VerifyMutationResult, type VerifyPasskey200, type VerifyPasskey400, type VerifyPasskey403, type VerifyPasskeyMutationBody, type VerifyPasskeyMutationError, type VerifyPasskeyMutationResult, type VerifyPasskeyRequest, type VerifyPasskeyRequestResponse, type VerifyRequest, type VerifyResponse, type VerifyTotpFactor200, type VerifyTotpFactor400, type VerifyTotpFactor403, type VerifyTotpFactorMutationBody, type VerifyTotpFactorMutationError, type VerifyTotpFactorMutationResult, 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, 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, getAuthenticationInformationQueryKey, getAuthenticationInformationQueryOptions, getAuthenticationInformationUrl, getCreateOrganizationApiKeyMutationOptions, getCreateOrganizationApiKeyUrl, getCreatePasswordMutationOptions, getCreatePasswordUrl, getCreateTotpFactorMutationOptions, getCreateTotpFactorUrl, getCreateUserApiKeyMutationOptions, 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, getDeleteDataInstallationMutationOptions, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyMutationOptions, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainMutationOptions, getDeleteOrganizationDomainUrl, getDeletePasskeyMutationOptions, getDeletePasskeyUrl, getDeleteTotpFactorsMutationOptions, getDeleteTotpFactorsUrl, getDeleteUserApiKeyMutationOptions, getDeleteUserApiKeyUrl, getDirectory, type getDirectoryResponse, type getDirectoryResponse200, type getDirectoryResponse403, type getDirectoryResponse404, type getDirectoryResponseError, type getDirectoryResponseSuccess, getGenerateAdminPortalLinkMutationOptions, getGenerateAdminPortalLinkUrl, getGetAuditLogStreamQueryKey, getGetAuditLogStreamQueryOptions, getGetAuditLogStreamUrl, getGetDataInstallationAuthorizationStatusQueryKey, getGetDataInstallationAuthorizationStatusQueryOptions, getGetDataInstallationAuthorizationStatusUrl, getGetDataIntegrationAuthorizeUrlQueryKey, getGetDataIntegrationAuthorizeUrlQueryOptions, getGetDataIntegrationAuthorizeUrlUrl, getGetDirectoryQueryKey, getGetDirectoryQueryOptions, getGetDirectoryUrl, getInviteMemberMutationOptions, getInviteMemberUrl, getListDirectoriesQueryKey, getListDirectoriesQueryOptions, getListDirectoriesUrl, getListOrganizationApiKeyPermissionsQueryKey, getListOrganizationApiKeyPermissionsQueryOptions, getListOrganizationApiKeyPermissionsUrl, getListOrganizationApiKeysQueryKey, getListOrganizationApiKeysQueryOptions, getListOrganizationApiKeysUrl, getListOrganizationDomainsQueryKey, getListOrganizationDomainsQueryOptions, getListOrganizationDomainsUrl, getListSsoConnectionsQueryKey, getListSsoConnectionsQueryOptions, getListSsoConnectionsUrl, getListUserApiKeyPermissionsQueryKey, getListUserApiKeyPermissionsQueryOptions, getListUserApiKeyPermissionsUrl, getListUserApiKeysQueryKey, getListUserApiKeysQueryOptions, getListUserApiKeysUrl, getMeQueryKey, getMeQueryOptions, getMeUrl, getMembersQueryKey, getMembersQueryOptions, getMembersUrl, getMyDataIntegrationsQueryKey, getMyDataIntegrationsQueryOptions, getMyDataIntegrationsUrl, getOrganizationsQueryKey, getOrganizationsQueryOptions, getOrganizationsUrl, getRegisterPasskeyMutationOptions, getRegisterPasskeyUrl, getRemoveMemberMutationOptions, getRemoveMemberUrl, getResendInviteMutationOptions, getResendInviteUrl, getReverifyOrganizationDomainMutationOptions, getReverifyOrganizationDomainUrl, getRevokeAllSessionsMutationOptions, getRevokeAllSessionsUrl, getRevokeInviteMutationOptions, getRevokeInviteUrl, getRevokeSessionMutationOptions, getRevokeSessionUrl, getRolesAndConfigQueryKey, getRolesAndConfigQueryOptions, getRolesAndConfigUrl, getRolesQueryKey, getRolesQueryOptions, getRolesUrl, getSendEmailChangeMutationOptions, getSendEmailChangeUrl, getSendVerificationMutationOptions, getSendVerificationUrl, getSessionsQueryKey, getSessionsQueryOptions, getSessionsUrl, getSettingsQueryKey, getSettingsQueryOptions, getSettingsUrl, getUpdateMeMutationOptions, getUpdateMeUrl, getUpdateMemberMutationOptions, getUpdateMemberUrl, getUpdatePasswordMutationOptions, getUpdatePasswordUrl, getVerifyEmailChangeMutationOptions, getVerifyEmailChangeUrl, getVerifyMutationOptions, getVerifyPasskeyMutationOptions, getVerifyPasskeyUrl, getVerifyTotpFactorMutationOptions, getVerifyTotpFactorUrl, getVerifyUrl, inviteMember, type inviteMemberResponse, type inviteMemberResponse201, type inviteMemberResponse400, type inviteMemberResponse403, type inviteMemberResponse404, type inviteMemberResponseError, type inviteMemberResponseSuccess, 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, useAuthenticationInformation, useCreateOrganizationApiKey, useCreatePassword, useCreateTotpFactor, useCreateUserApiKey, useDeleteDataInstallation, useDeleteOrganizationApiKey, useDeleteOrganizationDomain, useDeletePasskey, useDeleteTotpFactors, useDeleteUserApiKey, useGenerateAdminPortalLink, useGetAuditLogStream, useGetDataInstallationAuthorizationStatus, useGetDataIntegrationAuthorizeUrl, useGetDirectory, useInviteMember, useListDirectories, useListOrganizationApiKeyPermissions, useListOrganizationApiKeys, useListOrganizationDomains, useListSsoConnections, useListUserApiKeyPermissions, useListUserApiKeys, useMe, useMembers, useMyDataIntegrations, useOrganizations, useRegisterPasskey, useRemoveMember, useResendInvite, useReverifyOrganizationDomain, useRevokeAllSessions, useRevokeInvite, useRevokeSession, useRoles, useRolesAndConfig, useSendEmailChange, useSendVerification, useSessions, useSettings, useUpdateMe, useUpdateMember, useUpdatePassword, useVerify, useVerifyEmailChange, useVerifyPasskey, useVerifyTotpFactor, 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 };
3429
+ export { type ActiveSession, type ActiveSessionCurrentLocation, type ActiveSessionState, type ActiveSessionsResponse, type AuditLogStreamJSON, type AuditLogStreamState, type AuditLogStreamType, type AuthenticationInformation403, type AuthenticationInformationQueryError, type AuthenticationInformationQueryResult, 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 CreateOrganizationApiKeyMutationBody, type CreateOrganizationApiKeyMutationError, type CreateOrganizationApiKeyMutationResult, type CreateOrganizationApiKeyRequest, type CreateOrganizationApiKeyResponse, type CreatePassword201, type CreatePassword400, type CreatePassword403, type CreatePasswordMutationBody, type CreatePasswordMutationError, type CreatePasswordMutationResult, type CreatePasswordRequest, type CreateTotpFactor400, type CreateTotpFactor403, type CreateTotpFactorMutationError, type CreateTotpFactorMutationResult, type CreateTotpFactorResponse, type CreateTotpFactorResponseAuthenticationChallenge, type CreateTotpFactorResponseAuthenticationFactor, type CreateUserApiKey400, type CreateUserApiKey400ErrorsItem, type CreateUserApiKey403, type CreateUserApiKey404, type CreateUserApiKey422, type CreateUserApiKey422ErrorsItem, type CreateUserApiKeyMutationBody, type CreateUserApiKeyMutationError, type CreateUserApiKeyMutationResult, type CreateUserApiKeyRequest, type CreateUserApiKeyResponse, type DataInstallation, type DataIntegration, type DataIntegrationOverrideResponse, type DataIntegrationWithOverride, type DataIntegrationWithOverrideResponse, type DataIntegrationsResponse, type DeleteDataInstallation200, type DeleteDataInstallation403, type DeleteDataInstallation404, type DeleteDataInstallationMutationError, type DeleteDataInstallationMutationResult, type DeleteOrganizationApiKey200, type DeleteOrganizationApiKey403, type DeleteOrganizationApiKey404, type DeleteOrganizationApiKeyMutationError, type DeleteOrganizationApiKeyMutationResult, type DeleteOrganizationDomain403, type DeleteOrganizationDomain404, type DeleteOrganizationDomainMutationError, type DeleteOrganizationDomainMutationResult, type DeletePasskey200, type DeletePasskey400, type DeletePasskey403, type DeletePasskeyMutationError, type DeletePasskeyMutationResult, type DeleteTotpFactors200, type DeleteTotpFactors400, type DeleteTotpFactors403, type DeleteTotpFactorsMutationError, type DeleteTotpFactorsMutationResult, type DeleteUserApiKey200, type DeleteUserApiKey403, type DeleteUserApiKey404, type DeleteUserApiKeyMutationError, type DeleteUserApiKeyMutationResult, type DirectoriesResponse, type Directory, type DirectoryMetadata, DirectoryState, DirectoryType, type DirectoryUsersMetadata, DomainVerificationNameServer, type GenerateAdminPortalLink201, type GenerateAdminPortalLink403, type GenerateAdminPortalLink404, type GenerateAdminPortalLink500, GenerateAdminPortalLinkIntent, type GenerateAdminPortalLinkMutationError, type GenerateAdminPortalLinkMutationResult, type GenerateAdminPortalLinkParams, type GetAuditLogStream200, type GetAuditLogStream403, type GetAuditLogStreamQueryError, type GetAuditLogStreamQueryResult, type GetAuthorizationStatusResponse, type GetDataInstallationAuthorizationStatus400, type GetDataInstallationAuthorizationStatus403, type GetDataInstallationAuthorizationStatus404, type GetDataInstallationAuthorizationStatusQueryError, type GetDataInstallationAuthorizationStatusQueryResult, type GetDataIntegrationAuthorizeUrl400, type GetDataIntegrationAuthorizeUrl403, type GetDataIntegrationAuthorizeUrl404, type GetDataIntegrationAuthorizeUrlParams, type GetDataIntegrationAuthorizeUrlQueryError, type GetDataIntegrationAuthorizeUrlQueryResult, type GetDataIntegrationAuthorizeUrlResponse, type GetDirectory403, type GetDirectory404, type GetDirectoryQueryError, type GetDirectoryQueryResult, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type InviteMemberMutationBody, type InviteMemberMutationError, type InviteMemberMutationResult, type InviteMemberResponse, type ListDataIntegrationOrganizationOverrides403, type ListDataIntegrationOrganizationOverrides404, type ListDataIntegrationOrganizationOverridesQueryError, type ListDataIntegrationOrganizationOverridesQueryResult, type ListDirectories403, type ListDirectories404, type ListDirectoriesQueryError, type ListDirectoriesQueryResult, type ListMetadata, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions400ErrorsItem, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsQueryError, type ListOrganizationApiKeyPermissionsQueryResult, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, type ListOrganizationApiKeys400ErrorsItem, type ListOrganizationApiKeys403, type ListOrganizationApiKeysParams, type ListOrganizationApiKeysQueryError, type ListOrganizationApiKeysQueryResult, type ListOrganizationApiKeysResponse, type ListOrganizationApiKeysResponseData, type ListOrganizationApiKeysResponseListMetadata, type ListOrganizationDomains200, type ListOrganizationDomains403, type ListOrganizationDomains404, type ListOrganizationDomainsQueryError, type ListOrganizationDomainsQueryResult, type ListSsoConnectionsQueryError, type ListSsoConnectionsQueryResult, type ListUserApiKeyPermission, type ListUserApiKeyPermissions400, type ListUserApiKeyPermissions400ErrorsItem, type ListUserApiKeyPermissions403, type ListUserApiKeyPermissionsParams, type ListUserApiKeyPermissionsQueryError, type ListUserApiKeyPermissionsQueryResult, type ListUserApiKeyPermissionsResponse, type ListUserApiKeyPermissionsResponseListMetadata, type ListUserApiKeys400, type ListUserApiKeys400ErrorsItem, type ListUserApiKeys403, type ListUserApiKeysParams, type ListUserApiKeysQueryError, type ListUserApiKeysQueryResult, type ListUserApiKeysResponse, type ListUserApiKeysResponseData, type ListUserApiKeysResponseDataOwner, type ListUserApiKeysResponseListMetadata, type Me, type Me403, type MeOauthProfiles, type MeQueryError, type MeQueryResult, type Member, type MemberActions, MemberActionsItem, type MemberRole, type MemberRoles, MemberStatus, type Members403, type Members404, type MembersParams, type MembersQueryError, type MembersQueryResult, type MembersResponse, type MyDataIntegrations403, type MyDataIntegrationsQueryError, type MyDataIntegrationsQueryResult, type OAuthProfile, OidcSessionState, type OrganizationDomain, OrganizationDomainState, type OrganizationInfo, type Organizations403, type Organizations404, type OrganizationsQueryError, type OrganizationsQueryResult, type OrganizationsResponse, type RegisterPasskey400, type RegisterPasskey403, type RegisterPasskeyMutationError, type RegisterPasskeyMutationResult, type RegisterPasskeyResponse, type RegisterPasskeyResponseOptions, type RemoveMember400, type RemoveMember403, type RemoveMember404, type RemoveMemberMutationError, type RemoveMemberMutationResult, type RemoveMemberResponse, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ResendInviteMutationError, type ResendInviteMutationResult, type ResendInviteResponse, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type ReverifyOrganizationDomainMutationError, type ReverifyOrganizationDomainMutationResult, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsMutationBody, type RevokeAllSessionsMutationError, type RevokeAllSessionsMutationResult, type RevokeAllSessionsRequest, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeInviteMutationError, type RevokeInviteMutationResult, type RevokeMemberResponse, type RevokeSession200, type RevokeSession400, type RevokeSession403, type RevokeSessionMutationError, type RevokeSessionMutationResult, type Roles403, type Roles404, type RolesAndConfig403, type RolesAndConfig404, type RolesAndConfigQueryError, type RolesAndConfigQueryResult, type RolesAndConfigResponse, type RolesQueryError, type RolesQueryResult, SamlSessionState, type SendEmailChange400, type SendEmailChange403, type SendEmailChange409, type SendEmailChange422, type SendEmailChange429, type SendEmailChangeMutationBody, type SendEmailChangeMutationError, type SendEmailChangeMutationResult, type SendEmailChangeRequest, type SendEmailChangeResponse, type SendVerification400, type SendVerification403, type SendVerificationMutationError, type SendVerificationMutationResult, type SendVerificationResponse, type Sessions403, type SessionsQueryError, type SessionsQueryResult, type Settings403, type SettingsQueryError, type SettingsQueryResult, type SettingsResponse, type SsoConnection, type SsoConnectionSessionJSON, SsoConnectionSessionJSONState, type UpdateMe400, type UpdateMe403, type UpdateMeBody, type UpdateMeMutationBody, type UpdateMeMutationError, type UpdateMeMutationResult, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdateMemberMutationBody, type UpdateMemberMutationError, type UpdateMemberMutationResult, type UpdateMemberResponse, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordMutationBody, type UpdatePasswordMutationError, type UpdatePasswordMutationResult, type UpdatePasswordRequest, type UpsertDataIntegrationOrganizationOverride400, type UpsertDataIntegrationOrganizationOverride403, type UpsertDataIntegrationOrganizationOverride404, type UpsertDataIntegrationOrganizationOverride422, type UpsertDataIntegrationOrganizationOverrideBody, type UpsertDataIntegrationOrganizationOverrideMutationBody, type UpsertDataIntegrationOrganizationOverrideMutationError, type UpsertDataIntegrationOrganizationOverrideMutationResult, type Verify400, type Verify403, type VerifyEmailChange400, type VerifyEmailChange403, type VerifyEmailChange409, type VerifyEmailChange422, type VerifyEmailChange429, type VerifyEmailChangeMutationBody, type VerifyEmailChangeMutationError, type VerifyEmailChangeMutationResult, type VerifyEmailChangeRequest, type VerifyEmailChangeResponse, type VerifyMutationBody, type VerifyMutationError, type VerifyMutationResult, type VerifyPasskey200, type VerifyPasskey400, type VerifyPasskey403, type VerifyPasskeyMutationBody, type VerifyPasskeyMutationError, type VerifyPasskeyMutationResult, type VerifyPasskeyRequest, type VerifyPasskeyRequestResponse, type VerifyRequest, type VerifyResponse, type VerifyTotpFactor200, type VerifyTotpFactor400, type VerifyTotpFactor403, type VerifyTotpFactorMutationBody, type VerifyTotpFactorMutationError, type VerifyTotpFactorMutationResult, 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, 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, getAuthenticationInformationQueryKey, getAuthenticationInformationQueryOptions, getAuthenticationInformationUrl, getCreateOrganizationApiKeyMutationOptions, getCreateOrganizationApiKeyUrl, getCreatePasswordMutationOptions, getCreatePasswordUrl, getCreateTotpFactorMutationOptions, getCreateTotpFactorUrl, getCreateUserApiKeyMutationOptions, 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, getDeleteDataInstallationMutationOptions, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyMutationOptions, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainMutationOptions, getDeleteOrganizationDomainUrl, getDeletePasskeyMutationOptions, getDeletePasskeyUrl, getDeleteTotpFactorsMutationOptions, getDeleteTotpFactorsUrl, getDeleteUserApiKeyMutationOptions, getDeleteUserApiKeyUrl, getDirectory, type getDirectoryResponse, type getDirectoryResponse200, type getDirectoryResponse403, type getDirectoryResponse404, type getDirectoryResponseError, type getDirectoryResponseSuccess, getGenerateAdminPortalLinkMutationOptions, getGenerateAdminPortalLinkUrl, getGetAuditLogStreamQueryKey, getGetAuditLogStreamQueryOptions, getGetAuditLogStreamUrl, getGetDataInstallationAuthorizationStatusQueryKey, getGetDataInstallationAuthorizationStatusQueryOptions, getGetDataInstallationAuthorizationStatusUrl, getGetDataIntegrationAuthorizeUrlQueryKey, getGetDataIntegrationAuthorizeUrlQueryOptions, getGetDataIntegrationAuthorizeUrlUrl, getGetDirectoryQueryKey, getGetDirectoryQueryOptions, getGetDirectoryUrl, getInviteMemberMutationOptions, getInviteMemberUrl, getListDataIntegrationOrganizationOverridesQueryKey, getListDataIntegrationOrganizationOverridesQueryOptions, getListDataIntegrationOrganizationOverridesUrl, getListDirectoriesQueryKey, getListDirectoriesQueryOptions, getListDirectoriesUrl, getListOrganizationApiKeyPermissionsQueryKey, getListOrganizationApiKeyPermissionsQueryOptions, getListOrganizationApiKeyPermissionsUrl, getListOrganizationApiKeysQueryKey, getListOrganizationApiKeysQueryOptions, getListOrganizationApiKeysUrl, getListOrganizationDomainsQueryKey, getListOrganizationDomainsQueryOptions, getListOrganizationDomainsUrl, getListSsoConnectionsQueryKey, getListSsoConnectionsQueryOptions, getListSsoConnectionsUrl, getListUserApiKeyPermissionsQueryKey, getListUserApiKeyPermissionsQueryOptions, getListUserApiKeyPermissionsUrl, getListUserApiKeysQueryKey, getListUserApiKeysQueryOptions, getListUserApiKeysUrl, getMeQueryKey, getMeQueryOptions, getMeUrl, getMembersQueryKey, getMembersQueryOptions, getMembersUrl, getMyDataIntegrationsQueryKey, getMyDataIntegrationsQueryOptions, getMyDataIntegrationsUrl, getOrganizationsQueryKey, getOrganizationsQueryOptions, getOrganizationsUrl, getRegisterPasskeyMutationOptions, getRegisterPasskeyUrl, getRemoveMemberMutationOptions, getRemoveMemberUrl, getResendInviteMutationOptions, getResendInviteUrl, getReverifyOrganizationDomainMutationOptions, getReverifyOrganizationDomainUrl, getRevokeAllSessionsMutationOptions, getRevokeAllSessionsUrl, getRevokeInviteMutationOptions, getRevokeInviteUrl, getRevokeSessionMutationOptions, getRevokeSessionUrl, getRolesAndConfigQueryKey, getRolesAndConfigQueryOptions, getRolesAndConfigUrl, getRolesQueryKey, getRolesQueryOptions, getRolesUrl, getSendEmailChangeMutationOptions, getSendEmailChangeUrl, getSendVerificationMutationOptions, getSendVerificationUrl, getSessionsQueryKey, getSessionsQueryOptions, getSessionsUrl, getSettingsQueryKey, getSettingsQueryOptions, getSettingsUrl, getUpdateMeMutationOptions, getUpdateMeUrl, getUpdateMemberMutationOptions, getUpdateMemberUrl, getUpdatePasswordMutationOptions, getUpdatePasswordUrl, getUpsertDataIntegrationOrganizationOverrideMutationOptions, getUpsertDataIntegrationOrganizationOverrideUrl, getVerifyEmailChangeMutationOptions, getVerifyEmailChangeUrl, getVerifyMutationOptions, getVerifyPasskeyMutationOptions, getVerifyPasskeyUrl, getVerifyTotpFactorMutationOptions, 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, useAuthenticationInformation, useCreateOrganizationApiKey, useCreatePassword, useCreateTotpFactor, useCreateUserApiKey, useDeleteDataInstallation, useDeleteOrganizationApiKey, useDeleteOrganizationDomain, useDeletePasskey, useDeleteTotpFactors, useDeleteUserApiKey, useGenerateAdminPortalLink, useGetAuditLogStream, useGetDataInstallationAuthorizationStatus, useGetDataIntegrationAuthorizeUrl, useGetDirectory, useInviteMember, useListDataIntegrationOrganizationOverrides, useListDirectories, useListOrganizationApiKeyPermissions, useListOrganizationApiKeys, useListOrganizationDomains, useListSsoConnections, useListUserApiKeyPermissions, useListUserApiKeys, useMe, useMembers, useMyDataIntegrations, useOrganizations, useRegisterPasskey, useRemoveMember, useResendInvite, useReverifyOrganizationDomain, useRevokeAllSessions, useRevokeInvite, useRevokeSession, useRoles, useRolesAndConfig, useSendEmailChange, useSendVerification, useSessions, useSettings, useUpdateMe, useUpdateMember, useUpdatePassword, useUpsertDataIntegrationOrganizationOverride, useVerify, useVerifyEmailChange, useVerifyPasskey, useVerifyTotpFactor, 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 };
@@ -100,6 +100,8 @@ __export(swr_exports, {
100
100
  getInviteMemberMutationFetcher: () => getInviteMemberMutationFetcher,
101
101
  getInviteMemberMutationKey: () => getInviteMemberMutationKey,
102
102
  getInviteMemberUrl: () => getInviteMemberUrl,
103
+ getListDataIntegrationOrganizationOverridesKey: () => getListDataIntegrationOrganizationOverridesKey,
104
+ getListDataIntegrationOrganizationOverridesUrl: () => getListDataIntegrationOrganizationOverridesUrl,
103
105
  getListDirectoriesKey: () => getListDirectoriesKey,
104
106
  getListDirectoriesUrl: () => getListDirectoriesUrl,
105
107
  getListOrganizationApiKeyPermissionsKey: () => getListOrganizationApiKeyPermissionsKey,
@@ -166,6 +168,9 @@ __export(swr_exports, {
166
168
  getUpdatePasswordMutationFetcher: () => getUpdatePasswordMutationFetcher,
167
169
  getUpdatePasswordMutationKey: () => getUpdatePasswordMutationKey,
168
170
  getUpdatePasswordUrl: () => getUpdatePasswordUrl,
171
+ getUpsertDataIntegrationOrganizationOverrideMutationFetcher: () => getUpsertDataIntegrationOrganizationOverrideMutationFetcher,
172
+ getUpsertDataIntegrationOrganizationOverrideMutationKey: () => getUpsertDataIntegrationOrganizationOverrideMutationKey,
173
+ getUpsertDataIntegrationOrganizationOverrideUrl: () => getUpsertDataIntegrationOrganizationOverrideUrl,
169
174
  getVerifyEmailChangeMutationFetcher: () => getVerifyEmailChangeMutationFetcher,
170
175
  getVerifyEmailChangeMutationKey: () => getVerifyEmailChangeMutationKey,
171
176
  getVerifyEmailChangeUrl: () => getVerifyEmailChangeUrl,
@@ -179,6 +184,7 @@ __export(swr_exports, {
179
184
  getVerifyTotpFactorUrl: () => getVerifyTotpFactorUrl,
180
185
  getVerifyUrl: () => getVerifyUrl,
181
186
  inviteMember: () => inviteMember,
187
+ listDataIntegrationOrganizationOverrides: () => listDataIntegrationOrganizationOverrides,
182
188
  listDirectories: () => listDirectories,
183
189
  listOrganizationApiKeyPermissions: () => listOrganizationApiKeyPermissions,
184
190
  listOrganizationApiKeys: () => listOrganizationApiKeys,
@@ -206,6 +212,7 @@ __export(swr_exports, {
206
212
  updateMe: () => updateMe,
207
213
  updateMember: () => updateMember,
208
214
  updatePassword: () => updatePassword,
215
+ upsertDataIntegrationOrganizationOverride: () => upsertDataIntegrationOrganizationOverride,
209
216
  useAuthenticationInformation: () => useAuthenticationInformation,
210
217
  useCreateOrganizationApiKey: () => useCreateOrganizationApiKey,
211
218
  useCreatePassword: () => useCreatePassword,
@@ -223,6 +230,7 @@ __export(swr_exports, {
223
230
  useGetDataIntegrationAuthorizeUrl: () => useGetDataIntegrationAuthorizeUrl,
224
231
  useGetDirectory: () => useGetDirectory,
225
232
  useInviteMember: () => useInviteMember,
233
+ useListDataIntegrationOrganizationOverrides: () => useListDataIntegrationOrganizationOverrides,
226
234
  useListDirectories: () => useListDirectories,
227
235
  useListOrganizationApiKeyPermissions: () => useListOrganizationApiKeyPermissions,
228
236
  useListOrganizationApiKeys: () => useListOrganizationApiKeys,
@@ -250,6 +258,7 @@ __export(swr_exports, {
250
258
  useUpdateMe: () => useUpdateMe,
251
259
  useUpdateMember: () => useUpdateMember,
252
260
  useUpdatePassword: () => useUpdatePassword,
261
+ useUpsertDataIntegrationOrganizationOverride: () => useUpsertDataIntegrationOrganizationOverride,
253
262
  useVerify: () => useVerify,
254
263
  useVerifyEmailChange: () => useVerifyEmailChange,
255
264
  useVerifyPasskey: () => useVerifyPasskey,
@@ -567,6 +576,40 @@ const useMyDataIntegrations = (options) => {
567
576
  ...query
568
577
  };
569
578
  };
579
+ const getListDataIntegrationOrganizationOverridesUrl = () => {
580
+ return `https://api.workos.com/_widgets/DataIntegrations/organization-overrides`;
581
+ };
582
+ const listDataIntegrationOrganizationOverrides = async (options) => {
583
+ const res = await fetch(getListDataIntegrationOrganizationOverridesUrl(), {
584
+ ...options,
585
+ method: "GET"
586
+ });
587
+ const body = [204, 205, 304].includes(res.status) ? null : await res.text();
588
+ const data = body ? JSON.parse(body) : {};
589
+ return {
590
+ data,
591
+ status: res.status,
592
+ headers: res.headers
593
+ };
594
+ };
595
+ const getListDataIntegrationOrganizationOverridesKey = () => [
596
+ `https://api.workos.com/_widgets/DataIntegrations/organization-overrides`
597
+ ];
598
+ const useListDataIntegrationOrganizationOverrides = (options) => {
599
+ const { swr: swrOptions, fetch: fetchOptions } = options ?? {};
600
+ const isEnabled = swrOptions?.enabled !== false;
601
+ const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListDataIntegrationOrganizationOverridesKey() : null);
602
+ const swrFn = () => listDataIntegrationOrganizationOverrides(fetchOptions);
603
+ const query = (0, import_swr.default)(
604
+ swrKey,
605
+ swrFn,
606
+ swrOptions
607
+ );
608
+ return {
609
+ swrKey,
610
+ ...query
611
+ };
612
+ };
570
613
  const getGetDataInstallationAuthorizationStatusUrl = (dataIntegrationId, state) => {
571
614
  return `https://api.workos.com/_widgets/DataIntegrations/${dataIntegrationId}/authorization-status/${state}`;
572
615
  };
@@ -650,6 +693,48 @@ const useGetDataIntegrationAuthorizeUrl = (slug, params, options) => {
650
693
  ...query
651
694
  };
652
695
  };
696
+ const getUpsertDataIntegrationOrganizationOverrideUrl = (slug) => {
697
+ return `https://api.workos.com/_widgets/DataIntegrations/${slug}/organization-override`;
698
+ };
699
+ const upsertDataIntegrationOrganizationOverride = async (slug, upsertDataIntegrationOrganizationOverrideBody, options) => {
700
+ const res = await fetch(
701
+ getUpsertDataIntegrationOrganizationOverrideUrl(slug),
702
+ {
703
+ ...options,
704
+ method: "PUT",
705
+ headers: { "Content-Type": "application/json", ...options?.headers },
706
+ body: JSON.stringify(upsertDataIntegrationOrganizationOverrideBody)
707
+ }
708
+ );
709
+ const body = [204, 205, 304].includes(res.status) ? null : await res.text();
710
+ const data = body ? JSON.parse(body) : {};
711
+ return {
712
+ data,
713
+ status: res.status,
714
+ headers: res.headers
715
+ };
716
+ };
717
+ const getUpsertDataIntegrationOrganizationOverrideMutationFetcher = (slug, options) => {
718
+ return (_, { arg }) => {
719
+ return upsertDataIntegrationOrganizationOverride(slug, arg, options);
720
+ };
721
+ };
722
+ const getUpsertDataIntegrationOrganizationOverrideMutationKey = (slug) => [
723
+ `https://api.workos.com/_widgets/DataIntegrations/${slug}/organization-override`
724
+ ];
725
+ const useUpsertDataIntegrationOrganizationOverride = (slug, options) => {
726
+ const { swr: swrOptions, fetch: fetchOptions } = options ?? {};
727
+ const swrKey = swrOptions?.swrKey ?? getUpsertDataIntegrationOrganizationOverrideMutationKey(slug);
728
+ const swrFn = getUpsertDataIntegrationOrganizationOverrideMutationFetcher(
729
+ slug,
730
+ fetchOptions
731
+ );
732
+ const query = (0, import_mutation.default)(swrKey, swrFn, swrOptions);
733
+ return {
734
+ swrKey,
735
+ ...query
736
+ };
737
+ };
653
738
  const getCreateUserApiKeyUrl = () => {
654
739
  return `https://api.workos.com/_widgets/UserApiKeys/api-keys`;
655
740
  };
@@ -2062,6 +2147,8 @@ const useSettings = (options) => {
2062
2147
  getInviteMemberMutationFetcher,
2063
2148
  getInviteMemberMutationKey,
2064
2149
  getInviteMemberUrl,
2150
+ getListDataIntegrationOrganizationOverridesKey,
2151
+ getListDataIntegrationOrganizationOverridesUrl,
2065
2152
  getListDirectoriesKey,
2066
2153
  getListDirectoriesUrl,
2067
2154
  getListOrganizationApiKeyPermissionsKey,
@@ -2128,6 +2215,9 @@ const useSettings = (options) => {
2128
2215
  getUpdatePasswordMutationFetcher,
2129
2216
  getUpdatePasswordMutationKey,
2130
2217
  getUpdatePasswordUrl,
2218
+ getUpsertDataIntegrationOrganizationOverrideMutationFetcher,
2219
+ getUpsertDataIntegrationOrganizationOverrideMutationKey,
2220
+ getUpsertDataIntegrationOrganizationOverrideUrl,
2131
2221
  getVerifyEmailChangeMutationFetcher,
2132
2222
  getVerifyEmailChangeMutationKey,
2133
2223
  getVerifyEmailChangeUrl,
@@ -2141,6 +2231,7 @@ const useSettings = (options) => {
2141
2231
  getVerifyTotpFactorUrl,
2142
2232
  getVerifyUrl,
2143
2233
  inviteMember,
2234
+ listDataIntegrationOrganizationOverrides,
2144
2235
  listDirectories,
2145
2236
  listOrganizationApiKeyPermissions,
2146
2237
  listOrganizationApiKeys,
@@ -2168,6 +2259,7 @@ const useSettings = (options) => {
2168
2259
  updateMe,
2169
2260
  updateMember,
2170
2261
  updatePassword,
2262
+ upsertDataIntegrationOrganizationOverride,
2171
2263
  useAuthenticationInformation,
2172
2264
  useCreateOrganizationApiKey,
2173
2265
  useCreatePassword,
@@ -2185,6 +2277,7 @@ const useSettings = (options) => {
2185
2277
  useGetDataIntegrationAuthorizeUrl,
2186
2278
  useGetDirectory,
2187
2279
  useInviteMember,
2280
+ useListDataIntegrationOrganizationOverrides,
2188
2281
  useListDirectories,
2189
2282
  useListOrganizationApiKeyPermissions,
2190
2283
  useListOrganizationApiKeys,
@@ -2212,6 +2305,7 @@ const useSettings = (options) => {
2212
2305
  useUpdateMe,
2213
2306
  useUpdateMember,
2214
2307
  useUpdatePassword,
2308
+ useUpsertDataIntegrationOrganizationOverride,
2215
2309
  useVerify,
2216
2310
  useVerifyEmailChange,
2217
2311
  useVerifyPasskey,