@hexclave/shared 1.0.34 → 1.0.36
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/dist/ai/unified-prompts/reminders.js +1 -1
- package/dist/ai/unified-prompts/reminders.js.map +1 -1
- package/dist/config/schema.d.ts +106 -106
- package/dist/esm/ai/unified-prompts/reminders.js +1 -1
- package/dist/esm/ai/unified-prompts/reminders.js.map +1 -1
- package/dist/esm/config/schema.d.ts +106 -106
- package/dist/esm/helpers/init-prompt.js +1 -1
- package/dist/esm/helpers/init-prompt.js.map +1 -1
- package/dist/esm/interface/admin-metrics.d.ts +7 -7
- package/dist/esm/interface/conversations.d.ts +3 -3
- package/dist/esm/interface/crud/current-user.d.ts +10 -10
- package/dist/esm/interface/crud/email-outbox.d.ts +64 -64
- package/dist/esm/interface/crud/products.d.ts +12 -12
- package/dist/esm/interface/crud/products.d.ts.map +1 -1
- package/dist/esm/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/esm/interface/crud/projects.d.ts +7 -7
- package/dist/esm/interface/crud/team-member-profiles.d.ts +20 -20
- package/dist/esm/interface/crud/transactions.d.ts +13 -13
- package/dist/esm/interface/crud/transactions.d.ts.map +1 -1
- package/dist/esm/interface/crud/users.d.ts +14 -14
- package/dist/esm/interface/plan-usage.d.ts +2 -2
- package/dist/esm/interface/webhooks.d.ts +2 -2
- package/dist/esm/known-errors.d.ts +7 -7
- package/dist/esm/schema-fields.d.ts +16 -16
- package/dist/esm/sessions.d.ts +1 -1
- package/dist/helpers/init-prompt.js +1 -1
- package/dist/helpers/init-prompt.js.map +1 -1
- package/dist/interface/admin-metrics.d.ts +7 -7
- package/dist/interface/conversations.d.ts +3 -3
- package/dist/interface/crud/current-user.d.ts +10 -10
- package/dist/interface/crud/email-outbox.d.ts +64 -64
- package/dist/interface/crud/products.d.ts +12 -12
- package/dist/interface/crud/products.d.ts.map +1 -1
- package/dist/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/interface/crud/projects.d.ts +7 -7
- package/dist/interface/crud/team-member-profiles.d.ts +20 -20
- package/dist/interface/crud/transactions.d.ts +13 -13
- package/dist/interface/crud/transactions.d.ts.map +1 -1
- package/dist/interface/crud/users.d.ts +14 -14
- package/dist/interface/plan-usage.d.ts +2 -2
- package/dist/interface/webhooks.d.ts +2 -2
- package/dist/known-errors.d.ts +7 -7
- package/dist/schema-fields.d.ts +16 -16
- package/dist/sessions.d.ts +1 -1
- package/package.json +1 -1
- package/src/ai/unified-prompts/reminders.ts +1 -1
- package/src/helpers/init-prompt.ts +1 -1
|
@@ -113,7 +113,7 @@ declare const moneyAmountSchema: (currency: Currency) => yup$1.StringSchema<stri
|
|
|
113
113
|
*/
|
|
114
114
|
declare const strictEmailSchema: (message: string | undefined) => yup$1.StringSchema<string | undefined, yup$1.AnyObject, undefined, "">;
|
|
115
115
|
declare const emailSchema: yup$1.StringSchema<string | undefined, yup$1.AnyObject, undefined, "">;
|
|
116
|
-
declare const clientOrHigherAuthTypeSchema: yup$1.StringSchema<"
|
|
116
|
+
declare const clientOrHigherAuthTypeSchema: yup$1.StringSchema<"client" | "server" | "admin", yup$1.AnyObject, undefined, "">;
|
|
117
117
|
declare const serverOrHigherAuthTypeSchema: yup$1.StringSchema<"server" | "admin", yup$1.AnyObject, undefined, "">;
|
|
118
118
|
declare const adminAuthTypeSchema: yup$1.StringSchema<"admin", yup$1.AnyObject, undefined, "">;
|
|
119
119
|
declare const projectIdSchema: yup$1.StringSchema<string | undefined, yup$1.AnyObject, undefined, "">;
|
|
@@ -174,7 +174,7 @@ declare const customDashboardsSchema: yup$1.MixedSchema<Record<string, {
|
|
|
174
174
|
displayName: string;
|
|
175
175
|
tsxSource: string;
|
|
176
176
|
}>, yup$1.AnyObject, undefined, "">;
|
|
177
|
-
declare const customerTypeSchema: yup$1.StringSchema<"
|
|
177
|
+
declare const customerTypeSchema: yup$1.StringSchema<"team" | "user" | "custom" | undefined, yup$1.AnyObject, undefined, "">;
|
|
178
178
|
/**
|
|
179
179
|
* Schema for a single product price. Each currency field (USD, EUR, etc.) is a decimal string
|
|
180
180
|
* like `"9.99"` or `"1000"` — never cent integers. See `MoneyAmount` for the exact format.
|
|
@@ -203,9 +203,6 @@ declare const productPriceSchema: yup$1.ObjectSchema<{
|
|
|
203
203
|
CAD: undefined;
|
|
204
204
|
}, "">;
|
|
205
205
|
declare const pricesSchema: yup$1.MixedSchema<Record<string, {
|
|
206
|
-
interval?: DayInterval | undefined;
|
|
207
|
-
freeTrial?: DayInterval | undefined;
|
|
208
|
-
serverOnly?: boolean | undefined;
|
|
209
206
|
USD?: string | undefined;
|
|
210
207
|
EUR?: string | undefined;
|
|
211
208
|
GBP?: string | undefined;
|
|
@@ -213,19 +210,19 @@ declare const pricesSchema: yup$1.MixedSchema<Record<string, {
|
|
|
213
210
|
INR?: string | undefined;
|
|
214
211
|
AUD?: string | undefined;
|
|
215
212
|
CAD?: string | undefined;
|
|
213
|
+
interval?: DayInterval | undefined;
|
|
214
|
+
serverOnly?: boolean | undefined;
|
|
215
|
+
freeTrial?: DayInterval | undefined;
|
|
216
216
|
}>, yup$1.AnyObject, undefined, "">;
|
|
217
217
|
declare const productSchema: yup$1.ObjectSchema<{
|
|
218
218
|
displayName: string | undefined;
|
|
219
219
|
productLineId: string | undefined;
|
|
220
220
|
isAddOnTo: false | Record<string, true> | undefined;
|
|
221
|
-
customerType: "
|
|
221
|
+
customerType: "team" | "user" | "custom";
|
|
222
222
|
freeTrial: DayInterval | undefined;
|
|
223
223
|
serverOnly: boolean | undefined;
|
|
224
224
|
stackable: boolean | undefined;
|
|
225
225
|
prices: Record<string, {
|
|
226
|
-
interval?: DayInterval | undefined;
|
|
227
|
-
freeTrial?: DayInterval | undefined;
|
|
228
|
-
serverOnly?: boolean | undefined;
|
|
229
226
|
USD?: string | undefined;
|
|
230
227
|
EUR?: string | undefined;
|
|
231
228
|
GBP?: string | undefined;
|
|
@@ -233,6 +230,9 @@ declare const productSchema: yup$1.ObjectSchema<{
|
|
|
233
230
|
INR?: string | undefined;
|
|
234
231
|
AUD?: string | undefined;
|
|
235
232
|
CAD?: string | undefined;
|
|
233
|
+
interval?: DayInterval | undefined;
|
|
234
|
+
serverOnly?: boolean | undefined;
|
|
235
|
+
freeTrial?: DayInterval | undefined;
|
|
236
236
|
}>;
|
|
237
237
|
includedItems: Record<string, {
|
|
238
238
|
repeat?: "never" | DayInterval | undefined;
|
|
@@ -257,14 +257,11 @@ declare const productSchemaWithMetadata: yup$1.ObjectSchema<{
|
|
|
257
257
|
displayName: string | undefined;
|
|
258
258
|
productLineId: string | undefined;
|
|
259
259
|
isAddOnTo: false | Record<string, true> | undefined;
|
|
260
|
-
customerType: "
|
|
260
|
+
customerType: "team" | "user" | "custom";
|
|
261
261
|
freeTrial: DayInterval | undefined;
|
|
262
262
|
serverOnly: boolean | undefined;
|
|
263
263
|
stackable: boolean | undefined;
|
|
264
264
|
prices: Record<string, {
|
|
265
|
-
interval?: DayInterval | undefined;
|
|
266
|
-
freeTrial?: DayInterval | undefined;
|
|
267
|
-
serverOnly?: boolean | undefined;
|
|
268
265
|
USD?: string | undefined;
|
|
269
266
|
EUR?: string | undefined;
|
|
270
267
|
GBP?: string | undefined;
|
|
@@ -272,6 +269,9 @@ declare const productSchemaWithMetadata: yup$1.ObjectSchema<{
|
|
|
272
269
|
INR?: string | undefined;
|
|
273
270
|
AUD?: string | undefined;
|
|
274
271
|
CAD?: string | undefined;
|
|
272
|
+
interval?: DayInterval | undefined;
|
|
273
|
+
serverOnly?: boolean | undefined;
|
|
274
|
+
freeTrial?: DayInterval | undefined;
|
|
275
275
|
}>;
|
|
276
276
|
includedItems: Record<string, {
|
|
277
277
|
repeat?: "never" | DayInterval | undefined;
|
|
@@ -298,12 +298,11 @@ declare const productSchemaWithMetadata: yup$1.ObjectSchema<{
|
|
|
298
298
|
}, "">;
|
|
299
299
|
declare const inlineProductSchema: yup$1.ObjectSchema<{
|
|
300
300
|
display_name: string;
|
|
301
|
-
customer_type: "
|
|
301
|
+
customer_type: "team" | "user" | "custom";
|
|
302
302
|
free_trial: DayInterval | undefined;
|
|
303
303
|
server_only: boolean;
|
|
304
304
|
stackable: boolean;
|
|
305
305
|
prices: Record<string, {
|
|
306
|
-
interval?: DayInterval | undefined;
|
|
307
306
|
USD?: string | undefined;
|
|
308
307
|
EUR?: string | undefined;
|
|
309
308
|
GBP?: string | undefined;
|
|
@@ -311,6 +310,7 @@ declare const inlineProductSchema: yup$1.ObjectSchema<{
|
|
|
311
310
|
INR?: string | undefined;
|
|
312
311
|
AUD?: string | undefined;
|
|
313
312
|
CAD?: string | undefined;
|
|
313
|
+
interval?: DayInterval | undefined;
|
|
314
314
|
free_trial?: DayInterval | undefined;
|
|
315
315
|
}>;
|
|
316
316
|
included_items: Record<string, {
|
|
@@ -469,10 +469,10 @@ declare function yupDefinedWhen<S extends yup$1.AnyObject>(schema: S, triggers:
|
|
|
469
469
|
declare function yupDefinedAndNonEmptyWhen<S extends yup$1.StringSchema>(schema: S, triggers: Record<string, any>): S;
|
|
470
470
|
declare const branchConfigSourceSchema: yup$1.MixedSchema<{
|
|
471
471
|
workflow_path?: string | undefined;
|
|
472
|
-
branch: string;
|
|
473
472
|
type: "pushed-from-github";
|
|
474
473
|
owner: string;
|
|
475
474
|
repo: string;
|
|
475
|
+
branch: string;
|
|
476
476
|
commit_hash: string;
|
|
477
477
|
config_file_path: string;
|
|
478
478
|
} | {
|
package/dist/esm/sessions.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ declare class AccessToken {
|
|
|
10
10
|
get payload(): {
|
|
11
11
|
exp?: number | undefined;
|
|
12
12
|
sub: string;
|
|
13
|
-
name: string | null;
|
|
14
13
|
iat: number;
|
|
15
14
|
iss: string;
|
|
16
15
|
aud: string;
|
|
@@ -18,6 +17,7 @@ declare class AccessToken {
|
|
|
18
17
|
branch_id: string;
|
|
19
18
|
refresh_token_id: string;
|
|
20
19
|
role: "authenticated";
|
|
20
|
+
name: string | null;
|
|
21
21
|
email: string | null;
|
|
22
22
|
email_verified: boolean;
|
|
23
23
|
selected_team_id: string | null;
|
|
@@ -11,7 +11,7 @@ The Hexclave CLI already created or linked this project to a local Hexclave deve
|
|
|
11
11
|
${configPath}
|
|
12
12
|
\`\`\`
|
|
13
13
|
|
|
14
|
-
Do not create or link another Hexclave project. When the SDK setup instructions mention creating \`
|
|
14
|
+
Do not create or link another Hexclave project. When the SDK setup instructions mention creating \`hexclave.config.ts\` or wrapping the dev script with \`hexclave dev --config-file\`, use the config file path above.
|
|
15
15
|
`;
|
|
16
16
|
return `
|
|
17
17
|
The Hexclave CLI already created or linked this project to a hosted Hexclave cloud project and wrote or printed the Hexclave environment variables.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init-prompt.js","names":["aiSetupPrompt"],"sources":["../../src/helpers/init-prompt.ts"],"sourcesContent":["import { aiSetupPrompt } from \"../ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt\";\n\nfunction getCliProjectSetupContext(configPath?: string): string {\n if (configPath != null) {\n return `\nThe Hexclave CLI already created or linked this project to a local Hexclave development environment config file:\n\n\\`\\`\\`text\n${configPath}\n\\`\\`\\`\n\nDo not create or link another Hexclave project. When the SDK setup instructions mention creating \\`
|
|
1
|
+
{"version":3,"file":"init-prompt.js","names":["aiSetupPrompt"],"sources":["../../src/helpers/init-prompt.ts"],"sourcesContent":["import { aiSetupPrompt } from \"../ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt\";\n\nfunction getCliProjectSetupContext(configPath?: string): string {\n if (configPath != null) {\n return `\nThe Hexclave CLI already created or linked this project to a local Hexclave development environment config file:\n\n\\`\\`\\`text\n${configPath}\n\\`\\`\\`\n\nDo not create or link another Hexclave project. When the SDK setup instructions mention creating \\`hexclave.config.ts\\` or wrapping the dev script with \\`hexclave dev --config-file\\`, use the config file path above.\n`;\n }\n\n return `\nThe Hexclave CLI already created or linked this project to a hosted Hexclave cloud project and wrote or printed the Hexclave environment variables.\n\nDo not create or link another Hexclave project. Use the existing environment variables in this workspace. If the variables were printed instead of written because the user declined to append them to an env file, tell the user exactly which variables still need to be added.\n`;\n}\n\nexport const createInitPrompt = (web: boolean, configPath?: string) => `=============================\nHEXCLAVE SETUP INSTRUCTIONS\n=============================\n\nThese instructions describe how to set up Hexclave.\n${web ? `\nFirst of all, use the full setup prompt below as the source of truth. Do not run the Hexclave CLI initializer unless the user explicitly asks for the CLI workflow.\n` : \"\"}\n\n${getCliProjectSetupContext(configPath)}\n\nUse the full setup guide below as the source of truth, with one important CLI-specific adjustment: the \"Setting up the project\" step is already complete. Use that section only to understand how the existing config/env files should connect to the SDK wiring; do not ask the user for project IDs or keys that the CLI already generated or linked.\n\nApply only the sections relevant to this project. For example, do not add Convex, Supabase, or command-line-app authentication unless the existing project already uses that surface or the user explicitly asked for it.\n\n${aiSetupPrompt}\n`;\n"],"mappings":";;;;;AAEA,SAAS,0BAA0B,YAA6B;AAC9D,KAAI,cAAc,KAChB,QAAO;;;;EAIT,WAAW;;;;;AAOX,QAAO;;;;;;AAOT,MAAa,oBAAoB,KAAc,eAAwB;;;;;EAKrE,MAAM;;IAEJ,GAAG;;EAEL,0BAA0B,WAAW,CAAC;;;;;;EAMtCA,+EAAc"}
|
|
@@ -392,8 +392,8 @@ declare const AnalyticsClickmapResponseBodySchema: yup.ObjectSchema<{
|
|
|
392
392
|
kind: "team_user_hour_of_week" | "session_replay_clicks";
|
|
393
393
|
cells: {
|
|
394
394
|
value: number;
|
|
395
|
-
weekday: number;
|
|
396
395
|
hour: number;
|
|
396
|
+
weekday: number;
|
|
397
397
|
}[];
|
|
398
398
|
sampling: number;
|
|
399
399
|
routes: {
|
|
@@ -403,8 +403,8 @@ declare const AnalyticsClickmapResponseBodySchema: yup.ObjectSchema<{
|
|
|
403
403
|
replays: number;
|
|
404
404
|
}[];
|
|
405
405
|
users: {
|
|
406
|
-
id: string;
|
|
407
406
|
display_name: string | null;
|
|
407
|
+
id: string;
|
|
408
408
|
primary_email: string | null;
|
|
409
409
|
profile_image_url: string | null;
|
|
410
410
|
clicks: number;
|
|
@@ -413,9 +413,9 @@ declare const AnalyticsClickmapResponseBodySchema: yup.ObjectSchema<{
|
|
|
413
413
|
}[];
|
|
414
414
|
replays: {
|
|
415
415
|
id: string;
|
|
416
|
+
user_id: string | null;
|
|
416
417
|
clicks: number;
|
|
417
418
|
last_event_at_millis: number;
|
|
418
|
-
user_id: string | null;
|
|
419
419
|
route_path: string | null;
|
|
420
420
|
viewport_width: number | null;
|
|
421
421
|
viewport_height: number | null;
|
|
@@ -443,8 +443,8 @@ declare const AnalyticsClickmapResponseBodySchema: yup.ObjectSchema<{
|
|
|
443
443
|
elements: never[];
|
|
444
444
|
}, "">;
|
|
445
445
|
declare const MetricsActiveUsersByCountrySchema: yup.MixedSchema<Record<string, {
|
|
446
|
-
id: string;
|
|
447
446
|
display_name: string | null;
|
|
447
|
+
id: string;
|
|
448
448
|
primary_email: string | null;
|
|
449
449
|
profile_image_url: string | null;
|
|
450
450
|
signed_up_at_millis: number;
|
|
@@ -471,24 +471,24 @@ declare const MetricsResponseBodySchema: yup.ObjectSchema<{
|
|
|
471
471
|
}[];
|
|
472
472
|
users_by_country: Record<string, number>;
|
|
473
473
|
active_users_by_country: Record<string, {
|
|
474
|
-
id: string;
|
|
475
474
|
display_name: string | null;
|
|
475
|
+
id: string;
|
|
476
476
|
primary_email: string | null;
|
|
477
477
|
profile_image_url: string | null;
|
|
478
478
|
signed_up_at_millis: number;
|
|
479
479
|
last_active_at_millis: number | null;
|
|
480
480
|
}[]>;
|
|
481
481
|
recently_registered: {
|
|
482
|
-
id: string;
|
|
483
482
|
display_name: string | null;
|
|
483
|
+
id: string;
|
|
484
484
|
primary_email: string | null;
|
|
485
485
|
profile_image_url: string | null;
|
|
486
486
|
signed_up_at_millis: number;
|
|
487
487
|
last_active_at_millis: number | null;
|
|
488
488
|
}[];
|
|
489
489
|
recently_active: {
|
|
490
|
-
id: string;
|
|
491
490
|
display_name: string | null;
|
|
491
|
+
id: string;
|
|
492
492
|
primary_email: string | null;
|
|
493
493
|
profile_image_url: string | null;
|
|
494
494
|
signed_up_at_millis: number;
|
|
@@ -173,8 +173,8 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
|
|
|
173
173
|
lastOutboundAt?: string | null | undefined;
|
|
174
174
|
closedAt?: string | null | undefined;
|
|
175
175
|
recordMetadata?: {} | null | undefined;
|
|
176
|
-
priority: "low" | "normal" | "high" | "urgent";
|
|
177
176
|
status: "open" | "pending" | "closed";
|
|
177
|
+
priority: "low" | "normal" | "high" | "urgent";
|
|
178
178
|
subject: string;
|
|
179
179
|
conversationId: string;
|
|
180
180
|
userId: string | null;
|
|
@@ -211,8 +211,8 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
211
211
|
lastOutboundAt?: string | null | undefined;
|
|
212
212
|
closedAt?: string | null | undefined;
|
|
213
213
|
recordMetadata?: {} | null | undefined;
|
|
214
|
-
priority: "low" | "normal" | "high" | "urgent";
|
|
215
214
|
status: "open" | "pending" | "closed";
|
|
215
|
+
priority: "low" | "normal" | "high" | "urgent";
|
|
216
216
|
subject: string;
|
|
217
217
|
conversationId: string;
|
|
218
218
|
userId: string | null;
|
|
@@ -236,9 +236,9 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
messages: {
|
|
239
|
-
priority: "low" | "normal" | "high" | "urgent";
|
|
240
239
|
id: string;
|
|
241
240
|
status: "open" | "pending" | "closed";
|
|
241
|
+
priority: "low" | "normal" | "high" | "urgent";
|
|
242
242
|
subject: string;
|
|
243
243
|
conversationId: string;
|
|
244
244
|
userId: string | null;
|
|
@@ -4,11 +4,10 @@ import * as yup$1 from "yup";
|
|
|
4
4
|
//#region src/interface/crud/current-user.d.ts
|
|
5
5
|
declare const currentUserCrud: CrudSchemaFromOptions<{
|
|
6
6
|
clientReadSchema: yup$1.ObjectSchema<{
|
|
7
|
-
id: string;
|
|
8
7
|
display_name: string | null;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
client_metadata: {} | null;
|
|
9
|
+
client_read_only_metadata: {} | null;
|
|
10
|
+
id: string;
|
|
12
11
|
selected_team_id: string | null;
|
|
13
12
|
is_anonymous: boolean;
|
|
14
13
|
is_restricted: boolean;
|
|
@@ -16,8 +15,9 @@ declare const currentUserCrud: CrudSchemaFromOptions<{
|
|
|
16
15
|
type: "anonymous" | "email_not_verified" | "restricted_by_administrator";
|
|
17
16
|
} | null;
|
|
18
17
|
requires_totp_mfa: boolean;
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
primary_email: string | null;
|
|
19
|
+
profile_image_url: string | null;
|
|
20
|
+
signed_up_at_millis: number;
|
|
21
21
|
primary_email_verified: boolean;
|
|
22
22
|
has_password: boolean;
|
|
23
23
|
otp_auth_enabled: boolean;
|
|
@@ -34,8 +34,8 @@ declare const currentUserCrud: CrudSchemaFromOptions<{
|
|
|
34
34
|
selected_team: {
|
|
35
35
|
client_metadata?: {} | null | undefined;
|
|
36
36
|
client_read_only_metadata?: {} | null | undefined;
|
|
37
|
-
id: string;
|
|
38
37
|
display_name: string;
|
|
38
|
+
id: string;
|
|
39
39
|
profile_image_url: string | null;
|
|
40
40
|
} | null;
|
|
41
41
|
}, yup$1.AnyObject, {
|
|
@@ -90,9 +90,9 @@ declare const currentUserCrud: CrudSchemaFromOptions<{
|
|
|
90
90
|
client_metadata?: {} | null | undefined;
|
|
91
91
|
client_read_only_metadata?: {} | null | undefined;
|
|
92
92
|
server_metadata?: {} | null | undefined;
|
|
93
|
+
display_name: string;
|
|
93
94
|
id: string;
|
|
94
95
|
created_at_millis: number;
|
|
95
|
-
display_name: string;
|
|
96
96
|
profile_image_url: string | null;
|
|
97
97
|
} | null;
|
|
98
98
|
selected_team_id: string | null;
|
|
@@ -173,10 +173,10 @@ declare const currentUserCrud: CrudSchemaFromOptions<{
|
|
|
173
173
|
}, "">;
|
|
174
174
|
clientUpdateSchema: yup$1.ObjectSchema<{
|
|
175
175
|
display_name: string | null | undefined;
|
|
176
|
+
client_metadata: {} | null | undefined;
|
|
177
|
+
selected_team_id: string | null | undefined;
|
|
176
178
|
primary_email: string | null | undefined;
|
|
177
179
|
profile_image_url: string | null | undefined;
|
|
178
|
-
selected_team_id: string | null | undefined;
|
|
179
|
-
client_metadata: {} | null | undefined;
|
|
180
180
|
otp_auth_enabled: boolean | undefined;
|
|
181
181
|
passkey_auth_enabled: boolean | undefined;
|
|
182
182
|
totp_secret_base64: string | null | undefined;
|