@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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by orval
|
|
2
|
+
* Generated by orval v8.5.0 🍺
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
* WorkOS Widgets
|
|
5
5
|
* WorkOS Widgets API
|
|
@@ -21,160 +21,131 @@ declare const MemberActionsItem: {
|
|
|
21
21
|
readonly "revoke-membership": "revoke-membership";
|
|
22
22
|
};
|
|
23
23
|
type MemberActions = MemberActionsItem[];
|
|
24
|
-
type
|
|
25
|
-
type MemberFirstName = string | null;
|
|
26
|
-
type MemberLastName = string | null;
|
|
27
|
-
type MemberLastActivityAt = string | null;
|
|
28
|
-
type MemberIsLoggedInUser = true | null;
|
|
29
|
-
type MemberRolesOneOfItemDescription = string | null;
|
|
30
|
-
type MemberRolesOneOfItem = {
|
|
24
|
+
type MemberRoles = {
|
|
31
25
|
name: string;
|
|
32
26
|
slug: string;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
27
|
+
/** @nullable */
|
|
28
|
+
description?: string | null;
|
|
29
|
+
}[] | null;
|
|
36
30
|
interface Member {
|
|
37
31
|
id: string;
|
|
38
32
|
email: string;
|
|
39
33
|
emailVerified: boolean;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
34
|
+
/** @nullable */
|
|
35
|
+
profilePictureUrl?: string | null;
|
|
36
|
+
/** @nullable */
|
|
37
|
+
firstName?: string | null;
|
|
38
|
+
/** @nullable */
|
|
39
|
+
lastName?: string | null;
|
|
43
40
|
/** An ISO 8601 timestamp. */
|
|
44
41
|
createdAt: string;
|
|
45
|
-
|
|
42
|
+
/** @nullable */
|
|
43
|
+
lastActivityAt?: string | null;
|
|
46
44
|
status: MemberStatus;
|
|
47
45
|
actions: MemberActions;
|
|
48
|
-
isLoggedInUser?:
|
|
46
|
+
isLoggedInUser?: true | null;
|
|
49
47
|
roles?: MemberRoles;
|
|
50
48
|
}
|
|
51
|
-
/**
|
|
52
|
-
* An object ID that defines your place in the list. When the ID is not present, you are at the start of the list.
|
|
53
|
-
*/
|
|
54
|
-
type ListMetadataBefore = string | null;
|
|
55
|
-
/**
|
|
56
|
-
* An object ID that defines your place in the list. When the ID is not present, you are at the end of the list.
|
|
57
|
-
*/
|
|
58
|
-
type ListMetadataAfter = string | null;
|
|
59
49
|
interface ListMetadata {
|
|
60
|
-
/**
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
50
|
+
/**
|
|
51
|
+
* An object ID that defines your place in the list. When the ID is not present, you are at the start of the list.
|
|
52
|
+
* @nullable
|
|
53
|
+
*/
|
|
54
|
+
before: string | null;
|
|
55
|
+
/**
|
|
56
|
+
* An object ID that defines your place in the list. When the ID is not present, you are at the end of the list.
|
|
57
|
+
* @nullable
|
|
58
|
+
*/
|
|
59
|
+
after: string | null;
|
|
64
60
|
}
|
|
65
|
-
type MemberRoleDescription = string | null;
|
|
66
61
|
interface MemberRole {
|
|
67
62
|
name: string;
|
|
68
63
|
slug: string;
|
|
69
64
|
default: boolean;
|
|
70
|
-
|
|
65
|
+
/** @nullable */
|
|
66
|
+
description?: string | null;
|
|
71
67
|
}
|
|
72
68
|
interface RolesAndConfigResponse {
|
|
73
69
|
roles: MemberRole[];
|
|
74
70
|
multipleRolesEnabled: boolean;
|
|
75
71
|
}
|
|
76
|
-
type OrganizationInfoFavicon = string | null;
|
|
77
72
|
interface OrganizationInfo {
|
|
78
73
|
id: string;
|
|
79
74
|
name: string;
|
|
80
75
|
current: boolean;
|
|
81
|
-
|
|
76
|
+
/** @nullable */
|
|
77
|
+
favicon?: string | null;
|
|
82
78
|
}
|
|
83
79
|
interface OrganizationsResponse {
|
|
84
80
|
data: OrganizationInfo[];
|
|
85
81
|
}
|
|
86
|
-
type OAuthProfileEmail = string | null;
|
|
87
|
-
type OAuthProfileFirstName = string | null;
|
|
88
|
-
type OAuthProfileLastName = string | null;
|
|
89
|
-
type OAuthProfileProfilePictureUrl = string | null;
|
|
90
|
-
type OAuthProfileLastLoginAt = string | null;
|
|
91
82
|
interface OAuthProfile {
|
|
92
83
|
id: string;
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
84
|
+
/** @nullable */
|
|
85
|
+
email?: string | null;
|
|
86
|
+
/** @nullable */
|
|
87
|
+
firstName?: string | null;
|
|
88
|
+
/** @nullable */
|
|
89
|
+
lastName?: string | null;
|
|
90
|
+
/** @nullable */
|
|
91
|
+
profilePictureUrl?: string | null;
|
|
92
|
+
/** @nullable */
|
|
93
|
+
lastLoginAt?: string | null;
|
|
98
94
|
}
|
|
99
|
-
type
|
|
100
|
-
type MeLastName = string | null;
|
|
101
|
-
type MeLocale = string | null;
|
|
102
|
-
type MeProfilePictureUrl = string | null;
|
|
103
|
-
type MeOauthProfilesOneOf = {
|
|
95
|
+
type MeOauthProfiles = {
|
|
104
96
|
AppleOAuth?: OAuthProfile;
|
|
105
97
|
GithubOAuth?: OAuthProfile;
|
|
106
98
|
GoogleOAuth?: OAuthProfile;
|
|
107
99
|
MicrosoftOAuth?: OAuthProfile;
|
|
108
|
-
};
|
|
109
|
-
type MeOauthProfiles = MeOauthProfilesOneOf | null;
|
|
100
|
+
} | null;
|
|
110
101
|
interface Me {
|
|
111
102
|
id: string;
|
|
112
103
|
email: string;
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
104
|
+
/** @nullable */
|
|
105
|
+
firstName?: string | null;
|
|
106
|
+
/** @nullable */
|
|
107
|
+
lastName?: string | null;
|
|
108
|
+
/** @nullable */
|
|
109
|
+
locale?: string | null;
|
|
110
|
+
/** @nullable */
|
|
111
|
+
profilePictureUrl?: string | null;
|
|
117
112
|
oauthProfiles?: MeOauthProfiles;
|
|
118
113
|
}
|
|
119
|
-
type
|
|
120
|
-
|
|
121
|
-
readonly authentication_factor: "authentication_factor";
|
|
122
|
-
};
|
|
123
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfType = (typeof CreateTotpFactorResponseAuthenticationFactorAllOfType)[keyof typeof CreateTotpFactorResponseAuthenticationFactorAllOfType];
|
|
124
|
-
declare const CreateTotpFactorResponseAuthenticationFactorAllOfType: {
|
|
125
|
-
readonly generic_otp: "generic_otp";
|
|
126
|
-
readonly sms: "sms";
|
|
127
|
-
readonly totp: "totp";
|
|
128
|
-
readonly webauthn: "webauthn";
|
|
129
|
-
};
|
|
130
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfUserId = string | null;
|
|
131
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfSmsOneOf = {
|
|
132
|
-
phone_number: string;
|
|
133
|
-
};
|
|
134
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfSms = CreateTotpFactorResponseAuthenticationFactorAllOfSmsOneOf | null;
|
|
135
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOf = {
|
|
136
|
-
issuer: string;
|
|
137
|
-
user: string;
|
|
138
|
-
secret: string;
|
|
139
|
-
qr_code: string;
|
|
140
|
-
uri: string;
|
|
141
|
-
};
|
|
142
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOfTwo = {
|
|
143
|
-
issuer: string;
|
|
144
|
-
user: string;
|
|
145
|
-
};
|
|
146
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOfTotp = CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOf | CreateTotpFactorResponseAuthenticationFactorAllOfTotpAnyOfTwo | null;
|
|
147
|
-
type CreateTotpFactorResponseAuthenticationFactorAllOf = {
|
|
148
|
-
object: CreateTotpFactorResponseAuthenticationFactorAllOfObject;
|
|
114
|
+
type CreateTotpFactorResponseAuthenticationFactor = {
|
|
115
|
+
object: "authentication_factor";
|
|
149
116
|
id: string;
|
|
150
|
-
type:
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
117
|
+
type: "generic_otp" | "sms" | "totp" | "webauthn";
|
|
118
|
+
/** @nullable */
|
|
119
|
+
user_id?: string | null;
|
|
120
|
+
sms?: {
|
|
121
|
+
phone_number: string;
|
|
122
|
+
} | null;
|
|
123
|
+
totp?: {
|
|
124
|
+
issuer: string;
|
|
125
|
+
user: string;
|
|
126
|
+
secret: string;
|
|
127
|
+
qr_code: string;
|
|
128
|
+
uri: string;
|
|
129
|
+
} | {
|
|
130
|
+
issuer: string;
|
|
131
|
+
user: string;
|
|
132
|
+
} | null;
|
|
133
|
+
} & {
|
|
156
134
|
created_at: string;
|
|
157
135
|
updated_at: string;
|
|
158
136
|
};
|
|
159
|
-
type
|
|
160
|
-
|
|
161
|
-
declare const CreateTotpFactorResponseAuthenticationChallengeAllOfObject: {
|
|
162
|
-
readonly authentication_challenge: "authentication_challenge";
|
|
163
|
-
};
|
|
164
|
-
type CreateTotpFactorResponseAuthenticationChallengeAllOfExpiresAt = string | null;
|
|
165
|
-
type CreateTotpFactorResponseAuthenticationChallengeAllOfCode = string | null;
|
|
166
|
-
type CreateTotpFactorResponseAuthenticationChallengeAllOf = {
|
|
167
|
-
object: CreateTotpFactorResponseAuthenticationChallengeAllOfObject;
|
|
137
|
+
type CreateTotpFactorResponseAuthenticationChallenge = {
|
|
138
|
+
object: "authentication_challenge";
|
|
168
139
|
id: string;
|
|
169
|
-
|
|
170
|
-
|
|
140
|
+
/** @nullable */
|
|
141
|
+
expires_at?: string | null;
|
|
142
|
+
/** @nullable */
|
|
143
|
+
code?: string | null;
|
|
171
144
|
authentication_factor_id: string;
|
|
172
|
-
}
|
|
173
|
-
type CreateTotpFactorResponseAuthenticationChallengeAllOfFive = {
|
|
145
|
+
} & {
|
|
174
146
|
created_at: string;
|
|
175
147
|
updated_at: string;
|
|
176
148
|
};
|
|
177
|
-
type CreateTotpFactorResponseAuthenticationChallenge = CreateTotpFactorResponseAuthenticationChallengeAllOf & CreateTotpFactorResponseAuthenticationChallengeAllOfFive;
|
|
178
149
|
interface CreateTotpFactorResponse {
|
|
179
150
|
authenticationFactor: CreateTotpFactorResponseAuthenticationFactor;
|
|
180
151
|
authenticationChallenge: CreateTotpFactorResponseAuthenticationChallenge;
|
|
@@ -183,45 +154,29 @@ interface VerifyTotpFactorRequest {
|
|
|
183
154
|
code: string;
|
|
184
155
|
authenticationChallengeId: string;
|
|
185
156
|
}
|
|
186
|
-
type
|
|
187
|
-
|
|
188
|
-
readonly MFA: "MFA";
|
|
189
|
-
};
|
|
190
|
-
type AuthenticationInformationResponseDataVerificationMethodsMfaOneOfLastUsed = string | null;
|
|
191
|
-
type AuthenticationInformationResponseDataVerificationMethodsMfaOneOf = {
|
|
192
|
-
provider: AuthenticationInformationResponseDataVerificationMethodsMfaOneOfProvider;
|
|
157
|
+
type AuthenticationInformationResponseDataVerificationMethodsMfa = {
|
|
158
|
+
provider: "MFA";
|
|
193
159
|
isSetUp: boolean;
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
type
|
|
198
|
-
|
|
199
|
-
readonly Password: "Password";
|
|
200
|
-
};
|
|
201
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasswordOneOfLastUsed = string | null;
|
|
202
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasswordOneOf = {
|
|
203
|
-
provider: AuthenticationInformationResponseDataVerificationMethodsPasswordOneOfProvider;
|
|
160
|
+
/** @nullable */
|
|
161
|
+
lastUsed?: string | null;
|
|
162
|
+
} | null;
|
|
163
|
+
type AuthenticationInformationResponseDataVerificationMethodsPassword = {
|
|
164
|
+
provider: "Password";
|
|
204
165
|
isSetUp: boolean;
|
|
205
|
-
|
|
166
|
+
/** @nullable */
|
|
167
|
+
lastUsed?: string | null;
|
|
206
168
|
isCurrentSession: boolean;
|
|
207
|
-
};
|
|
208
|
-
type
|
|
209
|
-
|
|
210
|
-
declare const AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfProvider: {
|
|
211
|
-
readonly Passkey: "Passkey";
|
|
212
|
-
};
|
|
213
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfLastUsed = string | null;
|
|
214
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfPassKeysItem = {
|
|
215
|
-
id: string;
|
|
216
|
-
};
|
|
217
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOf = {
|
|
218
|
-
provider: AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOfProvider;
|
|
169
|
+
} | null;
|
|
170
|
+
type AuthenticationInformationResponseDataVerificationMethodsPasskey = {
|
|
171
|
+
provider: "Passkey";
|
|
219
172
|
isSetUp: boolean;
|
|
220
|
-
|
|
221
|
-
|
|
173
|
+
/** @nullable */
|
|
174
|
+
lastUsed?: string | null;
|
|
175
|
+
passKeys: {
|
|
176
|
+
id: string;
|
|
177
|
+
}[];
|
|
222
178
|
isCurrentSession: boolean;
|
|
223
|
-
};
|
|
224
|
-
type AuthenticationInformationResponseDataVerificationMethodsPasskey = AuthenticationInformationResponseDataVerificationMethodsPasskeyOneOf | null;
|
|
179
|
+
} | null;
|
|
225
180
|
type AuthenticationInformationResponseDataVerificationMethods = {
|
|
226
181
|
Mfa?: AuthenticationInformationResponseDataVerificationMethodsMfa;
|
|
227
182
|
Password?: AuthenticationInformationResponseDataVerificationMethodsPassword;
|
|
@@ -252,29 +207,24 @@ interface UpdatePasswordRequest {
|
|
|
252
207
|
interface RevokeAllSessionsRequest {
|
|
253
208
|
currentSessionId: string;
|
|
254
209
|
}
|
|
255
|
-
type ActiveSessionIpAddress = string | null;
|
|
256
|
-
type ActiveSessionUserAgent = string | null;
|
|
257
|
-
type ActiveSessionOrganizationId = string | null;
|
|
258
|
-
type ActiveSessionStateExpiresAt = string | null;
|
|
259
210
|
type ActiveSessionState = {
|
|
260
211
|
tag: string;
|
|
261
|
-
|
|
212
|
+
/** @nullable */
|
|
213
|
+
expiresAt?: string | null;
|
|
262
214
|
};
|
|
263
|
-
type
|
|
215
|
+
type ActiveSessionCurrentLocation = {
|
|
264
216
|
cityName: string;
|
|
265
217
|
countryISOCode: string;
|
|
266
|
-
};
|
|
267
|
-
type ActiveSessionCurrentLocation = ActiveSessionCurrentLocationOneOf | null;
|
|
268
|
-
type ActiveSessionImpersonatorUserId = string | null;
|
|
269
|
-
type ActiveSessionImpersonatorEmail = string | null;
|
|
270
|
-
type ActiveSessionImpersonationReason = string | null;
|
|
271
|
-
type ActiveSessionLastActivityAt = string | null;
|
|
218
|
+
} | null;
|
|
272
219
|
interface ActiveSession {
|
|
273
220
|
id: string;
|
|
274
221
|
userlandUserId: string;
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
222
|
+
/** @nullable */
|
|
223
|
+
ipAddress?: string | null;
|
|
224
|
+
/** @nullable */
|
|
225
|
+
userAgent?: string | null;
|
|
226
|
+
/** @nullable */
|
|
227
|
+
organizationId?: string | null;
|
|
278
228
|
state: ActiveSessionState;
|
|
279
229
|
currentLocation?: ActiveSessionCurrentLocation;
|
|
280
230
|
usedSsoAuth: boolean;
|
|
@@ -291,23 +241,23 @@ interface ActiveSession {
|
|
|
291
241
|
usedSlackOauth: boolean;
|
|
292
242
|
usedXeroOauth: boolean;
|
|
293
243
|
usedMagicAuth: boolean;
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
244
|
+
/** @nullable */
|
|
245
|
+
impersonatorUserId?: string | null;
|
|
246
|
+
/** @nullable */
|
|
247
|
+
impersonatorEmail?: string | null;
|
|
248
|
+
/** @nullable */
|
|
249
|
+
impersonationReason?: string | null;
|
|
250
|
+
/** @nullable */
|
|
251
|
+
lastActivityAt?: string | null;
|
|
298
252
|
createdAt: string;
|
|
299
253
|
updatedAt: string;
|
|
300
254
|
}
|
|
301
255
|
interface ActiveSessionsResponse {
|
|
302
256
|
data: ActiveSession[];
|
|
303
257
|
}
|
|
304
|
-
type SendVerificationResponseType = (typeof SendVerificationResponseType)[keyof typeof SendVerificationResponseType];
|
|
305
|
-
declare const SendVerificationResponseType: {
|
|
306
|
-
readonly EmailVerification: "EmailVerification";
|
|
307
|
-
};
|
|
308
258
|
interface SendVerificationResponse {
|
|
309
259
|
authenticationChallenge: string;
|
|
310
|
-
type:
|
|
260
|
+
type: "EmailVerification";
|
|
311
261
|
}
|
|
312
262
|
interface VerifyRequest {
|
|
313
263
|
code: string;
|
|
@@ -331,21 +281,17 @@ interface VerifyPasskeyRequest {
|
|
|
331
281
|
challengeId: string;
|
|
332
282
|
response: VerifyPasskeyRequestResponse;
|
|
333
283
|
}
|
|
334
|
-
type SettingsResponseObject = (typeof SettingsResponseObject)[keyof typeof SettingsResponseObject];
|
|
335
|
-
declare const SettingsResponseObject: {
|
|
336
|
-
readonly settings: "settings";
|
|
337
|
-
};
|
|
338
|
-
type SettingsResponseLogoDarkIconPath = string | null;
|
|
339
|
-
type SettingsResponseLogoDarkPath = string | null;
|
|
340
|
-
type SettingsResponseLogoLightIconPath = string | null;
|
|
341
|
-
type SettingsResponseLogoLightPath = string | null;
|
|
342
284
|
interface SettingsResponse {
|
|
343
|
-
object:
|
|
285
|
+
object: "settings";
|
|
344
286
|
authkitOrigin: string;
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
287
|
+
/** @nullable */
|
|
288
|
+
logoDarkIconPath?: string | null;
|
|
289
|
+
/** @nullable */
|
|
290
|
+
logoDarkPath?: string | null;
|
|
291
|
+
/** @nullable */
|
|
292
|
+
logoLightIconPath?: string | null;
|
|
293
|
+
/** @nullable */
|
|
294
|
+
logoLightPath?: string | null;
|
|
349
295
|
teamName: string;
|
|
350
296
|
}
|
|
351
297
|
type OrganizationDomainState = (typeof OrganizationDomainState)[keyof typeof OrganizationDomainState];
|
|
@@ -363,28 +309,28 @@ declare const DomainVerificationNameServer: {
|
|
|
363
309
|
readonly GoDaddy: "GoDaddy";
|
|
364
310
|
readonly Other: "Other";
|
|
365
311
|
};
|
|
366
|
-
type OrganizationDomainVerificationPrefix = string | null;
|
|
367
|
-
type OrganizationDomainVerificationToken = string | null;
|
|
368
|
-
type OrganizationDomainSubdomain = string | null;
|
|
369
312
|
interface OrganizationDomain {
|
|
370
313
|
id: string;
|
|
371
314
|
domain: string;
|
|
372
315
|
state: OrganizationDomainState;
|
|
373
316
|
nameServer: DomainVerificationNameServer;
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
317
|
+
/** @nullable */
|
|
318
|
+
verificationPrefix?: string | null;
|
|
319
|
+
/** @nullable */
|
|
320
|
+
verificationToken?: string | null;
|
|
321
|
+
/** @nullable */
|
|
322
|
+
subdomain?: string | null;
|
|
377
323
|
createdAt: string;
|
|
378
324
|
}
|
|
379
|
-
type X509CertificateJSONNotBefore = string | null;
|
|
380
|
-
type X509CertificateJSONNotAfter = string | null;
|
|
381
|
-
type X509CertificateJSONLastExpiryEventSentAt = string | null;
|
|
382
325
|
interface X509CertificateJSON {
|
|
383
326
|
id: string;
|
|
384
327
|
value: string;
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
328
|
+
/** @nullable */
|
|
329
|
+
notBefore?: string | null;
|
|
330
|
+
/** @nullable */
|
|
331
|
+
notAfter?: string | null;
|
|
332
|
+
/** @nullable */
|
|
333
|
+
lastExpiryEventSentAt?: string | null;
|
|
388
334
|
}
|
|
389
335
|
type SamlSessionState = (typeof SamlSessionState)[keyof typeof SamlSessionState];
|
|
390
336
|
declare const SamlSessionState: {
|
|
@@ -416,108 +362,52 @@ interface SsoConnectionSessionJSON {
|
|
|
416
362
|
createdAt: string;
|
|
417
363
|
state: (typeof SsoConnectionSessionJSONState)[keyof typeof SsoConnectionSessionJSONState];
|
|
418
364
|
}
|
|
419
|
-
type
|
|
420
|
-
declare const SsoConnectionAnyOfType: {
|
|
421
|
-
readonly AdfsSaml: "AdfsSaml";
|
|
422
|
-
readonly Auth0Saml: "Auth0Saml";
|
|
423
|
-
readonly AzureSaml: "AzureSaml";
|
|
424
|
-
readonly CasSaml: "CasSaml";
|
|
425
|
-
readonly ClassLinkSaml: "ClassLinkSaml";
|
|
426
|
-
readonly CloudflareSaml: "CloudflareSaml";
|
|
427
|
-
readonly CyberArkSaml: "CyberArkSaml";
|
|
428
|
-
readonly DuoSaml: "DuoSaml";
|
|
429
|
-
readonly GenericSaml: "GenericSaml";
|
|
430
|
-
readonly GoogleSaml: "GoogleSaml";
|
|
431
|
-
readonly JumpCloudSaml: "JumpCloudSaml";
|
|
432
|
-
readonly KeycloakSaml: "KeycloakSaml";
|
|
433
|
-
readonly LastPassSaml: "LastPassSaml";
|
|
434
|
-
readonly MiniOrangeSaml: "MiniOrangeSaml";
|
|
435
|
-
readonly NetIqSaml: "NetIqSaml";
|
|
436
|
-
readonly OktaSaml: "OktaSaml";
|
|
437
|
-
readonly OneLoginSaml: "OneLoginSaml";
|
|
438
|
-
readonly OracleSaml: "OracleSaml";
|
|
439
|
-
readonly PingFederateSaml: "PingFederateSaml";
|
|
440
|
-
readonly PingOneSaml: "PingOneSaml";
|
|
441
|
-
readonly RipplingSaml: "RipplingSaml";
|
|
442
|
-
readonly SalesforceSaml: "SalesforceSaml";
|
|
443
|
-
readonly ShibbolethGenericSaml: "ShibbolethGenericSaml";
|
|
444
|
-
readonly ShibbolethSaml: "ShibbolethSaml";
|
|
445
|
-
readonly SimpleSamlPhpSaml: "SimpleSamlPhpSaml";
|
|
446
|
-
readonly TestIdp: "TestIdp";
|
|
447
|
-
readonly VmWareSaml: "VmWareSaml";
|
|
448
|
-
};
|
|
449
|
-
type SsoConnectionAnyOfState = (typeof SsoConnectionAnyOfState)[keyof typeof SsoConnectionAnyOfState];
|
|
450
|
-
declare const SsoConnectionAnyOfState: {
|
|
451
|
-
readonly Inactive: "Inactive";
|
|
452
|
-
readonly Validating: "Validating";
|
|
453
|
-
readonly Active: "Active";
|
|
454
|
-
readonly Deleting: "Deleting";
|
|
455
|
-
};
|
|
456
|
-
type SsoConnectionAnyOfLatestExpiringCertificate = X509CertificateJSON | null;
|
|
457
|
-
type SsoConnectionAnyOfLatestExpiredCertificate = X509CertificateJSON | null;
|
|
458
|
-
type SsoConnectionAnyOfProviderTag = (typeof SsoConnectionAnyOfProviderTag)[keyof typeof SsoConnectionAnyOfProviderTag];
|
|
459
|
-
declare const SsoConnectionAnyOfProviderTag: {
|
|
460
|
-
readonly Saml: "Saml";
|
|
461
|
-
};
|
|
462
|
-
type SsoConnectionAnyOfLastSession = SsoConnectionSessionJSON | null;
|
|
463
|
-
type SsoConnectionAnyOf = {
|
|
365
|
+
type SsoConnection = {
|
|
464
366
|
id: string;
|
|
465
|
-
type:
|
|
367
|
+
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";
|
|
466
368
|
name: string;
|
|
467
|
-
state:
|
|
369
|
+
state: "Inactive" | "Validating" | "Active" | "Deleting";
|
|
468
370
|
x509Certificates: X509CertificateJSON[];
|
|
469
|
-
latestExpiringCertificate?:
|
|
470
|
-
latestExpiredCertificate?:
|
|
371
|
+
latestExpiringCertificate?: X509CertificateJSON | null;
|
|
372
|
+
latestExpiredCertificate?: X509CertificateJSON | null;
|
|
471
373
|
createdAt: string;
|
|
472
|
-
providerTag:
|
|
473
|
-
lastSession?:
|
|
474
|
-
}
|
|
475
|
-
type SsoConnectionAnyOfEightAllOfState = (typeof SsoConnectionAnyOfEightAllOfState)[keyof typeof SsoConnectionAnyOfEightAllOfState];
|
|
476
|
-
declare const SsoConnectionAnyOfEightAllOfState: {
|
|
477
|
-
readonly Inactive: "Inactive";
|
|
478
|
-
readonly Validating: "Validating";
|
|
479
|
-
readonly Active: "Active";
|
|
480
|
-
readonly Deleting: "Deleting";
|
|
481
|
-
};
|
|
482
|
-
type SsoConnectionAnyOfEightAllOfType = (typeof SsoConnectionAnyOfEightAllOfType)[keyof typeof SsoConnectionAnyOfEightAllOfType];
|
|
483
|
-
declare const SsoConnectionAnyOfEightAllOfType: {
|
|
484
|
-
readonly AdpOidc: "AdpOidc";
|
|
485
|
-
readonly Auth0Migration: "Auth0Migration";
|
|
486
|
-
readonly CleverOidc: "CleverOidc";
|
|
487
|
-
readonly EntraIdOidc: "EntraIdOidc";
|
|
488
|
-
readonly GenericOidc: "GenericOidc";
|
|
489
|
-
readonly GoogleOidc: "GoogleOidc";
|
|
490
|
-
readonly OktaOidc: "OktaOidc";
|
|
491
|
-
readonly LoginGovOidc: "LoginGovOidc";
|
|
492
|
-
};
|
|
493
|
-
type SsoConnectionAnyOfEightAllOfProviderTag = (typeof SsoConnectionAnyOfEightAllOfProviderTag)[keyof typeof SsoConnectionAnyOfEightAllOfProviderTag];
|
|
494
|
-
declare const SsoConnectionAnyOfEightAllOfProviderTag: {
|
|
495
|
-
readonly OpenIdConnect: "OpenIdConnect";
|
|
496
|
-
};
|
|
497
|
-
type SsoConnectionAnyOfEightAllOfLastSession = SsoConnectionSessionJSON | null;
|
|
498
|
-
type SsoConnectionAnyOfEightAllOf = {
|
|
374
|
+
providerTag: "Saml";
|
|
375
|
+
lastSession?: SsoConnectionSessionJSON | null;
|
|
376
|
+
} | ({
|
|
499
377
|
id: string;
|
|
500
378
|
name: string;
|
|
501
|
-
state:
|
|
502
|
-
type:
|
|
379
|
+
state: "Inactive" | "Validating" | "Active" | "Deleting";
|
|
380
|
+
type: "AdpOidc" | "Auth0Migration" | "CleverOidc" | "EntraIdOidc" | "GenericOidc" | "GoogleOidc" | "OktaOidc" | "LoginGovOidc";
|
|
503
381
|
createdAt: string;
|
|
504
|
-
providerTag:
|
|
505
|
-
lastSession?:
|
|
506
|
-
}
|
|
507
|
-
|
|
382
|
+
providerTag: "OpenIdConnect";
|
|
383
|
+
lastSession?: SsoConnectionSessionJSON | null;
|
|
384
|
+
} & {
|
|
385
|
+
/** @nullable */
|
|
508
386
|
x509Certificates?: null;
|
|
387
|
+
/** @nullable */
|
|
509
388
|
latestExpiringCertificate?: null;
|
|
389
|
+
/** @nullable */
|
|
510
390
|
latestExpiredCertificate?: null;
|
|
511
|
-
};
|
|
512
|
-
type
|
|
513
|
-
type
|
|
514
|
-
|
|
391
|
+
});
|
|
392
|
+
type AuditLogStreamState = "Active" | "Inactive" | "Error" | "Invalid";
|
|
393
|
+
type AuditLogStreamType = "Datadog" | "Splunk" | "S3" | "GoogleCloudStorage" | "GenericHttps" | "AzureSentinel";
|
|
394
|
+
interface AuditLogStreamJSON {
|
|
395
|
+
id: string;
|
|
396
|
+
state: AuditLogStreamState;
|
|
397
|
+
type: AuditLogStreamType;
|
|
398
|
+
/** @nullable */
|
|
399
|
+
errorMessage?: string | null;
|
|
400
|
+
/** @nullable */
|
|
401
|
+
lastSyncedEventId?: string | null;
|
|
402
|
+
auditLogTrailId: string;
|
|
403
|
+
}
|
|
515
404
|
interface ListOrganizationApiKeysResponseData {
|
|
516
405
|
id: string;
|
|
517
406
|
name: string;
|
|
518
407
|
obfuscatedValue: string;
|
|
519
408
|
createdAt: string;
|
|
520
|
-
|
|
409
|
+
/** @nullable */
|
|
410
|
+
lastUsedAt?: string | null;
|
|
521
411
|
permissions: string[];
|
|
522
412
|
}
|
|
523
413
|
type ListOrganizationApiKeysResponseListMetadata = {
|
|
@@ -540,12 +430,12 @@ interface CreateOrganizationApiKeyResponse {
|
|
|
540
430
|
name: string;
|
|
541
431
|
permissions: string[];
|
|
542
432
|
}
|
|
543
|
-
type ListOrganizationApiKeyPermissionDescription = string | null;
|
|
544
433
|
interface ListOrganizationApiKeyPermission {
|
|
545
434
|
id: string;
|
|
546
435
|
slug: string;
|
|
547
436
|
name: string;
|
|
548
|
-
|
|
437
|
+
/** @nullable */
|
|
438
|
+
description?: string | null;
|
|
549
439
|
}
|
|
550
440
|
type ListOrganizationApiKeyPermissionsResponseListMetadata = {
|
|
551
441
|
before?: string;
|
|
@@ -555,114 +445,49 @@ interface ListOrganizationApiKeyPermissionsResponse {
|
|
|
555
445
|
data: ListOrganizationApiKeyPermission[];
|
|
556
446
|
list_metadata: ListOrganizationApiKeyPermissionsResponseListMetadata;
|
|
557
447
|
}
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
readonly connected_account: "connected_account";
|
|
561
|
-
};
|
|
562
|
-
type DataInstallationAllOfUserId = string | null;
|
|
563
|
-
type DataInstallationAllOfOrganizationId = string | null;
|
|
564
|
-
declare const DataInstallationAllOfState: {
|
|
565
|
-
readonly connected: "connected";
|
|
566
|
-
readonly needs_reauthorization: "needs_reauthorization";
|
|
567
|
-
};
|
|
568
|
-
type DataInstallationAllOf = {
|
|
569
|
-
object: (typeof DataInstallationAllOfObject)[keyof typeof DataInstallationAllOfObject];
|
|
448
|
+
type DataInstallation = {
|
|
449
|
+
object: "data_installation" | "connected_account";
|
|
570
450
|
id: string;
|
|
571
|
-
|
|
572
|
-
|
|
451
|
+
/** @nullable */
|
|
452
|
+
user_id?: string | null;
|
|
453
|
+
/** @nullable */
|
|
454
|
+
organization_id?: string | null;
|
|
573
455
|
scopes: string[];
|
|
574
|
-
state:
|
|
456
|
+
state: "connected" | "needs_reauthorization";
|
|
575
457
|
created_at: string;
|
|
576
458
|
updated_at: string;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
organizationId?: DataInstallationAllOfSixOrganizationId;
|
|
459
|
+
} & {
|
|
460
|
+
/** @nullable */
|
|
461
|
+
userlandUserId?: string | null;
|
|
462
|
+
/** @nullable */
|
|
463
|
+
organizationId?: string | null;
|
|
583
464
|
createdAt?: string;
|
|
584
465
|
updatedAt?: string;
|
|
585
466
|
};
|
|
586
|
-
type DataInstallation = DataInstallationAllOf & DataInstallationAllOfSix;
|
|
587
|
-
type DataIntegrationObject = (typeof DataIntegrationObject)[keyof typeof DataIntegrationObject];
|
|
588
|
-
declare const DataIntegrationObject: {
|
|
589
|
-
readonly data_integration: "data_integration";
|
|
590
|
-
};
|
|
591
|
-
type DataIntegrationDescription = string | null;
|
|
592
|
-
declare const DataIntegrationIntegrationType: {
|
|
593
|
-
readonly asana: "asana";
|
|
594
|
-
readonly box: "box";
|
|
595
|
-
readonly "cal-dot-com": "cal-dot-com";
|
|
596
|
-
readonly calendly: "calendly";
|
|
597
|
-
readonly confluence: "confluence";
|
|
598
|
-
readonly dropbox: "dropbox";
|
|
599
|
-
readonly "frame-io": "frame-io";
|
|
600
|
-
readonly front: "front";
|
|
601
|
-
readonly github: "github";
|
|
602
|
-
readonly gitlab: "gitlab";
|
|
603
|
-
readonly gmail: "gmail";
|
|
604
|
-
readonly google: "google";
|
|
605
|
-
readonly "google-calendar": "google-calendar";
|
|
606
|
-
readonly "google-drive": "google-drive";
|
|
607
|
-
readonly helpscout: "helpscout";
|
|
608
|
-
readonly hubspot: "hubspot";
|
|
609
|
-
readonly intercom: "intercom";
|
|
610
|
-
readonly jira: "jira";
|
|
611
|
-
readonly linear: "linear";
|
|
612
|
-
readonly microsoft: "microsoft";
|
|
613
|
-
readonly "microsoft-onedrive": "microsoft-onedrive";
|
|
614
|
-
readonly "microsoft-onenote": "microsoft-onenote";
|
|
615
|
-
readonly "microsoft-outlook": "microsoft-outlook";
|
|
616
|
-
readonly "microsoft-outlook-calendar": "microsoft-outlook-calendar";
|
|
617
|
-
readonly "microsoft-sharepoint": "microsoft-sharepoint";
|
|
618
|
-
readonly "microsoft-teams": "microsoft-teams";
|
|
619
|
-
readonly "microsoft-todo": "microsoft-todo";
|
|
620
|
-
readonly notion: "notion";
|
|
621
|
-
readonly prefect: "prefect";
|
|
622
|
-
readonly "pydantic-logfire": "pydantic-logfire";
|
|
623
|
-
readonly salesforce: "salesforce";
|
|
624
|
-
readonly sentry: "sentry";
|
|
625
|
-
readonly slack: "slack";
|
|
626
|
-
readonly snowflake: "snowflake";
|
|
627
|
-
readonly stripe: "stripe";
|
|
628
|
-
readonly xero: "xero";
|
|
629
|
-
readonly zendesk: "zendesk";
|
|
630
|
-
};
|
|
631
|
-
declare const DataIntegrationOwnership: {
|
|
632
|
-
readonly userland_user: "userland_user";
|
|
633
|
-
readonly organization: "organization";
|
|
634
|
-
};
|
|
635
|
-
declare const DataIntegrationCredentialsType: {
|
|
636
|
-
readonly shared: "shared";
|
|
637
|
-
readonly custom: "custom";
|
|
638
|
-
};
|
|
639
|
-
type DataIntegrationScopes = string[] | null;
|
|
640
|
-
type DataIntegrationInstallation = DataInstallation | null;
|
|
641
467
|
interface DataIntegration {
|
|
642
|
-
object:
|
|
468
|
+
object: "data_integration";
|
|
643
469
|
id: string;
|
|
644
470
|
name: string;
|
|
645
|
-
|
|
471
|
+
/** @nullable */
|
|
472
|
+
description?: string | null;
|
|
646
473
|
slug: string;
|
|
647
|
-
integrationType:
|
|
648
|
-
ownership:
|
|
649
|
-
credentialsType:
|
|
650
|
-
scopes?:
|
|
474
|
+
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";
|
|
475
|
+
ownership: "userland_user" | "organization";
|
|
476
|
+
credentialsType: "shared" | "custom";
|
|
477
|
+
scopes?: string[] | null;
|
|
651
478
|
createdAt: string;
|
|
652
479
|
updatedAt: string;
|
|
653
|
-
installation?:
|
|
480
|
+
installation?: DataInstallation | null;
|
|
654
481
|
}
|
|
655
482
|
interface DataIntegrationsResponse {
|
|
656
483
|
data: DataIntegration[];
|
|
657
484
|
}
|
|
658
|
-
type
|
|
485
|
+
type GetDataIntegrationAuthorizeUrlResponse = {
|
|
659
486
|
url: string;
|
|
660
487
|
redirectToken: string;
|
|
661
|
-
}
|
|
662
|
-
type GetDataIntegrationAuthorizeUrlResponseAllOfTwo = {
|
|
488
|
+
} & {
|
|
663
489
|
handoffToken?: string;
|
|
664
490
|
};
|
|
665
|
-
type GetDataIntegrationAuthorizeUrlResponse = GetDataIntegrationAuthorizeUrlResponseAllOf & GetDataIntegrationAuthorizeUrlResponseAllOfTwo;
|
|
666
491
|
interface GetAuthorizationStatusResponse {
|
|
667
492
|
isConnecting: boolean;
|
|
668
493
|
}
|
|
@@ -716,6 +541,8 @@ interface Directory {
|
|
|
716
541
|
state: DirectoryState;
|
|
717
542
|
createdAt: string;
|
|
718
543
|
updatedAt: string;
|
|
544
|
+
/** @nullable */
|
|
545
|
+
lastSyncRunAt?: string | null;
|
|
719
546
|
metadata: DirectoryMetadata;
|
|
720
547
|
}
|
|
721
548
|
interface DirectoriesResponse {
|
|
@@ -805,12 +632,12 @@ type GetDataIntegrationAuthorizeUrl403 = {
|
|
|
805
632
|
type GetDataIntegrationAuthorizeUrl404 = {
|
|
806
633
|
message: string;
|
|
807
634
|
};
|
|
808
|
-
type InviteMemberBodyFirstName = string | null;
|
|
809
|
-
type InviteMemberBodyLastName = string | null;
|
|
810
635
|
type InviteMemberBody = {
|
|
811
636
|
email: string;
|
|
812
|
-
|
|
813
|
-
|
|
637
|
+
/** @nullable */
|
|
638
|
+
firstName?: string | null;
|
|
639
|
+
/** @nullable */
|
|
640
|
+
lastName?: string | null;
|
|
814
641
|
roles: string[];
|
|
815
642
|
};
|
|
816
643
|
type InviteMember201 = {
|
|
@@ -838,9 +665,9 @@ type RevokeInvite403 = {
|
|
|
838
665
|
type RevokeInvite404 = {
|
|
839
666
|
message: string;
|
|
840
667
|
};
|
|
841
|
-
type ResendInvite201Id = string | null;
|
|
842
668
|
type ResendInvite201 = {
|
|
843
|
-
|
|
669
|
+
/** @nullable */
|
|
670
|
+
id?: string | null;
|
|
844
671
|
success: boolean;
|
|
845
672
|
};
|
|
846
673
|
type ResendInvite400 = {
|
|
@@ -1038,6 +865,12 @@ type VerifyTotpFactor400 = {
|
|
|
1038
865
|
type VerifyTotpFactor403 = {
|
|
1039
866
|
message: string;
|
|
1040
867
|
};
|
|
868
|
+
type GetAuditLogStream200 = AuditLogStreamJSON | {
|
|
869
|
+
[key: string]: unknown;
|
|
870
|
+
};
|
|
871
|
+
type GetAuditLogStream403 = {
|
|
872
|
+
message: string;
|
|
873
|
+
};
|
|
1041
874
|
type GenerateAdminPortalLinkParams = {
|
|
1042
875
|
intent: GenerateAdminPortalLinkIntent;
|
|
1043
876
|
};
|
|
@@ -1045,6 +878,7 @@ type GenerateAdminPortalLinkIntent = (typeof GenerateAdminPortalLinkIntent)[keyo
|
|
|
1045
878
|
declare const GenerateAdminPortalLinkIntent: {
|
|
1046
879
|
readonly domain_verification: "domain_verification";
|
|
1047
880
|
readonly sso: "sso";
|
|
881
|
+
readonly log_streams: "log_streams";
|
|
1048
882
|
};
|
|
1049
883
|
type GenerateAdminPortalLink201 = {
|
|
1050
884
|
link: string;
|
|
@@ -1085,6 +919,12 @@ type ListDirectories403 = {
|
|
|
1085
919
|
type ListDirectories404 = {
|
|
1086
920
|
message: string;
|
|
1087
921
|
};
|
|
922
|
+
type GetDirectory403 = {
|
|
923
|
+
message: string;
|
|
924
|
+
};
|
|
925
|
+
type GetDirectory404 = {
|
|
926
|
+
message: string;
|
|
927
|
+
};
|
|
1088
928
|
type Settings403 = {
|
|
1089
929
|
message: string;
|
|
1090
930
|
};
|
|
@@ -1268,6 +1108,9 @@ type getDataIntegrationAuthorizeUrlResponseError = (getDataIntegrationAuthorizeU
|
|
|
1268
1108
|
type getDataIntegrationAuthorizeUrlResponse = getDataIntegrationAuthorizeUrlResponseSuccess | getDataIntegrationAuthorizeUrlResponseError;
|
|
1269
1109
|
declare const getGetDataIntegrationAuthorizeUrlUrl: (slug: string, params?: GetDataIntegrationAuthorizeUrlParams) => string;
|
|
1270
1110
|
declare const getDataIntegrationAuthorizeUrl: (slug: string, params?: GetDataIntegrationAuthorizeUrlParams, options?: RequestInit) => Promise<getDataIntegrationAuthorizeUrlResponse>;
|
|
1111
|
+
/**
|
|
1112
|
+
* Sends an invitation email to a user to join the organization. If the user does not have an account, they will be prompted to create one upon accepting.
|
|
1113
|
+
*/
|
|
1271
1114
|
type inviteMemberResponse201 = {
|
|
1272
1115
|
data: InviteMember201;
|
|
1273
1116
|
status: 201;
|
|
@@ -1293,6 +1136,9 @@ type inviteMemberResponseError = (inviteMemberResponse400 | inviteMemberResponse
|
|
|
1293
1136
|
type inviteMemberResponse = inviteMemberResponseSuccess | inviteMemberResponseError;
|
|
1294
1137
|
declare const getInviteMemberUrl: () => string;
|
|
1295
1138
|
declare const inviteMember: (inviteMemberBody: InviteMemberBody, options?: RequestInit) => Promise<inviteMemberResponse>;
|
|
1139
|
+
/**
|
|
1140
|
+
* Cancels a pending invitation for the specified user, preventing them from joining the organization via that invite link.
|
|
1141
|
+
*/
|
|
1296
1142
|
type revokeInviteResponse200 = {
|
|
1297
1143
|
data: RevokeInvite200;
|
|
1298
1144
|
status: 200;
|
|
@@ -1318,6 +1164,9 @@ type revokeInviteResponseError = (revokeInviteResponse400 | revokeInviteResponse
|
|
|
1318
1164
|
type revokeInviteResponse = revokeInviteResponseSuccess | revokeInviteResponseError;
|
|
1319
1165
|
declare const getRevokeInviteUrl: (userId: string) => string;
|
|
1320
1166
|
declare const revokeInvite: (userId: string, options?: RequestInit) => Promise<revokeInviteResponse>;
|
|
1167
|
+
/**
|
|
1168
|
+
* Resends the pending invitation email to the specified user. Returns an error if the invitation has already been accepted or has expired.
|
|
1169
|
+
*/
|
|
1321
1170
|
type resendInviteResponse201 = {
|
|
1322
1171
|
data: ResendInvite201;
|
|
1323
1172
|
status: 201;
|
|
@@ -1347,6 +1196,9 @@ type resendInviteResponseError = (resendInviteResponse400 | resendInviteResponse
|
|
|
1347
1196
|
type resendInviteResponse = resendInviteResponseSuccess | resendInviteResponseError;
|
|
1348
1197
|
declare const getResendInviteUrl: (userId: string) => string;
|
|
1349
1198
|
declare const resendInvite: (userId: string, options?: RequestInit) => Promise<resendInviteResponse>;
|
|
1199
|
+
/**
|
|
1200
|
+
* Returns a paginated list of members belonging to the organization. Supports filtering by search term and role, and cursor-based pagination via before/after parameters.
|
|
1201
|
+
*/
|
|
1350
1202
|
type membersResponse200 = {
|
|
1351
1203
|
data: Members200;
|
|
1352
1204
|
status: 200;
|
|
@@ -1368,6 +1220,9 @@ type membersResponseError = (membersResponse403 | membersResponse404) & {
|
|
|
1368
1220
|
type membersResponse = membersResponseSuccess | membersResponseError;
|
|
1369
1221
|
declare const getMembersUrl: (params?: MembersParams) => string;
|
|
1370
1222
|
declare const members: (params?: MembersParams, options?: RequestInit) => Promise<membersResponse>;
|
|
1223
|
+
/**
|
|
1224
|
+
* Removes the specified user from the organization by revoking their membership. The user account itself is not deleted.
|
|
1225
|
+
*/
|
|
1371
1226
|
type removeMemberResponse200 = {
|
|
1372
1227
|
data: RemoveMember200;
|
|
1373
1228
|
status: 200;
|
|
@@ -1393,6 +1248,9 @@ type removeMemberResponseError = (removeMemberResponse400 | removeMemberResponse
|
|
|
1393
1248
|
type removeMemberResponse = removeMemberResponseSuccess | removeMemberResponseError;
|
|
1394
1249
|
declare const getRemoveMemberUrl: (userId: string) => string;
|
|
1395
1250
|
declare const removeMember: (userId: string, options?: RequestInit) => Promise<removeMemberResponse>;
|
|
1251
|
+
/**
|
|
1252
|
+
* Updates the specified member's organization membership, such as changing their assigned role.
|
|
1253
|
+
*/
|
|
1396
1254
|
type updateMemberResponse200 = {
|
|
1397
1255
|
data: UpdateMember200;
|
|
1398
1256
|
status: 200;
|
|
@@ -1422,6 +1280,9 @@ type updateMemberResponseError = (updateMemberResponse400 | updateMemberResponse
|
|
|
1422
1280
|
type updateMemberResponse = updateMemberResponseSuccess | updateMemberResponseError;
|
|
1423
1281
|
declare const getUpdateMemberUrl: (userId: string) => string;
|
|
1424
1282
|
declare const updateMember: (userId: string, updateMemberBody: UpdateMemberBody, options?: RequestInit) => Promise<updateMemberResponse>;
|
|
1283
|
+
/**
|
|
1284
|
+
* Returns the list of organizations the authenticated user is a member of.
|
|
1285
|
+
*/
|
|
1425
1286
|
type organizationsResponse200 = {
|
|
1426
1287
|
data: OrganizationsResponse;
|
|
1427
1288
|
status: 200;
|
|
@@ -1443,6 +1304,9 @@ type organizationsResponseError = (organizationsResponse403 | organizationsRespo
|
|
|
1443
1304
|
type organizationsResponse = organizationsResponseSuccess | organizationsResponseError;
|
|
1444
1305
|
declare const getOrganizationsUrl: () => string;
|
|
1445
1306
|
declare const organizations: (options?: RequestInit) => Promise<organizationsResponse>;
|
|
1307
|
+
/**
|
|
1308
|
+
* Returns the list of roles available in the organization that can be assigned to members.
|
|
1309
|
+
*/
|
|
1446
1310
|
type rolesResponse200 = {
|
|
1447
1311
|
data: MemberRole[];
|
|
1448
1312
|
status: 200;
|
|
@@ -1464,6 +1328,9 @@ type rolesResponseError = (rolesResponse403 | rolesResponse404) & {
|
|
|
1464
1328
|
type rolesResponse = rolesResponseSuccess | rolesResponseError;
|
|
1465
1329
|
declare const getRolesUrl: () => string;
|
|
1466
1330
|
declare const roles: (options?: RequestInit) => Promise<rolesResponse>;
|
|
1331
|
+
/**
|
|
1332
|
+
* Returns the list of roles available in the organization along with the user management configuration, such as whether role assignment is enabled.
|
|
1333
|
+
*/
|
|
1467
1334
|
type rolesAndConfigResponse200 = {
|
|
1468
1335
|
data: RolesAndConfigResponse;
|
|
1469
1336
|
status: 200;
|
|
@@ -1485,6 +1352,9 @@ type rolesAndConfigResponseError = (rolesAndConfigResponse403 | rolesAndConfigRe
|
|
|
1485
1352
|
type rolesAndConfigResponse = rolesAndConfigResponseSuccess | rolesAndConfigResponseError;
|
|
1486
1353
|
declare const getRolesAndConfigUrl: () => string;
|
|
1487
1354
|
declare const rolesAndConfig: (options?: RequestInit) => Promise<rolesAndConfigResponse>;
|
|
1355
|
+
/**
|
|
1356
|
+
* Returns the authentication methods and MFA factors configured for the authenticated user, including enrolled TOTP factors and passkeys.
|
|
1357
|
+
*/
|
|
1488
1358
|
type authenticationInformationResponse200 = {
|
|
1489
1359
|
data: AuthenticationInformationResponse;
|
|
1490
1360
|
status: 200;
|
|
@@ -1502,6 +1372,9 @@ type authenticationInformationResponseError = authenticationInformationResponse4
|
|
|
1502
1372
|
type authenticationInformationResponse = authenticationInformationResponseSuccess | authenticationInformationResponseError;
|
|
1503
1373
|
declare const getAuthenticationInformationUrl: () => string;
|
|
1504
1374
|
declare const authenticationInformation: (options?: RequestInit) => Promise<authenticationInformationResponse>;
|
|
1375
|
+
/**
|
|
1376
|
+
* Sets a password for the authenticated user. Only available when the user does not already have a password configured. Requires elevated access.
|
|
1377
|
+
*/
|
|
1505
1378
|
type createPasswordResponse201 = {
|
|
1506
1379
|
data: CreatePassword201;
|
|
1507
1380
|
status: 201;
|
|
@@ -1523,6 +1396,9 @@ type createPasswordResponseError = (createPasswordResponse400 | createPasswordRe
|
|
|
1523
1396
|
type createPasswordResponse = createPasswordResponseSuccess | createPasswordResponseError;
|
|
1524
1397
|
declare const getCreatePasswordUrl: () => string;
|
|
1525
1398
|
declare const createPassword: (createPasswordRequest: CreatePasswordRequest, options?: RequestInit) => Promise<createPasswordResponse>;
|
|
1399
|
+
/**
|
|
1400
|
+
* Initiates TOTP (authenticator app) enrollment for the authenticated user by generating a new TOTP secret and QR code. Requires elevated access.
|
|
1401
|
+
*/
|
|
1526
1402
|
type createTotpFactorResponse201 = {
|
|
1527
1403
|
data: CreateTotpFactorResponse;
|
|
1528
1404
|
status: 201;
|
|
@@ -1544,6 +1420,9 @@ type createTotpFactorResponseError = (createTotpFactorResponse400 | createTotpFa
|
|
|
1544
1420
|
type createTotpFactorResponse = createTotpFactorResponseSuccess | createTotpFactorResponseError;
|
|
1545
1421
|
declare const getCreateTotpFactorUrl: () => string;
|
|
1546
1422
|
declare const createTotpFactor: (options?: RequestInit) => Promise<createTotpFactorResponse>;
|
|
1423
|
+
/**
|
|
1424
|
+
* Returns the profile information of the currently authenticated user, including their name, email, and linked authentication factors.
|
|
1425
|
+
*/
|
|
1547
1426
|
type meResponse200 = {
|
|
1548
1427
|
data: Me;
|
|
1549
1428
|
status: 200;
|
|
@@ -1561,6 +1440,9 @@ type meResponseError = meResponse403 & {
|
|
|
1561
1440
|
type meResponse = meResponseSuccess | meResponseError;
|
|
1562
1441
|
declare const getMeUrl: () => string;
|
|
1563
1442
|
declare const me: (options?: RequestInit) => Promise<meResponse>;
|
|
1443
|
+
/**
|
|
1444
|
+
* Updates the profile information of the currently authenticated user, such as their first name, last name, or email address.
|
|
1445
|
+
*/
|
|
1564
1446
|
type updateMeResponse200 = {
|
|
1565
1447
|
data: Me;
|
|
1566
1448
|
status: 200;
|
|
@@ -1582,6 +1464,9 @@ type updateMeResponseError = (updateMeResponse400 | updateMeResponse403) & {
|
|
|
1582
1464
|
type updateMeResponse = updateMeResponseSuccess | updateMeResponseError;
|
|
1583
1465
|
declare const getUpdateMeUrl: () => string;
|
|
1584
1466
|
declare const updateMe: (updateMeBody: UpdateMeBody, options?: RequestInit) => Promise<updateMeResponse>;
|
|
1467
|
+
/**
|
|
1468
|
+
* Initiates passkey (WebAuthn) registration for the authenticated user by returning the credential creation options. Requires elevated access.
|
|
1469
|
+
*/
|
|
1585
1470
|
type registerPasskeyResponse201 = {
|
|
1586
1471
|
data: RegisterPasskeyResponse;
|
|
1587
1472
|
status: 201;
|
|
@@ -1603,6 +1488,9 @@ type registerPasskeyResponseError = (registerPasskeyResponse400 | registerPasske
|
|
|
1603
1488
|
type registerPasskeyResponse = registerPasskeyResponseSuccess | registerPasskeyResponseError;
|
|
1604
1489
|
declare const getRegisterPasskeyUrl: () => string;
|
|
1605
1490
|
declare const registerPasskey: (options?: RequestInit) => Promise<registerPasskeyResponse>;
|
|
1491
|
+
/**
|
|
1492
|
+
* Completes passkey (WebAuthn) registration by verifying the credential created by the authenticator. Requires elevated access.
|
|
1493
|
+
*/
|
|
1606
1494
|
type verifyPasskeyResponse200 = {
|
|
1607
1495
|
data: VerifyPasskey200;
|
|
1608
1496
|
status: 200;
|
|
@@ -1624,6 +1512,9 @@ type verifyPasskeyResponseError = (verifyPasskeyResponse400 | verifyPasskeyRespo
|
|
|
1624
1512
|
type verifyPasskeyResponse = verifyPasskeyResponseSuccess | verifyPasskeyResponseError;
|
|
1625
1513
|
declare const getVerifyPasskeyUrl: () => string;
|
|
1626
1514
|
declare const verifyPasskey: (verifyPasskeyRequest: VerifyPasskeyRequest, options?: RequestInit) => Promise<verifyPasskeyResponse>;
|
|
1515
|
+
/**
|
|
1516
|
+
* Removes the specified passkey from the authenticated user's account. Requires elevated access.
|
|
1517
|
+
*/
|
|
1627
1518
|
type deletePasskeyResponse200 = {
|
|
1628
1519
|
data: DeletePasskey200;
|
|
1629
1520
|
status: 200;
|
|
@@ -1645,6 +1536,9 @@ type deletePasskeyResponseError = (deletePasskeyResponse400 | deletePasskeyRespo
|
|
|
1645
1536
|
type deletePasskeyResponse = deletePasskeyResponseSuccess | deletePasskeyResponseError;
|
|
1646
1537
|
declare const getDeletePasskeyUrl: (passkeyId: string) => string;
|
|
1647
1538
|
declare const deletePasskey: (passkeyId: string, options?: RequestInit) => Promise<deletePasskeyResponse>;
|
|
1539
|
+
/**
|
|
1540
|
+
* Sends a verification email to the authenticated user to confirm their email address.
|
|
1541
|
+
*/
|
|
1648
1542
|
type sendVerificationResponse200 = {
|
|
1649
1543
|
data: SendVerificationResponse;
|
|
1650
1544
|
status: 200;
|
|
@@ -1666,6 +1560,9 @@ type sendVerificationResponseError = (sendVerificationResponse400 | sendVerifica
|
|
|
1666
1560
|
type sendVerificationResponse = sendVerificationResponseSuccess | sendVerificationResponseError;
|
|
1667
1561
|
declare const getSendVerificationUrl: () => string;
|
|
1668
1562
|
declare const sendVerification: (options?: RequestInit) => Promise<sendVerificationResponse>;
|
|
1563
|
+
/**
|
|
1564
|
+
* Returns all currently active sessions for the authenticated user, including device and location information where available.
|
|
1565
|
+
*/
|
|
1669
1566
|
type sessionsResponse200 = {
|
|
1670
1567
|
data: ActiveSessionsResponse;
|
|
1671
1568
|
status: 200;
|
|
@@ -1683,6 +1580,9 @@ type sessionsResponseError = sessionsResponse403 & {
|
|
|
1683
1580
|
type sessionsResponse = sessionsResponseSuccess | sessionsResponseError;
|
|
1684
1581
|
declare const getSessionsUrl: () => string;
|
|
1685
1582
|
declare const sessions: (options?: RequestInit) => Promise<sessionsResponse>;
|
|
1583
|
+
/**
|
|
1584
|
+
* Revokes all active sessions for the authenticated user except optionally the current one, signing them out of all other devices.
|
|
1585
|
+
*/
|
|
1686
1586
|
type revokeAllSessionsResponse200 = {
|
|
1687
1587
|
data: RevokeAllSessions200;
|
|
1688
1588
|
status: 200;
|
|
@@ -1704,6 +1604,9 @@ type revokeAllSessionsResponseError = (revokeAllSessionsResponse400 | revokeAllS
|
|
|
1704
1604
|
type revokeAllSessionsResponse = revokeAllSessionsResponseSuccess | revokeAllSessionsResponseError;
|
|
1705
1605
|
declare const getRevokeAllSessionsUrl: () => string;
|
|
1706
1606
|
declare const revokeAllSessions: (revokeAllSessionsRequest: RevokeAllSessionsRequest, options?: RequestInit) => Promise<revokeAllSessionsResponse>;
|
|
1607
|
+
/**
|
|
1608
|
+
* Revokes a specific active session by ID, signing the user out of that particular device or browser.
|
|
1609
|
+
*/
|
|
1707
1610
|
type revokeSessionResponse200 = {
|
|
1708
1611
|
data: RevokeSession200;
|
|
1709
1612
|
status: 200;
|
|
@@ -1725,6 +1628,9 @@ type revokeSessionResponseError = (revokeSessionResponse400 | revokeSessionRespo
|
|
|
1725
1628
|
type revokeSessionResponse = revokeSessionResponseSuccess | revokeSessionResponseError;
|
|
1726
1629
|
declare const getRevokeSessionUrl: (sessionId: string) => string;
|
|
1727
1630
|
declare const revokeSession: (sessionId: string, options?: RequestInit) => Promise<revokeSessionResponse>;
|
|
1631
|
+
/**
|
|
1632
|
+
* Removes all TOTP factors enrolled for the authenticated user, disabling authenticator app as a second factor. Requires elevated access.
|
|
1633
|
+
*/
|
|
1728
1634
|
type deleteTotpFactorsResponse200 = {
|
|
1729
1635
|
data: DeleteTotpFactors200;
|
|
1730
1636
|
status: 200;
|
|
@@ -1746,6 +1652,9 @@ type deleteTotpFactorsResponseError = (deleteTotpFactorsResponse400 | deleteTotp
|
|
|
1746
1652
|
type deleteTotpFactorsResponse = deleteTotpFactorsResponseSuccess | deleteTotpFactorsResponseError;
|
|
1747
1653
|
declare const getDeleteTotpFactorsUrl: () => string;
|
|
1748
1654
|
declare const deleteTotpFactors: (options?: RequestInit) => Promise<deleteTotpFactorsResponse>;
|
|
1655
|
+
/**
|
|
1656
|
+
* Changes the password for the authenticated user. Requires the current password to be supplied alongside the new password.
|
|
1657
|
+
*/
|
|
1749
1658
|
type updatePasswordResponse201 = {
|
|
1750
1659
|
data: UpdatePassword201;
|
|
1751
1660
|
status: 201;
|
|
@@ -1767,6 +1676,9 @@ type updatePasswordResponseError = (updatePasswordResponse400 | updatePasswordRe
|
|
|
1767
1676
|
type updatePasswordResponse = updatePasswordResponseSuccess | updatePasswordResponseError;
|
|
1768
1677
|
declare const getUpdatePasswordUrl: () => string;
|
|
1769
1678
|
declare const updatePassword: (updatePasswordRequest: UpdatePasswordRequest, options?: RequestInit) => Promise<updatePasswordResponse>;
|
|
1679
|
+
/**
|
|
1680
|
+
* 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.
|
|
1681
|
+
*/
|
|
1770
1682
|
type verifyResponse200 = {
|
|
1771
1683
|
data: VerifyResponse;
|
|
1772
1684
|
status: 200;
|
|
@@ -1788,6 +1700,9 @@ type verifyResponseError = (verifyResponse400 | verifyResponse403) & {
|
|
|
1788
1700
|
type verifyResponse = verifyResponseSuccess | verifyResponseError;
|
|
1789
1701
|
declare const getVerifyUrl: () => string;
|
|
1790
1702
|
declare const verify: (verifyRequest: VerifyRequest, options?: RequestInit) => Promise<verifyResponse>;
|
|
1703
|
+
/**
|
|
1704
|
+
* Completes TOTP enrollment by verifying the one-time code generated by the authenticator app. Requires elevated access.
|
|
1705
|
+
*/
|
|
1791
1706
|
type verifyTotpFactorResponse200 = {
|
|
1792
1707
|
data: VerifyTotpFactor200;
|
|
1793
1708
|
status: 200;
|
|
@@ -1809,6 +1724,23 @@ type verifyTotpFactorResponseError = (verifyTotpFactorResponse400 | verifyTotpFa
|
|
|
1809
1724
|
type verifyTotpFactorResponse = verifyTotpFactorResponseSuccess | verifyTotpFactorResponseError;
|
|
1810
1725
|
declare const getVerifyTotpFactorUrl: () => string;
|
|
1811
1726
|
declare const verifyTotpFactor: (verifyTotpFactorRequest: VerifyTotpFactorRequest, options?: RequestInit) => Promise<verifyTotpFactorResponse>;
|
|
1727
|
+
type getAuditLogStreamResponse200 = {
|
|
1728
|
+
data: GetAuditLogStream200;
|
|
1729
|
+
status: 200;
|
|
1730
|
+
};
|
|
1731
|
+
type getAuditLogStreamResponse403 = {
|
|
1732
|
+
data: GetAuditLogStream403;
|
|
1733
|
+
status: 403;
|
|
1734
|
+
};
|
|
1735
|
+
type getAuditLogStreamResponseSuccess = getAuditLogStreamResponse200 & {
|
|
1736
|
+
headers: Headers;
|
|
1737
|
+
};
|
|
1738
|
+
type getAuditLogStreamResponseError = getAuditLogStreamResponse403 & {
|
|
1739
|
+
headers: Headers;
|
|
1740
|
+
};
|
|
1741
|
+
type getAuditLogStreamResponse = getAuditLogStreamResponseSuccess | getAuditLogStreamResponseError;
|
|
1742
|
+
declare const getGetAuditLogStreamUrl: () => string;
|
|
1743
|
+
declare const getAuditLogStream: (options?: RequestInit) => Promise<getAuditLogStreamResponse>;
|
|
1812
1744
|
type generateAdminPortalLinkResponse201 = {
|
|
1813
1745
|
data: GenerateAdminPortalLink201;
|
|
1814
1746
|
status: 201;
|
|
@@ -1928,6 +1860,30 @@ type listDirectoriesResponseError = (listDirectoriesResponse403 | listDirectorie
|
|
|
1928
1860
|
type listDirectoriesResponse = listDirectoriesResponseSuccess | listDirectoriesResponseError;
|
|
1929
1861
|
declare const getListDirectoriesUrl: () => string;
|
|
1930
1862
|
declare const listDirectories: (options?: RequestInit) => Promise<listDirectoriesResponse>;
|
|
1863
|
+
type getDirectoryResponse200 = {
|
|
1864
|
+
data: Directory;
|
|
1865
|
+
status: 200;
|
|
1866
|
+
};
|
|
1867
|
+
type getDirectoryResponse403 = {
|
|
1868
|
+
data: GetDirectory403;
|
|
1869
|
+
status: 403;
|
|
1870
|
+
};
|
|
1871
|
+
type getDirectoryResponse404 = {
|
|
1872
|
+
data: GetDirectory404;
|
|
1873
|
+
status: 404;
|
|
1874
|
+
};
|
|
1875
|
+
type getDirectoryResponseSuccess = getDirectoryResponse200 & {
|
|
1876
|
+
headers: Headers;
|
|
1877
|
+
};
|
|
1878
|
+
type getDirectoryResponseError = (getDirectoryResponse403 | getDirectoryResponse404) & {
|
|
1879
|
+
headers: Headers;
|
|
1880
|
+
};
|
|
1881
|
+
type getDirectoryResponse = getDirectoryResponseSuccess | getDirectoryResponseError;
|
|
1882
|
+
declare const getGetDirectoryUrl: (directoryId: string) => string;
|
|
1883
|
+
declare const getDirectory: (directoryId: string, options?: RequestInit) => Promise<getDirectoryResponse>;
|
|
1884
|
+
/**
|
|
1885
|
+
* Returns the widget settings for the current environment, including enabled authentication methods and branding configuration.
|
|
1886
|
+
*/
|
|
1931
1887
|
type settingsResponse200 = {
|
|
1932
1888
|
data: SettingsResponse;
|
|
1933
1889
|
status: 200;
|
|
@@ -1946,4 +1902,4 @@ type settingsResponse = settingsResponseSuccess | settingsResponseError;
|
|
|
1946
1902
|
declare const getSettingsUrl: () => string;
|
|
1947
1903
|
declare const settings: (options?: RequestInit) => Promise<settingsResponse>;
|
|
1948
1904
|
|
|
1949
|
-
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 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 CreateOrganizationApiKeyRequest, type CreateOrganizationApiKeyResponse, type CreatePassword201, type CreatePassword400, type CreatePassword403, type CreatePasswordRequest, type CreateTotpFactor400, type CreateTotpFactor403, 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 DeleteOrganizationApiKey200, type DeleteOrganizationApiKey403, type DeleteOrganizationApiKey404, type DeleteOrganizationDomain403, type DeleteOrganizationDomain404, type DeletePasskey200, type DeletePasskey400, type DeletePasskey403, type DeleteTotpFactors200, type DeleteTotpFactors400, type DeleteTotpFactors403, type DirectoriesResponse, type Directory, type DirectoryMetadata, DirectoryState, DirectoryType, type DirectoryUsersMetadata, DomainVerificationNameServer, type GenerateAdminPortalLink201, type GenerateAdminPortalLink403, type GenerateAdminPortalLink404, type GenerateAdminPortalLink500, GenerateAdminPortalLinkIntent, type GenerateAdminPortalLinkParams, type GetAuthorizationStatusResponse, type GetDataInstallationAuthorizationStatus400, type GetDataInstallationAuthorizationStatus403, type GetDataInstallationAuthorizationStatus404, type GetDataIntegrationAuthorizeUrl400, type GetDataIntegrationAuthorizeUrl403, type GetDataIntegrationAuthorizeUrl404, type GetDataIntegrationAuthorizeUrlParams, type GetDataIntegrationAuthorizeUrlResponse, type GetDataIntegrationAuthorizeUrlResponseAllOf, type GetDataIntegrationAuthorizeUrlResponseAllOfTwo, type InviteMember201, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type InviteMemberBodyFirstName, type InviteMemberBodyLastName, type ListDirectories403, type ListDirectories404, type ListMetadata, type ListMetadataAfter, type ListMetadataBefore, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissionDescription, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, type ListOrganizationApiKeys403, type ListOrganizationApiKeysParams, type ListOrganizationApiKeysResponse, type ListOrganizationApiKeysResponseData, type ListOrganizationApiKeysResponseDataLastUsedAt, type ListOrganizationApiKeysResponseListMetadata, type ListOrganizationDomains200, type ListOrganizationDomains403, type ListOrganizationDomains404, type Me, type Me403, type MeFirstName, type MeLastName, type MeLocale, type MeOauthProfiles, type MeOauthProfilesOneOf, type MeProfilePictureUrl, 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 MyDataIntegrations403, 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 OrganizationsResponse, type RegisterPasskey400, type RegisterPasskey403, type RegisterPasskeyResponse, type RegisterPasskeyResponseOptions, type RemoveMember200, type RemoveMember400, type RemoveMember403, type RemoveMember404, type ResendInvite201, type ResendInvite201Id, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsRequest, type RevokeInvite200, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeSession200, type RevokeSession400, type RevokeSession403, type Roles403, type Roles404, type RolesAndConfig403, type RolesAndConfig404, type RolesAndConfigResponse, SamlSessionState, type SendVerification400, type SendVerification403, type SendVerificationResponse, SendVerificationResponseType, type Sessions403, type Settings403, 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 UpdateMember200, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordRequest, type Verify400, type Verify403, type VerifyPasskey200, type VerifyPasskey400, type VerifyPasskey403, type VerifyPasskeyRequest, type VerifyPasskeyRequestResponse, type VerifyRequest, type VerifyResponse, type VerifyTotpFactor200, type VerifyTotpFactor400, type VerifyTotpFactor403, type VerifyTotpFactorRequest, type X509CertificateJSON, 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, getAuthenticationInformationUrl, getCreateOrganizationApiKeyUrl, getCreatePasswordUrl, getCreateTotpFactorUrl, getDataInstallationAuthorizationStatus, type getDataInstallationAuthorizationStatusResponse, type getDataInstallationAuthorizationStatusResponse200, type getDataInstallationAuthorizationStatusResponse400, type getDataInstallationAuthorizationStatusResponse403, type getDataInstallationAuthorizationStatusResponse404, type getDataInstallationAuthorizationStatusResponseError, type getDataInstallationAuthorizationStatusResponseSuccess, getDataIntegrationAuthorizeUrl, type getDataIntegrationAuthorizeUrlResponse, type getDataIntegrationAuthorizeUrlResponse200, type getDataIntegrationAuthorizeUrlResponse400, type getDataIntegrationAuthorizeUrlResponse403, type getDataIntegrationAuthorizeUrlResponse404, type getDataIntegrationAuthorizeUrlResponseError, type getDataIntegrationAuthorizeUrlResponseSuccess, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainUrl, getDeletePasskeyUrl, getDeleteTotpFactorsUrl, getGenerateAdminPortalLinkUrl, getGetDataInstallationAuthorizationStatusUrl, getGetDataIntegrationAuthorizeUrlUrl, getInviteMemberUrl, getListDirectoriesUrl, getListOrganizationApiKeyPermissionsUrl, getListOrganizationApiKeysUrl, getListOrganizationDomainsUrl, getListSsoConnectionsUrl, getMeUrl, getMembersUrl, getMyDataIntegrationsUrl, getOrganizationsUrl, getRegisterPasskeyUrl, getRemoveMemberUrl, getResendInviteUrl, getReverifyOrganizationDomainUrl, getRevokeAllSessionsUrl, getRevokeInviteUrl, getRevokeSessionUrl, getRolesAndConfigUrl, getRolesUrl, getSendVerificationUrl, getSessionsUrl, getSettingsUrl, getUpdateMeUrl, getUpdateMemberUrl, getUpdatePasswordUrl, getVerifyPasskeyUrl, getVerifyTotpFactorUrl, getVerifyUrl, inviteMember, type inviteMemberResponse, type inviteMemberResponse201, type inviteMemberResponse400, type inviteMemberResponse403, type inviteMemberResponse404, type inviteMemberResponseError, type inviteMemberResponseSuccess, listDirectories, type listDirectoriesResponse, type listDirectoriesResponse200, type listDirectoriesResponse403, type listDirectoriesResponse404, type listDirectoriesResponseError, type listDirectoriesResponseSuccess, listOrganizationApiKeyPermissions, type listOrganizationApiKeyPermissionsResponse, type listOrganizationApiKeyPermissionsResponse200, type listOrganizationApiKeyPermissionsResponse400, type listOrganizationApiKeyPermissionsResponse403, type listOrganizationApiKeyPermissionsResponseError, type listOrganizationApiKeyPermissionsResponseSuccess, listOrganizationApiKeys, type listOrganizationApiKeysResponse, type listOrganizationApiKeysResponse200, type listOrganizationApiKeysResponse400, type listOrganizationApiKeysResponse403, type listOrganizationApiKeysResponseError, type listOrganizationApiKeysResponseSuccess, listOrganizationDomains, type listOrganizationDomainsResponse, type listOrganizationDomainsResponse200, type listOrganizationDomainsResponse403, type listOrganizationDomainsResponse404, type listOrganizationDomainsResponseError, type listOrganizationDomainsResponseSuccess, listSsoConnections, type listSsoConnectionsResponse, type listSsoConnectionsResponse200, type listSsoConnectionsResponseSuccess, me, type meResponse, type meResponse200, type meResponse403, type meResponseError, type meResponseSuccess, members, type membersResponse, type membersResponse200, type membersResponse403, type membersResponse404, type membersResponseError, type membersResponseSuccess, myDataIntegrations, type myDataIntegrationsResponse, type myDataIntegrationsResponse200, type myDataIntegrationsResponse403, type myDataIntegrationsResponseError, type myDataIntegrationsResponseSuccess, organizations, type organizationsResponse, type organizationsResponse200, type organizationsResponse403, type organizationsResponse404, type organizationsResponseError, type organizationsResponseSuccess, registerPasskey, type registerPasskeyResponse, type registerPasskeyResponse201, type registerPasskeyResponse400, type registerPasskeyResponse403, type registerPasskeyResponseError, type registerPasskeyResponseSuccess, removeMember, type removeMemberResponse, type removeMemberResponse200, type removeMemberResponse400, type removeMemberResponse403, type removeMemberResponse404, type removeMemberResponseError, type removeMemberResponseSuccess, resendInvite, type resendInviteResponse, type resendInviteResponse201, type resendInviteResponse400, type resendInviteResponse403, type resendInviteResponse404, type resendInviteResponse422, type resendInviteResponseError, type resendInviteResponseSuccess, reverifyOrganizationDomain, type reverifyOrganizationDomainResponse, type reverifyOrganizationDomainResponse200, type reverifyOrganizationDomainResponse403, type reverifyOrganizationDomainResponse404, type reverifyOrganizationDomainResponseError, type reverifyOrganizationDomainResponseSuccess, revokeAllSessions, type revokeAllSessionsResponse, type revokeAllSessionsResponse200, type revokeAllSessionsResponse400, type revokeAllSessionsResponse403, type revokeAllSessionsResponseError, type revokeAllSessionsResponseSuccess, revokeInvite, type revokeInviteResponse, type revokeInviteResponse200, type revokeInviteResponse400, type revokeInviteResponse403, type revokeInviteResponse404, type revokeInviteResponseError, type revokeInviteResponseSuccess, revokeSession, type revokeSessionResponse, type revokeSessionResponse200, type revokeSessionResponse400, type revokeSessionResponse403, type revokeSessionResponseError, type revokeSessionResponseSuccess, roles, rolesAndConfig, type rolesAndConfigResponse, type rolesAndConfigResponse200, type rolesAndConfigResponse403, type rolesAndConfigResponse404, type rolesAndConfigResponseError, type rolesAndConfigResponseSuccess, type rolesResponse, type rolesResponse200, type rolesResponse403, type rolesResponse404, type rolesResponseError, type rolesResponseSuccess, sendVerification, type sendVerificationResponse, type sendVerificationResponse200, type sendVerificationResponse400, type sendVerificationResponse403, type sendVerificationResponseError, type sendVerificationResponseSuccess, sessions, type sessionsResponse, type sessionsResponse200, type sessionsResponse403, type sessionsResponseError, type sessionsResponseSuccess, settings, type settingsResponse, type settingsResponse200, type settingsResponse403, type settingsResponseError, type settingsResponseSuccess, updateMe, type updateMeResponse, type updateMeResponse200, type updateMeResponse400, type updateMeResponse403, type updateMeResponseError, type updateMeResponseSuccess, updateMember, type updateMemberResponse, type updateMemberResponse200, type updateMemberResponse400, type updateMemberResponse403, type updateMemberResponse404, type updateMemberResponse422, type updateMemberResponseError, type updateMemberResponseSuccess, updatePassword, type updatePasswordResponse, type updatePasswordResponse201, type updatePasswordResponse400, type updatePasswordResponse403, type updatePasswordResponseError, type updatePasswordResponseSuccess, verify, verifyPasskey, type verifyPasskeyResponse, type verifyPasskeyResponse200, type verifyPasskeyResponse400, type verifyPasskeyResponse403, type verifyPasskeyResponseError, type verifyPasskeyResponseSuccess, type verifyResponse, type verifyResponse200, type verifyResponse400, type verifyResponse403, type verifyResponseError, type verifyResponseSuccess, verifyTotpFactor, type verifyTotpFactorResponse, type verifyTotpFactorResponse200, type verifyTotpFactorResponse400, type verifyTotpFactorResponse403, type verifyTotpFactorResponseError, type verifyTotpFactorResponseSuccess };
|
|
1905
|
+
export { type ActiveSession, type ActiveSessionCurrentLocation, type ActiveSessionState, type ActiveSessionsResponse, type AuditLogStreamJSON, type AuditLogStreamState, type AuditLogStreamType, type AuthenticationInformation403, type AuthenticationInformationResponse, type AuthenticationInformationResponseData, type AuthenticationInformationResponseDataPasswordSettings, type AuthenticationInformationResponseDataVerificationMethods, type AuthenticationInformationResponseDataVerificationMethodsMfa, type AuthenticationInformationResponseDataVerificationMethodsPasskey, type AuthenticationInformationResponseDataVerificationMethodsPassword, type CreateOrganizationApiKey400, type CreateOrganizationApiKey403, type CreateOrganizationApiKey404, type CreateOrganizationApiKey422, type CreateOrganizationApiKey422ErrorsItem, type CreateOrganizationApiKeyRequest, type CreateOrganizationApiKeyResponse, type CreatePassword201, type CreatePassword400, type CreatePassword403, type CreatePasswordRequest, type CreateTotpFactor400, type CreateTotpFactor403, type CreateTotpFactorResponse, type CreateTotpFactorResponseAuthenticationChallenge, type CreateTotpFactorResponseAuthenticationFactor, type DataInstallation, type DataIntegration, type DataIntegrationsResponse, type DeleteDataInstallation200, type DeleteDataInstallation403, type DeleteDataInstallation404, type DeleteOrganizationApiKey200, type DeleteOrganizationApiKey403, type DeleteOrganizationApiKey404, type DeleteOrganizationDomain403, type DeleteOrganizationDomain404, type DeletePasskey200, type DeletePasskey400, type DeletePasskey403, type DeleteTotpFactors200, type DeleteTotpFactors400, type DeleteTotpFactors403, type DirectoriesResponse, type Directory, type DirectoryMetadata, DirectoryState, DirectoryType, type DirectoryUsersMetadata, DomainVerificationNameServer, type GenerateAdminPortalLink201, type GenerateAdminPortalLink403, type GenerateAdminPortalLink404, type GenerateAdminPortalLink500, GenerateAdminPortalLinkIntent, type GenerateAdminPortalLinkParams, type GetAuditLogStream200, type GetAuditLogStream403, type GetAuthorizationStatusResponse, type GetDataInstallationAuthorizationStatus400, type GetDataInstallationAuthorizationStatus403, type GetDataInstallationAuthorizationStatus404, type GetDataIntegrationAuthorizeUrl400, type GetDataIntegrationAuthorizeUrl403, type GetDataIntegrationAuthorizeUrl404, type GetDataIntegrationAuthorizeUrlParams, type GetDataIntegrationAuthorizeUrlResponse, type GetDirectory403, type GetDirectory404, type InviteMember201, type InviteMember400, type InviteMember403, type InviteMember404, type InviteMemberBody, type ListDirectories403, type ListDirectories404, type ListMetadata, type ListOrganizationApiKeyPermission, type ListOrganizationApiKeyPermissions400, type ListOrganizationApiKeyPermissions403, type ListOrganizationApiKeyPermissionsParams, type ListOrganizationApiKeyPermissionsResponse, type ListOrganizationApiKeyPermissionsResponseListMetadata, type ListOrganizationApiKeys400, type ListOrganizationApiKeys403, type ListOrganizationApiKeysParams, type ListOrganizationApiKeysResponse, type ListOrganizationApiKeysResponseData, type ListOrganizationApiKeysResponseListMetadata, type ListOrganizationDomains200, type ListOrganizationDomains403, type ListOrganizationDomains404, type Me, type Me403, type MeOauthProfiles, type Member, type MemberActions, MemberActionsItem, type MemberRole, type MemberRoles, MemberStatus, type Members200, type Members403, type Members404, type MembersParams, type MyDataIntegrations403, type OAuthProfile, OidcSessionState, type OrganizationDomain, OrganizationDomainState, type OrganizationInfo, type Organizations403, type Organizations404, type OrganizationsResponse, type RegisterPasskey400, type RegisterPasskey403, type RegisterPasskeyResponse, type RegisterPasskeyResponseOptions, type RemoveMember200, type RemoveMember400, type RemoveMember403, type RemoveMember404, type ResendInvite201, type ResendInvite400, type ResendInvite403, type ResendInvite404, type ResendInvite422, type ReverifyOrganizationDomain403, type ReverifyOrganizationDomain404, type RevokeAllSessions200, type RevokeAllSessions400, type RevokeAllSessions403, type RevokeAllSessionsRequest, type RevokeInvite200, type RevokeInvite400, type RevokeInvite403, type RevokeInvite404, type RevokeSession200, type RevokeSession400, type RevokeSession403, type Roles403, type Roles404, type RolesAndConfig403, type RolesAndConfig404, type RolesAndConfigResponse, SamlSessionState, type SendVerification400, type SendVerification403, type SendVerificationResponse, type Sessions403, type Settings403, type SettingsResponse, type SsoConnection, type SsoConnectionSessionJSON, SsoConnectionSessionJSONState, type UpdateMe400, type UpdateMe403, type UpdateMeBody, type UpdateMember200, type UpdateMember400, type UpdateMember403, type UpdateMember404, type UpdateMember422, type UpdateMemberBody, type UpdatePassword201, type UpdatePassword400, type UpdatePassword403, type UpdatePasswordRequest, type Verify400, type Verify403, type VerifyPasskey200, type VerifyPasskey400, type VerifyPasskey403, type VerifyPasskeyRequest, type VerifyPasskeyRequestResponse, type VerifyRequest, type VerifyResponse, type VerifyTotpFactor200, type VerifyTotpFactor400, type VerifyTotpFactor403, type VerifyTotpFactorRequest, type X509CertificateJSON, authenticationInformation, type authenticationInformationResponse, type authenticationInformationResponse200, type authenticationInformationResponse403, type authenticationInformationResponseError, type authenticationInformationResponseSuccess, createOrganizationApiKey, type createOrganizationApiKeyResponse, type createOrganizationApiKeyResponse201, type createOrganizationApiKeyResponse400, type createOrganizationApiKeyResponse403, type createOrganizationApiKeyResponse404, type createOrganizationApiKeyResponse422, type createOrganizationApiKeyResponseError, type createOrganizationApiKeyResponseSuccess, createPassword, type createPasswordResponse, type createPasswordResponse201, type createPasswordResponse400, type createPasswordResponse403, type createPasswordResponseError, type createPasswordResponseSuccess, createTotpFactor, type createTotpFactorResponse, type createTotpFactorResponse201, type createTotpFactorResponse400, type createTotpFactorResponse403, type createTotpFactorResponseError, type createTotpFactorResponseSuccess, deleteDataInstallation, type deleteDataInstallationResponse, type deleteDataInstallationResponse200, type deleteDataInstallationResponse403, type deleteDataInstallationResponse404, type deleteDataInstallationResponseError, type deleteDataInstallationResponseSuccess, deleteOrganizationApiKey, type deleteOrganizationApiKeyResponse, type deleteOrganizationApiKeyResponse200, type deleteOrganizationApiKeyResponse403, type deleteOrganizationApiKeyResponse404, type deleteOrganizationApiKeyResponseError, type deleteOrganizationApiKeyResponseSuccess, deleteOrganizationDomain, type deleteOrganizationDomainResponse, type deleteOrganizationDomainResponse200, type deleteOrganizationDomainResponse403, type deleteOrganizationDomainResponse404, type deleteOrganizationDomainResponseError, type deleteOrganizationDomainResponseSuccess, deletePasskey, type deletePasskeyResponse, type deletePasskeyResponse200, type deletePasskeyResponse400, type deletePasskeyResponse403, type deletePasskeyResponseError, type deletePasskeyResponseSuccess, deleteTotpFactors, type deleteTotpFactorsResponse, type deleteTotpFactorsResponse200, type deleteTotpFactorsResponse400, type deleteTotpFactorsResponse403, type deleteTotpFactorsResponseError, type deleteTotpFactorsResponseSuccess, generateAdminPortalLink, type generateAdminPortalLinkResponse, type generateAdminPortalLinkResponse201, type generateAdminPortalLinkResponse403, type generateAdminPortalLinkResponse404, type generateAdminPortalLinkResponse500, type generateAdminPortalLinkResponseError, type generateAdminPortalLinkResponseSuccess, getAuditLogStream, type getAuditLogStreamResponse, type getAuditLogStreamResponse200, type getAuditLogStreamResponse403, type getAuditLogStreamResponseError, type getAuditLogStreamResponseSuccess, getAuthenticationInformationUrl, getCreateOrganizationApiKeyUrl, getCreatePasswordUrl, getCreateTotpFactorUrl, getDataInstallationAuthorizationStatus, type getDataInstallationAuthorizationStatusResponse, type getDataInstallationAuthorizationStatusResponse200, type getDataInstallationAuthorizationStatusResponse400, type getDataInstallationAuthorizationStatusResponse403, type getDataInstallationAuthorizationStatusResponse404, type getDataInstallationAuthorizationStatusResponseError, type getDataInstallationAuthorizationStatusResponseSuccess, getDataIntegrationAuthorizeUrl, type getDataIntegrationAuthorizeUrlResponse, type getDataIntegrationAuthorizeUrlResponse200, type getDataIntegrationAuthorizeUrlResponse400, type getDataIntegrationAuthorizeUrlResponse403, type getDataIntegrationAuthorizeUrlResponse404, type getDataIntegrationAuthorizeUrlResponseError, type getDataIntegrationAuthorizeUrlResponseSuccess, getDeleteDataInstallationUrl, getDeleteOrganizationApiKeyUrl, getDeleteOrganizationDomainUrl, getDeletePasskeyUrl, getDeleteTotpFactorsUrl, getDirectory, type getDirectoryResponse, type getDirectoryResponse200, type getDirectoryResponse403, type getDirectoryResponse404, type getDirectoryResponseError, type getDirectoryResponseSuccess, getGenerateAdminPortalLinkUrl, getGetAuditLogStreamUrl, getGetDataInstallationAuthorizationStatusUrl, getGetDataIntegrationAuthorizeUrlUrl, getGetDirectoryUrl, getInviteMemberUrl, getListDirectoriesUrl, getListOrganizationApiKeyPermissionsUrl, getListOrganizationApiKeysUrl, getListOrganizationDomainsUrl, getListSsoConnectionsUrl, getMeUrl, getMembersUrl, getMyDataIntegrationsUrl, getOrganizationsUrl, getRegisterPasskeyUrl, getRemoveMemberUrl, getResendInviteUrl, getReverifyOrganizationDomainUrl, getRevokeAllSessionsUrl, getRevokeInviteUrl, getRevokeSessionUrl, getRolesAndConfigUrl, getRolesUrl, getSendVerificationUrl, getSessionsUrl, getSettingsUrl, getUpdateMeUrl, getUpdateMemberUrl, getUpdatePasswordUrl, getVerifyPasskeyUrl, getVerifyTotpFactorUrl, getVerifyUrl, inviteMember, type inviteMemberResponse, type inviteMemberResponse201, type inviteMemberResponse400, type inviteMemberResponse403, type inviteMemberResponse404, type inviteMemberResponseError, type inviteMemberResponseSuccess, listDirectories, type listDirectoriesResponse, type listDirectoriesResponse200, type listDirectoriesResponse403, type listDirectoriesResponse404, type listDirectoriesResponseError, type listDirectoriesResponseSuccess, listOrganizationApiKeyPermissions, type listOrganizationApiKeyPermissionsResponse, type listOrganizationApiKeyPermissionsResponse200, type listOrganizationApiKeyPermissionsResponse400, type listOrganizationApiKeyPermissionsResponse403, type listOrganizationApiKeyPermissionsResponseError, type listOrganizationApiKeyPermissionsResponseSuccess, listOrganizationApiKeys, type listOrganizationApiKeysResponse, type listOrganizationApiKeysResponse200, type listOrganizationApiKeysResponse400, type listOrganizationApiKeysResponse403, type listOrganizationApiKeysResponseError, type listOrganizationApiKeysResponseSuccess, listOrganizationDomains, type listOrganizationDomainsResponse, type listOrganizationDomainsResponse200, type listOrganizationDomainsResponse403, type listOrganizationDomainsResponse404, type listOrganizationDomainsResponseError, type listOrganizationDomainsResponseSuccess, listSsoConnections, type listSsoConnectionsResponse, type listSsoConnectionsResponse200, type listSsoConnectionsResponseSuccess, me, type meResponse, type meResponse200, type meResponse403, type meResponseError, type meResponseSuccess, members, type membersResponse, type membersResponse200, type membersResponse403, type membersResponse404, type membersResponseError, type membersResponseSuccess, myDataIntegrations, type myDataIntegrationsResponse, type myDataIntegrationsResponse200, type myDataIntegrationsResponse403, type myDataIntegrationsResponseError, type myDataIntegrationsResponseSuccess, organizations, type organizationsResponse, type organizationsResponse200, type organizationsResponse403, type organizationsResponse404, type organizationsResponseError, type organizationsResponseSuccess, registerPasskey, type registerPasskeyResponse, type registerPasskeyResponse201, type registerPasskeyResponse400, type registerPasskeyResponse403, type registerPasskeyResponseError, type registerPasskeyResponseSuccess, removeMember, type removeMemberResponse, type removeMemberResponse200, type removeMemberResponse400, type removeMemberResponse403, type removeMemberResponse404, type removeMemberResponseError, type removeMemberResponseSuccess, resendInvite, type resendInviteResponse, type resendInviteResponse201, type resendInviteResponse400, type resendInviteResponse403, type resendInviteResponse404, type resendInviteResponse422, type resendInviteResponseError, type resendInviteResponseSuccess, reverifyOrganizationDomain, type reverifyOrganizationDomainResponse, type reverifyOrganizationDomainResponse200, type reverifyOrganizationDomainResponse403, type reverifyOrganizationDomainResponse404, type reverifyOrganizationDomainResponseError, type reverifyOrganizationDomainResponseSuccess, revokeAllSessions, type revokeAllSessionsResponse, type revokeAllSessionsResponse200, type revokeAllSessionsResponse400, type revokeAllSessionsResponse403, type revokeAllSessionsResponseError, type revokeAllSessionsResponseSuccess, revokeInvite, type revokeInviteResponse, type revokeInviteResponse200, type revokeInviteResponse400, type revokeInviteResponse403, type revokeInviteResponse404, type revokeInviteResponseError, type revokeInviteResponseSuccess, revokeSession, type revokeSessionResponse, type revokeSessionResponse200, type revokeSessionResponse400, type revokeSessionResponse403, type revokeSessionResponseError, type revokeSessionResponseSuccess, roles, rolesAndConfig, type rolesAndConfigResponse, type rolesAndConfigResponse200, type rolesAndConfigResponse403, type rolesAndConfigResponse404, type rolesAndConfigResponseError, type rolesAndConfigResponseSuccess, type rolesResponse, type rolesResponse200, type rolesResponse403, type rolesResponse404, type rolesResponseError, type rolesResponseSuccess, sendVerification, type sendVerificationResponse, type sendVerificationResponse200, type sendVerificationResponse400, type sendVerificationResponse403, type sendVerificationResponseError, type sendVerificationResponseSuccess, sessions, type sessionsResponse, type sessionsResponse200, type sessionsResponse403, type sessionsResponseError, type sessionsResponseSuccess, settings, type settingsResponse, type settingsResponse200, type settingsResponse403, type settingsResponseError, type settingsResponseSuccess, updateMe, type updateMeResponse, type updateMeResponse200, type updateMeResponse400, type updateMeResponse403, type updateMeResponseError, type updateMeResponseSuccess, updateMember, type updateMemberResponse, type updateMemberResponse200, type updateMemberResponse400, type updateMemberResponse403, type updateMemberResponse404, type updateMemberResponse422, type updateMemberResponseError, type updateMemberResponseSuccess, updatePassword, type updatePasswordResponse, type updatePasswordResponse201, type updatePasswordResponse400, type updatePasswordResponse403, type updatePasswordResponseError, type updatePasswordResponseSuccess, verify, verifyPasskey, type verifyPasskeyResponse, type verifyPasskeyResponse200, type verifyPasskeyResponse400, type verifyPasskeyResponse403, type verifyPasskeyResponseError, type verifyPasskeyResponseSuccess, type verifyResponse, type verifyResponse200, type verifyResponse400, type verifyResponse403, type verifyResponseError, type verifyResponseSuccess, verifyTotpFactor, type verifyTotpFactorResponse, type verifyTotpFactorResponse200, type verifyTotpFactorResponse400, type verifyTotpFactorResponse403, type verifyTotpFactorResponseError, type verifyTotpFactorResponseSuccess };
|