@dragonmastery/dragoncore-shared 0.0.28 → 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 +115 -89
- package/dist/index.mjs +30 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -112,9 +112,9 @@ declare const AttachmentFolderUpdateSchema: z.ZodObject<{
|
|
|
112
112
|
description?: string | null | undefined;
|
|
113
113
|
record_id?: string | undefined;
|
|
114
114
|
record_type?: string | undefined;
|
|
115
|
+
metadata?: string | null | undefined;
|
|
115
116
|
sanitized_name?: string | undefined;
|
|
116
117
|
original_name?: string | undefined;
|
|
117
|
-
metadata?: string | null | undefined;
|
|
118
118
|
parent_folder_id?: string | null | undefined;
|
|
119
119
|
file_count?: number | undefined;
|
|
120
120
|
}, {
|
|
@@ -122,9 +122,9 @@ declare const AttachmentFolderUpdateSchema: z.ZodObject<{
|
|
|
122
122
|
description?: string | null | undefined;
|
|
123
123
|
record_id?: string | undefined;
|
|
124
124
|
record_type?: string | undefined;
|
|
125
|
+
metadata?: string | null | undefined;
|
|
125
126
|
sanitized_name?: string | undefined;
|
|
126
127
|
original_name?: string | undefined;
|
|
127
|
-
metadata?: string | null | undefined;
|
|
128
128
|
parent_folder_id?: string | null | undefined;
|
|
129
129
|
file_count?: number | undefined;
|
|
130
130
|
}>;
|
|
@@ -159,15 +159,15 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
159
159
|
sanitized_name: string;
|
|
160
160
|
original_name: string;
|
|
161
161
|
description?: string | null | undefined;
|
|
162
|
+
metadata?: string | null | undefined;
|
|
162
163
|
updated_at?: string | null | undefined;
|
|
163
164
|
updated_by?: string | null | undefined;
|
|
164
|
-
metadata?: string | null | undefined;
|
|
165
|
-
parent_folder_id?: string | null | undefined;
|
|
166
|
-
file_count?: number | undefined;
|
|
167
165
|
archived_at?: string | null | undefined;
|
|
168
166
|
archived_by?: string | null | undefined;
|
|
169
167
|
deleted_at?: string | null | undefined;
|
|
170
168
|
deleted_by?: string | null | undefined;
|
|
169
|
+
parent_folder_id?: string | null | undefined;
|
|
170
|
+
file_count?: number | undefined;
|
|
171
171
|
}, {
|
|
172
172
|
created_at: string;
|
|
173
173
|
created_by: string;
|
|
@@ -177,15 +177,15 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
177
177
|
sanitized_name: string;
|
|
178
178
|
original_name: string;
|
|
179
179
|
description?: string | null | undefined;
|
|
180
|
+
metadata?: string | null | undefined;
|
|
180
181
|
updated_at?: string | null | undefined;
|
|
181
182
|
updated_by?: string | null | undefined;
|
|
182
|
-
metadata?: string | null | undefined;
|
|
183
|
-
parent_folder_id?: string | null | undefined;
|
|
184
|
-
file_count?: number | undefined;
|
|
185
183
|
archived_at?: string | null | undefined;
|
|
186
184
|
archived_by?: string | null | undefined;
|
|
187
185
|
deleted_at?: string | null | undefined;
|
|
188
186
|
deleted_by?: string | null | undefined;
|
|
187
|
+
parent_folder_id?: string | null | undefined;
|
|
188
|
+
file_count?: number | undefined;
|
|
189
189
|
}>;
|
|
190
190
|
type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
|
|
191
191
|
//#endregion
|
|
@@ -208,8 +208,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
208
208
|
content_type: string;
|
|
209
209
|
file_size: string;
|
|
210
210
|
description?: string | null | undefined;
|
|
211
|
-
folder_id?: string | null | undefined;
|
|
212
211
|
metadata?: string | null | undefined;
|
|
212
|
+
folder_id?: string | null | undefined;
|
|
213
213
|
}, {
|
|
214
214
|
record_id: string;
|
|
215
215
|
record_type: string;
|
|
@@ -218,8 +218,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
218
218
|
content_type: string;
|
|
219
219
|
file_size: string;
|
|
220
220
|
description?: string | null | undefined;
|
|
221
|
-
folder_id?: string | null | undefined;
|
|
222
221
|
metadata?: string | null | undefined;
|
|
222
|
+
folder_id?: string | null | undefined;
|
|
223
223
|
}>;
|
|
224
224
|
type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
|
|
225
225
|
declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
@@ -239,23 +239,23 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
239
239
|
description?: string | null | undefined;
|
|
240
240
|
record_id?: string | undefined;
|
|
241
241
|
record_type?: string | undefined;
|
|
242
|
-
|
|
242
|
+
metadata?: string | null | undefined;
|
|
243
243
|
sanitized_name?: string | undefined;
|
|
244
244
|
original_name?: string | undefined;
|
|
245
|
-
metadata?: string | null | undefined;
|
|
246
245
|
content_type?: string | undefined;
|
|
247
246
|
file_size?: string | undefined;
|
|
247
|
+
folder_id?: string | null | undefined;
|
|
248
248
|
}, {
|
|
249
249
|
id: string;
|
|
250
250
|
description?: string | null | undefined;
|
|
251
251
|
record_id?: string | undefined;
|
|
252
252
|
record_type?: string | undefined;
|
|
253
|
-
|
|
253
|
+
metadata?: string | null | undefined;
|
|
254
254
|
sanitized_name?: string | undefined;
|
|
255
255
|
original_name?: string | undefined;
|
|
256
|
-
metadata?: string | null | undefined;
|
|
257
256
|
content_type?: string | undefined;
|
|
258
257
|
file_size?: string | undefined;
|
|
258
|
+
folder_id?: string | null | undefined;
|
|
259
259
|
}>;
|
|
260
260
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
261
261
|
//#endregion
|
|
@@ -292,10 +292,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
292
292
|
content_type: string;
|
|
293
293
|
file_size: string;
|
|
294
294
|
description?: string | null | undefined;
|
|
295
|
+
metadata?: string | null | undefined;
|
|
295
296
|
updated_at?: string | null | undefined;
|
|
296
297
|
updated_by?: string | null | undefined;
|
|
297
298
|
folder_id?: string | null | undefined;
|
|
298
|
-
metadata?: string | null | undefined;
|
|
299
299
|
archived_at?: string | null | undefined;
|
|
300
300
|
archived_by?: string | null | undefined;
|
|
301
301
|
deleted_at?: string | null | undefined;
|
|
@@ -311,10 +311,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
311
311
|
content_type: string;
|
|
312
312
|
file_size: string;
|
|
313
313
|
description?: string | null | undefined;
|
|
314
|
+
metadata?: string | null | undefined;
|
|
314
315
|
updated_at?: string | null | undefined;
|
|
315
316
|
updated_by?: string | null | undefined;
|
|
316
317
|
folder_id?: string | null | undefined;
|
|
317
|
-
metadata?: string | null | undefined;
|
|
318
318
|
archived_at?: string | null | undefined;
|
|
319
319
|
archived_by?: string | null | undefined;
|
|
320
320
|
deleted_at?: string | null | undefined;
|
|
@@ -348,15 +348,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
348
348
|
sanitized_name: string;
|
|
349
349
|
original_name: string;
|
|
350
350
|
description?: string | null | undefined;
|
|
351
|
+
metadata?: string | null | undefined;
|
|
351
352
|
updated_at?: string | null | undefined;
|
|
352
353
|
updated_by?: string | null | undefined;
|
|
353
|
-
metadata?: string | null | undefined;
|
|
354
|
-
parent_folder_id?: string | null | undefined;
|
|
355
|
-
file_count?: number | undefined;
|
|
356
354
|
archived_at?: string | null | undefined;
|
|
357
355
|
archived_by?: string | null | undefined;
|
|
358
356
|
deleted_at?: string | null | undefined;
|
|
359
357
|
deleted_by?: string | null | undefined;
|
|
358
|
+
parent_folder_id?: string | null | undefined;
|
|
359
|
+
file_count?: number | undefined;
|
|
360
360
|
}, {
|
|
361
361
|
created_at: string;
|
|
362
362
|
created_by: string;
|
|
@@ -366,15 +366,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
366
366
|
sanitized_name: string;
|
|
367
367
|
original_name: string;
|
|
368
368
|
description?: string | null | undefined;
|
|
369
|
+
metadata?: string | null | undefined;
|
|
369
370
|
updated_at?: string | null | undefined;
|
|
370
371
|
updated_by?: string | null | undefined;
|
|
371
|
-
metadata?: string | null | undefined;
|
|
372
|
-
parent_folder_id?: string | null | undefined;
|
|
373
|
-
file_count?: number | undefined;
|
|
374
372
|
archived_at?: string | null | undefined;
|
|
375
373
|
archived_by?: string | null | undefined;
|
|
376
374
|
deleted_at?: string | null | undefined;
|
|
377
375
|
deleted_by?: string | null | undefined;
|
|
376
|
+
parent_folder_id?: string | null | undefined;
|
|
377
|
+
file_count?: number | undefined;
|
|
378
378
|
}>, "many">;
|
|
379
379
|
pageInfo: z.ZodObject<{
|
|
380
380
|
hasNextPage: z.ZodBoolean;
|
|
@@ -402,10 +402,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
402
402
|
content_type: string;
|
|
403
403
|
file_size: string;
|
|
404
404
|
description?: string | null | undefined;
|
|
405
|
+
metadata?: string | null | undefined;
|
|
405
406
|
updated_at?: string | null | undefined;
|
|
406
407
|
updated_by?: string | null | undefined;
|
|
407
408
|
folder_id?: string | null | undefined;
|
|
408
|
-
metadata?: string | null | undefined;
|
|
409
409
|
archived_at?: string | null | undefined;
|
|
410
410
|
archived_by?: string | null | undefined;
|
|
411
411
|
deleted_at?: string | null | undefined;
|
|
@@ -420,15 +420,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
420
420
|
sanitized_name: string;
|
|
421
421
|
original_name: string;
|
|
422
422
|
description?: string | null | undefined;
|
|
423
|
+
metadata?: string | null | undefined;
|
|
423
424
|
updated_at?: string | null | undefined;
|
|
424
425
|
updated_by?: string | null | undefined;
|
|
425
|
-
metadata?: string | null | undefined;
|
|
426
|
-
parent_folder_id?: string | null | undefined;
|
|
427
|
-
file_count?: number | undefined;
|
|
428
426
|
archived_at?: string | null | undefined;
|
|
429
427
|
archived_by?: string | null | undefined;
|
|
430
428
|
deleted_at?: string | null | undefined;
|
|
431
429
|
deleted_by?: string | null | undefined;
|
|
430
|
+
parent_folder_id?: string | null | undefined;
|
|
431
|
+
file_count?: number | undefined;
|
|
432
432
|
}[];
|
|
433
433
|
}, {
|
|
434
434
|
pageInfo: {
|
|
@@ -446,10 +446,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
446
446
|
content_type: string;
|
|
447
447
|
file_size: string;
|
|
448
448
|
description?: string | null | undefined;
|
|
449
|
+
metadata?: string | null | undefined;
|
|
449
450
|
updated_at?: string | null | undefined;
|
|
450
451
|
updated_by?: string | null | undefined;
|
|
451
452
|
folder_id?: string | null | undefined;
|
|
452
|
-
metadata?: string | null | undefined;
|
|
453
453
|
archived_at?: string | null | undefined;
|
|
454
454
|
archived_by?: string | null | undefined;
|
|
455
455
|
deleted_at?: string | null | undefined;
|
|
@@ -464,15 +464,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
464
464
|
sanitized_name: string;
|
|
465
465
|
original_name: string;
|
|
466
466
|
description?: string | null | undefined;
|
|
467
|
+
metadata?: string | null | undefined;
|
|
467
468
|
updated_at?: string | null | undefined;
|
|
468
469
|
updated_by?: string | null | undefined;
|
|
469
|
-
metadata?: string | null | undefined;
|
|
470
|
-
parent_folder_id?: string | null | undefined;
|
|
471
|
-
file_count?: number | undefined;
|
|
472
470
|
archived_at?: string | null | undefined;
|
|
473
471
|
archived_by?: string | null | undefined;
|
|
474
472
|
deleted_at?: string | null | undefined;
|
|
475
473
|
deleted_by?: string | null | undefined;
|
|
474
|
+
parent_folder_id?: string | null | undefined;
|
|
475
|
+
file_count?: number | undefined;
|
|
476
476
|
}[];
|
|
477
477
|
}>;
|
|
478
478
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -509,10 +509,10 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
509
509
|
content_type: string;
|
|
510
510
|
file_size: string;
|
|
511
511
|
description?: string | null | undefined;
|
|
512
|
+
metadata?: string | null | undefined;
|
|
512
513
|
updated_at?: string | null | undefined;
|
|
513
514
|
updated_by?: string | null | undefined;
|
|
514
515
|
folder_id?: string | null | undefined;
|
|
515
|
-
metadata?: string | null | undefined;
|
|
516
516
|
archived_at?: string | null | undefined;
|
|
517
517
|
archived_by?: string | null | undefined;
|
|
518
518
|
deleted_at?: string | null | undefined;
|
|
@@ -528,10 +528,10 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
528
528
|
content_type: string;
|
|
529
529
|
file_size: string;
|
|
530
530
|
description?: string | null | undefined;
|
|
531
|
+
metadata?: string | null | undefined;
|
|
531
532
|
updated_at?: string | null | undefined;
|
|
532
533
|
updated_by?: string | null | undefined;
|
|
533
534
|
folder_id?: string | null | undefined;
|
|
534
|
-
metadata?: string | null | undefined;
|
|
535
535
|
archived_at?: string | null | undefined;
|
|
536
536
|
archived_by?: string | null | undefined;
|
|
537
537
|
deleted_at?: string | null | undefined;
|
|
@@ -2096,11 +2096,11 @@ declare const loginSchema: z.ZodObject<{
|
|
|
2096
2096
|
email: z.ZodString;
|
|
2097
2097
|
password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2098
2098
|
}, "strip", z.ZodTypeAny, {
|
|
2099
|
-
password: string;
|
|
2100
2099
|
email: string;
|
|
2101
|
-
}, {
|
|
2102
2100
|
password: string;
|
|
2101
|
+
}, {
|
|
2103
2102
|
email: string;
|
|
2103
|
+
password: string;
|
|
2104
2104
|
}>;
|
|
2105
2105
|
type LoginInputDto = z.infer<typeof loginSchema>;
|
|
2106
2106
|
//#endregion
|
|
@@ -3244,6 +3244,25 @@ declare const recordVersionTrackerActivityInputSchema: z.ZodObject<{
|
|
|
3244
3244
|
type RecordVersionFiltersBreadcrumbDto = z.infer<typeof recordVersionFiltersBreadcrumbSchema>;
|
|
3245
3245
|
type RecordVersionPageBreadcrumbDto = z.infer<typeof recordVersionPageBreadcrumbSchema>;
|
|
3246
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
|
|
3247
3266
|
//#region src/validation/saved_filter/saved_filter_create_zod.d.ts
|
|
3248
3267
|
/**
|
|
3249
3268
|
* Schema for creating a saved filter preset
|
|
@@ -3595,6 +3614,7 @@ type SignupInputDto = z.output<typeof signupSchema>;
|
|
|
3595
3614
|
//#region src/validation/signup_initiate_zod.d.ts
|
|
3596
3615
|
/** Input for signupInitiate - email and password only (no acceptances). */
|
|
3597
3616
|
declare const signupInitiateSchema: z.ZodObject<{
|
|
3617
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3598
3618
|
email: z.ZodString;
|
|
3599
3619
|
passwords: z.ZodEffects<z.ZodObject<{
|
|
3600
3620
|
password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -3618,12 +3638,14 @@ declare const signupInitiateSchema: z.ZodObject<{
|
|
|
3618
3638
|
password_confirm: string;
|
|
3619
3639
|
};
|
|
3620
3640
|
email: string;
|
|
3641
|
+
metadata?: Record<string, unknown> | undefined;
|
|
3621
3642
|
}, {
|
|
3622
3643
|
passwords: {
|
|
3623
3644
|
password: string;
|
|
3624
3645
|
password_confirm: string;
|
|
3625
3646
|
};
|
|
3626
3647
|
email: string;
|
|
3648
|
+
metadata?: Record<string, unknown> | undefined;
|
|
3627
3649
|
}>;
|
|
3628
3650
|
type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
|
|
3629
3651
|
/** Response when consents are required - token + consents to display. */
|
|
@@ -4346,11 +4368,14 @@ type SignupInitiateResponseDto = z.infer<typeof signupInitiateResponseSchema>;
|
|
|
4346
4368
|
//#region src/validation/signup_complete_zod.d.ts
|
|
4347
4369
|
/** Input for signupComplete - acceptances only. Token is in Authorization: Bearer header. */
|
|
4348
4370
|
declare const signupCompleteSchema: z.ZodObject<{
|
|
4371
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4349
4372
|
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
4350
4373
|
}, "strip", z.ZodTypeAny, {
|
|
4351
4374
|
acceptances: Record<string, boolean>;
|
|
4375
|
+
metadata?: Record<string, unknown> | undefined;
|
|
4352
4376
|
}, {
|
|
4353
4377
|
acceptances?: Record<string, boolean> | undefined;
|
|
4378
|
+
metadata?: Record<string, unknown> | undefined;
|
|
4354
4379
|
}>;
|
|
4355
4380
|
type SignupCompleteInputDto = z.infer<typeof signupCompleteSchema>;
|
|
4356
4381
|
//#endregion
|
|
@@ -8306,14 +8331,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8306
8331
|
url?: string | null | undefined;
|
|
8307
8332
|
unique_name?: string | null | undefined;
|
|
8308
8333
|
legal_name?: string | null | undefined;
|
|
8309
|
-
contact_email?: string | null | undefined;
|
|
8310
|
-
address_city?: string | null | undefined;
|
|
8311
|
-
address_zip?: string | null | undefined;
|
|
8312
8334
|
contact_name?: string | null | undefined;
|
|
8335
|
+
contact_email?: string | null | undefined;
|
|
8313
8336
|
contact_business_phone?: string | null | undefined;
|
|
8314
8337
|
contact_mobile_phone?: string | null | undefined;
|
|
8315
8338
|
contact_time_zone?: string | null | undefined;
|
|
8316
8339
|
address_full?: string | null | undefined;
|
|
8340
|
+
address_city?: string | null | undefined;
|
|
8341
|
+
address_zip?: string | null | undefined;
|
|
8317
8342
|
twitter_username?: string | null | undefined;
|
|
8318
8343
|
logo?: string | null | undefined;
|
|
8319
8344
|
email_sent_from?: string | null | undefined;
|
|
@@ -8324,14 +8349,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8324
8349
|
url?: string | null | undefined;
|
|
8325
8350
|
unique_name?: string | null | undefined;
|
|
8326
8351
|
legal_name?: string | null | undefined;
|
|
8327
|
-
contact_email?: string | null | undefined;
|
|
8328
|
-
address_city?: string | null | undefined;
|
|
8329
|
-
address_zip?: string | null | undefined;
|
|
8330
8352
|
contact_name?: string | null | undefined;
|
|
8353
|
+
contact_email?: string | null | undefined;
|
|
8331
8354
|
contact_business_phone?: string | null | undefined;
|
|
8332
8355
|
contact_mobile_phone?: string | null | undefined;
|
|
8333
8356
|
contact_time_zone?: string | null | undefined;
|
|
8334
8357
|
address_full?: string | null | undefined;
|
|
8358
|
+
address_city?: string | null | undefined;
|
|
8359
|
+
address_zip?: string | null | undefined;
|
|
8335
8360
|
twitter_username?: string | null | undefined;
|
|
8336
8361
|
logo?: string | null | undefined;
|
|
8337
8362
|
email_sent_from?: string | null | undefined;
|
|
@@ -8361,14 +8386,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8361
8386
|
url?: string | null | undefined;
|
|
8362
8387
|
unique_name?: string | null | undefined;
|
|
8363
8388
|
legal_name?: string | null | undefined;
|
|
8364
|
-
contact_email?: string | null | undefined;
|
|
8365
|
-
address_city?: string | null | undefined;
|
|
8366
|
-
address_zip?: string | null | undefined;
|
|
8367
8389
|
contact_name?: string | null | undefined;
|
|
8390
|
+
contact_email?: string | null | undefined;
|
|
8368
8391
|
contact_business_phone?: string | null | undefined;
|
|
8369
8392
|
contact_mobile_phone?: string | null | undefined;
|
|
8370
8393
|
contact_time_zone?: string | null | undefined;
|
|
8371
8394
|
address_full?: string | null | undefined;
|
|
8395
|
+
address_city?: string | null | undefined;
|
|
8396
|
+
address_zip?: string | null | undefined;
|
|
8372
8397
|
twitter_username?: string | null | undefined;
|
|
8373
8398
|
logo?: string | null | undefined;
|
|
8374
8399
|
email_sent_from?: string | null | undefined;
|
|
@@ -8379,14 +8404,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8379
8404
|
url?: string | null | undefined;
|
|
8380
8405
|
unique_name?: string | null | undefined;
|
|
8381
8406
|
legal_name?: string | null | undefined;
|
|
8382
|
-
contact_email?: string | null | undefined;
|
|
8383
|
-
address_city?: string | null | undefined;
|
|
8384
|
-
address_zip?: string | null | undefined;
|
|
8385
8407
|
contact_name?: string | null | undefined;
|
|
8408
|
+
contact_email?: string | null | undefined;
|
|
8386
8409
|
contact_business_phone?: string | null | undefined;
|
|
8387
8410
|
contact_mobile_phone?: string | null | undefined;
|
|
8388
8411
|
contact_time_zone?: string | null | undefined;
|
|
8389
8412
|
address_full?: string | null | undefined;
|
|
8413
|
+
address_city?: string | null | undefined;
|
|
8414
|
+
address_zip?: string | null | undefined;
|
|
8390
8415
|
twitter_username?: string | null | undefined;
|
|
8391
8416
|
logo?: string | null | undefined;
|
|
8392
8417
|
email_sent_from?: string | null | undefined;
|
|
@@ -8420,14 +8445,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8420
8445
|
url?: string | null | undefined;
|
|
8421
8446
|
unique_name?: string | null | undefined;
|
|
8422
8447
|
legal_name?: string | null | undefined;
|
|
8423
|
-
contact_email?: string | null | undefined;
|
|
8424
|
-
address_city?: string | null | undefined;
|
|
8425
|
-
address_zip?: string | null | undefined;
|
|
8426
8448
|
contact_name?: string | null | undefined;
|
|
8449
|
+
contact_email?: string | null | undefined;
|
|
8427
8450
|
contact_business_phone?: string | null | undefined;
|
|
8428
8451
|
contact_mobile_phone?: string | null | undefined;
|
|
8429
8452
|
contact_time_zone?: string | null | undefined;
|
|
8430
8453
|
address_full?: string | null | undefined;
|
|
8454
|
+
address_city?: string | null | undefined;
|
|
8455
|
+
address_zip?: string | null | undefined;
|
|
8431
8456
|
twitter_username?: string | null | undefined;
|
|
8432
8457
|
logo?: string | null | undefined;
|
|
8433
8458
|
email_sent_from?: string | null | undefined;
|
|
@@ -8439,14 +8464,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8439
8464
|
url?: string | null | undefined;
|
|
8440
8465
|
unique_name?: string | null | undefined;
|
|
8441
8466
|
legal_name?: string | null | undefined;
|
|
8442
|
-
contact_email?: string | null | undefined;
|
|
8443
|
-
address_city?: string | null | undefined;
|
|
8444
|
-
address_zip?: string | null | undefined;
|
|
8445
8467
|
contact_name?: string | null | undefined;
|
|
8468
|
+
contact_email?: string | null | undefined;
|
|
8446
8469
|
contact_business_phone?: string | null | undefined;
|
|
8447
8470
|
contact_mobile_phone?: string | null | undefined;
|
|
8448
8471
|
contact_time_zone?: string | null | undefined;
|
|
8449
8472
|
address_full?: string | null | undefined;
|
|
8473
|
+
address_city?: string | null | undefined;
|
|
8474
|
+
address_zip?: string | null | undefined;
|
|
8450
8475
|
twitter_username?: string | null | undefined;
|
|
8451
8476
|
logo?: string | null | undefined;
|
|
8452
8477
|
email_sent_from?: string | null | undefined;
|
|
@@ -8504,14 +8529,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8504
8529
|
updated_by_display_name?: string | null | undefined;
|
|
8505
8530
|
unique_name?: string | null | undefined;
|
|
8506
8531
|
legal_name?: string | null | undefined;
|
|
8507
|
-
contact_email?: string | null | undefined;
|
|
8508
|
-
address_city?: string | null | undefined;
|
|
8509
|
-
address_zip?: string | null | undefined;
|
|
8510
8532
|
contact_name?: string | null | undefined;
|
|
8533
|
+
contact_email?: string | null | undefined;
|
|
8511
8534
|
contact_business_phone?: string | null | undefined;
|
|
8512
8535
|
contact_mobile_phone?: string | null | undefined;
|
|
8513
8536
|
contact_time_zone?: string | null | undefined;
|
|
8514
8537
|
address_full?: string | null | undefined;
|
|
8538
|
+
address_city?: string | null | undefined;
|
|
8539
|
+
address_zip?: string | null | undefined;
|
|
8515
8540
|
twitter_username?: string | null | undefined;
|
|
8516
8541
|
logo?: string | null | undefined;
|
|
8517
8542
|
email_sent_from?: string | null | undefined;
|
|
@@ -8534,14 +8559,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8534
8559
|
updated_by_display_name?: string | null | undefined;
|
|
8535
8560
|
unique_name?: string | null | undefined;
|
|
8536
8561
|
legal_name?: string | null | undefined;
|
|
8537
|
-
contact_email?: string | null | undefined;
|
|
8538
|
-
address_city?: string | null | undefined;
|
|
8539
|
-
address_zip?: string | null | undefined;
|
|
8540
8562
|
contact_name?: string | null | undefined;
|
|
8563
|
+
contact_email?: string | null | undefined;
|
|
8541
8564
|
contact_business_phone?: string | null | undefined;
|
|
8542
8565
|
contact_mobile_phone?: string | null | undefined;
|
|
8543
8566
|
contact_time_zone?: string | null | undefined;
|
|
8544
8567
|
address_full?: string | null | undefined;
|
|
8568
|
+
address_city?: string | null | undefined;
|
|
8569
|
+
address_zip?: string | null | undefined;
|
|
8545
8570
|
twitter_username?: string | null | undefined;
|
|
8546
8571
|
logo?: string | null | undefined;
|
|
8547
8572
|
email_sent_from?: string | null | undefined;
|
|
@@ -8588,14 +8613,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8588
8613
|
updated_by_display_name?: string | null | undefined;
|
|
8589
8614
|
unique_name?: string | null | undefined;
|
|
8590
8615
|
legal_name?: string | null | undefined;
|
|
8591
|
-
contact_email?: string | null | undefined;
|
|
8592
|
-
address_city?: string | null | undefined;
|
|
8593
|
-
address_zip?: string | null | undefined;
|
|
8594
8616
|
contact_name?: string | null | undefined;
|
|
8617
|
+
contact_email?: string | null | undefined;
|
|
8595
8618
|
contact_business_phone?: string | null | undefined;
|
|
8596
8619
|
contact_mobile_phone?: string | null | undefined;
|
|
8597
8620
|
contact_time_zone?: string | null | undefined;
|
|
8598
8621
|
address_full?: string | null | undefined;
|
|
8622
|
+
address_city?: string | null | undefined;
|
|
8623
|
+
address_zip?: string | null | undefined;
|
|
8599
8624
|
twitter_username?: string | null | undefined;
|
|
8600
8625
|
logo?: string | null | undefined;
|
|
8601
8626
|
email_sent_from?: string | null | undefined;
|
|
@@ -8628,14 +8653,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8628
8653
|
updated_by_display_name?: string | null | undefined;
|
|
8629
8654
|
unique_name?: string | null | undefined;
|
|
8630
8655
|
legal_name?: string | null | undefined;
|
|
8631
|
-
contact_email?: string | null | undefined;
|
|
8632
|
-
address_city?: string | null | undefined;
|
|
8633
|
-
address_zip?: string | null | undefined;
|
|
8634
8656
|
contact_name?: string | null | undefined;
|
|
8657
|
+
contact_email?: string | null | undefined;
|
|
8635
8658
|
contact_business_phone?: string | null | undefined;
|
|
8636
8659
|
contact_mobile_phone?: string | null | undefined;
|
|
8637
8660
|
contact_time_zone?: string | null | undefined;
|
|
8638
8661
|
address_full?: string | null | undefined;
|
|
8662
|
+
address_city?: string | null | undefined;
|
|
8663
|
+
address_zip?: string | null | undefined;
|
|
8639
8664
|
twitter_username?: string | null | undefined;
|
|
8640
8665
|
logo?: string | null | undefined;
|
|
8641
8666
|
email_sent_from?: string | null | undefined;
|
|
@@ -8702,14 +8727,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8702
8727
|
updated_by_display_name?: string | null | undefined;
|
|
8703
8728
|
unique_name?: string | null | undefined;
|
|
8704
8729
|
legal_name?: string | null | undefined;
|
|
8705
|
-
contact_email?: string | null | undefined;
|
|
8706
|
-
address_city?: string | null | undefined;
|
|
8707
|
-
address_zip?: string | null | undefined;
|
|
8708
8730
|
contact_name?: string | null | undefined;
|
|
8731
|
+
contact_email?: string | null | undefined;
|
|
8709
8732
|
contact_business_phone?: string | null | undefined;
|
|
8710
8733
|
contact_mobile_phone?: string | null | undefined;
|
|
8711
8734
|
contact_time_zone?: string | null | undefined;
|
|
8712
8735
|
address_full?: string | null | undefined;
|
|
8736
|
+
address_city?: string | null | undefined;
|
|
8737
|
+
address_zip?: string | null | undefined;
|
|
8713
8738
|
twitter_username?: string | null | undefined;
|
|
8714
8739
|
logo?: string | null | undefined;
|
|
8715
8740
|
email_sent_from?: string | null | undefined;
|
|
@@ -8732,14 +8757,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8732
8757
|
updated_by_display_name?: string | null | undefined;
|
|
8733
8758
|
unique_name?: string | null | undefined;
|
|
8734
8759
|
legal_name?: string | null | undefined;
|
|
8735
|
-
contact_email?: string | null | undefined;
|
|
8736
|
-
address_city?: string | null | undefined;
|
|
8737
|
-
address_zip?: string | null | undefined;
|
|
8738
8760
|
contact_name?: string | null | undefined;
|
|
8761
|
+
contact_email?: string | null | undefined;
|
|
8739
8762
|
contact_business_phone?: string | null | undefined;
|
|
8740
8763
|
contact_mobile_phone?: string | null | undefined;
|
|
8741
8764
|
contact_time_zone?: string | null | undefined;
|
|
8742
8765
|
address_full?: string | null | undefined;
|
|
8766
|
+
address_city?: string | null | undefined;
|
|
8767
|
+
address_zip?: string | null | undefined;
|
|
8743
8768
|
twitter_username?: string | null | undefined;
|
|
8744
8769
|
logo?: string | null | undefined;
|
|
8745
8770
|
email_sent_from?: string | null | undefined;
|
|
@@ -8752,6 +8777,7 @@ type TeamReadDto = z.infer<typeof TeamReadSchema>;
|
|
|
8752
8777
|
/**
|
|
8753
8778
|
* Schema for super admin to set or clear referral tag on a team.
|
|
8754
8779
|
* Pass null, empty string, or omit to clear the tag.
|
|
8780
|
+
* Valid tags are URL-friendly: lowercase, alphanumeric, hyphens only.
|
|
8755
8781
|
*/
|
|
8756
8782
|
declare const SetReferralTagSchema: z.ZodObject<{
|
|
8757
8783
|
team_id: z.ZodString;
|
|
@@ -8818,14 +8844,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8818
8844
|
updated_by_display_name?: string | null | undefined;
|
|
8819
8845
|
unique_name?: string | null | undefined;
|
|
8820
8846
|
legal_name?: string | null | undefined;
|
|
8821
|
-
contact_email?: string | null | undefined;
|
|
8822
|
-
address_city?: string | null | undefined;
|
|
8823
|
-
address_zip?: string | null | undefined;
|
|
8824
8847
|
contact_name?: string | null | undefined;
|
|
8848
|
+
contact_email?: string | null | undefined;
|
|
8825
8849
|
contact_business_phone?: string | null | undefined;
|
|
8826
8850
|
contact_mobile_phone?: string | null | undefined;
|
|
8827
8851
|
contact_time_zone?: string | null | undefined;
|
|
8828
8852
|
address_full?: string | null | undefined;
|
|
8853
|
+
address_city?: string | null | undefined;
|
|
8854
|
+
address_zip?: string | null | undefined;
|
|
8829
8855
|
twitter_username?: string | null | undefined;
|
|
8830
8856
|
logo?: string | null | undefined;
|
|
8831
8857
|
email_sent_from?: string | null | undefined;
|
|
@@ -8848,14 +8874,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8848
8874
|
updated_by_display_name?: string | null | undefined;
|
|
8849
8875
|
unique_name?: string | null | undefined;
|
|
8850
8876
|
legal_name?: string | null | undefined;
|
|
8851
|
-
contact_email?: string | null | undefined;
|
|
8852
|
-
address_city?: string | null | undefined;
|
|
8853
|
-
address_zip?: string | null | undefined;
|
|
8854
8877
|
contact_name?: string | null | undefined;
|
|
8878
|
+
contact_email?: string | null | undefined;
|
|
8855
8879
|
contact_business_phone?: string | null | undefined;
|
|
8856
8880
|
contact_mobile_phone?: string | null | undefined;
|
|
8857
8881
|
contact_time_zone?: string | null | undefined;
|
|
8858
8882
|
address_full?: string | null | undefined;
|
|
8883
|
+
address_city?: string | null | undefined;
|
|
8884
|
+
address_zip?: string | null | undefined;
|
|
8859
8885
|
twitter_username?: string | null | undefined;
|
|
8860
8886
|
logo?: string | null | undefined;
|
|
8861
8887
|
email_sent_from?: string | null | undefined;
|
|
@@ -8915,14 +8941,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8915
8941
|
updated_by_display_name?: string | null | undefined;
|
|
8916
8942
|
unique_name?: string | null | undefined;
|
|
8917
8943
|
legal_name?: string | null | undefined;
|
|
8918
|
-
contact_email?: string | null | undefined;
|
|
8919
|
-
address_city?: string | null | undefined;
|
|
8920
|
-
address_zip?: string | null | undefined;
|
|
8921
8944
|
contact_name?: string | null | undefined;
|
|
8945
|
+
contact_email?: string | null | undefined;
|
|
8922
8946
|
contact_business_phone?: string | null | undefined;
|
|
8923
8947
|
contact_mobile_phone?: string | null | undefined;
|
|
8924
8948
|
contact_time_zone?: string | null | undefined;
|
|
8925
8949
|
address_full?: string | null | undefined;
|
|
8950
|
+
address_city?: string | null | undefined;
|
|
8951
|
+
address_zip?: string | null | undefined;
|
|
8926
8952
|
twitter_username?: string | null | undefined;
|
|
8927
8953
|
logo?: string | null | undefined;
|
|
8928
8954
|
email_sent_from?: string | null | undefined;
|
|
@@ -8945,14 +8971,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8945
8971
|
updated_by_display_name?: string | null | undefined;
|
|
8946
8972
|
unique_name?: string | null | undefined;
|
|
8947
8973
|
legal_name?: string | null | undefined;
|
|
8948
|
-
contact_email?: string | null | undefined;
|
|
8949
|
-
address_city?: string | null | undefined;
|
|
8950
|
-
address_zip?: string | null | undefined;
|
|
8951
8974
|
contact_name?: string | null | undefined;
|
|
8975
|
+
contact_email?: string | null | undefined;
|
|
8952
8976
|
contact_business_phone?: string | null | undefined;
|
|
8953
8977
|
contact_mobile_phone?: string | null | undefined;
|
|
8954
8978
|
contact_time_zone?: string | null | undefined;
|
|
8955
8979
|
address_full?: string | null | undefined;
|
|
8980
|
+
address_city?: string | null | undefined;
|
|
8981
|
+
address_zip?: string | null | undefined;
|
|
8956
8982
|
twitter_username?: string | null | undefined;
|
|
8957
8983
|
logo?: string | null | undefined;
|
|
8958
8984
|
email_sent_from?: string | null | undefined;
|
|
@@ -8977,14 +9003,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8977
9003
|
updated_by_display_name?: string | null | undefined;
|
|
8978
9004
|
unique_name?: string | null | undefined;
|
|
8979
9005
|
legal_name?: string | null | undefined;
|
|
8980
|
-
contact_email?: string | null | undefined;
|
|
8981
|
-
address_city?: string | null | undefined;
|
|
8982
|
-
address_zip?: string | null | undefined;
|
|
8983
9006
|
contact_name?: string | null | undefined;
|
|
9007
|
+
contact_email?: string | null | undefined;
|
|
8984
9008
|
contact_business_phone?: string | null | undefined;
|
|
8985
9009
|
contact_mobile_phone?: string | null | undefined;
|
|
8986
9010
|
contact_time_zone?: string | null | undefined;
|
|
8987
9011
|
address_full?: string | null | undefined;
|
|
9012
|
+
address_city?: string | null | undefined;
|
|
9013
|
+
address_zip?: string | null | undefined;
|
|
8988
9014
|
twitter_username?: string | null | undefined;
|
|
8989
9015
|
logo?: string | null | undefined;
|
|
8990
9016
|
email_sent_from?: string | null | undefined;
|
|
@@ -9009,14 +9035,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
9009
9035
|
updated_by_display_name?: string | null | undefined;
|
|
9010
9036
|
unique_name?: string | null | undefined;
|
|
9011
9037
|
legal_name?: string | null | undefined;
|
|
9012
|
-
contact_email?: string | null | undefined;
|
|
9013
|
-
address_city?: string | null | undefined;
|
|
9014
|
-
address_zip?: string | null | undefined;
|
|
9015
9038
|
contact_name?: string | null | undefined;
|
|
9039
|
+
contact_email?: string | null | undefined;
|
|
9016
9040
|
contact_business_phone?: string | null | undefined;
|
|
9017
9041
|
contact_mobile_phone?: string | null | undefined;
|
|
9018
9042
|
contact_time_zone?: string | null | undefined;
|
|
9019
9043
|
address_full?: string | null | undefined;
|
|
9044
|
+
address_city?: string | null | undefined;
|
|
9045
|
+
address_zip?: string | null | undefined;
|
|
9020
9046
|
twitter_username?: string | null | undefined;
|
|
9021
9047
|
logo?: string | null | undefined;
|
|
9022
9048
|
email_sent_from?: string | null | undefined;
|
|
@@ -11187,5 +11213,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
11187
11213
|
*/
|
|
11188
11214
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
11189
11215
|
//#endregion
|
|
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 };
|
|
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 };
|
|
11191
11217
|
//# sourceMappingURL=index.d.mts.map
|