@workos-inc/widgets 1.9.0 → 1.9.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 +6 -0
- package/dist/cjs/admin-portal-domain-verification.client.cjs.map +1 -1
- package/dist/cjs/admin-portal-sso-connection.client.cjs +4 -7
- package/dist/cjs/admin-portal-sso-connection.client.cjs.map +1 -1
- package/dist/cjs/api/endpoint.cjs +176 -285
- package/dist/cjs/api/endpoint.cjs.map +1 -1
- package/dist/cjs/api/endpoint.d.cts +345 -379
- package/dist/cjs/directory-sync.client.cjs +16 -3
- package/dist/cjs/directory-sync.client.cjs.map +1 -1
- package/dist/cjs/experimental/api/fetch.cjs +42 -183
- package/dist/cjs/experimental/api/fetch.cjs.map +1 -1
- package/dist/cjs/experimental/api/fetch.d.cts +325 -369
- package/dist/cjs/experimental/api/react-query.cjs +151 -263
- package/dist/cjs/experimental/api/react-query.cjs.map +1 -1
- package/dist/cjs/experimental/api/react-query.d.cts +380 -370
- package/dist/cjs/experimental/api/swr.cjs +84 -183
- package/dist/cjs/experimental/api/swr.cjs.map +1 -1
- package/dist/cjs/experimental/api/swr.d.cts +356 -408
- package/dist/cjs/lib/add-mfa-dialog.cjs +18 -16
- package/dist/cjs/lib/add-mfa-dialog.cjs.map +1 -1
- package/dist/cjs/lib/admin-portal-sso-connection.cjs +0 -8
- package/dist/cjs/lib/admin-portal-sso-connection.cjs.map +1 -1
- package/dist/cjs/lib/admin-portal-sso-connection.d.cts +1 -2
- package/dist/cjs/lib/identity-providers.d.cts +2 -2
- package/dist/cjs/lib/provider-icon.cjs.map +1 -1
- package/dist/cjs/lib/provider-icon.d.cts +2 -2
- package/dist/cjs/workos-widgets.client.cjs +13 -1
- package/dist/cjs/workos-widgets.client.cjs.map +1 -1
- package/dist/esm/admin-portal-domain-verification.client.js +2 -2
- package/dist/esm/admin-portal-domain-verification.client.js.map +1 -1
- package/dist/esm/admin-portal-sso-connection.client.js +6 -9
- package/dist/esm/admin-portal-sso-connection.client.js.map +1 -1
- package/dist/esm/api/endpoint.d.ts +345 -379
- package/dist/esm/api/endpoint.js +168 -265
- package/dist/esm/api/endpoint.js.map +1 -1
- package/dist/esm/directory-sync.client.js +16 -3
- package/dist/esm/directory-sync.client.js.map +1 -1
- package/dist/esm/experimental/api/fetch.d.ts +325 -369
- package/dist/esm/experimental/api/fetch.js +38 -163
- package/dist/esm/experimental/api/fetch.js.map +1 -1
- package/dist/esm/experimental/api/react-query.d.ts +380 -370
- package/dist/esm/experimental/api/react-query.js +141 -243
- package/dist/esm/experimental/api/react-query.js.map +1 -1
- package/dist/esm/experimental/api/swr.d.ts +356 -408
- package/dist/esm/experimental/api/swr.js +76 -163
- package/dist/esm/experimental/api/swr.js.map +1 -1
- package/dist/esm/lib/add-mfa-dialog.js +18 -16
- package/dist/esm/lib/add-mfa-dialog.js.map +1 -1
- package/dist/esm/lib/admin-portal-sso-connection.d.ts +1 -2
- package/dist/esm/lib/admin-portal-sso-connection.js +0 -8
- package/dist/esm/lib/admin-portal-sso-connection.js.map +1 -1
- package/dist/esm/lib/identity-providers.d.ts +2 -2
- package/dist/esm/lib/provider-icon.d.ts +2 -2
- package/dist/esm/lib/provider-icon.js.map +1 -1
- package/dist/esm/workos-widgets.client.js +13 -1
- package/dist/esm/workos-widgets.client.js.map +1 -1
- package/package.json +4 -4
|
@@ -16,160 +16,131 @@ declare const MemberActionsItem: {
|
|
|
16
16
|
readonly "revoke-membership": "revoke-membership";
|
|
17
17
|
};
|
|
18
18
|
type MemberActions = MemberActionsItem[];
|
|
19
|
-
type
|
|
20
|
-
type MemberFirstName = string | null;
|
|
21
|
-
type MemberLastName = string | null;
|
|
22
|
-
type MemberLastActivityAt = string | null;
|
|
23
|
-
type MemberIsLoggedInUser = true | null;
|
|
24
|
-
type MemberRolesOneOfItemDescription = string | null;
|
|
25
|
-
type MemberRolesOneOfItem = {
|
|
19
|
+
type MemberRoles = {
|
|
26
20
|
name: string;
|
|
27
21
|
slug: string;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
22
|
+
/** @nullable */
|
|
23
|
+
description?: string | null;
|
|
24
|
+
}[] | null;
|
|
31
25
|
interface Member {
|
|
32
26
|
id: string;
|
|
33
27
|
email: string;
|
|
34
28
|
emailVerified: boolean;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
29
|
+
/** @nullable */
|
|
30
|
+
profilePictureUrl?: string | null;
|
|
31
|
+
/** @nullable */
|
|
32
|
+
firstName?: string | null;
|
|
33
|
+
/** @nullable */
|
|
34
|
+
lastName?: string | null;
|
|
38
35
|
/** An ISO 8601 timestamp. */
|
|
39
36
|
createdAt: string;
|
|
40
|
-
|
|
37
|
+
/** @nullable */
|
|
38
|
+
lastActivityAt?: string | null;
|
|
41
39
|
status: MemberStatus;
|
|
42
40
|
actions: MemberActions;
|
|
43
|
-
isLoggedInUser?:
|
|
41
|
+
isLoggedInUser?: true | null;
|
|
44
42
|
roles?: MemberRoles;
|
|
45
43
|
}
|
|
46
|
-
/**
|
|
47
|
-
* An object ID that defines your place in the list. When the ID is not present, you are at the start of the list.
|
|
48
|
-
*/
|
|
49
|
-
type ListMetadataBefore = string | null;
|
|
50
|
-
/**
|
|
51
|
-
* An object ID that defines your place in the list. When the ID is not present, you are at the end of the list.
|
|
52
|
-
*/
|
|
53
|
-
type ListMetadataAfter = string | null;
|
|
54
44
|
interface ListMetadata {
|
|
55
|
-
/**
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
45
|
+
/**
|
|
46
|
+
* An object ID that defines your place in the list. When the ID is not present, you are at the start of the list.
|
|
47
|
+
* @nullable
|
|
48
|
+
*/
|
|
49
|
+
before: string | null;
|
|
50
|
+
/**
|
|
51
|
+
* An object ID that defines your place in the list. When the ID is not present, you are at the end of the list.
|
|
52
|
+
* @nullable
|
|
53
|
+
*/
|
|
54
|
+
after: string | null;
|
|
59
55
|
}
|
|
60
|
-
type MemberRoleDescription = string | null;
|
|
61
56
|
interface MemberRole {
|
|
62
57
|
name: string;
|
|
63
58
|
slug: string;
|
|
64
59
|
default: boolean;
|
|
65
|
-
|
|
60
|
+
/** @nullable */
|
|
61
|
+
description?: string | null;
|
|
66
62
|
}
|
|
67
63
|
interface RolesAndConfigResponse {
|
|
68
64
|
roles: MemberRole[];
|
|
69
65
|
multipleRolesEnabled: boolean;
|
|
70
66
|
}
|
|
71
|
-
type OrganizationInfoFavicon = string | null;
|
|
72
67
|
interface OrganizationInfo {
|
|
73
68
|
id: string;
|
|
74
69
|
name: string;
|
|
75
70
|
current: boolean;
|
|
76
|
-
|
|
71
|
+
/** @nullable */
|
|
72
|
+
favicon?: string | null;
|
|
77
73
|
}
|
|
78
74
|
interface OrganizationsResponse {
|
|
79
75
|
data: OrganizationInfo[];
|
|
80
76
|
}
|
|
81
|
-
type OAuthProfileEmail = string | null;
|
|
82
|
-
type OAuthProfileFirstName = string | null;
|
|
83
|
-
type OAuthProfileLastName = string | null;
|
|
84
|
-
type OAuthProfileProfilePictureUrl = string | null;
|
|
85
|
-
type OAuthProfileLastLoginAt = string | null;
|
|
86
77
|
interface OAuthProfile {
|
|
87
78
|
id: string;
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
79
|
+
/** @nullable */
|
|
80
|
+
email?: string | null;
|
|
81
|
+
/** @nullable */
|
|
82
|
+
firstName?: string | null;
|
|
83
|
+
/** @nullable */
|
|
84
|
+
lastName?: string | null;
|
|
85
|
+
/** @nullable */
|
|
86
|
+
profilePictureUrl?: string | null;
|
|
87
|
+
/** @nullable */
|
|
88
|
+
lastLoginAt?: string | null;
|
|
93
89
|
}
|
|
94
|
-
type
|
|
95
|
-
type MeLastName = string | null;
|
|
96
|
-
type MeLocale = string | null;
|
|
97
|
-
type MeProfilePictureUrl = string | null;
|
|
98
|
-
type MeOauthProfilesOneOf = {
|
|
90
|
+
type MeOauthProfiles = {
|
|
99
91
|
AppleOAuth?: OAuthProfile;
|
|
100
92
|
GithubOAuth?: OAuthProfile;
|
|
101
93
|
GoogleOAuth?: OAuthProfile;
|
|
102
94
|
MicrosoftOAuth?: OAuthProfile;
|
|
103
|
-
};
|
|
104
|
-
type MeOauthProfiles = MeOauthProfilesOneOf | null;
|
|
95
|
+
} | null;
|
|
105
96
|
interface Me {
|
|
106
97
|
id: string;
|
|
107
98
|
email: string;
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
99
|
+
/** @nullable */
|
|
100
|
+
firstName?: string | null;
|
|
101
|
+
/** @nullable */
|
|
102
|
+
lastName?: string | null;
|
|
103
|
+
/** @nullable */
|
|
104
|
+
locale?: string | null;
|
|
105
|
+
/** @nullable */
|
|
106
|
+
profilePictureUrl?: string | null;
|
|
112
107
|
oauthProfiles?: MeOauthProfiles;
|
|
113
108
|
}
|
|
114
|
-
type
|
|
115
|
-
|
|
116
|
-
readonly authentication_factor: "authentication_factor";
|
|
117
|
-
};
|
|
118
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfType = (typeof CreateTotpFactorResponseAuthenticationFactorAllOfType)[keyof typeof CreateTotpFactorResponseAuthenticationFactorAllOfType];
|
|
119
|
-
declare const CreateTotpFactorResponseAuthenticationFactorAllOfType: {
|
|
120
|
-
readonly generic_otp: "generic_otp";
|
|
121
|
-
readonly sms: "sms";
|
|
122
|
-
readonly totp: "totp";
|
|
123
|
-
readonly webauthn: "webauthn";
|
|
124
|
-
};
|
|
125
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfUserId = string | null;
|
|
126
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfSmsOneOf = {
|
|
127
|
-
phone_number: string;
|
|
128
|
-
};
|
|
129
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfSms = CreateTotpFactorResponseAuthenticationFactorAllOfSmsOneOf | null;
|
|
130
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOf = {
|
|
131
|
-
issuer: string;
|
|
132
|
-
user: string;
|
|
133
|
-
secret: string;
|
|
134
|
-
qr_code: string;
|
|
135
|
-
uri: string;
|
|
136
|
-
};
|
|
137
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOfTwo = {
|
|
138
|
-
issuer: string;
|
|
139
|
-
user: string;
|
|
140
|
-
};
|
|
141
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfTotp = CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOf | CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOfTwo | null;
|
|
142
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOf = {
|
|
143
|
-
object: CreateTotpFactorResponseAuthenticationFactorAllOfObject;
|
|
109
|
+
type CreateTotpFactorResponseAuthenticationFactor = {
|
|
110
|
+
object: "authentication_factor";
|
|
144
111
|
id: string;
|
|
145
|
-
type:
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
112
|
+
type: "generic_otp" | "sms" | "totp" | "webauthn";
|
|
113
|
+
/** @nullable */
|
|
114
|
+
user_id?: string | null;
|
|
115
|
+
sms?: {
|
|
116
|
+
phone_number: string;
|
|
117
|
+
} | null;
|
|
118
|
+
totp?: {
|
|
119
|
+
issuer: string;
|
|
120
|
+
user: string;
|
|
121
|
+
secret: string;
|
|
122
|
+
qr_code: string;
|
|
123
|
+
uri: string;
|
|
124
|
+
} | {
|
|
125
|
+
issuer: string;
|
|
126
|
+
user: string;
|
|
127
|
+
} | null;
|
|
128
|
+
} & {
|
|
151
129
|
created_at: string;
|
|
152
130
|
updated_at: string;
|
|
153
131
|
};
|
|
154
|
-
type
|
|
155
|
-
|
|
156
|
-
declare const CreateTotpFactorResponseAuthenticationChallengeAllOfObject: {
|
|
157
|
-
readonly authentication_challenge: "authentication_challenge";
|
|
158
|
-
};
|
|
159
|
-
type CreateTotpFactorResponseAuthenticationChallengeAllOfExpiresAt = string | null;
|
|
160
|
-
type CreateTotpFactorResponseAuthenticationChallengeAllOfCode = string | null;
|
|
161
|
-
type CreateTotpFactorResponseAuthenticationChallengeAllOf = {
|
|
162
|
-
object: CreateTotpFactorResponseAuthenticationChallengeAllOfObject;
|
|
132
|
+
type CreateTotpFactorResponseAuthenticationChallenge = {
|
|
133
|
+
object: "authentication_challenge";
|
|
163
134
|
id: string;
|
|
164
|
-
|
|
165
|
-
|
|
135
|
+
/** @nullable */
|
|
136
|
+
expires_at?: string | null;
|
|
137
|
+
/** @nullable */
|
|
138
|
+
code?: string | null;
|
|
166
139
|
authentication_factor_id: string;
|
|
167
|
-
}
|
|
168
|
-
type CreateTotpFactorResponseAuthenticationChallengeAllOfFive = {
|
|
140
|
+
} & {
|
|
169
141
|
created_at: string;
|
|
170
142
|
updated_at: string;
|
|
171
143
|
};
|
|
172
|
-
type CreateTotpFactorResponseAuthenticationChallenge = CreateTotpFactorResponseAuthenticationChallengeAllOf & CreateTotpFactorResponseAuthenticationChallengeAllOfFive;
|
|
173
144
|
interface CreateTotpFactorResponse {
|
|
174
145
|
authenticationFactor: CreateTotpFactorResponseAuthenticationFactor;
|
|
175
146
|
authenticationChallenge: CreateTotpFactorResponseAuthenticationChallenge;
|
|
@@ -178,45 +149,29 @@ interface VerifyTotpFactorRequest {
|
|
|
178
149
|
code: string;
|
|
179
150
|
authenticationChallengeId: string;
|
|
180
151
|
}
|
|
181
|
-
type
|
|
182
|
-
|
|
183
|
-
readonly MFA: "MFA";
|
|
184
|
-
};
|
|
185
|
-
type AuthenticationInformationResponseDataVerificationMethodsMfaOneOfLastUsed = string | null;
|
|
186
|
-
type AuthenticationInformationResponseDataVerificationMethodsMfaOneOf = {
|
|
187
|
-
provider: AuthenticationInformationResponseDataVerificationMethodsMfaOneOfProvider;
|
|
152
|
+
type AuthenticationInformationResponseDataVerificationMethodsMfa = {
|
|
153
|
+
provider: "MFA";
|
|
188
154
|
isSetUp: boolean;
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
type
|
|
193
|
-
|
|
194
|
-
readonly Password: "Password";
|
|
195
|
-
};
|
|
196
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasswordOneOfLastUsed = string | null;
|
|
197
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasswordOneOf = {
|
|
198
|
-
provider: AuthenticationInformationResponseDataVerificationMethodsPasswordOneOfProvider;
|
|
155
|
+
/** @nullable */
|
|
156
|
+
lastUsed?: string | null;
|
|
157
|
+
} | null;
|
|
158
|
+
type AuthenticationInformationResponseDataVerificationMethodsPassword = {
|
|
159
|
+
provider: "Password";
|
|
199
160
|
isSetUp: boolean;
|
|
200
|
-
|
|
161
|
+
/** @nullable */
|
|
162
|
+
lastUsed?: string | null;
|
|
201
163
|
isCurrentSession: boolean;
|
|
202
|
-
};
|
|
203
|
-
type
|
|
204
|
-
|
|
205
|
-
declare const AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfProvider: {
|
|
206
|
-
readonly Passkey: "Passkey";
|
|
207
|
-
};
|
|
208
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfLastUsed = string | null;
|
|
209
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfPassKeysItem = {
|
|
210
|
-
id: string;
|
|
211
|
-
};
|
|
212
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOf = {
|
|
213
|
-
provider: AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfProvider;
|
|
164
|
+
} | null;
|
|
165
|
+
type AuthenticationInformationResponseDataVerificationMethodsPasskey = {
|
|
166
|
+
provider: "Passkey";
|
|
214
167
|
isSetUp: boolean;
|
|
215
|
-
|
|
216
|
-
|
|
168
|
+
/** @nullable */
|
|
169
|
+
lastUsed?: string | null;
|
|
170
|
+
passKeys: {
|
|
171
|
+
id: string;
|
|
172
|
+
}[];
|
|
217
173
|
isCurrentSession: boolean;
|
|
218
|
-
};
|
|
219
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasskey = AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOf | null;
|
|
174
|
+
} | null;
|
|
220
175
|
type AuthenticationInformationResponseDataVerificationMethods = {
|
|
221
176
|
Mfa?: AuthenticationInformationResponseDataVerificationMethodsMfa;
|
|
222
177
|
Password?: AuthenticationInformationResponseDataVerificationMethodsPassword;
|
|
@@ -247,29 +202,24 @@ interface UpdatePasswordRequest {
|
|
|
247
202
|
interface RevokeAllSessionsRequest {
|
|
248
203
|
currentSessionId: string;
|
|
249
204
|
}
|
|
250
|
-
type ActiveSessionIpAddress = string | null;
|
|
251
|
-
type ActiveSessionUserAgent = string | null;
|
|
252
|
-
type ActiveSessionOrganizationId = string | null;
|
|
253
|
-
type ActiveSessionStateExpiresAt = string | null;
|
|
254
205
|
type ActiveSessionState = {
|
|
255
206
|
tag: string;
|
|
256
|
-
|
|
207
|
+
/** @nullable */
|
|
208
|
+
expiresAt?: string | null;
|
|
257
209
|
};
|
|
258
|
-
type
|
|
210
|
+
type ActiveSessionCurrentLocation = {
|
|
259
211
|
cityName: string;
|
|
260
212
|
countryISOCode: string;
|
|
261
|
-
};
|
|
262
|
-
type ActiveSessionCurrentLocation = ActiveSessionCurrentLocationOneOf | null;
|
|
263
|
-
type ActiveSessionImpersonatorUserId = string | null;
|
|
264
|
-
type ActiveSessionImpersonatorEmail = string | null;
|
|
265
|
-
type ActiveSessionImpersonationReason = string | null;
|
|
266
|
-
type ActiveSessionLastActivityAt = string | null;
|
|
213
|
+
} | null;
|
|
267
214
|
interface ActiveSession {
|
|
268
215
|
id: string;
|
|
269
216
|
userlandUserId: string;
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
217
|
+
/** @nullable */
|
|
218
|
+
ipAddress?: string | null;
|
|
219
|
+
/** @nullable */
|
|
220
|
+
userAgent?: string | null;
|
|
221
|
+
/** @nullable */
|
|
222
|
+
organizationId?: string | null;
|
|
273
223
|
state: ActiveSessionState;
|
|
274
224
|
currentLocation?: ActiveSessionCurrentLocation;
|
|
275
225
|
usedSsoAuth: boolean;
|
|
@@ -286,23 +236,23 @@ interface ActiveSession {
|
|
|
286
236
|
usedSlackOauth: boolean;
|
|
287
237
|
usedXeroOauth: boolean;
|
|
288
238
|
usedMagicAuth: boolean;
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
239
|
+
/** @nullable */
|
|
240
|
+
impersonatorUserId?: string | null;
|
|
241
|
+
/** @nullable */
|
|
242
|
+
impersonatorEmail?: string | null;
|
|
243
|
+
/** @nullable */
|
|
244
|
+
impersonationReason?: string | null;
|
|
245
|
+
/** @nullable */
|
|
246
|
+
lastActivityAt?: string | null;
|
|
293
247
|
createdAt: string;
|
|
294
248
|
updatedAt: string;
|
|
295
249
|
}
|
|
296
250
|
interface ActiveSessionsResponse {
|
|
297
251
|
data: ActiveSession[];
|
|
298
252
|
}
|
|
299
|
-
type SendVerificationResponseType = (typeof SendVerificationResponseType)[keyof typeof SendVerificationResponseType];
|
|
300
|
-
declare const SendVerificationResponseType: {
|
|
301
|
-
readonly EmailVerification: "EmailVerification";
|
|
302
|
-
};
|
|
303
253
|
interface SendVerificationResponse {
|
|
304
254
|
authenticationChallenge: string;
|
|
305
|
-
type:
|
|
255
|
+
type: "EmailVerification";
|
|
306
256
|
}
|
|
307
257
|
interface VerifyRequest {
|
|
308
258
|
code: string;
|
|
@@ -326,21 +276,17 @@ interface VerifyPasskeyRequest {
|
|
|
326
276
|
challengeId: string;
|
|
327
277
|
response: VerifyPasskeyRequestResponse;
|
|
328
278
|
}
|
|
329
|
-
type SettingsResponseObject = (typeof SettingsResponseObject)[keyof typeof SettingsResponseObject];
|
|
330
|
-
declare const SettingsResponseObject: {
|
|
331
|
-
readonly settings: "settings";
|
|
332
|
-
};
|
|
333
|
-
type SettingsResponseLogoDarkIconPath = string | null;
|
|
334
|
-
type SettingsResponseLogoDarkPath = string | null;
|
|
335
|
-
type SettingsResponseLogoLightIconPath = string | null;
|
|
336
|
-
type SettingsResponseLogoLightPath = string | null;
|
|
337
279
|
interface SettingsResponse {
|
|
338
|
-
object:
|
|
280
|
+
object: "settings";
|
|
339
281
|
authkitOrigin: string;
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
282
|
+
/** @nullable */
|
|
283
|
+
logoDarkIconPath?: string | null;
|
|
284
|
+
/** @nullable */
|
|
285
|
+
logoDarkPath?: string | null;
|
|
286
|
+
/** @nullable */
|
|
287
|
+
logoLightIconPath?: string | null;
|
|
288
|
+
/** @nullable */
|
|
289
|
+
logoLightPath?: string | null;
|
|
344
290
|
teamName: string;
|
|
345
291
|
}
|
|
346
292
|
type OrganizationDomainState = (typeof OrganizationDomainState)[keyof typeof OrganizationDomainState];
|
|
@@ -358,28 +304,28 @@ declare const DomainVerificationNameServer: {
|
|
|
358
304
|
readonly GoDaddy: "GoDaddy";
|
|
359
305
|
readonly Other: "Other";
|
|
360
306
|
};
|
|
361
|
-
type OrganizationDomainVerificationPrefix = string | null;
|
|
362
|
-
type OrganizationDomainVerificationToken = string | null;
|
|
363
|
-
type OrganizationDomainSubdomain = string | null;
|
|
364
307
|
interface OrganizationDomain {
|
|
365
308
|
id: string;
|
|
366
309
|
domain: string;
|
|
367
310
|
state: OrganizationDomainState;
|
|
368
311
|
nameServer: DomainVerificationNameServer;
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
312
|
+
/** @nullable */
|
|
313
|
+
verificationPrefix?: string | null;
|
|
314
|
+
/** @nullable */
|
|
315
|
+
verificationToken?: string | null;
|
|
316
|
+
/** @nullable */
|
|
317
|
+
subdomain?: string | null;
|
|
372
318
|
createdAt: string;
|
|
373
319
|
}
|
|
374
|
-
type X509CertificateJSONNotBefore = string | null;
|
|
375
|
-
type X509CertificateJSONNotAfter = string | null;
|
|
376
|
-
type X509CertificateJSONLastExpiryEventSentAt = string | null;
|
|
377
320
|
interface X509CertificateJSON {
|
|
378
321
|
id: string;
|
|
379
322
|
value: string;
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
323
|
+
/** @nullable */
|
|
324
|
+
notBefore?: string | null;
|
|
325
|
+
/** @nullable */
|
|
326
|
+
notAfter?: string | null;
|
|
327
|
+
/** @nullable */
|
|
328
|
+
lastExpiryEventSentAt?: string | null;
|
|
383
329
|
}
|
|
384
330
|
type SamlSessionState = (typeof SamlSessionState)[keyof typeof SamlSessionState];
|
|
385
331
|
declare const SamlSessionState: {
|
|
@@ -411,108 +357,52 @@ interface SsoConnectionSessionJSON {
|
|
|
411
357
|
createdAt: string;
|
|
412
358
|
state: (typeof SsoConnectionSessionJSONState)[keyof typeof SsoConnectionSessionJSONState];
|
|
413
359
|
}
|
|
414
|
-
type
|
|
415
|
-
declare const SsoConnectionAnyOfType: {
|
|
416
|
-
readonly AdfsSaml: "AdfsSaml";
|
|
417
|
-
readonly Auth0Saml: "Auth0Saml";
|
|
418
|
-
readonly AzureSaml: "AzureSaml";
|
|
419
|
-
readonly CasSaml: "CasSaml";
|
|
420
|
-
readonly ClassLinkSaml: "ClassLinkSaml";
|
|
421
|
-
readonly CloudflareSaml: "CloudflareSaml";
|
|
422
|
-
readonly CyberArkSaml: "CyberArkSaml";
|
|
423
|
-
readonly DuoSaml: "DuoSaml";
|
|
424
|
-
readonly GenericSaml: "GenericSaml";
|
|
425
|
-
readonly GoogleSaml: "GoogleSaml";
|
|
426
|
-
readonly JumpCloudSaml: "JumpCloudSaml";
|
|
427
|
-
readonly KeycloakSaml: "KeycloakSaml";
|
|
428
|
-
readonly LastPassSaml: "LastPassSaml";
|
|
429
|
-
readonly MiniOrangeSaml: "MiniOrangeSaml";
|
|
430
|
-
readonly NetIqSaml: "NetIqSaml";
|
|
431
|
-
readonly OktaSaml: "OktaSaml";
|
|
432
|
-
readonly OneLoginSaml: "OneLoginSaml";
|
|
433
|
-
readonly OracleSaml: "OracleSaml";
|
|
434
|
-
readonly PingFederateSaml: "PingFederateSaml";
|
|
435
|
-
readonly PingOneSaml: "PingOneSaml";
|
|
436
|
-
readonly RipplingSaml: "RipplingSaml";
|
|
437
|
-
readonly SalesforceSaml: "SalesforceSaml";
|
|
438
|
-
readonly ShibbolethGenericSaml: "ShibbolethGenericSaml";
|
|
439
|
-
readonly ShibbolethSaml: "ShibbolethSaml";
|
|
440
|
-
readonly SimpleSamlPhpSaml: "SimpleSamlPhpSaml";
|
|
441
|
-
readonly TestIdp: "TestIdp";
|
|
442
|
-
readonly VmWareSaml: "VmWareSaml";
|
|
443
|
-
};
|
|
444
|
-
type SsoConnectionAnyOfState = (typeof SsoConnectionAnyOfState)[keyof typeof SsoConnectionAnyOfState];
|
|
445
|
-
declare const SsoConnectionAnyOfState: {
|
|
446
|
-
readonly Inactive: "Inactive";
|
|
447
|
-
readonly Validating: "Validating";
|
|
448
|
-
readonly Active: "Active";
|
|
449
|
-
readonly Deleting: "Deleting";
|
|
450
|
-
};
|
|
451
|
-
type SsoConnectionAnyOfLatestExpiringCertificate = X509CertificateJSON | null;
|
|
452
|
-
type SsoConnectionAnyOfLatestExpiredCertificate = X509CertificateJSON | null;
|
|
453
|
-
type SsoConnectionAnyOfProviderTag = (typeof SsoConnectionAnyOfProviderTag)[keyof typeof SsoConnectionAnyOfProviderTag];
|
|
454
|
-
declare const SsoConnectionAnyOfProviderTag: {
|
|
455
|
-
readonly Saml: "Saml";
|
|
456
|
-
};
|
|
457
|
-
type SsoConnectionAnyOfLastSession = SsoConnectionSessionJSON | null;
|
|
458
|
-
type SsoConnectionAnyOf = {
|
|
360
|
+
type SsoConnection = {
|
|
459
361
|
id: string;
|
|
460
|
-
type:
|
|
362
|
+
type: "AdfsSaml" | "Auth0Saml" | "AzureSaml" | "CasSaml" | "ClassLinkSaml" | "CloudflareSaml" | "CyberArkSaml" | "DuoSaml" | "GenericSaml" | "GoogleSaml" | "JumpCloudSaml" | "KeycloakSaml" | "LastPassSaml" | "MiniOrangeSaml" | "NetIqSaml" | "OktaSaml" | "OneLoginSaml" | "OracleSaml" | "PingFederateSaml" | "PingOneSaml" | "RipplingSaml" | "SalesforceSaml" | "ShibbolethGenericSaml" | "ShibbolethSaml" | "SimpleSamlPhpSaml" | "TestIdp" | "VmWareSaml";
|
|
461
363
|
name: string;
|
|
462
|
-
state:
|
|
364
|
+
state: "Inactive" | "Validating" | "Active" | "Deleting";
|
|
463
365
|
x509Certificates: X509CertificateJSON[];
|
|
464
|
-
latestExpiringCertificate?:
|
|
465
|
-
latestExpiredCertificate?:
|
|
366
|
+
latestExpiringCertificate?: X509CertificateJSON | null;
|
|
367
|
+
latestExpiredCertificate?: X509CertificateJSON | null;
|
|
466
368
|
createdAt: string;
|
|
467
|
-
providerTag:
|
|
468
|
-
lastSession?:
|
|
469
|
-
}
|
|
470
|
-
type SsoConnectionAnyOfEightAllOfState = (typeof SsoConnectionAnyOfEightAllOfState)[keyof typeof SsoConnectionAnyOfEightAllOfState];
|
|
471
|
-
declare const SsoConnectionAnyOfEightAllOfState: {
|
|
472
|
-
readonly Inactive: "Inactive";
|
|
473
|
-
readonly Validating: "Validating";
|
|
474
|
-
readonly Active: "Active";
|
|
475
|
-
readonly Deleting: "Deleting";
|
|
476
|
-
};
|
|
477
|
-
type SsoConnectionAnyOfEightAllOfType = (typeof SsoConnectionAnyOfEightAllOfType)[keyof typeof SsoConnectionAnyOfEightAllOfType];
|
|
478
|
-
declare const SsoConnectionAnyOfEightAllOfType: {
|
|
479
|
-
readonly AdpOidc: "AdpOidc";
|
|
480
|
-
readonly Auth0Migration: "Auth0Migration";
|
|
481
|
-
readonly CleverOidc: "CleverOidc";
|
|
482
|
-
readonly EntraIdOidc: "EntraIdOidc";
|
|
483
|
-
readonly GenericOidc: "GenericOidc";
|
|
484
|
-
readonly GoogleOidc: "GoogleOidc";
|
|
485
|
-
readonly OktaOidc: "OktaOidc";
|
|
486
|
-
readonly LoginGovOidc: "LoginGovOidc";
|
|
487
|
-
};
|
|
488
|
-
type SsoConnectionAnyOfEightAllOfProviderTag = (typeof SsoConnectionAnyOfEightAllOfProviderTag)[keyof typeof SsoConnectionAnyOfEightAllOfProviderTag];
|
|
489
|
-
declare const SsoConnectionAnyOfEightAllOfProviderTag: {
|
|
490
|
-
readonly OpenIdConnect: "OpenIdConnect";
|
|
491
|
-
};
|
|
492
|
-
type SsoConnectionAnyOfEightAllOfLastSession = SsoConnectionSessionJSON | null;
|
|
493
|
-
type SsoConnectionAnyOfEightAllOf = {
|
|
369
|
+
providerTag: "Saml";
|
|
370
|
+
lastSession?: SsoConnectionSessionJSON | null;
|
|
371
|
+
} | ({
|
|
494
372
|
id: string;
|
|
495
373
|
name: string;
|
|
496
|
-
state:
|
|
497
|
-
type:
|
|
374
|
+
state: "Inactive" | "Validating" | "Active" | "Deleting";
|
|
375
|
+
type: "AdpOidc" | "Auth0Migration" | "CleverOidc" | "EntraIdOidc" | "GenericOidc" | "GoogleOidc" | "OktaOidc" | "LoginGovOidc";
|
|
498
376
|
createdAt: string;
|
|
499
|
-
providerTag:
|
|
500
|
-
lastSession?:
|
|
501
|
-
}
|
|
502
|
-
|
|
377
|
+
providerTag: "OpenIdConnect";
|
|
378
|
+
lastSession?: SsoConnectionSessionJSON | null;
|
|
379
|
+
} & {
|
|
380
|
+
/** @nullable */
|
|
503
381
|
x509Certificates?: null;
|
|
382
|
+
/** @nullable */
|
|
504
383
|
latestExpiringCertificate?: null;
|
|
384
|
+
/** @nullable */
|
|
505
385
|
latestExpiredCertificate?: null;
|
|
506
|
-
};
|
|
507
|
-
type
|
|
508
|
-
type
|
|
509
|
-
|
|
386
|
+
});
|
|
387
|
+
type AuditLogStreamState = "Active" | "Inactive" | "Error" | "Invalid";
|
|
388
|
+
type AuditLogStreamType = "Datadog" | "Splunk" | "S3" | "GoogleCloudStorage" | "GenericHttps" | "AzureSentinel";
|
|
389
|
+
interface AuditLogStreamJSON {
|
|
390
|
+
id: string;
|
|
391
|
+
state: AuditLogStreamState;
|
|
392
|
+
type: AuditLogStreamType;
|
|
393
|
+
/** @nullable */
|
|
394
|
+
errorMessage?: string | null;
|
|
395
|
+
/** @nullable */
|
|
396
|
+
lastSyncedEventId?: string | null;
|
|
397
|
+
auditLogTrailId: string;
|
|
398
|
+
}
|
|
510
399
|
interface ListOrganizationApiKeysResponseData {
|
|
511
400
|
id: string;
|
|
512
401
|
name: string;
|
|
513
402
|
obfuscatedValue: string;
|
|
514
403
|
createdAt: string;
|
|
515
|
-
|
|
404
|
+
/** @nullable */
|
|
405
|
+
lastUsedAt?: string | null;
|
|
516
406
|
permissions: string[];
|
|
517
407
|
}
|
|
518
408
|
type ListOrganizationApiKeysResponseListMetadata = {
|
|
@@ -535,12 +425,12 @@ interface CreateOrganizationApiKeyResponse {
|
|
|
535
425
|
name: string;
|
|
536
426
|
permissions: string[];
|
|
537
427
|
}
|
|
538
|
-
type ListOrganizationApiKeyPermissionDescription = string | null;
|
|
539
428
|
interface ListOrganizationApiKeyPermission {
|
|
540
429
|
id: string;
|
|
541
430
|
slug: string;
|
|
542
431
|
name: string;
|
|
543
|
-
|
|
432
|
+
/** @nullable */
|
|
433
|
+
description?: string | null;
|
|
544
434
|
}
|
|
545
435
|
type ListOrganizationApiKeyPermissionsResponseListMetadata = {
|
|
546
436
|
before?: string;
|
|
@@ -550,114 +440,49 @@ interface ListOrganizationApiKeyPermissionsResponse {
|
|
|
550
440
|
data: ListOrganizationApiKeyPermission[];
|
|
551
441
|
list_metadata: ListOrganizationApiKeyPermissionsResponseListMetadata;
|
|
552
442
|
}
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
readonly connected_account: "connected_account";
|
|
556
|
-
};
|
|
557
|
-
type DataInstallationAllOfUserId = string | null;
|
|
558
|
-
type DataInstallationAllOfOrganizationId = string | null;
|
|
559
|
-
declare const DataInstallationAllOfState: {
|
|
560
|
-
readonly connected: "connected";
|
|
561
|
-
readonly needs_reauthorization: "needs_reauthorization";
|
|
562
|
-
};
|
|
563
|
-
type DataInstallationAllOf = {
|
|
564
|
-
object: (typeof DataInstallationAllOfObject)[keyof typeof DataInstallationAllOfObject];
|
|
443
|
+
type DataInstallation = {
|
|
444
|
+
object: "data_installation" | "connected_account";
|
|
565
445
|
id: string;
|
|
566
|
-
|
|
567
|
-
|
|
446
|
+
/** @nullable */
|
|
447
|
+
user_id?: string | null;
|
|
448
|
+
/** @nullable */
|
|
449
|
+
organization_id?: string | null;
|
|
568
450
|
scopes: string[];
|
|
569
|
-
state:
|
|
451
|
+
state: "connected" | "needs_reauthorization";
|
|
570
452
|
created_at: string;
|
|
571
453
|
updated_at: string;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
organizationId?: DataInstallationAllOfSixOrganizationId;
|
|
454
|
+
} & {
|
|
455
|
+
/** @nullable */
|
|
456
|
+
userlandUserId?: string | null;
|
|
457
|
+
/** @nullable */
|
|
458
|
+
organizationId?: string | null;
|
|
578
459
|
createdAt?: string;
|
|
579
460
|
updatedAt?: string;
|
|
580
461
|
};
|
|
581
|
-
type DataInstallation = DataInstallationAllOf & DataInstallationAllOfSix;
|
|
582
|
-
type DataIntegrationObject = (typeof DataIntegrationObject)[keyof typeof DataIntegrationObject];
|
|
583
|
-
declare const DataIntegrationObject: {
|
|
584
|
-
readonly data_integration: "data_integration";
|
|
585
|
-
};
|
|
586
|
-
type DataIntegrationDescription = string | null;
|
|
587
|
-
declare const DataIntegrationIntegrationType: {
|
|
588
|
-
readonly asana: "asana";
|
|
589
|
-
readonly box: "box";
|
|
590
|
-
readonly "cal-dot-com": "cal-dot-com";
|
|
591
|
-
readonly calendly: "calendly";
|
|
592
|
-
readonly confluence: "confluence";
|
|
593
|
-
readonly dropbox: "dropbox";
|
|
594
|
-
readonly "frame-io": "frame-io";
|
|
595
|
-
readonly front: "front";
|
|
596
|
-
readonly github: "github";
|
|
597
|
-
readonly gitlab: "gitlab";
|
|
598
|
-
readonly gmail: "gmail";
|
|
599
|
-
readonly google: "google";
|
|
600
|
-
readonly "google-calendar": "google-calendar";
|
|
601
|
-
readonly "google-drive": "google-drive";
|
|
602
|
-
readonly helpscout: "helpscout";
|
|
603
|
-
readonly hubspot: "hubspot";
|
|
604
|
-
readonly intercom: "intercom";
|
|
605
|
-
readonly jira: "jira";
|
|
606
|
-
readonly linear: "linear";
|
|
607
|
-
readonly microsoft: "microsoft";
|
|
608
|
-
readonly "microsoft-onedrive": "microsoft-onedrive";
|
|
609
|
-
readonly "microsoft-onenote": "microsoft-onenote";
|
|
610
|
-
readonly "microsoft-outlook": "microsoft-outlook";
|
|
611
|
-
readonly "microsoft-outlook-calendar": "microsoft-outlook-calendar";
|
|
612
|
-
readonly "microsoft-sharepoint": "microsoft-sharepoint";
|
|
613
|
-
readonly "microsoft-teams": "microsoft-teams";
|
|
614
|
-
readonly "microsoft-todo": "microsoft-todo";
|
|
615
|
-
readonly notion: "notion";
|
|
616
|
-
readonly prefect: "prefect";
|
|
617
|
-
readonly "pydantic-logfire": "pydantic-logfire";
|
|
618
|
-
readonly salesforce: "salesforce";
|
|
619
|
-
readonly sentry: "sentry";
|
|
620
|
-
readonly slack: "slack";
|
|
621
|
-
readonly snowflake: "snowflake";
|
|
622
|
-
readonly stripe: "stripe";
|
|
623
|
-
readonly xero: "xero";
|
|
624
|
-
readonly zendesk: "zendesk";
|
|
625
|
-
};
|
|
626
|
-
declare const DataIntegrationOwnership: {
|
|
627
|
-
readonly userland_user: "userland_user";
|
|
628
|
-
readonly organization: "organization";
|
|
629
|
-
};
|
|
630
|
-
declare const DataIntegrationCredentialsType: {
|
|
631
|
-
readonly shared: "shared";
|
|
632
|
-
readonly custom: "custom";
|
|
633
|
-
};
|
|
634
|
-
type DataIntegrationScopes = string[] | null;
|
|
635
|
-
type DataIntegrationInstallation = DataInstallation | null;
|
|
636
462
|
interface DataIntegration {
|
|
637
|
-
object:
|
|
463
|
+
object: "data_integration";
|
|
638
464
|
id: string;
|
|
639
465
|
name: string;
|
|
640
|
-
|
|
466
|
+
/** @nullable */
|
|
467
|
+
description?: string | null;
|
|
641
468
|
slug: string;
|
|
642
|
-
integrationType:
|
|
643
|
-
ownership:
|
|
644
|
-
credentialsType:
|
|
645
|
-
scopes?:
|
|
469
|
+
integrationType: "asana" | "box" | "cal-dot-com" | "calendly" | "confluence" | "dropbox" | "frame-io" | "front" | "github" | "gitlab" | "gmail" | "google" | "google-calendar" | "google-drive" | "helpscout" | "hubspot" | "intercom" | "jira" | "linear" | "microsoft" | "microsoft-onedrive" | "microsoft-onenote" | "microsoft-outlook" | "microsoft-outlook-calendar" | "microsoft-sharepoint" | "microsoft-teams" | "microsoft-todo" | "notion" | "prefect" | "pydantic-logfire" | "salesforce" | "sentry" | "slack" | "snowflake" | "stripe" | "xero" | "zendesk";
|
|
470
|
+
ownership: "userland_user" | "organization";
|
|
471
|
+
credentialsType: "shared" | "custom";
|
|
472
|
+
scopes?: string[] | null;
|
|
646
473
|
createdAt: string;
|
|
647
474
|
updatedAt: string;
|
|
648
|
-
installation?:
|
|
475
|
+
installation?: DataInstallation | null;
|
|
649
476
|
}
|
|
650
477
|
interface DataIntegrationsResponse {
|
|
651
478
|
data: DataIntegration[];
|
|
652
479
|
}
|
|
653
|
-
type
|
|
480
|
+
type GetDataIntegrationAuthorizeUrlResponse = {
|
|
654
481
|
url: string;
|
|
655
482
|
redirectToken: string;
|
|
656
|
-
}
|
|
657
|
-
type GetDataIntegrationAuthorizeUrlResponseAllOfTwo = {
|
|
483
|
+
} & {
|
|
658
484
|
handoffToken?: string;
|
|
659
485
|
};
|
|
660
|
-
type GetDataIntegrationAuthorizeUrlResponse = GetDataIntegrationAuthorizeUrlResponseAllOf & GetDataIntegrationAuthorizeUrlResponseAllOfTwo;
|
|
661
486
|
interface GetAuthorizationStatusResponse {
|
|
662
487
|
isConnecting: boolean;
|
|
663
488
|
}
|
|
@@ -711,6 +536,8 @@ interface Directory {
|
|
|
711
536
|
state: DirectoryState;
|
|
712
537
|
createdAt: string;
|
|
713
538
|
updatedAt: string;
|
|
539
|
+
/** @nullable */
|
|
540
|
+
lastSyncRunAt?: string | null;
|
|
714
541
|
metadata: DirectoryMetadata;
|
|
715
542
|
}
|
|
716
543
|
interface DirectoriesResponse {
|
|
@@ -800,12 +627,12 @@ type GetDataIntegrationAuthorizeUrl403 = {
|
|
|
800
627
|
type GetDataIntegrationAuthorizeUrl404 = {
|
|
801
628
|
message: string;
|
|
802
629
|
};
|
|
803
|
-
type InviteMemberBodyFirstName = string | null;
|
|
804
|
-
type InviteMemberBodyLastName = string | null;
|
|
805
630
|
type InviteMemberBody = {
|
|
806
631
|
email: string;
|
|
807
|
-
|
|
808
|
-
|
|
632
|
+
/** @nullable */
|
|
633
|
+
firstName?: string | null;
|
|
634
|
+
/** @nullable */
|
|
635
|
+
lastName?: string | null;
|
|
809
636
|
roles: string[];
|
|
810
637
|
};
|
|
811
638
|
type InviteMember201 = {
|
|
@@ -833,9 +660,9 @@ type RevokeInvite403 = {
|
|
|
833
660
|
type RevokeInvite404 = {
|
|
834
661
|
message: string;
|
|
835
662
|
};
|
|
836
|
-
type ResendInvite201Id = string | null;
|
|
837
663
|
type ResendInvite201 = {
|
|
838
|
-
|
|
664
|
+
/** @nullable */
|
|
665
|
+
id?: string | null;
|
|
839
666
|
success: boolean;
|
|
840
667
|
};
|
|
841
668
|
type ResendInvite400 = {
|
|
@@ -1033,6 +860,12 @@ type VerifyTotpFactor400 = {
|
|
|
1033
860
|
type VerifyTotpFactor403 = {
|
|
1034
861
|
message: string;
|
|
1035
862
|
};
|
|
863
|
+
type GetAuditLogStream200 = AuditLogStreamJSON | {
|
|
864
|
+
[key: string]: unknown;
|
|
865
|
+
};
|
|
866
|
+
type GetAuditLogStream403 = {
|
|
867
|
+
message: string;
|
|
868
|
+
};
|
|
1036
869
|
type GenerateAdminPortalLinkParams = {
|
|
1037
870
|
intent: GenerateAdminPortalLinkIntent;
|
|
1038
871
|
};
|
|
@@ -1040,6 +873,7 @@ type GenerateAdminPortalLinkIntent = (typeof GenerateAdminPortalLinkIntent)[keyo
|
|
|
1040
873
|
declare const GenerateAdminPortalLinkIntent: {
|
|
1041
874
|
readonly domain_verification: "domain_verification";
|
|
1042
875
|
readonly sso: "sso";
|
|
876
|
+
readonly log_streams: "log_streams";
|
|
1043
877
|
};
|
|
1044
878
|
type GenerateAdminPortalLink201 = {
|
|
1045
879
|
link: string;
|
|
@@ -1080,6 +914,12 @@ type ListDirectories403 = {
|
|
|
1080
914
|
type ListDirectories404 = {
|
|
1081
915
|
message: string;
|
|
1082
916
|
};
|
|
917
|
+
type GetDirectory403 = {
|
|
918
|
+
message: string;
|
|
919
|
+
};
|
|
920
|
+
type GetDirectory404 = {
|
|
921
|
+
message: string;
|
|
922
|
+
};
|
|
1083
923
|
type Settings403 = {
|
|
1084
924
|
message: string;
|
|
1085
925
|
};
|
|
@@ -1374,7 +1214,7 @@ type getDataInstallationAuthorizationStatusResponseError = (getDataInstallationA
|
|
|
1374
1214
|
type getDataInstallationAuthorizationStatusResponse = getDataInstallationAuthorizationStatusResponseSuccess | getDataInstallationAuthorizationStatusResponseError;
|
|
1375
1215
|
declare const getGetDataInstallationAuthorizationStatusUrl: (dataIntegrationId: string, state: string) => string;
|
|
1376
1216
|
declare const getDataInstallationAuthorizationStatus: (dataIntegrationId: string, state: string, options?: RequestInit) => Promise<getDataInstallationAuthorizationStatusResponse>;
|
|
1377
|
-
declare const getGetDataInstallationAuthorizationStatusQueryKey: (dataIntegrationId
|
|
1217
|
+
declare const getGetDataInstallationAuthorizationStatusQueryKey: (dataIntegrationId: string, state: string) => readonly [`https://api.workos.com/_widgets/DataIntegrations/${string}/authorization-status/${string}`];
|
|
1378
1218
|
declare const getGetDataInstallationAuthorizationStatusQueryOptions: <TData = Awaited<ReturnType<typeof getDataInstallationAuthorizationStatus>>, TError = GetDataInstallationAuthorizationStatus400 | GetDataInstallationAuthorizationStatus403 | GetDataInstallationAuthorizationStatus404>(dataIntegrationId: string, state: string, options?: {
|
|
1379
1219
|
query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof getDataInstallationAuthorizationStatus>>, TError, TData>>;
|
|
1380
1220
|
fetch?: RequestInit;
|
|
@@ -1426,7 +1266,7 @@ type getDataIntegrationAuthorizeUrlResponseError = (getDataIntegrationAuthorizeU
|
|
|
1426
1266
|
type getDataIntegrationAuthorizeUrlResponse = getDataIntegrationAuthorizeUrlResponseSuccess | getDataIntegrationAuthorizeUrlResponseError;
|
|
1427
1267
|
declare const getGetDataIntegrationAuthorizeUrlUrl: (slug: string, params?: GetDataIntegrationAuthorizeUrlParams) => string;
|
|
1428
1268
|
declare const getDataIntegrationAuthorizeUrl: (slug: string, params?: GetDataIntegrationAuthorizeUrlParams, options?: RequestInit) => Promise<getDataIntegrationAuthorizeUrlResponse>;
|
|
1429
|
-
declare const getGetDataIntegrationAuthorizeUrlQueryKey: (slug
|
|
1269
|
+
declare const getGetDataIntegrationAuthorizeUrlQueryKey: (slug: string, params?: GetDataIntegrationAuthorizeUrlParams) => readonly [`https://api.workos.com/_widgets/DataIntegrations/${string}/authorize`, ...GetDataIntegrationAuthorizeUrlParams[]];
|
|
1430
1270
|
declare const getGetDataIntegrationAuthorizeUrlQueryOptions: <TData = Awaited<ReturnType<typeof getDataIntegrationAuthorizeUrl>>, TError = GetDataIntegrationAuthorizeUrl400 | GetDataIntegrationAuthorizeUrl403 | GetDataIntegrationAuthorizeUrl404>(slug: string, params?: GetDataIntegrationAuthorizeUrlParams, options?: {
|
|
1431
1271
|
query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof getDataIntegrationAuthorizeUrl>>, TError, TData>>;
|
|
1432
1272
|
fetch?: RequestInit;
|
|
@@ -1453,6 +1293,9 @@ declare function useGetDataIntegrationAuthorizeUrl<TData = Awaited<ReturnType<ty
|
|
|
1453
1293
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1454
1294
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1455
1295
|
};
|
|
1296
|
+
/**
|
|
1297
|
+
* 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.
|
|
1298
|
+
*/
|
|
1456
1299
|
type inviteMemberResponse201 = {
|
|
1457
1300
|
data: InviteMember201;
|
|
1458
1301
|
status: 201;
|
|
@@ -1497,6 +1340,9 @@ declare const useInviteMember: <TError = InviteMember400 | InviteMember403 | Inv
|
|
|
1497
1340
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof inviteMember>>, TError, {
|
|
1498
1341
|
data: InviteMemberBody;
|
|
1499
1342
|
}, TContext>;
|
|
1343
|
+
/**
|
|
1344
|
+
* Cancels a pending invitation for the specified user, preventing them from joining the organization via that invite link.
|
|
1345
|
+
*/
|
|
1500
1346
|
type revokeInviteResponse200 = {
|
|
1501
1347
|
data: RevokeInvite200;
|
|
1502
1348
|
status: 200;
|
|
@@ -1540,6 +1386,9 @@ declare const useRevokeInvite: <TError = RevokeInvite400 | RevokeInvite403 | Rev
|
|
|
1540
1386
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof revokeInvite>>, TError, {
|
|
1541
1387
|
userId: string;
|
|
1542
1388
|
}, TContext>;
|
|
1389
|
+
/**
|
|
1390
|
+
* Resends the pending invitation email to the specified user. Returns an error if the invitation has already been accepted or has expired.
|
|
1391
|
+
*/
|
|
1543
1392
|
type resendInviteResponse201 = {
|
|
1544
1393
|
data: ResendInvite201;
|
|
1545
1394
|
status: 201;
|
|
@@ -1587,6 +1436,9 @@ declare const useResendInvite: <TError = ResendInvite400 | ResendInvite403 | Res
|
|
|
1587
1436
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof resendInvite>>, TError, {
|
|
1588
1437
|
userId: string;
|
|
1589
1438
|
}, TContext>;
|
|
1439
|
+
/**
|
|
1440
|
+
* 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.
|
|
1441
|
+
*/
|
|
1590
1442
|
type membersResponse200 = {
|
|
1591
1443
|
data: Members200;
|
|
1592
1444
|
status: 200;
|
|
@@ -1635,6 +1487,9 @@ declare function useMembers<TData = Awaited<ReturnType<typeof members>>, TError
|
|
|
1635
1487
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1636
1488
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1637
1489
|
};
|
|
1490
|
+
/**
|
|
1491
|
+
* Removes the specified user from the organization by revoking their membership. The user account itself is not deleted.
|
|
1492
|
+
*/
|
|
1638
1493
|
type removeMemberResponse200 = {
|
|
1639
1494
|
data: RemoveMember200;
|
|
1640
1495
|
status: 200;
|
|
@@ -1678,6 +1533,9 @@ declare const useRemoveMember: <TError = RemoveMember400 | RemoveMember403 | Rem
|
|
|
1678
1533
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof removeMember>>, TError, {
|
|
1679
1534
|
userId: string;
|
|
1680
1535
|
}, TContext>;
|
|
1536
|
+
/**
|
|
1537
|
+
* Updates the specified member's organization membership, such as changing their assigned role.
|
|
1538
|
+
*/
|
|
1681
1539
|
type updateMemberResponse200 = {
|
|
1682
1540
|
data: UpdateMember200;
|
|
1683
1541
|
status: 200;
|
|
@@ -1730,6 +1588,9 @@ declare const useUpdateMember: <TError = UpdateMember400 | UpdateMember403 | Upd
|
|
|
1730
1588
|
userId: string;
|
|
1731
1589
|
data: UpdateMemberBody;
|
|
1732
1590
|
}, TContext>;
|
|
1591
|
+
/**
|
|
1592
|
+
* Returns the list of organizations the authenticated user is a member of.
|
|
1593
|
+
*/
|
|
1733
1594
|
type organizationsResponse200 = {
|
|
1734
1595
|
data: OrganizationsResponse;
|
|
1735
1596
|
status: 200;
|
|
@@ -1778,6 +1639,9 @@ declare function useOrganizations<TData = Awaited<ReturnType<typeof organization
|
|
|
1778
1639
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1779
1640
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1780
1641
|
};
|
|
1642
|
+
/**
|
|
1643
|
+
* Returns the list of roles available in the organization that can be assigned to members.
|
|
1644
|
+
*/
|
|
1781
1645
|
type rolesResponse200 = {
|
|
1782
1646
|
data: MemberRole[];
|
|
1783
1647
|
status: 200;
|
|
@@ -1826,6 +1690,9 @@ declare function useRoles<TData = Awaited<ReturnType<typeof roles>>, TError = Ro
|
|
|
1826
1690
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1827
1691
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1828
1692
|
};
|
|
1693
|
+
/**
|
|
1694
|
+
* Returns the list of roles available in the organization along with the user management configuration, such as whether role assignment is enabled.
|
|
1695
|
+
*/
|
|
1829
1696
|
type rolesAndConfigResponse200 = {
|
|
1830
1697
|
data: RolesAndConfigResponse;
|
|
1831
1698
|
status: 200;
|
|
@@ -1874,6 +1741,9 @@ declare function useRolesAndConfig<TData = Awaited<ReturnType<typeof rolesAndCon
|
|
|
1874
1741
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1875
1742
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1876
1743
|
};
|
|
1744
|
+
/**
|
|
1745
|
+
* Returns the authentication methods and MFA factors configured for the authenticated user, including enrolled TOTP factors and passkeys.
|
|
1746
|
+
*/
|
|
1877
1747
|
type authenticationInformationResponse200 = {
|
|
1878
1748
|
data: AuthenticationInformationResponse;
|
|
1879
1749
|
status: 200;
|
|
@@ -1918,6 +1788,9 @@ declare function useAuthenticationInformation<TData = Awaited<ReturnType<typeof
|
|
|
1918
1788
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
1919
1789
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
1920
1790
|
};
|
|
1791
|
+
/**
|
|
1792
|
+
* Sets a password for the authenticated user. Only available when the user does not already have a password configured. Requires elevated access.
|
|
1793
|
+
*/
|
|
1921
1794
|
type createPasswordResponse201 = {
|
|
1922
1795
|
data: CreatePassword201;
|
|
1923
1796
|
status: 201;
|
|
@@ -1958,6 +1831,9 @@ declare const useCreatePassword: <TError = CreatePassword400 | CreatePassword403
|
|
|
1958
1831
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof createPassword>>, TError, {
|
|
1959
1832
|
data: CreatePasswordRequest;
|
|
1960
1833
|
}, TContext>;
|
|
1834
|
+
/**
|
|
1835
|
+
* Initiates TOTP (authenticator app) enrollment for the authenticated user by generating a new TOTP secret and QR code. Requires elevated access.
|
|
1836
|
+
*/
|
|
1961
1837
|
type createTotpFactorResponse201 = {
|
|
1962
1838
|
data: CreateTotpFactorResponse;
|
|
1963
1839
|
status: 201;
|
|
@@ -1989,6 +1865,9 @@ declare const useCreateTotpFactor: <TError = CreateTotpFactor400 | CreateTotpFac
|
|
|
1989
1865
|
mutation?: UseMutationOptions<Awaited<ReturnType<typeof createTotpFactor>>, TError, void, TContext>;
|
|
1990
1866
|
fetch?: RequestInit;
|
|
1991
1867
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof createTotpFactor>>, TError, void, TContext>;
|
|
1868
|
+
/**
|
|
1869
|
+
* Returns the profile information of the currently authenticated user, including their name, email, and linked authentication factors.
|
|
1870
|
+
*/
|
|
1992
1871
|
type meResponse200 = {
|
|
1993
1872
|
data: Me;
|
|
1994
1873
|
status: 200;
|
|
@@ -2033,6 +1912,9 @@ declare function useMe<TData = Awaited<ReturnType<typeof me>>, TError = Me403>(o
|
|
|
2033
1912
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
2034
1913
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2035
1914
|
};
|
|
1915
|
+
/**
|
|
1916
|
+
* Updates the profile information of the currently authenticated user, such as their first name, last name, or email address.
|
|
1917
|
+
*/
|
|
2036
1918
|
type updateMeResponse200 = {
|
|
2037
1919
|
data: Me;
|
|
2038
1920
|
status: 200;
|
|
@@ -2073,6 +1955,9 @@ declare const useUpdateMe: <TError = UpdateMe400 | UpdateMe403, TContext = unkno
|
|
|
2073
1955
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof updateMe>>, TError, {
|
|
2074
1956
|
data: UpdateMeBody;
|
|
2075
1957
|
}, TContext>;
|
|
1958
|
+
/**
|
|
1959
|
+
* Initiates passkey (WebAuthn) registration for the authenticated user by returning the credential creation options. Requires elevated access.
|
|
1960
|
+
*/
|
|
2076
1961
|
type registerPasskeyResponse201 = {
|
|
2077
1962
|
data: RegisterPasskeyResponse;
|
|
2078
1963
|
status: 201;
|
|
@@ -2104,6 +1989,9 @@ declare const useRegisterPasskey: <TError = RegisterPasskey400 | RegisterPasskey
|
|
|
2104
1989
|
mutation?: UseMutationOptions<Awaited<ReturnType<typeof registerPasskey>>, TError, void, TContext>;
|
|
2105
1990
|
fetch?: RequestInit;
|
|
2106
1991
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof registerPasskey>>, TError, void, TContext>;
|
|
1992
|
+
/**
|
|
1993
|
+
* Completes passkey (WebAuthn) registration by verifying the credential created by the authenticator. Requires elevated access.
|
|
1994
|
+
*/
|
|
2107
1995
|
type verifyPasskeyResponse200 = {
|
|
2108
1996
|
data: VerifyPasskey200;
|
|
2109
1997
|
status: 200;
|
|
@@ -2144,6 +2032,9 @@ declare const useVerifyPasskey: <TError = VerifyPasskey400 | VerifyPasskey403, T
|
|
|
2144
2032
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof verifyPasskey>>, TError, {
|
|
2145
2033
|
data: VerifyPasskeyRequest;
|
|
2146
2034
|
}, TContext>;
|
|
2035
|
+
/**
|
|
2036
|
+
* Removes the specified passkey from the authenticated user's account. Requires elevated access.
|
|
2037
|
+
*/
|
|
2147
2038
|
type deletePasskeyResponse200 = {
|
|
2148
2039
|
data: DeletePasskey200;
|
|
2149
2040
|
status: 200;
|
|
@@ -2183,6 +2074,9 @@ declare const useDeletePasskey: <TError = DeletePasskey400 | DeletePasskey403, T
|
|
|
2183
2074
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof deletePasskey>>, TError, {
|
|
2184
2075
|
passkeyId: string;
|
|
2185
2076
|
}, TContext>;
|
|
2077
|
+
/**
|
|
2078
|
+
* Sends a verification email to the authenticated user to confirm their email address.
|
|
2079
|
+
*/
|
|
2186
2080
|
type sendVerificationResponse200 = {
|
|
2187
2081
|
data: SendVerificationResponse;
|
|
2188
2082
|
status: 200;
|
|
@@ -2214,6 +2108,9 @@ declare const useSendVerification: <TError = SendVerification400 | SendVerificat
|
|
|
2214
2108
|
mutation?: UseMutationOptions<Awaited<ReturnType<typeof sendVerification>>, TError, void, TContext>;
|
|
2215
2109
|
fetch?: RequestInit;
|
|
2216
2110
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof sendVerification>>, TError, void, TContext>;
|
|
2111
|
+
/**
|
|
2112
|
+
* Returns all currently active sessions for the authenticated user, including device and location information where available.
|
|
2113
|
+
*/
|
|
2217
2114
|
type sessionsResponse200 = {
|
|
2218
2115
|
data: ActiveSessionsResponse;
|
|
2219
2116
|
status: 200;
|
|
@@ -2258,6 +2155,9 @@ declare function useSessions<TData = Awaited<ReturnType<typeof sessions>>, TErro
|
|
|
2258
2155
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
2259
2156
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2260
2157
|
};
|
|
2158
|
+
/**
|
|
2159
|
+
* Revokes all active sessions for the authenticated user except optionally the current one, signing them out of all other devices.
|
|
2160
|
+
*/
|
|
2261
2161
|
type revokeAllSessionsResponse200 = {
|
|
2262
2162
|
data: RevokeAllSessions200;
|
|
2263
2163
|
status: 200;
|
|
@@ -2298,6 +2198,9 @@ declare const useRevokeAllSessions: <TError = RevokeAllSessions400 | RevokeAllSe
|
|
|
2298
2198
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof revokeAllSessions>>, TError, {
|
|
2299
2199
|
data: RevokeAllSessionsRequest;
|
|
2300
2200
|
}, TContext>;
|
|
2201
|
+
/**
|
|
2202
|
+
* Revokes a specific active session by ID, signing the user out of that particular device or browser.
|
|
2203
|
+
*/
|
|
2301
2204
|
type revokeSessionResponse200 = {
|
|
2302
2205
|
data: RevokeSession200;
|
|
2303
2206
|
status: 200;
|
|
@@ -2337,6 +2240,9 @@ declare const useRevokeSession: <TError = RevokeSession400 | RevokeSession403, T
|
|
|
2337
2240
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof revokeSession>>, TError, {
|
|
2338
2241
|
sessionId: string;
|
|
2339
2242
|
}, TContext>;
|
|
2243
|
+
/**
|
|
2244
|
+
* Removes all TOTP factors enrolled for the authenticated user, disabling authenticator app as a second factor. Requires elevated access.
|
|
2245
|
+
*/
|
|
2340
2246
|
type deleteTotpFactorsResponse200 = {
|
|
2341
2247
|
data: DeleteTotpFactors200;
|
|
2342
2248
|
status: 200;
|
|
@@ -2368,6 +2274,9 @@ declare const useDeleteTotpFactors: <TError = DeleteTotpFactors400 | DeleteTotpF
|
|
|
2368
2274
|
mutation?: UseMutationOptions<Awaited<ReturnType<typeof deleteTotpFactors>>, TError, void, TContext>;
|
|
2369
2275
|
fetch?: RequestInit;
|
|
2370
2276
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof deleteTotpFactors>>, TError, void, TContext>;
|
|
2277
|
+
/**
|
|
2278
|
+
* Changes the password for the authenticated user. Requires the current password to be supplied alongside the new password.
|
|
2279
|
+
*/
|
|
2371
2280
|
type updatePasswordResponse201 = {
|
|
2372
2281
|
data: UpdatePassword201;
|
|
2373
2282
|
status: 201;
|
|
@@ -2408,6 +2317,9 @@ declare const useUpdatePassword: <TError = UpdatePassword400 | UpdatePassword403
|
|
|
2408
2317
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof updatePassword>>, TError, {
|
|
2409
2318
|
data: UpdatePasswordRequest;
|
|
2410
2319
|
}, TContext>;
|
|
2320
|
+
/**
|
|
2321
|
+
* Verifies the email address of the authenticated user using the code sent via the send-verification endpoint. On success, returns an elevated access token that grants access to sensitive operations such as MFA enrollment and passkey management.
|
|
2322
|
+
*/
|
|
2411
2323
|
type verifyResponse200 = {
|
|
2412
2324
|
data: VerifyResponse;
|
|
2413
2325
|
status: 200;
|
|
@@ -2448,6 +2360,9 @@ declare const useVerify: <TError = Verify400 | Verify403, TContext = unknown>(op
|
|
|
2448
2360
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof verify>>, TError, {
|
|
2449
2361
|
data: VerifyRequest;
|
|
2450
2362
|
}, TContext>;
|
|
2363
|
+
/**
|
|
2364
|
+
* Completes TOTP enrollment by verifying the one-time code generated by the authenticator app. Requires elevated access.
|
|
2365
|
+
*/
|
|
2451
2366
|
type verifyTotpFactorResponse200 = {
|
|
2452
2367
|
data: VerifyTotpFactor200;
|
|
2453
2368
|
status: 200;
|
|
@@ -2488,6 +2403,50 @@ declare const useVerifyTotpFactor: <TError = VerifyTotpFactor400 | VerifyTotpFac
|
|
|
2488
2403
|
}, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof verifyTotpFactor>>, TError, {
|
|
2489
2404
|
data: VerifyTotpFactorRequest;
|
|
2490
2405
|
}, TContext>;
|
|
2406
|
+
type getAuditLogStreamResponse200 = {
|
|
2407
|
+
data: GetAuditLogStream200;
|
|
2408
|
+
status: 200;
|
|
2409
|
+
};
|
|
2410
|
+
type getAuditLogStreamResponse403 = {
|
|
2411
|
+
data: GetAuditLogStream403;
|
|
2412
|
+
status: 403;
|
|
2413
|
+
};
|
|
2414
|
+
type getAuditLogStreamResponseSuccess = getAuditLogStreamResponse200 & {
|
|
2415
|
+
headers: Headers;
|
|
2416
|
+
};
|
|
2417
|
+
type getAuditLogStreamResponseError = getAuditLogStreamResponse403 & {
|
|
2418
|
+
headers: Headers;
|
|
2419
|
+
};
|
|
2420
|
+
type getAuditLogStreamResponse = getAuditLogStreamResponseSuccess | getAuditLogStreamResponseError;
|
|
2421
|
+
declare const getGetAuditLogStreamUrl: () => string;
|
|
2422
|
+
declare const getAuditLogStream: (options?: RequestInit) => Promise<getAuditLogStreamResponse>;
|
|
2423
|
+
declare const getGetAuditLogStreamQueryKey: () => readonly ["https://api.workos.com/_widgets/admin-portal/audit-log-stream"];
|
|
2424
|
+
declare const getGetAuditLogStreamQueryOptions: <TData = Awaited<ReturnType<typeof getAuditLogStream>>, TError = GetAuditLogStream403>(options?: {
|
|
2425
|
+
query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof getAuditLogStream>>, TError, TData>>;
|
|
2426
|
+
fetch?: RequestInit;
|
|
2427
|
+
}) => UseQueryOptions<Awaited<ReturnType<typeof getAuditLogStream>>, TError, TData> & {
|
|
2428
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2429
|
+
};
|
|
2430
|
+
type GetAuditLogStreamQueryResult = NonNullable<Awaited<ReturnType<typeof getAuditLogStream>>>;
|
|
2431
|
+
type GetAuditLogStreamQueryError = GetAuditLogStream403;
|
|
2432
|
+
declare function useGetAuditLogStream<TData = Awaited<ReturnType<typeof getAuditLogStream>>, TError = GetAuditLogStream403>(options: {
|
|
2433
|
+
query: Partial<UseQueryOptions<Awaited<ReturnType<typeof getAuditLogStream>>, TError, TData>> & Pick<DefinedInitialDataOptions<Awaited<ReturnType<typeof getAuditLogStream>>, TError, Awaited<ReturnType<typeof getAuditLogStream>>>, "initialData">;
|
|
2434
|
+
fetch?: RequestInit;
|
|
2435
|
+
}, queryClient?: QueryClient): DefinedUseQueryResult<TData, TError> & {
|
|
2436
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2437
|
+
};
|
|
2438
|
+
declare function useGetAuditLogStream<TData = Awaited<ReturnType<typeof getAuditLogStream>>, TError = GetAuditLogStream403>(options?: {
|
|
2439
|
+
query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof getAuditLogStream>>, TError, TData>> & Pick<UndefinedInitialDataOptions<Awaited<ReturnType<typeof getAuditLogStream>>, TError, Awaited<ReturnType<typeof getAuditLogStream>>>, "initialData">;
|
|
2440
|
+
fetch?: RequestInit;
|
|
2441
|
+
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
2442
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2443
|
+
};
|
|
2444
|
+
declare function useGetAuditLogStream<TData = Awaited<ReturnType<typeof getAuditLogStream>>, TError = GetAuditLogStream403>(options?: {
|
|
2445
|
+
query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof getAuditLogStream>>, TError, TData>>;
|
|
2446
|
+
fetch?: RequestInit;
|
|
2447
|
+
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
2448
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2449
|
+
};
|
|
2491
2450
|
type generateAdminPortalLinkResponse201 = {
|
|
2492
2451
|
data: GenerateAdminPortalLink201;
|
|
2493
2452
|
status: 201;
|
|
@@ -2742,6 +2701,57 @@ declare function useListDirectories<TData = Awaited<ReturnType<typeof listDirect
|
|
|
2742
2701
|
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
2743
2702
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2744
2703
|
};
|
|
2704
|
+
type getDirectoryResponse200 = {
|
|
2705
|
+
data: Directory;
|
|
2706
|
+
status: 200;
|
|
2707
|
+
};
|
|
2708
|
+
type getDirectoryResponse403 = {
|
|
2709
|
+
data: GetDirectory403;
|
|
2710
|
+
status: 403;
|
|
2711
|
+
};
|
|
2712
|
+
type getDirectoryResponse404 = {
|
|
2713
|
+
data: GetDirectory404;
|
|
2714
|
+
status: 404;
|
|
2715
|
+
};
|
|
2716
|
+
type getDirectoryResponseSuccess = getDirectoryResponse200 & {
|
|
2717
|
+
headers: Headers;
|
|
2718
|
+
};
|
|
2719
|
+
type getDirectoryResponseError = (getDirectoryResponse403 | getDirectoryResponse404) & {
|
|
2720
|
+
headers: Headers;
|
|
2721
|
+
};
|
|
2722
|
+
type getDirectoryResponse = getDirectoryResponseSuccess | getDirectoryResponseError;
|
|
2723
|
+
declare const getGetDirectoryUrl: (directoryId: string) => string;
|
|
2724
|
+
declare const getDirectory: (directoryId: string, options?: RequestInit) => Promise<getDirectoryResponse>;
|
|
2725
|
+
declare const getGetDirectoryQueryKey: (directoryId: string) => readonly [`https://api.workos.com/_widgets/directory-sync/directories/${string}`];
|
|
2726
|
+
declare const getGetDirectoryQueryOptions: <TData = Awaited<ReturnType<typeof getDirectory>>, TError = GetDirectory403 | GetDirectory404>(directoryId: string, options?: {
|
|
2727
|
+
query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof getDirectory>>, TError, TData>>;
|
|
2728
|
+
fetch?: RequestInit;
|
|
2729
|
+
}) => UseQueryOptions<Awaited<ReturnType<typeof getDirectory>>, TError, TData> & {
|
|
2730
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2731
|
+
};
|
|
2732
|
+
type GetDirectoryQueryResult = NonNullable<Awaited<ReturnType<typeof getDirectory>>>;
|
|
2733
|
+
type GetDirectoryQueryError = GetDirectory403 | GetDirectory404;
|
|
2734
|
+
declare function useGetDirectory<TData = Awaited<ReturnType<typeof getDirectory>>, TError = GetDirectory403 | GetDirectory404>(directoryId: string, options: {
|
|
2735
|
+
query: Partial<UseQueryOptions<Awaited<ReturnType<typeof getDirectory>>, TError, TData>> & Pick<DefinedInitialDataOptions<Awaited<ReturnType<typeof getDirectory>>, TError, Awaited<ReturnType<typeof getDirectory>>>, "initialData">;
|
|
2736
|
+
fetch?: RequestInit;
|
|
2737
|
+
}, queryClient?: QueryClient): DefinedUseQueryResult<TData, TError> & {
|
|
2738
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2739
|
+
};
|
|
2740
|
+
declare function useGetDirectory<TData = Awaited<ReturnType<typeof getDirectory>>, TError = GetDirectory403 | GetDirectory404>(directoryId: string, options?: {
|
|
2741
|
+
query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof getDirectory>>, TError, TData>> & Pick<UndefinedInitialDataOptions<Awaited<ReturnType<typeof getDirectory>>, TError, Awaited<ReturnType<typeof getDirectory>>>, "initialData">;
|
|
2742
|
+
fetch?: RequestInit;
|
|
2743
|
+
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
2744
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2745
|
+
};
|
|
2746
|
+
declare function useGetDirectory<TData = Awaited<ReturnType<typeof getDirectory>>, TError = GetDirectory403 | GetDirectory404>(directoryId: string, options?: {
|
|
2747
|
+
query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof getDirectory>>, TError, TData>>;
|
|
2748
|
+
fetch?: RequestInit;
|
|
2749
|
+
}, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
|
|
2750
|
+
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2751
|
+
};
|
|
2752
|
+
/**
|
|
2753
|
+
* Returns the widget settings for the current environment, including enabled authentication methods and branding configuration.
|
|
2754
|
+
*/
|
|
2745
2755
|
type settingsResponse200 = {
|
|
2746
2756
|
data: SettingsResponse;
|
|
2747
2757
|
status: 200;
|
|
@@ -2787,4 +2797,4 @@ declare function useSettings<TData = Awaited<ReturnType<typeof settings>>, TErro
|
|
|
2787
2797
|
queryKey: DataTag<QueryKey, TData, TError>;
|
|
2788
2798
|
};
|
|
2789
2799
|
|
|
2790
|
-
export { type ActiveSession, type ActiveSessionCurrentLocation, type ActiveSessionCurrentLocationOneOf, type ActiveSessionImpersonationReason, type ActiveSessionImpersonatorEmail, type ActiveSessionImpersonatorUserId, type ActiveSessionIpAddress, type ActiveSessionLastActivityAt, type ActiveSessionOrganizationId, type ActiveSessionState, type ActiveSessionStateExpiresAt, type ActiveSessionUserAgent, type ActiveSessionsResponse, type AuthenticationInformation403, type AuthenticationInformationQueryError, type AuthenticationInformationQueryResult, type AuthenticationInformationResponse, type AuthenticationInformationResponseData, type AuthenticationInformationResponseDataPasswordSettings, type AuthenticationInformationResponseDataVerificationMethods, type AuthenticationInformationResponseDataVerificationMethodsMfa, type AuthenticationInformationResponseDataVerificationMethodsMfaOneOf, type AuthenticationInformationResponseDataVerificationMethodsMfaOneOfLastUsed, AuthenticationInformationResponseDataVerificationMethodsMfaOneOfProvider, type AuthenticationInformationResponseDataVerificationMethodsPasskey, type AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOf, type AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfLastUsed, type AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfPassKeysItem, AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfProvider, type AuthenticationInformationResponseDataVerificationMethodsPassword, type AuthenticationInformationResponseDataVerificationMethodsPasswordOneOf, type AuthenticationInformationResponseDataVerificationMethodsPasswordOneOfLastUsed, AuthenticationInformationResponseDataVerificationMethodsPasswordOneOfProvider, type CreateOrganizationApiKey400, 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 CreateTotpFactorResponseAuthenticationChallengeAllOf, type CreateTotpFactorResponseAuthenticationChallengeAllOfCode, type CreateTotpFactorResponseAuthenticationChallengeAllOfExpiresAt, type CreateTotpFactorResponseAuthenticationChallengeAllOfFive, CreateTotpFactorResponseAuthenticationChallengeAllOfObject, type CreateTotpFactorResponseAuthenticationFactor, type CreateTotpFactorResponseAuthenticationFactorAllOf, CreateTotpFactorResponseAuthenticationFactorAllOfObject, type CreateTotpFactorResponseAuthenticationFactorAllOfOnezero, type CreateTotpFactorResponseAuthenticationFactorAllOfSms, type CreateTotpFactorResponseAuthenticationFactorAllOfSmsOneOf, type CreateTotpFactorResponseAuthenticationFactorAllOfTotp, type CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOf, type CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOfTwo, CreateTotpFactorResponseAuthenticationFactorAllOfType, type CreateTotpFactorResponseAuthenticationFactorAllOfUserId, type DataInstallation, type DataInstallationAllOf, DataInstallationAllOfObject, type DataInstallationAllOfOrganizationId, type DataInstallationAllOfSix, type DataInstallationAllOfSixOrganizationId, type DataInstallationAllOfSixUserlandUserId, DataInstallationAllOfState, type DataInstallationAllOfUserId, type DataIntegration, DataIntegrationCredentialsType, type DataIntegrationDescription, type DataIntegrationInstallation, DataIntegrationIntegrationType, DataIntegrationObject, DataIntegrationOwnership, type DataIntegrationScopes, 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 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 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 GetDataIntegrationAuthorizeUrlResponseAllOf, type GetDataIntegrationAuthorizeUrlResponseAllOfTwo, type InviteMember201, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type InviteMemberBodyFirstName, type InviteMemberBodyLastName, type InviteMemberMutationBody, type InviteMemberMutationError, type InviteMemberMutationResult, type ListDirectories403, type ListDirectories404, type ListDirectoriesQueryError, type ListDirectoriesQueryResult, type ListMetadata, type ListMetadataAfter, type ListMetadataBefore, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissionDescription, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsQueryError, type ListOrganizationApiKeyPermissionsQueryResult, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, type ListOrganizationApiKeys403, type ListOrganizationApiKeysParams, type ListOrganizationApiKeysQueryError, type ListOrganizationApiKeysQueryResult, type ListOrganizationApiKeysResponse, type ListOrganizationApiKeysResponseData, type ListOrganizationApiKeysResponseDataLastUsedAt, type ListOrganizationApiKeysResponseListMetadata, type ListOrganizationDomains200, type ListOrganizationDomains403, type ListOrganizationDomains404, type ListOrganizationDomainsQueryError, type ListOrganizationDomainsQueryResult, type ListSsoConnectionsQueryError, type ListSsoConnectionsQueryResult, type Me, type Me403, type MeFirstName, type MeLastName, type MeLocale, type MeOauthProfiles, type MeOauthProfilesOneOf, type MeProfilePictureUrl, type MeQueryError, type MeQueryResult, type Member, type MemberActions, MemberActionsItem, type MemberFirstName, type MemberIsLoggedInUser, type MemberLastActivityAt, type MemberLastName, type MemberProfilePictureUrl, type MemberRole, type MemberRoleDescription, type MemberRoles, type MemberRolesOneOfItem, type MemberRolesOneOfItemDescription, MemberStatus, type Members200, type Members403, type Members404, type MembersParams, type MembersQueryError, type MembersQueryResult, type MyDataIntegrations403, type MyDataIntegrationsQueryError, type MyDataIntegrationsQueryResult, type OAuthProfile, type OAuthProfileEmail, type OAuthProfileFirstName, type OAuthProfileLastLoginAt, type OAuthProfileLastName, type OAuthProfileProfilePictureUrl, OidcSessionState, type OrganizationDomain, OrganizationDomainState, type OrganizationDomainSubdomain, type OrganizationDomainVerificationPrefix, type OrganizationDomainVerificationToken, type OrganizationInfo, type OrganizationInfoFavicon, type Organizations403, type Organizations404, type OrganizationsQueryError, type OrganizationsQueryResult, type OrganizationsResponse, type RegisterPasskey400, type RegisterPasskey403, type RegisterPasskeyMutationError, type RegisterPasskeyMutationResult, type RegisterPasskeyResponse, type RegisterPasskeyResponseOptions, type RemoveMember200, type RemoveMember400, type RemoveMember403, type RemoveMember404, type RemoveMemberMutationError, type RemoveMemberMutationResult, type ResendInvite201, type ResendInvite201Id, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ResendInviteMutationError, type ResendInviteMutationResult, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type ReverifyOrganizationDomainMutationError, type ReverifyOrganizationDomainMutationResult, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsMutationBody, type RevokeAllSessionsMutationError, type RevokeAllSessionsMutationResult, type RevokeAllSessionsRequest, type RevokeInvite200, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeInviteMutationError, type RevokeInviteMutationResult, 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 SendVerification400, type SendVerification403, type SendVerificationMutationError, type SendVerificationMutationResult, type SendVerificationResponse, SendVerificationResponseType, type Sessions403, type SessionsQueryError, type SessionsQueryResult, type Settings403, type SettingsQueryError, type SettingsQueryResult, type SettingsResponse, type SettingsResponseLogoDarkIconPath, type SettingsResponseLogoDarkPath, type SettingsResponseLogoLightIconPath, type SettingsResponseLogoLightPath, SettingsResponseObject, type SsoConnection, type SsoConnectionAnyOf, type SsoConnectionAnyOfEight, type SsoConnectionAnyOfEightAllOf, type SsoConnectionAnyOfEightAllOfLastSession, SsoConnectionAnyOfEightAllOfProviderTag, type SsoConnectionAnyOfEightAllOfSix, SsoConnectionAnyOfEightAllOfState, SsoConnectionAnyOfEightAllOfType, type SsoConnectionAnyOfLastSession, type SsoConnectionAnyOfLatestExpiredCertificate, type SsoConnectionAnyOfLatestExpiringCertificate, SsoConnectionAnyOfProviderTag, SsoConnectionAnyOfState, SsoConnectionAnyOfType, type SsoConnectionSessionJSON, SsoConnectionSessionJSONState, type UpdateMe400, type UpdateMe403, type UpdateMeBody, type UpdateMeMutationBody, type UpdateMeMutationError, type UpdateMeMutationResult, type UpdateMember200, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdateMemberMutationBody, type UpdateMemberMutationError, type UpdateMemberMutationResult, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordMutationBody, type UpdatePasswordMutationError, type UpdatePasswordMutationResult, type UpdatePasswordRequest, type Verify400, type Verify403, 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, type X509CertificateJSONLastExpiryEventSentAt, type X509CertificateJSONNotAfter, type X509CertificateJSONNotBefore, 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, getAuthenticationInformationQueryKey, getAuthenticationInformationQueryOptions, getAuthenticationInformationUrl, getCreateOrganizationApiKeyMutationOptions, getCreateOrganizationApiKeyUrl, getCreatePasswordMutationOptions, getCreatePasswordUrl, getCreateTotpFactorMutationOptions, 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, getDeleteDataInstallationMutationOptions, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyMutationOptions, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainMutationOptions, getDeleteOrganizationDomainUrl, getDeletePasskeyMutationOptions, getDeletePasskeyUrl, getDeleteTotpFactorsMutationOptions, getDeleteTotpFactorsUrl, getGenerateAdminPortalLinkMutationOptions, getGenerateAdminPortalLinkUrl, getGetDataInstallationAuthorizationStatusQueryKey, getGetDataInstallationAuthorizationStatusQueryOptions, getGetDataInstallationAuthorizationStatusUrl, getGetDataIntegrationAuthorizeUrlQueryKey, getGetDataIntegrationAuthorizeUrlQueryOptions, getGetDataIntegrationAuthorizeUrlUrl, getInviteMemberMutationOptions, getInviteMemberUrl, getListDirectoriesQueryKey, getListDirectoriesQueryOptions, getListDirectoriesUrl, getListOrganizationApiKeyPermissionsQueryKey, getListOrganizationApiKeyPermissionsQueryOptions, getListOrganizationApiKeyPermissionsUrl, getListOrganizationApiKeysQueryKey, getListOrganizationApiKeysQueryOptions, getListOrganizationApiKeysUrl, getListOrganizationDomainsQueryKey, getListOrganizationDomainsQueryOptions, getListOrganizationDomainsUrl, getListSsoConnectionsQueryKey, getListSsoConnectionsQueryOptions, getListSsoConnectionsUrl, 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, getSendVerificationMutationOptions, getSendVerificationUrl, getSessionsQueryKey, getSessionsQueryOptions, getSessionsUrl, getSettingsQueryKey, getSettingsQueryOptions, getSettingsUrl, getUpdateMeMutationOptions, getUpdateMeUrl, getUpdateMemberMutationOptions, getUpdateMemberUrl, getUpdatePasswordMutationOptions, getUpdatePasswordUrl, 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, 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, useAuthenticationInformation, useCreateOrganizationApiKey, useCreatePassword, useCreateTotpFactor, useDeleteDataInstallation, useDeleteOrganizationApiKey, useDeleteOrganizationDomain, useDeletePasskey, useDeleteTotpFactors, useGenerateAdminPortalLink, useGetDataInstallationAuthorizationStatus, useGetDataIntegrationAuthorizeUrl, useInviteMember, useListDirectories, useListOrganizationApiKeyPermissions, useListOrganizationApiKeys, useListOrganizationDomains, useListSsoConnections, useMe, useMembers, useMyDataIntegrations, useOrganizations, useRegisterPasskey, useRemoveMember, useResendInvite, useReverifyOrganizationDomain, useRevokeAllSessions, useRevokeInvite, useRevokeSession, useRoles, useRolesAndConfig, useSendVerification, useSessions, useSettings, useUpdateMe, useUpdateMember, useUpdatePassword, useVerify, useVerifyPasskey, useVerifyTotpFactor, 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 };
|
|
2800
|
+
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 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 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 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 InviteMember201, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type InviteMemberMutationBody, type InviteMemberMutationError, type InviteMemberMutationResult, type ListDirectories403, type ListDirectories404, type ListDirectoriesQueryError, type ListDirectoriesQueryResult, type ListMetadata, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsQueryError, type ListOrganizationApiKeyPermissionsQueryResult, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, 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 Me, type Me403, type MeOauthProfiles, type MeQueryError, type MeQueryResult, type Member, type MemberActions, MemberActionsItem, type MemberRole, type MemberRoles, MemberStatus, type Members200, type Members403, type Members404, type MembersParams, type MembersQueryError, type MembersQueryResult, 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 RemoveMember200, type RemoveMember400, type RemoveMember403, type RemoveMember404, type RemoveMemberMutationError, type RemoveMemberMutationResult, type ResendInvite201, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ResendInviteMutationError, type ResendInviteMutationResult, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type ReverifyOrganizationDomainMutationError, type ReverifyOrganizationDomainMutationResult, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsMutationBody, type RevokeAllSessionsMutationError, type RevokeAllSessionsMutationResult, type RevokeAllSessionsRequest, type RevokeInvite200, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeInviteMutationError, type RevokeInviteMutationResult, 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 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 UpdateMember200, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdateMemberMutationBody, type UpdateMemberMutationError, type UpdateMemberMutationResult, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordMutationBody, type UpdatePasswordMutationError, type UpdatePasswordMutationResult, type UpdatePasswordRequest, type Verify400, type Verify403, 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, 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, getAuthenticationInformationQueryKey, getAuthenticationInformationQueryOptions, getAuthenticationInformationUrl, getCreateOrganizationApiKeyMutationOptions, getCreateOrganizationApiKeyUrl, getCreatePasswordMutationOptions, getCreatePasswordUrl, getCreateTotpFactorMutationOptions, 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, getDeleteDataInstallationMutationOptions, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyMutationOptions, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainMutationOptions, getDeleteOrganizationDomainUrl, getDeletePasskeyMutationOptions, getDeletePasskeyUrl, getDeleteTotpFactorsMutationOptions, getDeleteTotpFactorsUrl, 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, 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, getSendVerificationMutationOptions, getSendVerificationUrl, getSessionsQueryKey, getSessionsQueryOptions, getSessionsUrl, getSettingsQueryKey, getSettingsQueryOptions, getSettingsUrl, getUpdateMeMutationOptions, getUpdateMeUrl, getUpdateMemberMutationOptions, getUpdateMemberUrl, getUpdatePasswordMutationOptions, getUpdatePasswordUrl, 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, 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, useAuthenticationInformation, useCreateOrganizationApiKey, useCreatePassword, useCreateTotpFactor, useDeleteDataInstallation, useDeleteOrganizationApiKey, useDeleteOrganizationDomain, useDeletePasskey, useDeleteTotpFactors, useGenerateAdminPortalLink, useGetAuditLogStream, useGetDataInstallationAuthorizationStatus, useGetDataIntegrationAuthorizeUrl, useGetDirectory, useInviteMember, useListDirectories, useListOrganizationApiKeyPermissions, useListOrganizationApiKeys, useListOrganizationDomains, useListSsoConnections, useMe, useMembers, useMyDataIntegrations, useOrganizations, useRegisterPasskey, useRemoveMember, useResendInvite, useReverifyOrganizationDomain, useRevokeAllSessions, useRevokeInvite, useRevokeSession, useRoles, useRolesAndConfig, useSendVerification, useSessions, useSettings, useUpdateMe, useUpdateMember, useUpdatePassword, useVerify, useVerifyPasskey, useVerifyTotpFactor, 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 };
|