Skip to content

Commit d9ebc11

Browse files
committed
Bump bundle limit
1 parent ad95b50 commit d9ebc11

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

packages/clerk-js/bundlewatch.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"files": [
33
{ "path": "./dist/clerk.js", "maxSize": "543KB" },
4-
{ "path": "./dist/clerk.browser.js", "maxSize": "68KB" },
4+
{ "path": "./dist/clerk.browser.js", "maxSize": "70KB" },
55
{ "path": "./dist/clerk.legacy.browser.js", "maxSize": "110KB" },
66
{ "path": "./dist/clerk.no-rhc.js", "maxSize": "309KB" },
7-
{ "path": "./dist/clerk.native.js", "maxSize": "68KB" },
7+
{ "path": "./dist/clerk.native.js", "maxSize": "70KB" },
88
{ "path": "./dist/vendors*.js", "maxSize": "7KB" },
99
{ "path": "./dist/coinbase*.js", "maxSize": "36KB" },
1010
{ "path": "./dist/base-account-sdk*.js", "maxSize": "203KB" },

packages/clerk-js/src/core/resources/User.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import { getFullName } from '@clerk/shared/internal/clerk-js/user';
2-
import { deepCamelToSnake } from '@clerk/shared/underscore';
32
import type {
43
BackupCodeJSON,
54
BackupCodeResource,
5+
ClerkPaginatedResponse,
66
CreateEmailAddressParams,
77
CreateExternalAccountParams,
8+
CreateMeEnterpriseConnectionParams,
89
CreatePhoneNumberParams,
910
CreateWeb3WalletParams,
1011
DeletedObjectJSON,
@@ -13,18 +14,15 @@ import type {
1314
EnterpriseAccountResource,
1415
EnterpriseConnectionJSON,
1516
EnterpriseConnectionResource,
16-
ExternalAccountJSON,
17-
ExternalAccountResource,
18-
ClerkPaginatedResponse,
19-
CreateMeEnterpriseConnectionParams,
2017
EnterpriseConnectionTestRunInitJSON,
21-
EnterpriseConnectionTestRunJSON,
22-
EnterpriseConnectionTestRunsPaginatedJSON,
2318
EnterpriseConnectionTestRunInitResource,
19+
EnterpriseConnectionTestRunJSON,
2420
EnterpriseConnectionTestRunResource,
25-
GetEnterpriseConnectionTestRunsParams,
21+
EnterpriseConnectionTestRunsPaginatedJSON,
22+
ExternalAccountJSON,
23+
ExternalAccountResource,
2624
GetEnterpriseConnectionsParams,
27-
UpdateMeEnterpriseConnectionParams,
25+
GetEnterpriseConnectionTestRunsParams,
2826
GetOrganizationMemberships,
2927
GetUserOrganizationInvitationsParams,
3028
GetUserOrganizationSuggestionsParams,
@@ -36,6 +34,7 @@ import type {
3634
SetProfileImageParams,
3735
TOTPJSON,
3836
TOTPResource,
37+
UpdateMeEnterpriseConnectionParams,
3938
UpdateUserParams,
4039
UpdateUserPasswordParams,
4140
UserJSON,
@@ -44,9 +43,10 @@ import type {
4443
VerifyTOTPParams,
4544
Web3WalletResource,
4645
} from '@clerk/shared/types';
46+
import { deepCamelToSnake } from '@clerk/shared/underscore';
4747

48-
import { unixEpochToDate } from '../../utils/date';
4948
import { convertPageToOffsetSearchParams } from '../../utils/convertPageToOffsetSearchParams';
49+
import { unixEpochToDate } from '../../utils/date';
5050
import { normalizeUnsafeMetadata } from '../../utils/resourceParams';
5151
import { eventBus, events } from '../events';
5252
import { addPaymentMethod, getPaymentMethods, initializePaymentMethod } from '../modules/billing';

0 commit comments

Comments
 (0)