-
Notifications
You must be signed in to change notification settings - Fork 460
Expand file tree
/
Copy pathUserApi.ts
More file actions
554 lines (471 loc) · 16.3 KB
/
Copy pathUserApi.ts
File metadata and controls
554 lines (471 loc) · 16.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
import type { ClerkPaginationRequest, OAuthProvider, OrganizationInvitationStatus } from '@clerk/shared/types';
import { runtime } from '../../runtime';
import { joinPaths } from '../../util/path';
import { deprecated } from '../../util/shared';
import type {
DeletedObject,
OauthAccessToken,
OrganizationInvitation,
OrganizationMembership,
User,
} from '../resources';
import type { PaginatedResourceResponse } from '../resources/Deserializer';
import { AbstractAPI } from './AbstractApi';
import type { WithSign } from './util-types';
const basePath = '/users';
type UserCountParams = {
emailAddress?: string[];
phoneNumber?: string[];
username?: string[];
web3Wallet?: string[];
query?: string;
userId?: string[];
externalId?: string[];
};
type UserListParams = ClerkPaginationRequest<
UserCountParams & {
orderBy?: WithSign<
| 'created_at'
| 'updated_at'
| 'email_address'
| 'web3wallet'
| 'first_name'
| 'last_name'
| 'phone_number'
| 'username'
| 'last_active_at'
| 'last_sign_in_at'
>;
/**
* @deprecated Use `lastActiveAtAfter` instead. This parameter will be removed in a future version.
*/
last_active_at_since?: number;
lastActiveAtBefore?: number;
lastActiveAtAfter?: number;
createdAtBefore?: number;
createdAtAfter?: number;
lastSignInAtAfter?: number;
lastSignInAtBefore?: number;
organizationId?: string[];
}
>;
type UserMetadataParams = {
publicMetadata?: UserPublicMetadata;
privateMetadata?: UserPrivateMetadata;
unsafeMetadata?: UserUnsafeMetadata;
};
type PasswordHasher =
| 'argon2i'
| 'argon2id'
| 'awscognito'
| 'bcrypt'
| 'bcrypt_sha256_django'
| 'md5'
| 'pbkdf2_sha256'
| 'pbkdf2_sha256_django'
| 'pbkdf2_sha1'
| 'phpass'
| 'scrypt_firebase'
| 'scrypt_werkzeug'
| 'sha256'
| 'md5_phpass'
| 'ldap_ssha';
type UserPasswordHashingParams = {
passwordDigest: string;
passwordHasher: PasswordHasher;
};
type CreateUserParams = {
externalId?: string;
emailAddress?: string[];
phoneNumber?: string[];
username?: string;
password?: string;
firstName?: string;
lastName?: string;
/** The locale of the user in BCP-47 format. */
locale?: string;
skipPasswordChecks?: boolean;
skipPasswordRequirement?: boolean;
skipLegalChecks?: boolean;
legalAcceptedAt?: Date;
totpSecret?: string;
backupCodes?: string[];
createdAt?: Date;
} & UserMetadataParams &
(UserPasswordHashingParams | object);
type UpdateUserParams = {
/** The first name to assign to the user. */
firstName?: string;
/** The last name of the user. */
lastName?: string;
/** The username to give to the user. It must be unique across your instance. */
username?: string;
/** The plaintext password to give the user. Must be at least 8 characters long, and can not be in any list of hacked passwords. */
password?: string;
/** Set it to true if you're updating the user's password and want to skip any password policy settings check. This parameter can only be used when providing a password. */
skipPasswordChecks?: boolean;
/** Set to true to sign out the user from all their active sessions once their password is updated. This parameter can only be used when providing a password. */
signOutOfOtherSessions?: boolean;
/** The ID of the email address to set as primary. It must be verified, and present on the current user. */
primaryEmailAddressID?: string;
/** If set to true, the user will be notified that their primary email address has changed. By default, no notification is sent. */
notifyPrimaryEmailAddressChanged?: boolean;
/** The ID of the phone number to set as primary. It must be verified, and present on the current user. */
primaryPhoneNumberID?: string;
/** The ID of the web3 wallets to set as primary. It must be verified, and present on the current user. */
primaryWeb3WalletID?: string;
/** The ID of the image to set as the user's profile image */
profileImageID?: string;
/**
* In case TOTP is configured on the instance, you can provide the secret to enable it on the specific user without the need to reset it.
* Please note that currently the supported options are:
* - Period: 30 seconds
* - Code length: 6 digits
* - Algorithm: SHA1
*/
totpSecret?: string;
/** If Backup Codes are configured on the instance, you can provide them to enable it on the specific user without the need to reset them. You must provide the backup codes in plain format or the corresponding bcrypt digest. */
backupCodes?: string[];
/** The ID of the user as used in your external systems or your previous authentication solution. Must be unique across your instance. */
externalId?: string;
/** A custom timestamp denoting when the user signed up to the application, specified in RFC3339 format (e.g. 2012-10-20T07:15:20.902Z). */
createdAt?: Date;
/** When set to true all legal checks are skipped. It is not recommended to skip legal checks unless you are migrating a user to Clerk. */
skipLegalChecks?: boolean;
/** A custom timestamp denoting when the user accepted legal requirements, specified in RFC3339 format (e.g. 2012-10-20T07:15:20.902Z). */
legalAcceptedAt?: Date;
/** The locale of the user in BCP-47 format. */
locale?: string;
/** If true, the user can delete themselves with the Frontend API. */
deleteSelfEnabled?: boolean;
/** If true, the user can create Organizations with the Frontend API. */
createOrganizationEnabled?: boolean;
/** The maximum number of Organizations the user can create. 0 means unlimited. */
createOrganizationsLimit?: number;
/**
* Metadata visible to your Frontend and Backend APIs.
*
* @deprecated Updating metadata via `updateUser` is deprecated. Use
* `updateUserMetadata` for partial updates (deep merge) or
* `replaceUserMetadata` for full replacement.
*/
publicMetadata?: UserPublicMetadata;
/**
* Metadata visible only to your Backend API.
*
* @deprecated Updating metadata via `updateUser` is deprecated. Use
* `updateUserMetadata` for partial updates (deep merge) or
* `replaceUserMetadata` for full replacement.
*/
privateMetadata?: UserPrivateMetadata;
/**
* Metadata writeable from both the Frontend and Backend APIs.
*
* @deprecated Updating metadata via `updateUser` is deprecated. Use
* `updateUserMetadata` for partial updates (deep merge) or
* `replaceUserMetadata` for full replacement.
*/
unsafeMetadata?: UserUnsafeMetadata;
} & (UserPasswordHashingParams | object);
type GetOrganizationMembershipListParams = ClerkPaginationRequest<{
userId: string;
}>;
type GetOrganizationInvitationListParams = ClerkPaginationRequest<{
userId: string;
status?: OrganizationInvitationStatus;
}>;
type VerifyPasswordParams = {
userId: string;
password: string;
};
type VerifyTOTPParams = {
userId: string;
code: string;
};
type DeleteUserPasskeyParams = {
userId: string;
passkeyIdentificationId: string;
};
type DeleteWeb3WalletParams = {
userId: string;
web3WalletIdentificationId: string;
};
type DeleteUserExternalAccountParams = {
userId: string;
externalAccountId: string;
};
type SetPasswordCompromisedParams = {
revokeAllSessions?: boolean;
};
type UserID = {
userId: string;
};
export class UserAPI extends AbstractAPI {
public async getUserList(params: UserListParams = {}) {
const { limit, offset, orderBy, ...userCountParams } = params;
// TODO(dimkl): Temporary change to populate totalCount using a 2nd BAPI call to /users/count endpoint
// until we update the /users endpoint to be paginated in a next BAPI version.
// In some edge cases the data.length != totalCount due to a creation of a user between the 2 api responses
const [data, totalCount] = await Promise.all([
this.request<User[]>({
method: 'GET',
path: basePath,
queryParams: params,
}),
this.getCount(userCountParams),
]);
return { data, totalCount } as PaginatedResourceResponse<User[]>;
}
public async getUser(userId: string) {
this.requireId(userId);
return this.request<User>({
method: 'GET',
path: joinPaths(basePath, userId),
});
}
public async createUser(params: CreateUserParams) {
return this.request<User>({
method: 'POST',
path: basePath,
bodyParams: params,
});
}
public async updateUser(userId: string, params: UpdateUserParams = {}) {
this.requireId(userId);
const { publicMetadata, privateMetadata, unsafeMetadata, ...rest } = params as UpdateUserParams &
UserMetadataParams;
const hasMetadata = publicMetadata !== undefined || privateMetadata !== undefined || unsafeMetadata !== undefined;
const hasRest = Object.keys(rest).length > 0;
if (hasMetadata) {
deprecated(
'updateUser(userId, { publicMetadata | privateMetadata | unsafeMetadata })',
'Use updateUserMetadata for partial updates (merge) or replaceUserMetadata for full replacement.',
);
}
if (!hasMetadata) {
return this.request<User>({
method: 'PATCH',
path: joinPaths(basePath, userId),
bodyParams: rest,
});
}
if (hasRest) {
await this.request<User>({
method: 'PATCH',
path: joinPaths(basePath, userId),
bodyParams: rest,
});
}
return this.request<User>({
method: 'PUT',
path: joinPaths(basePath, userId, 'metadata'),
bodyParams: { publicMetadata, privateMetadata, unsafeMetadata },
});
}
public async updateUserProfileImage(userId: string, params: { file: Blob | File }) {
this.requireId(userId);
const formData = new runtime.FormData();
formData.append('file', params?.file);
return this.request<User>({
method: 'POST',
path: joinPaths(basePath, userId, 'profile_image'),
formData,
});
}
public async updateUserMetadata(userId: string, params: UserMetadataParams) {
this.requireId(userId);
return this.request<User>({
method: 'PATCH',
path: joinPaths(basePath, userId, 'metadata'),
bodyParams: params,
});
}
/**
* Replace a user's metadata. Supplied fields are overwritten in full; fields
* omitted from `params` are left unchanged. Prefer `updateUserMetadata` for
* partial updates with deep-merge semantics.
*/
public async replaceUserMetadata(userId: string, params: UserMetadataParams) {
this.requireId(userId);
return this.request<User>({
method: 'PUT',
path: joinPaths(basePath, userId, 'metadata'),
bodyParams: params,
});
}
public async deleteUser(userId: string) {
this.requireId(userId);
return this.request<User>({
method: 'DELETE',
path: joinPaths(basePath, userId),
});
}
public async getCount(params: UserCountParams = {}) {
return this.request<number>({
method: 'GET',
path: joinPaths(basePath, 'count'),
queryParams: params,
});
}
/** @deprecated Use `getUserOauthAccessToken` without the `oauth_` provider prefix . */
public async getUserOauthAccessToken(
userId: string,
provider: `oauth_${OAuthProvider}`,
): Promise<PaginatedResourceResponse<OauthAccessToken[]>>;
public async getUserOauthAccessToken(
userId: string,
provider: OAuthProvider,
): Promise<PaginatedResourceResponse<OauthAccessToken[]>>;
public async getUserOauthAccessToken(userId: string, provider: `oauth_${OAuthProvider}` | OAuthProvider) {
this.requireId(userId);
const hasPrefix = provider.startsWith('oauth_');
const _provider = hasPrefix ? provider : `oauth_${provider}`;
if (hasPrefix) {
deprecated(
'getUserOauthAccessToken(userId, provider)',
'Remove the `oauth_` prefix from the `provider` argument.',
);
}
return this.request<PaginatedResourceResponse<OauthAccessToken[]>>({
method: 'GET',
path: joinPaths(basePath, userId, 'oauth_access_tokens', _provider),
queryParams: { paginated: true },
});
}
public async disableUserMFA(userId: string) {
this.requireId(userId);
return this.request<UserID>({
method: 'DELETE',
path: joinPaths(basePath, userId, 'mfa'),
});
}
public async getOrganizationMembershipList(params: GetOrganizationMembershipListParams) {
const { userId, limit, offset } = params;
this.requireId(userId);
return this.request<PaginatedResourceResponse<OrganizationMembership[]>>({
method: 'GET',
path: joinPaths(basePath, userId, 'organization_memberships'),
queryParams: { limit, offset },
});
}
public async getOrganizationInvitationList(params: GetOrganizationInvitationListParams) {
const { userId, ...queryParams } = params;
this.requireId(userId);
return this.request<PaginatedResourceResponse<OrganizationInvitation[]>>({
method: 'GET',
path: joinPaths(basePath, userId, 'organization_invitations'),
queryParams,
});
}
public async verifyPassword(params: VerifyPasswordParams) {
const { userId, password } = params;
this.requireId(userId);
return this.request<{ verified: true }>({
method: 'POST',
path: joinPaths(basePath, userId, 'verify_password'),
bodyParams: { password },
});
}
public async verifyTOTP(params: VerifyTOTPParams) {
const { userId, code } = params;
this.requireId(userId);
return this.request<{ verified: true; code_type: 'totp' }>({
method: 'POST',
path: joinPaths(basePath, userId, 'verify_totp'),
bodyParams: { code },
});
}
public async banUser(userId: string) {
this.requireId(userId);
return this.request<User>({
method: 'POST',
path: joinPaths(basePath, userId, 'ban'),
});
}
public async unbanUser(userId: string) {
this.requireId(userId);
return this.request<User>({
method: 'POST',
path: joinPaths(basePath, userId, 'unban'),
});
}
public async lockUser(userId: string) {
this.requireId(userId);
return this.request<User>({
method: 'POST',
path: joinPaths(basePath, userId, 'lock'),
});
}
public async unlockUser(userId: string) {
this.requireId(userId);
return this.request<User>({
method: 'POST',
path: joinPaths(basePath, userId, 'unlock'),
});
}
public async deleteUserProfileImage(userId: string) {
this.requireId(userId);
return this.request<User>({
method: 'DELETE',
path: joinPaths(basePath, userId, 'profile_image'),
});
}
public async deleteUserPasskey(params: DeleteUserPasskeyParams) {
this.requireId(params.userId);
this.requireId(params.passkeyIdentificationId);
return this.request<DeletedObject>({
method: 'DELETE',
path: joinPaths(basePath, params.userId, 'passkeys', params.passkeyIdentificationId),
});
}
public async deleteUserWeb3Wallet(params: DeleteWeb3WalletParams) {
this.requireId(params.userId);
this.requireId(params.web3WalletIdentificationId);
return this.request<DeletedObject>({
method: 'DELETE',
path: joinPaths(basePath, params.userId, 'web3_wallets', params.web3WalletIdentificationId),
});
}
public async deleteUserExternalAccount(params: DeleteUserExternalAccountParams) {
this.requireId(params.userId);
this.requireId(params.externalAccountId);
return this.request<DeletedObject>({
method: 'DELETE',
path: joinPaths(basePath, params.userId, 'external_accounts', params.externalAccountId),
});
}
public async deleteUserBackupCodes(userId: string) {
this.requireId(userId);
return this.request<UserID>({
method: 'DELETE',
path: joinPaths(basePath, userId, 'backup_code'),
});
}
public async deleteUserTOTP(userId: string) {
this.requireId(userId);
return this.request<UserID>({
method: 'DELETE',
path: joinPaths(basePath, userId, 'totp'),
});
}
public async setPasswordCompromised(
userId: string,
params: SetPasswordCompromisedParams = {
revokeAllSessions: false,
},
) {
this.requireId(userId);
return this.request<User>({
method: 'POST',
path: joinPaths(basePath, userId, 'password', 'set_compromised'),
bodyParams: params,
});
}
public async unsetPasswordCompromised(userId: string) {
this.requireId(userId);
return this.request<User>({
method: 'POST',
path: joinPaths(basePath, userId, 'password', 'unset_compromised'),
});
}
}