@dragonmastery/dragoncore-shared 0.0.27 → 0.0.29
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 +196 -114
- package/dist/index.mjs +53 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
|
+
//#region src/validation/app_settings/default_referral_team_zod.d.ts
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Schema for the default team for unknown referral tags.
|
|
7
|
+
* Used by admin UI and API server for get/update.
|
|
8
|
+
*/
|
|
9
|
+
declare const DefaultReferralTeamFormSchema: z.ZodObject<{
|
|
10
|
+
default_team_id: z.ZodNullable<z.ZodString>;
|
|
11
|
+
}, "strip", z.ZodTypeAny, {
|
|
12
|
+
default_team_id: string | null;
|
|
13
|
+
}, {
|
|
14
|
+
default_team_id: string | null;
|
|
15
|
+
}>;
|
|
16
|
+
type DefaultReferralTeamFormDto = z.infer<typeof DefaultReferralTeamFormSchema>;
|
|
17
|
+
//#endregion
|
|
3
18
|
//#region src/validation/attachment/attachment_filters_zod.d.ts
|
|
4
19
|
declare const AttachmentFiltersSchema: z.ZodObject<{
|
|
5
20
|
record_id: z.ZodString;
|
|
@@ -97,9 +112,9 @@ declare const AttachmentFolderUpdateSchema: z.ZodObject<{
|
|
|
97
112
|
description?: string | null | undefined;
|
|
98
113
|
record_id?: string | undefined;
|
|
99
114
|
record_type?: string | undefined;
|
|
115
|
+
metadata?: string | null | undefined;
|
|
100
116
|
sanitized_name?: string | undefined;
|
|
101
117
|
original_name?: string | undefined;
|
|
102
|
-
metadata?: string | null | undefined;
|
|
103
118
|
parent_folder_id?: string | null | undefined;
|
|
104
119
|
file_count?: number | undefined;
|
|
105
120
|
}, {
|
|
@@ -107,9 +122,9 @@ declare const AttachmentFolderUpdateSchema: z.ZodObject<{
|
|
|
107
122
|
description?: string | null | undefined;
|
|
108
123
|
record_id?: string | undefined;
|
|
109
124
|
record_type?: string | undefined;
|
|
125
|
+
metadata?: string | null | undefined;
|
|
110
126
|
sanitized_name?: string | undefined;
|
|
111
127
|
original_name?: string | undefined;
|
|
112
|
-
metadata?: string | null | undefined;
|
|
113
128
|
parent_folder_id?: string | null | undefined;
|
|
114
129
|
file_count?: number | undefined;
|
|
115
130
|
}>;
|
|
@@ -144,15 +159,15 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
144
159
|
sanitized_name: string;
|
|
145
160
|
original_name: string;
|
|
146
161
|
description?: string | null | undefined;
|
|
162
|
+
metadata?: string | null | undefined;
|
|
147
163
|
updated_at?: string | null | undefined;
|
|
148
164
|
updated_by?: string | null | undefined;
|
|
149
|
-
metadata?: string | null | undefined;
|
|
150
|
-
parent_folder_id?: string | null | undefined;
|
|
151
|
-
file_count?: number | undefined;
|
|
152
165
|
archived_at?: string | null | undefined;
|
|
153
166
|
archived_by?: string | null | undefined;
|
|
154
167
|
deleted_at?: string | null | undefined;
|
|
155
168
|
deleted_by?: string | null | undefined;
|
|
169
|
+
parent_folder_id?: string | null | undefined;
|
|
170
|
+
file_count?: number | undefined;
|
|
156
171
|
}, {
|
|
157
172
|
created_at: string;
|
|
158
173
|
created_by: string;
|
|
@@ -162,15 +177,15 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
162
177
|
sanitized_name: string;
|
|
163
178
|
original_name: string;
|
|
164
179
|
description?: string | null | undefined;
|
|
180
|
+
metadata?: string | null | undefined;
|
|
165
181
|
updated_at?: string | null | undefined;
|
|
166
182
|
updated_by?: string | null | undefined;
|
|
167
|
-
metadata?: string | null | undefined;
|
|
168
|
-
parent_folder_id?: string | null | undefined;
|
|
169
|
-
file_count?: number | undefined;
|
|
170
183
|
archived_at?: string | null | undefined;
|
|
171
184
|
archived_by?: string | null | undefined;
|
|
172
185
|
deleted_at?: string | null | undefined;
|
|
173
186
|
deleted_by?: string | null | undefined;
|
|
187
|
+
parent_folder_id?: string | null | undefined;
|
|
188
|
+
file_count?: number | undefined;
|
|
174
189
|
}>;
|
|
175
190
|
type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
|
|
176
191
|
//#endregion
|
|
@@ -193,8 +208,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
193
208
|
content_type: string;
|
|
194
209
|
file_size: string;
|
|
195
210
|
description?: string | null | undefined;
|
|
196
|
-
folder_id?: string | null | undefined;
|
|
197
211
|
metadata?: string | null | undefined;
|
|
212
|
+
folder_id?: string | null | undefined;
|
|
198
213
|
}, {
|
|
199
214
|
record_id: string;
|
|
200
215
|
record_type: string;
|
|
@@ -203,8 +218,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
203
218
|
content_type: string;
|
|
204
219
|
file_size: string;
|
|
205
220
|
description?: string | null | undefined;
|
|
206
|
-
folder_id?: string | null | undefined;
|
|
207
221
|
metadata?: string | null | undefined;
|
|
222
|
+
folder_id?: string | null | undefined;
|
|
208
223
|
}>;
|
|
209
224
|
type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
|
|
210
225
|
declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
@@ -224,23 +239,23 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
224
239
|
description?: string | null | undefined;
|
|
225
240
|
record_id?: string | undefined;
|
|
226
241
|
record_type?: string | undefined;
|
|
227
|
-
|
|
242
|
+
metadata?: string | null | undefined;
|
|
228
243
|
sanitized_name?: string | undefined;
|
|
229
244
|
original_name?: string | undefined;
|
|
230
|
-
metadata?: string | null | undefined;
|
|
231
245
|
content_type?: string | undefined;
|
|
232
246
|
file_size?: string | undefined;
|
|
247
|
+
folder_id?: string | null | undefined;
|
|
233
248
|
}, {
|
|
234
249
|
id: string;
|
|
235
250
|
description?: string | null | undefined;
|
|
236
251
|
record_id?: string | undefined;
|
|
237
252
|
record_type?: string | undefined;
|
|
238
|
-
|
|
253
|
+
metadata?: string | null | undefined;
|
|
239
254
|
sanitized_name?: string | undefined;
|
|
240
255
|
original_name?: string | undefined;
|
|
241
|
-
metadata?: string | null | undefined;
|
|
242
256
|
content_type?: string | undefined;
|
|
243
257
|
file_size?: string | undefined;
|
|
258
|
+
folder_id?: string | null | undefined;
|
|
244
259
|
}>;
|
|
245
260
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
246
261
|
//#endregion
|
|
@@ -277,10 +292,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
277
292
|
content_type: string;
|
|
278
293
|
file_size: string;
|
|
279
294
|
description?: string | null | undefined;
|
|
295
|
+
metadata?: string | null | undefined;
|
|
280
296
|
updated_at?: string | null | undefined;
|
|
281
297
|
updated_by?: string | null | undefined;
|
|
282
298
|
folder_id?: string | null | undefined;
|
|
283
|
-
metadata?: string | null | undefined;
|
|
284
299
|
archived_at?: string | null | undefined;
|
|
285
300
|
archived_by?: string | null | undefined;
|
|
286
301
|
deleted_at?: string | null | undefined;
|
|
@@ -296,10 +311,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
296
311
|
content_type: string;
|
|
297
312
|
file_size: string;
|
|
298
313
|
description?: string | null | undefined;
|
|
314
|
+
metadata?: string | null | undefined;
|
|
299
315
|
updated_at?: string | null | undefined;
|
|
300
316
|
updated_by?: string | null | undefined;
|
|
301
317
|
folder_id?: string | null | undefined;
|
|
302
|
-
metadata?: string | null | undefined;
|
|
303
318
|
archived_at?: string | null | undefined;
|
|
304
319
|
archived_by?: string | null | undefined;
|
|
305
320
|
deleted_at?: string | null | undefined;
|
|
@@ -333,15 +348,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
333
348
|
sanitized_name: string;
|
|
334
349
|
original_name: string;
|
|
335
350
|
description?: string | null | undefined;
|
|
351
|
+
metadata?: string | null | undefined;
|
|
336
352
|
updated_at?: string | null | undefined;
|
|
337
353
|
updated_by?: string | null | undefined;
|
|
338
|
-
metadata?: string | null | undefined;
|
|
339
|
-
parent_folder_id?: string | null | undefined;
|
|
340
|
-
file_count?: number | undefined;
|
|
341
354
|
archived_at?: string | null | undefined;
|
|
342
355
|
archived_by?: string | null | undefined;
|
|
343
356
|
deleted_at?: string | null | undefined;
|
|
344
357
|
deleted_by?: string | null | undefined;
|
|
358
|
+
parent_folder_id?: string | null | undefined;
|
|
359
|
+
file_count?: number | undefined;
|
|
345
360
|
}, {
|
|
346
361
|
created_at: string;
|
|
347
362
|
created_by: string;
|
|
@@ -351,15 +366,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
351
366
|
sanitized_name: string;
|
|
352
367
|
original_name: string;
|
|
353
368
|
description?: string | null | undefined;
|
|
369
|
+
metadata?: string | null | undefined;
|
|
354
370
|
updated_at?: string | null | undefined;
|
|
355
371
|
updated_by?: string | null | undefined;
|
|
356
|
-
metadata?: string | null | undefined;
|
|
357
|
-
parent_folder_id?: string | null | undefined;
|
|
358
|
-
file_count?: number | undefined;
|
|
359
372
|
archived_at?: string | null | undefined;
|
|
360
373
|
archived_by?: string | null | undefined;
|
|
361
374
|
deleted_at?: string | null | undefined;
|
|
362
375
|
deleted_by?: string | null | undefined;
|
|
376
|
+
parent_folder_id?: string | null | undefined;
|
|
377
|
+
file_count?: number | undefined;
|
|
363
378
|
}>, "many">;
|
|
364
379
|
pageInfo: z.ZodObject<{
|
|
365
380
|
hasNextPage: z.ZodBoolean;
|
|
@@ -387,10 +402,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
387
402
|
content_type: string;
|
|
388
403
|
file_size: string;
|
|
389
404
|
description?: string | null | undefined;
|
|
405
|
+
metadata?: string | null | undefined;
|
|
390
406
|
updated_at?: string | null | undefined;
|
|
391
407
|
updated_by?: string | null | undefined;
|
|
392
408
|
folder_id?: string | null | undefined;
|
|
393
|
-
metadata?: string | null | undefined;
|
|
394
409
|
archived_at?: string | null | undefined;
|
|
395
410
|
archived_by?: string | null | undefined;
|
|
396
411
|
deleted_at?: string | null | undefined;
|
|
@@ -405,15 +420,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
405
420
|
sanitized_name: string;
|
|
406
421
|
original_name: string;
|
|
407
422
|
description?: string | null | undefined;
|
|
423
|
+
metadata?: string | null | undefined;
|
|
408
424
|
updated_at?: string | null | undefined;
|
|
409
425
|
updated_by?: string | null | undefined;
|
|
410
|
-
metadata?: string | null | undefined;
|
|
411
|
-
parent_folder_id?: string | null | undefined;
|
|
412
|
-
file_count?: number | undefined;
|
|
413
426
|
archived_at?: string | null | undefined;
|
|
414
427
|
archived_by?: string | null | undefined;
|
|
415
428
|
deleted_at?: string | null | undefined;
|
|
416
429
|
deleted_by?: string | null | undefined;
|
|
430
|
+
parent_folder_id?: string | null | undefined;
|
|
431
|
+
file_count?: number | undefined;
|
|
417
432
|
}[];
|
|
418
433
|
}, {
|
|
419
434
|
pageInfo: {
|
|
@@ -431,10 +446,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
431
446
|
content_type: string;
|
|
432
447
|
file_size: string;
|
|
433
448
|
description?: string | null | undefined;
|
|
449
|
+
metadata?: string | null | undefined;
|
|
434
450
|
updated_at?: string | null | undefined;
|
|
435
451
|
updated_by?: string | null | undefined;
|
|
436
452
|
folder_id?: string | null | undefined;
|
|
437
|
-
metadata?: string | null | undefined;
|
|
438
453
|
archived_at?: string | null | undefined;
|
|
439
454
|
archived_by?: string | null | undefined;
|
|
440
455
|
deleted_at?: string | null | undefined;
|
|
@@ -449,15 +464,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
449
464
|
sanitized_name: string;
|
|
450
465
|
original_name: string;
|
|
451
466
|
description?: string | null | undefined;
|
|
467
|
+
metadata?: string | null | undefined;
|
|
452
468
|
updated_at?: string | null | undefined;
|
|
453
469
|
updated_by?: string | null | undefined;
|
|
454
|
-
metadata?: string | null | undefined;
|
|
455
|
-
parent_folder_id?: string | null | undefined;
|
|
456
|
-
file_count?: number | undefined;
|
|
457
470
|
archived_at?: string | null | undefined;
|
|
458
471
|
archived_by?: string | null | undefined;
|
|
459
472
|
deleted_at?: string | null | undefined;
|
|
460
473
|
deleted_by?: string | null | undefined;
|
|
474
|
+
parent_folder_id?: string | null | undefined;
|
|
475
|
+
file_count?: number | undefined;
|
|
461
476
|
}[];
|
|
462
477
|
}>;
|
|
463
478
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -494,10 +509,10 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
494
509
|
content_type: string;
|
|
495
510
|
file_size: string;
|
|
496
511
|
description?: string | null | undefined;
|
|
512
|
+
metadata?: string | null | undefined;
|
|
497
513
|
updated_at?: string | null | undefined;
|
|
498
514
|
updated_by?: string | null | undefined;
|
|
499
515
|
folder_id?: string | null | undefined;
|
|
500
|
-
metadata?: string | null | undefined;
|
|
501
516
|
archived_at?: string | null | undefined;
|
|
502
517
|
archived_by?: string | null | undefined;
|
|
503
518
|
deleted_at?: string | null | undefined;
|
|
@@ -513,10 +528,10 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
513
528
|
content_type: string;
|
|
514
529
|
file_size: string;
|
|
515
530
|
description?: string | null | undefined;
|
|
531
|
+
metadata?: string | null | undefined;
|
|
516
532
|
updated_at?: string | null | undefined;
|
|
517
533
|
updated_by?: string | null | undefined;
|
|
518
534
|
folder_id?: string | null | undefined;
|
|
519
|
-
metadata?: string | null | undefined;
|
|
520
535
|
archived_at?: string | null | undefined;
|
|
521
536
|
archived_by?: string | null | undefined;
|
|
522
537
|
deleted_at?: string | null | undefined;
|
|
@@ -2122,9 +2137,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2122
2137
|
archived_by?: string | null | undefined;
|
|
2123
2138
|
deleted_at?: string | null | undefined;
|
|
2124
2139
|
deleted_by?: string | null | undefined;
|
|
2125
|
-
tag?: string | null | undefined;
|
|
2126
2140
|
title?: string | null | undefined;
|
|
2127
2141
|
body?: string | null | undefined;
|
|
2142
|
+
tag?: string | null | undefined;
|
|
2128
2143
|
original_id?: number | null | undefined;
|
|
2129
2144
|
created_by_display_name?: string | null | undefined;
|
|
2130
2145
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2141,9 +2156,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2141
2156
|
archived_by?: string | null | undefined;
|
|
2142
2157
|
deleted_at?: string | null | undefined;
|
|
2143
2158
|
deleted_by?: string | null | undefined;
|
|
2144
|
-
tag?: string | null | undefined;
|
|
2145
2159
|
title?: string | null | undefined;
|
|
2146
2160
|
body?: string | null | undefined;
|
|
2161
|
+
tag?: string | null | undefined;
|
|
2147
2162
|
original_id?: number | null | undefined;
|
|
2148
2163
|
created_by_display_name?: string | null | undefined;
|
|
2149
2164
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2163,18 +2178,18 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2163
2178
|
record_id: string;
|
|
2164
2179
|
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
2180
|
is_internal: boolean;
|
|
2166
|
-
tag?: string | null | undefined;
|
|
2167
2181
|
title?: string | null | undefined;
|
|
2168
2182
|
body?: string | null | undefined;
|
|
2183
|
+
tag?: string | null | undefined;
|
|
2169
2184
|
original_id?: number | null | undefined;
|
|
2170
2185
|
}, {
|
|
2171
2186
|
record_id: string;
|
|
2172
2187
|
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
2188
|
title?: string | null | undefined;
|
|
2175
2189
|
body?: string | null | undefined;
|
|
2176
|
-
|
|
2190
|
+
tag?: string | null | undefined;
|
|
2177
2191
|
is_internal?: boolean | undefined;
|
|
2192
|
+
original_id?: number | null | undefined;
|
|
2178
2193
|
}>;
|
|
2179
2194
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2180
2195
|
//#endregion
|
|
@@ -2192,20 +2207,20 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2192
2207
|
id: string;
|
|
2193
2208
|
record_id?: string | undefined;
|
|
2194
2209
|
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
2210
|
title?: string | null | undefined;
|
|
2197
2211
|
body?: string | null | undefined;
|
|
2198
|
-
|
|
2212
|
+
tag?: string | null | undefined;
|
|
2199
2213
|
is_internal?: boolean | undefined;
|
|
2214
|
+
original_id?: number | null | undefined;
|
|
2200
2215
|
}, {
|
|
2201
2216
|
id: string;
|
|
2202
2217
|
record_id?: string | undefined;
|
|
2203
2218
|
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
2219
|
title?: string | null | undefined;
|
|
2206
2220
|
body?: string | null | undefined;
|
|
2207
|
-
|
|
2221
|
+
tag?: string | null | undefined;
|
|
2208
2222
|
is_internal?: boolean | undefined;
|
|
2223
|
+
original_id?: number | null | undefined;
|
|
2209
2224
|
}>;
|
|
2210
2225
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2211
2226
|
//#endregion
|
|
@@ -2620,19 +2635,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2620
2635
|
values?: any[] | undefined;
|
|
2621
2636
|
caseSensitive?: boolean | undefined;
|
|
2622
2637
|
} | undefined;
|
|
2623
|
-
|
|
2638
|
+
title?: {
|
|
2624
2639
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2625
2640
|
value?: string | undefined;
|
|
2626
2641
|
values?: string[] | undefined;
|
|
2627
2642
|
caseSensitive?: boolean | undefined;
|
|
2628
2643
|
} | undefined;
|
|
2629
|
-
|
|
2644
|
+
body?: {
|
|
2630
2645
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2631
2646
|
value?: string | undefined;
|
|
2632
2647
|
values?: string[] | undefined;
|
|
2633
2648
|
caseSensitive?: boolean | undefined;
|
|
2634
2649
|
} | undefined;
|
|
2635
|
-
|
|
2650
|
+
tag?: {
|
|
2636
2651
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2637
2652
|
value?: string | undefined;
|
|
2638
2653
|
values?: string[] | undefined;
|
|
@@ -2698,19 +2713,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2698
2713
|
values?: any[] | undefined;
|
|
2699
2714
|
caseSensitive?: boolean | undefined;
|
|
2700
2715
|
} | undefined;
|
|
2701
|
-
|
|
2716
|
+
title?: {
|
|
2702
2717
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2703
2718
|
value?: string | undefined;
|
|
2704
2719
|
values?: string[] | undefined;
|
|
2705
2720
|
caseSensitive?: boolean | undefined;
|
|
2706
2721
|
} | undefined;
|
|
2707
|
-
|
|
2722
|
+
body?: {
|
|
2708
2723
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2709
2724
|
value?: string | undefined;
|
|
2710
2725
|
values?: string[] | undefined;
|
|
2711
2726
|
caseSensitive?: boolean | undefined;
|
|
2712
2727
|
} | undefined;
|
|
2713
|
-
|
|
2728
|
+
tag?: {
|
|
2714
2729
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2715
2730
|
value?: string | undefined;
|
|
2716
2731
|
values?: string[] | undefined;
|
|
@@ -3229,6 +3244,25 @@ declare const recordVersionTrackerActivityInputSchema: z.ZodObject<{
|
|
|
3229
3244
|
type RecordVersionFiltersBreadcrumbDto = z.infer<typeof recordVersionFiltersBreadcrumbSchema>;
|
|
3230
3245
|
type RecordVersionPageBreadcrumbDto = z.infer<typeof recordVersionPageBreadcrumbSchema>;
|
|
3231
3246
|
//#endregion
|
|
3247
|
+
//#region src/validation/referral_tag_zod.d.ts
|
|
3248
|
+
/** URL-friendly format: lowercase, alphanumeric, hyphens only. No underscores. */
|
|
3249
|
+
declare const REFERRAL_TAG_REGEX: RegExp;
|
|
3250
|
+
declare const REFERRAL_TAG_MIN = 3;
|
|
3251
|
+
declare const REFERRAL_TAG_MAX = 64;
|
|
3252
|
+
declare const REFERRAL_TAG_ERROR_MESSAGE = "Referral tag must be 3\u201364 characters, lowercase, alphanumeric, and hyphens only";
|
|
3253
|
+
/**
|
|
3254
|
+
* Normalize a string to a URL-friendly referral tag.
|
|
3255
|
+
* Matches the format validated by ReferralTagValueSchema.
|
|
3256
|
+
* e.g. "Acme Corp & Co." → "acme-corp-co"
|
|
3257
|
+
*/
|
|
3258
|
+
declare function normalizeToReferralTag(value: string): string;
|
|
3259
|
+
/**
|
|
3260
|
+
* Schema for a single referral tag value (non-null, non-empty).
|
|
3261
|
+
* Validates format only—no transform. Invalid input is rejected with an error.
|
|
3262
|
+
* Use the normalize button or type the correct format: lowercase, alphanumeric, hyphens only.
|
|
3263
|
+
*/
|
|
3264
|
+
declare const ReferralTagValueSchema: z.ZodString;
|
|
3265
|
+
//#endregion
|
|
3232
3266
|
//#region src/validation/saved_filter/saved_filter_create_zod.d.ts
|
|
3233
3267
|
/**
|
|
3234
3268
|
* Schema for creating a saved filter preset
|
|
@@ -3580,6 +3614,7 @@ type SignupInputDto = z.output<typeof signupSchema>;
|
|
|
3580
3614
|
//#region src/validation/signup_initiate_zod.d.ts
|
|
3581
3615
|
/** Input for signupInitiate - email and password only (no acceptances). */
|
|
3582
3616
|
declare const signupInitiateSchema: z.ZodObject<{
|
|
3617
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3583
3618
|
email: z.ZodString;
|
|
3584
3619
|
passwords: z.ZodEffects<z.ZodObject<{
|
|
3585
3620
|
password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -3603,12 +3638,14 @@ declare const signupInitiateSchema: z.ZodObject<{
|
|
|
3603
3638
|
password_confirm: string;
|
|
3604
3639
|
};
|
|
3605
3640
|
email: string;
|
|
3641
|
+
metadata?: Record<string, unknown> | undefined;
|
|
3606
3642
|
}, {
|
|
3607
3643
|
passwords: {
|
|
3608
3644
|
password: string;
|
|
3609
3645
|
password_confirm: string;
|
|
3610
3646
|
};
|
|
3611
3647
|
email: string;
|
|
3648
|
+
metadata?: Record<string, unknown> | undefined;
|
|
3612
3649
|
}>;
|
|
3613
3650
|
type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
|
|
3614
3651
|
/** Response when consents are required - token + consents to display. */
|
|
@@ -4331,11 +4368,14 @@ type SignupInitiateResponseDto = z.infer<typeof signupInitiateResponseSchema>;
|
|
|
4331
4368
|
//#region src/validation/signup_complete_zod.d.ts
|
|
4332
4369
|
/** Input for signupComplete - acceptances only. Token is in Authorization: Bearer header. */
|
|
4333
4370
|
declare const signupCompleteSchema: z.ZodObject<{
|
|
4371
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4334
4372
|
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
4335
4373
|
}, "strip", z.ZodTypeAny, {
|
|
4336
4374
|
acceptances: Record<string, boolean>;
|
|
4375
|
+
metadata?: Record<string, unknown> | undefined;
|
|
4337
4376
|
}, {
|
|
4338
4377
|
acceptances?: Record<string, boolean> | undefined;
|
|
4378
|
+
metadata?: Record<string, unknown> | undefined;
|
|
4339
4379
|
}>;
|
|
4340
4380
|
type SignupCompleteInputDto = z.infer<typeof signupCompleteSchema>;
|
|
4341
4381
|
//#endregion
|
|
@@ -4649,10 +4689,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4649
4689
|
created_by_display_name?: string | null | undefined;
|
|
4650
4690
|
display_id?: string | null | undefined;
|
|
4651
4691
|
credit_value?: string | null | undefined;
|
|
4692
|
+
display_id_prefix?: string | null | undefined;
|
|
4652
4693
|
start_at?: string | null | undefined;
|
|
4653
4694
|
target_at?: string | null | undefined;
|
|
4654
4695
|
completed_at?: string | null | undefined;
|
|
4655
|
-
display_id_prefix?: string | null | undefined;
|
|
4656
4696
|
locked_approval_at?: string | null | undefined;
|
|
4657
4697
|
my_subscription?: {
|
|
4658
4698
|
created_at: string;
|
|
@@ -4681,10 +4721,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4681
4721
|
created_by_display_name?: string | null | undefined;
|
|
4682
4722
|
display_id?: string | null | undefined;
|
|
4683
4723
|
credit_value?: string | null | undefined;
|
|
4724
|
+
display_id_prefix?: string | null | undefined;
|
|
4684
4725
|
start_at?: string | null | undefined;
|
|
4685
4726
|
target_at?: string | null | undefined;
|
|
4686
4727
|
completed_at?: string | null | undefined;
|
|
4687
|
-
display_id_prefix?: string | null | undefined;
|
|
4688
4728
|
locked_approval_at?: string | null | undefined;
|
|
4689
4729
|
my_subscription?: {
|
|
4690
4730
|
created_at: string;
|
|
@@ -4771,10 +4811,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4771
4811
|
created_by_display_name?: string | null | undefined;
|
|
4772
4812
|
display_id?: string | null | undefined;
|
|
4773
4813
|
credit_value?: string | null | undefined;
|
|
4814
|
+
display_id_prefix?: string | null | undefined;
|
|
4774
4815
|
start_at?: string | null | undefined;
|
|
4775
4816
|
target_at?: string | null | undefined;
|
|
4776
4817
|
completed_at?: string | null | undefined;
|
|
4777
|
-
display_id_prefix?: string | null | undefined;
|
|
4778
4818
|
locked_approval_at?: string | null | undefined;
|
|
4779
4819
|
my_subscription?: {
|
|
4780
4820
|
created_at: string;
|
|
@@ -4803,10 +4843,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4803
4843
|
created_by_display_name?: string | null | undefined;
|
|
4804
4844
|
display_id?: string | null | undefined;
|
|
4805
4845
|
credit_value?: string | null | undefined;
|
|
4846
|
+
display_id_prefix?: string | null | undefined;
|
|
4806
4847
|
start_at?: string | null | undefined;
|
|
4807
4848
|
target_at?: string | null | undefined;
|
|
4808
4849
|
completed_at?: string | null | undefined;
|
|
4809
|
-
display_id_prefix?: string | null | undefined;
|
|
4810
4850
|
locked_approval_at?: string | null | undefined;
|
|
4811
4851
|
my_subscription?: {
|
|
4812
4852
|
created_at: string;
|
|
@@ -4859,10 +4899,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4859
4899
|
created_by_display_name?: string | null | undefined;
|
|
4860
4900
|
display_id?: string | null | undefined;
|
|
4861
4901
|
credit_value?: string | null | undefined;
|
|
4902
|
+
display_id_prefix?: string | null | undefined;
|
|
4862
4903
|
start_at?: string | null | undefined;
|
|
4863
4904
|
target_at?: string | null | undefined;
|
|
4864
4905
|
completed_at?: string | null | undefined;
|
|
4865
|
-
display_id_prefix?: string | null | undefined;
|
|
4866
4906
|
locked_approval_at?: string | null | undefined;
|
|
4867
4907
|
my_subscription?: {
|
|
4868
4908
|
created_at: string;
|
|
@@ -4901,10 +4941,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4901
4941
|
created_by_display_name?: string | null | undefined;
|
|
4902
4942
|
display_id?: string | null | undefined;
|
|
4903
4943
|
credit_value?: string | null | undefined;
|
|
4944
|
+
display_id_prefix?: string | null | undefined;
|
|
4904
4945
|
start_at?: string | null | undefined;
|
|
4905
4946
|
target_at?: string | null | undefined;
|
|
4906
4947
|
completed_at?: string | null | undefined;
|
|
4907
|
-
display_id_prefix?: string | null | undefined;
|
|
4908
4948
|
locked_approval_at?: string | null | undefined;
|
|
4909
4949
|
my_subscription?: {
|
|
4910
4950
|
created_at: string;
|
|
@@ -5956,10 +5996,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5956
5996
|
display_id?: string | null | undefined;
|
|
5957
5997
|
credit_value?: string | null | undefined;
|
|
5958
5998
|
delivered_value?: string | null | undefined;
|
|
5999
|
+
display_id_prefix?: string | null | undefined;
|
|
5959
6000
|
start_at?: string | null | undefined;
|
|
5960
6001
|
target_at?: string | null | undefined;
|
|
5961
6002
|
completed_at?: string | null | undefined;
|
|
5962
|
-
display_id_prefix?: string | null | undefined;
|
|
5963
6003
|
locked_approval_at?: string | null | undefined;
|
|
5964
6004
|
assigned_to?: string | null | undefined;
|
|
5965
6005
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -5985,10 +6025,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5985
6025
|
display_id?: string | null | undefined;
|
|
5986
6026
|
credit_value?: string | null | undefined;
|
|
5987
6027
|
delivered_value?: string | null | undefined;
|
|
6028
|
+
display_id_prefix?: string | null | undefined;
|
|
5988
6029
|
start_at?: string | null | undefined;
|
|
5989
6030
|
target_at?: string | null | undefined;
|
|
5990
6031
|
completed_at?: string | null | undefined;
|
|
5991
|
-
display_id_prefix?: string | null | undefined;
|
|
5992
6032
|
locked_approval_at?: string | null | undefined;
|
|
5993
6033
|
assigned_to?: string | null | undefined;
|
|
5994
6034
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6049,10 +6089,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6049
6089
|
display_id?: string | null | undefined;
|
|
6050
6090
|
credit_value?: string | null | undefined;
|
|
6051
6091
|
delivered_value?: string | null | undefined;
|
|
6092
|
+
display_id_prefix?: string | null | undefined;
|
|
6052
6093
|
start_at?: string | null | undefined;
|
|
6053
6094
|
target_at?: string | null | undefined;
|
|
6054
6095
|
completed_at?: string | null | undefined;
|
|
6055
|
-
display_id_prefix?: string | null | undefined;
|
|
6056
6096
|
locked_approval_at?: string | null | undefined;
|
|
6057
6097
|
assigned_to?: string | null | undefined;
|
|
6058
6098
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6078,10 +6118,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6078
6118
|
display_id?: string | null | undefined;
|
|
6079
6119
|
credit_value?: string | null | undefined;
|
|
6080
6120
|
delivered_value?: string | null | undefined;
|
|
6121
|
+
display_id_prefix?: string | null | undefined;
|
|
6081
6122
|
start_at?: string | null | undefined;
|
|
6082
6123
|
target_at?: string | null | undefined;
|
|
6083
6124
|
completed_at?: string | null | undefined;
|
|
6084
|
-
display_id_prefix?: string | null | undefined;
|
|
6085
6125
|
locked_approval_at?: string | null | undefined;
|
|
6086
6126
|
assigned_to?: string | null | undefined;
|
|
6087
6127
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6131,10 +6171,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6131
6171
|
display_id?: string | null | undefined;
|
|
6132
6172
|
credit_value?: string | null | undefined;
|
|
6133
6173
|
delivered_value?: string | null | undefined;
|
|
6174
|
+
display_id_prefix?: string | null | undefined;
|
|
6134
6175
|
start_at?: string | null | undefined;
|
|
6135
6176
|
target_at?: string | null | undefined;
|
|
6136
6177
|
completed_at?: string | null | undefined;
|
|
6137
|
-
display_id_prefix?: string | null | undefined;
|
|
6138
6178
|
locked_approval_at?: string | null | undefined;
|
|
6139
6179
|
assigned_to?: string | null | undefined;
|
|
6140
6180
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6170,10 +6210,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6170
6210
|
display_id?: string | null | undefined;
|
|
6171
6211
|
credit_value?: string | null | undefined;
|
|
6172
6212
|
delivered_value?: string | null | undefined;
|
|
6213
|
+
display_id_prefix?: string | null | undefined;
|
|
6173
6214
|
start_at?: string | null | undefined;
|
|
6174
6215
|
target_at?: string | null | undefined;
|
|
6175
6216
|
completed_at?: string | null | undefined;
|
|
6176
|
-
display_id_prefix?: string | null | undefined;
|
|
6177
6217
|
locked_approval_at?: string | null | undefined;
|
|
6178
6218
|
assigned_to?: string | null | undefined;
|
|
6179
6219
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -8291,14 +8331,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8291
8331
|
url?: string | null | undefined;
|
|
8292
8332
|
unique_name?: string | null | undefined;
|
|
8293
8333
|
legal_name?: string | null | undefined;
|
|
8294
|
-
contact_email?: string | null | undefined;
|
|
8295
|
-
address_city?: string | null | undefined;
|
|
8296
|
-
address_zip?: string | null | undefined;
|
|
8297
8334
|
contact_name?: string | null | undefined;
|
|
8335
|
+
contact_email?: string | null | undefined;
|
|
8298
8336
|
contact_business_phone?: string | null | undefined;
|
|
8299
8337
|
contact_mobile_phone?: string | null | undefined;
|
|
8300
8338
|
contact_time_zone?: string | null | undefined;
|
|
8301
8339
|
address_full?: string | null | undefined;
|
|
8340
|
+
address_city?: string | null | undefined;
|
|
8341
|
+
address_zip?: string | null | undefined;
|
|
8302
8342
|
twitter_username?: string | null | undefined;
|
|
8303
8343
|
logo?: string | null | undefined;
|
|
8304
8344
|
email_sent_from?: string | null | undefined;
|
|
@@ -8309,14 +8349,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8309
8349
|
url?: string | null | undefined;
|
|
8310
8350
|
unique_name?: string | null | undefined;
|
|
8311
8351
|
legal_name?: string | null | undefined;
|
|
8312
|
-
contact_email?: string | null | undefined;
|
|
8313
|
-
address_city?: string | null | undefined;
|
|
8314
|
-
address_zip?: string | null | undefined;
|
|
8315
8352
|
contact_name?: string | null | undefined;
|
|
8353
|
+
contact_email?: string | null | undefined;
|
|
8316
8354
|
contact_business_phone?: string | null | undefined;
|
|
8317
8355
|
contact_mobile_phone?: string | null | undefined;
|
|
8318
8356
|
contact_time_zone?: string | null | undefined;
|
|
8319
8357
|
address_full?: string | null | undefined;
|
|
8358
|
+
address_city?: string | null | undefined;
|
|
8359
|
+
address_zip?: string | null | undefined;
|
|
8320
8360
|
twitter_username?: string | null | undefined;
|
|
8321
8361
|
logo?: string | null | undefined;
|
|
8322
8362
|
email_sent_from?: string | null | undefined;
|
|
@@ -8346,14 +8386,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8346
8386
|
url?: string | null | undefined;
|
|
8347
8387
|
unique_name?: string | null | undefined;
|
|
8348
8388
|
legal_name?: string | null | undefined;
|
|
8349
|
-
contact_email?: string | null | undefined;
|
|
8350
|
-
address_city?: string | null | undefined;
|
|
8351
|
-
address_zip?: string | null | undefined;
|
|
8352
8389
|
contact_name?: string | null | undefined;
|
|
8390
|
+
contact_email?: string | null | undefined;
|
|
8353
8391
|
contact_business_phone?: string | null | undefined;
|
|
8354
8392
|
contact_mobile_phone?: string | null | undefined;
|
|
8355
8393
|
contact_time_zone?: string | null | undefined;
|
|
8356
8394
|
address_full?: string | null | undefined;
|
|
8395
|
+
address_city?: string | null | undefined;
|
|
8396
|
+
address_zip?: string | null | undefined;
|
|
8357
8397
|
twitter_username?: string | null | undefined;
|
|
8358
8398
|
logo?: string | null | undefined;
|
|
8359
8399
|
email_sent_from?: string | null | undefined;
|
|
@@ -8364,14 +8404,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8364
8404
|
url?: string | null | undefined;
|
|
8365
8405
|
unique_name?: string | null | undefined;
|
|
8366
8406
|
legal_name?: string | null | undefined;
|
|
8367
|
-
contact_email?: string | null | undefined;
|
|
8368
|
-
address_city?: string | null | undefined;
|
|
8369
|
-
address_zip?: string | null | undefined;
|
|
8370
8407
|
contact_name?: string | null | undefined;
|
|
8408
|
+
contact_email?: string | null | undefined;
|
|
8371
8409
|
contact_business_phone?: string | null | undefined;
|
|
8372
8410
|
contact_mobile_phone?: string | null | undefined;
|
|
8373
8411
|
contact_time_zone?: string | null | undefined;
|
|
8374
8412
|
address_full?: string | null | undefined;
|
|
8413
|
+
address_city?: string | null | undefined;
|
|
8414
|
+
address_zip?: string | null | undefined;
|
|
8375
8415
|
twitter_username?: string | null | undefined;
|
|
8376
8416
|
logo?: string | null | undefined;
|
|
8377
8417
|
email_sent_from?: string | null | undefined;
|
|
@@ -8405,14 +8445,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8405
8445
|
url?: string | null | undefined;
|
|
8406
8446
|
unique_name?: string | null | undefined;
|
|
8407
8447
|
legal_name?: string | null | undefined;
|
|
8408
|
-
contact_email?: string | null | undefined;
|
|
8409
|
-
address_city?: string | null | undefined;
|
|
8410
|
-
address_zip?: string | null | undefined;
|
|
8411
8448
|
contact_name?: string | null | undefined;
|
|
8449
|
+
contact_email?: string | null | undefined;
|
|
8412
8450
|
contact_business_phone?: string | null | undefined;
|
|
8413
8451
|
contact_mobile_phone?: string | null | undefined;
|
|
8414
8452
|
contact_time_zone?: string | null | undefined;
|
|
8415
8453
|
address_full?: string | null | undefined;
|
|
8454
|
+
address_city?: string | null | undefined;
|
|
8455
|
+
address_zip?: string | null | undefined;
|
|
8416
8456
|
twitter_username?: string | null | undefined;
|
|
8417
8457
|
logo?: string | null | undefined;
|
|
8418
8458
|
email_sent_from?: string | null | undefined;
|
|
@@ -8424,14 +8464,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8424
8464
|
url?: string | null | undefined;
|
|
8425
8465
|
unique_name?: string | null | undefined;
|
|
8426
8466
|
legal_name?: string | null | undefined;
|
|
8427
|
-
contact_email?: string | null | undefined;
|
|
8428
|
-
address_city?: string | null | undefined;
|
|
8429
|
-
address_zip?: string | null | undefined;
|
|
8430
8467
|
contact_name?: string | null | undefined;
|
|
8468
|
+
contact_email?: string | null | undefined;
|
|
8431
8469
|
contact_business_phone?: string | null | undefined;
|
|
8432
8470
|
contact_mobile_phone?: string | null | undefined;
|
|
8433
8471
|
contact_time_zone?: string | null | undefined;
|
|
8434
8472
|
address_full?: string | null | undefined;
|
|
8473
|
+
address_city?: string | null | undefined;
|
|
8474
|
+
address_zip?: string | null | undefined;
|
|
8435
8475
|
twitter_username?: string | null | undefined;
|
|
8436
8476
|
logo?: string | null | undefined;
|
|
8437
8477
|
email_sent_from?: string | null | undefined;
|
|
@@ -8463,6 +8503,7 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8463
8503
|
id: z.ZodString;
|
|
8464
8504
|
original_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8465
8505
|
path: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8506
|
+
referral_tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8466
8507
|
created_at: z.ZodString;
|
|
8467
8508
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8468
8509
|
created_by: z.ZodString;
|
|
@@ -8488,18 +8529,19 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8488
8529
|
updated_by_display_name?: string | null | undefined;
|
|
8489
8530
|
unique_name?: string | null | undefined;
|
|
8490
8531
|
legal_name?: string | null | undefined;
|
|
8491
|
-
contact_email?: string | null | undefined;
|
|
8492
|
-
address_city?: string | null | undefined;
|
|
8493
|
-
address_zip?: string | null | undefined;
|
|
8494
8532
|
contact_name?: string | null | undefined;
|
|
8533
|
+
contact_email?: string | null | undefined;
|
|
8495
8534
|
contact_business_phone?: string | null | undefined;
|
|
8496
8535
|
contact_mobile_phone?: string | null | undefined;
|
|
8497
8536
|
contact_time_zone?: string | null | undefined;
|
|
8498
8537
|
address_full?: string | null | undefined;
|
|
8538
|
+
address_city?: string | null | undefined;
|
|
8539
|
+
address_zip?: string | null | undefined;
|
|
8499
8540
|
twitter_username?: string | null | undefined;
|
|
8500
8541
|
logo?: string | null | undefined;
|
|
8501
8542
|
email_sent_from?: string | null | undefined;
|
|
8502
8543
|
email_reply_to?: string | null | undefined;
|
|
8544
|
+
referral_tag?: string | null | undefined;
|
|
8503
8545
|
}, {
|
|
8504
8546
|
created_at: string;
|
|
8505
8547
|
created_by: string;
|
|
@@ -8517,18 +8559,19 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8517
8559
|
updated_by_display_name?: string | null | undefined;
|
|
8518
8560
|
unique_name?: string | null | undefined;
|
|
8519
8561
|
legal_name?: string | null | undefined;
|
|
8520
|
-
contact_email?: string | null | undefined;
|
|
8521
|
-
address_city?: string | null | undefined;
|
|
8522
|
-
address_zip?: string | null | undefined;
|
|
8523
8562
|
contact_name?: string | null | undefined;
|
|
8563
|
+
contact_email?: string | null | undefined;
|
|
8524
8564
|
contact_business_phone?: string | null | undefined;
|
|
8525
8565
|
contact_mobile_phone?: string | null | undefined;
|
|
8526
8566
|
contact_time_zone?: string | null | undefined;
|
|
8527
8567
|
address_full?: string | null | undefined;
|
|
8568
|
+
address_city?: string | null | undefined;
|
|
8569
|
+
address_zip?: string | null | undefined;
|
|
8528
8570
|
twitter_username?: string | null | undefined;
|
|
8529
8571
|
logo?: string | null | undefined;
|
|
8530
8572
|
email_sent_from?: string | null | undefined;
|
|
8531
8573
|
email_reply_to?: string | null | undefined;
|
|
8574
|
+
referral_tag?: string | null | undefined;
|
|
8532
8575
|
}>, "many">;
|
|
8533
8576
|
pageInfo: z.ZodObject<{
|
|
8534
8577
|
hasNextPage: z.ZodBoolean;
|
|
@@ -8570,18 +8613,19 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8570
8613
|
updated_by_display_name?: string | null | undefined;
|
|
8571
8614
|
unique_name?: string | null | undefined;
|
|
8572
8615
|
legal_name?: string | null | undefined;
|
|
8573
|
-
contact_email?: string | null | undefined;
|
|
8574
|
-
address_city?: string | null | undefined;
|
|
8575
|
-
address_zip?: string | null | undefined;
|
|
8576
8616
|
contact_name?: string | null | undefined;
|
|
8617
|
+
contact_email?: string | null | undefined;
|
|
8577
8618
|
contact_business_phone?: string | null | undefined;
|
|
8578
8619
|
contact_mobile_phone?: string | null | undefined;
|
|
8579
8620
|
contact_time_zone?: string | null | undefined;
|
|
8580
8621
|
address_full?: string | null | undefined;
|
|
8622
|
+
address_city?: string | null | undefined;
|
|
8623
|
+
address_zip?: string | null | undefined;
|
|
8581
8624
|
twitter_username?: string | null | undefined;
|
|
8582
8625
|
logo?: string | null | undefined;
|
|
8583
8626
|
email_sent_from?: string | null | undefined;
|
|
8584
8627
|
email_reply_to?: string | null | undefined;
|
|
8628
|
+
referral_tag?: string | null | undefined;
|
|
8585
8629
|
}[];
|
|
8586
8630
|
pageInfo: {
|
|
8587
8631
|
hasNextPage: boolean;
|
|
@@ -8609,18 +8653,19 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8609
8653
|
updated_by_display_name?: string | null | undefined;
|
|
8610
8654
|
unique_name?: string | null | undefined;
|
|
8611
8655
|
legal_name?: string | null | undefined;
|
|
8612
|
-
contact_email?: string | null | undefined;
|
|
8613
|
-
address_city?: string | null | undefined;
|
|
8614
|
-
address_zip?: string | null | undefined;
|
|
8615
8656
|
contact_name?: string | null | undefined;
|
|
8657
|
+
contact_email?: string | null | undefined;
|
|
8616
8658
|
contact_business_phone?: string | null | undefined;
|
|
8617
8659
|
contact_mobile_phone?: string | null | undefined;
|
|
8618
8660
|
contact_time_zone?: string | null | undefined;
|
|
8619
8661
|
address_full?: string | null | undefined;
|
|
8662
|
+
address_city?: string | null | undefined;
|
|
8663
|
+
address_zip?: string | null | undefined;
|
|
8620
8664
|
twitter_username?: string | null | undefined;
|
|
8621
8665
|
logo?: string | null | undefined;
|
|
8622
8666
|
email_sent_from?: string | null | undefined;
|
|
8623
8667
|
email_reply_to?: string | null | undefined;
|
|
8668
|
+
referral_tag?: string | null | undefined;
|
|
8624
8669
|
}[];
|
|
8625
8670
|
pageInfo: {
|
|
8626
8671
|
hasNextPage: boolean;
|
|
@@ -8656,6 +8701,7 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8656
8701
|
id: z.ZodString;
|
|
8657
8702
|
original_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8658
8703
|
path: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8704
|
+
referral_tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8659
8705
|
created_at: z.ZodString;
|
|
8660
8706
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8661
8707
|
created_by: z.ZodString;
|
|
@@ -8681,18 +8727,19 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8681
8727
|
updated_by_display_name?: string | null | undefined;
|
|
8682
8728
|
unique_name?: string | null | undefined;
|
|
8683
8729
|
legal_name?: string | null | undefined;
|
|
8684
|
-
contact_email?: string | null | undefined;
|
|
8685
|
-
address_city?: string | null | undefined;
|
|
8686
|
-
address_zip?: string | null | undefined;
|
|
8687
8730
|
contact_name?: string | null | undefined;
|
|
8731
|
+
contact_email?: string | null | undefined;
|
|
8688
8732
|
contact_business_phone?: string | null | undefined;
|
|
8689
8733
|
contact_mobile_phone?: string | null | undefined;
|
|
8690
8734
|
contact_time_zone?: string | null | undefined;
|
|
8691
8735
|
address_full?: string | null | undefined;
|
|
8736
|
+
address_city?: string | null | undefined;
|
|
8737
|
+
address_zip?: string | null | undefined;
|
|
8692
8738
|
twitter_username?: string | null | undefined;
|
|
8693
8739
|
logo?: string | null | undefined;
|
|
8694
8740
|
email_sent_from?: string | null | undefined;
|
|
8695
8741
|
email_reply_to?: string | null | undefined;
|
|
8742
|
+
referral_tag?: string | null | undefined;
|
|
8696
8743
|
}, {
|
|
8697
8744
|
created_at: string;
|
|
8698
8745
|
created_by: string;
|
|
@@ -8710,21 +8757,40 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8710
8757
|
updated_by_display_name?: string | null | undefined;
|
|
8711
8758
|
unique_name?: string | null | undefined;
|
|
8712
8759
|
legal_name?: string | null | undefined;
|
|
8713
|
-
contact_email?: string | null | undefined;
|
|
8714
|
-
address_city?: string | null | undefined;
|
|
8715
|
-
address_zip?: string | null | undefined;
|
|
8716
8760
|
contact_name?: string | null | undefined;
|
|
8761
|
+
contact_email?: string | null | undefined;
|
|
8717
8762
|
contact_business_phone?: string | null | undefined;
|
|
8718
8763
|
contact_mobile_phone?: string | null | undefined;
|
|
8719
8764
|
contact_time_zone?: string | null | undefined;
|
|
8720
8765
|
address_full?: string | null | undefined;
|
|
8766
|
+
address_city?: string | null | undefined;
|
|
8767
|
+
address_zip?: string | null | undefined;
|
|
8721
8768
|
twitter_username?: string | null | undefined;
|
|
8722
8769
|
logo?: string | null | undefined;
|
|
8723
8770
|
email_sent_from?: string | null | undefined;
|
|
8724
8771
|
email_reply_to?: string | null | undefined;
|
|
8772
|
+
referral_tag?: string | null | undefined;
|
|
8725
8773
|
}>;
|
|
8726
8774
|
type TeamReadDto = z.infer<typeof TeamReadSchema>;
|
|
8727
8775
|
//#endregion
|
|
8776
|
+
//#region src/validation/team/team_set_referral_tag_zod.d.ts
|
|
8777
|
+
/**
|
|
8778
|
+
* Schema for super admin to set or clear referral tag on a team.
|
|
8779
|
+
* Pass null, empty string, or omit to clear the tag.
|
|
8780
|
+
* Valid tags are URL-friendly: lowercase, alphanumeric, hyphens only.
|
|
8781
|
+
*/
|
|
8782
|
+
declare const SetReferralTagSchema: z.ZodObject<{
|
|
8783
|
+
team_id: z.ZodString;
|
|
8784
|
+
referral_tag: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">, z.ZodNull]>>>, string | null, string | null | undefined>;
|
|
8785
|
+
}, "strip", z.ZodTypeAny, {
|
|
8786
|
+
referral_tag: string | null;
|
|
8787
|
+
team_id: string;
|
|
8788
|
+
}, {
|
|
8789
|
+
team_id: string;
|
|
8790
|
+
referral_tag?: string | null | undefined;
|
|
8791
|
+
}>;
|
|
8792
|
+
type SetReferralTagDto = z.infer<typeof SetReferralTagSchema>;
|
|
8793
|
+
//#endregion
|
|
8728
8794
|
//#region src/validation/team/team_user_teams_zod.d.ts
|
|
8729
8795
|
/**
|
|
8730
8796
|
* Schema for a team option in user teams list
|
|
@@ -8752,6 +8818,7 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8752
8818
|
id: z.ZodString;
|
|
8753
8819
|
original_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8754
8820
|
path: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8821
|
+
referral_tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8755
8822
|
created_at: z.ZodString;
|
|
8756
8823
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8757
8824
|
created_by: z.ZodString;
|
|
@@ -8777,18 +8844,19 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8777
8844
|
updated_by_display_name?: string | null | undefined;
|
|
8778
8845
|
unique_name?: string | null | undefined;
|
|
8779
8846
|
legal_name?: string | null | undefined;
|
|
8780
|
-
contact_email?: string | null | undefined;
|
|
8781
|
-
address_city?: string | null | undefined;
|
|
8782
|
-
address_zip?: string | null | undefined;
|
|
8783
8847
|
contact_name?: string | null | undefined;
|
|
8848
|
+
contact_email?: string | null | undefined;
|
|
8784
8849
|
contact_business_phone?: string | null | undefined;
|
|
8785
8850
|
contact_mobile_phone?: string | null | undefined;
|
|
8786
8851
|
contact_time_zone?: string | null | undefined;
|
|
8787
8852
|
address_full?: string | null | undefined;
|
|
8853
|
+
address_city?: string | null | undefined;
|
|
8854
|
+
address_zip?: string | null | undefined;
|
|
8788
8855
|
twitter_username?: string | null | undefined;
|
|
8789
8856
|
logo?: string | null | undefined;
|
|
8790
8857
|
email_sent_from?: string | null | undefined;
|
|
8791
8858
|
email_reply_to?: string | null | undefined;
|
|
8859
|
+
referral_tag?: string | null | undefined;
|
|
8792
8860
|
}, {
|
|
8793
8861
|
created_at: string;
|
|
8794
8862
|
created_by: string;
|
|
@@ -8806,18 +8874,19 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8806
8874
|
updated_by_display_name?: string | null | undefined;
|
|
8807
8875
|
unique_name?: string | null | undefined;
|
|
8808
8876
|
legal_name?: string | null | undefined;
|
|
8809
|
-
contact_email?: string | null | undefined;
|
|
8810
|
-
address_city?: string | null | undefined;
|
|
8811
|
-
address_zip?: string | null | undefined;
|
|
8812
8877
|
contact_name?: string | null | undefined;
|
|
8878
|
+
contact_email?: string | null | undefined;
|
|
8813
8879
|
contact_business_phone?: string | null | undefined;
|
|
8814
8880
|
contact_mobile_phone?: string | null | undefined;
|
|
8815
8881
|
contact_time_zone?: string | null | undefined;
|
|
8816
8882
|
address_full?: string | null | undefined;
|
|
8883
|
+
address_city?: string | null | undefined;
|
|
8884
|
+
address_zip?: string | null | undefined;
|
|
8817
8885
|
twitter_username?: string | null | undefined;
|
|
8818
8886
|
logo?: string | null | undefined;
|
|
8819
8887
|
email_sent_from?: string | null | undefined;
|
|
8820
8888
|
email_reply_to?: string | null | undefined;
|
|
8889
|
+
referral_tag?: string | null | undefined;
|
|
8821
8890
|
}>;
|
|
8822
8891
|
type TeamOptionDto = z.infer<typeof TeamOptionSchema>;
|
|
8823
8892
|
/**
|
|
@@ -8846,6 +8915,7 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8846
8915
|
id: z.ZodString;
|
|
8847
8916
|
original_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8848
8917
|
path: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8918
|
+
referral_tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8849
8919
|
created_at: z.ZodString;
|
|
8850
8920
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8851
8921
|
created_by: z.ZodString;
|
|
@@ -8871,18 +8941,19 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8871
8941
|
updated_by_display_name?: string | null | undefined;
|
|
8872
8942
|
unique_name?: string | null | undefined;
|
|
8873
8943
|
legal_name?: string | null | undefined;
|
|
8874
|
-
contact_email?: string | null | undefined;
|
|
8875
|
-
address_city?: string | null | undefined;
|
|
8876
|
-
address_zip?: string | null | undefined;
|
|
8877
8944
|
contact_name?: string | null | undefined;
|
|
8945
|
+
contact_email?: string | null | undefined;
|
|
8878
8946
|
contact_business_phone?: string | null | undefined;
|
|
8879
8947
|
contact_mobile_phone?: string | null | undefined;
|
|
8880
8948
|
contact_time_zone?: string | null | undefined;
|
|
8881
8949
|
address_full?: string | null | undefined;
|
|
8950
|
+
address_city?: string | null | undefined;
|
|
8951
|
+
address_zip?: string | null | undefined;
|
|
8882
8952
|
twitter_username?: string | null | undefined;
|
|
8883
8953
|
logo?: string | null | undefined;
|
|
8884
8954
|
email_sent_from?: string | null | undefined;
|
|
8885
8955
|
email_reply_to?: string | null | undefined;
|
|
8956
|
+
referral_tag?: string | null | undefined;
|
|
8886
8957
|
}, {
|
|
8887
8958
|
created_at: string;
|
|
8888
8959
|
created_by: string;
|
|
@@ -8900,18 +8971,19 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8900
8971
|
updated_by_display_name?: string | null | undefined;
|
|
8901
8972
|
unique_name?: string | null | undefined;
|
|
8902
8973
|
legal_name?: string | null | undefined;
|
|
8903
|
-
contact_email?: string | null | undefined;
|
|
8904
|
-
address_city?: string | null | undefined;
|
|
8905
|
-
address_zip?: string | null | undefined;
|
|
8906
8974
|
contact_name?: string | null | undefined;
|
|
8975
|
+
contact_email?: string | null | undefined;
|
|
8907
8976
|
contact_business_phone?: string | null | undefined;
|
|
8908
8977
|
contact_mobile_phone?: string | null | undefined;
|
|
8909
8978
|
contact_time_zone?: string | null | undefined;
|
|
8910
8979
|
address_full?: string | null | undefined;
|
|
8980
|
+
address_city?: string | null | undefined;
|
|
8981
|
+
address_zip?: string | null | undefined;
|
|
8911
8982
|
twitter_username?: string | null | undefined;
|
|
8912
8983
|
logo?: string | null | undefined;
|
|
8913
8984
|
email_sent_from?: string | null | undefined;
|
|
8914
8985
|
email_reply_to?: string | null | undefined;
|
|
8986
|
+
referral_tag?: string | null | undefined;
|
|
8915
8987
|
}>, "many">;
|
|
8916
8988
|
}, "strip", z.ZodTypeAny, {
|
|
8917
8989
|
items: {
|
|
@@ -8931,18 +9003,19 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8931
9003
|
updated_by_display_name?: string | null | undefined;
|
|
8932
9004
|
unique_name?: string | null | undefined;
|
|
8933
9005
|
legal_name?: string | null | undefined;
|
|
8934
|
-
contact_email?: string | null | undefined;
|
|
8935
|
-
address_city?: string | null | undefined;
|
|
8936
|
-
address_zip?: string | null | undefined;
|
|
8937
9006
|
contact_name?: string | null | undefined;
|
|
9007
|
+
contact_email?: string | null | undefined;
|
|
8938
9008
|
contact_business_phone?: string | null | undefined;
|
|
8939
9009
|
contact_mobile_phone?: string | null | undefined;
|
|
8940
9010
|
contact_time_zone?: string | null | undefined;
|
|
8941
9011
|
address_full?: string | null | undefined;
|
|
9012
|
+
address_city?: string | null | undefined;
|
|
9013
|
+
address_zip?: string | null | undefined;
|
|
8942
9014
|
twitter_username?: string | null | undefined;
|
|
8943
9015
|
logo?: string | null | undefined;
|
|
8944
9016
|
email_sent_from?: string | null | undefined;
|
|
8945
9017
|
email_reply_to?: string | null | undefined;
|
|
9018
|
+
referral_tag?: string | null | undefined;
|
|
8946
9019
|
}[];
|
|
8947
9020
|
}, {
|
|
8948
9021
|
items: {
|
|
@@ -8962,18 +9035,19 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8962
9035
|
updated_by_display_name?: string | null | undefined;
|
|
8963
9036
|
unique_name?: string | null | undefined;
|
|
8964
9037
|
legal_name?: string | null | undefined;
|
|
8965
|
-
contact_email?: string | null | undefined;
|
|
8966
|
-
address_city?: string | null | undefined;
|
|
8967
|
-
address_zip?: string | null | undefined;
|
|
8968
9038
|
contact_name?: string | null | undefined;
|
|
9039
|
+
contact_email?: string | null | undefined;
|
|
8969
9040
|
contact_business_phone?: string | null | undefined;
|
|
8970
9041
|
contact_mobile_phone?: string | null | undefined;
|
|
8971
9042
|
contact_time_zone?: string | null | undefined;
|
|
8972
9043
|
address_full?: string | null | undefined;
|
|
9044
|
+
address_city?: string | null | undefined;
|
|
9045
|
+
address_zip?: string | null | undefined;
|
|
8973
9046
|
twitter_username?: string | null | undefined;
|
|
8974
9047
|
logo?: string | null | undefined;
|
|
8975
9048
|
email_sent_from?: string | null | undefined;
|
|
8976
9049
|
email_reply_to?: string | null | undefined;
|
|
9050
|
+
referral_tag?: string | null | undefined;
|
|
8977
9051
|
}[];
|
|
8978
9052
|
}>;
|
|
8979
9053
|
type UserTeamsDto = z.infer<typeof UserTeamsSchema>;
|
|
@@ -10408,6 +10482,10 @@ interface AppSettingsApi {
|
|
|
10408
10482
|
getSignupRequirements(): Promise<SignupRequirementsDto>;
|
|
10409
10483
|
/** Update signup consent requirements (admin only). */
|
|
10410
10484
|
updateSignupRequirements(config: SignupRequirementsDto): Promise<void>;
|
|
10485
|
+
/** Get default team ID for unknown referral tags (super admin only). */
|
|
10486
|
+
getDefaultTeamIdForUnknownReferrals(): Promise<DefaultReferralTeamFormDto>;
|
|
10487
|
+
/** Update default team ID for unknown referral tags (super admin only). */
|
|
10488
|
+
updateDefaultTeamIdForUnknownReferrals(input: DefaultReferralTeamFormDto): Promise<void>;
|
|
10411
10489
|
}
|
|
10412
10490
|
//#endregion
|
|
10413
10491
|
//#region src/api/attachment-api.d.ts
|
|
@@ -10820,6 +10898,10 @@ interface TeamApi {
|
|
|
10820
10898
|
* Get teams for the current authenticated user
|
|
10821
10899
|
*/
|
|
10822
10900
|
getUserTeams(): Promise<UserTeamsDto>;
|
|
10901
|
+
/**
|
|
10902
|
+
* Set or clear referral tag on a team (super admin only)
|
|
10903
|
+
*/
|
|
10904
|
+
setReferralTag(input: SetReferralTagDto): Promise<TeamReadDto>;
|
|
10823
10905
|
}
|
|
10824
10906
|
//#endregion
|
|
10825
10907
|
//#region src/api/team-member-api.d.ts
|
|
@@ -11131,5 +11213,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
11131
11213
|
*/
|
|
11132
11214
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
11133
11215
|
//#endregion
|
|
11134
|
-
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SignupCompleteInputDto, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInitiateInputDto, SignupInitiateResponseDto, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupCompleteSchema, signupInitiateConsentRequiredSchema, signupInitiateCreatedSchema, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
11216
|
+
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DefaultReferralTeamFormDto, DefaultReferralTeamFormSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, REFERRAL_TAG_ERROR_MESSAGE, REFERRAL_TAG_MAX, REFERRAL_TAG_MIN, REFERRAL_TAG_REGEX, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, ReferralTagValueSchema, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SetReferralTagDto, SetReferralTagSchema, SignupCompleteInputDto, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInitiateInputDto, SignupInitiateResponseDto, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, normalizeToReferralTag, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupCompleteSchema, signupInitiateConsentRequiredSchema, signupInitiateCreatedSchema, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
11135
11217
|
//# sourceMappingURL=index.d.mts.map
|