@kl1/contracts 1.1.40-uat → 1.1.41-uat
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 +2201 -2205
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2200 -2204
- package/dist/index.mjs.map +1 -1
- package/dist/src/botpress/index.d.ts +538 -0
- package/dist/src/botpress/index.d.ts.map +1 -0
- package/dist/src/botpress/schema.d.ts +81 -0
- package/dist/src/botpress/schema.d.ts.map +1 -0
- package/dist/src/botpress/validation.d.ts +220 -0
- package/dist/src/botpress/validation.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +34445 -34443
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +50 -50
- package/dist/src/chat/validation.d.ts +46 -46
- package/dist/src/comment/index.d.ts +68 -68
- package/dist/src/comment/schema.d.ts +20 -20
- package/dist/src/contact/index.d.ts +79 -79
- package/dist/src/contact/schema.d.ts +12 -12
- package/dist/src/contact/validation.d.ts +49 -49
- package/dist/src/contract.d.ts +681 -56736
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/contract2.d.ts +2 -0
- package/dist/src/contract2.d.ts.map +1 -0
- package/dist/src/cx-log/index.d.ts +48 -54
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +40 -40
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +31 -31
- package/dist/src/line/index.d.ts +31 -31
- package/dist/src/mail/mail-contract.d.ts +7 -7
- package/dist/src/mail/room-contract.d.ts +7 -7
- package/dist/src/mail/schemas/room.schema.d.ts +5 -5
- package/dist/src/messenger/index.d.ts +31 -31
- package/dist/src/messenger/validation.d.ts +11 -11
- package/dist/src/public-api/index.d.ts +59 -59
- package/dist/src/public-api/schema.d.ts +12 -12
- package/dist/src/public-api/validation.d.ts +19 -19
- package/dist/src/snippet/index.d.ts +105 -105
- package/dist/src/snippet/schema.d.ts +40 -40
- package/dist/src/telephony-cdr/index.d.ts +54 -54
- package/dist/src/telephony-cdr/schema.d.ts +14 -14
- package/dist/src/ticket/index.d.ts +111 -111
- package/dist/src/ticket/schema.d.ts +21 -21
- package/dist/src/upload/schema.d.ts +3 -3
- package/dist/src/viber/index.d.ts +31 -31
- package/dist/src/webchat/index.d.ts +32 -34
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +26 -26
- package/package.json +1 -1
@@ -295,7 +295,7 @@ export declare const snippetContract: {
|
|
295
295
|
contentValue: z.ZodNullable<z.ZodString>;
|
296
296
|
contentTemplate: z.ZodNullable<z.ZodAny>;
|
297
297
|
order: z.ZodNumber;
|
298
|
-
upload: z.ZodNullable<z.
|
298
|
+
upload: z.ZodNullable<z.ZodObject<{
|
299
299
|
id: z.ZodString;
|
300
300
|
createdAt: z.ZodDate;
|
301
301
|
updatedAt: z.ZodDate;
|
@@ -305,9 +305,10 @@ export declare const snippetContract: {
|
|
305
305
|
fileSize: z.ZodNumber;
|
306
306
|
fileKey: z.ZodString;
|
307
307
|
fileUrl: z.ZodNullable<z.ZodString>;
|
308
|
-
status: z.
|
308
|
+
status: z.ZodNullable<z.ZodString>;
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
310
310
|
id: string;
|
311
|
+
status: string | null;
|
311
312
|
createdAt: Date;
|
312
313
|
updatedAt: Date;
|
313
314
|
deletedAt: Date | null;
|
@@ -316,9 +317,9 @@ export declare const snippetContract: {
|
|
316
317
|
bucketName: string;
|
317
318
|
fileSize: number;
|
318
319
|
fileUrl: string | null;
|
319
|
-
status?: string | undefined;
|
320
320
|
}, {
|
321
321
|
id: string;
|
322
|
+
status: string | null;
|
322
323
|
createdAt: Date;
|
323
324
|
updatedAt: Date;
|
324
325
|
deletedAt: Date | null;
|
@@ -327,8 +328,7 @@ export declare const snippetContract: {
|
|
327
328
|
bucketName: string;
|
328
329
|
fileSize: number;
|
329
330
|
fileUrl: string | null;
|
330
|
-
|
331
|
-
}>>>;
|
331
|
+
}>>;
|
332
332
|
}, "strip", z.ZodTypeAny, {
|
333
333
|
id: string;
|
334
334
|
order: number;
|
@@ -336,10 +336,9 @@ export declare const snippetContract: {
|
|
336
336
|
updatedAt: Date;
|
337
337
|
deletedAt: Date | null;
|
338
338
|
contentType: string;
|
339
|
-
|
340
|
-
contentTemplate?: any;
|
341
|
-
upload?: {
|
339
|
+
upload: {
|
342
340
|
id: string;
|
341
|
+
status: string | null;
|
343
342
|
createdAt: Date;
|
344
343
|
updatedAt: Date;
|
345
344
|
deletedAt: Date | null;
|
@@ -348,8 +347,9 @@ export declare const snippetContract: {
|
|
348
347
|
bucketName: string;
|
349
348
|
fileSize: number;
|
350
349
|
fileUrl: string | null;
|
351
|
-
|
352
|
-
|
350
|
+
} | null;
|
351
|
+
contentValue: string | null;
|
352
|
+
contentTemplate?: any;
|
353
353
|
}, {
|
354
354
|
id: string;
|
355
355
|
order: number;
|
@@ -357,10 +357,9 @@ export declare const snippetContract: {
|
|
357
357
|
updatedAt: Date;
|
358
358
|
deletedAt: Date | null;
|
359
359
|
contentType: string;
|
360
|
-
|
361
|
-
contentTemplate?: any;
|
362
|
-
upload?: {
|
360
|
+
upload: {
|
363
361
|
id: string;
|
362
|
+
status: string | null;
|
364
363
|
createdAt: Date;
|
365
364
|
updatedAt: Date;
|
366
365
|
deletedAt: Date | null;
|
@@ -369,8 +368,9 @@ export declare const snippetContract: {
|
|
369
368
|
bucketName: string;
|
370
369
|
fileSize: number;
|
371
370
|
fileUrl: string | null;
|
372
|
-
|
373
|
-
|
371
|
+
} | null;
|
372
|
+
contentValue: string | null;
|
373
|
+
contentTemplate?: any;
|
374
374
|
}>;
|
375
375
|
}, "strip", z.ZodTypeAny, {
|
376
376
|
id: string;
|
@@ -393,10 +393,9 @@ export declare const snippetContract: {
|
|
393
393
|
updatedAt: Date;
|
394
394
|
deletedAt: Date | null;
|
395
395
|
contentType: string;
|
396
|
-
|
397
|
-
contentTemplate?: any;
|
398
|
-
upload?: {
|
396
|
+
upload: {
|
399
397
|
id: string;
|
398
|
+
status: string | null;
|
400
399
|
createdAt: Date;
|
401
400
|
updatedAt: Date;
|
402
401
|
deletedAt: Date | null;
|
@@ -405,8 +404,9 @@ export declare const snippetContract: {
|
|
405
404
|
bucketName: string;
|
406
405
|
fileSize: number;
|
407
406
|
fileUrl: string | null;
|
408
|
-
|
409
|
-
|
407
|
+
} | null;
|
408
|
+
contentValue: string | null;
|
409
|
+
contentTemplate?: any;
|
410
410
|
};
|
411
411
|
}, {
|
412
412
|
id: string;
|
@@ -429,10 +429,9 @@ export declare const snippetContract: {
|
|
429
429
|
updatedAt: Date;
|
430
430
|
deletedAt: Date | null;
|
431
431
|
contentType: string;
|
432
|
-
|
433
|
-
contentTemplate?: any;
|
434
|
-
upload?: {
|
432
|
+
upload: {
|
435
433
|
id: string;
|
434
|
+
status: string | null;
|
436
435
|
createdAt: Date;
|
437
436
|
updatedAt: Date;
|
438
437
|
deletedAt: Date | null;
|
@@ -441,8 +440,9 @@ export declare const snippetContract: {
|
|
441
440
|
bucketName: string;
|
442
441
|
fileSize: number;
|
443
442
|
fileUrl: string | null;
|
444
|
-
|
445
|
-
|
443
|
+
} | null;
|
444
|
+
contentValue: string | null;
|
445
|
+
contentTemplate?: any;
|
446
446
|
};
|
447
447
|
}>, "many">;
|
448
448
|
}, "strip", z.ZodTypeAny, {
|
@@ -468,10 +468,9 @@ export declare const snippetContract: {
|
|
468
468
|
updatedAt: Date;
|
469
469
|
deletedAt: Date | null;
|
470
470
|
contentType: string;
|
471
|
-
|
472
|
-
contentTemplate?: any;
|
473
|
-
upload?: {
|
471
|
+
upload: {
|
474
472
|
id: string;
|
473
|
+
status: string | null;
|
475
474
|
createdAt: Date;
|
476
475
|
updatedAt: Date;
|
477
476
|
deletedAt: Date | null;
|
@@ -480,8 +479,9 @@ export declare const snippetContract: {
|
|
480
479
|
bucketName: string;
|
481
480
|
fileSize: number;
|
482
481
|
fileUrl: string | null;
|
483
|
-
|
484
|
-
|
482
|
+
} | null;
|
483
|
+
contentValue: string | null;
|
484
|
+
contentTemplate?: any;
|
485
485
|
};
|
486
486
|
}[];
|
487
487
|
}, {
|
@@ -507,10 +507,9 @@ export declare const snippetContract: {
|
|
507
507
|
updatedAt: Date;
|
508
508
|
deletedAt: Date | null;
|
509
509
|
contentType: string;
|
510
|
-
|
511
|
-
contentTemplate?: any;
|
512
|
-
upload?: {
|
510
|
+
upload: {
|
513
511
|
id: string;
|
512
|
+
status: string | null;
|
514
513
|
createdAt: Date;
|
515
514
|
updatedAt: Date;
|
516
515
|
deletedAt: Date | null;
|
@@ -519,8 +518,9 @@ export declare const snippetContract: {
|
|
519
518
|
bucketName: string;
|
520
519
|
fileSize: number;
|
521
520
|
fileUrl: string | null;
|
522
|
-
|
523
|
-
|
521
|
+
} | null;
|
522
|
+
contentValue: string | null;
|
523
|
+
contentTemplate?: any;
|
524
524
|
};
|
525
525
|
}[];
|
526
526
|
}>;
|
@@ -598,7 +598,7 @@ export declare const snippetContract: {
|
|
598
598
|
contentValue: z.ZodNullable<z.ZodString>;
|
599
599
|
contentTemplate: z.ZodNullable<z.ZodAny>;
|
600
600
|
order: z.ZodNumber;
|
601
|
-
upload: z.ZodNullable<z.
|
601
|
+
upload: z.ZodNullable<z.ZodObject<{
|
602
602
|
id: z.ZodString;
|
603
603
|
createdAt: z.ZodDate;
|
604
604
|
updatedAt: z.ZodDate;
|
@@ -608,9 +608,10 @@ export declare const snippetContract: {
|
|
608
608
|
fileSize: z.ZodNumber;
|
609
609
|
fileKey: z.ZodString;
|
610
610
|
fileUrl: z.ZodNullable<z.ZodString>;
|
611
|
-
status: z.
|
611
|
+
status: z.ZodNullable<z.ZodString>;
|
612
612
|
}, "strip", z.ZodTypeAny, {
|
613
613
|
id: string;
|
614
|
+
status: string | null;
|
614
615
|
createdAt: Date;
|
615
616
|
updatedAt: Date;
|
616
617
|
deletedAt: Date | null;
|
@@ -619,9 +620,9 @@ export declare const snippetContract: {
|
|
619
620
|
bucketName: string;
|
620
621
|
fileSize: number;
|
621
622
|
fileUrl: string | null;
|
622
|
-
status?: string | undefined;
|
623
623
|
}, {
|
624
624
|
id: string;
|
625
|
+
status: string | null;
|
625
626
|
createdAt: Date;
|
626
627
|
updatedAt: Date;
|
627
628
|
deletedAt: Date | null;
|
@@ -630,8 +631,7 @@ export declare const snippetContract: {
|
|
630
631
|
bucketName: string;
|
631
632
|
fileSize: number;
|
632
633
|
fileUrl: string | null;
|
633
|
-
|
634
|
-
}>>>;
|
634
|
+
}>>;
|
635
635
|
}, "strip", z.ZodTypeAny, {
|
636
636
|
id: string;
|
637
637
|
order: number;
|
@@ -639,10 +639,9 @@ export declare const snippetContract: {
|
|
639
639
|
updatedAt: Date;
|
640
640
|
deletedAt: Date | null;
|
641
641
|
contentType: string;
|
642
|
-
|
643
|
-
contentTemplate?: any;
|
644
|
-
upload?: {
|
642
|
+
upload: {
|
645
643
|
id: string;
|
644
|
+
status: string | null;
|
646
645
|
createdAt: Date;
|
647
646
|
updatedAt: Date;
|
648
647
|
deletedAt: Date | null;
|
@@ -651,8 +650,9 @@ export declare const snippetContract: {
|
|
651
650
|
bucketName: string;
|
652
651
|
fileSize: number;
|
653
652
|
fileUrl: string | null;
|
654
|
-
|
655
|
-
|
653
|
+
} | null;
|
654
|
+
contentValue: string | null;
|
655
|
+
contentTemplate?: any;
|
656
656
|
}, {
|
657
657
|
id: string;
|
658
658
|
order: number;
|
@@ -660,10 +660,9 @@ export declare const snippetContract: {
|
|
660
660
|
updatedAt: Date;
|
661
661
|
deletedAt: Date | null;
|
662
662
|
contentType: string;
|
663
|
-
|
664
|
-
contentTemplate?: any;
|
665
|
-
upload?: {
|
663
|
+
upload: {
|
666
664
|
id: string;
|
665
|
+
status: string | null;
|
667
666
|
createdAt: Date;
|
668
667
|
updatedAt: Date;
|
669
668
|
deletedAt: Date | null;
|
@@ -672,8 +671,9 @@ export declare const snippetContract: {
|
|
672
671
|
bucketName: string;
|
673
672
|
fileSize: number;
|
674
673
|
fileUrl: string | null;
|
675
|
-
|
676
|
-
|
674
|
+
} | null;
|
675
|
+
contentValue: string | null;
|
676
|
+
contentTemplate?: any;
|
677
677
|
}>;
|
678
678
|
}, "strip", z.ZodTypeAny, {
|
679
679
|
id: string;
|
@@ -696,10 +696,9 @@ export declare const snippetContract: {
|
|
696
696
|
updatedAt: Date;
|
697
697
|
deletedAt: Date | null;
|
698
698
|
contentType: string;
|
699
|
-
|
700
|
-
contentTemplate?: any;
|
701
|
-
upload?: {
|
699
|
+
upload: {
|
702
700
|
id: string;
|
701
|
+
status: string | null;
|
703
702
|
createdAt: Date;
|
704
703
|
updatedAt: Date;
|
705
704
|
deletedAt: Date | null;
|
@@ -708,8 +707,9 @@ export declare const snippetContract: {
|
|
708
707
|
bucketName: string;
|
709
708
|
fileSize: number;
|
710
709
|
fileUrl: string | null;
|
711
|
-
|
712
|
-
|
710
|
+
} | null;
|
711
|
+
contentValue: string | null;
|
712
|
+
contentTemplate?: any;
|
713
713
|
};
|
714
714
|
}, {
|
715
715
|
id: string;
|
@@ -732,10 +732,9 @@ export declare const snippetContract: {
|
|
732
732
|
updatedAt: Date;
|
733
733
|
deletedAt: Date | null;
|
734
734
|
contentType: string;
|
735
|
-
|
736
|
-
contentTemplate?: any;
|
737
|
-
upload?: {
|
735
|
+
upload: {
|
738
736
|
id: string;
|
737
|
+
status: string | null;
|
739
738
|
createdAt: Date;
|
740
739
|
updatedAt: Date;
|
741
740
|
deletedAt: Date | null;
|
@@ -744,8 +743,9 @@ export declare const snippetContract: {
|
|
744
743
|
bucketName: string;
|
745
744
|
fileSize: number;
|
746
745
|
fileUrl: string | null;
|
747
|
-
|
748
|
-
|
746
|
+
} | null;
|
747
|
+
contentValue: string | null;
|
748
|
+
contentTemplate?: any;
|
749
749
|
};
|
750
750
|
}>;
|
751
751
|
}, "strip", z.ZodTypeAny, {
|
@@ -771,10 +771,9 @@ export declare const snippetContract: {
|
|
771
771
|
updatedAt: Date;
|
772
772
|
deletedAt: Date | null;
|
773
773
|
contentType: string;
|
774
|
-
|
775
|
-
contentTemplate?: any;
|
776
|
-
upload?: {
|
774
|
+
upload: {
|
777
775
|
id: string;
|
776
|
+
status: string | null;
|
778
777
|
createdAt: Date;
|
779
778
|
updatedAt: Date;
|
780
779
|
deletedAt: Date | null;
|
@@ -783,8 +782,9 @@ export declare const snippetContract: {
|
|
783
782
|
bucketName: string;
|
784
783
|
fileSize: number;
|
785
784
|
fileUrl: string | null;
|
786
|
-
|
787
|
-
|
785
|
+
} | null;
|
786
|
+
contentValue: string | null;
|
787
|
+
contentTemplate?: any;
|
788
788
|
};
|
789
789
|
};
|
790
790
|
}, {
|
@@ -810,10 +810,9 @@ export declare const snippetContract: {
|
|
810
810
|
updatedAt: Date;
|
811
811
|
deletedAt: Date | null;
|
812
812
|
contentType: string;
|
813
|
-
|
814
|
-
contentTemplate?: any;
|
815
|
-
upload?: {
|
813
|
+
upload: {
|
816
814
|
id: string;
|
815
|
+
status: string | null;
|
817
816
|
createdAt: Date;
|
818
817
|
updatedAt: Date;
|
819
818
|
deletedAt: Date | null;
|
@@ -822,8 +821,9 @@ export declare const snippetContract: {
|
|
822
821
|
bucketName: string;
|
823
822
|
fileSize: number;
|
824
823
|
fileUrl: string | null;
|
825
|
-
|
826
|
-
|
824
|
+
} | null;
|
825
|
+
contentValue: string | null;
|
826
|
+
contentTemplate?: any;
|
827
827
|
};
|
828
828
|
};
|
829
829
|
}>;
|
@@ -911,7 +911,7 @@ export declare const snippetContract: {
|
|
911
911
|
contentValue: z.ZodNullable<z.ZodString>;
|
912
912
|
contentTemplate: z.ZodNullable<z.ZodAny>;
|
913
913
|
order: z.ZodNumber;
|
914
|
-
upload: z.ZodNullable<z.
|
914
|
+
upload: z.ZodNullable<z.ZodObject<{
|
915
915
|
id: z.ZodString;
|
916
916
|
createdAt: z.ZodDate;
|
917
917
|
updatedAt: z.ZodDate;
|
@@ -921,9 +921,10 @@ export declare const snippetContract: {
|
|
921
921
|
fileSize: z.ZodNumber;
|
922
922
|
fileKey: z.ZodString;
|
923
923
|
fileUrl: z.ZodNullable<z.ZodString>;
|
924
|
-
status: z.
|
924
|
+
status: z.ZodNullable<z.ZodString>;
|
925
925
|
}, "strip", z.ZodTypeAny, {
|
926
926
|
id: string;
|
927
|
+
status: string | null;
|
927
928
|
createdAt: Date;
|
928
929
|
updatedAt: Date;
|
929
930
|
deletedAt: Date | null;
|
@@ -932,9 +933,9 @@ export declare const snippetContract: {
|
|
932
933
|
bucketName: string;
|
933
934
|
fileSize: number;
|
934
935
|
fileUrl: string | null;
|
935
|
-
status?: string | undefined;
|
936
936
|
}, {
|
937
937
|
id: string;
|
938
|
+
status: string | null;
|
938
939
|
createdAt: Date;
|
939
940
|
updatedAt: Date;
|
940
941
|
deletedAt: Date | null;
|
@@ -943,8 +944,7 @@ export declare const snippetContract: {
|
|
943
944
|
bucketName: string;
|
944
945
|
fileSize: number;
|
945
946
|
fileUrl: string | null;
|
946
|
-
|
947
|
-
}>>>;
|
947
|
+
}>>;
|
948
948
|
}, "strip", z.ZodTypeAny, {
|
949
949
|
id: string;
|
950
950
|
order: number;
|
@@ -952,10 +952,9 @@ export declare const snippetContract: {
|
|
952
952
|
updatedAt: Date;
|
953
953
|
deletedAt: Date | null;
|
954
954
|
contentType: string;
|
955
|
-
|
956
|
-
contentTemplate?: any;
|
957
|
-
upload?: {
|
955
|
+
upload: {
|
958
956
|
id: string;
|
957
|
+
status: string | null;
|
959
958
|
createdAt: Date;
|
960
959
|
updatedAt: Date;
|
961
960
|
deletedAt: Date | null;
|
@@ -964,8 +963,9 @@ export declare const snippetContract: {
|
|
964
963
|
bucketName: string;
|
965
964
|
fileSize: number;
|
966
965
|
fileUrl: string | null;
|
967
|
-
|
968
|
-
|
966
|
+
} | null;
|
967
|
+
contentValue: string | null;
|
968
|
+
contentTemplate?: any;
|
969
969
|
}, {
|
970
970
|
id: string;
|
971
971
|
order: number;
|
@@ -973,10 +973,9 @@ export declare const snippetContract: {
|
|
973
973
|
updatedAt: Date;
|
974
974
|
deletedAt: Date | null;
|
975
975
|
contentType: string;
|
976
|
-
|
977
|
-
contentTemplate?: any;
|
978
|
-
upload?: {
|
976
|
+
upload: {
|
979
977
|
id: string;
|
978
|
+
status: string | null;
|
980
979
|
createdAt: Date;
|
981
980
|
updatedAt: Date;
|
982
981
|
deletedAt: Date | null;
|
@@ -985,8 +984,9 @@ export declare const snippetContract: {
|
|
985
984
|
bucketName: string;
|
986
985
|
fileSize: number;
|
987
986
|
fileUrl: string | null;
|
988
|
-
|
989
|
-
|
987
|
+
} | null;
|
988
|
+
contentValue: string | null;
|
989
|
+
contentTemplate?: any;
|
990
990
|
}>;
|
991
991
|
}, "strip", z.ZodTypeAny, {
|
992
992
|
id: string;
|
@@ -1009,10 +1009,9 @@ export declare const snippetContract: {
|
|
1009
1009
|
updatedAt: Date;
|
1010
1010
|
deletedAt: Date | null;
|
1011
1011
|
contentType: string;
|
1012
|
-
|
1013
|
-
contentTemplate?: any;
|
1014
|
-
upload?: {
|
1012
|
+
upload: {
|
1015
1013
|
id: string;
|
1014
|
+
status: string | null;
|
1016
1015
|
createdAt: Date;
|
1017
1016
|
updatedAt: Date;
|
1018
1017
|
deletedAt: Date | null;
|
@@ -1021,8 +1020,9 @@ export declare const snippetContract: {
|
|
1021
1020
|
bucketName: string;
|
1022
1021
|
fileSize: number;
|
1023
1022
|
fileUrl: string | null;
|
1024
|
-
|
1025
|
-
|
1023
|
+
} | null;
|
1024
|
+
contentValue: string | null;
|
1025
|
+
contentTemplate?: any;
|
1026
1026
|
};
|
1027
1027
|
}, {
|
1028
1028
|
id: string;
|
@@ -1045,10 +1045,9 @@ export declare const snippetContract: {
|
|
1045
1045
|
updatedAt: Date;
|
1046
1046
|
deletedAt: Date | null;
|
1047
1047
|
contentType: string;
|
1048
|
-
|
1049
|
-
contentTemplate?: any;
|
1050
|
-
upload?: {
|
1048
|
+
upload: {
|
1051
1049
|
id: string;
|
1050
|
+
status: string | null;
|
1052
1051
|
createdAt: Date;
|
1053
1052
|
updatedAt: Date;
|
1054
1053
|
deletedAt: Date | null;
|
@@ -1057,8 +1056,9 @@ export declare const snippetContract: {
|
|
1057
1056
|
bucketName: string;
|
1058
1057
|
fileSize: number;
|
1059
1058
|
fileUrl: string | null;
|
1060
|
-
|
1061
|
-
|
1059
|
+
} | null;
|
1060
|
+
contentValue: string | null;
|
1061
|
+
contentTemplate?: any;
|
1062
1062
|
};
|
1063
1063
|
}>;
|
1064
1064
|
}, "strip", z.ZodTypeAny, {
|
@@ -1084,10 +1084,9 @@ export declare const snippetContract: {
|
|
1084
1084
|
updatedAt: Date;
|
1085
1085
|
deletedAt: Date | null;
|
1086
1086
|
contentType: string;
|
1087
|
-
|
1088
|
-
contentTemplate?: any;
|
1089
|
-
upload?: {
|
1087
|
+
upload: {
|
1090
1088
|
id: string;
|
1089
|
+
status: string | null;
|
1091
1090
|
createdAt: Date;
|
1092
1091
|
updatedAt: Date;
|
1093
1092
|
deletedAt: Date | null;
|
@@ -1096,8 +1095,9 @@ export declare const snippetContract: {
|
|
1096
1095
|
bucketName: string;
|
1097
1096
|
fileSize: number;
|
1098
1097
|
fileUrl: string | null;
|
1099
|
-
|
1100
|
-
|
1098
|
+
} | null;
|
1099
|
+
contentValue: string | null;
|
1100
|
+
contentTemplate?: any;
|
1101
1101
|
};
|
1102
1102
|
};
|
1103
1103
|
}, {
|
@@ -1123,10 +1123,9 @@ export declare const snippetContract: {
|
|
1123
1123
|
updatedAt: Date;
|
1124
1124
|
deletedAt: Date | null;
|
1125
1125
|
contentType: string;
|
1126
|
-
|
1127
|
-
contentTemplate?: any;
|
1128
|
-
upload?: {
|
1126
|
+
upload: {
|
1129
1127
|
id: string;
|
1128
|
+
status: string | null;
|
1130
1129
|
createdAt: Date;
|
1131
1130
|
updatedAt: Date;
|
1132
1131
|
deletedAt: Date | null;
|
@@ -1135,8 +1134,9 @@ export declare const snippetContract: {
|
|
1135
1134
|
bucketName: string;
|
1136
1135
|
fileSize: number;
|
1137
1136
|
fileUrl: string | null;
|
1138
|
-
|
1139
|
-
|
1137
|
+
} | null;
|
1138
|
+
contentValue: string | null;
|
1139
|
+
contentTemplate?: any;
|
1140
1140
|
};
|
1141
1141
|
};
|
1142
1142
|
}>;
|