@hexclave/shared 1.0.5 → 1.0.8
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 +10 -7
- package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/config/schema.d.ts +70 -70
- 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 +10 -7
- package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/esm/config/schema.d.ts +70 -70
- package/dist/esm/hooks/use-async-callback.js +1 -1
- package/dist/esm/hooks/use-async-external-store.js +1 -1
- package/dist/esm/hooks/use-strict-memo.js +1 -1
- package/dist/esm/interface/admin-metrics.d.ts +4 -4
- package/dist/esm/interface/client-interface.js +1 -1
- package/dist/esm/interface/client-interface.js.map +1 -1
- package/dist/esm/interface/conversations.d.ts +8 -8
- package/dist/esm/interface/crud/current-user.d.ts +5 -5
- package/dist/esm/interface/crud/email-outbox.d.ts +44 -44
- package/dist/esm/interface/crud/products.d.ts +1 -1
- package/dist/esm/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/esm/interface/crud/projects.d.ts +28 -28
- package/dist/esm/interface/crud/team-member-profiles.d.ts +14 -14
- package/dist/esm/interface/crud/users.d.ts +12 -12
- package/dist/esm/interface/webhooks.d.ts +4 -4
- package/dist/esm/known-errors.d.ts +1 -1
- package/dist/esm/known-errors.d.ts.map +1 -1
- package/dist/esm/known-errors.js +5 -1
- package/dist/esm/known-errors.js.map +1 -1
- package/dist/hooks/use-async-callback.js +1 -1
- package/dist/hooks/use-async-external-store.js +1 -1
- package/dist/hooks/use-strict-memo.js +1 -1
- package/dist/interface/admin-metrics.d.ts +4 -4
- package/dist/interface/client-interface.js +1 -1
- package/dist/interface/client-interface.js.map +1 -1
- package/dist/interface/conversations.d.ts +8 -8
- package/dist/interface/crud/current-user.d.ts +5 -5
- package/dist/interface/crud/email-outbox.d.ts +44 -44
- package/dist/interface/crud/products.d.ts +1 -1
- package/dist/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/interface/crud/projects.d.ts +28 -28
- package/dist/interface/crud/team-member-profiles.d.ts +14 -14
- package/dist/interface/crud/users.d.ts +12 -12
- package/dist/interface/webhooks.d.ts +4 -4
- package/dist/known-errors.d.ts +1 -1
- package/dist/known-errors.d.ts.map +1 -1
- package/dist/known-errors.js +5 -1
- package/dist/known-errors.js.map +1 -1
- package/package.json +1 -1
- package/src/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.ts +10 -7
- package/src/interface/client-interface.ts +2 -2
- package/src/known-errors.tsx +5 -2
|
@@ -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, {
|
|
@@ -174,14 +174,14 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
|
|
|
174
174
|
closedAt?: string | null | undefined;
|
|
175
175
|
recordMetadata?: {} | null | undefined;
|
|
176
176
|
status: "open" | "pending" | "closed";
|
|
177
|
+
priority: "low" | "normal" | "high" | "urgent";
|
|
178
|
+
subject: string;
|
|
177
179
|
conversationId: string;
|
|
178
180
|
userId: string | null;
|
|
179
181
|
teamId: string | null;
|
|
180
182
|
userDisplayName: string | null;
|
|
181
183
|
userPrimaryEmail: string | null;
|
|
182
184
|
userProfileImageUrl: string | null;
|
|
183
|
-
subject: string;
|
|
184
|
-
priority: "low" | "normal" | "high" | "urgent";
|
|
185
185
|
source: "email" | "manual" | "chat" | "api";
|
|
186
186
|
lastMessageType: "message" | "internal-note" | "status-change";
|
|
187
187
|
preview: string | null;
|
|
@@ -212,14 +212,14 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
212
212
|
closedAt?: string | null | undefined;
|
|
213
213
|
recordMetadata?: {} | null | undefined;
|
|
214
214
|
status: "open" | "pending" | "closed";
|
|
215
|
+
priority: "low" | "normal" | "high" | "urgent";
|
|
216
|
+
subject: string;
|
|
215
217
|
conversationId: string;
|
|
216
218
|
userId: string | null;
|
|
217
219
|
teamId: string | null;
|
|
218
220
|
userDisplayName: string | null;
|
|
219
221
|
userPrimaryEmail: string | null;
|
|
220
222
|
userProfileImageUrl: string | null;
|
|
221
|
-
subject: string;
|
|
222
|
-
priority: "low" | "normal" | "high" | "urgent";
|
|
223
223
|
source: "email" | "manual" | "chat" | "api";
|
|
224
224
|
lastMessageType: "message" | "internal-note" | "status-change";
|
|
225
225
|
preview: string | null;
|
|
@@ -238,11 +238,11 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
238
238
|
messages: {
|
|
239
239
|
status: "open" | "pending" | "closed";
|
|
240
240
|
id: string;
|
|
241
|
+
priority: "low" | "normal" | "high" | "urgent";
|
|
242
|
+
subject: string;
|
|
241
243
|
conversationId: string;
|
|
242
244
|
userId: string | null;
|
|
243
245
|
teamId: string | null;
|
|
244
|
-
subject: string;
|
|
245
|
-
priority: "low" | "normal" | "high" | "urgent";
|
|
246
246
|
source: "email" | "manual" | "chat" | "api";
|
|
247
247
|
metadata: {} | null;
|
|
248
248
|
createdAt: 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
|
}[];
|
|
@@ -12,13 +12,13 @@ declare const currentUserCrud: CrudSchemaFromOptions<{
|
|
|
12
12
|
is_anonymous: boolean;
|
|
13
13
|
is_restricted: boolean;
|
|
14
14
|
requires_totp_mfa: boolean;
|
|
15
|
-
id: string;
|
|
16
15
|
display_name: string | null;
|
|
17
16
|
client_metadata: {} | null;
|
|
18
17
|
client_read_only_metadata: {} | null;
|
|
19
|
-
|
|
18
|
+
id: string;
|
|
20
19
|
profile_image_url: string | null;
|
|
21
20
|
signed_up_at_millis: number;
|
|
21
|
+
primary_email_verified: boolean;
|
|
22
22
|
has_password: boolean;
|
|
23
23
|
otp_auth_enabled: boolean;
|
|
24
24
|
passkey_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,10 +90,10 @@ 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
|
-
id: string;
|
|
94
93
|
display_name: string;
|
|
95
|
-
|
|
94
|
+
id: string;
|
|
96
95
|
created_at_millis: number;
|
|
96
|
+
profile_image_url: string | null;
|
|
97
97
|
} | null;
|
|
98
98
|
selected_team_id: string | null;
|
|
99
99
|
profile_image_url: string | null;
|
|
@@ -163,8 +163,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
163
163
|
id: string;
|
|
164
164
|
subject: string;
|
|
165
165
|
created_at_millis: number;
|
|
166
|
-
html: string | null;
|
|
167
|
-
text: string | null;
|
|
168
166
|
updated_at_millis: number;
|
|
169
167
|
tsx_source: string;
|
|
170
168
|
theme_id: string | null;
|
|
@@ -201,6 +199,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
201
199
|
has_delivered: boolean;
|
|
202
200
|
started_rendering_at_millis: number;
|
|
203
201
|
rendered_at_millis: number;
|
|
202
|
+
html: string | null;
|
|
203
|
+
text: string | null;
|
|
204
204
|
is_transactional: boolean;
|
|
205
205
|
is_high_priority: boolean;
|
|
206
206
|
notification_category_id: string | null;
|
|
@@ -209,8 +209,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
209
209
|
id: string;
|
|
210
210
|
subject: string;
|
|
211
211
|
created_at_millis: number;
|
|
212
|
-
html: string | null;
|
|
213
|
-
text: string | null;
|
|
214
212
|
updated_at_millis: number;
|
|
215
213
|
tsx_source: string;
|
|
216
214
|
theme_id: string | null;
|
|
@@ -247,6 +245,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
247
245
|
has_delivered: boolean;
|
|
248
246
|
started_rendering_at_millis: number;
|
|
249
247
|
rendered_at_millis: number;
|
|
248
|
+
html: string | null;
|
|
249
|
+
text: string | null;
|
|
250
250
|
is_transactional: boolean;
|
|
251
251
|
is_high_priority: boolean;
|
|
252
252
|
notification_category_id: string | null;
|
|
@@ -255,8 +255,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
255
255
|
id: string;
|
|
256
256
|
subject: string;
|
|
257
257
|
created_at_millis: number;
|
|
258
|
-
html: string | null;
|
|
259
|
-
text: string | null;
|
|
260
258
|
updated_at_millis: number;
|
|
261
259
|
tsx_source: string;
|
|
262
260
|
theme_id: string | null;
|
|
@@ -293,6 +291,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
293
291
|
has_delivered: boolean;
|
|
294
292
|
started_rendering_at_millis: number;
|
|
295
293
|
rendered_at_millis: number;
|
|
294
|
+
html: string | null;
|
|
295
|
+
text: string | null;
|
|
296
296
|
is_transactional: boolean;
|
|
297
297
|
is_high_priority: boolean;
|
|
298
298
|
notification_category_id: string | null;
|
|
@@ -302,8 +302,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
302
302
|
id: string;
|
|
303
303
|
subject: string;
|
|
304
304
|
created_at_millis: number;
|
|
305
|
-
html: string | null;
|
|
306
|
-
text: string | null;
|
|
307
305
|
updated_at_millis: number;
|
|
308
306
|
tsx_source: string;
|
|
309
307
|
theme_id: string | null;
|
|
@@ -340,6 +338,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
340
338
|
has_delivered: boolean;
|
|
341
339
|
started_rendering_at_millis: number;
|
|
342
340
|
rendered_at_millis: number;
|
|
341
|
+
html: string | null;
|
|
342
|
+
text: string | null;
|
|
343
343
|
is_transactional: boolean;
|
|
344
344
|
is_high_priority: boolean;
|
|
345
345
|
notification_category_id: string | null;
|
|
@@ -348,10 +348,10 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
348
348
|
server_error: string;
|
|
349
349
|
} | {
|
|
350
350
|
subject?: string | undefined;
|
|
351
|
-
html?: string | null | undefined;
|
|
352
|
-
text?: string | null | undefined;
|
|
353
351
|
started_rendering_at_millis?: number | undefined;
|
|
354
352
|
rendered_at_millis?: number | undefined;
|
|
353
|
+
html?: string | null | undefined;
|
|
354
|
+
text?: string | null | undefined;
|
|
355
355
|
is_transactional?: boolean | undefined;
|
|
356
356
|
is_high_priority?: boolean | undefined;
|
|
357
357
|
notification_category_id?: string | null | undefined;
|
|
@@ -401,8 +401,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
401
401
|
id: string;
|
|
402
402
|
subject: string;
|
|
403
403
|
created_at_millis: number;
|
|
404
|
-
html: string | null;
|
|
405
|
-
text: string | null;
|
|
406
404
|
updated_at_millis: number;
|
|
407
405
|
tsx_source: string;
|
|
408
406
|
theme_id: string | null;
|
|
@@ -439,6 +437,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
439
437
|
has_delivered: boolean;
|
|
440
438
|
started_rendering_at_millis: number;
|
|
441
439
|
rendered_at_millis: number;
|
|
440
|
+
html: string | null;
|
|
441
|
+
text: string | null;
|
|
442
442
|
is_transactional: boolean;
|
|
443
443
|
is_high_priority: boolean;
|
|
444
444
|
notification_category_id: string | null;
|
|
@@ -449,8 +449,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
449
449
|
id: string;
|
|
450
450
|
subject: string;
|
|
451
451
|
created_at_millis: number;
|
|
452
|
-
html: string | null;
|
|
453
|
-
text: string | null;
|
|
454
452
|
updated_at_millis: number;
|
|
455
453
|
tsx_source: string;
|
|
456
454
|
theme_id: string | null;
|
|
@@ -487,6 +485,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
487
485
|
has_delivered: boolean;
|
|
488
486
|
started_rendering_at_millis: number;
|
|
489
487
|
rendered_at_millis: number;
|
|
488
|
+
html: string | null;
|
|
489
|
+
text: string | null;
|
|
490
490
|
is_transactional: boolean;
|
|
491
491
|
is_high_priority: boolean;
|
|
492
492
|
notification_category_id: string | null;
|
|
@@ -497,8 +497,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
497
497
|
id: string;
|
|
498
498
|
subject: string;
|
|
499
499
|
created_at_millis: number;
|
|
500
|
-
html: string | null;
|
|
501
|
-
text: string | null;
|
|
502
500
|
updated_at_millis: number;
|
|
503
501
|
tsx_source: string;
|
|
504
502
|
theme_id: string | null;
|
|
@@ -535,6 +533,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
535
533
|
has_delivered: boolean;
|
|
536
534
|
started_rendering_at_millis: number;
|
|
537
535
|
rendered_at_millis: number;
|
|
536
|
+
html: string | null;
|
|
537
|
+
text: string | null;
|
|
538
538
|
is_transactional: boolean;
|
|
539
539
|
is_high_priority: boolean;
|
|
540
540
|
notification_category_id: string | null;
|
|
@@ -546,8 +546,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
546
546
|
id: string;
|
|
547
547
|
subject: string;
|
|
548
548
|
created_at_millis: number;
|
|
549
|
-
html: string | null;
|
|
550
|
-
text: string | null;
|
|
551
549
|
updated_at_millis: number;
|
|
552
550
|
tsx_source: string;
|
|
553
551
|
theme_id: string | null;
|
|
@@ -584,6 +582,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
584
582
|
has_delivered: boolean;
|
|
585
583
|
started_rendering_at_millis: number;
|
|
586
584
|
rendered_at_millis: number;
|
|
585
|
+
html: string | null;
|
|
586
|
+
text: string | null;
|
|
587
587
|
is_transactional: boolean;
|
|
588
588
|
is_high_priority: boolean;
|
|
589
589
|
notification_category_id: string | null;
|
|
@@ -596,8 +596,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
596
596
|
id: string;
|
|
597
597
|
subject: string;
|
|
598
598
|
created_at_millis: number;
|
|
599
|
-
html: string | null;
|
|
600
|
-
text: string | null;
|
|
601
599
|
updated_at_millis: number;
|
|
602
600
|
tsx_source: string;
|
|
603
601
|
theme_id: string | null;
|
|
@@ -634,6 +632,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
634
632
|
has_delivered: boolean;
|
|
635
633
|
started_rendering_at_millis: number;
|
|
636
634
|
rendered_at_millis: number;
|
|
635
|
+
html: string | null;
|
|
636
|
+
text: string | null;
|
|
637
637
|
is_transactional: boolean;
|
|
638
638
|
is_high_priority: boolean;
|
|
639
639
|
notification_category_id: string | null;
|
|
@@ -646,8 +646,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
646
646
|
id: string;
|
|
647
647
|
subject: string;
|
|
648
648
|
created_at_millis: number;
|
|
649
|
-
html: string | null;
|
|
650
|
-
text: string | null;
|
|
651
649
|
updated_at_millis: number;
|
|
652
650
|
tsx_source: string;
|
|
653
651
|
theme_id: string | null;
|
|
@@ -684,6 +682,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
684
682
|
has_delivered: boolean;
|
|
685
683
|
started_rendering_at_millis: number;
|
|
686
684
|
rendered_at_millis: number;
|
|
685
|
+
html: string | null;
|
|
686
|
+
text: string | null;
|
|
687
687
|
is_transactional: boolean;
|
|
688
688
|
is_high_priority: boolean;
|
|
689
689
|
notification_category_id: string | null;
|
|
@@ -883,8 +883,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
883
883
|
id: string;
|
|
884
884
|
subject: string;
|
|
885
885
|
created_at_millis: number;
|
|
886
|
-
html: string | null;
|
|
887
|
-
text: string | null;
|
|
888
886
|
updated_at_millis: number;
|
|
889
887
|
tsx_source: string;
|
|
890
888
|
theme_id: string | null;
|
|
@@ -921,6 +919,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
921
919
|
has_delivered: boolean;
|
|
922
920
|
started_rendering_at_millis: number;
|
|
923
921
|
rendered_at_millis: number;
|
|
922
|
+
html: string | null;
|
|
923
|
+
text: string | null;
|
|
924
924
|
is_transactional: boolean;
|
|
925
925
|
is_high_priority: boolean;
|
|
926
926
|
notification_category_id: string | null;
|
|
@@ -929,8 +929,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
929
929
|
id: string;
|
|
930
930
|
subject: string;
|
|
931
931
|
created_at_millis: number;
|
|
932
|
-
html: string | null;
|
|
933
|
-
text: string | null;
|
|
934
932
|
updated_at_millis: number;
|
|
935
933
|
tsx_source: string;
|
|
936
934
|
theme_id: string | null;
|
|
@@ -967,6 +965,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
967
965
|
has_delivered: boolean;
|
|
968
966
|
started_rendering_at_millis: number;
|
|
969
967
|
rendered_at_millis: number;
|
|
968
|
+
html: string | null;
|
|
969
|
+
text: string | null;
|
|
970
970
|
is_transactional: boolean;
|
|
971
971
|
is_high_priority: boolean;
|
|
972
972
|
notification_category_id: string | null;
|
|
@@ -975,8 +975,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
975
975
|
id: string;
|
|
976
976
|
subject: string;
|
|
977
977
|
created_at_millis: number;
|
|
978
|
-
html: string | null;
|
|
979
|
-
text: string | null;
|
|
980
978
|
updated_at_millis: number;
|
|
981
979
|
tsx_source: string;
|
|
982
980
|
theme_id: string | null;
|
|
@@ -1013,6 +1011,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1013
1011
|
has_delivered: boolean;
|
|
1014
1012
|
started_rendering_at_millis: number;
|
|
1015
1013
|
rendered_at_millis: number;
|
|
1014
|
+
html: string | null;
|
|
1015
|
+
text: string | null;
|
|
1016
1016
|
is_transactional: boolean;
|
|
1017
1017
|
is_high_priority: boolean;
|
|
1018
1018
|
notification_category_id: string | null;
|
|
@@ -1022,8 +1022,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1022
1022
|
id: string;
|
|
1023
1023
|
subject: string;
|
|
1024
1024
|
created_at_millis: number;
|
|
1025
|
-
html: string | null;
|
|
1026
|
-
text: string | null;
|
|
1027
1025
|
updated_at_millis: number;
|
|
1028
1026
|
tsx_source: string;
|
|
1029
1027
|
theme_id: string | null;
|
|
@@ -1060,6 +1058,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1060
1058
|
has_delivered: boolean;
|
|
1061
1059
|
started_rendering_at_millis: number;
|
|
1062
1060
|
rendered_at_millis: number;
|
|
1061
|
+
html: string | null;
|
|
1062
|
+
text: string | null;
|
|
1063
1063
|
is_transactional: boolean;
|
|
1064
1064
|
is_high_priority: boolean;
|
|
1065
1065
|
notification_category_id: string | null;
|
|
@@ -1068,10 +1068,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1068
1068
|
server_error: string;
|
|
1069
1069
|
} | {
|
|
1070
1070
|
subject?: string | undefined;
|
|
1071
|
-
html?: string | null | undefined;
|
|
1072
|
-
text?: string | null | undefined;
|
|
1073
1071
|
started_rendering_at_millis?: number | undefined;
|
|
1074
1072
|
rendered_at_millis?: number | undefined;
|
|
1073
|
+
html?: string | null | undefined;
|
|
1074
|
+
text?: string | null | undefined;
|
|
1075
1075
|
is_transactional?: boolean | undefined;
|
|
1076
1076
|
is_high_priority?: boolean | undefined;
|
|
1077
1077
|
notification_category_id?: string | null | undefined;
|
|
@@ -1121,8 +1121,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1121
1121
|
id: string;
|
|
1122
1122
|
subject: string;
|
|
1123
1123
|
created_at_millis: number;
|
|
1124
|
-
html: string | null;
|
|
1125
|
-
text: string | null;
|
|
1126
1124
|
updated_at_millis: number;
|
|
1127
1125
|
tsx_source: string;
|
|
1128
1126
|
theme_id: string | null;
|
|
@@ -1159,6 +1157,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1159
1157
|
has_delivered: boolean;
|
|
1160
1158
|
started_rendering_at_millis: number;
|
|
1161
1159
|
rendered_at_millis: number;
|
|
1160
|
+
html: string | null;
|
|
1161
|
+
text: string | null;
|
|
1162
1162
|
is_transactional: boolean;
|
|
1163
1163
|
is_high_priority: boolean;
|
|
1164
1164
|
notification_category_id: string | null;
|
|
@@ -1169,8 +1169,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1169
1169
|
id: string;
|
|
1170
1170
|
subject: string;
|
|
1171
1171
|
created_at_millis: number;
|
|
1172
|
-
html: string | null;
|
|
1173
|
-
text: string | null;
|
|
1174
1172
|
updated_at_millis: number;
|
|
1175
1173
|
tsx_source: string;
|
|
1176
1174
|
theme_id: string | null;
|
|
@@ -1207,6 +1205,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1207
1205
|
has_delivered: boolean;
|
|
1208
1206
|
started_rendering_at_millis: number;
|
|
1209
1207
|
rendered_at_millis: number;
|
|
1208
|
+
html: string | null;
|
|
1209
|
+
text: string | null;
|
|
1210
1210
|
is_transactional: boolean;
|
|
1211
1211
|
is_high_priority: boolean;
|
|
1212
1212
|
notification_category_id: string | null;
|
|
@@ -1217,8 +1217,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1217
1217
|
id: string;
|
|
1218
1218
|
subject: string;
|
|
1219
1219
|
created_at_millis: number;
|
|
1220
|
-
html: string | null;
|
|
1221
|
-
text: string | null;
|
|
1222
1220
|
updated_at_millis: number;
|
|
1223
1221
|
tsx_source: string;
|
|
1224
1222
|
theme_id: string | null;
|
|
@@ -1255,6 +1253,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1255
1253
|
has_delivered: boolean;
|
|
1256
1254
|
started_rendering_at_millis: number;
|
|
1257
1255
|
rendered_at_millis: number;
|
|
1256
|
+
html: string | null;
|
|
1257
|
+
text: string | null;
|
|
1258
1258
|
is_transactional: boolean;
|
|
1259
1259
|
is_high_priority: boolean;
|
|
1260
1260
|
notification_category_id: string | null;
|
|
@@ -1266,8 +1266,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1266
1266
|
id: string;
|
|
1267
1267
|
subject: string;
|
|
1268
1268
|
created_at_millis: number;
|
|
1269
|
-
html: string | null;
|
|
1270
|
-
text: string | null;
|
|
1271
1269
|
updated_at_millis: number;
|
|
1272
1270
|
tsx_source: string;
|
|
1273
1271
|
theme_id: string | null;
|
|
@@ -1304,6 +1302,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1304
1302
|
has_delivered: boolean;
|
|
1305
1303
|
started_rendering_at_millis: number;
|
|
1306
1304
|
rendered_at_millis: number;
|
|
1305
|
+
html: string | null;
|
|
1306
|
+
text: string | null;
|
|
1307
1307
|
is_transactional: boolean;
|
|
1308
1308
|
is_high_priority: boolean;
|
|
1309
1309
|
notification_category_id: string | null;
|
|
@@ -1316,8 +1316,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1316
1316
|
id: string;
|
|
1317
1317
|
subject: string;
|
|
1318
1318
|
created_at_millis: number;
|
|
1319
|
-
html: string | null;
|
|
1320
|
-
text: string | null;
|
|
1321
1319
|
updated_at_millis: number;
|
|
1322
1320
|
tsx_source: string;
|
|
1323
1321
|
theme_id: string | null;
|
|
@@ -1354,6 +1352,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1354
1352
|
has_delivered: boolean;
|
|
1355
1353
|
started_rendering_at_millis: number;
|
|
1356
1354
|
rendered_at_millis: number;
|
|
1355
|
+
html: string | null;
|
|
1356
|
+
text: string | null;
|
|
1357
1357
|
is_transactional: boolean;
|
|
1358
1358
|
is_high_priority: boolean;
|
|
1359
1359
|
notification_category_id: string | null;
|
|
@@ -1366,8 +1366,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1366
1366
|
id: string;
|
|
1367
1367
|
subject: string;
|
|
1368
1368
|
created_at_millis: number;
|
|
1369
|
-
html: string | null;
|
|
1370
|
-
text: string | null;
|
|
1371
1369
|
updated_at_millis: number;
|
|
1372
1370
|
tsx_source: string;
|
|
1373
1371
|
theme_id: string | null;
|
|
@@ -1404,6 +1402,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1404
1402
|
has_delivered: boolean;
|
|
1405
1403
|
started_rendering_at_millis: number;
|
|
1406
1404
|
rendered_at_millis: number;
|
|
1405
|
+
html: string | null;
|
|
1406
|
+
text: string | null;
|
|
1407
1407
|
is_transactional: boolean;
|
|
1408
1408
|
is_high_priority: boolean;
|
|
1409
1409
|
notification_category_id: string | null;
|
|
@@ -131,7 +131,6 @@ declare const customerProductsListResponseSchema: yup$1.ObjectSchema<{
|
|
|
131
131
|
};
|
|
132
132
|
}[] | undefined;
|
|
133
133
|
quantity: number;
|
|
134
|
-
id: string | null;
|
|
135
134
|
product: {
|
|
136
135
|
free_trial?: DayInterval | undefined;
|
|
137
136
|
client_metadata?: {} | null | undefined;
|
|
@@ -158,6 +157,7 @@ declare const customerProductsListResponseSchema: yup$1.ObjectSchema<{
|
|
|
158
157
|
expires?: "never" | "when-purchase-expires" | "when-repeated" | undefined;
|
|
159
158
|
}>;
|
|
160
159
|
};
|
|
160
|
+
id: string | null;
|
|
161
161
|
}[];
|
|
162
162
|
is_paginated: boolean;
|
|
163
163
|
pagination: {
|
|
@@ -80,8 +80,8 @@ declare const userApiKeysCrud: CrudSchemaFromOptions<{
|
|
|
80
80
|
}, "">, userApiKeysCreateOutputSchema: yup$1.ObjectSchema<{
|
|
81
81
|
user_id: string;
|
|
82
82
|
type: "user";
|
|
83
|
-
id: string;
|
|
84
83
|
description: string;
|
|
84
|
+
id: string;
|
|
85
85
|
created_at_millis: number;
|
|
86
86
|
expires_at_millis: number | undefined;
|
|
87
87
|
manually_revoked_at_millis: number | undefined;
|
|
@@ -178,8 +178,8 @@ declare const teamApiKeysCrud: CrudSchemaFromOptions<{
|
|
|
178
178
|
}, "">, teamApiKeysCreateOutputSchema: yup$1.ObjectSchema<{
|
|
179
179
|
type: "team";
|
|
180
180
|
team_id: string;
|
|
181
|
-
id: string;
|
|
182
181
|
description: string;
|
|
182
|
+
id: string;
|
|
183
183
|
created_at_millis: number;
|
|
184
184
|
expires_at_millis: number | undefined;
|
|
185
185
|
manually_revoked_at_millis: number | undefined;
|
|
@@ -56,6 +56,10 @@ declare const projectsCrudAdminReadSchema: yup$1.ObjectSchema<{
|
|
|
56
56
|
selected_payments_country: "US" | "OTHER";
|
|
57
57
|
} | null | undefined;
|
|
58
58
|
config: {
|
|
59
|
+
domains: {
|
|
60
|
+
domain: string;
|
|
61
|
+
handler_path: string;
|
|
62
|
+
}[];
|
|
59
63
|
oauth_providers: {
|
|
60
64
|
client_id?: string | undefined;
|
|
61
65
|
client_secret?: string | undefined;
|
|
@@ -66,10 +70,6 @@ declare const projectsCrudAdminReadSchema: yup$1.ObjectSchema<{
|
|
|
66
70
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
67
71
|
provider_config_id: string;
|
|
68
72
|
}[];
|
|
69
|
-
domains: {
|
|
70
|
-
domain: string;
|
|
71
|
-
handler_path: string;
|
|
72
|
-
}[];
|
|
73
73
|
allow_localhost: boolean;
|
|
74
74
|
sign_up_enabled: boolean;
|
|
75
75
|
credential_enabled: boolean;
|
|
@@ -209,6 +209,10 @@ declare const projectsCrudAdminUpdateSchema: yup$1.ObjectSchema<{
|
|
|
209
209
|
selected_payments_country: "US" | "OTHER";
|
|
210
210
|
} | null | undefined;
|
|
211
211
|
config: {
|
|
212
|
+
domains?: {
|
|
213
|
+
domain: string;
|
|
214
|
+
handler_path: string;
|
|
215
|
+
}[] | undefined;
|
|
212
216
|
oauth_providers?: {
|
|
213
217
|
client_id?: string | undefined;
|
|
214
218
|
client_secret?: string | undefined;
|
|
@@ -218,10 +222,6 @@ declare const projectsCrudAdminUpdateSchema: yup$1.ObjectSchema<{
|
|
|
218
222
|
type: "shared" | "standard";
|
|
219
223
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
220
224
|
}[] | undefined;
|
|
221
|
-
domains?: {
|
|
222
|
-
domain: string;
|
|
223
|
-
handler_path: string;
|
|
224
|
-
}[] | undefined;
|
|
225
225
|
allow_localhost?: boolean | undefined;
|
|
226
226
|
sign_up_enabled?: boolean | undefined;
|
|
227
227
|
credential_enabled?: boolean | undefined;
|
|
@@ -289,6 +289,10 @@ declare const projectsCrudAdminCreateSchema: yup$1.ObjectSchema<{
|
|
|
289
289
|
selected_payments_country: "US" | "OTHER";
|
|
290
290
|
} | null | undefined;
|
|
291
291
|
config: {
|
|
292
|
+
domains?: {
|
|
293
|
+
domain: string;
|
|
294
|
+
handler_path: string;
|
|
295
|
+
}[] | undefined;
|
|
292
296
|
oauth_providers?: {
|
|
293
297
|
client_id?: string | undefined;
|
|
294
298
|
client_secret?: string | undefined;
|
|
@@ -298,10 +302,6 @@ declare const projectsCrudAdminCreateSchema: yup$1.ObjectSchema<{
|
|
|
298
302
|
type: "shared" | "standard";
|
|
299
303
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
300
304
|
}[] | undefined;
|
|
301
|
-
domains?: {
|
|
302
|
-
domain: string;
|
|
303
|
-
handler_path: string;
|
|
304
|
-
}[] | undefined;
|
|
305
305
|
allow_localhost?: boolean | undefined;
|
|
306
306
|
sign_up_enabled?: boolean | undefined;
|
|
307
307
|
credential_enabled?: boolean | undefined;
|
|
@@ -429,6 +429,10 @@ declare const projectsCrud: CrudSchemaFromOptions<{
|
|
|
429
429
|
selected_payments_country: "US" | "OTHER";
|
|
430
430
|
} | null | undefined;
|
|
431
431
|
config: {
|
|
432
|
+
domains: {
|
|
433
|
+
domain: string;
|
|
434
|
+
handler_path: string;
|
|
435
|
+
}[];
|
|
432
436
|
oauth_providers: {
|
|
433
437
|
client_id?: string | undefined;
|
|
434
438
|
client_secret?: string | undefined;
|
|
@@ -439,10 +443,6 @@ declare const projectsCrud: CrudSchemaFromOptions<{
|
|
|
439
443
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
440
444
|
provider_config_id: string;
|
|
441
445
|
}[];
|
|
442
|
-
domains: {
|
|
443
|
-
domain: string;
|
|
444
|
-
handler_path: string;
|
|
445
|
-
}[];
|
|
446
446
|
allow_localhost: boolean;
|
|
447
447
|
sign_up_enabled: boolean;
|
|
448
448
|
credential_enabled: boolean;
|
|
@@ -544,6 +544,10 @@ declare const projectsCrud: CrudSchemaFromOptions<{
|
|
|
544
544
|
selected_payments_country: "US" | "OTHER";
|
|
545
545
|
} | null | undefined;
|
|
546
546
|
config: {
|
|
547
|
+
domains?: {
|
|
548
|
+
domain: string;
|
|
549
|
+
handler_path: string;
|
|
550
|
+
}[] | undefined;
|
|
547
551
|
oauth_providers?: {
|
|
548
552
|
client_id?: string | undefined;
|
|
549
553
|
client_secret?: string | undefined;
|
|
@@ -553,10 +557,6 @@ declare const projectsCrud: CrudSchemaFromOptions<{
|
|
|
553
557
|
type: "shared" | "standard";
|
|
554
558
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
555
559
|
}[] | undefined;
|
|
556
|
-
domains?: {
|
|
557
|
-
domain: string;
|
|
558
|
-
handler_path: string;
|
|
559
|
-
}[] | undefined;
|
|
560
560
|
allow_localhost?: boolean | undefined;
|
|
561
561
|
sign_up_enabled?: boolean | undefined;
|
|
562
562
|
credential_enabled?: boolean | undefined;
|
|
@@ -652,6 +652,10 @@ declare const adminUserProjectsCrud: CrudSchemaFromOptions<{
|
|
|
652
652
|
selected_payments_country: "US" | "OTHER";
|
|
653
653
|
} | null | undefined;
|
|
654
654
|
config: {
|
|
655
|
+
domains: {
|
|
656
|
+
domain: string;
|
|
657
|
+
handler_path: string;
|
|
658
|
+
}[];
|
|
655
659
|
oauth_providers: {
|
|
656
660
|
client_id?: string | undefined;
|
|
657
661
|
client_secret?: string | undefined;
|
|
@@ -662,10 +666,6 @@ declare const adminUserProjectsCrud: CrudSchemaFromOptions<{
|
|
|
662
666
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
663
667
|
provider_config_id: string;
|
|
664
668
|
}[];
|
|
665
|
-
domains: {
|
|
666
|
-
domain: string;
|
|
667
|
-
handler_path: string;
|
|
668
|
-
}[];
|
|
669
669
|
allow_localhost: boolean;
|
|
670
670
|
sign_up_enabled: boolean;
|
|
671
671
|
credential_enabled: boolean;
|
|
@@ -767,6 +767,10 @@ declare const adminUserProjectsCrud: CrudSchemaFromOptions<{
|
|
|
767
767
|
selected_payments_country: "US" | "OTHER";
|
|
768
768
|
} | null | undefined;
|
|
769
769
|
config: {
|
|
770
|
+
domains?: {
|
|
771
|
+
domain: string;
|
|
772
|
+
handler_path: string;
|
|
773
|
+
}[] | undefined;
|
|
770
774
|
oauth_providers?: {
|
|
771
775
|
client_id?: string | undefined;
|
|
772
776
|
client_secret?: string | undefined;
|
|
@@ -776,10 +780,6 @@ declare const adminUserProjectsCrud: CrudSchemaFromOptions<{
|
|
|
776
780
|
type: "shared" | "standard";
|
|
777
781
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
778
782
|
}[] | undefined;
|
|
779
|
-
domains?: {
|
|
780
|
-
domain: string;
|
|
781
|
-
handler_path: string;
|
|
782
|
-
}[] | undefined;
|
|
783
783
|
allow_localhost?: boolean | undefined;
|
|
784
784
|
sign_up_enabled?: boolean | undefined;
|
|
785
785
|
credential_enabled?: boolean | undefined;
|