@kl1/contracts 1.0.16 → 1.0.17

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.
@@ -1,4 +1,242 @@
1
1
  import z from 'zod';
2
+ export declare const TicketCustomFieldSchema: z.ZodObject<{
3
+ id: z.ZodString;
4
+ createdAt: z.ZodDate;
5
+ updatedAt: z.ZodDate;
6
+ deletedAt: z.ZodNullable<z.ZodDate>;
7
+ textValue: z.ZodNullable<z.ZodString>;
8
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
9
+ numberValue: z.ZodNullable<z.ZodNumber>;
10
+ dateValue: z.ZodNullable<z.ZodDate>;
11
+ attribute: z.ZodObject<Omit<{
12
+ id: z.ZodString;
13
+ createdAt: z.ZodDate;
14
+ updatedAt: z.ZodDate;
15
+ deletedAt: z.ZodNullable<z.ZodDate>;
16
+ systemName: z.ZodString;
17
+ displayName: z.ZodString;
18
+ type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
19
+ position: z.ZodNumber;
20
+ isDefault: z.ZodBoolean;
21
+ isArchived: z.ZodBoolean;
22
+ isRequired: z.ZodBoolean;
23
+ isUnique: z.ZodBoolean;
24
+ options: z.ZodArray<z.ZodObject<{
25
+ position: z.ZodNumber;
26
+ value: z.ZodString;
27
+ label: z.ZodString;
28
+ isDefault: z.ZodBoolean;
29
+ id: z.ZodString;
30
+ }, "strip", z.ZodTypeAny, {
31
+ id: string;
32
+ position: number;
33
+ value: string;
34
+ label: string;
35
+ isDefault: boolean;
36
+ }, {
37
+ id: string;
38
+ position: number;
39
+ value: string;
40
+ label: string;
41
+ isDefault: boolean;
42
+ }>, "many">;
43
+ group: z.ZodObject<{
44
+ id: z.ZodString;
45
+ createdAt: z.ZodDate;
46
+ updatedAt: z.ZodDate;
47
+ deletedAt: z.ZodNullable<z.ZodDate>;
48
+ systemName: z.ZodString;
49
+ displayName: z.ZodString;
50
+ }, "strip", z.ZodTypeAny, {
51
+ id: string;
52
+ createdAt: Date;
53
+ updatedAt: Date;
54
+ deletedAt: Date | null;
55
+ systemName: string;
56
+ displayName: string;
57
+ }, {
58
+ id: string;
59
+ createdAt: Date;
60
+ updatedAt: Date;
61
+ deletedAt: Date | null;
62
+ systemName: string;
63
+ displayName: string;
64
+ }>;
65
+ }, "options" | "group">, "strip", z.ZodTypeAny, {
66
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
67
+ id: string;
68
+ position: number;
69
+ createdAt: Date;
70
+ updatedAt: Date;
71
+ deletedAt: Date | null;
72
+ isDefault: boolean;
73
+ systemName: string;
74
+ displayName: string;
75
+ isArchived: boolean;
76
+ isRequired: boolean;
77
+ isUnique: boolean;
78
+ }, {
79
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
80
+ id: string;
81
+ position: number;
82
+ createdAt: Date;
83
+ updatedAt: Date;
84
+ deletedAt: Date | null;
85
+ isDefault: boolean;
86
+ systemName: string;
87
+ displayName: string;
88
+ isArchived: boolean;
89
+ isRequired: boolean;
90
+ isUnique: boolean;
91
+ }>;
92
+ uploads: z.ZodArray<z.ZodObject<{
93
+ id: z.ZodString;
94
+ createdAt: z.ZodDate;
95
+ updatedAt: z.ZodDate;
96
+ deletedAt: z.ZodNullable<z.ZodDate>;
97
+ customFieldId: z.ZodString;
98
+ upload: z.ZodObject<{
99
+ id: z.ZodString;
100
+ createdAt: z.ZodDate;
101
+ updatedAt: z.ZodDate;
102
+ deletedAt: z.ZodNullable<z.ZodDate>;
103
+ bucketName: z.ZodString;
104
+ fileName: z.ZodString;
105
+ fileSize: z.ZodNumber;
106
+ fileKey: z.ZodString;
107
+ }, "strip", z.ZodTypeAny, {
108
+ id: string;
109
+ createdAt: Date;
110
+ updatedAt: Date;
111
+ deletedAt: Date | null;
112
+ fileName: string;
113
+ fileKey: string;
114
+ bucketName: string;
115
+ fileSize: number;
116
+ }, {
117
+ id: string;
118
+ createdAt: Date;
119
+ updatedAt: Date;
120
+ deletedAt: Date | null;
121
+ fileName: string;
122
+ fileKey: string;
123
+ bucketName: string;
124
+ fileSize: number;
125
+ }>;
126
+ }, "strip", z.ZodTypeAny, {
127
+ id: string;
128
+ createdAt: Date;
129
+ updatedAt: Date;
130
+ deletedAt: Date | null;
131
+ customFieldId: string;
132
+ upload: {
133
+ id: string;
134
+ createdAt: Date;
135
+ updatedAt: Date;
136
+ deletedAt: Date | null;
137
+ fileName: string;
138
+ fileKey: string;
139
+ bucketName: string;
140
+ fileSize: number;
141
+ };
142
+ }, {
143
+ id: string;
144
+ createdAt: Date;
145
+ updatedAt: Date;
146
+ deletedAt: Date | null;
147
+ customFieldId: string;
148
+ upload: {
149
+ id: string;
150
+ createdAt: Date;
151
+ updatedAt: Date;
152
+ deletedAt: Date | null;
153
+ fileName: string;
154
+ fileKey: string;
155
+ bucketName: string;
156
+ fileSize: number;
157
+ };
158
+ }>, "many">;
159
+ }, "strip", z.ZodTypeAny, {
160
+ id: string;
161
+ createdAt: Date;
162
+ updatedAt: Date;
163
+ deletedAt: Date | null;
164
+ attribute: {
165
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
166
+ id: string;
167
+ position: number;
168
+ createdAt: Date;
169
+ updatedAt: Date;
170
+ deletedAt: Date | null;
171
+ isDefault: boolean;
172
+ systemName: string;
173
+ displayName: string;
174
+ isArchived: boolean;
175
+ isRequired: boolean;
176
+ isUnique: boolean;
177
+ };
178
+ textValue: string | null;
179
+ booleanValue: boolean | null;
180
+ numberValue: number | null;
181
+ dateValue: Date | null;
182
+ uploads: {
183
+ id: string;
184
+ createdAt: Date;
185
+ updatedAt: Date;
186
+ deletedAt: Date | null;
187
+ customFieldId: string;
188
+ upload: {
189
+ id: string;
190
+ createdAt: Date;
191
+ updatedAt: Date;
192
+ deletedAt: Date | null;
193
+ fileName: string;
194
+ fileKey: string;
195
+ bucketName: string;
196
+ fileSize: number;
197
+ };
198
+ }[];
199
+ }, {
200
+ id: string;
201
+ createdAt: Date;
202
+ updatedAt: Date;
203
+ deletedAt: Date | null;
204
+ attribute: {
205
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
206
+ id: string;
207
+ position: number;
208
+ createdAt: Date;
209
+ updatedAt: Date;
210
+ deletedAt: Date | null;
211
+ isDefault: boolean;
212
+ systemName: string;
213
+ displayName: string;
214
+ isArchived: boolean;
215
+ isRequired: boolean;
216
+ isUnique: boolean;
217
+ };
218
+ textValue: string | null;
219
+ booleanValue: boolean | null;
220
+ numberValue: number | null;
221
+ dateValue: Date | null;
222
+ uploads: {
223
+ id: string;
224
+ createdAt: Date;
225
+ updatedAt: Date;
226
+ deletedAt: Date | null;
227
+ customFieldId: string;
228
+ upload: {
229
+ id: string;
230
+ createdAt: Date;
231
+ updatedAt: Date;
232
+ deletedAt: Date | null;
233
+ fileName: string;
234
+ fileKey: string;
235
+ bucketName: string;
236
+ fileSize: number;
237
+ };
238
+ }[];
239
+ }>;
2
240
  export declare const TicketSchema: z.ZodObject<{
3
241
  id: z.ZodString;
4
242
  createdAt: z.ZodDate;
@@ -14,7 +252,245 @@ export declare const TicketSchema: z.ZodObject<{
14
252
  creatorId: z.ZodString;
15
253
  assigneeId: z.ZodString;
16
254
  reasonToAssign: z.ZodNullable<z.ZodString>;
17
- ticketNumber: z.ZodNumber;
255
+ ticketNumber: z.ZodOptional<z.ZodNumber>;
256
+ customFields: z.ZodArray<z.ZodObject<{
257
+ id: z.ZodString;
258
+ createdAt: z.ZodDate;
259
+ updatedAt: z.ZodDate;
260
+ deletedAt: z.ZodNullable<z.ZodDate>;
261
+ textValue: z.ZodNullable<z.ZodString>;
262
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
263
+ numberValue: z.ZodNullable<z.ZodNumber>;
264
+ dateValue: z.ZodNullable<z.ZodDate>;
265
+ attribute: z.ZodObject<Omit<{
266
+ id: z.ZodString;
267
+ createdAt: z.ZodDate;
268
+ updatedAt: z.ZodDate;
269
+ deletedAt: z.ZodNullable<z.ZodDate>;
270
+ systemName: z.ZodString;
271
+ displayName: z.ZodString;
272
+ type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
273
+ position: z.ZodNumber;
274
+ isDefault: z.ZodBoolean;
275
+ isArchived: z.ZodBoolean;
276
+ isRequired: z.ZodBoolean;
277
+ isUnique: z.ZodBoolean;
278
+ options: z.ZodArray<z.ZodObject<{
279
+ position: z.ZodNumber;
280
+ value: z.ZodString;
281
+ label: z.ZodString;
282
+ isDefault: z.ZodBoolean;
283
+ id: z.ZodString;
284
+ }, "strip", z.ZodTypeAny, {
285
+ id: string;
286
+ position: number;
287
+ value: string;
288
+ label: string;
289
+ isDefault: boolean;
290
+ }, {
291
+ id: string;
292
+ position: number;
293
+ value: string;
294
+ label: string;
295
+ isDefault: boolean;
296
+ }>, "many">;
297
+ group: z.ZodObject<{
298
+ id: z.ZodString;
299
+ createdAt: z.ZodDate;
300
+ updatedAt: z.ZodDate;
301
+ deletedAt: z.ZodNullable<z.ZodDate>;
302
+ systemName: z.ZodString;
303
+ displayName: z.ZodString;
304
+ }, "strip", z.ZodTypeAny, {
305
+ id: string;
306
+ createdAt: Date;
307
+ updatedAt: Date;
308
+ deletedAt: Date | null;
309
+ systemName: string;
310
+ displayName: string;
311
+ }, {
312
+ id: string;
313
+ createdAt: Date;
314
+ updatedAt: Date;
315
+ deletedAt: Date | null;
316
+ systemName: string;
317
+ displayName: string;
318
+ }>;
319
+ }, "options" | "group">, "strip", z.ZodTypeAny, {
320
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
321
+ id: string;
322
+ position: number;
323
+ createdAt: Date;
324
+ updatedAt: Date;
325
+ deletedAt: Date | null;
326
+ isDefault: boolean;
327
+ systemName: string;
328
+ displayName: string;
329
+ isArchived: boolean;
330
+ isRequired: boolean;
331
+ isUnique: boolean;
332
+ }, {
333
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
334
+ id: string;
335
+ position: number;
336
+ createdAt: Date;
337
+ updatedAt: Date;
338
+ deletedAt: Date | null;
339
+ isDefault: boolean;
340
+ systemName: string;
341
+ displayName: string;
342
+ isArchived: boolean;
343
+ isRequired: boolean;
344
+ isUnique: boolean;
345
+ }>;
346
+ uploads: z.ZodArray<z.ZodObject<{
347
+ id: z.ZodString;
348
+ createdAt: z.ZodDate;
349
+ updatedAt: z.ZodDate;
350
+ deletedAt: z.ZodNullable<z.ZodDate>;
351
+ customFieldId: z.ZodString;
352
+ upload: z.ZodObject<{
353
+ id: z.ZodString;
354
+ createdAt: z.ZodDate;
355
+ updatedAt: z.ZodDate;
356
+ deletedAt: z.ZodNullable<z.ZodDate>;
357
+ bucketName: z.ZodString;
358
+ fileName: z.ZodString;
359
+ fileSize: z.ZodNumber;
360
+ fileKey: z.ZodString;
361
+ }, "strip", z.ZodTypeAny, {
362
+ id: string;
363
+ createdAt: Date;
364
+ updatedAt: Date;
365
+ deletedAt: Date | null;
366
+ fileName: string;
367
+ fileKey: string;
368
+ bucketName: string;
369
+ fileSize: number;
370
+ }, {
371
+ id: string;
372
+ createdAt: Date;
373
+ updatedAt: Date;
374
+ deletedAt: Date | null;
375
+ fileName: string;
376
+ fileKey: string;
377
+ bucketName: string;
378
+ fileSize: number;
379
+ }>;
380
+ }, "strip", z.ZodTypeAny, {
381
+ id: string;
382
+ createdAt: Date;
383
+ updatedAt: Date;
384
+ deletedAt: Date | null;
385
+ customFieldId: string;
386
+ upload: {
387
+ id: string;
388
+ createdAt: Date;
389
+ updatedAt: Date;
390
+ deletedAt: Date | null;
391
+ fileName: string;
392
+ fileKey: string;
393
+ bucketName: string;
394
+ fileSize: number;
395
+ };
396
+ }, {
397
+ id: string;
398
+ createdAt: Date;
399
+ updatedAt: Date;
400
+ deletedAt: Date | null;
401
+ customFieldId: string;
402
+ upload: {
403
+ id: string;
404
+ createdAt: Date;
405
+ updatedAt: Date;
406
+ deletedAt: Date | null;
407
+ fileName: string;
408
+ fileKey: string;
409
+ bucketName: string;
410
+ fileSize: number;
411
+ };
412
+ }>, "many">;
413
+ }, "strip", z.ZodTypeAny, {
414
+ id: string;
415
+ createdAt: Date;
416
+ updatedAt: Date;
417
+ deletedAt: Date | null;
418
+ attribute: {
419
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
420
+ id: string;
421
+ position: number;
422
+ createdAt: Date;
423
+ updatedAt: Date;
424
+ deletedAt: Date | null;
425
+ isDefault: boolean;
426
+ systemName: string;
427
+ displayName: string;
428
+ isArchived: boolean;
429
+ isRequired: boolean;
430
+ isUnique: boolean;
431
+ };
432
+ textValue: string | null;
433
+ booleanValue: boolean | null;
434
+ numberValue: number | null;
435
+ dateValue: Date | null;
436
+ uploads: {
437
+ id: string;
438
+ createdAt: Date;
439
+ updatedAt: Date;
440
+ deletedAt: Date | null;
441
+ customFieldId: string;
442
+ upload: {
443
+ id: string;
444
+ createdAt: Date;
445
+ updatedAt: Date;
446
+ deletedAt: Date | null;
447
+ fileName: string;
448
+ fileKey: string;
449
+ bucketName: string;
450
+ fileSize: number;
451
+ };
452
+ }[];
453
+ }, {
454
+ id: string;
455
+ createdAt: Date;
456
+ updatedAt: Date;
457
+ deletedAt: Date | null;
458
+ attribute: {
459
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
460
+ id: string;
461
+ position: number;
462
+ createdAt: Date;
463
+ updatedAt: Date;
464
+ deletedAt: Date | null;
465
+ isDefault: boolean;
466
+ systemName: string;
467
+ displayName: string;
468
+ isArchived: boolean;
469
+ isRequired: boolean;
470
+ isUnique: boolean;
471
+ };
472
+ textValue: string | null;
473
+ booleanValue: boolean | null;
474
+ numberValue: number | null;
475
+ dateValue: Date | null;
476
+ uploads: {
477
+ id: string;
478
+ createdAt: Date;
479
+ updatedAt: Date;
480
+ deletedAt: Date | null;
481
+ customFieldId: string;
482
+ upload: {
483
+ id: string;
484
+ createdAt: Date;
485
+ updatedAt: Date;
486
+ deletedAt: Date | null;
487
+ fileName: string;
488
+ fileKey: string;
489
+ bucketName: string;
490
+ fileSize: number;
491
+ };
492
+ }[];
493
+ }>, "many">;
18
494
  }, "strip", z.ZodTypeAny, {
19
495
  type: string;
20
496
  id: string;
@@ -26,11 +502,52 @@ export declare const TicketSchema: z.ZodObject<{
26
502
  createdAt: Date;
27
503
  updatedAt: Date;
28
504
  deletedAt: Date | null;
505
+ customFields: {
506
+ id: string;
507
+ createdAt: Date;
508
+ updatedAt: Date;
509
+ deletedAt: Date | null;
510
+ attribute: {
511
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
512
+ id: string;
513
+ position: number;
514
+ createdAt: Date;
515
+ updatedAt: Date;
516
+ deletedAt: Date | null;
517
+ isDefault: boolean;
518
+ systemName: string;
519
+ displayName: string;
520
+ isArchived: boolean;
521
+ isRequired: boolean;
522
+ isUnique: boolean;
523
+ };
524
+ textValue: string | null;
525
+ booleanValue: boolean | null;
526
+ numberValue: number | null;
527
+ dateValue: Date | null;
528
+ uploads: {
529
+ id: string;
530
+ createdAt: Date;
531
+ updatedAt: Date;
532
+ deletedAt: Date | null;
533
+ customFieldId: string;
534
+ upload: {
535
+ id: string;
536
+ createdAt: Date;
537
+ updatedAt: Date;
538
+ deletedAt: Date | null;
539
+ fileName: string;
540
+ fileKey: string;
541
+ bucketName: string;
542
+ fileSize: number;
543
+ };
544
+ }[];
545
+ }[];
29
546
  contactId: string;
30
547
  assigneeId: string;
31
548
  creatorId: string;
32
549
  reasonToAssign: string | null;
33
- ticketNumber: number;
550
+ ticketNumber?: number | undefined;
34
551
  }, {
35
552
  type: string;
36
553
  id: string;
@@ -42,10 +559,165 @@ export declare const TicketSchema: z.ZodObject<{
42
559
  createdAt: Date;
43
560
  updatedAt: Date;
44
561
  deletedAt: Date | null;
562
+ customFields: {
563
+ id: string;
564
+ createdAt: Date;
565
+ updatedAt: Date;
566
+ deletedAt: Date | null;
567
+ attribute: {
568
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
569
+ id: string;
570
+ position: number;
571
+ createdAt: Date;
572
+ updatedAt: Date;
573
+ deletedAt: Date | null;
574
+ isDefault: boolean;
575
+ systemName: string;
576
+ displayName: string;
577
+ isArchived: boolean;
578
+ isRequired: boolean;
579
+ isUnique: boolean;
580
+ };
581
+ textValue: string | null;
582
+ booleanValue: boolean | null;
583
+ numberValue: number | null;
584
+ dateValue: Date | null;
585
+ uploads: {
586
+ id: string;
587
+ createdAt: Date;
588
+ updatedAt: Date;
589
+ deletedAt: Date | null;
590
+ customFieldId: string;
591
+ upload: {
592
+ id: string;
593
+ createdAt: Date;
594
+ updatedAt: Date;
595
+ deletedAt: Date | null;
596
+ fileName: string;
597
+ fileKey: string;
598
+ bucketName: string;
599
+ fileSize: number;
600
+ };
601
+ }[];
602
+ }[];
45
603
  contactId: string;
46
604
  assigneeId: string;
47
605
  creatorId: string;
48
606
  reasonToAssign: string | null;
49
- ticketNumber: number;
607
+ ticketNumber?: number | undefined;
608
+ }>;
609
+ export declare const TicketCountByContactSchema: z.ZodOptional<z.ZodObject<{
610
+ total: z.ZodNumber;
611
+ open: z.ZodNumber;
612
+ pending: z.ZodNumber;
613
+ closed: z.ZodNumber;
614
+ solved: z.ZodNumber;
615
+ }, "strip", z.ZodTypeAny, {
616
+ total: number;
617
+ closed: number;
618
+ open: number;
619
+ pending: number;
620
+ solved: number;
621
+ }, {
622
+ total: number;
623
+ closed: number;
624
+ open: number;
625
+ pending: number;
626
+ solved: number;
627
+ }>>;
628
+ export declare const TicketParamsSchema: z.ZodOptional<z.ZodObject<{
629
+ page: z.ZodDefault<z.ZodNumber>;
630
+ pageSize: z.ZodDefault<z.ZodNumber>;
631
+ }, "strip", z.ZodTypeAny, {
632
+ page: number;
633
+ pageSize: number;
634
+ }, {
635
+ page?: number | undefined;
636
+ pageSize?: number | undefined;
637
+ }>>;
638
+ export declare const CustomFieldQuery: z.ZodObject<{
639
+ attributeId: z.ZodString;
640
+ type: z.ZodString;
641
+ value: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
642
+ }, "strip", z.ZodTypeAny, {
643
+ type: string;
644
+ value: (string | string[]) & (string | string[] | undefined);
645
+ attributeId: string;
646
+ }, {
647
+ type: string;
648
+ value: (string | string[]) & (string | string[] | undefined);
649
+ attributeId: string;
650
+ }>;
651
+ export declare const GetAllTicketQuerySchema: z.ZodObject<{
652
+ page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
653
+ pageSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
654
+ agent: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
655
+ selectedDate: z.ZodOptional<z.ZodString>;
656
+ keyword: z.ZodOptional<z.ZodString>;
657
+ title: z.ZodOptional<z.ZodString>;
658
+ description: z.ZodOptional<z.ZodString>;
659
+ status: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
660
+ priority: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
661
+ channel: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
662
+ type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
663
+ ticketType: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
664
+ contact: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
665
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
666
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
667
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
668
+ attributeId: z.ZodString;
669
+ type: z.ZodString;
670
+ value: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
671
+ }, "strip", z.ZodTypeAny, {
672
+ type: string;
673
+ value: (string | string[]) & (string | string[] | undefined);
674
+ attributeId: string;
675
+ }, {
676
+ type: string;
677
+ value: (string | string[]) & (string | string[] | undefined);
678
+ attributeId: string;
679
+ }>, "many">>;
680
+ }, "strip", z.ZodTypeAny, {
681
+ page?: number | undefined;
682
+ pageSize?: number | undefined;
683
+ agent?: string[] | undefined;
684
+ selectedDate?: string | undefined;
685
+ keyword?: string | undefined;
686
+ title?: string | undefined;
687
+ description?: string | undefined;
688
+ status?: string[] | undefined;
689
+ priority?: string[] | undefined;
690
+ channel?: string[] | undefined;
691
+ type?: string[] | undefined;
692
+ ticketType?: string[] | undefined;
693
+ contact?: string[] | undefined;
694
+ tags?: string[] | undefined;
695
+ categories?: string[] | undefined;
696
+ customFields?: {
697
+ type: string;
698
+ value: (string | string[]) & (string | string[] | undefined);
699
+ attributeId: string;
700
+ }[] | undefined;
701
+ }, {
702
+ page?: number | undefined;
703
+ pageSize?: number | undefined;
704
+ agent?: string[] | undefined;
705
+ selectedDate?: string | undefined;
706
+ keyword?: string | undefined;
707
+ title?: string | undefined;
708
+ description?: string | undefined;
709
+ status?: string[] | undefined;
710
+ priority?: string[] | undefined;
711
+ channel?: string[] | undefined;
712
+ type?: string[] | undefined;
713
+ ticketType?: string[] | undefined;
714
+ contact?: string[] | undefined;
715
+ tags?: string[] | undefined;
716
+ categories?: string[] | undefined;
717
+ customFields?: {
718
+ type: string;
719
+ value: (string | string[]) & (string | string[] | undefined);
720
+ attributeId: string;
721
+ }[] | undefined;
50
722
  }>;
51
723
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/ticket/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYvB,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/ticket/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBlC,CAAC;AAEH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAavB,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;GAQ1B,CAAC;AAEd,eAAO,MAAM,kBAAkB;;;;;;;;;GAKlB,CAAC;AAEd,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAI3B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBxB,CAAC"}