@kl1/contracts 1.0.27 → 1.0.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +144 -56
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +143 -56
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/attribute/index.d.ts +108 -108
- package/dist/src/attribute/schema.d.ts +24 -24
- package/dist/src/attribute-option/schema.d.ts +9 -9
- package/dist/src/base-contract.d.ts +9 -9
- package/dist/src/call-log/schema.d.ts +9 -9
- package/dist/src/category/index.d.ts +42 -42
- package/dist/src/category/schema.d.ts +9 -9
- package/dist/src/channel/index.d.ts +38 -38
- package/dist/src/channel/schema.d.ts +9 -9
- package/dist/src/chat/index.d.ts +5335 -5335
- package/dist/src/chat/schema.d.ts +876 -876
- package/dist/src/chat/validation.d.ts +1008 -1008
- package/dist/src/comment/index.d.ts +363 -363
- package/dist/src/comment/schema.d.ts +105 -105
- package/dist/src/company/index.d.ts +288 -288
- package/dist/src/company/schema.d.ts +87 -87
- package/dist/src/company/validation.d.ts +162 -162
- package/dist/src/contact/index.d.ts +1212 -1212
- package/dist/src/contact/schema.d.ts +201 -201
- package/dist/src/contact/validation.d.ts +997 -997
- package/dist/src/contact-email/schema.d.ts +9 -9
- package/dist/src/contact-phone/schema.d.ts +9 -9
- package/dist/src/contract.d.ts +9737 -9761
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field/schema.d.ts +9 -9
- package/dist/src/custom-field-upload/schema.d.ts +9 -9
- package/dist/src/cx-log/index.d.ts +621 -621
- package/dist/src/cx-log/schema.d.ts +564 -564
- package/dist/src/dashboard/index.d.ts +6 -6
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +2 -2
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/evaluate-form/index.d.ts +47 -0
- package/dist/src/evaluate-form/index.d.ts.map +1 -0
- package/dist/src/evaluate-form/schema.d.ts +9 -9
- package/dist/src/evaluate-form/validation.d.ts +28 -0
- package/dist/src/evaluate-form/validation.d.ts.map +1 -0
- package/dist/src/group/schema.d.ts +9 -9
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/log-form/schema.d.ts +9 -9
- package/dist/src/mail/mail-contract.d.ts +63 -63
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/mail/room-contract.d.ts +63 -63
- package/dist/src/mail/schemas/room-validation.schema.d.ts +14 -14
- package/dist/src/mail/schemas/room.schema.d.ts +25 -25
- package/dist/src/messenger/index.d.ts +492 -492
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/tag/index.d.ts +45 -45
- package/dist/src/tag/schema.d.ts +9 -9
- package/dist/src/tag-group/schema.d.ts +9 -9
- package/dist/src/telephony-agent-presence-status/index.d.ts +93 -93
- package/dist/src/telephony-agent-presence-status/schema.d.ts +33 -33
- package/dist/src/telephony-cdr/schema.d.ts +9 -9
- package/dist/src/telephony-live-queue-call/schema.d.ts +9 -9
- package/dist/src/telephony-queue-call-count/schema.d.ts +9 -9
- package/dist/src/tenant/schema.d.ts +9 -9
- package/dist/src/ticket/index.d.ts +774 -909
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +135 -135
- package/dist/src/ticket/validation.d.ts +168 -338
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/upload/schema.d.ts +9 -9
- package/dist/src/user-presence-status-log/index.d.ts +36 -36
- package/dist/src/user-presence-status-log/schema.d.ts +39 -39
- package/dist/src/widget/index.d.ts +150 -79
- package/dist/src/widget/index.d.ts.map +1 -1
- package/dist/src/widget/schema.d.ts +9 -9
- package/dist/src/widget/validation.d.ts +10 -0
- package/dist/src/widget/validation.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +96 -96
- package/dist/src/wrap-up-form/schema.d.ts +24 -24
- package/package.json +10 -4
@@ -379,9 +379,9 @@ export declare const commentContract: {
|
|
379
379
|
mentions: z.ZodArray<z.ZodString, "many">;
|
380
380
|
ticket: z.ZodObject<{
|
381
381
|
id: z.ZodString;
|
382
|
-
createdAt: z.
|
383
|
-
updatedAt: z.
|
384
|
-
deletedAt: z.ZodNullable<z.
|
382
|
+
createdAt: z.ZodDate;
|
383
|
+
updatedAt: z.ZodDate;
|
384
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
385
385
|
title: z.ZodString;
|
386
386
|
description: z.ZodNullable<z.ZodString>;
|
387
387
|
type: z.ZodString;
|
@@ -395,18 +395,18 @@ export declare const commentContract: {
|
|
395
395
|
ticketNumber: z.ZodOptional<z.ZodNumber>;
|
396
396
|
customFields: z.ZodArray<z.ZodObject<{
|
397
397
|
id: z.ZodString;
|
398
|
-
createdAt: z.
|
399
|
-
updatedAt: z.
|
400
|
-
deletedAt: z.ZodNullable<z.
|
398
|
+
createdAt: z.ZodDate;
|
399
|
+
updatedAt: z.ZodDate;
|
400
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
401
401
|
textValue: z.ZodNullable<z.ZodString>;
|
402
402
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
403
403
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
404
404
|
dateValue: z.ZodNullable<z.ZodDate>;
|
405
405
|
attribute: z.ZodObject<Omit<{
|
406
406
|
id: z.ZodString;
|
407
|
-
createdAt: z.
|
408
|
-
updatedAt: z.
|
409
|
-
deletedAt: z.ZodNullable<z.
|
407
|
+
createdAt: z.ZodDate;
|
408
|
+
updatedAt: z.ZodDate;
|
409
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
410
410
|
systemName: z.ZodString;
|
411
411
|
displayName: z.ZodString;
|
412
412
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -436,23 +436,23 @@ export declare const commentContract: {
|
|
436
436
|
}>, "many">;
|
437
437
|
group: z.ZodObject<{
|
438
438
|
id: z.ZodString;
|
439
|
-
createdAt: z.
|
440
|
-
updatedAt: z.
|
441
|
-
deletedAt: z.ZodNullable<z.
|
439
|
+
createdAt: z.ZodDate;
|
440
|
+
updatedAt: z.ZodDate;
|
441
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
442
442
|
systemName: z.ZodString;
|
443
443
|
displayName: z.ZodString;
|
444
444
|
}, "strip", z.ZodTypeAny, {
|
445
445
|
id: string;
|
446
|
-
createdAt:
|
447
|
-
updatedAt:
|
448
|
-
deletedAt:
|
446
|
+
createdAt: Date;
|
447
|
+
updatedAt: Date;
|
448
|
+
deletedAt: Date | null;
|
449
449
|
systemName: string;
|
450
450
|
displayName: string;
|
451
451
|
}, {
|
452
452
|
id: string;
|
453
|
-
createdAt:
|
454
|
-
updatedAt:
|
455
|
-
deletedAt:
|
453
|
+
createdAt: Date;
|
454
|
+
updatedAt: Date;
|
455
|
+
deletedAt: Date | null;
|
456
456
|
systemName: string;
|
457
457
|
displayName: string;
|
458
458
|
}>;
|
@@ -460,9 +460,9 @@ export declare const commentContract: {
|
|
460
460
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
461
461
|
id: string;
|
462
462
|
position: number;
|
463
|
-
createdAt:
|
464
|
-
updatedAt:
|
465
|
-
deletedAt:
|
463
|
+
createdAt: Date;
|
464
|
+
updatedAt: Date;
|
465
|
+
deletedAt: Date | null;
|
466
466
|
isDefault: boolean;
|
467
467
|
systemName: string;
|
468
468
|
displayName: string;
|
@@ -473,9 +473,9 @@ export declare const commentContract: {
|
|
473
473
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
474
474
|
id: string;
|
475
475
|
position: number;
|
476
|
-
createdAt:
|
477
|
-
updatedAt:
|
478
|
-
deletedAt:
|
476
|
+
createdAt: Date;
|
477
|
+
updatedAt: Date;
|
478
|
+
deletedAt: Date | null;
|
479
479
|
isDefault: boolean;
|
480
480
|
systemName: string;
|
481
481
|
displayName: string;
|
@@ -491,27 +491,27 @@ export declare const commentContract: {
|
|
491
491
|
customFieldId: z.ZodString;
|
492
492
|
upload: z.ZodObject<{
|
493
493
|
id: z.ZodString;
|
494
|
-
createdAt: z.
|
495
|
-
updatedAt: z.
|
496
|
-
deletedAt: z.ZodNullable<z.
|
494
|
+
createdAt: z.ZodDate;
|
495
|
+
updatedAt: z.ZodDate;
|
496
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
497
497
|
bucketName: z.ZodString;
|
498
498
|
fileName: z.ZodString;
|
499
499
|
fileSize: z.ZodNumber;
|
500
500
|
fileKey: z.ZodString;
|
501
501
|
}, "strip", z.ZodTypeAny, {
|
502
502
|
id: string;
|
503
|
-
createdAt:
|
504
|
-
updatedAt:
|
505
|
-
deletedAt:
|
503
|
+
createdAt: Date;
|
504
|
+
updatedAt: Date;
|
505
|
+
deletedAt: Date | null;
|
506
506
|
fileName: string;
|
507
507
|
fileKey: string;
|
508
508
|
bucketName: string;
|
509
509
|
fileSize: number;
|
510
510
|
}, {
|
511
511
|
id: string;
|
512
|
-
createdAt:
|
513
|
-
updatedAt:
|
514
|
-
deletedAt:
|
512
|
+
createdAt: Date;
|
513
|
+
updatedAt: Date;
|
514
|
+
deletedAt: Date | null;
|
515
515
|
fileName: string;
|
516
516
|
fileKey: string;
|
517
517
|
bucketName: string;
|
@@ -525,9 +525,9 @@ export declare const commentContract: {
|
|
525
525
|
customFieldId: string;
|
526
526
|
upload: {
|
527
527
|
id: string;
|
528
|
-
createdAt:
|
529
|
-
updatedAt:
|
530
|
-
deletedAt:
|
528
|
+
createdAt: Date;
|
529
|
+
updatedAt: Date;
|
530
|
+
deletedAt: Date | null;
|
531
531
|
fileName: string;
|
532
532
|
fileKey: string;
|
533
533
|
bucketName: string;
|
@@ -541,9 +541,9 @@ export declare const commentContract: {
|
|
541
541
|
customFieldId: string;
|
542
542
|
upload: {
|
543
543
|
id: string;
|
544
|
-
createdAt:
|
545
|
-
updatedAt:
|
546
|
-
deletedAt:
|
544
|
+
createdAt: Date;
|
545
|
+
updatedAt: Date;
|
546
|
+
deletedAt: Date | null;
|
547
547
|
fileName: string;
|
548
548
|
fileKey: string;
|
549
549
|
bucketName: string;
|
@@ -552,16 +552,16 @@ export declare const commentContract: {
|
|
552
552
|
}>, "many">;
|
553
553
|
}, "strip", z.ZodTypeAny, {
|
554
554
|
id: string;
|
555
|
-
createdAt:
|
556
|
-
updatedAt:
|
557
|
-
deletedAt:
|
555
|
+
createdAt: Date;
|
556
|
+
updatedAt: Date;
|
557
|
+
deletedAt: Date | null;
|
558
558
|
attribute: {
|
559
559
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
560
560
|
id: string;
|
561
561
|
position: number;
|
562
|
-
createdAt:
|
563
|
-
updatedAt:
|
564
|
-
deletedAt:
|
562
|
+
createdAt: Date;
|
563
|
+
updatedAt: Date;
|
564
|
+
deletedAt: Date | null;
|
565
565
|
isDefault: boolean;
|
566
566
|
systemName: string;
|
567
567
|
displayName: string;
|
@@ -581,9 +581,9 @@ export declare const commentContract: {
|
|
581
581
|
customFieldId: string;
|
582
582
|
upload: {
|
583
583
|
id: string;
|
584
|
-
createdAt:
|
585
|
-
updatedAt:
|
586
|
-
deletedAt:
|
584
|
+
createdAt: Date;
|
585
|
+
updatedAt: Date;
|
586
|
+
deletedAt: Date | null;
|
587
587
|
fileName: string;
|
588
588
|
fileKey: string;
|
589
589
|
bucketName: string;
|
@@ -592,16 +592,16 @@ export declare const commentContract: {
|
|
592
592
|
}[];
|
593
593
|
}, {
|
594
594
|
id: string;
|
595
|
-
createdAt:
|
596
|
-
updatedAt:
|
597
|
-
deletedAt:
|
595
|
+
createdAt: Date;
|
596
|
+
updatedAt: Date;
|
597
|
+
deletedAt: Date | null;
|
598
598
|
attribute: {
|
599
599
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
600
600
|
id: string;
|
601
601
|
position: number;
|
602
|
-
createdAt:
|
603
|
-
updatedAt:
|
604
|
-
deletedAt:
|
602
|
+
createdAt: Date;
|
603
|
+
updatedAt: Date;
|
604
|
+
deletedAt: Date | null;
|
605
605
|
isDefault: boolean;
|
606
606
|
systemName: string;
|
607
607
|
displayName: string;
|
@@ -621,9 +621,9 @@ export declare const commentContract: {
|
|
621
621
|
customFieldId: string;
|
622
622
|
upload: {
|
623
623
|
id: string;
|
624
|
-
createdAt:
|
625
|
-
updatedAt:
|
626
|
-
deletedAt:
|
624
|
+
createdAt: Date;
|
625
|
+
updatedAt: Date;
|
626
|
+
deletedAt: Date | null;
|
627
627
|
fileName: string;
|
628
628
|
fileKey: string;
|
629
629
|
bucketName: string;
|
@@ -639,21 +639,21 @@ export declare const commentContract: {
|
|
639
639
|
title: string;
|
640
640
|
description: string | null;
|
641
641
|
status: string;
|
642
|
-
createdAt:
|
643
|
-
updatedAt:
|
644
|
-
deletedAt:
|
642
|
+
createdAt: Date;
|
643
|
+
updatedAt: Date;
|
644
|
+
deletedAt: Date | null;
|
645
645
|
customFields: {
|
646
646
|
id: string;
|
647
|
-
createdAt:
|
648
|
-
updatedAt:
|
649
|
-
deletedAt:
|
647
|
+
createdAt: Date;
|
648
|
+
updatedAt: Date;
|
649
|
+
deletedAt: Date | null;
|
650
650
|
attribute: {
|
651
651
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
652
652
|
id: string;
|
653
653
|
position: number;
|
654
|
-
createdAt:
|
655
|
-
updatedAt:
|
656
|
-
deletedAt:
|
654
|
+
createdAt: Date;
|
655
|
+
updatedAt: Date;
|
656
|
+
deletedAt: Date | null;
|
657
657
|
isDefault: boolean;
|
658
658
|
systemName: string;
|
659
659
|
displayName: string;
|
@@ -673,9 +673,9 @@ export declare const commentContract: {
|
|
673
673
|
customFieldId: string;
|
674
674
|
upload: {
|
675
675
|
id: string;
|
676
|
-
createdAt:
|
677
|
-
updatedAt:
|
678
|
-
deletedAt:
|
676
|
+
createdAt: Date;
|
677
|
+
updatedAt: Date;
|
678
|
+
deletedAt: Date | null;
|
679
679
|
fileName: string;
|
680
680
|
fileKey: string;
|
681
681
|
bucketName: string;
|
@@ -696,21 +696,21 @@ export declare const commentContract: {
|
|
696
696
|
title: string;
|
697
697
|
description: string | null;
|
698
698
|
status: string;
|
699
|
-
createdAt:
|
700
|
-
updatedAt:
|
701
|
-
deletedAt:
|
699
|
+
createdAt: Date;
|
700
|
+
updatedAt: Date;
|
701
|
+
deletedAt: Date | null;
|
702
702
|
customFields: {
|
703
703
|
id: string;
|
704
|
-
createdAt:
|
705
|
-
updatedAt:
|
706
|
-
deletedAt:
|
704
|
+
createdAt: Date;
|
705
|
+
updatedAt: Date;
|
706
|
+
deletedAt: Date | null;
|
707
707
|
attribute: {
|
708
708
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
709
709
|
id: string;
|
710
710
|
position: number;
|
711
|
-
createdAt:
|
712
|
-
updatedAt:
|
713
|
-
deletedAt:
|
711
|
+
createdAt: Date;
|
712
|
+
updatedAt: Date;
|
713
|
+
deletedAt: Date | null;
|
714
714
|
isDefault: boolean;
|
715
715
|
systemName: string;
|
716
716
|
displayName: string;
|
@@ -730,9 +730,9 @@ export declare const commentContract: {
|
|
730
730
|
customFieldId: string;
|
731
731
|
upload: {
|
732
732
|
id: string;
|
733
|
-
createdAt:
|
734
|
-
updatedAt:
|
735
|
-
deletedAt:
|
733
|
+
createdAt: Date;
|
734
|
+
updatedAt: Date;
|
735
|
+
deletedAt: Date | null;
|
736
736
|
fileName: string;
|
737
737
|
fileKey: string;
|
738
738
|
bucketName: string;
|
@@ -1060,21 +1060,21 @@ export declare const commentContract: {
|
|
1060
1060
|
title: string;
|
1061
1061
|
description: string | null;
|
1062
1062
|
status: string;
|
1063
|
-
createdAt:
|
1064
|
-
updatedAt:
|
1065
|
-
deletedAt:
|
1063
|
+
createdAt: Date;
|
1064
|
+
updatedAt: Date;
|
1065
|
+
deletedAt: Date | null;
|
1066
1066
|
customFields: {
|
1067
1067
|
id: string;
|
1068
|
-
createdAt:
|
1069
|
-
updatedAt:
|
1070
|
-
deletedAt:
|
1068
|
+
createdAt: Date;
|
1069
|
+
updatedAt: Date;
|
1070
|
+
deletedAt: Date | null;
|
1071
1071
|
attribute: {
|
1072
1072
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1073
1073
|
id: string;
|
1074
1074
|
position: number;
|
1075
|
-
createdAt:
|
1076
|
-
updatedAt:
|
1077
|
-
deletedAt:
|
1075
|
+
createdAt: Date;
|
1076
|
+
updatedAt: Date;
|
1077
|
+
deletedAt: Date | null;
|
1078
1078
|
isDefault: boolean;
|
1079
1079
|
systemName: string;
|
1080
1080
|
displayName: string;
|
@@ -1094,9 +1094,9 @@ export declare const commentContract: {
|
|
1094
1094
|
customFieldId: string;
|
1095
1095
|
upload: {
|
1096
1096
|
id: string;
|
1097
|
-
createdAt:
|
1098
|
-
updatedAt:
|
1099
|
-
deletedAt:
|
1097
|
+
createdAt: Date;
|
1098
|
+
updatedAt: Date;
|
1099
|
+
deletedAt: Date | null;
|
1100
1100
|
fileName: string;
|
1101
1101
|
fileKey: string;
|
1102
1102
|
bucketName: string;
|
@@ -1227,21 +1227,21 @@ export declare const commentContract: {
|
|
1227
1227
|
title: string;
|
1228
1228
|
description: string | null;
|
1229
1229
|
status: string;
|
1230
|
-
createdAt:
|
1231
|
-
updatedAt:
|
1232
|
-
deletedAt:
|
1230
|
+
createdAt: Date;
|
1231
|
+
updatedAt: Date;
|
1232
|
+
deletedAt: Date | null;
|
1233
1233
|
customFields: {
|
1234
1234
|
id: string;
|
1235
|
-
createdAt:
|
1236
|
-
updatedAt:
|
1237
|
-
deletedAt:
|
1235
|
+
createdAt: Date;
|
1236
|
+
updatedAt: Date;
|
1237
|
+
deletedAt: Date | null;
|
1238
1238
|
attribute: {
|
1239
1239
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1240
1240
|
id: string;
|
1241
1241
|
position: number;
|
1242
|
-
createdAt:
|
1243
|
-
updatedAt:
|
1244
|
-
deletedAt:
|
1242
|
+
createdAt: Date;
|
1243
|
+
updatedAt: Date;
|
1244
|
+
deletedAt: Date | null;
|
1245
1245
|
isDefault: boolean;
|
1246
1246
|
systemName: string;
|
1247
1247
|
displayName: string;
|
@@ -1261,9 +1261,9 @@ export declare const commentContract: {
|
|
1261
1261
|
customFieldId: string;
|
1262
1262
|
upload: {
|
1263
1263
|
id: string;
|
1264
|
-
createdAt:
|
1265
|
-
updatedAt:
|
1266
|
-
deletedAt:
|
1264
|
+
createdAt: Date;
|
1265
|
+
updatedAt: Date;
|
1266
|
+
deletedAt: Date | null;
|
1267
1267
|
fileName: string;
|
1268
1268
|
fileKey: string;
|
1269
1269
|
bucketName: string;
|
@@ -1397,21 +1397,21 @@ export declare const commentContract: {
|
|
1397
1397
|
title: string;
|
1398
1398
|
description: string | null;
|
1399
1399
|
status: string;
|
1400
|
-
createdAt:
|
1401
|
-
updatedAt:
|
1402
|
-
deletedAt:
|
1400
|
+
createdAt: Date;
|
1401
|
+
updatedAt: Date;
|
1402
|
+
deletedAt: Date | null;
|
1403
1403
|
customFields: {
|
1404
1404
|
id: string;
|
1405
|
-
createdAt:
|
1406
|
-
updatedAt:
|
1407
|
-
deletedAt:
|
1405
|
+
createdAt: Date;
|
1406
|
+
updatedAt: Date;
|
1407
|
+
deletedAt: Date | null;
|
1408
1408
|
attribute: {
|
1409
1409
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1410
1410
|
id: string;
|
1411
1411
|
position: number;
|
1412
|
-
createdAt:
|
1413
|
-
updatedAt:
|
1414
|
-
deletedAt:
|
1412
|
+
createdAt: Date;
|
1413
|
+
updatedAt: Date;
|
1414
|
+
deletedAt: Date | null;
|
1415
1415
|
isDefault: boolean;
|
1416
1416
|
systemName: string;
|
1417
1417
|
displayName: string;
|
@@ -1431,9 +1431,9 @@ export declare const commentContract: {
|
|
1431
1431
|
customFieldId: string;
|
1432
1432
|
upload: {
|
1433
1433
|
id: string;
|
1434
|
-
createdAt:
|
1435
|
-
updatedAt:
|
1436
|
-
deletedAt:
|
1434
|
+
createdAt: Date;
|
1435
|
+
updatedAt: Date;
|
1436
|
+
deletedAt: Date | null;
|
1437
1437
|
fileName: string;
|
1438
1438
|
fileKey: string;
|
1439
1439
|
bucketName: string;
|
@@ -1567,21 +1567,21 @@ export declare const commentContract: {
|
|
1567
1567
|
title: string;
|
1568
1568
|
description: string | null;
|
1569
1569
|
status: string;
|
1570
|
-
createdAt:
|
1571
|
-
updatedAt:
|
1572
|
-
deletedAt:
|
1570
|
+
createdAt: Date;
|
1571
|
+
updatedAt: Date;
|
1572
|
+
deletedAt: Date | null;
|
1573
1573
|
customFields: {
|
1574
1574
|
id: string;
|
1575
|
-
createdAt:
|
1576
|
-
updatedAt:
|
1577
|
-
deletedAt:
|
1575
|
+
createdAt: Date;
|
1576
|
+
updatedAt: Date;
|
1577
|
+
deletedAt: Date | null;
|
1578
1578
|
attribute: {
|
1579
1579
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1580
1580
|
id: string;
|
1581
1581
|
position: number;
|
1582
|
-
createdAt:
|
1583
|
-
updatedAt:
|
1584
|
-
deletedAt:
|
1582
|
+
createdAt: Date;
|
1583
|
+
updatedAt: Date;
|
1584
|
+
deletedAt: Date | null;
|
1585
1585
|
isDefault: boolean;
|
1586
1586
|
systemName: string;
|
1587
1587
|
displayName: string;
|
@@ -1601,9 +1601,9 @@ export declare const commentContract: {
|
|
1601
1601
|
customFieldId: string;
|
1602
1602
|
upload: {
|
1603
1603
|
id: string;
|
1604
|
-
createdAt:
|
1605
|
-
updatedAt:
|
1606
|
-
deletedAt:
|
1604
|
+
createdAt: Date;
|
1605
|
+
updatedAt: Date;
|
1606
|
+
deletedAt: Date | null;
|
1607
1607
|
fileName: string;
|
1608
1608
|
fileKey: string;
|
1609
1609
|
bucketName: string;
|
@@ -2035,9 +2035,9 @@ export declare const commentContract: {
|
|
2035
2035
|
mentions: z.ZodArray<z.ZodString, "many">;
|
2036
2036
|
ticket: z.ZodObject<{
|
2037
2037
|
id: z.ZodString;
|
2038
|
-
createdAt: z.
|
2039
|
-
updatedAt: z.
|
2040
|
-
deletedAt: z.ZodNullable<z.
|
2038
|
+
createdAt: z.ZodDate;
|
2039
|
+
updatedAt: z.ZodDate;
|
2040
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2041
2041
|
title: z.ZodString;
|
2042
2042
|
description: z.ZodNullable<z.ZodString>;
|
2043
2043
|
type: z.ZodString;
|
@@ -2051,18 +2051,18 @@ export declare const commentContract: {
|
|
2051
2051
|
ticketNumber: z.ZodOptional<z.ZodNumber>;
|
2052
2052
|
customFields: z.ZodArray<z.ZodObject<{
|
2053
2053
|
id: z.ZodString;
|
2054
|
-
createdAt: z.
|
2055
|
-
updatedAt: z.
|
2056
|
-
deletedAt: z.ZodNullable<z.
|
2054
|
+
createdAt: z.ZodDate;
|
2055
|
+
updatedAt: z.ZodDate;
|
2056
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2057
2057
|
textValue: z.ZodNullable<z.ZodString>;
|
2058
2058
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2059
2059
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
2060
2060
|
dateValue: z.ZodNullable<z.ZodDate>;
|
2061
2061
|
attribute: z.ZodObject<Omit<{
|
2062
2062
|
id: z.ZodString;
|
2063
|
-
createdAt: z.
|
2064
|
-
updatedAt: z.
|
2065
|
-
deletedAt: z.ZodNullable<z.
|
2063
|
+
createdAt: z.ZodDate;
|
2064
|
+
updatedAt: z.ZodDate;
|
2065
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2066
2066
|
systemName: z.ZodString;
|
2067
2067
|
displayName: z.ZodString;
|
2068
2068
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -2092,23 +2092,23 @@ export declare const commentContract: {
|
|
2092
2092
|
}>, "many">;
|
2093
2093
|
group: z.ZodObject<{
|
2094
2094
|
id: z.ZodString;
|
2095
|
-
createdAt: z.
|
2096
|
-
updatedAt: z.
|
2097
|
-
deletedAt: z.ZodNullable<z.
|
2095
|
+
createdAt: z.ZodDate;
|
2096
|
+
updatedAt: z.ZodDate;
|
2097
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2098
2098
|
systemName: z.ZodString;
|
2099
2099
|
displayName: z.ZodString;
|
2100
2100
|
}, "strip", z.ZodTypeAny, {
|
2101
2101
|
id: string;
|
2102
|
-
createdAt:
|
2103
|
-
updatedAt:
|
2104
|
-
deletedAt:
|
2102
|
+
createdAt: Date;
|
2103
|
+
updatedAt: Date;
|
2104
|
+
deletedAt: Date | null;
|
2105
2105
|
systemName: string;
|
2106
2106
|
displayName: string;
|
2107
2107
|
}, {
|
2108
2108
|
id: string;
|
2109
|
-
createdAt:
|
2110
|
-
updatedAt:
|
2111
|
-
deletedAt:
|
2109
|
+
createdAt: Date;
|
2110
|
+
updatedAt: Date;
|
2111
|
+
deletedAt: Date | null;
|
2112
2112
|
systemName: string;
|
2113
2113
|
displayName: string;
|
2114
2114
|
}>;
|
@@ -2116,9 +2116,9 @@ export declare const commentContract: {
|
|
2116
2116
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2117
2117
|
id: string;
|
2118
2118
|
position: number;
|
2119
|
-
createdAt:
|
2120
|
-
updatedAt:
|
2121
|
-
deletedAt:
|
2119
|
+
createdAt: Date;
|
2120
|
+
updatedAt: Date;
|
2121
|
+
deletedAt: Date | null;
|
2122
2122
|
isDefault: boolean;
|
2123
2123
|
systemName: string;
|
2124
2124
|
displayName: string;
|
@@ -2129,9 +2129,9 @@ export declare const commentContract: {
|
|
2129
2129
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2130
2130
|
id: string;
|
2131
2131
|
position: number;
|
2132
|
-
createdAt:
|
2133
|
-
updatedAt:
|
2134
|
-
deletedAt:
|
2132
|
+
createdAt: Date;
|
2133
|
+
updatedAt: Date;
|
2134
|
+
deletedAt: Date | null;
|
2135
2135
|
isDefault: boolean;
|
2136
2136
|
systemName: string;
|
2137
2137
|
displayName: string;
|
@@ -2147,27 +2147,27 @@ export declare const commentContract: {
|
|
2147
2147
|
customFieldId: z.ZodString;
|
2148
2148
|
upload: z.ZodObject<{
|
2149
2149
|
id: z.ZodString;
|
2150
|
-
createdAt: z.
|
2151
|
-
updatedAt: z.
|
2152
|
-
deletedAt: z.ZodNullable<z.
|
2150
|
+
createdAt: z.ZodDate;
|
2151
|
+
updatedAt: z.ZodDate;
|
2152
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2153
2153
|
bucketName: z.ZodString;
|
2154
2154
|
fileName: z.ZodString;
|
2155
2155
|
fileSize: z.ZodNumber;
|
2156
2156
|
fileKey: z.ZodString;
|
2157
2157
|
}, "strip", z.ZodTypeAny, {
|
2158
2158
|
id: string;
|
2159
|
-
createdAt:
|
2160
|
-
updatedAt:
|
2161
|
-
deletedAt:
|
2159
|
+
createdAt: Date;
|
2160
|
+
updatedAt: Date;
|
2161
|
+
deletedAt: Date | null;
|
2162
2162
|
fileName: string;
|
2163
2163
|
fileKey: string;
|
2164
2164
|
bucketName: string;
|
2165
2165
|
fileSize: number;
|
2166
2166
|
}, {
|
2167
2167
|
id: string;
|
2168
|
-
createdAt:
|
2169
|
-
updatedAt:
|
2170
|
-
deletedAt:
|
2168
|
+
createdAt: Date;
|
2169
|
+
updatedAt: Date;
|
2170
|
+
deletedAt: Date | null;
|
2171
2171
|
fileName: string;
|
2172
2172
|
fileKey: string;
|
2173
2173
|
bucketName: string;
|
@@ -2181,9 +2181,9 @@ export declare const commentContract: {
|
|
2181
2181
|
customFieldId: string;
|
2182
2182
|
upload: {
|
2183
2183
|
id: string;
|
2184
|
-
createdAt:
|
2185
|
-
updatedAt:
|
2186
|
-
deletedAt:
|
2184
|
+
createdAt: Date;
|
2185
|
+
updatedAt: Date;
|
2186
|
+
deletedAt: Date | null;
|
2187
2187
|
fileName: string;
|
2188
2188
|
fileKey: string;
|
2189
2189
|
bucketName: string;
|
@@ -2197,9 +2197,9 @@ export declare const commentContract: {
|
|
2197
2197
|
customFieldId: string;
|
2198
2198
|
upload: {
|
2199
2199
|
id: string;
|
2200
|
-
createdAt:
|
2201
|
-
updatedAt:
|
2202
|
-
deletedAt:
|
2200
|
+
createdAt: Date;
|
2201
|
+
updatedAt: Date;
|
2202
|
+
deletedAt: Date | null;
|
2203
2203
|
fileName: string;
|
2204
2204
|
fileKey: string;
|
2205
2205
|
bucketName: string;
|
@@ -2208,16 +2208,16 @@ export declare const commentContract: {
|
|
2208
2208
|
}>, "many">;
|
2209
2209
|
}, "strip", z.ZodTypeAny, {
|
2210
2210
|
id: string;
|
2211
|
-
createdAt:
|
2212
|
-
updatedAt:
|
2213
|
-
deletedAt:
|
2211
|
+
createdAt: Date;
|
2212
|
+
updatedAt: Date;
|
2213
|
+
deletedAt: Date | null;
|
2214
2214
|
attribute: {
|
2215
2215
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2216
2216
|
id: string;
|
2217
2217
|
position: number;
|
2218
|
-
createdAt:
|
2219
|
-
updatedAt:
|
2220
|
-
deletedAt:
|
2218
|
+
createdAt: Date;
|
2219
|
+
updatedAt: Date;
|
2220
|
+
deletedAt: Date | null;
|
2221
2221
|
isDefault: boolean;
|
2222
2222
|
systemName: string;
|
2223
2223
|
displayName: string;
|
@@ -2237,9 +2237,9 @@ export declare const commentContract: {
|
|
2237
2237
|
customFieldId: string;
|
2238
2238
|
upload: {
|
2239
2239
|
id: string;
|
2240
|
-
createdAt:
|
2241
|
-
updatedAt:
|
2242
|
-
deletedAt:
|
2240
|
+
createdAt: Date;
|
2241
|
+
updatedAt: Date;
|
2242
|
+
deletedAt: Date | null;
|
2243
2243
|
fileName: string;
|
2244
2244
|
fileKey: string;
|
2245
2245
|
bucketName: string;
|
@@ -2248,16 +2248,16 @@ export declare const commentContract: {
|
|
2248
2248
|
}[];
|
2249
2249
|
}, {
|
2250
2250
|
id: string;
|
2251
|
-
createdAt:
|
2252
|
-
updatedAt:
|
2253
|
-
deletedAt:
|
2251
|
+
createdAt: Date;
|
2252
|
+
updatedAt: Date;
|
2253
|
+
deletedAt: Date | null;
|
2254
2254
|
attribute: {
|
2255
2255
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2256
2256
|
id: string;
|
2257
2257
|
position: number;
|
2258
|
-
createdAt:
|
2259
|
-
updatedAt:
|
2260
|
-
deletedAt:
|
2258
|
+
createdAt: Date;
|
2259
|
+
updatedAt: Date;
|
2260
|
+
deletedAt: Date | null;
|
2261
2261
|
isDefault: boolean;
|
2262
2262
|
systemName: string;
|
2263
2263
|
displayName: string;
|
@@ -2277,9 +2277,9 @@ export declare const commentContract: {
|
|
2277
2277
|
customFieldId: string;
|
2278
2278
|
upload: {
|
2279
2279
|
id: string;
|
2280
|
-
createdAt:
|
2281
|
-
updatedAt:
|
2282
|
-
deletedAt:
|
2280
|
+
createdAt: Date;
|
2281
|
+
updatedAt: Date;
|
2282
|
+
deletedAt: Date | null;
|
2283
2283
|
fileName: string;
|
2284
2284
|
fileKey: string;
|
2285
2285
|
bucketName: string;
|
@@ -2295,21 +2295,21 @@ export declare const commentContract: {
|
|
2295
2295
|
title: string;
|
2296
2296
|
description: string | null;
|
2297
2297
|
status: string;
|
2298
|
-
createdAt:
|
2299
|
-
updatedAt:
|
2300
|
-
deletedAt:
|
2298
|
+
createdAt: Date;
|
2299
|
+
updatedAt: Date;
|
2300
|
+
deletedAt: Date | null;
|
2301
2301
|
customFields: {
|
2302
2302
|
id: string;
|
2303
|
-
createdAt:
|
2304
|
-
updatedAt:
|
2305
|
-
deletedAt:
|
2303
|
+
createdAt: Date;
|
2304
|
+
updatedAt: Date;
|
2305
|
+
deletedAt: Date | null;
|
2306
2306
|
attribute: {
|
2307
2307
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2308
2308
|
id: string;
|
2309
2309
|
position: number;
|
2310
|
-
createdAt:
|
2311
|
-
updatedAt:
|
2312
|
-
deletedAt:
|
2310
|
+
createdAt: Date;
|
2311
|
+
updatedAt: Date;
|
2312
|
+
deletedAt: Date | null;
|
2313
2313
|
isDefault: boolean;
|
2314
2314
|
systemName: string;
|
2315
2315
|
displayName: string;
|
@@ -2329,9 +2329,9 @@ export declare const commentContract: {
|
|
2329
2329
|
customFieldId: string;
|
2330
2330
|
upload: {
|
2331
2331
|
id: string;
|
2332
|
-
createdAt:
|
2333
|
-
updatedAt:
|
2334
|
-
deletedAt:
|
2332
|
+
createdAt: Date;
|
2333
|
+
updatedAt: Date;
|
2334
|
+
deletedAt: Date | null;
|
2335
2335
|
fileName: string;
|
2336
2336
|
fileKey: string;
|
2337
2337
|
bucketName: string;
|
@@ -2352,21 +2352,21 @@ export declare const commentContract: {
|
|
2352
2352
|
title: string;
|
2353
2353
|
description: string | null;
|
2354
2354
|
status: string;
|
2355
|
-
createdAt:
|
2356
|
-
updatedAt:
|
2357
|
-
deletedAt:
|
2355
|
+
createdAt: Date;
|
2356
|
+
updatedAt: Date;
|
2357
|
+
deletedAt: Date | null;
|
2358
2358
|
customFields: {
|
2359
2359
|
id: string;
|
2360
|
-
createdAt:
|
2361
|
-
updatedAt:
|
2362
|
-
deletedAt:
|
2360
|
+
createdAt: Date;
|
2361
|
+
updatedAt: Date;
|
2362
|
+
deletedAt: Date | null;
|
2363
2363
|
attribute: {
|
2364
2364
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2365
2365
|
id: string;
|
2366
2366
|
position: number;
|
2367
|
-
createdAt:
|
2368
|
-
updatedAt:
|
2369
|
-
deletedAt:
|
2367
|
+
createdAt: Date;
|
2368
|
+
updatedAt: Date;
|
2369
|
+
deletedAt: Date | null;
|
2370
2370
|
isDefault: boolean;
|
2371
2371
|
systemName: string;
|
2372
2372
|
displayName: string;
|
@@ -2386,9 +2386,9 @@ export declare const commentContract: {
|
|
2386
2386
|
customFieldId: string;
|
2387
2387
|
upload: {
|
2388
2388
|
id: string;
|
2389
|
-
createdAt:
|
2390
|
-
updatedAt:
|
2391
|
-
deletedAt:
|
2389
|
+
createdAt: Date;
|
2390
|
+
updatedAt: Date;
|
2391
|
+
deletedAt: Date | null;
|
2392
2392
|
fileName: string;
|
2393
2393
|
fileKey: string;
|
2394
2394
|
bucketName: string;
|
@@ -2716,21 +2716,21 @@ export declare const commentContract: {
|
|
2716
2716
|
title: string;
|
2717
2717
|
description: string | null;
|
2718
2718
|
status: string;
|
2719
|
-
createdAt:
|
2720
|
-
updatedAt:
|
2721
|
-
deletedAt:
|
2719
|
+
createdAt: Date;
|
2720
|
+
updatedAt: Date;
|
2721
|
+
deletedAt: Date | null;
|
2722
2722
|
customFields: {
|
2723
2723
|
id: string;
|
2724
|
-
createdAt:
|
2725
|
-
updatedAt:
|
2726
|
-
deletedAt:
|
2724
|
+
createdAt: Date;
|
2725
|
+
updatedAt: Date;
|
2726
|
+
deletedAt: Date | null;
|
2727
2727
|
attribute: {
|
2728
2728
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2729
2729
|
id: string;
|
2730
2730
|
position: number;
|
2731
|
-
createdAt:
|
2732
|
-
updatedAt:
|
2733
|
-
deletedAt:
|
2731
|
+
createdAt: Date;
|
2732
|
+
updatedAt: Date;
|
2733
|
+
deletedAt: Date | null;
|
2734
2734
|
isDefault: boolean;
|
2735
2735
|
systemName: string;
|
2736
2736
|
displayName: string;
|
@@ -2750,9 +2750,9 @@ export declare const commentContract: {
|
|
2750
2750
|
customFieldId: string;
|
2751
2751
|
upload: {
|
2752
2752
|
id: string;
|
2753
|
-
createdAt:
|
2754
|
-
updatedAt:
|
2755
|
-
deletedAt:
|
2753
|
+
createdAt: Date;
|
2754
|
+
updatedAt: Date;
|
2755
|
+
deletedAt: Date | null;
|
2756
2756
|
fileName: string;
|
2757
2757
|
fileKey: string;
|
2758
2758
|
bucketName: string;
|
@@ -2883,21 +2883,21 @@ export declare const commentContract: {
|
|
2883
2883
|
title: string;
|
2884
2884
|
description: string | null;
|
2885
2885
|
status: string;
|
2886
|
-
createdAt:
|
2887
|
-
updatedAt:
|
2888
|
-
deletedAt:
|
2886
|
+
createdAt: Date;
|
2887
|
+
updatedAt: Date;
|
2888
|
+
deletedAt: Date | null;
|
2889
2889
|
customFields: {
|
2890
2890
|
id: string;
|
2891
|
-
createdAt:
|
2892
|
-
updatedAt:
|
2893
|
-
deletedAt:
|
2891
|
+
createdAt: Date;
|
2892
|
+
updatedAt: Date;
|
2893
|
+
deletedAt: Date | null;
|
2894
2894
|
attribute: {
|
2895
2895
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2896
2896
|
id: string;
|
2897
2897
|
position: number;
|
2898
|
-
createdAt:
|
2899
|
-
updatedAt:
|
2900
|
-
deletedAt:
|
2898
|
+
createdAt: Date;
|
2899
|
+
updatedAt: Date;
|
2900
|
+
deletedAt: Date | null;
|
2901
2901
|
isDefault: boolean;
|
2902
2902
|
systemName: string;
|
2903
2903
|
displayName: string;
|
@@ -2917,9 +2917,9 @@ export declare const commentContract: {
|
|
2917
2917
|
customFieldId: string;
|
2918
2918
|
upload: {
|
2919
2919
|
id: string;
|
2920
|
-
createdAt:
|
2921
|
-
updatedAt:
|
2922
|
-
deletedAt:
|
2920
|
+
createdAt: Date;
|
2921
|
+
updatedAt: Date;
|
2922
|
+
deletedAt: Date | null;
|
2923
2923
|
fileName: string;
|
2924
2924
|
fileKey: string;
|
2925
2925
|
bucketName: string;
|
@@ -3362,9 +3362,9 @@ export declare const commentContract: {
|
|
3362
3362
|
mentions: z.ZodArray<z.ZodString, "many">;
|
3363
3363
|
ticket: z.ZodObject<{
|
3364
3364
|
id: z.ZodString;
|
3365
|
-
createdAt: z.
|
3366
|
-
updatedAt: z.
|
3367
|
-
deletedAt: z.ZodNullable<z.
|
3365
|
+
createdAt: z.ZodDate;
|
3366
|
+
updatedAt: z.ZodDate;
|
3367
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3368
3368
|
title: z.ZodString;
|
3369
3369
|
description: z.ZodNullable<z.ZodString>;
|
3370
3370
|
type: z.ZodString;
|
@@ -3378,18 +3378,18 @@ export declare const commentContract: {
|
|
3378
3378
|
ticketNumber: z.ZodOptional<z.ZodNumber>;
|
3379
3379
|
customFields: z.ZodArray<z.ZodObject<{
|
3380
3380
|
id: z.ZodString;
|
3381
|
-
createdAt: z.
|
3382
|
-
updatedAt: z.
|
3383
|
-
deletedAt: z.ZodNullable<z.
|
3381
|
+
createdAt: z.ZodDate;
|
3382
|
+
updatedAt: z.ZodDate;
|
3383
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3384
3384
|
textValue: z.ZodNullable<z.ZodString>;
|
3385
3385
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
3386
3386
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
3387
3387
|
dateValue: z.ZodNullable<z.ZodDate>;
|
3388
3388
|
attribute: z.ZodObject<Omit<{
|
3389
3389
|
id: z.ZodString;
|
3390
|
-
createdAt: z.
|
3391
|
-
updatedAt: z.
|
3392
|
-
deletedAt: z.ZodNullable<z.
|
3390
|
+
createdAt: z.ZodDate;
|
3391
|
+
updatedAt: z.ZodDate;
|
3392
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3393
3393
|
systemName: z.ZodString;
|
3394
3394
|
displayName: z.ZodString;
|
3395
3395
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -3419,23 +3419,23 @@ export declare const commentContract: {
|
|
3419
3419
|
}>, "many">;
|
3420
3420
|
group: z.ZodObject<{
|
3421
3421
|
id: z.ZodString;
|
3422
|
-
createdAt: z.
|
3423
|
-
updatedAt: z.
|
3424
|
-
deletedAt: z.ZodNullable<z.
|
3422
|
+
createdAt: z.ZodDate;
|
3423
|
+
updatedAt: z.ZodDate;
|
3424
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3425
3425
|
systemName: z.ZodString;
|
3426
3426
|
displayName: z.ZodString;
|
3427
3427
|
}, "strip", z.ZodTypeAny, {
|
3428
3428
|
id: string;
|
3429
|
-
createdAt:
|
3430
|
-
updatedAt:
|
3431
|
-
deletedAt:
|
3429
|
+
createdAt: Date;
|
3430
|
+
updatedAt: Date;
|
3431
|
+
deletedAt: Date | null;
|
3432
3432
|
systemName: string;
|
3433
3433
|
displayName: string;
|
3434
3434
|
}, {
|
3435
3435
|
id: string;
|
3436
|
-
createdAt:
|
3437
|
-
updatedAt:
|
3438
|
-
deletedAt:
|
3436
|
+
createdAt: Date;
|
3437
|
+
updatedAt: Date;
|
3438
|
+
deletedAt: Date | null;
|
3439
3439
|
systemName: string;
|
3440
3440
|
displayName: string;
|
3441
3441
|
}>;
|
@@ -3443,9 +3443,9 @@ export declare const commentContract: {
|
|
3443
3443
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3444
3444
|
id: string;
|
3445
3445
|
position: number;
|
3446
|
-
createdAt:
|
3447
|
-
updatedAt:
|
3448
|
-
deletedAt:
|
3446
|
+
createdAt: Date;
|
3447
|
+
updatedAt: Date;
|
3448
|
+
deletedAt: Date | null;
|
3449
3449
|
isDefault: boolean;
|
3450
3450
|
systemName: string;
|
3451
3451
|
displayName: string;
|
@@ -3456,9 +3456,9 @@ export declare const commentContract: {
|
|
3456
3456
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3457
3457
|
id: string;
|
3458
3458
|
position: number;
|
3459
|
-
createdAt:
|
3460
|
-
updatedAt:
|
3461
|
-
deletedAt:
|
3459
|
+
createdAt: Date;
|
3460
|
+
updatedAt: Date;
|
3461
|
+
deletedAt: Date | null;
|
3462
3462
|
isDefault: boolean;
|
3463
3463
|
systemName: string;
|
3464
3464
|
displayName: string;
|
@@ -3474,27 +3474,27 @@ export declare const commentContract: {
|
|
3474
3474
|
customFieldId: z.ZodString;
|
3475
3475
|
upload: z.ZodObject<{
|
3476
3476
|
id: z.ZodString;
|
3477
|
-
createdAt: z.
|
3478
|
-
updatedAt: z.
|
3479
|
-
deletedAt: z.ZodNullable<z.
|
3477
|
+
createdAt: z.ZodDate;
|
3478
|
+
updatedAt: z.ZodDate;
|
3479
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3480
3480
|
bucketName: z.ZodString;
|
3481
3481
|
fileName: z.ZodString;
|
3482
3482
|
fileSize: z.ZodNumber;
|
3483
3483
|
fileKey: z.ZodString;
|
3484
3484
|
}, "strip", z.ZodTypeAny, {
|
3485
3485
|
id: string;
|
3486
|
-
createdAt:
|
3487
|
-
updatedAt:
|
3488
|
-
deletedAt:
|
3486
|
+
createdAt: Date;
|
3487
|
+
updatedAt: Date;
|
3488
|
+
deletedAt: Date | null;
|
3489
3489
|
fileName: string;
|
3490
3490
|
fileKey: string;
|
3491
3491
|
bucketName: string;
|
3492
3492
|
fileSize: number;
|
3493
3493
|
}, {
|
3494
3494
|
id: string;
|
3495
|
-
createdAt:
|
3496
|
-
updatedAt:
|
3497
|
-
deletedAt:
|
3495
|
+
createdAt: Date;
|
3496
|
+
updatedAt: Date;
|
3497
|
+
deletedAt: Date | null;
|
3498
3498
|
fileName: string;
|
3499
3499
|
fileKey: string;
|
3500
3500
|
bucketName: string;
|
@@ -3508,9 +3508,9 @@ export declare const commentContract: {
|
|
3508
3508
|
customFieldId: string;
|
3509
3509
|
upload: {
|
3510
3510
|
id: string;
|
3511
|
-
createdAt:
|
3512
|
-
updatedAt:
|
3513
|
-
deletedAt:
|
3511
|
+
createdAt: Date;
|
3512
|
+
updatedAt: Date;
|
3513
|
+
deletedAt: Date | null;
|
3514
3514
|
fileName: string;
|
3515
3515
|
fileKey: string;
|
3516
3516
|
bucketName: string;
|
@@ -3524,9 +3524,9 @@ export declare const commentContract: {
|
|
3524
3524
|
customFieldId: string;
|
3525
3525
|
upload: {
|
3526
3526
|
id: string;
|
3527
|
-
createdAt:
|
3528
|
-
updatedAt:
|
3529
|
-
deletedAt:
|
3527
|
+
createdAt: Date;
|
3528
|
+
updatedAt: Date;
|
3529
|
+
deletedAt: Date | null;
|
3530
3530
|
fileName: string;
|
3531
3531
|
fileKey: string;
|
3532
3532
|
bucketName: string;
|
@@ -3535,16 +3535,16 @@ export declare const commentContract: {
|
|
3535
3535
|
}>, "many">;
|
3536
3536
|
}, "strip", z.ZodTypeAny, {
|
3537
3537
|
id: string;
|
3538
|
-
createdAt:
|
3539
|
-
updatedAt:
|
3540
|
-
deletedAt:
|
3538
|
+
createdAt: Date;
|
3539
|
+
updatedAt: Date;
|
3540
|
+
deletedAt: Date | null;
|
3541
3541
|
attribute: {
|
3542
3542
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3543
3543
|
id: string;
|
3544
3544
|
position: number;
|
3545
|
-
createdAt:
|
3546
|
-
updatedAt:
|
3547
|
-
deletedAt:
|
3545
|
+
createdAt: Date;
|
3546
|
+
updatedAt: Date;
|
3547
|
+
deletedAt: Date | null;
|
3548
3548
|
isDefault: boolean;
|
3549
3549
|
systemName: string;
|
3550
3550
|
displayName: string;
|
@@ -3564,9 +3564,9 @@ export declare const commentContract: {
|
|
3564
3564
|
customFieldId: string;
|
3565
3565
|
upload: {
|
3566
3566
|
id: string;
|
3567
|
-
createdAt:
|
3568
|
-
updatedAt:
|
3569
|
-
deletedAt:
|
3567
|
+
createdAt: Date;
|
3568
|
+
updatedAt: Date;
|
3569
|
+
deletedAt: Date | null;
|
3570
3570
|
fileName: string;
|
3571
3571
|
fileKey: string;
|
3572
3572
|
bucketName: string;
|
@@ -3575,16 +3575,16 @@ export declare const commentContract: {
|
|
3575
3575
|
}[];
|
3576
3576
|
}, {
|
3577
3577
|
id: string;
|
3578
|
-
createdAt:
|
3579
|
-
updatedAt:
|
3580
|
-
deletedAt:
|
3578
|
+
createdAt: Date;
|
3579
|
+
updatedAt: Date;
|
3580
|
+
deletedAt: Date | null;
|
3581
3581
|
attribute: {
|
3582
3582
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3583
3583
|
id: string;
|
3584
3584
|
position: number;
|
3585
|
-
createdAt:
|
3586
|
-
updatedAt:
|
3587
|
-
deletedAt:
|
3585
|
+
createdAt: Date;
|
3586
|
+
updatedAt: Date;
|
3587
|
+
deletedAt: Date | null;
|
3588
3588
|
isDefault: boolean;
|
3589
3589
|
systemName: string;
|
3590
3590
|
displayName: string;
|
@@ -3604,9 +3604,9 @@ export declare const commentContract: {
|
|
3604
3604
|
customFieldId: string;
|
3605
3605
|
upload: {
|
3606
3606
|
id: string;
|
3607
|
-
createdAt:
|
3608
|
-
updatedAt:
|
3609
|
-
deletedAt:
|
3607
|
+
createdAt: Date;
|
3608
|
+
updatedAt: Date;
|
3609
|
+
deletedAt: Date | null;
|
3610
3610
|
fileName: string;
|
3611
3611
|
fileKey: string;
|
3612
3612
|
bucketName: string;
|
@@ -3622,21 +3622,21 @@ export declare const commentContract: {
|
|
3622
3622
|
title: string;
|
3623
3623
|
description: string | null;
|
3624
3624
|
status: string;
|
3625
|
-
createdAt:
|
3626
|
-
updatedAt:
|
3627
|
-
deletedAt:
|
3625
|
+
createdAt: Date;
|
3626
|
+
updatedAt: Date;
|
3627
|
+
deletedAt: Date | null;
|
3628
3628
|
customFields: {
|
3629
3629
|
id: string;
|
3630
|
-
createdAt:
|
3631
|
-
updatedAt:
|
3632
|
-
deletedAt:
|
3630
|
+
createdAt: Date;
|
3631
|
+
updatedAt: Date;
|
3632
|
+
deletedAt: Date | null;
|
3633
3633
|
attribute: {
|
3634
3634
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3635
3635
|
id: string;
|
3636
3636
|
position: number;
|
3637
|
-
createdAt:
|
3638
|
-
updatedAt:
|
3639
|
-
deletedAt:
|
3637
|
+
createdAt: Date;
|
3638
|
+
updatedAt: Date;
|
3639
|
+
deletedAt: Date | null;
|
3640
3640
|
isDefault: boolean;
|
3641
3641
|
systemName: string;
|
3642
3642
|
displayName: string;
|
@@ -3656,9 +3656,9 @@ export declare const commentContract: {
|
|
3656
3656
|
customFieldId: string;
|
3657
3657
|
upload: {
|
3658
3658
|
id: string;
|
3659
|
-
createdAt:
|
3660
|
-
updatedAt:
|
3661
|
-
deletedAt:
|
3659
|
+
createdAt: Date;
|
3660
|
+
updatedAt: Date;
|
3661
|
+
deletedAt: Date | null;
|
3662
3662
|
fileName: string;
|
3663
3663
|
fileKey: string;
|
3664
3664
|
bucketName: string;
|
@@ -3679,21 +3679,21 @@ export declare const commentContract: {
|
|
3679
3679
|
title: string;
|
3680
3680
|
description: string | null;
|
3681
3681
|
status: string;
|
3682
|
-
createdAt:
|
3683
|
-
updatedAt:
|
3684
|
-
deletedAt:
|
3682
|
+
createdAt: Date;
|
3683
|
+
updatedAt: Date;
|
3684
|
+
deletedAt: Date | null;
|
3685
3685
|
customFields: {
|
3686
3686
|
id: string;
|
3687
|
-
createdAt:
|
3688
|
-
updatedAt:
|
3689
|
-
deletedAt:
|
3687
|
+
createdAt: Date;
|
3688
|
+
updatedAt: Date;
|
3689
|
+
deletedAt: Date | null;
|
3690
3690
|
attribute: {
|
3691
3691
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3692
3692
|
id: string;
|
3693
3693
|
position: number;
|
3694
|
-
createdAt:
|
3695
|
-
updatedAt:
|
3696
|
-
deletedAt:
|
3694
|
+
createdAt: Date;
|
3695
|
+
updatedAt: Date;
|
3696
|
+
deletedAt: Date | null;
|
3697
3697
|
isDefault: boolean;
|
3698
3698
|
systemName: string;
|
3699
3699
|
displayName: string;
|
@@ -3713,9 +3713,9 @@ export declare const commentContract: {
|
|
3713
3713
|
customFieldId: string;
|
3714
3714
|
upload: {
|
3715
3715
|
id: string;
|
3716
|
-
createdAt:
|
3717
|
-
updatedAt:
|
3718
|
-
deletedAt:
|
3716
|
+
createdAt: Date;
|
3717
|
+
updatedAt: Date;
|
3718
|
+
deletedAt: Date | null;
|
3719
3719
|
fileName: string;
|
3720
3720
|
fileKey: string;
|
3721
3721
|
bucketName: string;
|
@@ -4043,21 +4043,21 @@ export declare const commentContract: {
|
|
4043
4043
|
title: string;
|
4044
4044
|
description: string | null;
|
4045
4045
|
status: string;
|
4046
|
-
createdAt:
|
4047
|
-
updatedAt:
|
4048
|
-
deletedAt:
|
4046
|
+
createdAt: Date;
|
4047
|
+
updatedAt: Date;
|
4048
|
+
deletedAt: Date | null;
|
4049
4049
|
customFields: {
|
4050
4050
|
id: string;
|
4051
|
-
createdAt:
|
4052
|
-
updatedAt:
|
4053
|
-
deletedAt:
|
4051
|
+
createdAt: Date;
|
4052
|
+
updatedAt: Date;
|
4053
|
+
deletedAt: Date | null;
|
4054
4054
|
attribute: {
|
4055
4055
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4056
4056
|
id: string;
|
4057
4057
|
position: number;
|
4058
|
-
createdAt:
|
4059
|
-
updatedAt:
|
4060
|
-
deletedAt:
|
4058
|
+
createdAt: Date;
|
4059
|
+
updatedAt: Date;
|
4060
|
+
deletedAt: Date | null;
|
4061
4061
|
isDefault: boolean;
|
4062
4062
|
systemName: string;
|
4063
4063
|
displayName: string;
|
@@ -4077,9 +4077,9 @@ export declare const commentContract: {
|
|
4077
4077
|
customFieldId: string;
|
4078
4078
|
upload: {
|
4079
4079
|
id: string;
|
4080
|
-
createdAt:
|
4081
|
-
updatedAt:
|
4082
|
-
deletedAt:
|
4080
|
+
createdAt: Date;
|
4081
|
+
updatedAt: Date;
|
4082
|
+
deletedAt: Date | null;
|
4083
4083
|
fileName: string;
|
4084
4084
|
fileKey: string;
|
4085
4085
|
bucketName: string;
|
@@ -4210,21 +4210,21 @@ export declare const commentContract: {
|
|
4210
4210
|
title: string;
|
4211
4211
|
description: string | null;
|
4212
4212
|
status: string;
|
4213
|
-
createdAt:
|
4214
|
-
updatedAt:
|
4215
|
-
deletedAt:
|
4213
|
+
createdAt: Date;
|
4214
|
+
updatedAt: Date;
|
4215
|
+
deletedAt: Date | null;
|
4216
4216
|
customFields: {
|
4217
4217
|
id: string;
|
4218
|
-
createdAt:
|
4219
|
-
updatedAt:
|
4220
|
-
deletedAt:
|
4218
|
+
createdAt: Date;
|
4219
|
+
updatedAt: Date;
|
4220
|
+
deletedAt: Date | null;
|
4221
4221
|
attribute: {
|
4222
4222
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4223
4223
|
id: string;
|
4224
4224
|
position: number;
|
4225
|
-
createdAt:
|
4226
|
-
updatedAt:
|
4227
|
-
deletedAt:
|
4225
|
+
createdAt: Date;
|
4226
|
+
updatedAt: Date;
|
4227
|
+
deletedAt: Date | null;
|
4228
4228
|
isDefault: boolean;
|
4229
4229
|
systemName: string;
|
4230
4230
|
displayName: string;
|
@@ -4244,9 +4244,9 @@ export declare const commentContract: {
|
|
4244
4244
|
customFieldId: string;
|
4245
4245
|
upload: {
|
4246
4246
|
id: string;
|
4247
|
-
createdAt:
|
4248
|
-
updatedAt:
|
4249
|
-
deletedAt:
|
4247
|
+
createdAt: Date;
|
4248
|
+
updatedAt: Date;
|
4249
|
+
deletedAt: Date | null;
|
4250
4250
|
fileName: string;
|
4251
4251
|
fileKey: string;
|
4252
4252
|
bucketName: string;
|
@@ -4380,21 +4380,21 @@ export declare const commentContract: {
|
|
4380
4380
|
title: string;
|
4381
4381
|
description: string | null;
|
4382
4382
|
status: string;
|
4383
|
-
createdAt:
|
4384
|
-
updatedAt:
|
4385
|
-
deletedAt:
|
4383
|
+
createdAt: Date;
|
4384
|
+
updatedAt: Date;
|
4385
|
+
deletedAt: Date | null;
|
4386
4386
|
customFields: {
|
4387
4387
|
id: string;
|
4388
|
-
createdAt:
|
4389
|
-
updatedAt:
|
4390
|
-
deletedAt:
|
4388
|
+
createdAt: Date;
|
4389
|
+
updatedAt: Date;
|
4390
|
+
deletedAt: Date | null;
|
4391
4391
|
attribute: {
|
4392
4392
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4393
4393
|
id: string;
|
4394
4394
|
position: number;
|
4395
|
-
createdAt:
|
4396
|
-
updatedAt:
|
4397
|
-
deletedAt:
|
4395
|
+
createdAt: Date;
|
4396
|
+
updatedAt: Date;
|
4397
|
+
deletedAt: Date | null;
|
4398
4398
|
isDefault: boolean;
|
4399
4399
|
systemName: string;
|
4400
4400
|
displayName: string;
|
@@ -4414,9 +4414,9 @@ export declare const commentContract: {
|
|
4414
4414
|
customFieldId: string;
|
4415
4415
|
upload: {
|
4416
4416
|
id: string;
|
4417
|
-
createdAt:
|
4418
|
-
updatedAt:
|
4419
|
-
deletedAt:
|
4417
|
+
createdAt: Date;
|
4418
|
+
updatedAt: Date;
|
4419
|
+
deletedAt: Date | null;
|
4420
4420
|
fileName: string;
|
4421
4421
|
fileKey: string;
|
4422
4422
|
bucketName: string;
|
@@ -4550,21 +4550,21 @@ export declare const commentContract: {
|
|
4550
4550
|
title: string;
|
4551
4551
|
description: string | null;
|
4552
4552
|
status: string;
|
4553
|
-
createdAt:
|
4554
|
-
updatedAt:
|
4555
|
-
deletedAt:
|
4553
|
+
createdAt: Date;
|
4554
|
+
updatedAt: Date;
|
4555
|
+
deletedAt: Date | null;
|
4556
4556
|
customFields: {
|
4557
4557
|
id: string;
|
4558
|
-
createdAt:
|
4559
|
-
updatedAt:
|
4560
|
-
deletedAt:
|
4558
|
+
createdAt: Date;
|
4559
|
+
updatedAt: Date;
|
4560
|
+
deletedAt: Date | null;
|
4561
4561
|
attribute: {
|
4562
4562
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4563
4563
|
id: string;
|
4564
4564
|
position: number;
|
4565
|
-
createdAt:
|
4566
|
-
updatedAt:
|
4567
|
-
deletedAt:
|
4565
|
+
createdAt: Date;
|
4566
|
+
updatedAt: Date;
|
4567
|
+
deletedAt: Date | null;
|
4568
4568
|
isDefault: boolean;
|
4569
4569
|
systemName: string;
|
4570
4570
|
displayName: string;
|
@@ -4584,9 +4584,9 @@ export declare const commentContract: {
|
|
4584
4584
|
customFieldId: string;
|
4585
4585
|
upload: {
|
4586
4586
|
id: string;
|
4587
|
-
createdAt:
|
4588
|
-
updatedAt:
|
4589
|
-
deletedAt:
|
4587
|
+
createdAt: Date;
|
4588
|
+
updatedAt: Date;
|
4589
|
+
deletedAt: Date | null;
|
4590
4590
|
fileName: string;
|
4591
4591
|
fileKey: string;
|
4592
4592
|
bucketName: string;
|