@dragonmastery/dragoncore-shared 0.0.31 → 0.0.33
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 +224 -202
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -162,12 +162,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
162
162
|
metadata?: string | null | undefined;
|
|
163
163
|
updated_at?: string | null | undefined;
|
|
164
164
|
updated_by?: 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;
|
|
@@ -180,12 +180,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
180
180
|
metadata?: string | null | undefined;
|
|
181
181
|
updated_at?: string | null | undefined;
|
|
182
182
|
updated_by?: 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
|
|
@@ -197,6 +197,7 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
197
197
|
original_name: z.ZodString;
|
|
198
198
|
content_type: z.ZodString;
|
|
199
199
|
file_size: z.ZodString;
|
|
200
|
+
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
200
201
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
201
202
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
202
203
|
folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -209,6 +210,7 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
209
210
|
file_size: string;
|
|
210
211
|
description?: string | null | undefined;
|
|
211
212
|
metadata?: string | null | undefined;
|
|
213
|
+
title?: string | null | undefined;
|
|
212
214
|
folder_id?: string | null | undefined;
|
|
213
215
|
}, {
|
|
214
216
|
record_id: string;
|
|
@@ -219,11 +221,11 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
219
221
|
file_size: string;
|
|
220
222
|
description?: string | null | undefined;
|
|
221
223
|
metadata?: string | null | undefined;
|
|
224
|
+
title?: string | null | undefined;
|
|
222
225
|
folder_id?: string | null | undefined;
|
|
223
226
|
}>;
|
|
224
227
|
type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
|
|
225
228
|
declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
226
|
-
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
227
229
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
228
230
|
} & {
|
|
229
231
|
id: z.ZodString;
|
|
@@ -233,6 +235,8 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
233
235
|
original_name: z.ZodOptional<z.ZodString>;
|
|
234
236
|
content_type: z.ZodOptional<z.ZodString>;
|
|
235
237
|
file_size: z.ZodOptional<z.ZodString>;
|
|
238
|
+
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
239
|
+
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
236
240
|
folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
237
241
|
}, "strip", z.ZodTypeAny, {
|
|
238
242
|
id: string;
|
|
@@ -240,22 +244,24 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
240
244
|
record_id?: string | undefined;
|
|
241
245
|
record_type?: string | undefined;
|
|
242
246
|
metadata?: string | null | undefined;
|
|
243
|
-
folder_id?: string | null | undefined;
|
|
244
247
|
sanitized_name?: string | undefined;
|
|
245
248
|
original_name?: string | undefined;
|
|
246
249
|
content_type?: string | undefined;
|
|
247
250
|
file_size?: string | undefined;
|
|
251
|
+
title?: string | null | undefined;
|
|
252
|
+
folder_id?: string | null | undefined;
|
|
248
253
|
}, {
|
|
249
254
|
id: string;
|
|
250
255
|
description?: string | null | undefined;
|
|
251
256
|
record_id?: string | undefined;
|
|
252
257
|
record_type?: string | undefined;
|
|
253
258
|
metadata?: string | null | undefined;
|
|
254
|
-
folder_id?: string | null | undefined;
|
|
255
259
|
sanitized_name?: string | undefined;
|
|
256
260
|
original_name?: string | undefined;
|
|
257
261
|
content_type?: string | undefined;
|
|
258
262
|
file_size?: string | undefined;
|
|
263
|
+
title?: string | null | undefined;
|
|
264
|
+
folder_id?: string | null | undefined;
|
|
259
265
|
}>;
|
|
260
266
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
261
267
|
//#endregion
|
|
@@ -268,6 +274,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
268
274
|
original_name: z.ZodString;
|
|
269
275
|
content_type: z.ZodString;
|
|
270
276
|
file_size: z.ZodString;
|
|
277
|
+
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
271
278
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
272
279
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
273
280
|
folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -295,6 +302,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
295
302
|
metadata?: string | null | undefined;
|
|
296
303
|
updated_at?: string | null | undefined;
|
|
297
304
|
updated_by?: string | null | undefined;
|
|
305
|
+
title?: string | null | undefined;
|
|
298
306
|
folder_id?: string | null | undefined;
|
|
299
307
|
archived_at?: string | null | undefined;
|
|
300
308
|
archived_by?: string | null | undefined;
|
|
@@ -314,6 +322,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
314
322
|
metadata?: string | null | undefined;
|
|
315
323
|
updated_at?: string | null | undefined;
|
|
316
324
|
updated_by?: string | null | undefined;
|
|
325
|
+
title?: string | null | undefined;
|
|
317
326
|
folder_id?: string | null | undefined;
|
|
318
327
|
archived_at?: string | null | undefined;
|
|
319
328
|
archived_by?: string | null | undefined;
|
|
@@ -351,12 +360,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
351
360
|
metadata?: string | null | undefined;
|
|
352
361
|
updated_at?: string | null | undefined;
|
|
353
362
|
updated_by?: string | null | undefined;
|
|
354
|
-
parent_folder_id?: string | null | undefined;
|
|
355
|
-
file_count?: number | undefined;
|
|
356
363
|
archived_at?: string | null | undefined;
|
|
357
364
|
archived_by?: string | null | undefined;
|
|
358
365
|
deleted_at?: string | null | undefined;
|
|
359
366
|
deleted_by?: string | null | undefined;
|
|
367
|
+
parent_folder_id?: string | null | undefined;
|
|
368
|
+
file_count?: number | undefined;
|
|
360
369
|
}, {
|
|
361
370
|
created_at: string;
|
|
362
371
|
created_by: string;
|
|
@@ -369,12 +378,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
369
378
|
metadata?: string | null | undefined;
|
|
370
379
|
updated_at?: string | null | undefined;
|
|
371
380
|
updated_by?: string | null | undefined;
|
|
372
|
-
parent_folder_id?: string | null | undefined;
|
|
373
|
-
file_count?: number | undefined;
|
|
374
381
|
archived_at?: string | null | undefined;
|
|
375
382
|
archived_by?: string | null | undefined;
|
|
376
383
|
deleted_at?: string | null | undefined;
|
|
377
384
|
deleted_by?: string | null | undefined;
|
|
385
|
+
parent_folder_id?: string | null | undefined;
|
|
386
|
+
file_count?: number | undefined;
|
|
378
387
|
}>, "many">;
|
|
379
388
|
pageInfo: z.ZodObject<{
|
|
380
389
|
hasNextPage: z.ZodBoolean;
|
|
@@ -405,6 +414,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
405
414
|
metadata?: string | null | undefined;
|
|
406
415
|
updated_at?: string | null | undefined;
|
|
407
416
|
updated_by?: string | null | undefined;
|
|
417
|
+
title?: string | null | undefined;
|
|
408
418
|
folder_id?: string | null | undefined;
|
|
409
419
|
archived_at?: string | null | undefined;
|
|
410
420
|
archived_by?: string | null | undefined;
|
|
@@ -423,12 +433,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
423
433
|
metadata?: string | null | undefined;
|
|
424
434
|
updated_at?: string | null | undefined;
|
|
425
435
|
updated_by?: string | null | undefined;
|
|
426
|
-
parent_folder_id?: string | null | undefined;
|
|
427
|
-
file_count?: number | undefined;
|
|
428
436
|
archived_at?: string | null | undefined;
|
|
429
437
|
archived_by?: string | null | undefined;
|
|
430
438
|
deleted_at?: string | null | undefined;
|
|
431
439
|
deleted_by?: string | null | undefined;
|
|
440
|
+
parent_folder_id?: string | null | undefined;
|
|
441
|
+
file_count?: number | undefined;
|
|
432
442
|
}[];
|
|
433
443
|
}, {
|
|
434
444
|
pageInfo: {
|
|
@@ -449,6 +459,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
449
459
|
metadata?: string | null | undefined;
|
|
450
460
|
updated_at?: string | null | undefined;
|
|
451
461
|
updated_by?: string | null | undefined;
|
|
462
|
+
title?: string | null | undefined;
|
|
452
463
|
folder_id?: string | null | undefined;
|
|
453
464
|
archived_at?: string | null | undefined;
|
|
454
465
|
archived_by?: string | null | undefined;
|
|
@@ -467,12 +478,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
467
478
|
metadata?: string | null | undefined;
|
|
468
479
|
updated_at?: string | null | undefined;
|
|
469
480
|
updated_by?: string | null | undefined;
|
|
470
|
-
parent_folder_id?: string | null | undefined;
|
|
471
|
-
file_count?: number | undefined;
|
|
472
481
|
archived_at?: string | null | undefined;
|
|
473
482
|
archived_by?: string | null | undefined;
|
|
474
483
|
deleted_at?: string | null | undefined;
|
|
475
484
|
deleted_by?: string | null | undefined;
|
|
485
|
+
parent_folder_id?: string | null | undefined;
|
|
486
|
+
file_count?: number | undefined;
|
|
476
487
|
}[];
|
|
477
488
|
}>;
|
|
478
489
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -485,6 +496,7 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
485
496
|
original_name: z.ZodString;
|
|
486
497
|
content_type: z.ZodString;
|
|
487
498
|
file_size: z.ZodString;
|
|
499
|
+
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
488
500
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
489
501
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
490
502
|
folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -512,6 +524,7 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
512
524
|
metadata?: string | null | undefined;
|
|
513
525
|
updated_at?: string | null | undefined;
|
|
514
526
|
updated_by?: string | null | undefined;
|
|
527
|
+
title?: string | null | undefined;
|
|
515
528
|
folder_id?: string | null | undefined;
|
|
516
529
|
archived_at?: string | null | undefined;
|
|
517
530
|
archived_by?: string | null | undefined;
|
|
@@ -531,6 +544,7 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
531
544
|
metadata?: string | null | undefined;
|
|
532
545
|
updated_at?: string | null | undefined;
|
|
533
546
|
updated_by?: string | null | undefined;
|
|
547
|
+
title?: string | null | undefined;
|
|
534
548
|
folder_id?: string | null | undefined;
|
|
535
549
|
archived_at?: string | null | undefined;
|
|
536
550
|
archived_by?: string | null | undefined;
|
|
@@ -2133,13 +2147,13 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2133
2147
|
is_internal: boolean;
|
|
2134
2148
|
updated_at?: string | null | undefined;
|
|
2135
2149
|
updated_by?: string | null | undefined;
|
|
2150
|
+
title?: string | null | undefined;
|
|
2136
2151
|
archived_at?: string | null | undefined;
|
|
2137
2152
|
archived_by?: string | null | undefined;
|
|
2138
2153
|
deleted_at?: string | null | undefined;
|
|
2139
2154
|
deleted_by?: string | null | undefined;
|
|
2140
|
-
tag?: string | null | undefined;
|
|
2141
|
-
title?: string | null | undefined;
|
|
2142
2155
|
body?: string | null | undefined;
|
|
2156
|
+
tag?: string | null | undefined;
|
|
2143
2157
|
original_id?: number | null | undefined;
|
|
2144
2158
|
created_by_display_name?: string | null | undefined;
|
|
2145
2159
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2152,13 +2166,13 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2152
2166
|
is_internal: boolean;
|
|
2153
2167
|
updated_at?: string | null | undefined;
|
|
2154
2168
|
updated_by?: string | null | undefined;
|
|
2169
|
+
title?: string | null | undefined;
|
|
2155
2170
|
archived_at?: string | null | undefined;
|
|
2156
2171
|
archived_by?: string | null | undefined;
|
|
2157
2172
|
deleted_at?: string | null | undefined;
|
|
2158
2173
|
deleted_by?: string | null | undefined;
|
|
2159
|
-
tag?: string | null | undefined;
|
|
2160
|
-
title?: string | null | undefined;
|
|
2161
2174
|
body?: string | null | undefined;
|
|
2175
|
+
tag?: string | null | undefined;
|
|
2162
2176
|
original_id?: number | null | undefined;
|
|
2163
2177
|
created_by_display_name?: string | null | undefined;
|
|
2164
2178
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2178,18 +2192,18 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2178
2192
|
record_id: string;
|
|
2179
2193
|
record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
2180
2194
|
is_internal: boolean;
|
|
2181
|
-
tag?: string | null | undefined;
|
|
2182
2195
|
title?: string | null | undefined;
|
|
2183
2196
|
body?: string | null | undefined;
|
|
2197
|
+
tag?: string | null | undefined;
|
|
2184
2198
|
original_id?: number | null | undefined;
|
|
2185
2199
|
}, {
|
|
2186
2200
|
record_id: string;
|
|
2187
2201
|
record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
2188
|
-
tag?: string | null | undefined;
|
|
2189
2202
|
title?: string | null | undefined;
|
|
2190
2203
|
body?: string | null | undefined;
|
|
2191
|
-
|
|
2204
|
+
tag?: string | null | undefined;
|
|
2192
2205
|
is_internal?: boolean | undefined;
|
|
2206
|
+
original_id?: number | null | undefined;
|
|
2193
2207
|
}>;
|
|
2194
2208
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2195
2209
|
//#endregion
|
|
@@ -2207,20 +2221,20 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2207
2221
|
id: string;
|
|
2208
2222
|
record_id?: string | undefined;
|
|
2209
2223
|
record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
|
|
2210
|
-
tag?: string | null | undefined;
|
|
2211
2224
|
title?: string | null | undefined;
|
|
2212
2225
|
body?: string | null | undefined;
|
|
2213
|
-
|
|
2226
|
+
tag?: string | null | undefined;
|
|
2214
2227
|
is_internal?: boolean | undefined;
|
|
2228
|
+
original_id?: number | null | undefined;
|
|
2215
2229
|
}, {
|
|
2216
2230
|
id: string;
|
|
2217
2231
|
record_id?: string | undefined;
|
|
2218
2232
|
record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
|
|
2219
|
-
tag?: string | null | undefined;
|
|
2220
2233
|
title?: string | null | undefined;
|
|
2221
2234
|
body?: string | null | undefined;
|
|
2222
|
-
|
|
2235
|
+
tag?: string | null | undefined;
|
|
2223
2236
|
is_internal?: boolean | undefined;
|
|
2237
|
+
original_id?: number | null | undefined;
|
|
2224
2238
|
}>;
|
|
2225
2239
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2226
2240
|
//#endregion
|
|
@@ -2635,19 +2649,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2635
2649
|
values?: any[] | undefined;
|
|
2636
2650
|
caseSensitive?: boolean | undefined;
|
|
2637
2651
|
} | undefined;
|
|
2638
|
-
|
|
2652
|
+
title?: {
|
|
2639
2653
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2640
2654
|
value?: string | undefined;
|
|
2641
2655
|
values?: string[] | undefined;
|
|
2642
2656
|
caseSensitive?: boolean | undefined;
|
|
2643
2657
|
} | undefined;
|
|
2644
|
-
|
|
2658
|
+
body?: {
|
|
2645
2659
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2646
2660
|
value?: string | undefined;
|
|
2647
2661
|
values?: string[] | undefined;
|
|
2648
2662
|
caseSensitive?: boolean | undefined;
|
|
2649
2663
|
} | undefined;
|
|
2650
|
-
|
|
2664
|
+
tag?: {
|
|
2651
2665
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2652
2666
|
value?: string | undefined;
|
|
2653
2667
|
values?: string[] | undefined;
|
|
@@ -2713,19 +2727,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2713
2727
|
values?: any[] | undefined;
|
|
2714
2728
|
caseSensitive?: boolean | undefined;
|
|
2715
2729
|
} | undefined;
|
|
2716
|
-
|
|
2730
|
+
title?: {
|
|
2717
2731
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2718
2732
|
value?: string | undefined;
|
|
2719
2733
|
values?: string[] | undefined;
|
|
2720
2734
|
caseSensitive?: boolean | undefined;
|
|
2721
2735
|
} | undefined;
|
|
2722
|
-
|
|
2736
|
+
body?: {
|
|
2723
2737
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2724
2738
|
value?: string | undefined;
|
|
2725
2739
|
values?: string[] | undefined;
|
|
2726
2740
|
caseSensitive?: boolean | undefined;
|
|
2727
2741
|
} | undefined;
|
|
2728
|
-
|
|
2742
|
+
tag?: {
|
|
2729
2743
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2730
2744
|
value?: string | undefined;
|
|
2731
2745
|
values?: string[] | undefined;
|
|
@@ -4265,10 +4279,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4265
4279
|
created_by_display_name?: string | null | undefined;
|
|
4266
4280
|
display_id?: string | null | undefined;
|
|
4267
4281
|
credit_value?: string | null | undefined;
|
|
4268
|
-
display_id_prefix?: string | null | undefined;
|
|
4269
4282
|
start_at?: string | null | undefined;
|
|
4270
4283
|
target_at?: string | null | undefined;
|
|
4271
4284
|
completed_at?: string | null | undefined;
|
|
4285
|
+
display_id_prefix?: string | null | undefined;
|
|
4272
4286
|
locked_approval_at?: string | null | undefined;
|
|
4273
4287
|
my_subscription?: {
|
|
4274
4288
|
created_at: string;
|
|
@@ -4297,10 +4311,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4297
4311
|
created_by_display_name?: string | null | undefined;
|
|
4298
4312
|
display_id?: string | null | undefined;
|
|
4299
4313
|
credit_value?: string | null | undefined;
|
|
4300
|
-
display_id_prefix?: string | null | undefined;
|
|
4301
4314
|
start_at?: string | null | undefined;
|
|
4302
4315
|
target_at?: string | null | undefined;
|
|
4303
4316
|
completed_at?: string | null | undefined;
|
|
4317
|
+
display_id_prefix?: string | null | undefined;
|
|
4304
4318
|
locked_approval_at?: string | null | undefined;
|
|
4305
4319
|
my_subscription?: {
|
|
4306
4320
|
created_at: string;
|
|
@@ -4387,10 +4401,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4387
4401
|
created_by_display_name?: string | null | undefined;
|
|
4388
4402
|
display_id?: string | null | undefined;
|
|
4389
4403
|
credit_value?: string | null | undefined;
|
|
4390
|
-
display_id_prefix?: string | null | undefined;
|
|
4391
4404
|
start_at?: string | null | undefined;
|
|
4392
4405
|
target_at?: string | null | undefined;
|
|
4393
4406
|
completed_at?: string | null | undefined;
|
|
4407
|
+
display_id_prefix?: string | null | undefined;
|
|
4394
4408
|
locked_approval_at?: string | null | undefined;
|
|
4395
4409
|
my_subscription?: {
|
|
4396
4410
|
created_at: string;
|
|
@@ -4419,10 +4433,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4419
4433
|
created_by_display_name?: string | null | undefined;
|
|
4420
4434
|
display_id?: string | null | undefined;
|
|
4421
4435
|
credit_value?: string | null | undefined;
|
|
4422
|
-
display_id_prefix?: string | null | undefined;
|
|
4423
4436
|
start_at?: string | null | undefined;
|
|
4424
4437
|
target_at?: string | null | undefined;
|
|
4425
4438
|
completed_at?: string | null | undefined;
|
|
4439
|
+
display_id_prefix?: string | null | undefined;
|
|
4426
4440
|
locked_approval_at?: string | null | undefined;
|
|
4427
4441
|
my_subscription?: {
|
|
4428
4442
|
created_at: string;
|
|
@@ -4475,10 +4489,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4475
4489
|
created_by_display_name?: string | null | undefined;
|
|
4476
4490
|
display_id?: string | null | undefined;
|
|
4477
4491
|
credit_value?: string | null | undefined;
|
|
4478
|
-
display_id_prefix?: string | null | undefined;
|
|
4479
4492
|
start_at?: string | null | undefined;
|
|
4480
4493
|
target_at?: string | null | undefined;
|
|
4481
4494
|
completed_at?: string | null | undefined;
|
|
4495
|
+
display_id_prefix?: string | null | undefined;
|
|
4482
4496
|
locked_approval_at?: string | null | undefined;
|
|
4483
4497
|
my_subscription?: {
|
|
4484
4498
|
created_at: string;
|
|
@@ -4517,10 +4531,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4517
4531
|
created_by_display_name?: string | null | undefined;
|
|
4518
4532
|
display_id?: string | null | undefined;
|
|
4519
4533
|
credit_value?: string | null | undefined;
|
|
4520
|
-
display_id_prefix?: string | null | undefined;
|
|
4521
4534
|
start_at?: string | null | undefined;
|
|
4522
4535
|
target_at?: string | null | undefined;
|
|
4523
4536
|
completed_at?: string | null | undefined;
|
|
4537
|
+
display_id_prefix?: string | null | undefined;
|
|
4524
4538
|
locked_approval_at?: string | null | undefined;
|
|
4525
4539
|
my_subscription?: {
|
|
4526
4540
|
created_at: string;
|
|
@@ -5310,12 +5324,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5310
5324
|
values?: string[] | undefined;
|
|
5311
5325
|
caseSensitive?: boolean | undefined;
|
|
5312
5326
|
} | undefined;
|
|
5313
|
-
credit_value?: {
|
|
5314
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5315
|
-
value?: number | undefined;
|
|
5316
|
-
values?: number[] | undefined;
|
|
5317
|
-
caseSensitive?: boolean | undefined;
|
|
5318
|
-
} | undefined;
|
|
5319
5327
|
priority?: {
|
|
5320
5328
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5321
5329
|
value?: number | undefined;
|
|
@@ -5328,6 +5336,12 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5328
5336
|
values?: any[] | undefined;
|
|
5329
5337
|
caseSensitive?: boolean | undefined;
|
|
5330
5338
|
} | undefined;
|
|
5339
|
+
credit_value?: {
|
|
5340
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5341
|
+
value?: number | undefined;
|
|
5342
|
+
values?: number[] | undefined;
|
|
5343
|
+
caseSensitive?: boolean | undefined;
|
|
5344
|
+
} | undefined;
|
|
5331
5345
|
start_at?: {
|
|
5332
5346
|
operator: "isEmpty" | "isNotEmpty";
|
|
5333
5347
|
value?: any;
|
|
@@ -5448,12 +5462,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5448
5462
|
values?: string[] | undefined;
|
|
5449
5463
|
caseSensitive?: boolean | undefined;
|
|
5450
5464
|
} | undefined;
|
|
5451
|
-
credit_value?: {
|
|
5452
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5453
|
-
value?: number | undefined;
|
|
5454
|
-
values?: number[] | undefined;
|
|
5455
|
-
caseSensitive?: boolean | undefined;
|
|
5456
|
-
} | undefined;
|
|
5457
5465
|
priority?: {
|
|
5458
5466
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5459
5467
|
value?: number | undefined;
|
|
@@ -5466,6 +5474,12 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5466
5474
|
values?: any[] | undefined;
|
|
5467
5475
|
caseSensitive?: boolean | undefined;
|
|
5468
5476
|
} | undefined;
|
|
5477
|
+
credit_value?: {
|
|
5478
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5479
|
+
value?: number | undefined;
|
|
5480
|
+
values?: number[] | undefined;
|
|
5481
|
+
caseSensitive?: boolean | undefined;
|
|
5482
|
+
} | undefined;
|
|
5469
5483
|
start_at?: {
|
|
5470
5484
|
operator: "isEmpty" | "isNotEmpty";
|
|
5471
5485
|
value?: any;
|
|
@@ -5558,8 +5572,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5558
5572
|
description: string;
|
|
5559
5573
|
title: string;
|
|
5560
5574
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
5561
|
-
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5562
5575
|
is_locked: boolean;
|
|
5576
|
+
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5563
5577
|
can_delete: boolean;
|
|
5564
5578
|
created_at?: string | null | undefined;
|
|
5565
5579
|
created_by?: string | null | undefined;
|
|
@@ -5571,15 +5585,15 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5571
5585
|
updated_by_display_name?: string | null | undefined;
|
|
5572
5586
|
display_id?: string | null | undefined;
|
|
5573
5587
|
credit_value?: string | null | undefined;
|
|
5574
|
-
delivered_value?: string | null | undefined;
|
|
5575
|
-
display_id_prefix?: string | null | undefined;
|
|
5576
|
-
assigned_to?: string | null | undefined;
|
|
5577
|
-
assigned_to_display_name?: string | null | undefined;
|
|
5578
|
-
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5579
5588
|
start_at?: string | null | undefined;
|
|
5580
5589
|
target_at?: string | null | undefined;
|
|
5581
5590
|
completed_at?: string | null | undefined;
|
|
5591
|
+
display_id_prefix?: string | null | undefined;
|
|
5582
5592
|
locked_approval_at?: string | null | undefined;
|
|
5593
|
+
assigned_to?: string | null | undefined;
|
|
5594
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5595
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5596
|
+
delivered_value?: string | null | undefined;
|
|
5583
5597
|
}, {
|
|
5584
5598
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5585
5599
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
@@ -5587,8 +5601,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5587
5601
|
description: string;
|
|
5588
5602
|
title: string;
|
|
5589
5603
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
5590
|
-
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5591
5604
|
is_locked: boolean;
|
|
5605
|
+
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5592
5606
|
can_delete: boolean;
|
|
5593
5607
|
created_at?: string | null | undefined;
|
|
5594
5608
|
created_by?: string | null | undefined;
|
|
@@ -5600,15 +5614,15 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5600
5614
|
updated_by_display_name?: string | null | undefined;
|
|
5601
5615
|
display_id?: string | null | undefined;
|
|
5602
5616
|
credit_value?: string | null | undefined;
|
|
5603
|
-
delivered_value?: string | null | undefined;
|
|
5604
|
-
display_id_prefix?: string | null | undefined;
|
|
5605
|
-
assigned_to?: string | null | undefined;
|
|
5606
|
-
assigned_to_display_name?: string | null | undefined;
|
|
5607
|
-
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5608
5617
|
start_at?: string | null | undefined;
|
|
5609
5618
|
target_at?: string | null | undefined;
|
|
5610
5619
|
completed_at?: string | null | undefined;
|
|
5620
|
+
display_id_prefix?: string | null | undefined;
|
|
5611
5621
|
locked_approval_at?: string | null | undefined;
|
|
5622
|
+
assigned_to?: string | null | undefined;
|
|
5623
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5624
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5625
|
+
delivered_value?: string | null | undefined;
|
|
5612
5626
|
}>;
|
|
5613
5627
|
type StaffSupportTicketReadDto = z.infer<typeof StaffSupportTicketReadSchema>;
|
|
5614
5628
|
/**
|
|
@@ -5651,8 +5665,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5651
5665
|
description: string;
|
|
5652
5666
|
title: string;
|
|
5653
5667
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
5654
|
-
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5655
5668
|
is_locked: boolean;
|
|
5669
|
+
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5656
5670
|
can_delete: boolean;
|
|
5657
5671
|
created_at?: string | null | undefined;
|
|
5658
5672
|
created_by?: string | null | undefined;
|
|
@@ -5664,15 +5678,15 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5664
5678
|
updated_by_display_name?: string | null | undefined;
|
|
5665
5679
|
display_id?: string | null | undefined;
|
|
5666
5680
|
credit_value?: string | null | undefined;
|
|
5667
|
-
delivered_value?: string | null | undefined;
|
|
5668
|
-
display_id_prefix?: string | null | undefined;
|
|
5669
|
-
assigned_to?: string | null | undefined;
|
|
5670
|
-
assigned_to_display_name?: string | null | undefined;
|
|
5671
|
-
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5672
5681
|
start_at?: string | null | undefined;
|
|
5673
5682
|
target_at?: string | null | undefined;
|
|
5674
5683
|
completed_at?: string | null | undefined;
|
|
5684
|
+
display_id_prefix?: string | null | undefined;
|
|
5675
5685
|
locked_approval_at?: string | null | undefined;
|
|
5686
|
+
assigned_to?: string | null | undefined;
|
|
5687
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5688
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5689
|
+
delivered_value?: string | null | undefined;
|
|
5676
5690
|
}, {
|
|
5677
5691
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5678
5692
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
@@ -5680,8 +5694,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5680
5694
|
description: string;
|
|
5681
5695
|
title: string;
|
|
5682
5696
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
5683
|
-
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5684
5697
|
is_locked: boolean;
|
|
5698
|
+
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5685
5699
|
can_delete: boolean;
|
|
5686
5700
|
created_at?: string | null | undefined;
|
|
5687
5701
|
created_by?: string | null | undefined;
|
|
@@ -5693,15 +5707,15 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5693
5707
|
updated_by_display_name?: string | null | undefined;
|
|
5694
5708
|
display_id?: string | null | undefined;
|
|
5695
5709
|
credit_value?: string | null | undefined;
|
|
5696
|
-
delivered_value?: string | null | undefined;
|
|
5697
|
-
display_id_prefix?: string | null | undefined;
|
|
5698
|
-
assigned_to?: string | null | undefined;
|
|
5699
|
-
assigned_to_display_name?: string | null | undefined;
|
|
5700
|
-
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5701
5710
|
start_at?: string | null | undefined;
|
|
5702
5711
|
target_at?: string | null | undefined;
|
|
5703
5712
|
completed_at?: string | null | undefined;
|
|
5713
|
+
display_id_prefix?: string | null | undefined;
|
|
5704
5714
|
locked_approval_at?: string | null | undefined;
|
|
5715
|
+
assigned_to?: string | null | undefined;
|
|
5716
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5717
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5718
|
+
delivered_value?: string | null | undefined;
|
|
5705
5719
|
}>, "many">;
|
|
5706
5720
|
pageInfo: z.ZodObject<{
|
|
5707
5721
|
hasNextPage: z.ZodBoolean;
|
|
@@ -5733,8 +5747,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5733
5747
|
description: string;
|
|
5734
5748
|
title: string;
|
|
5735
5749
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
5736
|
-
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5737
5750
|
is_locked: boolean;
|
|
5751
|
+
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5738
5752
|
can_delete: boolean;
|
|
5739
5753
|
created_at?: string | null | undefined;
|
|
5740
5754
|
created_by?: string | null | undefined;
|
|
@@ -5746,15 +5760,15 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5746
5760
|
updated_by_display_name?: string | null | undefined;
|
|
5747
5761
|
display_id?: string | null | undefined;
|
|
5748
5762
|
credit_value?: string | null | undefined;
|
|
5749
|
-
delivered_value?: string | null | undefined;
|
|
5750
|
-
display_id_prefix?: string | null | undefined;
|
|
5751
|
-
assigned_to?: string | null | undefined;
|
|
5752
|
-
assigned_to_display_name?: string | null | undefined;
|
|
5753
|
-
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5754
5763
|
start_at?: string | null | undefined;
|
|
5755
5764
|
target_at?: string | null | undefined;
|
|
5756
5765
|
completed_at?: string | null | undefined;
|
|
5766
|
+
display_id_prefix?: string | null | undefined;
|
|
5757
5767
|
locked_approval_at?: string | null | undefined;
|
|
5768
|
+
assigned_to?: string | null | undefined;
|
|
5769
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5770
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5771
|
+
delivered_value?: string | null | undefined;
|
|
5758
5772
|
}[];
|
|
5759
5773
|
pageInfo: {
|
|
5760
5774
|
hasNextPage: boolean;
|
|
@@ -5772,8 +5786,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5772
5786
|
description: string;
|
|
5773
5787
|
title: string;
|
|
5774
5788
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
5775
|
-
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5776
5789
|
is_locked: boolean;
|
|
5790
|
+
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
5777
5791
|
can_delete: boolean;
|
|
5778
5792
|
created_at?: string | null | undefined;
|
|
5779
5793
|
created_by?: string | null | undefined;
|
|
@@ -5785,15 +5799,15 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5785
5799
|
updated_by_display_name?: string | null | undefined;
|
|
5786
5800
|
display_id?: string | null | undefined;
|
|
5787
5801
|
credit_value?: string | null | undefined;
|
|
5788
|
-
delivered_value?: string | null | undefined;
|
|
5789
|
-
display_id_prefix?: string | null | undefined;
|
|
5790
|
-
assigned_to?: string | null | undefined;
|
|
5791
|
-
assigned_to_display_name?: string | null | undefined;
|
|
5792
|
-
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5793
5802
|
start_at?: string | null | undefined;
|
|
5794
5803
|
target_at?: string | null | undefined;
|
|
5795
5804
|
completed_at?: string | null | undefined;
|
|
5805
|
+
display_id_prefix?: string | null | undefined;
|
|
5796
5806
|
locked_approval_at?: string | null | undefined;
|
|
5807
|
+
assigned_to?: string | null | undefined;
|
|
5808
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5809
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5810
|
+
delivered_value?: string | null | undefined;
|
|
5797
5811
|
}[];
|
|
5798
5812
|
pageInfo: {
|
|
5799
5813
|
hasNextPage: boolean;
|
|
@@ -6673,40 +6687,22 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6673
6687
|
values?: string[] | undefined;
|
|
6674
6688
|
caseSensitive?: boolean | undefined;
|
|
6675
6689
|
} | undefined;
|
|
6676
|
-
credit_value?: {
|
|
6677
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6678
|
-
value?: number | undefined;
|
|
6679
|
-
values?: number[] | undefined;
|
|
6680
|
-
caseSensitive?: boolean | undefined;
|
|
6681
|
-
} | undefined;
|
|
6682
|
-
delivered_value?: {
|
|
6683
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6684
|
-
value?: number | undefined;
|
|
6685
|
-
values?: number[] | undefined;
|
|
6686
|
-
caseSensitive?: boolean | undefined;
|
|
6687
|
-
} | undefined;
|
|
6688
6690
|
priority?: {
|
|
6689
6691
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6690
6692
|
value?: number | undefined;
|
|
6691
6693
|
values?: number[] | undefined;
|
|
6692
6694
|
caseSensitive?: boolean | undefined;
|
|
6693
6695
|
} | undefined;
|
|
6694
|
-
approval_status?: {
|
|
6695
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6696
|
-
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
6697
|
-
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
6698
|
-
caseSensitive?: boolean | undefined;
|
|
6699
|
-
} | undefined;
|
|
6700
6696
|
is_locked?: {
|
|
6701
6697
|
value: boolean;
|
|
6702
6698
|
operator: "eq" | "ne";
|
|
6703
6699
|
values?: any[] | undefined;
|
|
6704
6700
|
caseSensitive?: boolean | undefined;
|
|
6705
6701
|
} | undefined;
|
|
6706
|
-
|
|
6707
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6708
|
-
value?:
|
|
6709
|
-
values?:
|
|
6702
|
+
credit_value?: {
|
|
6703
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6704
|
+
value?: number | undefined;
|
|
6705
|
+
values?: number[] | undefined;
|
|
6710
6706
|
caseSensitive?: boolean | undefined;
|
|
6711
6707
|
} | undefined;
|
|
6712
6708
|
start_at?: {
|
|
@@ -6757,6 +6753,24 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6757
6753
|
values?: any[] | undefined;
|
|
6758
6754
|
caseSensitive?: boolean | undefined;
|
|
6759
6755
|
} | undefined;
|
|
6756
|
+
approval_status?: {
|
|
6757
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6758
|
+
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
6759
|
+
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
6760
|
+
caseSensitive?: boolean | undefined;
|
|
6761
|
+
} | undefined;
|
|
6762
|
+
dev_lifecycle?: {
|
|
6763
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6764
|
+
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
6765
|
+
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
6766
|
+
caseSensitive?: boolean | undefined;
|
|
6767
|
+
} | undefined;
|
|
6768
|
+
delivered_value?: {
|
|
6769
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6770
|
+
value?: number | undefined;
|
|
6771
|
+
values?: number[] | undefined;
|
|
6772
|
+
caseSensitive?: boolean | undefined;
|
|
6773
|
+
} | undefined;
|
|
6760
6774
|
}, {
|
|
6761
6775
|
created_at?: {
|
|
6762
6776
|
operator: "isEmpty" | "isNotEmpty";
|
|
@@ -6829,40 +6843,22 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6829
6843
|
values?: string[] | undefined;
|
|
6830
6844
|
caseSensitive?: boolean | undefined;
|
|
6831
6845
|
} | undefined;
|
|
6832
|
-
credit_value?: {
|
|
6833
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6834
|
-
value?: number | undefined;
|
|
6835
|
-
values?: number[] | undefined;
|
|
6836
|
-
caseSensitive?: boolean | undefined;
|
|
6837
|
-
} | undefined;
|
|
6838
|
-
delivered_value?: {
|
|
6839
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6840
|
-
value?: number | undefined;
|
|
6841
|
-
values?: number[] | undefined;
|
|
6842
|
-
caseSensitive?: boolean | undefined;
|
|
6843
|
-
} | undefined;
|
|
6844
6846
|
priority?: {
|
|
6845
6847
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6846
6848
|
value?: number | undefined;
|
|
6847
6849
|
values?: number[] | undefined;
|
|
6848
6850
|
caseSensitive?: boolean | undefined;
|
|
6849
6851
|
} | undefined;
|
|
6850
|
-
approval_status?: {
|
|
6851
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6852
|
-
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
6853
|
-
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
6854
|
-
caseSensitive?: boolean | undefined;
|
|
6855
|
-
} | undefined;
|
|
6856
6852
|
is_locked?: {
|
|
6857
6853
|
value: boolean;
|
|
6858
6854
|
operator: "eq" | "ne";
|
|
6859
6855
|
values?: any[] | undefined;
|
|
6860
6856
|
caseSensitive?: boolean | undefined;
|
|
6861
6857
|
} | undefined;
|
|
6862
|
-
|
|
6863
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6864
|
-
value?:
|
|
6865
|
-
values?:
|
|
6858
|
+
credit_value?: {
|
|
6859
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6860
|
+
value?: number | undefined;
|
|
6861
|
+
values?: number[] | undefined;
|
|
6866
6862
|
caseSensitive?: boolean | undefined;
|
|
6867
6863
|
} | undefined;
|
|
6868
6864
|
start_at?: {
|
|
@@ -6913,6 +6909,24 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6913
6909
|
values?: any[] | undefined;
|
|
6914
6910
|
caseSensitive?: boolean | undefined;
|
|
6915
6911
|
} | undefined;
|
|
6912
|
+
approval_status?: {
|
|
6913
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6914
|
+
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
6915
|
+
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
6916
|
+
caseSensitive?: boolean | undefined;
|
|
6917
|
+
} | undefined;
|
|
6918
|
+
dev_lifecycle?: {
|
|
6919
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6920
|
+
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
6921
|
+
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
6922
|
+
caseSensitive?: boolean | undefined;
|
|
6923
|
+
} | undefined;
|
|
6924
|
+
delivered_value?: {
|
|
6925
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6926
|
+
value?: number | undefined;
|
|
6927
|
+
values?: number[] | undefined;
|
|
6928
|
+
caseSensitive?: boolean | undefined;
|
|
6929
|
+
} | undefined;
|
|
6916
6930
|
}>;
|
|
6917
6931
|
type StaffSupportTicketFiltersDto = z.infer<typeof StaffSupportTicketFiltersSchema>;
|
|
6918
6932
|
//#endregion
|
|
@@ -6938,12 +6952,12 @@ declare const StaffSupportTicketCreateSchema: z.ZodObject<{
|
|
|
6938
6952
|
description?: string | null | undefined;
|
|
6939
6953
|
is_internal?: boolean | undefined;
|
|
6940
6954
|
credit_value?: string | null | undefined;
|
|
6941
|
-
delivered_value?: string | null | undefined;
|
|
6942
|
-
assigned_to?: string | null | undefined;
|
|
6943
|
-
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6944
6955
|
start_at?: string | null | undefined;
|
|
6945
6956
|
target_at?: string | null | undefined;
|
|
6946
6957
|
completed_at?: string | null | undefined;
|
|
6958
|
+
assigned_to?: string | null | undefined;
|
|
6959
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6960
|
+
delivered_value?: string | null | undefined;
|
|
6947
6961
|
}, {
|
|
6948
6962
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6949
6963
|
title: string;
|
|
@@ -6951,12 +6965,12 @@ declare const StaffSupportTicketCreateSchema: z.ZodObject<{
|
|
|
6951
6965
|
description?: string | null | undefined;
|
|
6952
6966
|
is_internal?: boolean | undefined;
|
|
6953
6967
|
credit_value?: string | null | undefined;
|
|
6954
|
-
delivered_value?: string | null | undefined;
|
|
6955
|
-
assigned_to?: string | null | undefined;
|
|
6956
|
-
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6957
6968
|
start_at?: string | null | undefined;
|
|
6958
6969
|
target_at?: string | null | undefined;
|
|
6959
6970
|
completed_at?: string | null | undefined;
|
|
6971
|
+
assigned_to?: string | null | undefined;
|
|
6972
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6973
|
+
delivered_value?: string | null | undefined;
|
|
6960
6974
|
}>;
|
|
6961
6975
|
type StaffSupportTicketCreateDto = z.infer<typeof StaffSupportTicketCreateSchema>;
|
|
6962
6976
|
declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
|
|
@@ -6980,12 +6994,12 @@ declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
|
|
|
6980
6994
|
priority: number;
|
|
6981
6995
|
description?: string | null | undefined;
|
|
6982
6996
|
credit_value?: string | null | undefined;
|
|
6983
|
-
delivered_value?: string | null | undefined;
|
|
6984
|
-
assigned_to?: string | null | undefined;
|
|
6985
|
-
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6986
6997
|
start_at?: string | null | undefined;
|
|
6987
6998
|
target_at?: string | null | undefined;
|
|
6988
6999
|
completed_at?: string | null | undefined;
|
|
7000
|
+
assigned_to?: string | null | undefined;
|
|
7001
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
7002
|
+
delivered_value?: string | null | undefined;
|
|
6989
7003
|
}, {
|
|
6990
7004
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6991
7005
|
id: string;
|
|
@@ -6993,12 +7007,12 @@ declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
|
|
|
6993
7007
|
priority: number;
|
|
6994
7008
|
description?: string | null | undefined;
|
|
6995
7009
|
credit_value?: string | null | undefined;
|
|
6996
|
-
delivered_value?: string | null | undefined;
|
|
6997
|
-
assigned_to?: string | null | undefined;
|
|
6998
|
-
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6999
7010
|
start_at?: string | null | undefined;
|
|
7000
7011
|
target_at?: string | null | undefined;
|
|
7001
7012
|
completed_at?: string | null | undefined;
|
|
7013
|
+
assigned_to?: string | null | undefined;
|
|
7014
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
7015
|
+
delivered_value?: string | null | undefined;
|
|
7002
7016
|
}>;
|
|
7003
7017
|
type StaffSupportTicketUpdateDto = z.infer<typeof StaffSupportTicketUpdateSchema>;
|
|
7004
7018
|
declare const StaffSupportTicketInputSchema: z.ZodObject<{
|
|
@@ -7022,12 +7036,12 @@ declare const StaffSupportTicketInputSchema: z.ZodObject<{
|
|
|
7022
7036
|
priority: number;
|
|
7023
7037
|
description?: string | null | undefined;
|
|
7024
7038
|
credit_value?: string | null | undefined;
|
|
7025
|
-
delivered_value?: string | null | undefined;
|
|
7026
|
-
assigned_to?: string | null | undefined;
|
|
7027
|
-
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
7028
7039
|
start_at?: string | null | undefined;
|
|
7029
7040
|
target_at?: string | null | undefined;
|
|
7030
7041
|
completed_at?: string | null | undefined;
|
|
7042
|
+
assigned_to?: string | null | undefined;
|
|
7043
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
7044
|
+
delivered_value?: string | null | undefined;
|
|
7031
7045
|
}, {
|
|
7032
7046
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
7033
7047
|
id: string;
|
|
@@ -7035,12 +7049,12 @@ declare const StaffSupportTicketInputSchema: z.ZodObject<{
|
|
|
7035
7049
|
priority: number;
|
|
7036
7050
|
description?: string | null | undefined;
|
|
7037
7051
|
credit_value?: string | null | undefined;
|
|
7038
|
-
delivered_value?: string | null | undefined;
|
|
7039
|
-
assigned_to?: string | null | undefined;
|
|
7040
|
-
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
7041
7052
|
start_at?: string | null | undefined;
|
|
7042
7053
|
target_at?: string | null | undefined;
|
|
7043
7054
|
completed_at?: string | null | undefined;
|
|
7055
|
+
assigned_to?: string | null | undefined;
|
|
7056
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
7057
|
+
delivered_value?: string | null | undefined;
|
|
7044
7058
|
}>;
|
|
7045
7059
|
type StaffSupportTicketInputDto = StaffSupportTicketUpdateDto;
|
|
7046
7060
|
//#endregion
|
|
@@ -7907,14 +7921,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
7907
7921
|
url?: string | null | undefined;
|
|
7908
7922
|
unique_name?: string | null | undefined;
|
|
7909
7923
|
legal_name?: string | null | undefined;
|
|
7910
|
-
contact_email?: string | null | undefined;
|
|
7911
|
-
address_city?: string | null | undefined;
|
|
7912
|
-
address_zip?: string | null | undefined;
|
|
7913
7924
|
contact_name?: string | null | undefined;
|
|
7925
|
+
contact_email?: string | null | undefined;
|
|
7914
7926
|
contact_business_phone?: string | null | undefined;
|
|
7915
7927
|
contact_mobile_phone?: string | null | undefined;
|
|
7916
7928
|
contact_time_zone?: string | null | undefined;
|
|
7917
7929
|
address_full?: string | null | undefined;
|
|
7930
|
+
address_city?: string | null | undefined;
|
|
7931
|
+
address_zip?: string | null | undefined;
|
|
7918
7932
|
twitter_username?: string | null | undefined;
|
|
7919
7933
|
logo?: string | null | undefined;
|
|
7920
7934
|
email_sent_from?: string | null | undefined;
|
|
@@ -7925,14 +7939,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
7925
7939
|
url?: string | null | undefined;
|
|
7926
7940
|
unique_name?: string | null | undefined;
|
|
7927
7941
|
legal_name?: string | null | undefined;
|
|
7928
|
-
contact_email?: string | null | undefined;
|
|
7929
|
-
address_city?: string | null | undefined;
|
|
7930
|
-
address_zip?: string | null | undefined;
|
|
7931
7942
|
contact_name?: string | null | undefined;
|
|
7943
|
+
contact_email?: string | null | undefined;
|
|
7932
7944
|
contact_business_phone?: string | null | undefined;
|
|
7933
7945
|
contact_mobile_phone?: string | null | undefined;
|
|
7934
7946
|
contact_time_zone?: string | null | undefined;
|
|
7935
7947
|
address_full?: string | null | undefined;
|
|
7948
|
+
address_city?: string | null | undefined;
|
|
7949
|
+
address_zip?: string | null | undefined;
|
|
7936
7950
|
twitter_username?: string | null | undefined;
|
|
7937
7951
|
logo?: string | null | undefined;
|
|
7938
7952
|
email_sent_from?: string | null | undefined;
|
|
@@ -7962,14 +7976,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7962
7976
|
url?: string | null | undefined;
|
|
7963
7977
|
unique_name?: string | null | undefined;
|
|
7964
7978
|
legal_name?: string | null | undefined;
|
|
7965
|
-
contact_email?: string | null | undefined;
|
|
7966
|
-
address_city?: string | null | undefined;
|
|
7967
|
-
address_zip?: string | null | undefined;
|
|
7968
7979
|
contact_name?: string | null | undefined;
|
|
7980
|
+
contact_email?: string | null | undefined;
|
|
7969
7981
|
contact_business_phone?: string | null | undefined;
|
|
7970
7982
|
contact_mobile_phone?: string | null | undefined;
|
|
7971
7983
|
contact_time_zone?: string | null | undefined;
|
|
7972
7984
|
address_full?: string | null | undefined;
|
|
7985
|
+
address_city?: string | null | undefined;
|
|
7986
|
+
address_zip?: string | null | undefined;
|
|
7973
7987
|
twitter_username?: string | null | undefined;
|
|
7974
7988
|
logo?: string | null | undefined;
|
|
7975
7989
|
email_sent_from?: string | null | undefined;
|
|
@@ -7980,14 +7994,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7980
7994
|
url?: string | null | undefined;
|
|
7981
7995
|
unique_name?: string | null | undefined;
|
|
7982
7996
|
legal_name?: string | null | undefined;
|
|
7983
|
-
contact_email?: string | null | undefined;
|
|
7984
|
-
address_city?: string | null | undefined;
|
|
7985
|
-
address_zip?: string | null | undefined;
|
|
7986
7997
|
contact_name?: string | null | undefined;
|
|
7998
|
+
contact_email?: string | null | undefined;
|
|
7987
7999
|
contact_business_phone?: string | null | undefined;
|
|
7988
8000
|
contact_mobile_phone?: string | null | undefined;
|
|
7989
8001
|
contact_time_zone?: string | null | undefined;
|
|
7990
8002
|
address_full?: string | null | undefined;
|
|
8003
|
+
address_city?: string | null | undefined;
|
|
8004
|
+
address_zip?: string | null | undefined;
|
|
7991
8005
|
twitter_username?: string | null | undefined;
|
|
7992
8006
|
logo?: string | null | undefined;
|
|
7993
8007
|
email_sent_from?: string | null | undefined;
|
|
@@ -8021,14 +8035,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8021
8035
|
url?: string | null | undefined;
|
|
8022
8036
|
unique_name?: string | null | undefined;
|
|
8023
8037
|
legal_name?: string | null | undefined;
|
|
8024
|
-
contact_email?: string | null | undefined;
|
|
8025
|
-
address_city?: string | null | undefined;
|
|
8026
|
-
address_zip?: string | null | undefined;
|
|
8027
8038
|
contact_name?: string | null | undefined;
|
|
8039
|
+
contact_email?: string | null | undefined;
|
|
8028
8040
|
contact_business_phone?: string | null | undefined;
|
|
8029
8041
|
contact_mobile_phone?: string | null | undefined;
|
|
8030
8042
|
contact_time_zone?: string | null | undefined;
|
|
8031
8043
|
address_full?: string | null | undefined;
|
|
8044
|
+
address_city?: string | null | undefined;
|
|
8045
|
+
address_zip?: string | null | undefined;
|
|
8032
8046
|
twitter_username?: string | null | undefined;
|
|
8033
8047
|
logo?: string | null | undefined;
|
|
8034
8048
|
email_sent_from?: string | null | undefined;
|
|
@@ -8040,14 +8054,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8040
8054
|
url?: string | null | undefined;
|
|
8041
8055
|
unique_name?: string | null | undefined;
|
|
8042
8056
|
legal_name?: string | null | undefined;
|
|
8043
|
-
contact_email?: string | null | undefined;
|
|
8044
|
-
address_city?: string | null | undefined;
|
|
8045
|
-
address_zip?: string | null | undefined;
|
|
8046
8057
|
contact_name?: string | null | undefined;
|
|
8058
|
+
contact_email?: string | null | undefined;
|
|
8047
8059
|
contact_business_phone?: string | null | undefined;
|
|
8048
8060
|
contact_mobile_phone?: string | null | undefined;
|
|
8049
8061
|
contact_time_zone?: string | null | undefined;
|
|
8050
8062
|
address_full?: string | null | undefined;
|
|
8063
|
+
address_city?: string | null | undefined;
|
|
8064
|
+
address_zip?: string | null | undefined;
|
|
8051
8065
|
twitter_username?: string | null | undefined;
|
|
8052
8066
|
logo?: string | null | undefined;
|
|
8053
8067
|
email_sent_from?: string | null | undefined;
|
|
@@ -8105,14 +8119,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8105
8119
|
updated_by_display_name?: string | null | undefined;
|
|
8106
8120
|
unique_name?: string | null | undefined;
|
|
8107
8121
|
legal_name?: string | null | undefined;
|
|
8108
|
-
contact_email?: string | null | undefined;
|
|
8109
|
-
address_city?: string | null | undefined;
|
|
8110
|
-
address_zip?: string | null | undefined;
|
|
8111
8122
|
contact_name?: string | null | undefined;
|
|
8123
|
+
contact_email?: string | null | undefined;
|
|
8112
8124
|
contact_business_phone?: string | null | undefined;
|
|
8113
8125
|
contact_mobile_phone?: string | null | undefined;
|
|
8114
8126
|
contact_time_zone?: string | null | undefined;
|
|
8115
8127
|
address_full?: string | null | undefined;
|
|
8128
|
+
address_city?: string | null | undefined;
|
|
8129
|
+
address_zip?: string | null | undefined;
|
|
8116
8130
|
twitter_username?: string | null | undefined;
|
|
8117
8131
|
logo?: string | null | undefined;
|
|
8118
8132
|
email_sent_from?: string | null | undefined;
|
|
@@ -8135,14 +8149,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8135
8149
|
updated_by_display_name?: string | null | undefined;
|
|
8136
8150
|
unique_name?: string | null | undefined;
|
|
8137
8151
|
legal_name?: string | null | undefined;
|
|
8138
|
-
contact_email?: string | null | undefined;
|
|
8139
|
-
address_city?: string | null | undefined;
|
|
8140
|
-
address_zip?: string | null | undefined;
|
|
8141
8152
|
contact_name?: string | null | undefined;
|
|
8153
|
+
contact_email?: string | null | undefined;
|
|
8142
8154
|
contact_business_phone?: string | null | undefined;
|
|
8143
8155
|
contact_mobile_phone?: string | null | undefined;
|
|
8144
8156
|
contact_time_zone?: string | null | undefined;
|
|
8145
8157
|
address_full?: string | null | undefined;
|
|
8158
|
+
address_city?: string | null | undefined;
|
|
8159
|
+
address_zip?: string | null | undefined;
|
|
8146
8160
|
twitter_username?: string | null | undefined;
|
|
8147
8161
|
logo?: string | null | undefined;
|
|
8148
8162
|
email_sent_from?: string | null | undefined;
|
|
@@ -8189,14 +8203,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8189
8203
|
updated_by_display_name?: string | null | undefined;
|
|
8190
8204
|
unique_name?: string | null | undefined;
|
|
8191
8205
|
legal_name?: string | null | undefined;
|
|
8192
|
-
contact_email?: string | null | undefined;
|
|
8193
|
-
address_city?: string | null | undefined;
|
|
8194
|
-
address_zip?: string | null | undefined;
|
|
8195
8206
|
contact_name?: string | null | undefined;
|
|
8207
|
+
contact_email?: string | null | undefined;
|
|
8196
8208
|
contact_business_phone?: string | null | undefined;
|
|
8197
8209
|
contact_mobile_phone?: string | null | undefined;
|
|
8198
8210
|
contact_time_zone?: string | null | undefined;
|
|
8199
8211
|
address_full?: string | null | undefined;
|
|
8212
|
+
address_city?: string | null | undefined;
|
|
8213
|
+
address_zip?: string | null | undefined;
|
|
8200
8214
|
twitter_username?: string | null | undefined;
|
|
8201
8215
|
logo?: string | null | undefined;
|
|
8202
8216
|
email_sent_from?: string | null | undefined;
|
|
@@ -8229,14 +8243,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8229
8243
|
updated_by_display_name?: string | null | undefined;
|
|
8230
8244
|
unique_name?: string | null | undefined;
|
|
8231
8245
|
legal_name?: string | null | undefined;
|
|
8232
|
-
contact_email?: string | null | undefined;
|
|
8233
|
-
address_city?: string | null | undefined;
|
|
8234
|
-
address_zip?: string | null | undefined;
|
|
8235
8246
|
contact_name?: string | null | undefined;
|
|
8247
|
+
contact_email?: string | null | undefined;
|
|
8236
8248
|
contact_business_phone?: string | null | undefined;
|
|
8237
8249
|
contact_mobile_phone?: string | null | undefined;
|
|
8238
8250
|
contact_time_zone?: string | null | undefined;
|
|
8239
8251
|
address_full?: string | null | undefined;
|
|
8252
|
+
address_city?: string | null | undefined;
|
|
8253
|
+
address_zip?: string | null | undefined;
|
|
8240
8254
|
twitter_username?: string | null | undefined;
|
|
8241
8255
|
logo?: string | null | undefined;
|
|
8242
8256
|
email_sent_from?: string | null | undefined;
|
|
@@ -8303,14 +8317,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8303
8317
|
updated_by_display_name?: string | null | undefined;
|
|
8304
8318
|
unique_name?: string | null | undefined;
|
|
8305
8319
|
legal_name?: string | null | undefined;
|
|
8306
|
-
contact_email?: string | null | undefined;
|
|
8307
|
-
address_city?: string | null | undefined;
|
|
8308
|
-
address_zip?: string | null | undefined;
|
|
8309
8320
|
contact_name?: string | null | undefined;
|
|
8321
|
+
contact_email?: string | null | undefined;
|
|
8310
8322
|
contact_business_phone?: string | null | undefined;
|
|
8311
8323
|
contact_mobile_phone?: string | null | undefined;
|
|
8312
8324
|
contact_time_zone?: string | null | undefined;
|
|
8313
8325
|
address_full?: string | null | undefined;
|
|
8326
|
+
address_city?: string | null | undefined;
|
|
8327
|
+
address_zip?: string | null | undefined;
|
|
8314
8328
|
twitter_username?: string | null | undefined;
|
|
8315
8329
|
logo?: string | null | undefined;
|
|
8316
8330
|
email_sent_from?: string | null | undefined;
|
|
@@ -8333,14 +8347,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8333
8347
|
updated_by_display_name?: string | null | undefined;
|
|
8334
8348
|
unique_name?: string | null | undefined;
|
|
8335
8349
|
legal_name?: string | null | undefined;
|
|
8336
|
-
contact_email?: string | null | undefined;
|
|
8337
|
-
address_city?: string | null | undefined;
|
|
8338
|
-
address_zip?: string | null | undefined;
|
|
8339
8350
|
contact_name?: string | null | undefined;
|
|
8351
|
+
contact_email?: string | null | undefined;
|
|
8340
8352
|
contact_business_phone?: string | null | undefined;
|
|
8341
8353
|
contact_mobile_phone?: string | null | undefined;
|
|
8342
8354
|
contact_time_zone?: string | null | undefined;
|
|
8343
8355
|
address_full?: string | null | undefined;
|
|
8356
|
+
address_city?: string | null | undefined;
|
|
8357
|
+
address_zip?: string | null | undefined;
|
|
8344
8358
|
twitter_username?: string | null | undefined;
|
|
8345
8359
|
logo?: string | null | undefined;
|
|
8346
8360
|
email_sent_from?: string | null | undefined;
|
|
@@ -8420,14 +8434,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8420
8434
|
updated_by_display_name?: string | null | undefined;
|
|
8421
8435
|
unique_name?: string | null | undefined;
|
|
8422
8436
|
legal_name?: string | null | undefined;
|
|
8423
|
-
contact_email?: string | null | undefined;
|
|
8424
|
-
address_city?: string | null | undefined;
|
|
8425
|
-
address_zip?: string | null | undefined;
|
|
8426
8437
|
contact_name?: string | null | undefined;
|
|
8438
|
+
contact_email?: string | null | undefined;
|
|
8427
8439
|
contact_business_phone?: string | null | undefined;
|
|
8428
8440
|
contact_mobile_phone?: string | null | undefined;
|
|
8429
8441
|
contact_time_zone?: string | null | undefined;
|
|
8430
8442
|
address_full?: string | null | undefined;
|
|
8443
|
+
address_city?: string | null | undefined;
|
|
8444
|
+
address_zip?: string | null | undefined;
|
|
8431
8445
|
twitter_username?: string | null | undefined;
|
|
8432
8446
|
logo?: string | null | undefined;
|
|
8433
8447
|
email_sent_from?: string | null | undefined;
|
|
@@ -8450,14 +8464,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8450
8464
|
updated_by_display_name?: string | null | undefined;
|
|
8451
8465
|
unique_name?: string | null | undefined;
|
|
8452
8466
|
legal_name?: string | null | undefined;
|
|
8453
|
-
contact_email?: string | null | undefined;
|
|
8454
|
-
address_city?: string | null | undefined;
|
|
8455
|
-
address_zip?: string | null | undefined;
|
|
8456
8467
|
contact_name?: string | null | undefined;
|
|
8468
|
+
contact_email?: string | null | undefined;
|
|
8457
8469
|
contact_business_phone?: string | null | undefined;
|
|
8458
8470
|
contact_mobile_phone?: string | null | undefined;
|
|
8459
8471
|
contact_time_zone?: string | null | undefined;
|
|
8460
8472
|
address_full?: string | null | undefined;
|
|
8473
|
+
address_city?: string | null | undefined;
|
|
8474
|
+
address_zip?: string | null | undefined;
|
|
8461
8475
|
twitter_username?: string | null | undefined;
|
|
8462
8476
|
logo?: string | null | undefined;
|
|
8463
8477
|
email_sent_from?: string | null | undefined;
|
|
@@ -8517,14 +8531,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8517
8531
|
updated_by_display_name?: string | null | undefined;
|
|
8518
8532
|
unique_name?: string | null | undefined;
|
|
8519
8533
|
legal_name?: string | null | undefined;
|
|
8520
|
-
contact_email?: string | null | undefined;
|
|
8521
|
-
address_city?: string | null | undefined;
|
|
8522
|
-
address_zip?: string | null | undefined;
|
|
8523
8534
|
contact_name?: string | null | undefined;
|
|
8535
|
+
contact_email?: string | null | undefined;
|
|
8524
8536
|
contact_business_phone?: string | null | undefined;
|
|
8525
8537
|
contact_mobile_phone?: string | null | undefined;
|
|
8526
8538
|
contact_time_zone?: string | null | undefined;
|
|
8527
8539
|
address_full?: string | null | undefined;
|
|
8540
|
+
address_city?: string | null | undefined;
|
|
8541
|
+
address_zip?: string | null | undefined;
|
|
8528
8542
|
twitter_username?: string | null | undefined;
|
|
8529
8543
|
logo?: string | null | undefined;
|
|
8530
8544
|
email_sent_from?: string | null | undefined;
|
|
@@ -8547,14 +8561,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8547
8561
|
updated_by_display_name?: string | null | undefined;
|
|
8548
8562
|
unique_name?: string | null | undefined;
|
|
8549
8563
|
legal_name?: string | null | undefined;
|
|
8550
|
-
contact_email?: string | null | undefined;
|
|
8551
|
-
address_city?: string | null | undefined;
|
|
8552
|
-
address_zip?: string | null | undefined;
|
|
8553
8564
|
contact_name?: string | null | undefined;
|
|
8565
|
+
contact_email?: string | null | undefined;
|
|
8554
8566
|
contact_business_phone?: string | null | undefined;
|
|
8555
8567
|
contact_mobile_phone?: string | null | undefined;
|
|
8556
8568
|
contact_time_zone?: string | null | undefined;
|
|
8557
8569
|
address_full?: string | null | undefined;
|
|
8570
|
+
address_city?: string | null | undefined;
|
|
8571
|
+
address_zip?: string | null | undefined;
|
|
8558
8572
|
twitter_username?: string | null | undefined;
|
|
8559
8573
|
logo?: string | null | undefined;
|
|
8560
8574
|
email_sent_from?: string | null | undefined;
|
|
@@ -8579,14 +8593,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8579
8593
|
updated_by_display_name?: string | null | undefined;
|
|
8580
8594
|
unique_name?: string | null | undefined;
|
|
8581
8595
|
legal_name?: string | null | undefined;
|
|
8582
|
-
contact_email?: string | null | undefined;
|
|
8583
|
-
address_city?: string | null | undefined;
|
|
8584
|
-
address_zip?: string | null | undefined;
|
|
8585
8596
|
contact_name?: string | null | undefined;
|
|
8597
|
+
contact_email?: string | null | undefined;
|
|
8586
8598
|
contact_business_phone?: string | null | undefined;
|
|
8587
8599
|
contact_mobile_phone?: string | null | undefined;
|
|
8588
8600
|
contact_time_zone?: string | null | undefined;
|
|
8589
8601
|
address_full?: string | null | undefined;
|
|
8602
|
+
address_city?: string | null | undefined;
|
|
8603
|
+
address_zip?: string | null | undefined;
|
|
8590
8604
|
twitter_username?: string | null | undefined;
|
|
8591
8605
|
logo?: string | null | undefined;
|
|
8592
8606
|
email_sent_from?: string | null | undefined;
|
|
@@ -8611,14 +8625,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8611
8625
|
updated_by_display_name?: string | null | undefined;
|
|
8612
8626
|
unique_name?: string | null | undefined;
|
|
8613
8627
|
legal_name?: string | null | undefined;
|
|
8614
|
-
contact_email?: string | null | undefined;
|
|
8615
|
-
address_city?: string | null | undefined;
|
|
8616
|
-
address_zip?: string | null | undefined;
|
|
8617
8628
|
contact_name?: string | null | undefined;
|
|
8629
|
+
contact_email?: string | null | undefined;
|
|
8618
8630
|
contact_business_phone?: string | null | undefined;
|
|
8619
8631
|
contact_mobile_phone?: string | null | undefined;
|
|
8620
8632
|
contact_time_zone?: string | null | undefined;
|
|
8621
8633
|
address_full?: string | null | undefined;
|
|
8634
|
+
address_city?: string | null | undefined;
|
|
8635
|
+
address_zip?: string | null | undefined;
|
|
8622
8636
|
twitter_username?: string | null | undefined;
|
|
8623
8637
|
logo?: string | null | undefined;
|
|
8624
8638
|
email_sent_from?: string | null | undefined;
|
|
@@ -10083,6 +10097,14 @@ interface AttachmentApi {
|
|
|
10083
10097
|
* List attachments with filters
|
|
10084
10098
|
*/
|
|
10085
10099
|
listAttachments(filters: AttachmentFiltersDto): Promise<AttachmentPageDto>;
|
|
10100
|
+
/**
|
|
10101
|
+
* Update attachment metadata (title, description)
|
|
10102
|
+
*/
|
|
10103
|
+
updateAttachment(input: {
|
|
10104
|
+
id: string;
|
|
10105
|
+
title?: string | null;
|
|
10106
|
+
description?: string | null;
|
|
10107
|
+
}): Promise<AttachmentReadDto>;
|
|
10086
10108
|
/**
|
|
10087
10109
|
* Delete an attachment
|
|
10088
10110
|
*/
|