@hexclave/shared 1.0.29 → 1.0.32
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/skill-site-prompt-parts/ai-setup-prompt.d.ts.map +1 -1
- package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js +11 -37
- package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/config/schema.d.ts +64 -64
- package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.d.ts.map +1 -1
- package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js +11 -37
- package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/esm/config/schema.d.ts +64 -64
- package/dist/esm/interface/admin-metrics.d.ts +9 -9
- package/dist/esm/interface/conversations.d.ts +10 -10
- package/dist/esm/interface/crud/current-user.d.ts +9 -9
- package/dist/esm/interface/crud/email-outbox.d.ts +240 -240
- package/dist/esm/interface/crud/products.d.ts +9 -9
- package/dist/esm/interface/crud/products.d.ts.map +1 -1
- package/dist/esm/interface/crud/project-api-keys.d.ts +3 -3
- package/dist/esm/interface/crud/projects.d.ts +35 -35
- package/dist/esm/interface/crud/team-member-profiles.d.ts +20 -20
- package/dist/esm/interface/crud/transactions.d.ts +4 -4
- 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/server-interface.d.ts +1 -0
- package/dist/esm/interface/server-interface.d.ts.map +1 -1
- package/dist/esm/interface/server-interface.js +1 -0
- package/dist/esm/interface/server-interface.js.map +1 -1
- package/dist/esm/interface/webhooks.d.ts +2 -2
- package/dist/esm/sessions.d.ts +6 -6
- package/dist/interface/admin-metrics.d.ts +9 -9
- package/dist/interface/conversations.d.ts +10 -10
- package/dist/interface/crud/current-user.d.ts +9 -9
- package/dist/interface/crud/email-outbox.d.ts +240 -240
- package/dist/interface/crud/products.d.ts +9 -9
- package/dist/interface/crud/products.d.ts.map +1 -1
- package/dist/interface/crud/project-api-keys.d.ts +3 -3
- package/dist/interface/crud/projects.d.ts +35 -35
- package/dist/interface/crud/team-member-profiles.d.ts +20 -20
- package/dist/interface/crud/transactions.d.ts +4 -4
- 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/server-interface.d.ts +1 -0
- package/dist/interface/server-interface.d.ts.map +1 -1
- package/dist/interface/server-interface.js +1 -0
- package/dist/interface/server-interface.js.map +1 -1
- package/dist/interface/webhooks.d.ts +2 -2
- package/dist/sessions.d.ts +6 -6
- package/package.json +1 -1
- package/src/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.ts +11 -37
- package/src/interface/server-interface.ts +4 -0
|
@@ -84,7 +84,7 @@ declare const branchConfigSchema: yup$1.Schema<Omit<Omit<{
|
|
|
84
84
|
sourceOfTruth: {
|
|
85
85
|
type: "hosted";
|
|
86
86
|
};
|
|
87
|
-
}, string>, "
|
|
87
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
88
88
|
payments?: {
|
|
89
89
|
blockNewPurchases?: boolean | undefined;
|
|
90
90
|
autoPay?: {
|
|
@@ -125,10 +125,6 @@ declare const branchConfigSchema: yup$1.Schema<Omit<Omit<{
|
|
|
125
125
|
}>;
|
|
126
126
|
}>;
|
|
127
127
|
} | undefined;
|
|
128
|
-
teams: {
|
|
129
|
-
createPersonalTeamOnSignUp?: boolean | undefined;
|
|
130
|
-
allowClientTeamCreation?: boolean | undefined;
|
|
131
|
-
};
|
|
132
128
|
auth: {
|
|
133
129
|
allowSignUp?: boolean | undefined;
|
|
134
130
|
signUpRulesDefaultAction?: string | undefined;
|
|
@@ -138,6 +134,9 @@ declare const branchConfigSchema: yup$1.Schema<Omit<Omit<{
|
|
|
138
134
|
otp: {
|
|
139
135
|
allowSignIn?: boolean | undefined;
|
|
140
136
|
};
|
|
137
|
+
passkey: {
|
|
138
|
+
allowSignIn?: boolean | undefined;
|
|
139
|
+
};
|
|
141
140
|
oauth: {
|
|
142
141
|
accountMergeStrategy?: "link_method" | "raise_error" | "allow_duplicates" | undefined;
|
|
143
142
|
providers: Record<string, {
|
|
@@ -146,9 +145,6 @@ declare const branchConfigSchema: yup$1.Schema<Omit<Omit<{
|
|
|
146
145
|
allowConnectedAccounts?: boolean | undefined;
|
|
147
146
|
}>;
|
|
148
147
|
};
|
|
149
|
-
passkey: {
|
|
150
|
-
allowSignIn?: boolean | undefined;
|
|
151
|
-
};
|
|
152
148
|
signUpRules: Record<string, {
|
|
153
149
|
displayName?: string | undefined;
|
|
154
150
|
enabled?: boolean | undefined;
|
|
@@ -163,6 +159,10 @@ declare const branchConfigSchema: yup$1.Schema<Omit<Omit<{
|
|
|
163
159
|
onboarding: {
|
|
164
160
|
requireEmailVerification?: boolean | undefined;
|
|
165
161
|
};
|
|
162
|
+
teams: {
|
|
163
|
+
createPersonalTeamOnSignUp?: boolean | undefined;
|
|
164
|
+
allowClientTeamCreation?: boolean | undefined;
|
|
165
|
+
};
|
|
166
166
|
rbac: {
|
|
167
167
|
permissions: Record<string, {
|
|
168
168
|
description?: string | undefined;
|
|
@@ -187,6 +187,9 @@ declare const branchConfigSchema: yup$1.Schema<Omit<Omit<{
|
|
|
187
187
|
tsxSource: string;
|
|
188
188
|
}>;
|
|
189
189
|
};
|
|
190
|
+
users: {
|
|
191
|
+
allowClientUserDeletion?: boolean | undefined;
|
|
192
|
+
};
|
|
190
193
|
apiKeys: {
|
|
191
194
|
enabled: {
|
|
192
195
|
team?: boolean | undefined;
|
|
@@ -194,14 +197,11 @@ declare const branchConfigSchema: yup$1.Schema<Omit<Omit<{
|
|
|
194
197
|
};
|
|
195
198
|
};
|
|
196
199
|
apps: {
|
|
197
|
-
installed: Record<"
|
|
200
|
+
installed: Record<"authentication" | "fraud-protection" | "analytics" | "onboarding" | "teams" | "rbac" | "api-keys" | "payments" | "emails" | "support" | "email-api" | "data-vault" | "webhooks" | "tv-mode" | "launch-checklist" | "catalyst" | "neon" | "convex" | "vercel" | "tanstack-start" | "clickmaps" | "session-replays", {
|
|
198
201
|
enabled?: boolean | undefined;
|
|
199
202
|
}>;
|
|
200
203
|
};
|
|
201
204
|
domains: {};
|
|
202
|
-
users: {
|
|
203
|
-
allowClientUserDeletion?: boolean | undefined;
|
|
204
|
-
};
|
|
205
205
|
dbSync: {
|
|
206
206
|
externalDatabases: Record<string, {
|
|
207
207
|
connectionString?: string | undefined;
|
|
@@ -218,7 +218,7 @@ declare const branchConfigSchema: yup$1.Schema<Omit<Omit<{
|
|
|
218
218
|
project: {
|
|
219
219
|
requirePublishableClientKey: undefined;
|
|
220
220
|
};
|
|
221
|
-
}, string>, "
|
|
221
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
222
222
|
rbac: {
|
|
223
223
|
permissions: undefined;
|
|
224
224
|
defaultPermissions: {
|
|
@@ -293,7 +293,7 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
293
293
|
sourceOfTruth: {
|
|
294
294
|
type: "hosted";
|
|
295
295
|
};
|
|
296
|
-
}, string>, "
|
|
296
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
297
297
|
payments?: {
|
|
298
298
|
blockNewPurchases?: boolean | undefined;
|
|
299
299
|
autoPay?: {
|
|
@@ -334,10 +334,6 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
334
334
|
}>;
|
|
335
335
|
}>;
|
|
336
336
|
} | undefined;
|
|
337
|
-
teams: {
|
|
338
|
-
createPersonalTeamOnSignUp?: boolean | undefined;
|
|
339
|
-
allowClientTeamCreation?: boolean | undefined;
|
|
340
|
-
};
|
|
341
337
|
auth: {
|
|
342
338
|
allowSignUp?: boolean | undefined;
|
|
343
339
|
signUpRulesDefaultAction?: string | undefined;
|
|
@@ -347,6 +343,9 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
347
343
|
otp: {
|
|
348
344
|
allowSignIn?: boolean | undefined;
|
|
349
345
|
};
|
|
346
|
+
passkey: {
|
|
347
|
+
allowSignIn?: boolean | undefined;
|
|
348
|
+
};
|
|
350
349
|
oauth: {
|
|
351
350
|
accountMergeStrategy?: "link_method" | "raise_error" | "allow_duplicates" | undefined;
|
|
352
351
|
providers: Record<string, {
|
|
@@ -355,9 +354,6 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
355
354
|
allowConnectedAccounts?: boolean | undefined;
|
|
356
355
|
}>;
|
|
357
356
|
};
|
|
358
|
-
passkey: {
|
|
359
|
-
allowSignIn?: boolean | undefined;
|
|
360
|
-
};
|
|
361
357
|
signUpRules: Record<string, {
|
|
362
358
|
displayName?: string | undefined;
|
|
363
359
|
enabled?: boolean | undefined;
|
|
@@ -372,6 +368,10 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
372
368
|
onboarding: {
|
|
373
369
|
requireEmailVerification?: boolean | undefined;
|
|
374
370
|
};
|
|
371
|
+
teams: {
|
|
372
|
+
createPersonalTeamOnSignUp?: boolean | undefined;
|
|
373
|
+
allowClientTeamCreation?: boolean | undefined;
|
|
374
|
+
};
|
|
375
375
|
rbac: {
|
|
376
376
|
permissions: Record<string, {
|
|
377
377
|
description?: string | undefined;
|
|
@@ -396,6 +396,9 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
396
396
|
tsxSource: string;
|
|
397
397
|
}>;
|
|
398
398
|
};
|
|
399
|
+
users: {
|
|
400
|
+
allowClientUserDeletion?: boolean | undefined;
|
|
401
|
+
};
|
|
399
402
|
apiKeys: {
|
|
400
403
|
enabled: {
|
|
401
404
|
team?: boolean | undefined;
|
|
@@ -403,14 +406,11 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
403
406
|
};
|
|
404
407
|
};
|
|
405
408
|
apps: {
|
|
406
|
-
installed: Record<"
|
|
409
|
+
installed: Record<"authentication" | "fraud-protection" | "analytics" | "onboarding" | "teams" | "rbac" | "api-keys" | "payments" | "emails" | "support" | "email-api" | "data-vault" | "webhooks" | "tv-mode" | "launch-checklist" | "catalyst" | "neon" | "convex" | "vercel" | "tanstack-start" | "clickmaps" | "session-replays", {
|
|
407
410
|
enabled?: boolean | undefined;
|
|
408
411
|
}>;
|
|
409
412
|
};
|
|
410
413
|
domains: {};
|
|
411
|
-
users: {
|
|
412
|
-
allowClientUserDeletion?: boolean | undefined;
|
|
413
|
-
};
|
|
414
414
|
dbSync: {
|
|
415
415
|
externalDatabases: Record<string, {
|
|
416
416
|
connectionString?: string | undefined;
|
|
@@ -474,6 +474,9 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
474
474
|
otp: {
|
|
475
475
|
allowSignIn?: boolean | undefined;
|
|
476
476
|
};
|
|
477
|
+
passkey: {
|
|
478
|
+
allowSignIn?: boolean | undefined;
|
|
479
|
+
};
|
|
477
480
|
oauth: {
|
|
478
481
|
accountMergeStrategy?: "link_method" | "raise_error" | "allow_duplicates" | undefined;
|
|
479
482
|
providers: Record<string, {
|
|
@@ -482,9 +485,6 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
482
485
|
allowConnectedAccounts?: boolean | undefined;
|
|
483
486
|
}>;
|
|
484
487
|
};
|
|
485
|
-
passkey: {
|
|
486
|
-
allowSignIn?: boolean | undefined;
|
|
487
|
-
};
|
|
488
488
|
signUpRules: Record<string, {
|
|
489
489
|
displayName?: string | undefined;
|
|
490
490
|
enabled?: boolean | undefined;
|
|
@@ -575,7 +575,7 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
575
575
|
project: {
|
|
576
576
|
requirePublishableClientKey: undefined;
|
|
577
577
|
};
|
|
578
|
-
}, string>, "
|
|
578
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
579
579
|
rbac: {
|
|
580
580
|
permissions: undefined;
|
|
581
581
|
defaultPermissions: {
|
|
@@ -648,7 +648,7 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
648
648
|
project: {
|
|
649
649
|
requirePublishableClientKey: undefined;
|
|
650
650
|
};
|
|
651
|
-
}, string>, "
|
|
651
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
652
652
|
rbac: {
|
|
653
653
|
permissions: undefined;
|
|
654
654
|
defaultPermissions: {
|
|
@@ -721,7 +721,7 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
721
721
|
project: {
|
|
722
722
|
requirePublishableClientKey: undefined;
|
|
723
723
|
};
|
|
724
|
-
}, string>, "
|
|
724
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
725
725
|
rbac: {
|
|
726
726
|
permissions: undefined;
|
|
727
727
|
defaultPermissions: {
|
|
@@ -797,7 +797,7 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
797
797
|
project: {
|
|
798
798
|
requirePublishableClientKey: undefined;
|
|
799
799
|
};
|
|
800
|
-
}, string>, "
|
|
800
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
801
801
|
rbac: {
|
|
802
802
|
permissions: undefined;
|
|
803
803
|
defaultPermissions: {
|
|
@@ -883,7 +883,7 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
883
883
|
project: {
|
|
884
884
|
requirePublishableClientKey: undefined;
|
|
885
885
|
};
|
|
886
|
-
}, string>, "
|
|
886
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
887
887
|
rbac: {
|
|
888
888
|
permissions: undefined;
|
|
889
889
|
defaultPermissions: {
|
|
@@ -959,7 +959,7 @@ declare const environmentConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<Omit<{
|
|
|
959
959
|
project: {
|
|
960
960
|
requirePublishableClientKey: undefined;
|
|
961
961
|
};
|
|
962
|
-
}, string>, "
|
|
962
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
963
963
|
rbac: {
|
|
964
964
|
permissions: undefined;
|
|
965
965
|
defaultPermissions: {
|
|
@@ -1041,7 +1041,7 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1041
1041
|
sourceOfTruth: {
|
|
1042
1042
|
type: "hosted";
|
|
1043
1043
|
};
|
|
1044
|
-
}, string>, "
|
|
1044
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
1045
1045
|
payments?: {
|
|
1046
1046
|
blockNewPurchases?: boolean | undefined;
|
|
1047
1047
|
autoPay?: {
|
|
@@ -1082,10 +1082,6 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1082
1082
|
}>;
|
|
1083
1083
|
}>;
|
|
1084
1084
|
} | undefined;
|
|
1085
|
-
teams: {
|
|
1086
|
-
createPersonalTeamOnSignUp?: boolean | undefined;
|
|
1087
|
-
allowClientTeamCreation?: boolean | undefined;
|
|
1088
|
-
};
|
|
1089
1085
|
auth: {
|
|
1090
1086
|
allowSignUp?: boolean | undefined;
|
|
1091
1087
|
signUpRulesDefaultAction?: string | undefined;
|
|
@@ -1095,6 +1091,9 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1095
1091
|
otp: {
|
|
1096
1092
|
allowSignIn?: boolean | undefined;
|
|
1097
1093
|
};
|
|
1094
|
+
passkey: {
|
|
1095
|
+
allowSignIn?: boolean | undefined;
|
|
1096
|
+
};
|
|
1098
1097
|
oauth: {
|
|
1099
1098
|
accountMergeStrategy?: "link_method" | "raise_error" | "allow_duplicates" | undefined;
|
|
1100
1099
|
providers: Record<string, {
|
|
@@ -1103,9 +1102,6 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1103
1102
|
allowConnectedAccounts?: boolean | undefined;
|
|
1104
1103
|
}>;
|
|
1105
1104
|
};
|
|
1106
|
-
passkey: {
|
|
1107
|
-
allowSignIn?: boolean | undefined;
|
|
1108
|
-
};
|
|
1109
1105
|
signUpRules: Record<string, {
|
|
1110
1106
|
displayName?: string | undefined;
|
|
1111
1107
|
enabled?: boolean | undefined;
|
|
@@ -1120,6 +1116,10 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1120
1116
|
onboarding: {
|
|
1121
1117
|
requireEmailVerification?: boolean | undefined;
|
|
1122
1118
|
};
|
|
1119
|
+
teams: {
|
|
1120
|
+
createPersonalTeamOnSignUp?: boolean | undefined;
|
|
1121
|
+
allowClientTeamCreation?: boolean | undefined;
|
|
1122
|
+
};
|
|
1123
1123
|
rbac: {
|
|
1124
1124
|
permissions: Record<string, {
|
|
1125
1125
|
description?: string | undefined;
|
|
@@ -1144,6 +1144,9 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1144
1144
|
tsxSource: string;
|
|
1145
1145
|
}>;
|
|
1146
1146
|
};
|
|
1147
|
+
users: {
|
|
1148
|
+
allowClientUserDeletion?: boolean | undefined;
|
|
1149
|
+
};
|
|
1147
1150
|
apiKeys: {
|
|
1148
1151
|
enabled: {
|
|
1149
1152
|
team?: boolean | undefined;
|
|
@@ -1151,14 +1154,11 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1151
1154
|
};
|
|
1152
1155
|
};
|
|
1153
1156
|
apps: {
|
|
1154
|
-
installed: Record<"
|
|
1157
|
+
installed: Record<"authentication" | "fraud-protection" | "analytics" | "onboarding" | "teams" | "rbac" | "api-keys" | "payments" | "emails" | "support" | "email-api" | "data-vault" | "webhooks" | "tv-mode" | "launch-checklist" | "catalyst" | "neon" | "convex" | "vercel" | "tanstack-start" | "clickmaps" | "session-replays", {
|
|
1155
1158
|
enabled?: boolean | undefined;
|
|
1156
1159
|
}>;
|
|
1157
1160
|
};
|
|
1158
1161
|
domains: {};
|
|
1159
|
-
users: {
|
|
1160
|
-
allowClientUserDeletion?: boolean | undefined;
|
|
1161
|
-
};
|
|
1162
1162
|
dbSync: {
|
|
1163
1163
|
externalDatabases: Record<string, {
|
|
1164
1164
|
connectionString?: string | undefined;
|
|
@@ -1222,6 +1222,9 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1222
1222
|
otp: {
|
|
1223
1223
|
allowSignIn?: boolean | undefined;
|
|
1224
1224
|
};
|
|
1225
|
+
passkey: {
|
|
1226
|
+
allowSignIn?: boolean | undefined;
|
|
1227
|
+
};
|
|
1225
1228
|
oauth: {
|
|
1226
1229
|
accountMergeStrategy?: "link_method" | "raise_error" | "allow_duplicates" | undefined;
|
|
1227
1230
|
providers: Record<string, {
|
|
@@ -1230,9 +1233,6 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1230
1233
|
allowConnectedAccounts?: boolean | undefined;
|
|
1231
1234
|
}>;
|
|
1232
1235
|
};
|
|
1233
|
-
passkey: {
|
|
1234
|
-
allowSignIn?: boolean | undefined;
|
|
1235
|
-
};
|
|
1236
1236
|
signUpRules: Record<string, {
|
|
1237
1237
|
displayName?: string | undefined;
|
|
1238
1238
|
enabled?: boolean | undefined;
|
|
@@ -1323,7 +1323,7 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1323
1323
|
project: {
|
|
1324
1324
|
requirePublishableClientKey: undefined;
|
|
1325
1325
|
};
|
|
1326
|
-
}, string>, "
|
|
1326
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
1327
1327
|
rbac: {
|
|
1328
1328
|
permissions: undefined;
|
|
1329
1329
|
defaultPermissions: {
|
|
@@ -1396,7 +1396,7 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1396
1396
|
project: {
|
|
1397
1397
|
requirePublishableClientKey: undefined;
|
|
1398
1398
|
};
|
|
1399
|
-
}, string>, "
|
|
1399
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
1400
1400
|
rbac: {
|
|
1401
1401
|
permissions: undefined;
|
|
1402
1402
|
defaultPermissions: {
|
|
@@ -1469,7 +1469,7 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1469
1469
|
project: {
|
|
1470
1470
|
requirePublishableClientKey: undefined;
|
|
1471
1471
|
};
|
|
1472
|
-
}, string>, "
|
|
1472
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
1473
1473
|
rbac: {
|
|
1474
1474
|
permissions: undefined;
|
|
1475
1475
|
defaultPermissions: {
|
|
@@ -1545,7 +1545,7 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1545
1545
|
project: {
|
|
1546
1546
|
requirePublishableClientKey: undefined;
|
|
1547
1547
|
};
|
|
1548
|
-
}, string>, "
|
|
1548
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
1549
1549
|
rbac: {
|
|
1550
1550
|
permissions: undefined;
|
|
1551
1551
|
defaultPermissions: {
|
|
@@ -1631,7 +1631,7 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1631
1631
|
project: {
|
|
1632
1632
|
requirePublishableClientKey: undefined;
|
|
1633
1633
|
};
|
|
1634
|
-
}, string>, "
|
|
1634
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
1635
1635
|
rbac: {
|
|
1636
1636
|
permissions: undefined;
|
|
1637
1637
|
defaultPermissions: {
|
|
@@ -1707,7 +1707,7 @@ declare const organizationConfigSchema: yup$1.Schema<Omit<NonNullable<Omit<NonNu
|
|
|
1707
1707
|
project: {
|
|
1708
1708
|
requirePublishableClientKey: undefined;
|
|
1709
1709
|
};
|
|
1710
|
-
}, string>, "
|
|
1710
|
+
}, string>, "auth" | "onboarding" | "teams" | "rbac" | "payments" | "emails" | "users" | "apiKeys" | "apps" | "domains" | "dbSync" | "dataVault"> & {
|
|
1711
1711
|
rbac: {
|
|
1712
1712
|
permissions: undefined;
|
|
1713
1713
|
defaultPermissions: {
|
|
@@ -2077,10 +2077,11 @@ declare function sanitizeOrganizationConfig(config: OrganizationRenderedConfigBe
|
|
|
2077
2077
|
priority: number;
|
|
2078
2078
|
condition: string | undefined;
|
|
2079
2079
|
action: {
|
|
2080
|
-
type: "allow" | "reject" | "restrict" | "log";
|
|
2081
2080
|
message: string | undefined;
|
|
2081
|
+
type: "allow" | "reject" | "restrict" | "log";
|
|
2082
2082
|
};
|
|
2083
2083
|
}>;
|
|
2084
|
+
allowSignUp: boolean;
|
|
2084
2085
|
password: {
|
|
2085
2086
|
allowSignIn: boolean;
|
|
2086
2087
|
};
|
|
@@ -2090,7 +2091,6 @@ declare function sanitizeOrganizationConfig(config: OrganizationRenderedConfigBe
|
|
|
2090
2091
|
passkey: {
|
|
2091
2092
|
allowSignIn: boolean;
|
|
2092
2093
|
};
|
|
2093
|
-
allowSignUp: boolean;
|
|
2094
2094
|
signUpRulesDefaultAction: string;
|
|
2095
2095
|
};
|
|
2096
2096
|
emails: {
|
|
@@ -2183,10 +2183,6 @@ declare function sanitizeOrganizationConfig(config: OrganizationRenderedConfigBe
|
|
|
2183
2183
|
} & {
|
|
2184
2184
|
readonly type: "hosted";
|
|
2185
2185
|
};
|
|
2186
|
-
teams: {
|
|
2187
|
-
createPersonalTeamOnSignUp: boolean;
|
|
2188
|
-
allowClientTeamCreation: boolean;
|
|
2189
|
-
};
|
|
2190
2186
|
analytics: {
|
|
2191
2187
|
queryFolders: {
|
|
2192
2188
|
[x: string]: {
|
|
@@ -2205,6 +2201,10 @@ declare function sanitizeOrganizationConfig(config: OrganizationRenderedConfigBe
|
|
|
2205
2201
|
onboarding: {
|
|
2206
2202
|
requireEmailVerification: boolean;
|
|
2207
2203
|
};
|
|
2204
|
+
teams: {
|
|
2205
|
+
createPersonalTeamOnSignUp: boolean;
|
|
2206
|
+
allowClientTeamCreation: boolean;
|
|
2207
|
+
};
|
|
2208
2208
|
rbac: {
|
|
2209
2209
|
permissions: {
|
|
2210
2210
|
[x: string]: {
|
|
@@ -2227,6 +2227,9 @@ declare function sanitizeOrganizationConfig(config: OrganizationRenderedConfigBe
|
|
|
2227
2227
|
};
|
|
2228
2228
|
};
|
|
2229
2229
|
};
|
|
2230
|
+
users: {
|
|
2231
|
+
allowClientUserDeletion: boolean;
|
|
2232
|
+
};
|
|
2230
2233
|
apiKeys: {
|
|
2231
2234
|
enabled: {
|
|
2232
2235
|
team: boolean;
|
|
@@ -2242,9 +2245,6 @@ declare function sanitizeOrganizationConfig(config: OrganizationRenderedConfigBe
|
|
|
2242
2245
|
};
|
|
2243
2246
|
};
|
|
2244
2247
|
};
|
|
2245
|
-
users: {
|
|
2246
|
-
allowClientUserDeletion: boolean;
|
|
2247
|
-
};
|
|
2248
2248
|
dbSync: {
|
|
2249
2249
|
externalDatabases: {
|
|
2250
2250
|
[x: string]: {
|
|
@@ -150,17 +150,17 @@ declare const MetricsEmailOverviewSchema: yup.ObjectSchema<{
|
|
|
150
150
|
activity: number;
|
|
151
151
|
}[];
|
|
152
152
|
daily_emails_by_status: {
|
|
153
|
+
error: number;
|
|
153
154
|
date: string;
|
|
154
155
|
ok: number;
|
|
155
|
-
error: number;
|
|
156
156
|
in_progress: number;
|
|
157
157
|
}[];
|
|
158
158
|
emails_sent: number;
|
|
159
159
|
recent_emails: {
|
|
160
160
|
status: string;
|
|
161
161
|
id: string;
|
|
162
|
-
created_at_millis: number;
|
|
163
162
|
subject: string;
|
|
163
|
+
created_at_millis: number;
|
|
164
164
|
}[];
|
|
165
165
|
deliverability_status: {
|
|
166
166
|
error: number;
|
|
@@ -403,8 +403,8 @@ declare const AnalyticsClickmapResponseBodySchema: yup.ObjectSchema<{
|
|
|
403
403
|
replays: number;
|
|
404
404
|
}[];
|
|
405
405
|
users: {
|
|
406
|
-
display_name: string | null;
|
|
407
406
|
primary_email: string | null;
|
|
407
|
+
display_name: string | null;
|
|
408
408
|
id: string;
|
|
409
409
|
profile_image_url: string | null;
|
|
410
410
|
clicks: number;
|
|
@@ -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
|
-
display_name: string | null;
|
|
447
446
|
primary_email: string | null;
|
|
447
|
+
display_name: string | null;
|
|
448
448
|
id: string;
|
|
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
|
-
display_name: string | null;
|
|
475
474
|
primary_email: string | null;
|
|
475
|
+
display_name: string | null;
|
|
476
476
|
id: string;
|
|
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
|
-
display_name: string | null;
|
|
483
482
|
primary_email: string | null;
|
|
483
|
+
display_name: string | null;
|
|
484
484
|
id: string;
|
|
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
|
-
display_name: string | null;
|
|
491
490
|
primary_email: string | null;
|
|
491
|
+
display_name: string | null;
|
|
492
492
|
id: string;
|
|
493
493
|
profile_image_url: string | null;
|
|
494
494
|
signed_up_at_millis: number;
|
|
@@ -563,17 +563,17 @@ declare const MetricsResponseBodySchema: yup.ObjectSchema<{
|
|
|
563
563
|
emails_by_status: Record<string, number>;
|
|
564
564
|
total_emails: number;
|
|
565
565
|
daily_emails_by_status: {
|
|
566
|
+
error: number;
|
|
566
567
|
date: string;
|
|
567
568
|
ok: number;
|
|
568
|
-
error: number;
|
|
569
569
|
in_progress: number;
|
|
570
570
|
}[];
|
|
571
571
|
emails_sent: number;
|
|
572
572
|
recent_emails: {
|
|
573
573
|
status: string;
|
|
574
574
|
id: string;
|
|
575
|
-
created_at_millis: number;
|
|
576
575
|
subject: string;
|
|
576
|
+
created_at_millis: number;
|
|
577
577
|
}[];
|
|
578
578
|
deliverability_status: {
|
|
579
579
|
error: number;
|
|
@@ -49,16 +49,16 @@ declare const conversationSummarySchema: yup$1.ObjectSchema<{
|
|
|
49
49
|
userPrimaryEmail: string | null;
|
|
50
50
|
userProfileImageUrl: string | null;
|
|
51
51
|
subject: string;
|
|
52
|
-
status: "
|
|
52
|
+
status: "open" | "pending" | "closed";
|
|
53
53
|
priority: "low" | "normal" | "high" | "urgent";
|
|
54
54
|
source: "email" | "manual" | "chat" | "api";
|
|
55
55
|
lastMessageType: "message" | "internal-note" | "status-change";
|
|
56
56
|
preview: string | null;
|
|
57
57
|
lastActivityAt: string;
|
|
58
58
|
metadata: {
|
|
59
|
-
tags: string[];
|
|
60
59
|
assignedToUserId: string | null;
|
|
61
60
|
assignedToDisplayName: string | null;
|
|
61
|
+
tags: string[];
|
|
62
62
|
firstResponseDueAt: string | null;
|
|
63
63
|
firstResponseAt: string | null;
|
|
64
64
|
nextResponseDueAt: string | null;
|
|
@@ -129,7 +129,7 @@ declare const conversationMessageSchema: yup$1.ObjectSchema<{
|
|
|
129
129
|
userId: string | null;
|
|
130
130
|
teamId: string | null;
|
|
131
131
|
subject: string;
|
|
132
|
-
status: "
|
|
132
|
+
status: "open" | "pending" | "closed";
|
|
133
133
|
priority: "low" | "normal" | "high" | "urgent";
|
|
134
134
|
source: "email" | "manual" | "chat" | "api";
|
|
135
135
|
messageType: "message" | "internal-note" | "status-change";
|
|
@@ -139,8 +139,8 @@ declare const conversationMessageSchema: yup$1.ObjectSchema<{
|
|
|
139
139
|
createdAt: string;
|
|
140
140
|
sender: {
|
|
141
141
|
type: "user" | "agent" | "system";
|
|
142
|
-
id: string | null;
|
|
143
142
|
displayName: string | null;
|
|
143
|
+
id: string | null;
|
|
144
144
|
primaryEmail: string | null;
|
|
145
145
|
};
|
|
146
146
|
}, yup$1.AnyObject, {
|
|
@@ -173,7 +173,7 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
|
|
|
173
173
|
lastOutboundAt?: string | null | undefined;
|
|
174
174
|
closedAt?: string | null | undefined;
|
|
175
175
|
recordMetadata?: {} | null | undefined;
|
|
176
|
-
status: "
|
|
176
|
+
status: "open" | "pending" | "closed";
|
|
177
177
|
priority: "low" | "normal" | "high" | "urgent";
|
|
178
178
|
subject: string;
|
|
179
179
|
conversationId: string;
|
|
@@ -187,9 +187,9 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
|
|
|
187
187
|
preview: string | null;
|
|
188
188
|
lastActivityAt: string;
|
|
189
189
|
metadata: {
|
|
190
|
-
tags: string[];
|
|
191
190
|
assignedToUserId: string | null;
|
|
192
191
|
assignedToDisplayName: string | null;
|
|
192
|
+
tags: string[];
|
|
193
193
|
firstResponseDueAt: string | null;
|
|
194
194
|
firstResponseAt: string | null;
|
|
195
195
|
nextResponseDueAt: string | null;
|
|
@@ -211,7 +211,7 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
211
211
|
lastOutboundAt?: string | null | undefined;
|
|
212
212
|
closedAt?: string | null | undefined;
|
|
213
213
|
recordMetadata?: {} | null | undefined;
|
|
214
|
-
status: "
|
|
214
|
+
status: "open" | "pending" | "closed";
|
|
215
215
|
priority: "low" | "normal" | "high" | "urgent";
|
|
216
216
|
subject: string;
|
|
217
217
|
conversationId: string;
|
|
@@ -225,9 +225,9 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
225
225
|
preview: string | null;
|
|
226
226
|
lastActivityAt: string;
|
|
227
227
|
metadata: {
|
|
228
|
-
tags: string[];
|
|
229
228
|
assignedToUserId: string | null;
|
|
230
229
|
assignedToDisplayName: string | null;
|
|
230
|
+
tags: string[];
|
|
231
231
|
firstResponseDueAt: string | null;
|
|
232
232
|
firstResponseAt: string | null;
|
|
233
233
|
nextResponseDueAt: string | null;
|
|
@@ -236,7 +236,7 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
messages: {
|
|
239
|
-
status: "
|
|
239
|
+
status: "open" | "pending" | "closed";
|
|
240
240
|
id: string;
|
|
241
241
|
priority: "low" | "normal" | "high" | "urgent";
|
|
242
242
|
subject: string;
|
|
@@ -251,8 +251,8 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
251
251
|
attachments: {}[];
|
|
252
252
|
sender: {
|
|
253
253
|
type: "user" | "agent" | "system";
|
|
254
|
-
id: string | null;
|
|
255
254
|
displayName: string | null;
|
|
255
|
+
id: string | null;
|
|
256
256
|
primaryEmail: string | null;
|
|
257
257
|
};
|
|
258
258
|
}[];
|