@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.
- package/CHANGELOG.md +6 -0
- package/dist/cjs/api/endpoint.cjs +78 -0
- package/dist/cjs/api/endpoint.cjs.map +1 -1
- package/dist/cjs/api/endpoint.d.cts +97 -1
- package/dist/cjs/experimental/api/fetch.cjs +45 -0
- package/dist/cjs/experimental/api/fetch.cjs.map +1 -1
- package/dist/cjs/experimental/api/fetch.d.cts +101 -1
- package/dist/cjs/experimental/api/react-query.cjs +86 -0
- package/dist/cjs/experimental/api/react-query.cjs.map +1 -1
- package/dist/cjs/experimental/api/react-query.d.cts +151 -1
- package/dist/cjs/experimental/api/swr.cjs +94 -0
- package/dist/cjs/experimental/api/swr.cjs.map +1 -1
- package/dist/cjs/experimental/api/swr.d.cts +135 -1
- package/dist/esm/api/endpoint.d.ts +97 -1
- package/dist/esm/api/endpoint.js +71 -0
- package/dist/esm/api/endpoint.js.map +1 -1
- package/dist/esm/experimental/api/fetch.d.ts +101 -1
- package/dist/esm/experimental/api/fetch.js +41 -0
- package/dist/esm/experimental/api/fetch.js.map +1 -1
- package/dist/esm/experimental/api/react-query.d.ts +151 -1
- package/dist/esm/experimental/api/react-query.js +77 -0
- package/dist/esm/experimental/api/react-query.js.map +1 -1
- package/dist/esm/experimental/api/swr.d.ts +135 -1
- package/dist/esm/experimental/api/swr.js +85 -0
- package/dist/esm/experimental/api/swr.js.map +1 -1
- package/package.json +1 -1
|
@@ -587,6 +587,30 @@ type GetDataIntegrationAuthorizeUrlResponse = {
|
|
|
587
587
|
interface GetAuthorizationStatusResponse {
|
|
588
588
|
isConnecting: boolean;
|
|
589
589
|
}
|
|
590
|
+
interface DataIntegrationOverrideResponse {
|
|
591
|
+
id: string;
|
|
592
|
+
enabled: boolean;
|
|
593
|
+
scopes?: string[] | null;
|
|
594
|
+
}
|
|
595
|
+
interface DataIntegrationWithOverride {
|
|
596
|
+
object: "data_integration";
|
|
597
|
+
id: string;
|
|
598
|
+
name: string;
|
|
599
|
+
/** @nullable */
|
|
600
|
+
description?: string | null;
|
|
601
|
+
slug: string;
|
|
602
|
+
integrationType: string;
|
|
603
|
+
ownership: "userland_user" | "organization";
|
|
604
|
+
credentialsType: "shared" | "custom" | "organization";
|
|
605
|
+
scopes?: string[] | null;
|
|
606
|
+
enabled: boolean;
|
|
607
|
+
createdAt: string;
|
|
608
|
+
updatedAt: string;
|
|
609
|
+
orgOverride?: DataIntegrationOverrideResponse | null;
|
|
610
|
+
}
|
|
611
|
+
interface DataIntegrationWithOverrideResponse {
|
|
612
|
+
data: DataIntegrationWithOverride[];
|
|
613
|
+
}
|
|
590
614
|
type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
|
|
591
615
|
declare const DirectoryType: {
|
|
592
616
|
readonly azure_scim_v20: "azure scim v2.0";
|
|
@@ -722,6 +746,12 @@ type DeleteDataInstallation404 = {
|
|
|
722
746
|
type MyDataIntegrations403 = {
|
|
723
747
|
message: string;
|
|
724
748
|
};
|
|
749
|
+
type ListDataIntegrationOrganizationOverrides403 = {
|
|
750
|
+
message: string;
|
|
751
|
+
};
|
|
752
|
+
type ListDataIntegrationOrganizationOverrides404 = {
|
|
753
|
+
message: string;
|
|
754
|
+
};
|
|
725
755
|
type GetDataInstallationAuthorizationStatus400 = {
|
|
726
756
|
message: string;
|
|
727
757
|
};
|
|
@@ -743,6 +773,26 @@ type GetDataIntegrationAuthorizeUrl403 = {
|
|
|
743
773
|
type GetDataIntegrationAuthorizeUrl404 = {
|
|
744
774
|
message: string;
|
|
745
775
|
};
|
|
776
|
+
type UpsertDataIntegrationOrganizationOverrideInput = {
|
|
777
|
+
enabled?: boolean;
|
|
778
|
+
scopes?: string[] | null;
|
|
779
|
+
/** @minLength 1 */
|
|
780
|
+
client_id?: string;
|
|
781
|
+
/** @minLength 1 */
|
|
782
|
+
client_secret?: string;
|
|
783
|
+
};
|
|
784
|
+
type UpsertDataIntegrationOrganizationOverride400 = {
|
|
785
|
+
message: string;
|
|
786
|
+
};
|
|
787
|
+
type UpsertDataIntegrationOrganizationOverride403 = {
|
|
788
|
+
message: string;
|
|
789
|
+
};
|
|
790
|
+
type UpsertDataIntegrationOrganizationOverride404 = {
|
|
791
|
+
message: string;
|
|
792
|
+
};
|
|
793
|
+
type UpsertDataIntegrationOrganizationOverride422 = {
|
|
794
|
+
message: string;
|
|
795
|
+
};
|
|
746
796
|
type CreateUserApiKey400ErrorsItem = {
|
|
747
797
|
code: string;
|
|
748
798
|
field: string;
|
|
@@ -1234,6 +1284,30 @@ declare function useMyDataIntegrations<TData = Awaited<ReturnType<ReturnType<typ
|
|
|
1234
1284
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1235
1285
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1236
1286
|
};
|
|
1287
|
+
declare const useListDataIntegrationOrganizationOverridesHook: () => (signal?: AbortSignal) => Promise<DataIntegrationWithOverrideResponse>;
|
|
1288
|
+
declare const getListDataIntegrationOrganizationOverridesQueryKey: () => readonly ["/_widgets/DataIntegrations/organization-overrides"];
|
|
1289
|
+
declare const useListDataIntegrationOrganizationOverridesQueryOptions: <TData = Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError = ErrorType<ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404>>(options?: {
|
|
1290
|
+
query?: Partial<UseQueryOptions<Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError, TData>>;
|
|
1291
|
+
}) => UseQueryOptions<Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError, TData> & {
|
|
1292
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1293
|
+
};
|
|
1294
|
+
type ListDataIntegrationOrganizationOverridesQueryResult = NonNullable<Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>>;
|
|
1295
|
+
type ListDataIntegrationOrganizationOverridesQueryError = ErrorType<ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404>;
|
|
1296
|
+
declare function useListDataIntegrationOrganizationOverrides<TData = Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError = ErrorType<ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404>>(options: {
|
|
1297
|
+
query: Partial<UseQueryOptions<Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError, TData>> & Pick<DefinedInitialDataOptions<Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError, Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>>, "initialData">;
|
|
1298
|
+
}, queryClient?: QueryClient): DefinedUseQueryResult<TData, TError> & {
|
|
1299
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1300
|
+
};
|
|
1301
|
+
declare function useListDataIntegrationOrganizationOverrides<TData = Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError = ErrorType<ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404>>(options?: {
|
|
1302
|
+
query?: Partial<UseQueryOptions<Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError, TData>> & Pick<UndefinedInitialDataOptions<Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError, Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>>, "initialData">;
|
|
1303
|
+
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1304
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1305
|
+
};
|
|
1306
|
+
declare function useListDataIntegrationOrganizationOverrides<TData = Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError = ErrorType<ListDataIntegrationOrganizationOverrides403 | ListDataIntegrationOrganizationOverrides404>>(options?: {
|
|
1307
|
+
query?: Partial<UseQueryOptions<Awaited<ReturnType<ReturnType<typeof useListDataIntegrationOrganizationOverridesHook>>>, TError, TData>>;
|
|
1308
|
+
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1309
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1310
|
+
};
|
|
1237
1311
|
declare const useGetDataInstallationAuthorizationStatusHook: () => (dataIntegrationId: string, state: string, signal?: AbortSignal) => Promise<GetAuthorizationStatusResponse>;
|
|
1238
1312
|
declare const getGetDataInstallationAuthorizationStatusQueryKey: (dataIntegrationId: string, state: string) => readonly [`/_widgets/DataIntegrations/${string}/authorization-status/${string}`];
|
|
1239
1313
|
declare const useGetDataInstallationAuthorizationStatusQueryOptions: <TData = Awaited<ReturnType<ReturnType<typeof useGetDataInstallationAuthorizationStatusHook>>>, TError = ErrorType<GetDataInstallationAuthorizationStatus400 | GetDataInstallationAuthorizationStatus403 | GetDataInstallationAuthorizationStatus404>>(dataIntegrationId: string, state: string, options?: {
|
|
@@ -1282,6 +1356,28 @@ declare function useGetDataIntegrationAuthorizeUrl<TData = Awaited<ReturnType<Re
|
|
|
1282
1356
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1283
1357
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1284
1358
|
};
|
|
1359
|
+
declare const useUpsertDataIntegrationOrganizationOverrideHook: () => (slug: string, upsertDataIntegrationOrganizationOverrideInput: BodyType<UpsertDataIntegrationOrganizationOverrideInput>, signal?: AbortSignal) => Promise<DataIntegrationOverrideResponse>;
|
|
1360
|
+
declare const useUpsertDataIntegrationOrganizationOverrideMutationOptions: <TError = ErrorType<UpsertDataIntegrationOrganizationOverride400 | UpsertDataIntegrationOrganizationOverride403 | UpsertDataIntegrationOrganizationOverride404 | UpsertDataIntegrationOrganizationOverride422>, TContext = unknown>(options?: {
|
|
1361
|
+
mutation?: UseMutationOptions<Awaited<ReturnType<ReturnType<typeof useUpsertDataIntegrationOrganizationOverrideHook>>>, TError, {
|
|
1362
|
+
slug: string;
|
|
1363
|
+
data: BodyType<UpsertDataIntegrationOrganizationOverrideInput>;
|
|
1364
|
+
}, TContext>;
|
|
1365
|
+
}) => UseMutationOptions<Awaited<ReturnType<ReturnType<typeof useUpsertDataIntegrationOrganizationOverrideHook>>>, TError, {
|
|
1366
|
+
slug: string;
|
|
1367
|
+
data: BodyType<UpsertDataIntegrationOrganizationOverrideInput>;
|
|
1368
|
+
}, TContext>;
|
|
1369
|
+
type UpsertDataIntegrationOrganizationOverrideMutationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof useUpsertDataIntegrationOrganizationOverrideHook>>>>;
|
|
1370
|
+
type UpsertDataIntegrationOrganizationOverrideMutationBody = BodyType<UpsertDataIntegrationOrganizationOverrideInput>;
|
|
1371
|
+
type UpsertDataIntegrationOrganizationOverrideMutationError = ErrorType<UpsertDataIntegrationOrganizationOverride400 | UpsertDataIntegrationOrganizationOverride403 | UpsertDataIntegrationOrganizationOverride404 | UpsertDataIntegrationOrganizationOverride422>;
|
|
1372
|
+
declare const useUpsertDataIntegrationOrganizationOverride: <TError = ErrorType<UpsertDataIntegrationOrganizationOverride400 | UpsertDataIntegrationOrganizationOverride403 | UpsertDataIntegrationOrganizationOverride404 | UpsertDataIntegrationOrganizationOverride422>, TContext = unknown>(options?: {
|
|
1373
|
+
mutation?: UseMutationOptions<Awaited<ReturnType<ReturnType<typeof useUpsertDataIntegrationOrganizationOverrideHook>>>, TError, {
|
|
1374
|
+
slug: string;
|
|
1375
|
+
data: BodyType<UpsertDataIntegrationOrganizationOverrideInput>;
|
|
1376
|
+
}, TContext>;
|
|
1377
|
+
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<ReturnType<typeof useUpsertDataIntegrationOrganizationOverrideHook>>>, TError, {
|
|
1378
|
+
slug: string;
|
|
1379
|
+
data: BodyType<UpsertDataIntegrationOrganizationOverrideInput>;
|
|
1380
|
+
}, TContext>;
|
|
1285
1381
|
declare const useCreateUserApiKeyHook: () => (createUserApiKeyRequest: BodyType<CreateUserApiKeyRequest>, signal?: AbortSignal) => Promise<CreateUserApiKeyResponse>;
|
|
1286
1382
|
declare const useCreateUserApiKeyMutationOptions: <TError = ErrorType<CreateUserApiKey400 | CreateUserApiKey403 | CreateUserApiKey404 | CreateUserApiKey422>, TContext = unknown>(options?: {
|
|
1287
1383
|
mutation?: UseMutationOptions<Awaited<ReturnType<ReturnType<typeof useCreateUserApiKeyHook>>>, TError, {
|
|
@@ -2136,4 +2232,4 @@ declare function useSettings<TData = Awaited<ReturnType<ReturnType<typeof useSet
|
|
|
2136
2232
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2137
2233
|
};
|
|
2138
2234
|
|
|
2139
|
-
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 InviteMemberInput, 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 UpdateMeInput, type UpdateMeMutationBody, type UpdateMeMutationError, type UpdateMeMutationResult, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberInput, 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, getAuthenticationInformationQueryKey, getGetAuditLogStreamQueryKey, getGetDataInstallationAuthorizationStatusQueryKey, getGetDataIntegrationAuthorizeUrlQueryKey, getGetDirectoryQueryKey, getListDirectoriesQueryKey, getListOrganizationApiKeyPermissionsQueryKey, getListOrganizationApiKeysQueryKey, getListOrganizationDomainsQueryKey, getListSsoConnectionsQueryKey, getListUserApiKeyPermissionsQueryKey, getListUserApiKeysQueryKey, getMeQueryKey, getMembersQueryKey, getMyDataIntegrationsQueryKey, getOrganizationsQueryKey, getRolesAndConfigQueryKey, getRolesQueryKey, getSessionsQueryKey, getSettingsQueryKey, useAuthenticationInformation, useAuthenticationInformationHook, useAuthenticationInformationQueryOptions, useCreateOrganizationApiKey, useCreateOrganizationApiKeyHook, useCreateOrganizationApiKeyMutationOptions, useCreatePassword, useCreatePasswordHook, useCreatePasswordMutationOptions, useCreateTotpFactor, useCreateTotpFactorHook, useCreateTotpFactorMutationOptions, useCreateUserApiKey, useCreateUserApiKeyHook, useCreateUserApiKeyMutationOptions, useDeleteDataInstallation, useDeleteDataInstallationHook, useDeleteDataInstallationMutationOptions, useDeleteOrganizationApiKey, useDeleteOrganizationApiKeyHook, useDeleteOrganizationApiKeyMutationOptions, useDeleteOrganizationDomain, useDeleteOrganizationDomainHook, useDeleteOrganizationDomainMutationOptions, useDeletePasskey, useDeletePasskeyHook, useDeletePasskeyMutationOptions, useDeleteTotpFactors, useDeleteTotpFactorsHook, useDeleteTotpFactorsMutationOptions, useDeleteUserApiKey, useDeleteUserApiKeyHook, useDeleteUserApiKeyMutationOptions, useGenerateAdminPortalLink, useGenerateAdminPortalLinkHook, useGenerateAdminPortalLinkMutationOptions, useGetAuditLogStream, useGetAuditLogStreamHook, useGetAuditLogStreamQueryOptions, useGetDataInstallationAuthorizationStatus, useGetDataInstallationAuthorizationStatusHook, useGetDataInstallationAuthorizationStatusQueryOptions, useGetDataIntegrationAuthorizeUrl, useGetDataIntegrationAuthorizeUrlHook, useGetDataIntegrationAuthorizeUrlQueryOptions, useGetDirectory, useGetDirectoryHook, useGetDirectoryQueryOptions, useInviteMember, useInviteMemberHook, useInviteMemberMutationOptions, useListDirectories, useListDirectoriesHook, useListDirectoriesQueryOptions, useListOrganizationApiKeyPermissions, useListOrganizationApiKeyPermissionsHook, useListOrganizationApiKeyPermissionsQueryOptions, useListOrganizationApiKeys, useListOrganizationApiKeysHook, useListOrganizationApiKeysQueryOptions, useListOrganizationDomains, useListOrganizationDomainsHook, useListOrganizationDomainsQueryOptions, useListSsoConnections, useListSsoConnectionsHook, useListSsoConnectionsQueryOptions, useListUserApiKeyPermissions, useListUserApiKeyPermissionsHook, useListUserApiKeyPermissionsQueryOptions, useListUserApiKeys, useListUserApiKeysHook, useListUserApiKeysQueryOptions, useMe, useMeHook, useMeQueryOptions, useMembers, useMembersHook, useMembersQueryOptions, useMyDataIntegrations, useMyDataIntegrationsHook, useMyDataIntegrationsQueryOptions, useOrganizations, useOrganizationsHook, useOrganizationsQueryOptions, useRegisterPasskey, useRegisterPasskeyHook, useRegisterPasskeyMutationOptions, useRemoveMember, useRemoveMemberHook, useRemoveMemberMutationOptions, useResendInvite, useResendInviteHook, useResendInviteMutationOptions, useReverifyOrganizationDomain, useReverifyOrganizationDomainHook, useReverifyOrganizationDomainMutationOptions, useRevokeAllSessions, useRevokeAllSessionsHook, useRevokeAllSessionsMutationOptions, useRevokeInvite, useRevokeInviteHook, useRevokeInviteMutationOptions, useRevokeSession, useRevokeSessionHook, useRevokeSessionMutationOptions, useRoles, useRolesAndConfig, useRolesAndConfigHook, useRolesAndConfigQueryOptions, useRolesHook, useRolesQueryOptions, useSendEmailChange, useSendEmailChangeHook, useSendEmailChangeMutationOptions, useSendVerification, useSendVerificationHook, useSendVerificationMutationOptions, useSessions, useSessionsHook, useSessionsQueryOptions, useSettings, useSettingsHook, useSettingsQueryOptions, useUpdateMe, useUpdateMeHook, useUpdateMeMutationOptions, useUpdateMember, useUpdateMemberHook, useUpdateMemberMutationOptions, useUpdatePassword, useUpdatePasswordHook, useUpdatePasswordMutationOptions, useVerify, useVerifyEmailChange, useVerifyEmailChangeHook, useVerifyEmailChangeMutationOptions, useVerifyHook, useVerifyMutationOptions, useVerifyPasskey, useVerifyPasskeyHook, useVerifyPasskeyMutationOptions, useVerifyTotpFactor, useVerifyTotpFactorHook, useVerifyTotpFactorMutationOptions };
|
|
2235
|
+
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 InviteMemberInput, 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 UpdateMeInput, type UpdateMeMutationBody, type UpdateMeMutationError, type UpdateMeMutationResult, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberInput, 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 UpsertDataIntegrationOrganizationOverrideInput, 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, getAuthenticationInformationQueryKey, getGetAuditLogStreamQueryKey, getGetDataInstallationAuthorizationStatusQueryKey, getGetDataIntegrationAuthorizeUrlQueryKey, getGetDirectoryQueryKey, getListDataIntegrationOrganizationOverridesQueryKey, getListDirectoriesQueryKey, getListOrganizationApiKeyPermissionsQueryKey, getListOrganizationApiKeysQueryKey, getListOrganizationDomainsQueryKey, getListSsoConnectionsQueryKey, getListUserApiKeyPermissionsQueryKey, getListUserApiKeysQueryKey, getMeQueryKey, getMembersQueryKey, getMyDataIntegrationsQueryKey, getOrganizationsQueryKey, getRolesAndConfigQueryKey, getRolesQueryKey, getSessionsQueryKey, getSettingsQueryKey, useAuthenticationInformation, useAuthenticationInformationHook, useAuthenticationInformationQueryOptions, useCreateOrganizationApiKey, useCreateOrganizationApiKeyHook, useCreateOrganizationApiKeyMutationOptions, useCreatePassword, useCreatePasswordHook, useCreatePasswordMutationOptions, useCreateTotpFactor, useCreateTotpFactorHook, useCreateTotpFactorMutationOptions, useCreateUserApiKey, useCreateUserApiKeyHook, useCreateUserApiKeyMutationOptions, useDeleteDataInstallation, useDeleteDataInstallationHook, useDeleteDataInstallationMutationOptions, useDeleteOrganizationApiKey, useDeleteOrganizationApiKeyHook, useDeleteOrganizationApiKeyMutationOptions, useDeleteOrganizationDomain, useDeleteOrganizationDomainHook, useDeleteOrganizationDomainMutationOptions, useDeletePasskey, useDeletePasskeyHook, useDeletePasskeyMutationOptions, useDeleteTotpFactors, useDeleteTotpFactorsHook, useDeleteTotpFactorsMutationOptions, useDeleteUserApiKey, useDeleteUserApiKeyHook, useDeleteUserApiKeyMutationOptions, useGenerateAdminPortalLink, useGenerateAdminPortalLinkHook, useGenerateAdminPortalLinkMutationOptions, useGetAuditLogStream, useGetAuditLogStreamHook, useGetAuditLogStreamQueryOptions, useGetDataInstallationAuthorizationStatus, useGetDataInstallationAuthorizationStatusHook, useGetDataInstallationAuthorizationStatusQueryOptions, useGetDataIntegrationAuthorizeUrl, useGetDataIntegrationAuthorizeUrlHook, useGetDataIntegrationAuthorizeUrlQueryOptions, useGetDirectory, useGetDirectoryHook, useGetDirectoryQueryOptions, useInviteMember, useInviteMemberHook, useInviteMemberMutationOptions, useListDataIntegrationOrganizationOverrides, useListDataIntegrationOrganizationOverridesHook, useListDataIntegrationOrganizationOverridesQueryOptions, useListDirectories, useListDirectoriesHook, useListDirectoriesQueryOptions, useListOrganizationApiKeyPermissions, useListOrganizationApiKeyPermissionsHook, useListOrganizationApiKeyPermissionsQueryOptions, useListOrganizationApiKeys, useListOrganizationApiKeysHook, useListOrganizationApiKeysQueryOptions, useListOrganizationDomains, useListOrganizationDomainsHook, useListOrganizationDomainsQueryOptions, useListSsoConnections, useListSsoConnectionsHook, useListSsoConnectionsQueryOptions, useListUserApiKeyPermissions, useListUserApiKeyPermissionsHook, useListUserApiKeyPermissionsQueryOptions, useListUserApiKeys, useListUserApiKeysHook, useListUserApiKeysQueryOptions, useMe, useMeHook, useMeQueryOptions, useMembers, useMembersHook, useMembersQueryOptions, useMyDataIntegrations, useMyDataIntegrationsHook, useMyDataIntegrationsQueryOptions, useOrganizations, useOrganizationsHook, useOrganizationsQueryOptions, useRegisterPasskey, useRegisterPasskeyHook, useRegisterPasskeyMutationOptions, useRemoveMember, useRemoveMemberHook, useRemoveMemberMutationOptions, useResendInvite, useResendInviteHook, useResendInviteMutationOptions, useReverifyOrganizationDomain, useReverifyOrganizationDomainHook, useReverifyOrganizationDomainMutationOptions, useRevokeAllSessions, useRevokeAllSessionsHook, useRevokeAllSessionsMutationOptions, useRevokeInvite, useRevokeInviteHook, useRevokeInviteMutationOptions, useRevokeSession, useRevokeSessionHook, useRevokeSessionMutationOptions, useRoles, useRolesAndConfig, useRolesAndConfigHook, useRolesAndConfigQueryOptions, useRolesHook, useRolesQueryOptions, useSendEmailChange, useSendEmailChangeHook, useSendEmailChangeMutationOptions, useSendVerification, useSendVerificationHook, useSendVerificationMutationOptions, useSessions, useSessionsHook, useSessionsQueryOptions, useSettings, useSettingsHook, useSettingsQueryOptions, useUpdateMe, useUpdateMeHook, useUpdateMeMutationOptions, useUpdateMember, useUpdateMemberHook, useUpdateMemberMutationOptions, useUpdatePassword, useUpdatePasswordHook, useUpdatePasswordMutationOptions, useUpsertDataIntegrationOrganizationOverride, useUpsertDataIntegrationOrganizationOverrideHook, useUpsertDataIntegrationOrganizationOverrideMutationOptions, useVerify, useVerifyEmailChange, useVerifyEmailChangeHook, useVerifyEmailChangeMutationOptions, useVerifyHook, useVerifyMutationOptions, useVerifyPasskey, useVerifyPasskeyHook, useVerifyPasskeyMutationOptions, useVerifyTotpFactor, useVerifyTotpFactorHook, useVerifyTotpFactorMutationOptions };
|
|
@@ -61,6 +61,7 @@ __export(fetch_exports, {
|
|
|
61
61
|
getGetDataIntegrationAuthorizeUrlUrl: () => getGetDataIntegrationAuthorizeUrlUrl,
|
|
62
62
|
getGetDirectoryUrl: () => getGetDirectoryUrl,
|
|
63
63
|
getInviteMemberUrl: () => getInviteMemberUrl,
|
|
64
|
+
getListDataIntegrationOrganizationOverridesUrl: () => getListDataIntegrationOrganizationOverridesUrl,
|
|
64
65
|
getListDirectoriesUrl: () => getListDirectoriesUrl,
|
|
65
66
|
getListOrganizationApiKeyPermissionsUrl: () => getListOrganizationApiKeyPermissionsUrl,
|
|
66
67
|
getListOrganizationApiKeysUrl: () => getListOrganizationApiKeysUrl,
|
|
@@ -88,11 +89,13 @@ __export(fetch_exports, {
|
|
|
88
89
|
getUpdateMeUrl: () => getUpdateMeUrl,
|
|
89
90
|
getUpdateMemberUrl: () => getUpdateMemberUrl,
|
|
90
91
|
getUpdatePasswordUrl: () => getUpdatePasswordUrl,
|
|
92
|
+
getUpsertDataIntegrationOrganizationOverrideUrl: () => getUpsertDataIntegrationOrganizationOverrideUrl,
|
|
91
93
|
getVerifyEmailChangeUrl: () => getVerifyEmailChangeUrl,
|
|
92
94
|
getVerifyPasskeyUrl: () => getVerifyPasskeyUrl,
|
|
93
95
|
getVerifyTotpFactorUrl: () => getVerifyTotpFactorUrl,
|
|
94
96
|
getVerifyUrl: () => getVerifyUrl,
|
|
95
97
|
inviteMember: () => inviteMember,
|
|
98
|
+
listDataIntegrationOrganizationOverrides: () => listDataIntegrationOrganizationOverrides,
|
|
96
99
|
listDirectories: () => listDirectories,
|
|
97
100
|
listOrganizationApiKeyPermissions: () => listOrganizationApiKeyPermissions,
|
|
98
101
|
listOrganizationApiKeys: () => listOrganizationApiKeys,
|
|
@@ -120,6 +123,7 @@ __export(fetch_exports, {
|
|
|
120
123
|
updateMe: () => updateMe,
|
|
121
124
|
updateMember: () => updateMember,
|
|
122
125
|
updatePassword: () => updatePassword,
|
|
126
|
+
upsertDataIntegrationOrganizationOverride: () => upsertDataIntegrationOrganizationOverride,
|
|
123
127
|
verify: () => verify,
|
|
124
128
|
verifyEmailChange: () => verifyEmailChange,
|
|
125
129
|
verifyPasskey: () => verifyPasskey,
|
|
@@ -321,6 +325,22 @@ const myDataIntegrations = async (options) => {
|
|
|
321
325
|
headers: res.headers
|
|
322
326
|
};
|
|
323
327
|
};
|
|
328
|
+
const getListDataIntegrationOrganizationOverridesUrl = () => {
|
|
329
|
+
return `https://api.workos.com/_widgets/DataIntegrations/organization-overrides`;
|
|
330
|
+
};
|
|
331
|
+
const listDataIntegrationOrganizationOverrides = async (options) => {
|
|
332
|
+
const res = await fetch(getListDataIntegrationOrganizationOverridesUrl(), {
|
|
333
|
+
...options,
|
|
334
|
+
method: "GET"
|
|
335
|
+
});
|
|
336
|
+
const body = [204, 205, 304].includes(res.status) ? null : await res.text();
|
|
337
|
+
const data = body ? JSON.parse(body) : {};
|
|
338
|
+
return {
|
|
339
|
+
data,
|
|
340
|
+
status: res.status,
|
|
341
|
+
headers: res.headers
|
|
342
|
+
};
|
|
343
|
+
};
|
|
324
344
|
const getGetDataInstallationAuthorizationStatusUrl = (dataIntegrationId, state) => {
|
|
325
345
|
return `https://api.workos.com/_widgets/DataIntegrations/${dataIntegrationId}/authorization-status/${state}`;
|
|
326
346
|
};
|
|
@@ -363,6 +383,27 @@ const getDataIntegrationAuthorizeUrl = async (slug, params, options) => {
|
|
|
363
383
|
headers: res.headers
|
|
364
384
|
};
|
|
365
385
|
};
|
|
386
|
+
const getUpsertDataIntegrationOrganizationOverrideUrl = (slug) => {
|
|
387
|
+
return `https://api.workos.com/_widgets/DataIntegrations/${slug}/organization-override`;
|
|
388
|
+
};
|
|
389
|
+
const upsertDataIntegrationOrganizationOverride = async (slug, upsertDataIntegrationOrganizationOverrideBody, options) => {
|
|
390
|
+
const res = await fetch(
|
|
391
|
+
getUpsertDataIntegrationOrganizationOverrideUrl(slug),
|
|
392
|
+
{
|
|
393
|
+
...options,
|
|
394
|
+
method: "PUT",
|
|
395
|
+
headers: { "Content-Type": "application/json", ...options?.headers },
|
|
396
|
+
body: JSON.stringify(upsertDataIntegrationOrganizationOverrideBody)
|
|
397
|
+
}
|
|
398
|
+
);
|
|
399
|
+
const body = [204, 205, 304].includes(res.status) ? null : await res.text();
|
|
400
|
+
const data = body ? JSON.parse(body) : {};
|
|
401
|
+
return {
|
|
402
|
+
data,
|
|
403
|
+
status: res.status,
|
|
404
|
+
headers: res.headers
|
|
405
|
+
};
|
|
406
|
+
};
|
|
366
407
|
const getCreateUserApiKeyUrl = () => {
|
|
367
408
|
return `https://api.workos.com/_widgets/UserApiKeys/api-keys`;
|
|
368
409
|
};
|
|
@@ -1072,6 +1113,7 @@ const settings = async (options) => {
|
|
|
1072
1113
|
getGetDataIntegrationAuthorizeUrlUrl,
|
|
1073
1114
|
getGetDirectoryUrl,
|
|
1074
1115
|
getInviteMemberUrl,
|
|
1116
|
+
getListDataIntegrationOrganizationOverridesUrl,
|
|
1075
1117
|
getListDirectoriesUrl,
|
|
1076
1118
|
getListOrganizationApiKeyPermissionsUrl,
|
|
1077
1119
|
getListOrganizationApiKeysUrl,
|
|
@@ -1099,11 +1141,13 @@ const settings = async (options) => {
|
|
|
1099
1141
|
getUpdateMeUrl,
|
|
1100
1142
|
getUpdateMemberUrl,
|
|
1101
1143
|
getUpdatePasswordUrl,
|
|
1144
|
+
getUpsertDataIntegrationOrganizationOverrideUrl,
|
|
1102
1145
|
getVerifyEmailChangeUrl,
|
|
1103
1146
|
getVerifyPasskeyUrl,
|
|
1104
1147
|
getVerifyTotpFactorUrl,
|
|
1105
1148
|
getVerifyUrl,
|
|
1106
1149
|
inviteMember,
|
|
1150
|
+
listDataIntegrationOrganizationOverrides,
|
|
1107
1151
|
listDirectories,
|
|
1108
1152
|
listOrganizationApiKeyPermissions,
|
|
1109
1153
|
listOrganizationApiKeys,
|
|
@@ -1131,6 +1175,7 @@ const settings = async (options) => {
|
|
|
1131
1175
|
updateMe,
|
|
1132
1176
|
updateMember,
|
|
1133
1177
|
updatePassword,
|
|
1178
|
+
upsertDataIntegrationOrganizationOverride,
|
|
1134
1179
|
verify,
|
|
1135
1180
|
verifyEmailChange,
|
|
1136
1181
|
verifyPasskey,
|