@workos-inc/widgets 1.10.0 → 1.10.1
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 +4 -0
- package/dist/cjs/api/endpoint.cjs.map +1 -1
- package/dist/cjs/api/endpoint.d.cts +35 -32
- package/dist/cjs/experimental/api/fetch.cjs.map +1 -1
- package/dist/cjs/experimental/api/fetch.d.cts +35 -32
- package/dist/cjs/experimental/api/react-query.cjs.map +1 -1
- package/dist/cjs/experimental/api/react-query.d.cts +35 -32
- package/dist/cjs/experimental/api/swr.cjs.map +1 -1
- package/dist/cjs/experimental/api/swr.d.cts +35 -32
- package/dist/cjs/lib/api/user.d.cts +6 -6
- package/dist/cjs/lib/api-keys/api-keys-table.cjs +2 -2
- package/dist/cjs/lib/api-keys/api-keys-table.cjs.map +1 -1
- package/dist/cjs/lib/identity-providers.d.cts +1 -1
- package/dist/cjs/lib/use-permissions.cjs.map +1 -1
- package/dist/cjs/lib/use-permissions.d.cts +1 -1
- package/dist/esm/api/endpoint.d.ts +35 -32
- package/dist/esm/api/endpoint.js.map +1 -1
- package/dist/esm/experimental/api/fetch.d.ts +35 -32
- package/dist/esm/experimental/api/fetch.js.map +1 -1
- package/dist/esm/experimental/api/react-query.d.ts +35 -32
- package/dist/esm/experimental/api/react-query.js.map +1 -1
- package/dist/esm/experimental/api/swr.d.ts +35 -32
- package/dist/esm/experimental/api/swr.js.map +1 -1
- package/dist/esm/lib/api/user.d.ts +6 -6
- package/dist/esm/lib/api-keys/api-keys-table.js +2 -2
- package/dist/esm/lib/api-keys/api-keys-table.js.map +1 -1
- package/dist/esm/lib/identity-providers.d.ts +1 -1
- package/dist/esm/lib/use-permissions.d.ts +1 -1
- package/dist/esm/lib/use-permissions.js.map +1 -1
- package/package.json +3 -3
|
@@ -46,6 +46,9 @@ interface Member {
|
|
|
46
46
|
isLoggedInUser?: true | null;
|
|
47
47
|
roles?: MemberRoles;
|
|
48
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* Pagination cursors for navigating between pages of results.
|
|
51
|
+
*/
|
|
49
52
|
interface ListMetadata {
|
|
50
53
|
/**
|
|
51
54
|
* An object ID that defines your place in the list. When the ID is not present, you are at the start of the list.
|
|
@@ -58,6 +61,10 @@ interface ListMetadata {
|
|
|
58
61
|
*/
|
|
59
62
|
after: string | null;
|
|
60
63
|
}
|
|
64
|
+
interface MembersResponse {
|
|
65
|
+
data: Member[];
|
|
66
|
+
list_metadata: ListMetadata;
|
|
67
|
+
}
|
|
61
68
|
interface MemberRole {
|
|
62
69
|
name: string;
|
|
63
70
|
slug: string;
|
|
@@ -69,6 +76,26 @@ interface RolesAndConfigResponse {
|
|
|
69
76
|
roles: MemberRole[];
|
|
70
77
|
multipleRolesEnabled: boolean;
|
|
71
78
|
}
|
|
79
|
+
interface InviteMemberResponse {
|
|
80
|
+
success: boolean;
|
|
81
|
+
}
|
|
82
|
+
interface ResendInviteResponse {
|
|
83
|
+
/** @nullable */
|
|
84
|
+
id?: string | null;
|
|
85
|
+
success: boolean;
|
|
86
|
+
}
|
|
87
|
+
interface RevokeMemberResponse {
|
|
88
|
+
id: string;
|
|
89
|
+
success: boolean;
|
|
90
|
+
}
|
|
91
|
+
interface UpdateMemberResponse {
|
|
92
|
+
id: string;
|
|
93
|
+
success: boolean;
|
|
94
|
+
}
|
|
95
|
+
interface RemoveMemberResponse {
|
|
96
|
+
id: string;
|
|
97
|
+
success: boolean;
|
|
98
|
+
}
|
|
72
99
|
interface OrganizationInfo {
|
|
73
100
|
id: string;
|
|
74
101
|
name: string;
|
|
@@ -471,7 +498,7 @@ interface DataIntegration {
|
|
|
471
498
|
/** @nullable */
|
|
472
499
|
description?: string | null;
|
|
473
500
|
slug: string;
|
|
474
|
-
integrationType:
|
|
501
|
+
integrationType: string;
|
|
475
502
|
ownership: "userland_user" | "organization";
|
|
476
503
|
credentialsType: "shared" | "custom";
|
|
477
504
|
scopes?: string[] | null;
|
|
@@ -640,9 +667,6 @@ type InviteMemberBody = {
|
|
|
640
667
|
lastName?: string | null;
|
|
641
668
|
roles: string[];
|
|
642
669
|
};
|
|
643
|
-
type InviteMember201 = {
|
|
644
|
-
success: boolean;
|
|
645
|
-
};
|
|
646
670
|
type InviteMember400 = {
|
|
647
671
|
message: string;
|
|
648
672
|
};
|
|
@@ -652,10 +676,6 @@ type InviteMember403 = {
|
|
|
652
676
|
type InviteMember404 = {
|
|
653
677
|
message: string;
|
|
654
678
|
};
|
|
655
|
-
type RevokeInvite200 = {
|
|
656
|
-
id: string;
|
|
657
|
-
success: boolean;
|
|
658
|
-
};
|
|
659
679
|
type RevokeInvite400 = {
|
|
660
680
|
message: string;
|
|
661
681
|
};
|
|
@@ -665,11 +685,6 @@ type RevokeInvite403 = {
|
|
|
665
685
|
type RevokeInvite404 = {
|
|
666
686
|
message: string;
|
|
667
687
|
};
|
|
668
|
-
type ResendInvite201 = {
|
|
669
|
-
/** @nullable */
|
|
670
|
-
id?: string | null;
|
|
671
|
-
success: boolean;
|
|
672
|
-
};
|
|
673
688
|
type ResendInvite400 = {
|
|
674
689
|
message: string;
|
|
675
690
|
};
|
|
@@ -689,20 +704,12 @@ type MembersParams = {
|
|
|
689
704
|
after?: string;
|
|
690
705
|
role?: string;
|
|
691
706
|
};
|
|
692
|
-
type Members200 = {
|
|
693
|
-
data: Member[];
|
|
694
|
-
list_metadata: ListMetadata;
|
|
695
|
-
};
|
|
696
707
|
type Members403 = {
|
|
697
708
|
message: string;
|
|
698
709
|
};
|
|
699
710
|
type Members404 = {
|
|
700
711
|
message: string;
|
|
701
712
|
};
|
|
702
|
-
type RemoveMember200 = {
|
|
703
|
-
id: string;
|
|
704
|
-
success: boolean;
|
|
705
|
-
};
|
|
706
713
|
type RemoveMember400 = {
|
|
707
714
|
message: string;
|
|
708
715
|
};
|
|
@@ -715,10 +722,6 @@ type RemoveMember404 = {
|
|
|
715
722
|
type UpdateMemberBody = {
|
|
716
723
|
roles: string[];
|
|
717
724
|
};
|
|
718
|
-
type UpdateMember200 = {
|
|
719
|
-
id: string;
|
|
720
|
-
success: boolean;
|
|
721
|
-
};
|
|
722
725
|
type UpdateMember400 = {
|
|
723
726
|
message: string;
|
|
724
727
|
};
|
|
@@ -1112,7 +1115,7 @@ declare const getDataIntegrationAuthorizeUrl: (slug: string, params?: GetDataInt
|
|
|
1112
1115
|
* Sends an invitation email to a user to join the organization. If the user does not have an account, they will be prompted to create one upon accepting.
|
|
1113
1116
|
*/
|
|
1114
1117
|
type inviteMemberResponse201 = {
|
|
1115
|
-
data:
|
|
1118
|
+
data: InviteMemberResponse;
|
|
1116
1119
|
status: 201;
|
|
1117
1120
|
};
|
|
1118
1121
|
type inviteMemberResponse400 = {
|
|
@@ -1140,7 +1143,7 @@ declare const inviteMember: (inviteMemberBody: InviteMemberBody, options?: Reque
|
|
|
1140
1143
|
* Cancels a pending invitation for the specified user, preventing them from joining the organization via that invite link.
|
|
1141
1144
|
*/
|
|
1142
1145
|
type revokeInviteResponse200 = {
|
|
1143
|
-
data:
|
|
1146
|
+
data: RevokeMemberResponse;
|
|
1144
1147
|
status: 200;
|
|
1145
1148
|
};
|
|
1146
1149
|
type revokeInviteResponse400 = {
|
|
@@ -1168,7 +1171,7 @@ declare const revokeInvite: (userId: string, options?: RequestInit) => Promise<r
|
|
|
1168
1171
|
* Resends the pending invitation email to the specified user. Returns an error if the invitation has already been accepted or has expired.
|
|
1169
1172
|
*/
|
|
1170
1173
|
type resendInviteResponse201 = {
|
|
1171
|
-
data:
|
|
1174
|
+
data: ResendInviteResponse;
|
|
1172
1175
|
status: 201;
|
|
1173
1176
|
};
|
|
1174
1177
|
type resendInviteResponse400 = {
|
|
@@ -1200,7 +1203,7 @@ declare const resendInvite: (userId: string, options?: RequestInit) => Promise<r
|
|
|
1200
1203
|
* Returns a paginated list of members belonging to the organization. Supports filtering by search term and role, and cursor-based pagination via before/after parameters.
|
|
1201
1204
|
*/
|
|
1202
1205
|
type membersResponse200 = {
|
|
1203
|
-
data:
|
|
1206
|
+
data: MembersResponse;
|
|
1204
1207
|
status: 200;
|
|
1205
1208
|
};
|
|
1206
1209
|
type membersResponse403 = {
|
|
@@ -1224,7 +1227,7 @@ declare const members: (params?: MembersParams, options?: RequestInit) => Promis
|
|
|
1224
1227
|
* Removes the specified user from the organization by revoking their membership. The user account itself is not deleted.
|
|
1225
1228
|
*/
|
|
1226
1229
|
type removeMemberResponse200 = {
|
|
1227
|
-
data:
|
|
1230
|
+
data: RemoveMemberResponse;
|
|
1228
1231
|
status: 200;
|
|
1229
1232
|
};
|
|
1230
1233
|
type removeMemberResponse400 = {
|
|
@@ -1252,7 +1255,7 @@ declare const removeMember: (userId: string, options?: RequestInit) => Promise<r
|
|
|
1252
1255
|
* Updates the specified member's organization membership, such as changing their assigned role.
|
|
1253
1256
|
*/
|
|
1254
1257
|
type updateMemberResponse200 = {
|
|
1255
|
-
data:
|
|
1258
|
+
data: UpdateMemberResponse;
|
|
1256
1259
|
status: 200;
|
|
1257
1260
|
};
|
|
1258
1261
|
type updateMemberResponse400 = {
|
|
@@ -1902,4 +1905,4 @@ type settingsResponse = settingsResponseSuccess | settingsResponseError;
|
|
|
1902
1905
|
declare const getSettingsUrl: () => string;
|
|
1903
1906
|
declare const settings: (options?: RequestInit) => Promise<settingsResponse>;
|
|
1904
1907
|
|
|
1905
|
-
export { type ActiveSession, type ActiveSessionCurrentLocation, type ActiveSessionState, type ActiveSessionsResponse, type AuditLogStreamJSON, type AuditLogStreamState, type AuditLogStreamType, type AuthenticationInformation403, type AuthenticationInformationResponse, type AuthenticationInformationResponseData, type AuthenticationInformationResponseDataPasswordSettings, type AuthenticationInformationResponseDataVerificationMethods, type AuthenticationInformationResponseDataVerificationMethodsMfa, type AuthenticationInformationResponseDataVerificationMethodsPasskey, type AuthenticationInformationResponseDataVerificationMethodsPassword, type CreateOrganizationApiKey400, type CreateOrganizationApiKey403, type CreateOrganizationApiKey404, type CreateOrganizationApiKey422, type CreateOrganizationApiKey422ErrorsItem, type CreateOrganizationApiKeyRequest, type CreateOrganizationApiKeyResponse, type CreatePassword201, type CreatePassword400, type CreatePassword403, type CreatePasswordRequest, type CreateTotpFactor400, type CreateTotpFactor403, type CreateTotpFactorResponse, type CreateTotpFactorResponseAuthenticationChallenge, type CreateTotpFactorResponseAuthenticationFactor, type DataInstallation, type DataIntegration, type DataIntegrationsResponse, type DeleteDataInstallation200, type DeleteDataInstallation403, type DeleteDataInstallation404, type DeleteOrganizationApiKey200, type DeleteOrganizationApiKey403, type DeleteOrganizationApiKey404, type DeleteOrganizationDomain403, type DeleteOrganizationDomain404, type DeletePasskey200, type DeletePasskey400, type DeletePasskey403, type DeleteTotpFactors200, type DeleteTotpFactors400, type DeleteTotpFactors403, type DirectoriesResponse, type Directory, type DirectoryMetadata, DirectoryState, DirectoryType, type DirectoryUsersMetadata, DomainVerificationNameServer, type GenerateAdminPortalLink201, type GenerateAdminPortalLink403, type GenerateAdminPortalLink404, type GenerateAdminPortalLink500, GenerateAdminPortalLinkIntent, type GenerateAdminPortalLinkParams, type GetAuditLogStream200, type GetAuditLogStream403, type GetAuthorizationStatusResponse, type GetDataInstallationAuthorizationStatus400, type GetDataInstallationAuthorizationStatus403, type GetDataInstallationAuthorizationStatus404, type GetDataIntegrationAuthorizeUrl400, type GetDataIntegrationAuthorizeUrl403, type GetDataIntegrationAuthorizeUrl404, type GetDataIntegrationAuthorizeUrlParams, type GetDataIntegrationAuthorizeUrlResponse, type GetDirectory403, type GetDirectory404, type InviteMember201, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type ListDirectories403, type ListDirectories404, type ListMetadata, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, type ListOrganizationApiKeys403, type ListOrganizationApiKeysParams, type ListOrganizationApiKeysResponse, type ListOrganizationApiKeysResponseData, type ListOrganizationApiKeysResponseListMetadata, type ListOrganizationDomains200, type ListOrganizationDomains403, type ListOrganizationDomains404, type Me, type Me403, type MeOauthProfiles, type Member, type MemberActions, MemberActionsItem, type MemberRole, type MemberRoles, MemberStatus, type Members200, type Members403, type Members404, type MembersParams, type MyDataIntegrations403, type OAuthProfile, OidcSessionState, type OrganizationDomain, OrganizationDomainState, type OrganizationInfo, type Organizations403, type Organizations404, type OrganizationsResponse, type RegisterPasskey400, type RegisterPasskey403, type RegisterPasskeyResponse, type RegisterPasskeyResponseOptions, type RemoveMember200, type RemoveMember400, type RemoveMember403, type RemoveMember404, type ResendInvite201, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsRequest, type RevokeInvite200, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeSession200, type RevokeSession400, type RevokeSession403, type Roles403, type Roles404, type RolesAndConfig403, type RolesAndConfig404, type RolesAndConfigResponse, SamlSessionState, type SendVerification400, type SendVerification403, type SendVerificationResponse, type Sessions403, type Settings403, type SettingsResponse, type SsoConnection, type SsoConnectionSessionJSON, SsoConnectionSessionJSONState, type UpdateMe400, type UpdateMe403, type UpdateMeBody, type UpdateMember200, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordRequest, type Verify400, type Verify403, type VerifyPasskey200, type VerifyPasskey400, type VerifyPasskey403, type VerifyPasskeyRequest, type VerifyPasskeyRequestResponse, type VerifyRequest, type VerifyResponse, type VerifyTotpFactor200, type VerifyTotpFactor400, type VerifyTotpFactor403, type VerifyTotpFactorRequest, type X509CertificateJSON, authenticationInformation, type authenticationInformationResponse, type authenticationInformationResponse200, type authenticationInformationResponse403, type authenticationInformationResponseError, type authenticationInformationResponseSuccess, createOrganizationApiKey, type createOrganizationApiKeyResponse, type createOrganizationApiKeyResponse201, type createOrganizationApiKeyResponse400, type createOrganizationApiKeyResponse403, type createOrganizationApiKeyResponse404, type createOrganizationApiKeyResponse422, type createOrganizationApiKeyResponseError, type createOrganizationApiKeyResponseSuccess, createPassword, type createPasswordResponse, type createPasswordResponse201, type createPasswordResponse400, type createPasswordResponse403, type createPasswordResponseError, type createPasswordResponseSuccess, createTotpFactor, type createTotpFactorResponse, type createTotpFactorResponse201, type createTotpFactorResponse400, type createTotpFactorResponse403, type createTotpFactorResponseError, type createTotpFactorResponseSuccess, 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, generateAdminPortalLink, type generateAdminPortalLinkResponse, type generateAdminPortalLinkResponse201, type generateAdminPortalLinkResponse403, type generateAdminPortalLinkResponse404, type generateAdminPortalLinkResponse500, type generateAdminPortalLinkResponseError, type generateAdminPortalLinkResponseSuccess, getAuditLogStream, type getAuditLogStreamResponse, type getAuditLogStreamResponse200, type getAuditLogStreamResponse403, type getAuditLogStreamResponseError, type getAuditLogStreamResponseSuccess, getAuthenticationInformationUrl, getCreateOrganizationApiKeyUrl, getCreatePasswordUrl, getCreateTotpFactorUrl, getDataInstallationAuthorizationStatus, type getDataInstallationAuthorizationStatusResponse, type getDataInstallationAuthorizationStatusResponse200, type getDataInstallationAuthorizationStatusResponse400, type getDataInstallationAuthorizationStatusResponse403, type getDataInstallationAuthorizationStatusResponse404, type getDataInstallationAuthorizationStatusResponseError, type getDataInstallationAuthorizationStatusResponseSuccess, getDataIntegrationAuthorizeUrl, type getDataIntegrationAuthorizeUrlResponse, type getDataIntegrationAuthorizeUrlResponse200, type getDataIntegrationAuthorizeUrlResponse400, type getDataIntegrationAuthorizeUrlResponse403, type getDataIntegrationAuthorizeUrlResponse404, type getDataIntegrationAuthorizeUrlResponseError, type getDataIntegrationAuthorizeUrlResponseSuccess, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainUrl, getDeletePasskeyUrl, getDeleteTotpFactorsUrl, getDirectory, type getDirectoryResponse, type getDirectoryResponse200, type getDirectoryResponse403, type getDirectoryResponse404, type getDirectoryResponseError, type getDirectoryResponseSuccess, getGenerateAdminPortalLinkUrl, getGetAuditLogStreamUrl, getGetDataInstallationAuthorizationStatusUrl, getGetDataIntegrationAuthorizeUrlUrl, getGetDirectoryUrl, getInviteMemberUrl, getListDirectoriesUrl, getListOrganizationApiKeyPermissionsUrl, getListOrganizationApiKeysUrl, getListOrganizationDomainsUrl, getListSsoConnectionsUrl, getMeUrl, getMembersUrl, getMyDataIntegrationsUrl, getOrganizationsUrl, getRegisterPasskeyUrl, getRemoveMemberUrl, getResendInviteUrl, getReverifyOrganizationDomainUrl, getRevokeAllSessionsUrl, getRevokeInviteUrl, getRevokeSessionUrl, getRolesAndConfigUrl, getRolesUrl, getSendVerificationUrl, getSessionsUrl, getSettingsUrl, getUpdateMeUrl, getUpdateMemberUrl, getUpdatePasswordUrl, getVerifyPasskeyUrl, 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, 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, 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, verify, 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 };
|
|
1908
|
+
export { type ActiveSession, type ActiveSessionCurrentLocation, type ActiveSessionState, type ActiveSessionsResponse, type AuditLogStreamJSON, type AuditLogStreamState, type AuditLogStreamType, type AuthenticationInformation403, type AuthenticationInformationResponse, type AuthenticationInformationResponseData, type AuthenticationInformationResponseDataPasswordSettings, type AuthenticationInformationResponseDataVerificationMethods, type AuthenticationInformationResponseDataVerificationMethodsMfa, type AuthenticationInformationResponseDataVerificationMethodsPasskey, type AuthenticationInformationResponseDataVerificationMethodsPassword, type CreateOrganizationApiKey400, type CreateOrganizationApiKey403, type CreateOrganizationApiKey404, type CreateOrganizationApiKey422, type CreateOrganizationApiKey422ErrorsItem, type CreateOrganizationApiKeyRequest, type CreateOrganizationApiKeyResponse, type CreatePassword201, type CreatePassword400, type CreatePassword403, type CreatePasswordRequest, type CreateTotpFactor400, type CreateTotpFactor403, type CreateTotpFactorResponse, type CreateTotpFactorResponseAuthenticationChallenge, type CreateTotpFactorResponseAuthenticationFactor, type DataInstallation, type DataIntegration, type DataIntegrationsResponse, type DeleteDataInstallation200, type DeleteDataInstallation403, type DeleteDataInstallation404, type DeleteOrganizationApiKey200, type DeleteOrganizationApiKey403, type DeleteOrganizationApiKey404, type DeleteOrganizationDomain403, type DeleteOrganizationDomain404, type DeletePasskey200, type DeletePasskey400, type DeletePasskey403, type DeleteTotpFactors200, type DeleteTotpFactors400, type DeleteTotpFactors403, type DirectoriesResponse, type Directory, type DirectoryMetadata, DirectoryState, DirectoryType, type DirectoryUsersMetadata, DomainVerificationNameServer, type GenerateAdminPortalLink201, type GenerateAdminPortalLink403, type GenerateAdminPortalLink404, type GenerateAdminPortalLink500, GenerateAdminPortalLinkIntent, type GenerateAdminPortalLinkParams, type GetAuditLogStream200, type GetAuditLogStream403, type GetAuthorizationStatusResponse, type GetDataInstallationAuthorizationStatus400, type GetDataInstallationAuthorizationStatus403, type GetDataInstallationAuthorizationStatus404, type GetDataIntegrationAuthorizeUrl400, type GetDataIntegrationAuthorizeUrl403, type GetDataIntegrationAuthorizeUrl404, type GetDataIntegrationAuthorizeUrlParams, type GetDataIntegrationAuthorizeUrlResponse, type GetDirectory403, type GetDirectory404, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type InviteMemberResponse, type ListDirectories403, type ListDirectories404, type ListMetadata, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, type ListOrganizationApiKeys403, type ListOrganizationApiKeysParams, type ListOrganizationApiKeysResponse, type ListOrganizationApiKeysResponseData, type ListOrganizationApiKeysResponseListMetadata, type ListOrganizationDomains200, type ListOrganizationDomains403, type ListOrganizationDomains404, type Me, type Me403, type MeOauthProfiles, type Member, type MemberActions, MemberActionsItem, type MemberRole, type MemberRoles, MemberStatus, type Members403, type Members404, type MembersParams, type MembersResponse, type MyDataIntegrations403, type OAuthProfile, OidcSessionState, type OrganizationDomain, OrganizationDomainState, type OrganizationInfo, type Organizations403, type Organizations404, type OrganizationsResponse, type RegisterPasskey400, type RegisterPasskey403, type RegisterPasskeyResponse, type RegisterPasskeyResponseOptions, type RemoveMember400, type RemoveMember403, type RemoveMember404, type RemoveMemberResponse, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ResendInviteResponse, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsRequest, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeMemberResponse, type RevokeSession200, type RevokeSession400, type RevokeSession403, type Roles403, type Roles404, type RolesAndConfig403, type RolesAndConfig404, type RolesAndConfigResponse, SamlSessionState, type SendVerification400, type SendVerification403, type SendVerificationResponse, type Sessions403, type Settings403, type SettingsResponse, type SsoConnection, type SsoConnectionSessionJSON, SsoConnectionSessionJSONState, type UpdateMe400, type UpdateMe403, type UpdateMeBody, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdateMemberResponse, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordRequest, type Verify400, type Verify403, type VerifyPasskey200, type VerifyPasskey400, type VerifyPasskey403, type VerifyPasskeyRequest, type VerifyPasskeyRequestResponse, type VerifyRequest, type VerifyResponse, type VerifyTotpFactor200, type VerifyTotpFactor400, type VerifyTotpFactor403, type VerifyTotpFactorRequest, type X509CertificateJSON, authenticationInformation, type authenticationInformationResponse, type authenticationInformationResponse200, type authenticationInformationResponse403, type authenticationInformationResponseError, type authenticationInformationResponseSuccess, createOrganizationApiKey, type createOrganizationApiKeyResponse, type createOrganizationApiKeyResponse201, type createOrganizationApiKeyResponse400, type createOrganizationApiKeyResponse403, type createOrganizationApiKeyResponse404, type createOrganizationApiKeyResponse422, type createOrganizationApiKeyResponseError, type createOrganizationApiKeyResponseSuccess, createPassword, type createPasswordResponse, type createPasswordResponse201, type createPasswordResponse400, type createPasswordResponse403, type createPasswordResponseError, type createPasswordResponseSuccess, createTotpFactor, type createTotpFactorResponse, type createTotpFactorResponse201, type createTotpFactorResponse400, type createTotpFactorResponse403, type createTotpFactorResponseError, type createTotpFactorResponseSuccess, 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, generateAdminPortalLink, type generateAdminPortalLinkResponse, type generateAdminPortalLinkResponse201, type generateAdminPortalLinkResponse403, type generateAdminPortalLinkResponse404, type generateAdminPortalLinkResponse500, type generateAdminPortalLinkResponseError, type generateAdminPortalLinkResponseSuccess, getAuditLogStream, type getAuditLogStreamResponse, type getAuditLogStreamResponse200, type getAuditLogStreamResponse403, type getAuditLogStreamResponseError, type getAuditLogStreamResponseSuccess, getAuthenticationInformationUrl, getCreateOrganizationApiKeyUrl, getCreatePasswordUrl, getCreateTotpFactorUrl, getDataInstallationAuthorizationStatus, type getDataInstallationAuthorizationStatusResponse, type getDataInstallationAuthorizationStatusResponse200, type getDataInstallationAuthorizationStatusResponse400, type getDataInstallationAuthorizationStatusResponse403, type getDataInstallationAuthorizationStatusResponse404, type getDataInstallationAuthorizationStatusResponseError, type getDataInstallationAuthorizationStatusResponseSuccess, getDataIntegrationAuthorizeUrl, type getDataIntegrationAuthorizeUrlResponse, type getDataIntegrationAuthorizeUrlResponse200, type getDataIntegrationAuthorizeUrlResponse400, type getDataIntegrationAuthorizeUrlResponse403, type getDataIntegrationAuthorizeUrlResponse404, type getDataIntegrationAuthorizeUrlResponseError, type getDataIntegrationAuthorizeUrlResponseSuccess, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainUrl, getDeletePasskeyUrl, getDeleteTotpFactorsUrl, getDirectory, type getDirectoryResponse, type getDirectoryResponse200, type getDirectoryResponse403, type getDirectoryResponse404, type getDirectoryResponseError, type getDirectoryResponseSuccess, getGenerateAdminPortalLinkUrl, getGetAuditLogStreamUrl, getGetDataInstallationAuthorizationStatusUrl, getGetDataIntegrationAuthorizeUrlUrl, getGetDirectoryUrl, getInviteMemberUrl, getListDirectoriesUrl, getListOrganizationApiKeyPermissionsUrl, getListOrganizationApiKeysUrl, getListOrganizationDomainsUrl, getListSsoConnectionsUrl, getMeUrl, getMembersUrl, getMyDataIntegrationsUrl, getOrganizationsUrl, getRegisterPasskeyUrl, getRemoveMemberUrl, getResendInviteUrl, getReverifyOrganizationDomainUrl, getRevokeAllSessionsUrl, getRevokeInviteUrl, getRevokeSessionUrl, getRolesAndConfigUrl, getRolesUrl, getSendVerificationUrl, getSessionsUrl, getSettingsUrl, getUpdateMeUrl, getUpdateMemberUrl, getUpdatePasswordUrl, getVerifyPasskeyUrl, 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, 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, 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, verify, 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 };
|