@dragonmastery/dragoncore-shared 0.0.16 → 0.0.19
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 +132 -126
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -147,12 +147,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
147
147
|
updated_at?: string | null | undefined;
|
|
148
148
|
updated_by?: string | null | undefined;
|
|
149
149
|
metadata?: string | null | undefined;
|
|
150
|
-
parent_folder_id?: string | null | undefined;
|
|
151
|
-
file_count?: number | undefined;
|
|
152
150
|
archived_at?: string | null | undefined;
|
|
153
151
|
archived_by?: string | null | undefined;
|
|
154
152
|
deleted_at?: string | null | undefined;
|
|
155
153
|
deleted_by?: string | null | undefined;
|
|
154
|
+
parent_folder_id?: string | null | undefined;
|
|
155
|
+
file_count?: number | undefined;
|
|
156
156
|
}, {
|
|
157
157
|
created_at: string;
|
|
158
158
|
created_by: string;
|
|
@@ -165,12 +165,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
165
165
|
updated_at?: string | null | undefined;
|
|
166
166
|
updated_by?: string | null | undefined;
|
|
167
167
|
metadata?: string | null | undefined;
|
|
168
|
-
parent_folder_id?: string | null | undefined;
|
|
169
|
-
file_count?: number | undefined;
|
|
170
168
|
archived_at?: string | null | undefined;
|
|
171
169
|
archived_by?: string | null | undefined;
|
|
172
170
|
deleted_at?: string | null | undefined;
|
|
173
171
|
deleted_by?: string | null | undefined;
|
|
172
|
+
parent_folder_id?: string | null | undefined;
|
|
173
|
+
file_count?: number | undefined;
|
|
174
174
|
}>;
|
|
175
175
|
type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
|
|
176
176
|
//#endregion
|
|
@@ -193,8 +193,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
193
193
|
content_type: string;
|
|
194
194
|
file_size: string;
|
|
195
195
|
description?: string | null | undefined;
|
|
196
|
-
folder_id?: string | null | undefined;
|
|
197
196
|
metadata?: string | null | undefined;
|
|
197
|
+
folder_id?: string | null | undefined;
|
|
198
198
|
}, {
|
|
199
199
|
record_id: string;
|
|
200
200
|
record_type: string;
|
|
@@ -203,8 +203,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
203
203
|
content_type: string;
|
|
204
204
|
file_size: string;
|
|
205
205
|
description?: string | null | undefined;
|
|
206
|
-
folder_id?: string | null | undefined;
|
|
207
206
|
metadata?: string | null | undefined;
|
|
207
|
+
folder_id?: string | null | undefined;
|
|
208
208
|
}>;
|
|
209
209
|
type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
|
|
210
210
|
declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
@@ -224,23 +224,23 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
224
224
|
description?: string | null | undefined;
|
|
225
225
|
record_id?: string | undefined;
|
|
226
226
|
record_type?: string | undefined;
|
|
227
|
-
folder_id?: string | null | undefined;
|
|
228
227
|
sanitized_name?: string | undefined;
|
|
229
228
|
original_name?: string | undefined;
|
|
230
|
-
metadata?: string | null | undefined;
|
|
231
229
|
content_type?: string | undefined;
|
|
232
230
|
file_size?: string | undefined;
|
|
231
|
+
metadata?: string | null | undefined;
|
|
232
|
+
folder_id?: string | null | undefined;
|
|
233
233
|
}, {
|
|
234
234
|
id: string;
|
|
235
235
|
description?: string | null | undefined;
|
|
236
236
|
record_id?: string | undefined;
|
|
237
237
|
record_type?: string | undefined;
|
|
238
|
-
folder_id?: string | null | undefined;
|
|
239
238
|
sanitized_name?: string | undefined;
|
|
240
239
|
original_name?: string | undefined;
|
|
241
|
-
metadata?: string | null | undefined;
|
|
242
240
|
content_type?: string | undefined;
|
|
243
241
|
file_size?: string | undefined;
|
|
242
|
+
metadata?: string | null | undefined;
|
|
243
|
+
folder_id?: string | null | undefined;
|
|
244
244
|
}>;
|
|
245
245
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
246
246
|
//#endregion
|
|
@@ -279,8 +279,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
279
279
|
description?: string | null | undefined;
|
|
280
280
|
updated_at?: string | null | undefined;
|
|
281
281
|
updated_by?: string | null | undefined;
|
|
282
|
-
folder_id?: string | null | undefined;
|
|
283
282
|
metadata?: string | null | undefined;
|
|
283
|
+
folder_id?: string | null | undefined;
|
|
284
284
|
archived_at?: string | null | undefined;
|
|
285
285
|
archived_by?: string | null | undefined;
|
|
286
286
|
deleted_at?: string | null | undefined;
|
|
@@ -298,8 +298,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
298
298
|
description?: string | null | undefined;
|
|
299
299
|
updated_at?: string | null | undefined;
|
|
300
300
|
updated_by?: string | null | undefined;
|
|
301
|
-
folder_id?: string | null | undefined;
|
|
302
301
|
metadata?: string | null | undefined;
|
|
302
|
+
folder_id?: string | null | undefined;
|
|
303
303
|
archived_at?: string | null | undefined;
|
|
304
304
|
archived_by?: string | null | undefined;
|
|
305
305
|
deleted_at?: string | null | undefined;
|
|
@@ -336,12 +336,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
336
336
|
updated_at?: string | null | undefined;
|
|
337
337
|
updated_by?: string | null | undefined;
|
|
338
338
|
metadata?: string | null | undefined;
|
|
339
|
-
parent_folder_id?: string | null | undefined;
|
|
340
|
-
file_count?: number | undefined;
|
|
341
339
|
archived_at?: string | null | undefined;
|
|
342
340
|
archived_by?: string | null | undefined;
|
|
343
341
|
deleted_at?: string | null | undefined;
|
|
344
342
|
deleted_by?: string | null | undefined;
|
|
343
|
+
parent_folder_id?: string | null | undefined;
|
|
344
|
+
file_count?: number | undefined;
|
|
345
345
|
}, {
|
|
346
346
|
created_at: string;
|
|
347
347
|
created_by: string;
|
|
@@ -354,12 +354,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
354
354
|
updated_at?: string | null | undefined;
|
|
355
355
|
updated_by?: string | null | undefined;
|
|
356
356
|
metadata?: string | null | undefined;
|
|
357
|
-
parent_folder_id?: string | null | undefined;
|
|
358
|
-
file_count?: number | undefined;
|
|
359
357
|
archived_at?: string | null | undefined;
|
|
360
358
|
archived_by?: string | null | undefined;
|
|
361
359
|
deleted_at?: string | null | undefined;
|
|
362
360
|
deleted_by?: string | null | undefined;
|
|
361
|
+
parent_folder_id?: string | null | undefined;
|
|
362
|
+
file_count?: number | undefined;
|
|
363
363
|
}>, "many">;
|
|
364
364
|
pageInfo: z.ZodObject<{
|
|
365
365
|
hasNextPage: z.ZodBoolean;
|
|
@@ -389,8 +389,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
389
389
|
description?: string | null | undefined;
|
|
390
390
|
updated_at?: string | null | undefined;
|
|
391
391
|
updated_by?: string | null | undefined;
|
|
392
|
-
folder_id?: string | null | undefined;
|
|
393
392
|
metadata?: string | null | undefined;
|
|
393
|
+
folder_id?: string | null | undefined;
|
|
394
394
|
archived_at?: string | null | undefined;
|
|
395
395
|
archived_by?: string | null | undefined;
|
|
396
396
|
deleted_at?: string | null | undefined;
|
|
@@ -408,12 +408,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
408
408
|
updated_at?: string | null | undefined;
|
|
409
409
|
updated_by?: string | null | undefined;
|
|
410
410
|
metadata?: string | null | undefined;
|
|
411
|
-
parent_folder_id?: string | null | undefined;
|
|
412
|
-
file_count?: number | undefined;
|
|
413
411
|
archived_at?: string | null | undefined;
|
|
414
412
|
archived_by?: string | null | undefined;
|
|
415
413
|
deleted_at?: string | null | undefined;
|
|
416
414
|
deleted_by?: string | null | undefined;
|
|
415
|
+
parent_folder_id?: string | null | undefined;
|
|
416
|
+
file_count?: number | undefined;
|
|
417
417
|
}[];
|
|
418
418
|
}, {
|
|
419
419
|
pageInfo: {
|
|
@@ -433,8 +433,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
433
433
|
description?: string | null | undefined;
|
|
434
434
|
updated_at?: string | null | undefined;
|
|
435
435
|
updated_by?: string | null | undefined;
|
|
436
|
-
folder_id?: string | null | undefined;
|
|
437
436
|
metadata?: string | null | undefined;
|
|
437
|
+
folder_id?: string | null | undefined;
|
|
438
438
|
archived_at?: string | null | undefined;
|
|
439
439
|
archived_by?: string | null | undefined;
|
|
440
440
|
deleted_at?: string | null | undefined;
|
|
@@ -452,12 +452,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
452
452
|
updated_at?: string | null | undefined;
|
|
453
453
|
updated_by?: string | null | undefined;
|
|
454
454
|
metadata?: string | null | undefined;
|
|
455
|
-
parent_folder_id?: string | null | undefined;
|
|
456
|
-
file_count?: number | undefined;
|
|
457
455
|
archived_at?: string | null | undefined;
|
|
458
456
|
archived_by?: string | null | undefined;
|
|
459
457
|
deleted_at?: string | null | undefined;
|
|
460
458
|
deleted_by?: string | null | undefined;
|
|
459
|
+
parent_folder_id?: string | null | undefined;
|
|
460
|
+
file_count?: number | undefined;
|
|
461
461
|
}[];
|
|
462
462
|
}>;
|
|
463
463
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -496,8 +496,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
496
496
|
description?: string | null | undefined;
|
|
497
497
|
updated_at?: string | null | undefined;
|
|
498
498
|
updated_by?: string | null | undefined;
|
|
499
|
-
folder_id?: string | null | undefined;
|
|
500
499
|
metadata?: string | null | undefined;
|
|
500
|
+
folder_id?: string | null | undefined;
|
|
501
501
|
archived_at?: string | null | undefined;
|
|
502
502
|
archived_by?: string | null | undefined;
|
|
503
503
|
deleted_at?: string | null | undefined;
|
|
@@ -515,8 +515,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
515
515
|
description?: string | null | undefined;
|
|
516
516
|
updated_at?: string | null | undefined;
|
|
517
517
|
updated_by?: string | null | undefined;
|
|
518
|
-
folder_id?: string | null | undefined;
|
|
519
518
|
metadata?: string | null | undefined;
|
|
519
|
+
folder_id?: string | null | undefined;
|
|
520
520
|
archived_at?: string | null | undefined;
|
|
521
521
|
archived_by?: string | null | undefined;
|
|
522
522
|
deleted_at?: string | null | undefined;
|
|
@@ -2110,9 +2110,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2110
2110
|
archived_by?: string | null | undefined;
|
|
2111
2111
|
deleted_at?: string | null | undefined;
|
|
2112
2112
|
deleted_by?: string | null | undefined;
|
|
2113
|
-
tag?: string | null | undefined;
|
|
2114
2113
|
title?: string | null | undefined;
|
|
2115
2114
|
body?: string | null | undefined;
|
|
2115
|
+
tag?: string | null | undefined;
|
|
2116
2116
|
original_id?: number | null | undefined;
|
|
2117
2117
|
created_by_display_name?: string | null | undefined;
|
|
2118
2118
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2129,9 +2129,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2129
2129
|
archived_by?: string | null | undefined;
|
|
2130
2130
|
deleted_at?: string | null | undefined;
|
|
2131
2131
|
deleted_by?: string | null | undefined;
|
|
2132
|
-
tag?: string | null | undefined;
|
|
2133
2132
|
title?: string | null | undefined;
|
|
2134
2133
|
body?: string | null | undefined;
|
|
2134
|
+
tag?: string | null | undefined;
|
|
2135
2135
|
original_id?: number | null | undefined;
|
|
2136
2136
|
created_by_display_name?: string | null | undefined;
|
|
2137
2137
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2151,18 +2151,18 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2151
2151
|
record_id: string;
|
|
2152
2152
|
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2153
2153
|
is_internal: boolean;
|
|
2154
|
-
tag?: string | null | undefined;
|
|
2155
2154
|
title?: string | null | undefined;
|
|
2156
2155
|
body?: string | null | undefined;
|
|
2156
|
+
tag?: string | null | undefined;
|
|
2157
2157
|
original_id?: number | null | undefined;
|
|
2158
2158
|
}, {
|
|
2159
2159
|
record_id: string;
|
|
2160
2160
|
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2161
|
-
tag?: string | null | undefined;
|
|
2162
2161
|
title?: string | null | undefined;
|
|
2163
2162
|
body?: string | null | undefined;
|
|
2164
|
-
|
|
2163
|
+
tag?: string | null | undefined;
|
|
2165
2164
|
is_internal?: boolean | undefined;
|
|
2165
|
+
original_id?: number | null | undefined;
|
|
2166
2166
|
}>;
|
|
2167
2167
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2168
2168
|
//#endregion
|
|
@@ -2180,20 +2180,20 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2180
2180
|
id: string;
|
|
2181
2181
|
record_id?: string | undefined;
|
|
2182
2182
|
record_type?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2183
|
-
tag?: string | null | undefined;
|
|
2184
2183
|
title?: string | null | undefined;
|
|
2185
2184
|
body?: string | null | undefined;
|
|
2186
|
-
|
|
2185
|
+
tag?: string | null | undefined;
|
|
2187
2186
|
is_internal?: boolean | undefined;
|
|
2187
|
+
original_id?: number | null | undefined;
|
|
2188
2188
|
}, {
|
|
2189
2189
|
id: string;
|
|
2190
2190
|
record_id?: string | undefined;
|
|
2191
2191
|
record_type?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2192
|
-
tag?: string | null | undefined;
|
|
2193
2192
|
title?: string | null | undefined;
|
|
2194
2193
|
body?: string | null | undefined;
|
|
2195
|
-
|
|
2194
|
+
tag?: string | null | undefined;
|
|
2196
2195
|
is_internal?: boolean | undefined;
|
|
2196
|
+
original_id?: number | null | undefined;
|
|
2197
2197
|
}>;
|
|
2198
2198
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2199
2199
|
//#endregion
|
|
@@ -2608,19 +2608,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2608
2608
|
values?: any[] | undefined;
|
|
2609
2609
|
caseSensitive?: boolean | undefined;
|
|
2610
2610
|
} | undefined;
|
|
2611
|
-
|
|
2611
|
+
title?: {
|
|
2612
2612
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2613
2613
|
value?: string | undefined;
|
|
2614
2614
|
values?: string[] | undefined;
|
|
2615
2615
|
caseSensitive?: boolean | undefined;
|
|
2616
2616
|
} | undefined;
|
|
2617
|
-
|
|
2617
|
+
body?: {
|
|
2618
2618
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2619
2619
|
value?: string | undefined;
|
|
2620
2620
|
values?: string[] | undefined;
|
|
2621
2621
|
caseSensitive?: boolean | undefined;
|
|
2622
2622
|
} | undefined;
|
|
2623
|
-
|
|
2623
|
+
tag?: {
|
|
2624
2624
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2625
2625
|
value?: string | undefined;
|
|
2626
2626
|
values?: string[] | undefined;
|
|
@@ -2686,19 +2686,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2686
2686
|
values?: any[] | undefined;
|
|
2687
2687
|
caseSensitive?: boolean | undefined;
|
|
2688
2688
|
} | undefined;
|
|
2689
|
-
|
|
2689
|
+
title?: {
|
|
2690
2690
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2691
2691
|
value?: string | undefined;
|
|
2692
2692
|
values?: string[] | undefined;
|
|
2693
2693
|
caseSensitive?: boolean | undefined;
|
|
2694
2694
|
} | undefined;
|
|
2695
|
-
|
|
2695
|
+
body?: {
|
|
2696
2696
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2697
2697
|
value?: string | undefined;
|
|
2698
2698
|
values?: string[] | undefined;
|
|
2699
2699
|
caseSensitive?: boolean | undefined;
|
|
2700
2700
|
} | undefined;
|
|
2701
|
-
|
|
2701
|
+
tag?: {
|
|
2702
2702
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2703
2703
|
value?: string | undefined;
|
|
2704
2704
|
values?: string[] | undefined;
|
|
@@ -7178,13 +7178,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7178
7178
|
values?: any[] | undefined;
|
|
7179
7179
|
caseSensitive?: boolean | undefined;
|
|
7180
7180
|
} | undefined;
|
|
7181
|
-
|
|
7181
|
+
display_name?: {
|
|
7182
7182
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7183
7183
|
value?: string | undefined;
|
|
7184
7184
|
values?: string[] | undefined;
|
|
7185
7185
|
caseSensitive?: boolean | undefined;
|
|
7186
7186
|
} | undefined;
|
|
7187
|
-
|
|
7187
|
+
unique_name?: {
|
|
7188
7188
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7189
7189
|
value?: string | undefined;
|
|
7190
7190
|
values?: string[] | undefined;
|
|
@@ -7278,13 +7278,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7278
7278
|
values?: any[] | undefined;
|
|
7279
7279
|
caseSensitive?: boolean | undefined;
|
|
7280
7280
|
} | undefined;
|
|
7281
|
-
|
|
7281
|
+
display_name?: {
|
|
7282
7282
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7283
7283
|
value?: string | undefined;
|
|
7284
7284
|
values?: string[] | undefined;
|
|
7285
7285
|
caseSensitive?: boolean | undefined;
|
|
7286
7286
|
} | undefined;
|
|
7287
|
-
|
|
7287
|
+
unique_name?: {
|
|
7288
7288
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7289
7289
|
value?: string | undefined;
|
|
7290
7290
|
values?: string[] | undefined;
|
|
@@ -7348,14 +7348,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
7348
7348
|
url?: string | null | undefined;
|
|
7349
7349
|
unique_name?: string | null | undefined;
|
|
7350
7350
|
legal_name?: string | null | undefined;
|
|
7351
|
-
contact_email?: string | null | undefined;
|
|
7352
|
-
address_city?: string | null | undefined;
|
|
7353
|
-
address_zip?: string | null | undefined;
|
|
7354
7351
|
contact_name?: string | null | undefined;
|
|
7352
|
+
contact_email?: string | null | undefined;
|
|
7355
7353
|
contact_business_phone?: string | null | undefined;
|
|
7356
7354
|
contact_mobile_phone?: string | null | undefined;
|
|
7357
7355
|
contact_time_zone?: string | null | undefined;
|
|
7358
7356
|
address_full?: string | null | undefined;
|
|
7357
|
+
address_city?: string | null | undefined;
|
|
7358
|
+
address_zip?: string | null | undefined;
|
|
7359
7359
|
twitter_username?: string | null | undefined;
|
|
7360
7360
|
logo?: string | null | undefined;
|
|
7361
7361
|
email_sent_from?: string | null | undefined;
|
|
@@ -7366,14 +7366,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
7366
7366
|
url?: string | null | undefined;
|
|
7367
7367
|
unique_name?: string | null | undefined;
|
|
7368
7368
|
legal_name?: string | null | undefined;
|
|
7369
|
-
contact_email?: string | null | undefined;
|
|
7370
|
-
address_city?: string | null | undefined;
|
|
7371
|
-
address_zip?: string | null | undefined;
|
|
7372
7369
|
contact_name?: string | null | undefined;
|
|
7370
|
+
contact_email?: string | null | undefined;
|
|
7373
7371
|
contact_business_phone?: string | null | undefined;
|
|
7374
7372
|
contact_mobile_phone?: string | null | undefined;
|
|
7375
7373
|
contact_time_zone?: string | null | undefined;
|
|
7376
7374
|
address_full?: string | null | undefined;
|
|
7375
|
+
address_city?: string | null | undefined;
|
|
7376
|
+
address_zip?: string | null | undefined;
|
|
7377
7377
|
twitter_username?: string | null | undefined;
|
|
7378
7378
|
logo?: string | null | undefined;
|
|
7379
7379
|
email_sent_from?: string | null | undefined;
|
|
@@ -7403,14 +7403,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7403
7403
|
url?: string | null | undefined;
|
|
7404
7404
|
unique_name?: string | null | undefined;
|
|
7405
7405
|
legal_name?: string | null | undefined;
|
|
7406
|
-
contact_email?: string | null | undefined;
|
|
7407
|
-
address_city?: string | null | undefined;
|
|
7408
|
-
address_zip?: string | null | undefined;
|
|
7409
7406
|
contact_name?: string | null | undefined;
|
|
7407
|
+
contact_email?: string | null | undefined;
|
|
7410
7408
|
contact_business_phone?: string | null | undefined;
|
|
7411
7409
|
contact_mobile_phone?: string | null | undefined;
|
|
7412
7410
|
contact_time_zone?: string | null | undefined;
|
|
7413
7411
|
address_full?: string | null | undefined;
|
|
7412
|
+
address_city?: string | null | undefined;
|
|
7413
|
+
address_zip?: string | null | undefined;
|
|
7414
7414
|
twitter_username?: string | null | undefined;
|
|
7415
7415
|
logo?: string | null | undefined;
|
|
7416
7416
|
email_sent_from?: string | null | undefined;
|
|
@@ -7421,14 +7421,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7421
7421
|
url?: string | null | undefined;
|
|
7422
7422
|
unique_name?: string | null | undefined;
|
|
7423
7423
|
legal_name?: string | null | undefined;
|
|
7424
|
-
contact_email?: string | null | undefined;
|
|
7425
|
-
address_city?: string | null | undefined;
|
|
7426
|
-
address_zip?: string | null | undefined;
|
|
7427
7424
|
contact_name?: string | null | undefined;
|
|
7425
|
+
contact_email?: string | null | undefined;
|
|
7428
7426
|
contact_business_phone?: string | null | undefined;
|
|
7429
7427
|
contact_mobile_phone?: string | null | undefined;
|
|
7430
7428
|
contact_time_zone?: string | null | undefined;
|
|
7431
7429
|
address_full?: string | null | undefined;
|
|
7430
|
+
address_city?: string | null | undefined;
|
|
7431
|
+
address_zip?: string | null | undefined;
|
|
7432
7432
|
twitter_username?: string | null | undefined;
|
|
7433
7433
|
logo?: string | null | undefined;
|
|
7434
7434
|
email_sent_from?: string | null | undefined;
|
|
@@ -7462,14 +7462,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
7462
7462
|
url?: string | null | undefined;
|
|
7463
7463
|
unique_name?: string | null | undefined;
|
|
7464
7464
|
legal_name?: string | null | undefined;
|
|
7465
|
-
contact_email?: string | null | undefined;
|
|
7466
|
-
address_city?: string | null | undefined;
|
|
7467
|
-
address_zip?: string | null | undefined;
|
|
7468
7465
|
contact_name?: string | null | undefined;
|
|
7466
|
+
contact_email?: string | null | undefined;
|
|
7469
7467
|
contact_business_phone?: string | null | undefined;
|
|
7470
7468
|
contact_mobile_phone?: string | null | undefined;
|
|
7471
7469
|
contact_time_zone?: string | null | undefined;
|
|
7472
7470
|
address_full?: string | null | undefined;
|
|
7471
|
+
address_city?: string | null | undefined;
|
|
7472
|
+
address_zip?: string | null | undefined;
|
|
7473
7473
|
twitter_username?: string | null | undefined;
|
|
7474
7474
|
logo?: string | null | undefined;
|
|
7475
7475
|
email_sent_from?: string | null | undefined;
|
|
@@ -7481,14 +7481,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
7481
7481
|
url?: string | null | undefined;
|
|
7482
7482
|
unique_name?: string | null | undefined;
|
|
7483
7483
|
legal_name?: string | null | undefined;
|
|
7484
|
-
contact_email?: string | null | undefined;
|
|
7485
|
-
address_city?: string | null | undefined;
|
|
7486
|
-
address_zip?: string | null | undefined;
|
|
7487
7484
|
contact_name?: string | null | undefined;
|
|
7485
|
+
contact_email?: string | null | undefined;
|
|
7488
7486
|
contact_business_phone?: string | null | undefined;
|
|
7489
7487
|
contact_mobile_phone?: string | null | undefined;
|
|
7490
7488
|
contact_time_zone?: string | null | undefined;
|
|
7491
7489
|
address_full?: string | null | undefined;
|
|
7490
|
+
address_city?: string | null | undefined;
|
|
7491
|
+
address_zip?: string | null | undefined;
|
|
7492
7492
|
twitter_username?: string | null | undefined;
|
|
7493
7493
|
logo?: string | null | undefined;
|
|
7494
7494
|
email_sent_from?: string | null | undefined;
|
|
@@ -7545,14 +7545,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7545
7545
|
updated_by_display_name?: string | null | undefined;
|
|
7546
7546
|
unique_name?: string | null | undefined;
|
|
7547
7547
|
legal_name?: string | null | undefined;
|
|
7548
|
-
contact_email?: string | null | undefined;
|
|
7549
|
-
address_city?: string | null | undefined;
|
|
7550
|
-
address_zip?: string | null | undefined;
|
|
7551
7548
|
contact_name?: string | null | undefined;
|
|
7549
|
+
contact_email?: string | null | undefined;
|
|
7552
7550
|
contact_business_phone?: string | null | undefined;
|
|
7553
7551
|
contact_mobile_phone?: string | null | undefined;
|
|
7554
7552
|
contact_time_zone?: string | null | undefined;
|
|
7555
7553
|
address_full?: string | null | undefined;
|
|
7554
|
+
address_city?: string | null | undefined;
|
|
7555
|
+
address_zip?: string | null | undefined;
|
|
7556
7556
|
twitter_username?: string | null | undefined;
|
|
7557
7557
|
logo?: string | null | undefined;
|
|
7558
7558
|
email_sent_from?: string | null | undefined;
|
|
@@ -7574,14 +7574,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7574
7574
|
updated_by_display_name?: string | null | undefined;
|
|
7575
7575
|
unique_name?: string | null | undefined;
|
|
7576
7576
|
legal_name?: string | null | undefined;
|
|
7577
|
-
contact_email?: string | null | undefined;
|
|
7578
|
-
address_city?: string | null | undefined;
|
|
7579
|
-
address_zip?: string | null | undefined;
|
|
7580
7577
|
contact_name?: string | null | undefined;
|
|
7578
|
+
contact_email?: string | null | undefined;
|
|
7581
7579
|
contact_business_phone?: string | null | undefined;
|
|
7582
7580
|
contact_mobile_phone?: string | null | undefined;
|
|
7583
7581
|
contact_time_zone?: string | null | undefined;
|
|
7584
7582
|
address_full?: string | null | undefined;
|
|
7583
|
+
address_city?: string | null | undefined;
|
|
7584
|
+
address_zip?: string | null | undefined;
|
|
7585
7585
|
twitter_username?: string | null | undefined;
|
|
7586
7586
|
logo?: string | null | undefined;
|
|
7587
7587
|
email_sent_from?: string | null | undefined;
|
|
@@ -7627,14 +7627,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7627
7627
|
updated_by_display_name?: string | null | undefined;
|
|
7628
7628
|
unique_name?: string | null | undefined;
|
|
7629
7629
|
legal_name?: string | null | undefined;
|
|
7630
|
-
contact_email?: string | null | undefined;
|
|
7631
|
-
address_city?: string | null | undefined;
|
|
7632
|
-
address_zip?: string | null | undefined;
|
|
7633
7630
|
contact_name?: string | null | undefined;
|
|
7631
|
+
contact_email?: string | null | undefined;
|
|
7634
7632
|
contact_business_phone?: string | null | undefined;
|
|
7635
7633
|
contact_mobile_phone?: string | null | undefined;
|
|
7636
7634
|
contact_time_zone?: string | null | undefined;
|
|
7637
7635
|
address_full?: string | null | undefined;
|
|
7636
|
+
address_city?: string | null | undefined;
|
|
7637
|
+
address_zip?: string | null | undefined;
|
|
7638
7638
|
twitter_username?: string | null | undefined;
|
|
7639
7639
|
logo?: string | null | undefined;
|
|
7640
7640
|
email_sent_from?: string | null | undefined;
|
|
@@ -7666,14 +7666,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7666
7666
|
updated_by_display_name?: string | null | undefined;
|
|
7667
7667
|
unique_name?: string | null | undefined;
|
|
7668
7668
|
legal_name?: string | null | undefined;
|
|
7669
|
-
contact_email?: string | null | undefined;
|
|
7670
|
-
address_city?: string | null | undefined;
|
|
7671
|
-
address_zip?: string | null | undefined;
|
|
7672
7669
|
contact_name?: string | null | undefined;
|
|
7670
|
+
contact_email?: string | null | undefined;
|
|
7673
7671
|
contact_business_phone?: string | null | undefined;
|
|
7674
7672
|
contact_mobile_phone?: string | null | undefined;
|
|
7675
7673
|
contact_time_zone?: string | null | undefined;
|
|
7676
7674
|
address_full?: string | null | undefined;
|
|
7675
|
+
address_city?: string | null | undefined;
|
|
7676
|
+
address_zip?: string | null | undefined;
|
|
7677
7677
|
twitter_username?: string | null | undefined;
|
|
7678
7678
|
logo?: string | null | undefined;
|
|
7679
7679
|
email_sent_from?: string | null | undefined;
|
|
@@ -7738,14 +7738,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
7738
7738
|
updated_by_display_name?: string | null | undefined;
|
|
7739
7739
|
unique_name?: string | null | undefined;
|
|
7740
7740
|
legal_name?: string | null | undefined;
|
|
7741
|
-
contact_email?: string | null | undefined;
|
|
7742
|
-
address_city?: string | null | undefined;
|
|
7743
|
-
address_zip?: string | null | undefined;
|
|
7744
7741
|
contact_name?: string | null | undefined;
|
|
7742
|
+
contact_email?: string | null | undefined;
|
|
7745
7743
|
contact_business_phone?: string | null | undefined;
|
|
7746
7744
|
contact_mobile_phone?: string | null | undefined;
|
|
7747
7745
|
contact_time_zone?: string | null | undefined;
|
|
7748
7746
|
address_full?: string | null | undefined;
|
|
7747
|
+
address_city?: string | null | undefined;
|
|
7748
|
+
address_zip?: string | null | undefined;
|
|
7749
7749
|
twitter_username?: string | null | undefined;
|
|
7750
7750
|
logo?: string | null | undefined;
|
|
7751
7751
|
email_sent_from?: string | null | undefined;
|
|
@@ -7767,14 +7767,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
7767
7767
|
updated_by_display_name?: string | null | undefined;
|
|
7768
7768
|
unique_name?: string | null | undefined;
|
|
7769
7769
|
legal_name?: string | null | undefined;
|
|
7770
|
-
contact_email?: string | null | undefined;
|
|
7771
|
-
address_city?: string | null | undefined;
|
|
7772
|
-
address_zip?: string | null | undefined;
|
|
7773
7770
|
contact_name?: string | null | undefined;
|
|
7771
|
+
contact_email?: string | null | undefined;
|
|
7774
7772
|
contact_business_phone?: string | null | undefined;
|
|
7775
7773
|
contact_mobile_phone?: string | null | undefined;
|
|
7776
7774
|
contact_time_zone?: string | null | undefined;
|
|
7777
7775
|
address_full?: string | null | undefined;
|
|
7776
|
+
address_city?: string | null | undefined;
|
|
7777
|
+
address_zip?: string | null | undefined;
|
|
7778
7778
|
twitter_username?: string | null | undefined;
|
|
7779
7779
|
logo?: string | null | undefined;
|
|
7780
7780
|
email_sent_from?: string | null | undefined;
|
|
@@ -7834,14 +7834,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
7834
7834
|
updated_by_display_name?: string | null | undefined;
|
|
7835
7835
|
unique_name?: string | null | undefined;
|
|
7836
7836
|
legal_name?: string | null | undefined;
|
|
7837
|
-
contact_email?: string | null | undefined;
|
|
7838
|
-
address_city?: string | null | undefined;
|
|
7839
|
-
address_zip?: string | null | undefined;
|
|
7840
7837
|
contact_name?: string | null | undefined;
|
|
7838
|
+
contact_email?: string | null | undefined;
|
|
7841
7839
|
contact_business_phone?: string | null | undefined;
|
|
7842
7840
|
contact_mobile_phone?: string | null | undefined;
|
|
7843
7841
|
contact_time_zone?: string | null | undefined;
|
|
7844
7842
|
address_full?: string | null | undefined;
|
|
7843
|
+
address_city?: string | null | undefined;
|
|
7844
|
+
address_zip?: string | null | undefined;
|
|
7845
7845
|
twitter_username?: string | null | undefined;
|
|
7846
7846
|
logo?: string | null | undefined;
|
|
7847
7847
|
email_sent_from?: string | null | undefined;
|
|
@@ -7863,14 +7863,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
7863
7863
|
updated_by_display_name?: string | null | undefined;
|
|
7864
7864
|
unique_name?: string | null | undefined;
|
|
7865
7865
|
legal_name?: string | null | undefined;
|
|
7866
|
-
contact_email?: string | null | undefined;
|
|
7867
|
-
address_city?: string | null | undefined;
|
|
7868
|
-
address_zip?: string | null | undefined;
|
|
7869
7866
|
contact_name?: string | null | undefined;
|
|
7867
|
+
contact_email?: string | null | undefined;
|
|
7870
7868
|
contact_business_phone?: string | null | undefined;
|
|
7871
7869
|
contact_mobile_phone?: string | null | undefined;
|
|
7872
7870
|
contact_time_zone?: string | null | undefined;
|
|
7873
7871
|
address_full?: string | null | undefined;
|
|
7872
|
+
address_city?: string | null | undefined;
|
|
7873
|
+
address_zip?: string | null | undefined;
|
|
7874
7874
|
twitter_username?: string | null | undefined;
|
|
7875
7875
|
logo?: string | null | undefined;
|
|
7876
7876
|
email_sent_from?: string | null | undefined;
|
|
@@ -7928,14 +7928,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7928
7928
|
updated_by_display_name?: string | null | undefined;
|
|
7929
7929
|
unique_name?: string | null | undefined;
|
|
7930
7930
|
legal_name?: string | null | undefined;
|
|
7931
|
-
contact_email?: string | null | undefined;
|
|
7932
|
-
address_city?: string | null | undefined;
|
|
7933
|
-
address_zip?: string | null | undefined;
|
|
7934
7931
|
contact_name?: string | null | undefined;
|
|
7932
|
+
contact_email?: string | null | undefined;
|
|
7935
7933
|
contact_business_phone?: string | null | undefined;
|
|
7936
7934
|
contact_mobile_phone?: string | null | undefined;
|
|
7937
7935
|
contact_time_zone?: string | null | undefined;
|
|
7938
7936
|
address_full?: string | null | undefined;
|
|
7937
|
+
address_city?: string | null | undefined;
|
|
7938
|
+
address_zip?: string | null | undefined;
|
|
7939
7939
|
twitter_username?: string | null | undefined;
|
|
7940
7940
|
logo?: string | null | undefined;
|
|
7941
7941
|
email_sent_from?: string | null | undefined;
|
|
@@ -7957,14 +7957,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7957
7957
|
updated_by_display_name?: string | null | undefined;
|
|
7958
7958
|
unique_name?: string | null | undefined;
|
|
7959
7959
|
legal_name?: string | null | undefined;
|
|
7960
|
-
contact_email?: string | null | undefined;
|
|
7961
|
-
address_city?: string | null | undefined;
|
|
7962
|
-
address_zip?: string | null | undefined;
|
|
7963
7960
|
contact_name?: string | null | undefined;
|
|
7961
|
+
contact_email?: string | null | undefined;
|
|
7964
7962
|
contact_business_phone?: string | null | undefined;
|
|
7965
7963
|
contact_mobile_phone?: string | null | undefined;
|
|
7966
7964
|
contact_time_zone?: string | null | undefined;
|
|
7967
7965
|
address_full?: string | null | undefined;
|
|
7966
|
+
address_city?: string | null | undefined;
|
|
7967
|
+
address_zip?: string | null | undefined;
|
|
7968
7968
|
twitter_username?: string | null | undefined;
|
|
7969
7969
|
logo?: string | null | undefined;
|
|
7970
7970
|
email_sent_from?: string | null | undefined;
|
|
@@ -7988,14 +7988,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7988
7988
|
updated_by_display_name?: string | null | undefined;
|
|
7989
7989
|
unique_name?: string | null | undefined;
|
|
7990
7990
|
legal_name?: string | null | undefined;
|
|
7991
|
-
contact_email?: string | null | undefined;
|
|
7992
|
-
address_city?: string | null | undefined;
|
|
7993
|
-
address_zip?: string | null | undefined;
|
|
7994
7991
|
contact_name?: string | null | undefined;
|
|
7992
|
+
contact_email?: string | null | undefined;
|
|
7995
7993
|
contact_business_phone?: string | null | undefined;
|
|
7996
7994
|
contact_mobile_phone?: string | null | undefined;
|
|
7997
7995
|
contact_time_zone?: string | null | undefined;
|
|
7998
7996
|
address_full?: string | null | undefined;
|
|
7997
|
+
address_city?: string | null | undefined;
|
|
7998
|
+
address_zip?: string | null | undefined;
|
|
7999
7999
|
twitter_username?: string | null | undefined;
|
|
8000
8000
|
logo?: string | null | undefined;
|
|
8001
8001
|
email_sent_from?: string | null | undefined;
|
|
@@ -8019,14 +8019,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8019
8019
|
updated_by_display_name?: string | null | undefined;
|
|
8020
8020
|
unique_name?: string | null | undefined;
|
|
8021
8021
|
legal_name?: string | null | undefined;
|
|
8022
|
-
contact_email?: string | null | undefined;
|
|
8023
|
-
address_city?: string | null | undefined;
|
|
8024
|
-
address_zip?: string | null | undefined;
|
|
8025
8022
|
contact_name?: string | null | undefined;
|
|
8023
|
+
contact_email?: string | null | undefined;
|
|
8026
8024
|
contact_business_phone?: string | null | undefined;
|
|
8027
8025
|
contact_mobile_phone?: string | null | undefined;
|
|
8028
8026
|
contact_time_zone?: string | null | undefined;
|
|
8029
8027
|
address_full?: string | null | undefined;
|
|
8028
|
+
address_city?: string | null | undefined;
|
|
8029
|
+
address_zip?: string | null | undefined;
|
|
8030
8030
|
twitter_username?: string | null | undefined;
|
|
8031
8031
|
logo?: string | null | undefined;
|
|
8032
8032
|
email_sent_from?: string | null | undefined;
|
|
@@ -8747,12 +8747,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8747
8747
|
values?: number[] | undefined;
|
|
8748
8748
|
caseSensitive?: boolean | undefined;
|
|
8749
8749
|
} | undefined;
|
|
8750
|
-
display_name?: {
|
|
8751
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8752
|
-
value?: string | undefined;
|
|
8753
|
-
values?: string[] | undefined;
|
|
8754
|
-
caseSensitive?: boolean | undefined;
|
|
8755
|
-
} | undefined;
|
|
8756
8750
|
team_id?: {
|
|
8757
8751
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8758
8752
|
value?: string | undefined;
|
|
@@ -8777,6 +8771,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8777
8771
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
8778
8772
|
caseSensitive?: boolean | undefined;
|
|
8779
8773
|
} | undefined;
|
|
8774
|
+
display_name?: {
|
|
8775
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8776
|
+
value?: string | undefined;
|
|
8777
|
+
values?: string[] | undefined;
|
|
8778
|
+
caseSensitive?: boolean | undefined;
|
|
8779
|
+
} | undefined;
|
|
8780
8780
|
business_phone?: {
|
|
8781
8781
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8782
8782
|
value?: string | undefined;
|
|
@@ -8877,12 +8877,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8877
8877
|
values?: number[] | undefined;
|
|
8878
8878
|
caseSensitive?: boolean | undefined;
|
|
8879
8879
|
} | undefined;
|
|
8880
|
-
display_name?: {
|
|
8881
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8882
|
-
value?: string | undefined;
|
|
8883
|
-
values?: string[] | undefined;
|
|
8884
|
-
caseSensitive?: boolean | undefined;
|
|
8885
|
-
} | undefined;
|
|
8886
8880
|
team_id?: {
|
|
8887
8881
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8888
8882
|
value?: string | undefined;
|
|
@@ -8907,6 +8901,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8907
8901
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
8908
8902
|
caseSensitive?: boolean | undefined;
|
|
8909
8903
|
} | undefined;
|
|
8904
|
+
display_name?: {
|
|
8905
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8906
|
+
value?: string | undefined;
|
|
8907
|
+
values?: string[] | undefined;
|
|
8908
|
+
caseSensitive?: boolean | undefined;
|
|
8909
|
+
} | undefined;
|
|
8910
8910
|
business_phone?: {
|
|
8911
8911
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8912
8912
|
value?: string | undefined;
|
|
@@ -8953,9 +8953,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
|
|
|
8953
8953
|
time_zone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8954
8954
|
}, "strip", z.ZodTypeAny, {
|
|
8955
8955
|
user_id: string;
|
|
8956
|
-
display_name: string;
|
|
8957
8956
|
team_id: string;
|
|
8958
8957
|
role: "owner" | "manager" | "member" | "client";
|
|
8958
|
+
display_name: string;
|
|
8959
8959
|
email_address: string;
|
|
8960
8960
|
business_phone?: string | null | undefined;
|
|
8961
8961
|
mobile_phone?: string | null | undefined;
|
|
@@ -8963,9 +8963,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
|
|
|
8963
8963
|
time_zone?: string | null | undefined;
|
|
8964
8964
|
}, {
|
|
8965
8965
|
user_id: string;
|
|
8966
|
-
display_name: string;
|
|
8967
8966
|
team_id: string;
|
|
8968
8967
|
role: "owner" | "manager" | "member" | "client";
|
|
8968
|
+
display_name: string;
|
|
8969
8969
|
email_address: string;
|
|
8970
8970
|
business_phone?: string | null | undefined;
|
|
8971
8971
|
mobile_phone?: string | null | undefined;
|
|
@@ -8988,9 +8988,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
|
|
|
8988
8988
|
}, "strip", z.ZodTypeAny, {
|
|
8989
8989
|
id: string;
|
|
8990
8990
|
user_id: string;
|
|
8991
|
-
display_name: string;
|
|
8992
8991
|
team_id: string;
|
|
8993
8992
|
role: "owner" | "manager" | "member" | "client";
|
|
8993
|
+
display_name: string;
|
|
8994
8994
|
email_address: string;
|
|
8995
8995
|
business_phone?: string | null | undefined;
|
|
8996
8996
|
mobile_phone?: string | null | undefined;
|
|
@@ -8999,9 +8999,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
|
|
|
8999
8999
|
}, {
|
|
9000
9000
|
id: string;
|
|
9001
9001
|
user_id: string;
|
|
9002
|
-
display_name: string;
|
|
9003
9002
|
team_id: string;
|
|
9004
9003
|
role: "owner" | "manager" | "member" | "client";
|
|
9004
|
+
display_name: string;
|
|
9005
9005
|
email_address: string;
|
|
9006
9006
|
business_phone?: string | null | undefined;
|
|
9007
9007
|
mobile_phone?: string | null | undefined;
|
|
@@ -9048,9 +9048,9 @@ declare const TeamMemberReadSchema: z.ZodObject<{
|
|
|
9048
9048
|
original_id?: number | null | undefined;
|
|
9049
9049
|
created_by_display_name?: string | null | undefined;
|
|
9050
9050
|
updated_by_display_name?: string | null | undefined;
|
|
9051
|
-
display_name?: string | null | undefined;
|
|
9052
9051
|
original_team_id?: string | null | undefined;
|
|
9053
9052
|
original_user_id?: string | null | undefined;
|
|
9053
|
+
display_name?: string | null | undefined;
|
|
9054
9054
|
business_phone?: string | null | undefined;
|
|
9055
9055
|
mobile_phone?: string | null | undefined;
|
|
9056
9056
|
website_address?: string | null | undefined;
|
|
@@ -9070,9 +9070,9 @@ declare const TeamMemberReadSchema: z.ZodObject<{
|
|
|
9070
9070
|
original_id?: number | null | undefined;
|
|
9071
9071
|
created_by_display_name?: string | null | undefined;
|
|
9072
9072
|
updated_by_display_name?: string | null | undefined;
|
|
9073
|
-
display_name?: string | null | undefined;
|
|
9074
9073
|
original_team_id?: string | null | undefined;
|
|
9075
9074
|
original_user_id?: string | null | undefined;
|
|
9075
|
+
display_name?: string | null | undefined;
|
|
9076
9076
|
business_phone?: string | null | undefined;
|
|
9077
9077
|
mobile_phone?: string | null | undefined;
|
|
9078
9078
|
website_address?: string | null | undefined;
|
|
@@ -9122,9 +9122,9 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
|
|
|
9122
9122
|
original_id?: number | null | undefined;
|
|
9123
9123
|
created_by_display_name?: string | null | undefined;
|
|
9124
9124
|
updated_by_display_name?: string | null | undefined;
|
|
9125
|
-
display_name?: string | null | undefined;
|
|
9126
9125
|
original_team_id?: string | null | undefined;
|
|
9127
9126
|
original_user_id?: string | null | undefined;
|
|
9127
|
+
display_name?: string | null | undefined;
|
|
9128
9128
|
business_phone?: string | null | undefined;
|
|
9129
9129
|
mobile_phone?: string | null | undefined;
|
|
9130
9130
|
website_address?: string | null | undefined;
|
|
@@ -9144,9 +9144,9 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
|
|
|
9144
9144
|
original_id?: number | null | undefined;
|
|
9145
9145
|
created_by_display_name?: string | null | undefined;
|
|
9146
9146
|
updated_by_display_name?: string | null | undefined;
|
|
9147
|
-
display_name?: string | null | undefined;
|
|
9148
9147
|
original_team_id?: string | null | undefined;
|
|
9149
9148
|
original_user_id?: string | null | undefined;
|
|
9149
|
+
display_name?: string | null | undefined;
|
|
9150
9150
|
business_phone?: string | null | undefined;
|
|
9151
9151
|
mobile_phone?: string | null | undefined;
|
|
9152
9152
|
website_address?: string | null | undefined;
|
|
@@ -9194,9 +9194,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9194
9194
|
original_id?: number | null | undefined;
|
|
9195
9195
|
created_by_display_name?: string | null | undefined;
|
|
9196
9196
|
updated_by_display_name?: string | null | undefined;
|
|
9197
|
-
display_name?: string | null | undefined;
|
|
9198
9197
|
original_team_id?: string | null | undefined;
|
|
9199
9198
|
original_user_id?: string | null | undefined;
|
|
9199
|
+
display_name?: string | null | undefined;
|
|
9200
9200
|
business_phone?: string | null | undefined;
|
|
9201
9201
|
mobile_phone?: string | null | undefined;
|
|
9202
9202
|
website_address?: string | null | undefined;
|
|
@@ -9216,9 +9216,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9216
9216
|
original_id?: number | null | undefined;
|
|
9217
9217
|
created_by_display_name?: string | null | undefined;
|
|
9218
9218
|
updated_by_display_name?: string | null | undefined;
|
|
9219
|
-
display_name?: string | null | undefined;
|
|
9220
9219
|
original_team_id?: string | null | undefined;
|
|
9221
9220
|
original_user_id?: string | null | undefined;
|
|
9221
|
+
display_name?: string | null | undefined;
|
|
9222
9222
|
business_phone?: string | null | undefined;
|
|
9223
9223
|
mobile_phone?: string | null | undefined;
|
|
9224
9224
|
website_address?: string | null | undefined;
|
|
@@ -9240,9 +9240,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9240
9240
|
original_id?: number | null | undefined;
|
|
9241
9241
|
created_by_display_name?: string | null | undefined;
|
|
9242
9242
|
updated_by_display_name?: string | null | undefined;
|
|
9243
|
-
display_name?: string | null | undefined;
|
|
9244
9243
|
original_team_id?: string | null | undefined;
|
|
9245
9244
|
original_user_id?: string | null | undefined;
|
|
9245
|
+
display_name?: string | null | undefined;
|
|
9246
9246
|
business_phone?: string | null | undefined;
|
|
9247
9247
|
mobile_phone?: string | null | undefined;
|
|
9248
9248
|
website_address?: string | null | undefined;
|
|
@@ -9264,9 +9264,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9264
9264
|
original_id?: number | null | undefined;
|
|
9265
9265
|
created_by_display_name?: string | null | undefined;
|
|
9266
9266
|
updated_by_display_name?: string | null | undefined;
|
|
9267
|
-
display_name?: string | null | undefined;
|
|
9268
9267
|
original_team_id?: string | null | undefined;
|
|
9269
9268
|
original_user_id?: string | null | undefined;
|
|
9269
|
+
display_name?: string | null | undefined;
|
|
9270
9270
|
business_phone?: string | null | undefined;
|
|
9271
9271
|
mobile_phone?: string | null | undefined;
|
|
9272
9272
|
website_address?: string | null | undefined;
|
|
@@ -9506,17 +9506,23 @@ interface CustomerApi {
|
|
|
9506
9506
|
}
|
|
9507
9507
|
//#endregion
|
|
9508
9508
|
//#region src/api/email-verification-api.d.ts
|
|
9509
|
+
/**
|
|
9510
|
+
* Result of verifyEmail. When ok is true, session may be included for auto sign-in.
|
|
9511
|
+
*/
|
|
9512
|
+
interface VerifyEmailResult {
|
|
9513
|
+
ok: boolean;
|
|
9514
|
+
session?: LoginResponse;
|
|
9515
|
+
}
|
|
9509
9516
|
/**
|
|
9510
9517
|
* Email verification API
|
|
9511
9518
|
* Implement when your backend supports email verification.
|
|
9512
9519
|
*/
|
|
9513
9520
|
interface EmailVerificationApi {
|
|
9514
9521
|
/**
|
|
9515
|
-
* Verify email using token from verification link
|
|
9522
|
+
* Verify email using token from verification link.
|
|
9523
|
+
* When successful, may return session for auto sign-in (e.g. strict mode signup flow).
|
|
9516
9524
|
*/
|
|
9517
|
-
verifyEmail(token: string): Promise<
|
|
9518
|
-
ok: boolean;
|
|
9519
|
-
}>;
|
|
9525
|
+
verifyEmail(token: string): Promise<VerifyEmailResult>;
|
|
9520
9526
|
/**
|
|
9521
9527
|
* Resend verification email for the current user
|
|
9522
9528
|
*/
|
|
@@ -10136,5 +10142,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
10136
10142
|
*/
|
|
10137
10143
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
10138
10144
|
//#endregion
|
|
10139
|
-
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, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, 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, SignupInputDto, 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, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10145
|
+
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, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, 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, SignupInputDto, 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, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10140
10146
|
//# sourceMappingURL=index.d.mts.map
|