@dragonmastery/dragoncore-shared 0.0.26 → 0.0.28
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 +149 -93
- package/dist/index.mjs +26 -1
- 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;
|
|
@@ -147,12 +162,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
147
162
|
updated_at?: string | null | undefined;
|
|
148
163
|
updated_by?: string | null | undefined;
|
|
149
164
|
metadata?: string | null | undefined;
|
|
165
|
+
parent_folder_id?: string | null | undefined;
|
|
166
|
+
file_count?: number | undefined;
|
|
150
167
|
archived_at?: string | null | undefined;
|
|
151
168
|
archived_by?: string | null | undefined;
|
|
152
169
|
deleted_at?: string | null | undefined;
|
|
153
170
|
deleted_by?: string | null | undefined;
|
|
154
|
-
parent_folder_id?: string | null | undefined;
|
|
155
|
-
file_count?: number | undefined;
|
|
156
171
|
}, {
|
|
157
172
|
created_at: string;
|
|
158
173
|
created_by: string;
|
|
@@ -165,12 +180,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
165
180
|
updated_at?: string | null | undefined;
|
|
166
181
|
updated_by?: string | null | undefined;
|
|
167
182
|
metadata?: string | null | undefined;
|
|
183
|
+
parent_folder_id?: string | null | undefined;
|
|
184
|
+
file_count?: number | undefined;
|
|
168
185
|
archived_at?: string | null | undefined;
|
|
169
186
|
archived_by?: string | null | undefined;
|
|
170
187
|
deleted_at?: string | null | undefined;
|
|
171
188
|
deleted_by?: string | null | undefined;
|
|
172
|
-
parent_folder_id?: string | null | undefined;
|
|
173
|
-
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
|
-
metadata?: string | null | undefined;
|
|
197
211
|
folder_id?: string | null | undefined;
|
|
212
|
+
metadata?: 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
|
-
metadata?: string | null | undefined;
|
|
207
221
|
folder_id?: string | null | undefined;
|
|
222
|
+
metadata?: 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;
|
|
242
|
+
folder_id?: string | null | undefined;
|
|
227
243
|
sanitized_name?: string | undefined;
|
|
228
244
|
original_name?: string | undefined;
|
|
245
|
+
metadata?: string | null | undefined;
|
|
229
246
|
content_type?: string | undefined;
|
|
230
247
|
file_size?: string | undefined;
|
|
231
|
-
metadata?: string | null | undefined;
|
|
232
|
-
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;
|
|
253
|
+
folder_id?: string | null | undefined;
|
|
238
254
|
sanitized_name?: string | undefined;
|
|
239
255
|
original_name?: string | undefined;
|
|
256
|
+
metadata?: string | null | undefined;
|
|
240
257
|
content_type?: string | undefined;
|
|
241
258
|
file_size?: string | undefined;
|
|
242
|
-
metadata?: string | null | undefined;
|
|
243
|
-
folder_id?: string | null | undefined;
|
|
244
259
|
}>;
|
|
245
260
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
246
261
|
//#endregion
|
|
@@ -279,8 +294,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
279
294
|
description?: string | null | undefined;
|
|
280
295
|
updated_at?: string | null | undefined;
|
|
281
296
|
updated_by?: string | null | undefined;
|
|
282
|
-
metadata?: string | null | undefined;
|
|
283
297
|
folder_id?: string | null | undefined;
|
|
298
|
+
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;
|
|
@@ -298,8 +313,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
298
313
|
description?: string | null | undefined;
|
|
299
314
|
updated_at?: string | null | undefined;
|
|
300
315
|
updated_by?: string | null | undefined;
|
|
301
|
-
metadata?: string | null | undefined;
|
|
302
316
|
folder_id?: string | null | undefined;
|
|
317
|
+
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;
|
|
@@ -336,12 +351,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
336
351
|
updated_at?: string | null | undefined;
|
|
337
352
|
updated_by?: string | null | undefined;
|
|
338
353
|
metadata?: string | null | undefined;
|
|
354
|
+
parent_folder_id?: string | null | undefined;
|
|
355
|
+
file_count?: number | undefined;
|
|
339
356
|
archived_at?: string | null | undefined;
|
|
340
357
|
archived_by?: string | null | undefined;
|
|
341
358
|
deleted_at?: string | null | undefined;
|
|
342
359
|
deleted_by?: string | null | undefined;
|
|
343
|
-
parent_folder_id?: string | null | undefined;
|
|
344
|
-
file_count?: number | undefined;
|
|
345
360
|
}, {
|
|
346
361
|
created_at: string;
|
|
347
362
|
created_by: string;
|
|
@@ -354,12 +369,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
354
369
|
updated_at?: string | null | undefined;
|
|
355
370
|
updated_by?: string | null | undefined;
|
|
356
371
|
metadata?: string | null | undefined;
|
|
372
|
+
parent_folder_id?: string | null | undefined;
|
|
373
|
+
file_count?: number | undefined;
|
|
357
374
|
archived_at?: string | null | undefined;
|
|
358
375
|
archived_by?: string | null | undefined;
|
|
359
376
|
deleted_at?: string | null | undefined;
|
|
360
377
|
deleted_by?: string | null | undefined;
|
|
361
|
-
parent_folder_id?: string | null | undefined;
|
|
362
|
-
file_count?: number | undefined;
|
|
363
378
|
}>, "many">;
|
|
364
379
|
pageInfo: z.ZodObject<{
|
|
365
380
|
hasNextPage: z.ZodBoolean;
|
|
@@ -389,8 +404,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
389
404
|
description?: string | null | undefined;
|
|
390
405
|
updated_at?: string | null | undefined;
|
|
391
406
|
updated_by?: string | null | undefined;
|
|
392
|
-
metadata?: string | null | undefined;
|
|
393
407
|
folder_id?: string | null | undefined;
|
|
408
|
+
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;
|
|
@@ -408,12 +423,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
408
423
|
updated_at?: string | null | undefined;
|
|
409
424
|
updated_by?: string | null | undefined;
|
|
410
425
|
metadata?: string | null | undefined;
|
|
426
|
+
parent_folder_id?: string | null | undefined;
|
|
427
|
+
file_count?: number | undefined;
|
|
411
428
|
archived_at?: string | null | undefined;
|
|
412
429
|
archived_by?: string | null | undefined;
|
|
413
430
|
deleted_at?: string | null | undefined;
|
|
414
431
|
deleted_by?: string | null | undefined;
|
|
415
|
-
parent_folder_id?: string | null | undefined;
|
|
416
|
-
file_count?: number | undefined;
|
|
417
432
|
}[];
|
|
418
433
|
}, {
|
|
419
434
|
pageInfo: {
|
|
@@ -433,8 +448,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
433
448
|
description?: string | null | undefined;
|
|
434
449
|
updated_at?: string | null | undefined;
|
|
435
450
|
updated_by?: string | null | undefined;
|
|
436
|
-
metadata?: string | null | undefined;
|
|
437
451
|
folder_id?: string | null | undefined;
|
|
452
|
+
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;
|
|
@@ -452,12 +467,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
452
467
|
updated_at?: string | null | undefined;
|
|
453
468
|
updated_by?: string | null | undefined;
|
|
454
469
|
metadata?: string | null | undefined;
|
|
470
|
+
parent_folder_id?: string | null | undefined;
|
|
471
|
+
file_count?: number | undefined;
|
|
455
472
|
archived_at?: string | null | undefined;
|
|
456
473
|
archived_by?: string | null | undefined;
|
|
457
474
|
deleted_at?: string | null | undefined;
|
|
458
475
|
deleted_by?: string | null | undefined;
|
|
459
|
-
parent_folder_id?: string | null | undefined;
|
|
460
|
-
file_count?: number | undefined;
|
|
461
476
|
}[];
|
|
462
477
|
}>;
|
|
463
478
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -496,8 +511,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
496
511
|
description?: string | null | undefined;
|
|
497
512
|
updated_at?: string | null | undefined;
|
|
498
513
|
updated_by?: string | null | undefined;
|
|
499
|
-
metadata?: string | null | undefined;
|
|
500
514
|
folder_id?: string | null | undefined;
|
|
515
|
+
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;
|
|
@@ -515,8 +530,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
515
530
|
description?: string | null | undefined;
|
|
516
531
|
updated_at?: string | null | undefined;
|
|
517
532
|
updated_by?: string | null | undefined;
|
|
518
|
-
metadata?: string | null | undefined;
|
|
519
533
|
folder_id?: string | null | undefined;
|
|
534
|
+
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;
|
|
@@ -2081,11 +2096,11 @@ declare const loginSchema: z.ZodObject<{
|
|
|
2081
2096
|
email: z.ZodString;
|
|
2082
2097
|
password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2083
2098
|
}, "strip", z.ZodTypeAny, {
|
|
2084
|
-
email: string;
|
|
2085
2099
|
password: string;
|
|
2086
|
-
}, {
|
|
2087
2100
|
email: string;
|
|
2101
|
+
}, {
|
|
2088
2102
|
password: string;
|
|
2103
|
+
email: string;
|
|
2089
2104
|
}>;
|
|
2090
2105
|
type LoginInputDto = z.infer<typeof loginSchema>;
|
|
2091
2106
|
//#endregion
|
|
@@ -4649,10 +4664,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4649
4664
|
created_by_display_name?: string | null | undefined;
|
|
4650
4665
|
display_id?: string | null | undefined;
|
|
4651
4666
|
credit_value?: string | null | undefined;
|
|
4667
|
+
display_id_prefix?: string | null | undefined;
|
|
4652
4668
|
start_at?: string | null | undefined;
|
|
4653
4669
|
target_at?: string | null | undefined;
|
|
4654
4670
|
completed_at?: string | null | undefined;
|
|
4655
|
-
display_id_prefix?: string | null | undefined;
|
|
4656
4671
|
locked_approval_at?: string | null | undefined;
|
|
4657
4672
|
my_subscription?: {
|
|
4658
4673
|
created_at: string;
|
|
@@ -4681,10 +4696,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4681
4696
|
created_by_display_name?: string | null | undefined;
|
|
4682
4697
|
display_id?: string | null | undefined;
|
|
4683
4698
|
credit_value?: string | null | undefined;
|
|
4699
|
+
display_id_prefix?: string | null | undefined;
|
|
4684
4700
|
start_at?: string | null | undefined;
|
|
4685
4701
|
target_at?: string | null | undefined;
|
|
4686
4702
|
completed_at?: string | null | undefined;
|
|
4687
|
-
display_id_prefix?: string | null | undefined;
|
|
4688
4703
|
locked_approval_at?: string | null | undefined;
|
|
4689
4704
|
my_subscription?: {
|
|
4690
4705
|
created_at: string;
|
|
@@ -4771,10 +4786,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4771
4786
|
created_by_display_name?: string | null | undefined;
|
|
4772
4787
|
display_id?: string | null | undefined;
|
|
4773
4788
|
credit_value?: string | null | undefined;
|
|
4789
|
+
display_id_prefix?: string | null | undefined;
|
|
4774
4790
|
start_at?: string | null | undefined;
|
|
4775
4791
|
target_at?: string | null | undefined;
|
|
4776
4792
|
completed_at?: string | null | undefined;
|
|
4777
|
-
display_id_prefix?: string | null | undefined;
|
|
4778
4793
|
locked_approval_at?: string | null | undefined;
|
|
4779
4794
|
my_subscription?: {
|
|
4780
4795
|
created_at: string;
|
|
@@ -4803,10 +4818,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4803
4818
|
created_by_display_name?: string | null | undefined;
|
|
4804
4819
|
display_id?: string | null | undefined;
|
|
4805
4820
|
credit_value?: string | null | undefined;
|
|
4821
|
+
display_id_prefix?: string | null | undefined;
|
|
4806
4822
|
start_at?: string | null | undefined;
|
|
4807
4823
|
target_at?: string | null | undefined;
|
|
4808
4824
|
completed_at?: string | null | undefined;
|
|
4809
|
-
display_id_prefix?: string | null | undefined;
|
|
4810
4825
|
locked_approval_at?: string | null | undefined;
|
|
4811
4826
|
my_subscription?: {
|
|
4812
4827
|
created_at: string;
|
|
@@ -4859,10 +4874,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4859
4874
|
created_by_display_name?: string | null | undefined;
|
|
4860
4875
|
display_id?: string | null | undefined;
|
|
4861
4876
|
credit_value?: string | null | undefined;
|
|
4877
|
+
display_id_prefix?: string | null | undefined;
|
|
4862
4878
|
start_at?: string | null | undefined;
|
|
4863
4879
|
target_at?: string | null | undefined;
|
|
4864
4880
|
completed_at?: string | null | undefined;
|
|
4865
|
-
display_id_prefix?: string | null | undefined;
|
|
4866
4881
|
locked_approval_at?: string | null | undefined;
|
|
4867
4882
|
my_subscription?: {
|
|
4868
4883
|
created_at: string;
|
|
@@ -4901,10 +4916,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4901
4916
|
created_by_display_name?: string | null | undefined;
|
|
4902
4917
|
display_id?: string | null | undefined;
|
|
4903
4918
|
credit_value?: string | null | undefined;
|
|
4919
|
+
display_id_prefix?: string | null | undefined;
|
|
4904
4920
|
start_at?: string | null | undefined;
|
|
4905
4921
|
target_at?: string | null | undefined;
|
|
4906
4922
|
completed_at?: string | null | undefined;
|
|
4907
|
-
display_id_prefix?: string | null | undefined;
|
|
4908
4923
|
locked_approval_at?: string | null | undefined;
|
|
4909
4924
|
my_subscription?: {
|
|
4910
4925
|
created_at: string;
|
|
@@ -5956,10 +5971,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5956
5971
|
display_id?: string | null | undefined;
|
|
5957
5972
|
credit_value?: string | null | undefined;
|
|
5958
5973
|
delivered_value?: string | null | undefined;
|
|
5974
|
+
display_id_prefix?: string | null | undefined;
|
|
5959
5975
|
start_at?: string | null | undefined;
|
|
5960
5976
|
target_at?: string | null | undefined;
|
|
5961
5977
|
completed_at?: string | null | undefined;
|
|
5962
|
-
display_id_prefix?: string | null | undefined;
|
|
5963
5978
|
locked_approval_at?: string | null | undefined;
|
|
5964
5979
|
assigned_to?: string | null | undefined;
|
|
5965
5980
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -5985,10 +6000,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5985
6000
|
display_id?: string | null | undefined;
|
|
5986
6001
|
credit_value?: string | null | undefined;
|
|
5987
6002
|
delivered_value?: string | null | undefined;
|
|
6003
|
+
display_id_prefix?: string | null | undefined;
|
|
5988
6004
|
start_at?: string | null | undefined;
|
|
5989
6005
|
target_at?: string | null | undefined;
|
|
5990
6006
|
completed_at?: string | null | undefined;
|
|
5991
|
-
display_id_prefix?: string | null | undefined;
|
|
5992
6007
|
locked_approval_at?: string | null | undefined;
|
|
5993
6008
|
assigned_to?: string | null | undefined;
|
|
5994
6009
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6049,10 +6064,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6049
6064
|
display_id?: string | null | undefined;
|
|
6050
6065
|
credit_value?: string | null | undefined;
|
|
6051
6066
|
delivered_value?: string | null | undefined;
|
|
6067
|
+
display_id_prefix?: string | null | undefined;
|
|
6052
6068
|
start_at?: string | null | undefined;
|
|
6053
6069
|
target_at?: string | null | undefined;
|
|
6054
6070
|
completed_at?: string | null | undefined;
|
|
6055
|
-
display_id_prefix?: string | null | undefined;
|
|
6056
6071
|
locked_approval_at?: string | null | undefined;
|
|
6057
6072
|
assigned_to?: string | null | undefined;
|
|
6058
6073
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6078,10 +6093,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6078
6093
|
display_id?: string | null | undefined;
|
|
6079
6094
|
credit_value?: string | null | undefined;
|
|
6080
6095
|
delivered_value?: string | null | undefined;
|
|
6096
|
+
display_id_prefix?: string | null | undefined;
|
|
6081
6097
|
start_at?: string | null | undefined;
|
|
6082
6098
|
target_at?: string | null | undefined;
|
|
6083
6099
|
completed_at?: string | null | undefined;
|
|
6084
|
-
display_id_prefix?: string | null | undefined;
|
|
6085
6100
|
locked_approval_at?: string | null | undefined;
|
|
6086
6101
|
assigned_to?: string | null | undefined;
|
|
6087
6102
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6131,10 +6146,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6131
6146
|
display_id?: string | null | undefined;
|
|
6132
6147
|
credit_value?: string | null | undefined;
|
|
6133
6148
|
delivered_value?: string | null | undefined;
|
|
6149
|
+
display_id_prefix?: string | null | undefined;
|
|
6134
6150
|
start_at?: string | null | undefined;
|
|
6135
6151
|
target_at?: string | null | undefined;
|
|
6136
6152
|
completed_at?: string | null | undefined;
|
|
6137
|
-
display_id_prefix?: string | null | undefined;
|
|
6138
6153
|
locked_approval_at?: string | null | undefined;
|
|
6139
6154
|
assigned_to?: string | null | undefined;
|
|
6140
6155
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6170,10 +6185,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6170
6185
|
display_id?: string | null | undefined;
|
|
6171
6186
|
credit_value?: string | null | undefined;
|
|
6172
6187
|
delivered_value?: string | null | undefined;
|
|
6188
|
+
display_id_prefix?: string | null | undefined;
|
|
6173
6189
|
start_at?: string | null | undefined;
|
|
6174
6190
|
target_at?: string | null | undefined;
|
|
6175
6191
|
completed_at?: string | null | undefined;
|
|
6176
|
-
display_id_prefix?: string | null | undefined;
|
|
6177
6192
|
locked_approval_at?: string | null | undefined;
|
|
6178
6193
|
assigned_to?: string | null | undefined;
|
|
6179
6194
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -8291,14 +8306,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8291
8306
|
url?: string | null | undefined;
|
|
8292
8307
|
unique_name?: string | null | undefined;
|
|
8293
8308
|
legal_name?: string | null | undefined;
|
|
8294
|
-
contact_name?: string | null | undefined;
|
|
8295
8309
|
contact_email?: string | null | undefined;
|
|
8310
|
+
address_city?: string | null | undefined;
|
|
8311
|
+
address_zip?: string | null | undefined;
|
|
8312
|
+
contact_name?: string | null | undefined;
|
|
8296
8313
|
contact_business_phone?: string | null | undefined;
|
|
8297
8314
|
contact_mobile_phone?: string | null | undefined;
|
|
8298
8315
|
contact_time_zone?: string | null | undefined;
|
|
8299
8316
|
address_full?: string | null | undefined;
|
|
8300
|
-
address_city?: string | null | undefined;
|
|
8301
|
-
address_zip?: string | null | undefined;
|
|
8302
8317
|
twitter_username?: string | null | undefined;
|
|
8303
8318
|
logo?: string | null | undefined;
|
|
8304
8319
|
email_sent_from?: string | null | undefined;
|
|
@@ -8309,14 +8324,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8309
8324
|
url?: string | null | undefined;
|
|
8310
8325
|
unique_name?: string | null | undefined;
|
|
8311
8326
|
legal_name?: string | null | undefined;
|
|
8312
|
-
contact_name?: string | null | undefined;
|
|
8313
8327
|
contact_email?: string | null | undefined;
|
|
8328
|
+
address_city?: string | null | undefined;
|
|
8329
|
+
address_zip?: string | null | undefined;
|
|
8330
|
+
contact_name?: string | null | undefined;
|
|
8314
8331
|
contact_business_phone?: string | null | undefined;
|
|
8315
8332
|
contact_mobile_phone?: string | null | undefined;
|
|
8316
8333
|
contact_time_zone?: string | null | undefined;
|
|
8317
8334
|
address_full?: string | null | undefined;
|
|
8318
|
-
address_city?: string | null | undefined;
|
|
8319
|
-
address_zip?: string | null | undefined;
|
|
8320
8335
|
twitter_username?: string | null | undefined;
|
|
8321
8336
|
logo?: string | null | undefined;
|
|
8322
8337
|
email_sent_from?: string | null | undefined;
|
|
@@ -8346,14 +8361,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8346
8361
|
url?: string | null | undefined;
|
|
8347
8362
|
unique_name?: string | null | undefined;
|
|
8348
8363
|
legal_name?: string | null | undefined;
|
|
8349
|
-
contact_name?: string | null | undefined;
|
|
8350
8364
|
contact_email?: string | null | undefined;
|
|
8365
|
+
address_city?: string | null | undefined;
|
|
8366
|
+
address_zip?: string | null | undefined;
|
|
8367
|
+
contact_name?: string | null | undefined;
|
|
8351
8368
|
contact_business_phone?: string | null | undefined;
|
|
8352
8369
|
contact_mobile_phone?: string | null | undefined;
|
|
8353
8370
|
contact_time_zone?: string | null | undefined;
|
|
8354
8371
|
address_full?: string | null | undefined;
|
|
8355
|
-
address_city?: string | null | undefined;
|
|
8356
|
-
address_zip?: string | null | undefined;
|
|
8357
8372
|
twitter_username?: string | null | undefined;
|
|
8358
8373
|
logo?: string | null | undefined;
|
|
8359
8374
|
email_sent_from?: string | null | undefined;
|
|
@@ -8364,14 +8379,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8364
8379
|
url?: string | null | undefined;
|
|
8365
8380
|
unique_name?: string | null | undefined;
|
|
8366
8381
|
legal_name?: string | null | undefined;
|
|
8367
|
-
contact_name?: string | null | undefined;
|
|
8368
8382
|
contact_email?: string | null | undefined;
|
|
8383
|
+
address_city?: string | null | undefined;
|
|
8384
|
+
address_zip?: string | null | undefined;
|
|
8385
|
+
contact_name?: string | null | undefined;
|
|
8369
8386
|
contact_business_phone?: string | null | undefined;
|
|
8370
8387
|
contact_mobile_phone?: string | null | undefined;
|
|
8371
8388
|
contact_time_zone?: string | null | undefined;
|
|
8372
8389
|
address_full?: string | null | undefined;
|
|
8373
|
-
address_city?: string | null | undefined;
|
|
8374
|
-
address_zip?: string | null | undefined;
|
|
8375
8390
|
twitter_username?: string | null | undefined;
|
|
8376
8391
|
logo?: string | null | undefined;
|
|
8377
8392
|
email_sent_from?: string | null | undefined;
|
|
@@ -8405,14 +8420,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8405
8420
|
url?: string | null | undefined;
|
|
8406
8421
|
unique_name?: string | null | undefined;
|
|
8407
8422
|
legal_name?: string | null | undefined;
|
|
8408
|
-
contact_name?: string | null | undefined;
|
|
8409
8423
|
contact_email?: string | null | undefined;
|
|
8424
|
+
address_city?: string | null | undefined;
|
|
8425
|
+
address_zip?: string | null | undefined;
|
|
8426
|
+
contact_name?: string | null | undefined;
|
|
8410
8427
|
contact_business_phone?: string | null | undefined;
|
|
8411
8428
|
contact_mobile_phone?: string | null | undefined;
|
|
8412
8429
|
contact_time_zone?: string | null | undefined;
|
|
8413
8430
|
address_full?: string | null | undefined;
|
|
8414
|
-
address_city?: string | null | undefined;
|
|
8415
|
-
address_zip?: string | null | undefined;
|
|
8416
8431
|
twitter_username?: string | null | undefined;
|
|
8417
8432
|
logo?: string | null | undefined;
|
|
8418
8433
|
email_sent_from?: string | null | undefined;
|
|
@@ -8424,14 +8439,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8424
8439
|
url?: string | null | undefined;
|
|
8425
8440
|
unique_name?: string | null | undefined;
|
|
8426
8441
|
legal_name?: string | null | undefined;
|
|
8427
|
-
contact_name?: string | null | undefined;
|
|
8428
8442
|
contact_email?: string | null | undefined;
|
|
8443
|
+
address_city?: string | null | undefined;
|
|
8444
|
+
address_zip?: string | null | undefined;
|
|
8445
|
+
contact_name?: string | null | undefined;
|
|
8429
8446
|
contact_business_phone?: string | null | undefined;
|
|
8430
8447
|
contact_mobile_phone?: string | null | undefined;
|
|
8431
8448
|
contact_time_zone?: string | null | undefined;
|
|
8432
8449
|
address_full?: string | null | undefined;
|
|
8433
|
-
address_city?: string | null | undefined;
|
|
8434
|
-
address_zip?: string | null | undefined;
|
|
8435
8450
|
twitter_username?: string | null | undefined;
|
|
8436
8451
|
logo?: string | null | undefined;
|
|
8437
8452
|
email_sent_from?: string | null | undefined;
|
|
@@ -8463,6 +8478,7 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8463
8478
|
id: z.ZodString;
|
|
8464
8479
|
original_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8465
8480
|
path: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8481
|
+
referral_tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8466
8482
|
created_at: z.ZodString;
|
|
8467
8483
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8468
8484
|
created_by: z.ZodString;
|
|
@@ -8488,18 +8504,19 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8488
8504
|
updated_by_display_name?: string | null | undefined;
|
|
8489
8505
|
unique_name?: string | null | undefined;
|
|
8490
8506
|
legal_name?: string | null | undefined;
|
|
8491
|
-
contact_name?: string | null | undefined;
|
|
8492
8507
|
contact_email?: string | null | undefined;
|
|
8508
|
+
address_city?: string | null | undefined;
|
|
8509
|
+
address_zip?: string | null | undefined;
|
|
8510
|
+
contact_name?: string | null | undefined;
|
|
8493
8511
|
contact_business_phone?: string | null | undefined;
|
|
8494
8512
|
contact_mobile_phone?: string | null | undefined;
|
|
8495
8513
|
contact_time_zone?: string | null | undefined;
|
|
8496
8514
|
address_full?: string | null | undefined;
|
|
8497
|
-
address_city?: string | null | undefined;
|
|
8498
|
-
address_zip?: string | null | undefined;
|
|
8499
8515
|
twitter_username?: string | null | undefined;
|
|
8500
8516
|
logo?: string | null | undefined;
|
|
8501
8517
|
email_sent_from?: string | null | undefined;
|
|
8502
8518
|
email_reply_to?: string | null | undefined;
|
|
8519
|
+
referral_tag?: string | null | undefined;
|
|
8503
8520
|
}, {
|
|
8504
8521
|
created_at: string;
|
|
8505
8522
|
created_by: string;
|
|
@@ -8517,18 +8534,19 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8517
8534
|
updated_by_display_name?: string | null | undefined;
|
|
8518
8535
|
unique_name?: string | null | undefined;
|
|
8519
8536
|
legal_name?: string | null | undefined;
|
|
8520
|
-
contact_name?: string | null | undefined;
|
|
8521
8537
|
contact_email?: string | null | undefined;
|
|
8538
|
+
address_city?: string | null | undefined;
|
|
8539
|
+
address_zip?: string | null | undefined;
|
|
8540
|
+
contact_name?: string | null | undefined;
|
|
8522
8541
|
contact_business_phone?: string | null | undefined;
|
|
8523
8542
|
contact_mobile_phone?: string | null | undefined;
|
|
8524
8543
|
contact_time_zone?: string | null | undefined;
|
|
8525
8544
|
address_full?: string | null | undefined;
|
|
8526
|
-
address_city?: string | null | undefined;
|
|
8527
|
-
address_zip?: string | null | undefined;
|
|
8528
8545
|
twitter_username?: string | null | undefined;
|
|
8529
8546
|
logo?: string | null | undefined;
|
|
8530
8547
|
email_sent_from?: string | null | undefined;
|
|
8531
8548
|
email_reply_to?: string | null | undefined;
|
|
8549
|
+
referral_tag?: string | null | undefined;
|
|
8532
8550
|
}>, "many">;
|
|
8533
8551
|
pageInfo: z.ZodObject<{
|
|
8534
8552
|
hasNextPage: z.ZodBoolean;
|
|
@@ -8570,18 +8588,19 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8570
8588
|
updated_by_display_name?: string | null | undefined;
|
|
8571
8589
|
unique_name?: string | null | undefined;
|
|
8572
8590
|
legal_name?: string | null | undefined;
|
|
8573
|
-
contact_name?: string | null | undefined;
|
|
8574
8591
|
contact_email?: string | null | undefined;
|
|
8592
|
+
address_city?: string | null | undefined;
|
|
8593
|
+
address_zip?: string | null | undefined;
|
|
8594
|
+
contact_name?: string | null | undefined;
|
|
8575
8595
|
contact_business_phone?: string | null | undefined;
|
|
8576
8596
|
contact_mobile_phone?: string | null | undefined;
|
|
8577
8597
|
contact_time_zone?: string | null | undefined;
|
|
8578
8598
|
address_full?: string | null | undefined;
|
|
8579
|
-
address_city?: string | null | undefined;
|
|
8580
|
-
address_zip?: string | null | undefined;
|
|
8581
8599
|
twitter_username?: string | null | undefined;
|
|
8582
8600
|
logo?: string | null | undefined;
|
|
8583
8601
|
email_sent_from?: string | null | undefined;
|
|
8584
8602
|
email_reply_to?: string | null | undefined;
|
|
8603
|
+
referral_tag?: string | null | undefined;
|
|
8585
8604
|
}[];
|
|
8586
8605
|
pageInfo: {
|
|
8587
8606
|
hasNextPage: boolean;
|
|
@@ -8609,18 +8628,19 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8609
8628
|
updated_by_display_name?: string | null | undefined;
|
|
8610
8629
|
unique_name?: string | null | undefined;
|
|
8611
8630
|
legal_name?: string | null | undefined;
|
|
8612
|
-
contact_name?: string | null | undefined;
|
|
8613
8631
|
contact_email?: string | null | undefined;
|
|
8632
|
+
address_city?: string | null | undefined;
|
|
8633
|
+
address_zip?: string | null | undefined;
|
|
8634
|
+
contact_name?: string | null | undefined;
|
|
8614
8635
|
contact_business_phone?: string | null | undefined;
|
|
8615
8636
|
contact_mobile_phone?: string | null | undefined;
|
|
8616
8637
|
contact_time_zone?: string | null | undefined;
|
|
8617
8638
|
address_full?: string | null | undefined;
|
|
8618
|
-
address_city?: string | null | undefined;
|
|
8619
|
-
address_zip?: string | null | undefined;
|
|
8620
8639
|
twitter_username?: string | null | undefined;
|
|
8621
8640
|
logo?: string | null | undefined;
|
|
8622
8641
|
email_sent_from?: string | null | undefined;
|
|
8623
8642
|
email_reply_to?: string | null | undefined;
|
|
8643
|
+
referral_tag?: string | null | undefined;
|
|
8624
8644
|
}[];
|
|
8625
8645
|
pageInfo: {
|
|
8626
8646
|
hasNextPage: boolean;
|
|
@@ -8656,6 +8676,7 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8656
8676
|
id: z.ZodString;
|
|
8657
8677
|
original_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8658
8678
|
path: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8679
|
+
referral_tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8659
8680
|
created_at: z.ZodString;
|
|
8660
8681
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8661
8682
|
created_by: z.ZodString;
|
|
@@ -8681,18 +8702,19 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8681
8702
|
updated_by_display_name?: string | null | undefined;
|
|
8682
8703
|
unique_name?: string | null | undefined;
|
|
8683
8704
|
legal_name?: string | null | undefined;
|
|
8684
|
-
contact_name?: string | null | undefined;
|
|
8685
8705
|
contact_email?: string | null | undefined;
|
|
8706
|
+
address_city?: string | null | undefined;
|
|
8707
|
+
address_zip?: string | null | undefined;
|
|
8708
|
+
contact_name?: string | null | undefined;
|
|
8686
8709
|
contact_business_phone?: string | null | undefined;
|
|
8687
8710
|
contact_mobile_phone?: string | null | undefined;
|
|
8688
8711
|
contact_time_zone?: string | null | undefined;
|
|
8689
8712
|
address_full?: string | null | undefined;
|
|
8690
|
-
address_city?: string | null | undefined;
|
|
8691
|
-
address_zip?: string | null | undefined;
|
|
8692
8713
|
twitter_username?: string | null | undefined;
|
|
8693
8714
|
logo?: string | null | undefined;
|
|
8694
8715
|
email_sent_from?: string | null | undefined;
|
|
8695
8716
|
email_reply_to?: string | null | undefined;
|
|
8717
|
+
referral_tag?: string | null | undefined;
|
|
8696
8718
|
}, {
|
|
8697
8719
|
created_at: string;
|
|
8698
8720
|
created_by: string;
|
|
@@ -8710,21 +8732,39 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8710
8732
|
updated_by_display_name?: string | null | undefined;
|
|
8711
8733
|
unique_name?: string | null | undefined;
|
|
8712
8734
|
legal_name?: string | null | undefined;
|
|
8713
|
-
contact_name?: string | null | undefined;
|
|
8714
8735
|
contact_email?: string | null | undefined;
|
|
8736
|
+
address_city?: string | null | undefined;
|
|
8737
|
+
address_zip?: string | null | undefined;
|
|
8738
|
+
contact_name?: string | null | undefined;
|
|
8715
8739
|
contact_business_phone?: string | null | undefined;
|
|
8716
8740
|
contact_mobile_phone?: string | null | undefined;
|
|
8717
8741
|
contact_time_zone?: string | null | undefined;
|
|
8718
8742
|
address_full?: string | null | undefined;
|
|
8719
|
-
address_city?: string | null | undefined;
|
|
8720
|
-
address_zip?: string | null | undefined;
|
|
8721
8743
|
twitter_username?: string | null | undefined;
|
|
8722
8744
|
logo?: string | null | undefined;
|
|
8723
8745
|
email_sent_from?: string | null | undefined;
|
|
8724
8746
|
email_reply_to?: string | null | undefined;
|
|
8747
|
+
referral_tag?: string | null | undefined;
|
|
8725
8748
|
}>;
|
|
8726
8749
|
type TeamReadDto = z.infer<typeof TeamReadSchema>;
|
|
8727
8750
|
//#endregion
|
|
8751
|
+
//#region src/validation/team/team_set_referral_tag_zod.d.ts
|
|
8752
|
+
/**
|
|
8753
|
+
* Schema for super admin to set or clear referral tag on a team.
|
|
8754
|
+
* Pass null, empty string, or omit to clear the tag.
|
|
8755
|
+
*/
|
|
8756
|
+
declare const SetReferralTagSchema: z.ZodObject<{
|
|
8757
|
+
team_id: z.ZodString;
|
|
8758
|
+
referral_tag: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">, z.ZodNull]>>>, string | null, string | null | undefined>;
|
|
8759
|
+
}, "strip", z.ZodTypeAny, {
|
|
8760
|
+
referral_tag: string | null;
|
|
8761
|
+
team_id: string;
|
|
8762
|
+
}, {
|
|
8763
|
+
team_id: string;
|
|
8764
|
+
referral_tag?: string | null | undefined;
|
|
8765
|
+
}>;
|
|
8766
|
+
type SetReferralTagDto = z.infer<typeof SetReferralTagSchema>;
|
|
8767
|
+
//#endregion
|
|
8728
8768
|
//#region src/validation/team/team_user_teams_zod.d.ts
|
|
8729
8769
|
/**
|
|
8730
8770
|
* Schema for a team option in user teams list
|
|
@@ -8752,6 +8792,7 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8752
8792
|
id: z.ZodString;
|
|
8753
8793
|
original_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8754
8794
|
path: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8795
|
+
referral_tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8755
8796
|
created_at: z.ZodString;
|
|
8756
8797
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8757
8798
|
created_by: z.ZodString;
|
|
@@ -8777,18 +8818,19 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8777
8818
|
updated_by_display_name?: string | null | undefined;
|
|
8778
8819
|
unique_name?: string | null | undefined;
|
|
8779
8820
|
legal_name?: string | null | undefined;
|
|
8780
|
-
contact_name?: string | null | undefined;
|
|
8781
8821
|
contact_email?: string | null | undefined;
|
|
8822
|
+
address_city?: string | null | undefined;
|
|
8823
|
+
address_zip?: string | null | undefined;
|
|
8824
|
+
contact_name?: string | null | undefined;
|
|
8782
8825
|
contact_business_phone?: string | null | undefined;
|
|
8783
8826
|
contact_mobile_phone?: string | null | undefined;
|
|
8784
8827
|
contact_time_zone?: string | null | undefined;
|
|
8785
8828
|
address_full?: string | null | undefined;
|
|
8786
|
-
address_city?: string | null | undefined;
|
|
8787
|
-
address_zip?: string | null | undefined;
|
|
8788
8829
|
twitter_username?: string | null | undefined;
|
|
8789
8830
|
logo?: string | null | undefined;
|
|
8790
8831
|
email_sent_from?: string | null | undefined;
|
|
8791
8832
|
email_reply_to?: string | null | undefined;
|
|
8833
|
+
referral_tag?: string | null | undefined;
|
|
8792
8834
|
}, {
|
|
8793
8835
|
created_at: string;
|
|
8794
8836
|
created_by: string;
|
|
@@ -8806,18 +8848,19 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8806
8848
|
updated_by_display_name?: string | null | undefined;
|
|
8807
8849
|
unique_name?: string | null | undefined;
|
|
8808
8850
|
legal_name?: string | null | undefined;
|
|
8809
|
-
contact_name?: string | null | undefined;
|
|
8810
8851
|
contact_email?: string | null | undefined;
|
|
8852
|
+
address_city?: string | null | undefined;
|
|
8853
|
+
address_zip?: string | null | undefined;
|
|
8854
|
+
contact_name?: string | null | undefined;
|
|
8811
8855
|
contact_business_phone?: string | null | undefined;
|
|
8812
8856
|
contact_mobile_phone?: string | null | undefined;
|
|
8813
8857
|
contact_time_zone?: string | null | undefined;
|
|
8814
8858
|
address_full?: string | null | undefined;
|
|
8815
|
-
address_city?: string | null | undefined;
|
|
8816
|
-
address_zip?: string | null | undefined;
|
|
8817
8859
|
twitter_username?: string | null | undefined;
|
|
8818
8860
|
logo?: string | null | undefined;
|
|
8819
8861
|
email_sent_from?: string | null | undefined;
|
|
8820
8862
|
email_reply_to?: string | null | undefined;
|
|
8863
|
+
referral_tag?: string | null | undefined;
|
|
8821
8864
|
}>;
|
|
8822
8865
|
type TeamOptionDto = z.infer<typeof TeamOptionSchema>;
|
|
8823
8866
|
/**
|
|
@@ -8846,6 +8889,7 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8846
8889
|
id: z.ZodString;
|
|
8847
8890
|
original_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8848
8891
|
path: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8892
|
+
referral_tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8849
8893
|
created_at: z.ZodString;
|
|
8850
8894
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8851
8895
|
created_by: z.ZodString;
|
|
@@ -8871,18 +8915,19 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8871
8915
|
updated_by_display_name?: string | null | undefined;
|
|
8872
8916
|
unique_name?: string | null | undefined;
|
|
8873
8917
|
legal_name?: string | null | undefined;
|
|
8874
|
-
contact_name?: string | null | undefined;
|
|
8875
8918
|
contact_email?: string | null | undefined;
|
|
8919
|
+
address_city?: string | null | undefined;
|
|
8920
|
+
address_zip?: string | null | undefined;
|
|
8921
|
+
contact_name?: string | null | undefined;
|
|
8876
8922
|
contact_business_phone?: string | null | undefined;
|
|
8877
8923
|
contact_mobile_phone?: string | null | undefined;
|
|
8878
8924
|
contact_time_zone?: string | null | undefined;
|
|
8879
8925
|
address_full?: string | null | undefined;
|
|
8880
|
-
address_city?: string | null | undefined;
|
|
8881
|
-
address_zip?: string | null | undefined;
|
|
8882
8926
|
twitter_username?: string | null | undefined;
|
|
8883
8927
|
logo?: string | null | undefined;
|
|
8884
8928
|
email_sent_from?: string | null | undefined;
|
|
8885
8929
|
email_reply_to?: string | null | undefined;
|
|
8930
|
+
referral_tag?: string | null | undefined;
|
|
8886
8931
|
}, {
|
|
8887
8932
|
created_at: string;
|
|
8888
8933
|
created_by: string;
|
|
@@ -8900,18 +8945,19 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8900
8945
|
updated_by_display_name?: string | null | undefined;
|
|
8901
8946
|
unique_name?: string | null | undefined;
|
|
8902
8947
|
legal_name?: string | null | undefined;
|
|
8903
|
-
contact_name?: string | null | undefined;
|
|
8904
8948
|
contact_email?: string | null | undefined;
|
|
8949
|
+
address_city?: string | null | undefined;
|
|
8950
|
+
address_zip?: string | null | undefined;
|
|
8951
|
+
contact_name?: string | null | undefined;
|
|
8905
8952
|
contact_business_phone?: string | null | undefined;
|
|
8906
8953
|
contact_mobile_phone?: string | null | undefined;
|
|
8907
8954
|
contact_time_zone?: string | null | undefined;
|
|
8908
8955
|
address_full?: string | null | undefined;
|
|
8909
|
-
address_city?: string | null | undefined;
|
|
8910
|
-
address_zip?: string | null | undefined;
|
|
8911
8956
|
twitter_username?: string | null | undefined;
|
|
8912
8957
|
logo?: string | null | undefined;
|
|
8913
8958
|
email_sent_from?: string | null | undefined;
|
|
8914
8959
|
email_reply_to?: string | null | undefined;
|
|
8960
|
+
referral_tag?: string | null | undefined;
|
|
8915
8961
|
}>, "many">;
|
|
8916
8962
|
}, "strip", z.ZodTypeAny, {
|
|
8917
8963
|
items: {
|
|
@@ -8931,18 +8977,19 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8931
8977
|
updated_by_display_name?: string | null | undefined;
|
|
8932
8978
|
unique_name?: string | null | undefined;
|
|
8933
8979
|
legal_name?: string | null | undefined;
|
|
8934
|
-
contact_name?: string | null | undefined;
|
|
8935
8980
|
contact_email?: string | null | undefined;
|
|
8981
|
+
address_city?: string | null | undefined;
|
|
8982
|
+
address_zip?: string | null | undefined;
|
|
8983
|
+
contact_name?: string | null | undefined;
|
|
8936
8984
|
contact_business_phone?: string | null | undefined;
|
|
8937
8985
|
contact_mobile_phone?: string | null | undefined;
|
|
8938
8986
|
contact_time_zone?: string | null | undefined;
|
|
8939
8987
|
address_full?: string | null | undefined;
|
|
8940
|
-
address_city?: string | null | undefined;
|
|
8941
|
-
address_zip?: string | null | undefined;
|
|
8942
8988
|
twitter_username?: string | null | undefined;
|
|
8943
8989
|
logo?: string | null | undefined;
|
|
8944
8990
|
email_sent_from?: string | null | undefined;
|
|
8945
8991
|
email_reply_to?: string | null | undefined;
|
|
8992
|
+
referral_tag?: string | null | undefined;
|
|
8946
8993
|
}[];
|
|
8947
8994
|
}, {
|
|
8948
8995
|
items: {
|
|
@@ -8962,18 +9009,19 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8962
9009
|
updated_by_display_name?: string | null | undefined;
|
|
8963
9010
|
unique_name?: string | null | undefined;
|
|
8964
9011
|
legal_name?: string | null | undefined;
|
|
8965
|
-
contact_name?: string | null | undefined;
|
|
8966
9012
|
contact_email?: string | null | undefined;
|
|
9013
|
+
address_city?: string | null | undefined;
|
|
9014
|
+
address_zip?: string | null | undefined;
|
|
9015
|
+
contact_name?: string | null | undefined;
|
|
8967
9016
|
contact_business_phone?: string | null | undefined;
|
|
8968
9017
|
contact_mobile_phone?: string | null | undefined;
|
|
8969
9018
|
contact_time_zone?: string | null | undefined;
|
|
8970
9019
|
address_full?: string | null | undefined;
|
|
8971
|
-
address_city?: string | null | undefined;
|
|
8972
|
-
address_zip?: string | null | undefined;
|
|
8973
9020
|
twitter_username?: string | null | undefined;
|
|
8974
9021
|
logo?: string | null | undefined;
|
|
8975
9022
|
email_sent_from?: string | null | undefined;
|
|
8976
9023
|
email_reply_to?: string | null | undefined;
|
|
9024
|
+
referral_tag?: string | null | undefined;
|
|
8977
9025
|
}[];
|
|
8978
9026
|
}>;
|
|
8979
9027
|
type UserTeamsDto = z.infer<typeof UserTeamsSchema>;
|
|
@@ -10408,6 +10456,10 @@ interface AppSettingsApi {
|
|
|
10408
10456
|
getSignupRequirements(): Promise<SignupRequirementsDto>;
|
|
10409
10457
|
/** Update signup consent requirements (admin only). */
|
|
10410
10458
|
updateSignupRequirements(config: SignupRequirementsDto): Promise<void>;
|
|
10459
|
+
/** Get default team ID for unknown referral tags (super admin only). */
|
|
10460
|
+
getDefaultTeamIdForUnknownReferrals(): Promise<DefaultReferralTeamFormDto>;
|
|
10461
|
+
/** Update default team ID for unknown referral tags (super admin only). */
|
|
10462
|
+
updateDefaultTeamIdForUnknownReferrals(input: DefaultReferralTeamFormDto): Promise<void>;
|
|
10411
10463
|
}
|
|
10412
10464
|
//#endregion
|
|
10413
10465
|
//#region src/api/attachment-api.d.ts
|
|
@@ -10820,6 +10872,10 @@ interface TeamApi {
|
|
|
10820
10872
|
* Get teams for the current authenticated user
|
|
10821
10873
|
*/
|
|
10822
10874
|
getUserTeams(): Promise<UserTeamsDto>;
|
|
10875
|
+
/**
|
|
10876
|
+
* Set or clear referral tag on a team (super admin only)
|
|
10877
|
+
*/
|
|
10878
|
+
setReferralTag(input: SetReferralTagDto): Promise<TeamReadDto>;
|
|
10823
10879
|
}
|
|
10824
10880
|
//#endregion
|
|
10825
10881
|
//#region src/api/team-member-api.d.ts
|
|
@@ -11131,5 +11187,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
11131
11187
|
*/
|
|
11132
11188
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
11133
11189
|
//#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 };
|
|
11190
|
+
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, 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, 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, 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
11191
|
//# sourceMappingURL=index.d.mts.map
|