@dragonmastery/dragoncore-shared 0.0.24 → 0.0.26
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/index.d.mts +101 -93
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -147,12 +147,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
147
147
|
updated_at?: string | null | undefined;
|
|
148
148
|
updated_by?: string | null | undefined;
|
|
149
149
|
metadata?: string | null | undefined;
|
|
150
|
-
parent_folder_id?: string | null | undefined;
|
|
151
|
-
file_count?: number | undefined;
|
|
152
150
|
archived_at?: string | null | undefined;
|
|
153
151
|
archived_by?: string | null | undefined;
|
|
154
152
|
deleted_at?: string | null | undefined;
|
|
155
153
|
deleted_by?: string | null | undefined;
|
|
154
|
+
parent_folder_id?: string | null | undefined;
|
|
155
|
+
file_count?: number | undefined;
|
|
156
156
|
}, {
|
|
157
157
|
created_at: string;
|
|
158
158
|
created_by: string;
|
|
@@ -165,12 +165,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
165
165
|
updated_at?: string | null | undefined;
|
|
166
166
|
updated_by?: string | null | undefined;
|
|
167
167
|
metadata?: string | null | undefined;
|
|
168
|
-
parent_folder_id?: string | null | undefined;
|
|
169
|
-
file_count?: number | undefined;
|
|
170
168
|
archived_at?: string | null | undefined;
|
|
171
169
|
archived_by?: string | null | undefined;
|
|
172
170
|
deleted_at?: string | null | undefined;
|
|
173
171
|
deleted_by?: string | null | undefined;
|
|
172
|
+
parent_folder_id?: string | null | undefined;
|
|
173
|
+
file_count?: number | undefined;
|
|
174
174
|
}>;
|
|
175
175
|
type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
|
|
176
176
|
//#endregion
|
|
@@ -193,8 +193,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
193
193
|
content_type: string;
|
|
194
194
|
file_size: string;
|
|
195
195
|
description?: string | null | undefined;
|
|
196
|
-
folder_id?: string | null | undefined;
|
|
197
196
|
metadata?: string | null | undefined;
|
|
197
|
+
folder_id?: string | null | undefined;
|
|
198
198
|
}, {
|
|
199
199
|
record_id: string;
|
|
200
200
|
record_type: string;
|
|
@@ -203,8 +203,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
203
203
|
content_type: string;
|
|
204
204
|
file_size: string;
|
|
205
205
|
description?: string | null | undefined;
|
|
206
|
-
folder_id?: string | null | undefined;
|
|
207
206
|
metadata?: string | null | undefined;
|
|
207
|
+
folder_id?: string | null | undefined;
|
|
208
208
|
}>;
|
|
209
209
|
type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
|
|
210
210
|
declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
@@ -224,23 +224,23 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
224
224
|
description?: string | null | undefined;
|
|
225
225
|
record_id?: string | undefined;
|
|
226
226
|
record_type?: string | undefined;
|
|
227
|
-
folder_id?: string | null | undefined;
|
|
228
227
|
sanitized_name?: string | undefined;
|
|
229
228
|
original_name?: string | undefined;
|
|
230
|
-
metadata?: string | null | undefined;
|
|
231
229
|
content_type?: string | undefined;
|
|
232
230
|
file_size?: string | undefined;
|
|
231
|
+
metadata?: string | null | undefined;
|
|
232
|
+
folder_id?: string | null | undefined;
|
|
233
233
|
}, {
|
|
234
234
|
id: string;
|
|
235
235
|
description?: string | null | undefined;
|
|
236
236
|
record_id?: string | undefined;
|
|
237
237
|
record_type?: string | undefined;
|
|
238
|
-
folder_id?: string | null | undefined;
|
|
239
238
|
sanitized_name?: string | undefined;
|
|
240
239
|
original_name?: string | undefined;
|
|
241
|
-
metadata?: string | null | undefined;
|
|
242
240
|
content_type?: string | undefined;
|
|
243
241
|
file_size?: string | undefined;
|
|
242
|
+
metadata?: string | null | undefined;
|
|
243
|
+
folder_id?: string | null | undefined;
|
|
244
244
|
}>;
|
|
245
245
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
246
246
|
//#endregion
|
|
@@ -279,8 +279,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
279
279
|
description?: string | null | undefined;
|
|
280
280
|
updated_at?: string | null | undefined;
|
|
281
281
|
updated_by?: string | null | undefined;
|
|
282
|
-
folder_id?: string | null | undefined;
|
|
283
282
|
metadata?: string | null | undefined;
|
|
283
|
+
folder_id?: string | null | undefined;
|
|
284
284
|
archived_at?: string | null | undefined;
|
|
285
285
|
archived_by?: string | null | undefined;
|
|
286
286
|
deleted_at?: string | null | undefined;
|
|
@@ -298,8 +298,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
298
298
|
description?: string | null | undefined;
|
|
299
299
|
updated_at?: string | null | undefined;
|
|
300
300
|
updated_by?: string | null | undefined;
|
|
301
|
-
folder_id?: string | null | undefined;
|
|
302
301
|
metadata?: string | null | undefined;
|
|
302
|
+
folder_id?: string | null | undefined;
|
|
303
303
|
archived_at?: string | null | undefined;
|
|
304
304
|
archived_by?: string | null | undefined;
|
|
305
305
|
deleted_at?: string | null | undefined;
|
|
@@ -336,12 +336,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
336
336
|
updated_at?: string | null | undefined;
|
|
337
337
|
updated_by?: string | null | undefined;
|
|
338
338
|
metadata?: string | null | undefined;
|
|
339
|
-
parent_folder_id?: string | null | undefined;
|
|
340
|
-
file_count?: number | undefined;
|
|
341
339
|
archived_at?: string | null | undefined;
|
|
342
340
|
archived_by?: string | null | undefined;
|
|
343
341
|
deleted_at?: string | null | undefined;
|
|
344
342
|
deleted_by?: string | null | undefined;
|
|
343
|
+
parent_folder_id?: string | null | undefined;
|
|
344
|
+
file_count?: number | undefined;
|
|
345
345
|
}, {
|
|
346
346
|
created_at: string;
|
|
347
347
|
created_by: string;
|
|
@@ -354,12 +354,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
354
354
|
updated_at?: string | null | undefined;
|
|
355
355
|
updated_by?: string | null | undefined;
|
|
356
356
|
metadata?: string | null | undefined;
|
|
357
|
-
parent_folder_id?: string | null | undefined;
|
|
358
|
-
file_count?: number | undefined;
|
|
359
357
|
archived_at?: string | null | undefined;
|
|
360
358
|
archived_by?: string | null | undefined;
|
|
361
359
|
deleted_at?: string | null | undefined;
|
|
362
360
|
deleted_by?: string | null | undefined;
|
|
361
|
+
parent_folder_id?: string | null | undefined;
|
|
362
|
+
file_count?: number | undefined;
|
|
363
363
|
}>, "many">;
|
|
364
364
|
pageInfo: z.ZodObject<{
|
|
365
365
|
hasNextPage: z.ZodBoolean;
|
|
@@ -389,8 +389,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
389
389
|
description?: string | null | undefined;
|
|
390
390
|
updated_at?: string | null | undefined;
|
|
391
391
|
updated_by?: string | null | undefined;
|
|
392
|
-
folder_id?: string | null | undefined;
|
|
393
392
|
metadata?: string | null | undefined;
|
|
393
|
+
folder_id?: string | null | undefined;
|
|
394
394
|
archived_at?: string | null | undefined;
|
|
395
395
|
archived_by?: string | null | undefined;
|
|
396
396
|
deleted_at?: string | null | undefined;
|
|
@@ -408,12 +408,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
408
408
|
updated_at?: string | null | undefined;
|
|
409
409
|
updated_by?: string | null | undefined;
|
|
410
410
|
metadata?: string | null | undefined;
|
|
411
|
-
parent_folder_id?: string | null | undefined;
|
|
412
|
-
file_count?: number | undefined;
|
|
413
411
|
archived_at?: string | null | undefined;
|
|
414
412
|
archived_by?: string | null | undefined;
|
|
415
413
|
deleted_at?: string | null | undefined;
|
|
416
414
|
deleted_by?: string | null | undefined;
|
|
415
|
+
parent_folder_id?: string | null | undefined;
|
|
416
|
+
file_count?: number | undefined;
|
|
417
417
|
}[];
|
|
418
418
|
}, {
|
|
419
419
|
pageInfo: {
|
|
@@ -433,8 +433,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
433
433
|
description?: string | null | undefined;
|
|
434
434
|
updated_at?: string | null | undefined;
|
|
435
435
|
updated_by?: string | null | undefined;
|
|
436
|
-
folder_id?: string | null | undefined;
|
|
437
436
|
metadata?: string | null | undefined;
|
|
437
|
+
folder_id?: string | null | undefined;
|
|
438
438
|
archived_at?: string | null | undefined;
|
|
439
439
|
archived_by?: string | null | undefined;
|
|
440
440
|
deleted_at?: string | null | undefined;
|
|
@@ -452,12 +452,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
452
452
|
updated_at?: string | null | undefined;
|
|
453
453
|
updated_by?: string | null | undefined;
|
|
454
454
|
metadata?: string | null | undefined;
|
|
455
|
-
parent_folder_id?: string | null | undefined;
|
|
456
|
-
file_count?: number | undefined;
|
|
457
455
|
archived_at?: string | null | undefined;
|
|
458
456
|
archived_by?: string | null | undefined;
|
|
459
457
|
deleted_at?: string | null | undefined;
|
|
460
458
|
deleted_by?: string | null | undefined;
|
|
459
|
+
parent_folder_id?: string | null | undefined;
|
|
460
|
+
file_count?: number | undefined;
|
|
461
461
|
}[];
|
|
462
462
|
}>;
|
|
463
463
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -496,8 +496,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
496
496
|
description?: string | null | undefined;
|
|
497
497
|
updated_at?: string | null | undefined;
|
|
498
498
|
updated_by?: string | null | undefined;
|
|
499
|
-
folder_id?: string | null | undefined;
|
|
500
499
|
metadata?: string | null | undefined;
|
|
500
|
+
folder_id?: string | null | undefined;
|
|
501
501
|
archived_at?: string | null | undefined;
|
|
502
502
|
archived_by?: string | null | undefined;
|
|
503
503
|
deleted_at?: string | null | undefined;
|
|
@@ -515,8 +515,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
515
515
|
description?: string | null | undefined;
|
|
516
516
|
updated_at?: string | null | undefined;
|
|
517
517
|
updated_by?: string | null | undefined;
|
|
518
|
-
folder_id?: string | null | undefined;
|
|
519
518
|
metadata?: string | null | undefined;
|
|
519
|
+
folder_id?: string | null | undefined;
|
|
520
520
|
archived_at?: string | null | undefined;
|
|
521
521
|
archived_by?: string | null | undefined;
|
|
522
522
|
deleted_at?: string | null | undefined;
|
|
@@ -2122,9 +2122,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2122
2122
|
archived_by?: string | null | undefined;
|
|
2123
2123
|
deleted_at?: string | null | undefined;
|
|
2124
2124
|
deleted_by?: string | null | undefined;
|
|
2125
|
-
tag?: string | null | undefined;
|
|
2126
2125
|
title?: string | null | undefined;
|
|
2127
2126
|
body?: string | null | undefined;
|
|
2127
|
+
tag?: string | null | undefined;
|
|
2128
2128
|
original_id?: number | null | undefined;
|
|
2129
2129
|
created_by_display_name?: string | null | undefined;
|
|
2130
2130
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2141,9 +2141,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2141
2141
|
archived_by?: string | null | undefined;
|
|
2142
2142
|
deleted_at?: string | null | undefined;
|
|
2143
2143
|
deleted_by?: string | null | undefined;
|
|
2144
|
-
tag?: string | null | undefined;
|
|
2145
2144
|
title?: string | null | undefined;
|
|
2146
2145
|
body?: string | null | undefined;
|
|
2146
|
+
tag?: string | null | undefined;
|
|
2147
2147
|
original_id?: number | null | undefined;
|
|
2148
2148
|
created_by_display_name?: string | null | undefined;
|
|
2149
2149
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2163,18 +2163,18 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2163
2163
|
record_id: string;
|
|
2164
2164
|
record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
2165
2165
|
is_internal: boolean;
|
|
2166
|
-
tag?: string | null | undefined;
|
|
2167
2166
|
title?: string | null | undefined;
|
|
2168
2167
|
body?: string | null | undefined;
|
|
2168
|
+
tag?: string | null | undefined;
|
|
2169
2169
|
original_id?: number | null | undefined;
|
|
2170
2170
|
}, {
|
|
2171
2171
|
record_id: string;
|
|
2172
2172
|
record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
2173
|
-
tag?: string | null | undefined;
|
|
2174
2173
|
title?: string | null | undefined;
|
|
2175
2174
|
body?: string | null | undefined;
|
|
2176
|
-
|
|
2175
|
+
tag?: string | null | undefined;
|
|
2177
2176
|
is_internal?: boolean | undefined;
|
|
2177
|
+
original_id?: number | null | undefined;
|
|
2178
2178
|
}>;
|
|
2179
2179
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2180
2180
|
//#endregion
|
|
@@ -2192,20 +2192,20 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2192
2192
|
id: string;
|
|
2193
2193
|
record_id?: string | undefined;
|
|
2194
2194
|
record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
|
|
2195
|
-
tag?: string | null | undefined;
|
|
2196
2195
|
title?: string | null | undefined;
|
|
2197
2196
|
body?: string | null | undefined;
|
|
2198
|
-
|
|
2197
|
+
tag?: string | null | undefined;
|
|
2199
2198
|
is_internal?: boolean | undefined;
|
|
2199
|
+
original_id?: number | null | undefined;
|
|
2200
2200
|
}, {
|
|
2201
2201
|
id: string;
|
|
2202
2202
|
record_id?: string | undefined;
|
|
2203
2203
|
record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
|
|
2204
|
-
tag?: string | null | undefined;
|
|
2205
2204
|
title?: string | null | undefined;
|
|
2206
2205
|
body?: string | null | undefined;
|
|
2207
|
-
|
|
2206
|
+
tag?: string | null | undefined;
|
|
2208
2207
|
is_internal?: boolean | undefined;
|
|
2208
|
+
original_id?: number | null | undefined;
|
|
2209
2209
|
}>;
|
|
2210
2210
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2211
2211
|
//#endregion
|
|
@@ -2620,19 +2620,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2620
2620
|
values?: any[] | undefined;
|
|
2621
2621
|
caseSensitive?: boolean | undefined;
|
|
2622
2622
|
} | undefined;
|
|
2623
|
-
|
|
2623
|
+
title?: {
|
|
2624
2624
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2625
2625
|
value?: string | undefined;
|
|
2626
2626
|
values?: string[] | undefined;
|
|
2627
2627
|
caseSensitive?: boolean | undefined;
|
|
2628
2628
|
} | undefined;
|
|
2629
|
-
|
|
2629
|
+
body?: {
|
|
2630
2630
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2631
2631
|
value?: string | undefined;
|
|
2632
2632
|
values?: string[] | undefined;
|
|
2633
2633
|
caseSensitive?: boolean | undefined;
|
|
2634
2634
|
} | undefined;
|
|
2635
|
-
|
|
2635
|
+
tag?: {
|
|
2636
2636
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2637
2637
|
value?: string | undefined;
|
|
2638
2638
|
values?: string[] | undefined;
|
|
@@ -2698,19 +2698,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2698
2698
|
values?: any[] | undefined;
|
|
2699
2699
|
caseSensitive?: boolean | undefined;
|
|
2700
2700
|
} | undefined;
|
|
2701
|
-
|
|
2701
|
+
title?: {
|
|
2702
2702
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2703
2703
|
value?: string | undefined;
|
|
2704
2704
|
values?: string[] | undefined;
|
|
2705
2705
|
caseSensitive?: boolean | undefined;
|
|
2706
2706
|
} | undefined;
|
|
2707
|
-
|
|
2707
|
+
body?: {
|
|
2708
2708
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2709
2709
|
value?: string | undefined;
|
|
2710
2710
|
values?: string[] | undefined;
|
|
2711
2711
|
caseSensitive?: boolean | undefined;
|
|
2712
2712
|
} | undefined;
|
|
2713
|
-
|
|
2713
|
+
tag?: {
|
|
2714
2714
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2715
2715
|
value?: string | undefined;
|
|
2716
2716
|
values?: string[] | undefined;
|
|
@@ -8291,14 +8291,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8291
8291
|
url?: string | null | undefined;
|
|
8292
8292
|
unique_name?: string | null | undefined;
|
|
8293
8293
|
legal_name?: string | null | undefined;
|
|
8294
|
-
contact_email?: string | null | undefined;
|
|
8295
|
-
address_city?: string | null | undefined;
|
|
8296
|
-
address_zip?: string | null | undefined;
|
|
8297
8294
|
contact_name?: string | null | undefined;
|
|
8295
|
+
contact_email?: string | null | undefined;
|
|
8298
8296
|
contact_business_phone?: string | null | undefined;
|
|
8299
8297
|
contact_mobile_phone?: string | null | undefined;
|
|
8300
8298
|
contact_time_zone?: string | null | undefined;
|
|
8301
8299
|
address_full?: string | null | undefined;
|
|
8300
|
+
address_city?: string | null | undefined;
|
|
8301
|
+
address_zip?: string | null | undefined;
|
|
8302
8302
|
twitter_username?: string | null | undefined;
|
|
8303
8303
|
logo?: string | null | undefined;
|
|
8304
8304
|
email_sent_from?: string | null | undefined;
|
|
@@ -8309,14 +8309,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8309
8309
|
url?: string | null | undefined;
|
|
8310
8310
|
unique_name?: string | null | undefined;
|
|
8311
8311
|
legal_name?: string | null | undefined;
|
|
8312
|
-
contact_email?: string | null | undefined;
|
|
8313
|
-
address_city?: string | null | undefined;
|
|
8314
|
-
address_zip?: string | null | undefined;
|
|
8315
8312
|
contact_name?: string | null | undefined;
|
|
8313
|
+
contact_email?: string | null | undefined;
|
|
8316
8314
|
contact_business_phone?: string | null | undefined;
|
|
8317
8315
|
contact_mobile_phone?: string | null | undefined;
|
|
8318
8316
|
contact_time_zone?: string | null | undefined;
|
|
8319
8317
|
address_full?: string | null | undefined;
|
|
8318
|
+
address_city?: string | null | undefined;
|
|
8319
|
+
address_zip?: string | null | undefined;
|
|
8320
8320
|
twitter_username?: string | null | undefined;
|
|
8321
8321
|
logo?: string | null | undefined;
|
|
8322
8322
|
email_sent_from?: string | null | undefined;
|
|
@@ -8346,14 +8346,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8346
8346
|
url?: string | null | undefined;
|
|
8347
8347
|
unique_name?: string | null | undefined;
|
|
8348
8348
|
legal_name?: string | null | undefined;
|
|
8349
|
-
contact_email?: string | null | undefined;
|
|
8350
|
-
address_city?: string | null | undefined;
|
|
8351
|
-
address_zip?: string | null | undefined;
|
|
8352
8349
|
contact_name?: string | null | undefined;
|
|
8350
|
+
contact_email?: string | null | undefined;
|
|
8353
8351
|
contact_business_phone?: string | null | undefined;
|
|
8354
8352
|
contact_mobile_phone?: string | null | undefined;
|
|
8355
8353
|
contact_time_zone?: string | null | undefined;
|
|
8356
8354
|
address_full?: string | null | undefined;
|
|
8355
|
+
address_city?: string | null | undefined;
|
|
8356
|
+
address_zip?: string | null | undefined;
|
|
8357
8357
|
twitter_username?: string | null | undefined;
|
|
8358
8358
|
logo?: string | null | undefined;
|
|
8359
8359
|
email_sent_from?: string | null | undefined;
|
|
@@ -8364,14 +8364,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8364
8364
|
url?: string | null | undefined;
|
|
8365
8365
|
unique_name?: string | null | undefined;
|
|
8366
8366
|
legal_name?: string | null | undefined;
|
|
8367
|
-
contact_email?: string | null | undefined;
|
|
8368
|
-
address_city?: string | null | undefined;
|
|
8369
|
-
address_zip?: string | null | undefined;
|
|
8370
8367
|
contact_name?: string | null | undefined;
|
|
8368
|
+
contact_email?: string | null | undefined;
|
|
8371
8369
|
contact_business_phone?: string | null | undefined;
|
|
8372
8370
|
contact_mobile_phone?: string | null | undefined;
|
|
8373
8371
|
contact_time_zone?: string | null | undefined;
|
|
8374
8372
|
address_full?: string | null | undefined;
|
|
8373
|
+
address_city?: string | null | undefined;
|
|
8374
|
+
address_zip?: string | null | undefined;
|
|
8375
8375
|
twitter_username?: string | null | undefined;
|
|
8376
8376
|
logo?: string | null | undefined;
|
|
8377
8377
|
email_sent_from?: string | null | undefined;
|
|
@@ -8405,14 +8405,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8405
8405
|
url?: string | null | undefined;
|
|
8406
8406
|
unique_name?: string | null | undefined;
|
|
8407
8407
|
legal_name?: string | null | undefined;
|
|
8408
|
-
contact_email?: string | null | undefined;
|
|
8409
|
-
address_city?: string | null | undefined;
|
|
8410
|
-
address_zip?: string | null | undefined;
|
|
8411
8408
|
contact_name?: string | null | undefined;
|
|
8409
|
+
contact_email?: string | null | undefined;
|
|
8412
8410
|
contact_business_phone?: string | null | undefined;
|
|
8413
8411
|
contact_mobile_phone?: string | null | undefined;
|
|
8414
8412
|
contact_time_zone?: string | null | undefined;
|
|
8415
8413
|
address_full?: string | null | undefined;
|
|
8414
|
+
address_city?: string | null | undefined;
|
|
8415
|
+
address_zip?: string | null | undefined;
|
|
8416
8416
|
twitter_username?: string | null | undefined;
|
|
8417
8417
|
logo?: string | null | undefined;
|
|
8418
8418
|
email_sent_from?: string | null | undefined;
|
|
@@ -8424,14 +8424,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8424
8424
|
url?: string | null | undefined;
|
|
8425
8425
|
unique_name?: string | null | undefined;
|
|
8426
8426
|
legal_name?: string | null | undefined;
|
|
8427
|
-
contact_email?: string | null | undefined;
|
|
8428
|
-
address_city?: string | null | undefined;
|
|
8429
|
-
address_zip?: string | null | undefined;
|
|
8430
8427
|
contact_name?: string | null | undefined;
|
|
8428
|
+
contact_email?: string | null | undefined;
|
|
8431
8429
|
contact_business_phone?: string | null | undefined;
|
|
8432
8430
|
contact_mobile_phone?: string | null | undefined;
|
|
8433
8431
|
contact_time_zone?: string | null | undefined;
|
|
8434
8432
|
address_full?: string | null | undefined;
|
|
8433
|
+
address_city?: string | null | undefined;
|
|
8434
|
+
address_zip?: string | null | undefined;
|
|
8435
8435
|
twitter_username?: string | null | undefined;
|
|
8436
8436
|
logo?: string | null | undefined;
|
|
8437
8437
|
email_sent_from?: string | null | undefined;
|
|
@@ -8488,14 +8488,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8488
8488
|
updated_by_display_name?: string | null | undefined;
|
|
8489
8489
|
unique_name?: string | null | undefined;
|
|
8490
8490
|
legal_name?: string | null | undefined;
|
|
8491
|
-
contact_email?: string | null | undefined;
|
|
8492
|
-
address_city?: string | null | undefined;
|
|
8493
|
-
address_zip?: string | null | undefined;
|
|
8494
8491
|
contact_name?: string | null | undefined;
|
|
8492
|
+
contact_email?: string | null | undefined;
|
|
8495
8493
|
contact_business_phone?: string | null | undefined;
|
|
8496
8494
|
contact_mobile_phone?: string | null | undefined;
|
|
8497
8495
|
contact_time_zone?: string | null | undefined;
|
|
8498
8496
|
address_full?: string | null | undefined;
|
|
8497
|
+
address_city?: string | null | undefined;
|
|
8498
|
+
address_zip?: string | null | undefined;
|
|
8499
8499
|
twitter_username?: string | null | undefined;
|
|
8500
8500
|
logo?: string | null | undefined;
|
|
8501
8501
|
email_sent_from?: string | null | undefined;
|
|
@@ -8517,14 +8517,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8517
8517
|
updated_by_display_name?: string | null | undefined;
|
|
8518
8518
|
unique_name?: string | null | undefined;
|
|
8519
8519
|
legal_name?: string | null | undefined;
|
|
8520
|
-
contact_email?: string | null | undefined;
|
|
8521
|
-
address_city?: string | null | undefined;
|
|
8522
|
-
address_zip?: string | null | undefined;
|
|
8523
8520
|
contact_name?: string | null | undefined;
|
|
8521
|
+
contact_email?: string | null | undefined;
|
|
8524
8522
|
contact_business_phone?: string | null | undefined;
|
|
8525
8523
|
contact_mobile_phone?: string | null | undefined;
|
|
8526
8524
|
contact_time_zone?: string | null | undefined;
|
|
8527
8525
|
address_full?: string | null | undefined;
|
|
8526
|
+
address_city?: string | null | undefined;
|
|
8527
|
+
address_zip?: string | null | undefined;
|
|
8528
8528
|
twitter_username?: string | null | undefined;
|
|
8529
8529
|
logo?: string | null | undefined;
|
|
8530
8530
|
email_sent_from?: string | null | undefined;
|
|
@@ -8570,14 +8570,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8570
8570
|
updated_by_display_name?: string | null | undefined;
|
|
8571
8571
|
unique_name?: string | null | undefined;
|
|
8572
8572
|
legal_name?: string | null | undefined;
|
|
8573
|
-
contact_email?: string | null | undefined;
|
|
8574
|
-
address_city?: string | null | undefined;
|
|
8575
|
-
address_zip?: string | null | undefined;
|
|
8576
8573
|
contact_name?: string | null | undefined;
|
|
8574
|
+
contact_email?: string | null | undefined;
|
|
8577
8575
|
contact_business_phone?: string | null | undefined;
|
|
8578
8576
|
contact_mobile_phone?: string | null | undefined;
|
|
8579
8577
|
contact_time_zone?: string | null | undefined;
|
|
8580
8578
|
address_full?: string | null | undefined;
|
|
8579
|
+
address_city?: string | null | undefined;
|
|
8580
|
+
address_zip?: string | null | undefined;
|
|
8581
8581
|
twitter_username?: string | null | undefined;
|
|
8582
8582
|
logo?: string | null | undefined;
|
|
8583
8583
|
email_sent_from?: string | null | undefined;
|
|
@@ -8609,14 +8609,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8609
8609
|
updated_by_display_name?: string | null | undefined;
|
|
8610
8610
|
unique_name?: string | null | undefined;
|
|
8611
8611
|
legal_name?: string | null | undefined;
|
|
8612
|
-
contact_email?: string | null | undefined;
|
|
8613
|
-
address_city?: string | null | undefined;
|
|
8614
|
-
address_zip?: string | null | undefined;
|
|
8615
8612
|
contact_name?: string | null | undefined;
|
|
8613
|
+
contact_email?: string | null | undefined;
|
|
8616
8614
|
contact_business_phone?: string | null | undefined;
|
|
8617
8615
|
contact_mobile_phone?: string | null | undefined;
|
|
8618
8616
|
contact_time_zone?: string | null | undefined;
|
|
8619
8617
|
address_full?: string | null | undefined;
|
|
8618
|
+
address_city?: string | null | undefined;
|
|
8619
|
+
address_zip?: string | null | undefined;
|
|
8620
8620
|
twitter_username?: string | null | undefined;
|
|
8621
8621
|
logo?: string | null | undefined;
|
|
8622
8622
|
email_sent_from?: string | null | undefined;
|
|
@@ -8681,14 +8681,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8681
8681
|
updated_by_display_name?: string | null | undefined;
|
|
8682
8682
|
unique_name?: string | null | undefined;
|
|
8683
8683
|
legal_name?: string | null | undefined;
|
|
8684
|
-
contact_email?: string | null | undefined;
|
|
8685
|
-
address_city?: string | null | undefined;
|
|
8686
|
-
address_zip?: string | null | undefined;
|
|
8687
8684
|
contact_name?: string | null | undefined;
|
|
8685
|
+
contact_email?: string | null | undefined;
|
|
8688
8686
|
contact_business_phone?: string | null | undefined;
|
|
8689
8687
|
contact_mobile_phone?: string | null | undefined;
|
|
8690
8688
|
contact_time_zone?: string | null | undefined;
|
|
8691
8689
|
address_full?: string | null | undefined;
|
|
8690
|
+
address_city?: string | null | undefined;
|
|
8691
|
+
address_zip?: string | null | undefined;
|
|
8692
8692
|
twitter_username?: string | null | undefined;
|
|
8693
8693
|
logo?: string | null | undefined;
|
|
8694
8694
|
email_sent_from?: string | null | undefined;
|
|
@@ -8710,14 +8710,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8710
8710
|
updated_by_display_name?: string | null | undefined;
|
|
8711
8711
|
unique_name?: string | null | undefined;
|
|
8712
8712
|
legal_name?: string | null | undefined;
|
|
8713
|
-
contact_email?: string | null | undefined;
|
|
8714
|
-
address_city?: string | null | undefined;
|
|
8715
|
-
address_zip?: string | null | undefined;
|
|
8716
8713
|
contact_name?: string | null | undefined;
|
|
8714
|
+
contact_email?: string | null | undefined;
|
|
8717
8715
|
contact_business_phone?: string | null | undefined;
|
|
8718
8716
|
contact_mobile_phone?: string | null | undefined;
|
|
8719
8717
|
contact_time_zone?: string | null | undefined;
|
|
8720
8718
|
address_full?: string | null | undefined;
|
|
8719
|
+
address_city?: string | null | undefined;
|
|
8720
|
+
address_zip?: string | null | undefined;
|
|
8721
8721
|
twitter_username?: string | null | undefined;
|
|
8722
8722
|
logo?: string | null | undefined;
|
|
8723
8723
|
email_sent_from?: string | null | undefined;
|
|
@@ -8777,14 +8777,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8777
8777
|
updated_by_display_name?: string | null | undefined;
|
|
8778
8778
|
unique_name?: string | null | undefined;
|
|
8779
8779
|
legal_name?: string | null | undefined;
|
|
8780
|
-
contact_email?: string | null | undefined;
|
|
8781
|
-
address_city?: string | null | undefined;
|
|
8782
|
-
address_zip?: string | null | undefined;
|
|
8783
8780
|
contact_name?: string | null | undefined;
|
|
8781
|
+
contact_email?: string | null | undefined;
|
|
8784
8782
|
contact_business_phone?: string | null | undefined;
|
|
8785
8783
|
contact_mobile_phone?: string | null | undefined;
|
|
8786
8784
|
contact_time_zone?: string | null | undefined;
|
|
8787
8785
|
address_full?: string | null | undefined;
|
|
8786
|
+
address_city?: string | null | undefined;
|
|
8787
|
+
address_zip?: string | null | undefined;
|
|
8788
8788
|
twitter_username?: string | null | undefined;
|
|
8789
8789
|
logo?: string | null | undefined;
|
|
8790
8790
|
email_sent_from?: string | null | undefined;
|
|
@@ -8806,14 +8806,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8806
8806
|
updated_by_display_name?: string | null | undefined;
|
|
8807
8807
|
unique_name?: string | null | undefined;
|
|
8808
8808
|
legal_name?: string | null | undefined;
|
|
8809
|
-
contact_email?: string | null | undefined;
|
|
8810
|
-
address_city?: string | null | undefined;
|
|
8811
|
-
address_zip?: string | null | undefined;
|
|
8812
8809
|
contact_name?: string | null | undefined;
|
|
8810
|
+
contact_email?: string | null | undefined;
|
|
8813
8811
|
contact_business_phone?: string | null | undefined;
|
|
8814
8812
|
contact_mobile_phone?: string | null | undefined;
|
|
8815
8813
|
contact_time_zone?: string | null | undefined;
|
|
8816
8814
|
address_full?: string | null | undefined;
|
|
8815
|
+
address_city?: string | null | undefined;
|
|
8816
|
+
address_zip?: string | null | undefined;
|
|
8817
8817
|
twitter_username?: string | null | undefined;
|
|
8818
8818
|
logo?: string | null | undefined;
|
|
8819
8819
|
email_sent_from?: string | null | undefined;
|
|
@@ -8871,14 +8871,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8871
8871
|
updated_by_display_name?: string | null | undefined;
|
|
8872
8872
|
unique_name?: string | null | undefined;
|
|
8873
8873
|
legal_name?: string | null | undefined;
|
|
8874
|
-
contact_email?: string | null | undefined;
|
|
8875
|
-
address_city?: string | null | undefined;
|
|
8876
|
-
address_zip?: string | null | undefined;
|
|
8877
8874
|
contact_name?: string | null | undefined;
|
|
8875
|
+
contact_email?: string | null | undefined;
|
|
8878
8876
|
contact_business_phone?: string | null | undefined;
|
|
8879
8877
|
contact_mobile_phone?: string | null | undefined;
|
|
8880
8878
|
contact_time_zone?: string | null | undefined;
|
|
8881
8879
|
address_full?: string | null | undefined;
|
|
8880
|
+
address_city?: string | null | undefined;
|
|
8881
|
+
address_zip?: string | null | undefined;
|
|
8882
8882
|
twitter_username?: string | null | undefined;
|
|
8883
8883
|
logo?: string | null | undefined;
|
|
8884
8884
|
email_sent_from?: string | null | undefined;
|
|
@@ -8900,14 +8900,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8900
8900
|
updated_by_display_name?: string | null | undefined;
|
|
8901
8901
|
unique_name?: string | null | undefined;
|
|
8902
8902
|
legal_name?: string | null | undefined;
|
|
8903
|
-
contact_email?: string | null | undefined;
|
|
8904
|
-
address_city?: string | null | undefined;
|
|
8905
|
-
address_zip?: string | null | undefined;
|
|
8906
8903
|
contact_name?: string | null | undefined;
|
|
8904
|
+
contact_email?: string | null | undefined;
|
|
8907
8905
|
contact_business_phone?: string | null | undefined;
|
|
8908
8906
|
contact_mobile_phone?: string | null | undefined;
|
|
8909
8907
|
contact_time_zone?: string | null | undefined;
|
|
8910
8908
|
address_full?: string | null | undefined;
|
|
8909
|
+
address_city?: string | null | undefined;
|
|
8910
|
+
address_zip?: string | null | undefined;
|
|
8911
8911
|
twitter_username?: string | null | undefined;
|
|
8912
8912
|
logo?: string | null | undefined;
|
|
8913
8913
|
email_sent_from?: string | null | undefined;
|
|
@@ -8931,14 +8931,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8931
8931
|
updated_by_display_name?: string | null | undefined;
|
|
8932
8932
|
unique_name?: string | null | undefined;
|
|
8933
8933
|
legal_name?: string | null | undefined;
|
|
8934
|
-
contact_email?: string | null | undefined;
|
|
8935
|
-
address_city?: string | null | undefined;
|
|
8936
|
-
address_zip?: string | null | undefined;
|
|
8937
8934
|
contact_name?: string | null | undefined;
|
|
8935
|
+
contact_email?: string | null | undefined;
|
|
8938
8936
|
contact_business_phone?: string | null | undefined;
|
|
8939
8937
|
contact_mobile_phone?: string | null | undefined;
|
|
8940
8938
|
contact_time_zone?: string | null | undefined;
|
|
8941
8939
|
address_full?: string | null | undefined;
|
|
8940
|
+
address_city?: string | null | undefined;
|
|
8941
|
+
address_zip?: string | null | undefined;
|
|
8942
8942
|
twitter_username?: string | null | undefined;
|
|
8943
8943
|
logo?: string | null | undefined;
|
|
8944
8944
|
email_sent_from?: string | null | undefined;
|
|
@@ -8962,14 +8962,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8962
8962
|
updated_by_display_name?: string | null | undefined;
|
|
8963
8963
|
unique_name?: string | null | undefined;
|
|
8964
8964
|
legal_name?: string | null | undefined;
|
|
8965
|
-
contact_email?: string | null | undefined;
|
|
8966
|
-
address_city?: string | null | undefined;
|
|
8967
|
-
address_zip?: string | null | undefined;
|
|
8968
8965
|
contact_name?: string | null | undefined;
|
|
8966
|
+
contact_email?: string | null | undefined;
|
|
8969
8967
|
contact_business_phone?: string | null | undefined;
|
|
8970
8968
|
contact_mobile_phone?: string | null | undefined;
|
|
8971
8969
|
contact_time_zone?: string | null | undefined;
|
|
8972
8970
|
address_full?: string | null | undefined;
|
|
8971
|
+
address_city?: string | null | undefined;
|
|
8972
|
+
address_zip?: string | null | undefined;
|
|
8973
8973
|
twitter_username?: string | null | undefined;
|
|
8974
8974
|
logo?: string | null | undefined;
|
|
8975
8975
|
email_sent_from?: string | null | undefined;
|
|
@@ -10295,18 +10295,22 @@ declare const UserProfileUpdateSchema: z.ZodObject<{
|
|
|
10295
10295
|
notification_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10296
10296
|
} & {
|
|
10297
10297
|
user_id: z.ZodString;
|
|
10298
|
+
/** App-specific custom fields. Reserved keys: first_name, last_name, bio, notification_email, user_id */
|
|
10299
|
+
customFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10298
10300
|
}, "strip", z.ZodTypeAny, {
|
|
10299
10301
|
user_id: string;
|
|
10300
10302
|
first_name?: string | null | undefined;
|
|
10301
10303
|
last_name?: string | null | undefined;
|
|
10302
10304
|
bio?: string | null | undefined;
|
|
10303
10305
|
notification_email?: string | null | undefined;
|
|
10306
|
+
customFields?: Record<string, unknown> | undefined;
|
|
10304
10307
|
}, {
|
|
10305
10308
|
user_id: string;
|
|
10306
10309
|
first_name?: string | null | undefined;
|
|
10307
10310
|
last_name?: string | null | undefined;
|
|
10308
10311
|
bio?: string | null | undefined;
|
|
10309
10312
|
notification_email?: string | null | undefined;
|
|
10313
|
+
customFields?: Record<string, unknown> | undefined;
|
|
10310
10314
|
}>;
|
|
10311
10315
|
type UserProfileUpdateDto = z.infer<typeof UserProfileUpdateSchema>;
|
|
10312
10316
|
/**
|
|
@@ -10324,6 +10328,8 @@ declare const UserProfileReadSchema: z.ZodObject<{
|
|
|
10324
10328
|
created_by: z.ZodString;
|
|
10325
10329
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
10326
10330
|
updated_by: z.ZodNullable<z.ZodString>;
|
|
10331
|
+
/** App-specific custom fields from extension or custom_fields column */
|
|
10332
|
+
customFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10327
10333
|
}, "strip", z.ZodTypeAny, {
|
|
10328
10334
|
created_at: string;
|
|
10329
10335
|
created_by: string;
|
|
@@ -10335,6 +10341,7 @@ declare const UserProfileReadSchema: z.ZodObject<{
|
|
|
10335
10341
|
last_name?: string | null | undefined;
|
|
10336
10342
|
bio?: string | null | undefined;
|
|
10337
10343
|
notification_email?: string | null | undefined;
|
|
10344
|
+
customFields?: Record<string, unknown> | undefined;
|
|
10338
10345
|
}, {
|
|
10339
10346
|
created_at: string;
|
|
10340
10347
|
created_by: string;
|
|
@@ -10346,6 +10353,7 @@ declare const UserProfileReadSchema: z.ZodObject<{
|
|
|
10346
10353
|
last_name?: string | null | undefined;
|
|
10347
10354
|
bio?: string | null | undefined;
|
|
10348
10355
|
notification_email?: string | null | undefined;
|
|
10356
|
+
customFields?: Record<string, unknown> | undefined;
|
|
10349
10357
|
}>;
|
|
10350
10358
|
type UserProfileReadDto = z.infer<typeof UserProfileReadSchema>;
|
|
10351
10359
|
//#endregion
|