@kl1/contracts 1.1.26-uat → 1.1.27-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 +338 -184
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +337 -184
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +414 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +99 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +260 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +1667 -141
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +236 -0
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +308 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +3445 -104
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +106 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +164 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +154 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +154 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +390 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +390 -0
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +130 -0
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +106 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +154 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +154 -0
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +154 -0
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +294 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +58 -0
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/package.json +1 -1
@@ -155,6 +155,40 @@ export declare const wrapUpFormContract: {
|
|
155
155
|
}>, "many">;
|
156
156
|
callFrom: z.ZodNullable<z.ZodString>;
|
157
157
|
callTo: z.ZodNullable<z.ZodString>;
|
158
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
159
|
+
id: z.ZodString;
|
160
|
+
createdAt: z.ZodDate;
|
161
|
+
updatedAt: z.ZodDate;
|
162
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
163
|
+
textValue: z.ZodNullable<z.ZodString>;
|
164
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
165
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
166
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
167
|
+
entityId: z.ZodString;
|
168
|
+
attributeId: z.ZodString;
|
169
|
+
}, "strip", z.ZodTypeAny, {
|
170
|
+
id: string;
|
171
|
+
createdAt: Date;
|
172
|
+
updatedAt: Date;
|
173
|
+
deletedAt: Date | null;
|
174
|
+
entityId: string;
|
175
|
+
attributeId: string;
|
176
|
+
textValue: string | null;
|
177
|
+
booleanValue: boolean | null;
|
178
|
+
numberValue: number | null;
|
179
|
+
dateValue: Date | null;
|
180
|
+
}, {
|
181
|
+
id: string;
|
182
|
+
createdAt: Date;
|
183
|
+
updatedAt: Date;
|
184
|
+
deletedAt: Date | null;
|
185
|
+
entityId: string;
|
186
|
+
attributeId: string;
|
187
|
+
textValue: string | null;
|
188
|
+
booleanValue: boolean | null;
|
189
|
+
numberValue: number | null;
|
190
|
+
dateValue: Date | null;
|
191
|
+
}>, "many">>;
|
158
192
|
}, "strip", z.ZodTypeAny, {
|
159
193
|
type: string;
|
160
194
|
id: string;
|
@@ -194,6 +228,18 @@ export declare const wrapUpFormContract: {
|
|
194
228
|
callFrom: string | null;
|
195
229
|
callTo: string | null;
|
196
230
|
note: string | null;
|
231
|
+
customFields?: {
|
232
|
+
id: string;
|
233
|
+
createdAt: Date;
|
234
|
+
updatedAt: Date;
|
235
|
+
deletedAt: Date | null;
|
236
|
+
entityId: string;
|
237
|
+
attributeId: string;
|
238
|
+
textValue: string | null;
|
239
|
+
booleanValue: boolean | null;
|
240
|
+
numberValue: number | null;
|
241
|
+
dateValue: Date | null;
|
242
|
+
}[] | undefined;
|
197
243
|
}, {
|
198
244
|
type: string;
|
199
245
|
id: string;
|
@@ -233,6 +279,18 @@ export declare const wrapUpFormContract: {
|
|
233
279
|
callFrom: string | null;
|
234
280
|
callTo: string | null;
|
235
281
|
note: string | null;
|
282
|
+
customFields?: {
|
283
|
+
id: string;
|
284
|
+
createdAt: Date;
|
285
|
+
updatedAt: Date;
|
286
|
+
deletedAt: Date | null;
|
287
|
+
entityId: string;
|
288
|
+
attributeId: string;
|
289
|
+
textValue: string | null;
|
290
|
+
booleanValue: boolean | null;
|
291
|
+
numberValue: number | null;
|
292
|
+
dateValue: Date | null;
|
293
|
+
}[] | undefined;
|
236
294
|
}>;
|
237
295
|
}, "strip", z.ZodTypeAny, {
|
238
296
|
requestId: string;
|
@@ -275,6 +333,18 @@ export declare const wrapUpFormContract: {
|
|
275
333
|
callFrom: string | null;
|
276
334
|
callTo: string | null;
|
277
335
|
note: string | null;
|
336
|
+
customFields?: {
|
337
|
+
id: string;
|
338
|
+
createdAt: Date;
|
339
|
+
updatedAt: Date;
|
340
|
+
deletedAt: Date | null;
|
341
|
+
entityId: string;
|
342
|
+
attributeId: string;
|
343
|
+
textValue: string | null;
|
344
|
+
booleanValue: boolean | null;
|
345
|
+
numberValue: number | null;
|
346
|
+
dateValue: Date | null;
|
347
|
+
}[] | undefined;
|
278
348
|
};
|
279
349
|
}, {
|
280
350
|
requestId: string;
|
@@ -317,6 +387,18 @@ export declare const wrapUpFormContract: {
|
|
317
387
|
callFrom: string | null;
|
318
388
|
callTo: string | null;
|
319
389
|
note: string | null;
|
390
|
+
customFields?: {
|
391
|
+
id: string;
|
392
|
+
createdAt: Date;
|
393
|
+
updatedAt: Date;
|
394
|
+
deletedAt: Date | null;
|
395
|
+
entityId: string;
|
396
|
+
attributeId: string;
|
397
|
+
textValue: string | null;
|
398
|
+
booleanValue: boolean | null;
|
399
|
+
numberValue: number | null;
|
400
|
+
dateValue: Date | null;
|
401
|
+
}[] | undefined;
|
320
402
|
};
|
321
403
|
}>;
|
322
404
|
400: z.ZodObject<{
|
@@ -515,6 +597,40 @@ export declare const wrapUpFormContract: {
|
|
515
597
|
}>, "many">;
|
516
598
|
callFrom: z.ZodNullable<z.ZodString>;
|
517
599
|
callTo: z.ZodNullable<z.ZodString>;
|
600
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
601
|
+
id: z.ZodString;
|
602
|
+
createdAt: z.ZodDate;
|
603
|
+
updatedAt: z.ZodDate;
|
604
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
605
|
+
textValue: z.ZodNullable<z.ZodString>;
|
606
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
607
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
608
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
609
|
+
entityId: z.ZodString;
|
610
|
+
attributeId: z.ZodString;
|
611
|
+
}, "strip", z.ZodTypeAny, {
|
612
|
+
id: string;
|
613
|
+
createdAt: Date;
|
614
|
+
updatedAt: Date;
|
615
|
+
deletedAt: Date | null;
|
616
|
+
entityId: string;
|
617
|
+
attributeId: string;
|
618
|
+
textValue: string | null;
|
619
|
+
booleanValue: boolean | null;
|
620
|
+
numberValue: number | null;
|
621
|
+
dateValue: Date | null;
|
622
|
+
}, {
|
623
|
+
id: string;
|
624
|
+
createdAt: Date;
|
625
|
+
updatedAt: Date;
|
626
|
+
deletedAt: Date | null;
|
627
|
+
entityId: string;
|
628
|
+
attributeId: string;
|
629
|
+
textValue: string | null;
|
630
|
+
booleanValue: boolean | null;
|
631
|
+
numberValue: number | null;
|
632
|
+
dateValue: Date | null;
|
633
|
+
}>, "many">>;
|
518
634
|
}, "strip", z.ZodTypeAny, {
|
519
635
|
type: string;
|
520
636
|
id: string;
|
@@ -554,6 +670,18 @@ export declare const wrapUpFormContract: {
|
|
554
670
|
callFrom: string | null;
|
555
671
|
callTo: string | null;
|
556
672
|
note: string | null;
|
673
|
+
customFields?: {
|
674
|
+
id: string;
|
675
|
+
createdAt: Date;
|
676
|
+
updatedAt: Date;
|
677
|
+
deletedAt: Date | null;
|
678
|
+
entityId: string;
|
679
|
+
attributeId: string;
|
680
|
+
textValue: string | null;
|
681
|
+
booleanValue: boolean | null;
|
682
|
+
numberValue: number | null;
|
683
|
+
dateValue: Date | null;
|
684
|
+
}[] | undefined;
|
557
685
|
}, {
|
558
686
|
type: string;
|
559
687
|
id: string;
|
@@ -593,6 +721,18 @@ export declare const wrapUpFormContract: {
|
|
593
721
|
callFrom: string | null;
|
594
722
|
callTo: string | null;
|
595
723
|
note: string | null;
|
724
|
+
customFields?: {
|
725
|
+
id: string;
|
726
|
+
createdAt: Date;
|
727
|
+
updatedAt: Date;
|
728
|
+
deletedAt: Date | null;
|
729
|
+
entityId: string;
|
730
|
+
attributeId: string;
|
731
|
+
textValue: string | null;
|
732
|
+
booleanValue: boolean | null;
|
733
|
+
numberValue: number | null;
|
734
|
+
dateValue: Date | null;
|
735
|
+
}[] | undefined;
|
596
736
|
}>;
|
597
737
|
}, "strip", z.ZodTypeAny, {
|
598
738
|
requestId: string;
|
@@ -635,6 +775,18 @@ export declare const wrapUpFormContract: {
|
|
635
775
|
callFrom: string | null;
|
636
776
|
callTo: string | null;
|
637
777
|
note: string | null;
|
778
|
+
customFields?: {
|
779
|
+
id: string;
|
780
|
+
createdAt: Date;
|
781
|
+
updatedAt: Date;
|
782
|
+
deletedAt: Date | null;
|
783
|
+
entityId: string;
|
784
|
+
attributeId: string;
|
785
|
+
textValue: string | null;
|
786
|
+
booleanValue: boolean | null;
|
787
|
+
numberValue: number | null;
|
788
|
+
dateValue: Date | null;
|
789
|
+
}[] | undefined;
|
638
790
|
};
|
639
791
|
}, {
|
640
792
|
requestId: string;
|
@@ -677,6 +829,18 @@ export declare const wrapUpFormContract: {
|
|
677
829
|
callFrom: string | null;
|
678
830
|
callTo: string | null;
|
679
831
|
note: string | null;
|
832
|
+
customFields?: {
|
833
|
+
id: string;
|
834
|
+
createdAt: Date;
|
835
|
+
updatedAt: Date;
|
836
|
+
deletedAt: Date | null;
|
837
|
+
entityId: string;
|
838
|
+
attributeId: string;
|
839
|
+
textValue: string | null;
|
840
|
+
booleanValue: boolean | null;
|
841
|
+
numberValue: number | null;
|
842
|
+
dateValue: Date | null;
|
843
|
+
}[] | undefined;
|
680
844
|
};
|
681
845
|
}>;
|
682
846
|
401: z.ZodObject<{
|
@@ -760,6 +924,18 @@ export declare const wrapUpFormContract: {
|
|
760
924
|
callFrom: string | null;
|
761
925
|
callTo: string | null;
|
762
926
|
note: string | null;
|
927
|
+
customFields?: {
|
928
|
+
id: string;
|
929
|
+
createdAt: Date;
|
930
|
+
updatedAt: Date;
|
931
|
+
deletedAt: Date | null;
|
932
|
+
entityId: string;
|
933
|
+
attributeId: string;
|
934
|
+
textValue: string | null;
|
935
|
+
booleanValue: boolean | null;
|
936
|
+
numberValue: number | null;
|
937
|
+
dateValue: Date | null;
|
938
|
+
}[] | undefined;
|
763
939
|
}, z.ZodTypeDef, {
|
764
940
|
type: string;
|
765
941
|
id: string;
|
@@ -799,6 +975,18 @@ export declare const wrapUpFormContract: {
|
|
799
975
|
callFrom: string | null;
|
800
976
|
callTo: string | null;
|
801
977
|
note: string | null;
|
978
|
+
customFields?: {
|
979
|
+
id: string;
|
980
|
+
createdAt: Date;
|
981
|
+
updatedAt: Date;
|
982
|
+
deletedAt: Date | null;
|
983
|
+
entityId: string;
|
984
|
+
attributeId: string;
|
985
|
+
textValue: string | null;
|
986
|
+
booleanValue: boolean | null;
|
987
|
+
numberValue: number | null;
|
988
|
+
dateValue: Date | null;
|
989
|
+
}[] | undefined;
|
802
990
|
}>, "many">;
|
803
991
|
}, "strip", z.ZodTypeAny, {
|
804
992
|
data: {
|
@@ -840,6 +1028,18 @@ export declare const wrapUpFormContract: {
|
|
840
1028
|
callFrom: string | null;
|
841
1029
|
callTo: string | null;
|
842
1030
|
note: string | null;
|
1031
|
+
customFields?: {
|
1032
|
+
id: string;
|
1033
|
+
createdAt: Date;
|
1034
|
+
updatedAt: Date;
|
1035
|
+
deletedAt: Date | null;
|
1036
|
+
entityId: string;
|
1037
|
+
attributeId: string;
|
1038
|
+
textValue: string | null;
|
1039
|
+
booleanValue: boolean | null;
|
1040
|
+
numberValue: number | null;
|
1041
|
+
dateValue: Date | null;
|
1042
|
+
}[] | undefined;
|
843
1043
|
}[];
|
844
1044
|
total: number;
|
845
1045
|
page: number;
|
@@ -885,6 +1085,18 @@ export declare const wrapUpFormContract: {
|
|
885
1085
|
callFrom: string | null;
|
886
1086
|
callTo: string | null;
|
887
1087
|
note: string | null;
|
1088
|
+
customFields?: {
|
1089
|
+
id: string;
|
1090
|
+
createdAt: Date;
|
1091
|
+
updatedAt: Date;
|
1092
|
+
deletedAt: Date | null;
|
1093
|
+
entityId: string;
|
1094
|
+
attributeId: string;
|
1095
|
+
textValue: string | null;
|
1096
|
+
booleanValue: boolean | null;
|
1097
|
+
numberValue: number | null;
|
1098
|
+
dateValue: Date | null;
|
1099
|
+
}[] | undefined;
|
888
1100
|
}[];
|
889
1101
|
total: number;
|
890
1102
|
page?: number | undefined;
|
@@ -1127,6 +1339,40 @@ export declare const wrapUpFormContract: {
|
|
1127
1339
|
}>, "many">;
|
1128
1340
|
callFrom: z.ZodNullable<z.ZodString>;
|
1129
1341
|
callTo: z.ZodNullable<z.ZodString>;
|
1342
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1343
|
+
id: z.ZodString;
|
1344
|
+
createdAt: z.ZodDate;
|
1345
|
+
updatedAt: z.ZodDate;
|
1346
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
1347
|
+
textValue: z.ZodNullable<z.ZodString>;
|
1348
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
1349
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
1350
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
1351
|
+
entityId: z.ZodString;
|
1352
|
+
attributeId: z.ZodString;
|
1353
|
+
}, "strip", z.ZodTypeAny, {
|
1354
|
+
id: string;
|
1355
|
+
createdAt: Date;
|
1356
|
+
updatedAt: Date;
|
1357
|
+
deletedAt: Date | null;
|
1358
|
+
entityId: string;
|
1359
|
+
attributeId: string;
|
1360
|
+
textValue: string | null;
|
1361
|
+
booleanValue: boolean | null;
|
1362
|
+
numberValue: number | null;
|
1363
|
+
dateValue: Date | null;
|
1364
|
+
}, {
|
1365
|
+
id: string;
|
1366
|
+
createdAt: Date;
|
1367
|
+
updatedAt: Date;
|
1368
|
+
deletedAt: Date | null;
|
1369
|
+
entityId: string;
|
1370
|
+
attributeId: string;
|
1371
|
+
textValue: string | null;
|
1372
|
+
booleanValue: boolean | null;
|
1373
|
+
numberValue: number | null;
|
1374
|
+
dateValue: Date | null;
|
1375
|
+
}>, "many">>;
|
1130
1376
|
}, "strip", z.ZodTypeAny, {
|
1131
1377
|
type: string;
|
1132
1378
|
id: string;
|
@@ -1166,6 +1412,18 @@ export declare const wrapUpFormContract: {
|
|
1166
1412
|
callFrom: string | null;
|
1167
1413
|
callTo: string | null;
|
1168
1414
|
note: string | null;
|
1415
|
+
customFields?: {
|
1416
|
+
id: string;
|
1417
|
+
createdAt: Date;
|
1418
|
+
updatedAt: Date;
|
1419
|
+
deletedAt: Date | null;
|
1420
|
+
entityId: string;
|
1421
|
+
attributeId: string;
|
1422
|
+
textValue: string | null;
|
1423
|
+
booleanValue: boolean | null;
|
1424
|
+
numberValue: number | null;
|
1425
|
+
dateValue: Date | null;
|
1426
|
+
}[] | undefined;
|
1169
1427
|
}, {
|
1170
1428
|
type: string;
|
1171
1429
|
id: string;
|
@@ -1205,6 +1463,18 @@ export declare const wrapUpFormContract: {
|
|
1205
1463
|
callFrom: string | null;
|
1206
1464
|
callTo: string | null;
|
1207
1465
|
note: string | null;
|
1466
|
+
customFields?: {
|
1467
|
+
id: string;
|
1468
|
+
createdAt: Date;
|
1469
|
+
updatedAt: Date;
|
1470
|
+
deletedAt: Date | null;
|
1471
|
+
entityId: string;
|
1472
|
+
attributeId: string;
|
1473
|
+
textValue: string | null;
|
1474
|
+
booleanValue: boolean | null;
|
1475
|
+
numberValue: number | null;
|
1476
|
+
dateValue: Date | null;
|
1477
|
+
}[] | undefined;
|
1208
1478
|
}>;
|
1209
1479
|
}, "strip", z.ZodTypeAny, {
|
1210
1480
|
requestId: string;
|
@@ -1247,6 +1517,18 @@ export declare const wrapUpFormContract: {
|
|
1247
1517
|
callFrom: string | null;
|
1248
1518
|
callTo: string | null;
|
1249
1519
|
note: string | null;
|
1520
|
+
customFields?: {
|
1521
|
+
id: string;
|
1522
|
+
createdAt: Date;
|
1523
|
+
updatedAt: Date;
|
1524
|
+
deletedAt: Date | null;
|
1525
|
+
entityId: string;
|
1526
|
+
attributeId: string;
|
1527
|
+
textValue: string | null;
|
1528
|
+
booleanValue: boolean | null;
|
1529
|
+
numberValue: number | null;
|
1530
|
+
dateValue: Date | null;
|
1531
|
+
}[] | undefined;
|
1250
1532
|
};
|
1251
1533
|
}, {
|
1252
1534
|
requestId: string;
|
@@ -1289,6 +1571,18 @@ export declare const wrapUpFormContract: {
|
|
1289
1571
|
callFrom: string | null;
|
1290
1572
|
callTo: string | null;
|
1291
1573
|
note: string | null;
|
1574
|
+
customFields?: {
|
1575
|
+
id: string;
|
1576
|
+
createdAt: Date;
|
1577
|
+
updatedAt: Date;
|
1578
|
+
deletedAt: Date | null;
|
1579
|
+
entityId: string;
|
1580
|
+
attributeId: string;
|
1581
|
+
textValue: string | null;
|
1582
|
+
booleanValue: boolean | null;
|
1583
|
+
numberValue: number | null;
|
1584
|
+
dateValue: Date | null;
|
1585
|
+
}[] | undefined;
|
1292
1586
|
};
|
1293
1587
|
}>;
|
1294
1588
|
400: z.ZodObject<{
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/wrap-up-form/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,sBAAsB,EACvB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC7E,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,2BAA2B,CACnC,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE7E,eAAO,MAAM,kBAAkB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/wrap-up-form/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,sBAAsB,EACvB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC7E,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,2BAA2B,CACnC,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE7E,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0E9B,CAAC"}
|
@@ -128,6 +128,40 @@ export declare const WrapUpFormSchema: z.ZodObject<{
|
|
128
128
|
}>, "many">;
|
129
129
|
callFrom: z.ZodNullable<z.ZodString>;
|
130
130
|
callTo: z.ZodNullable<z.ZodString>;
|
131
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
132
|
+
id: z.ZodString;
|
133
|
+
createdAt: z.ZodDate;
|
134
|
+
updatedAt: z.ZodDate;
|
135
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
136
|
+
textValue: z.ZodNullable<z.ZodString>;
|
137
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
138
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
139
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
140
|
+
entityId: z.ZodString;
|
141
|
+
attributeId: z.ZodString;
|
142
|
+
}, "strip", z.ZodTypeAny, {
|
143
|
+
id: string;
|
144
|
+
createdAt: Date;
|
145
|
+
updatedAt: Date;
|
146
|
+
deletedAt: Date | null;
|
147
|
+
entityId: string;
|
148
|
+
attributeId: string;
|
149
|
+
textValue: string | null;
|
150
|
+
booleanValue: boolean | null;
|
151
|
+
numberValue: number | null;
|
152
|
+
dateValue: Date | null;
|
153
|
+
}, {
|
154
|
+
id: string;
|
155
|
+
createdAt: Date;
|
156
|
+
updatedAt: Date;
|
157
|
+
deletedAt: Date | null;
|
158
|
+
entityId: string;
|
159
|
+
attributeId: string;
|
160
|
+
textValue: string | null;
|
161
|
+
booleanValue: boolean | null;
|
162
|
+
numberValue: number | null;
|
163
|
+
dateValue: Date | null;
|
164
|
+
}>, "many">>;
|
131
165
|
}, "strip", z.ZodTypeAny, {
|
132
166
|
type: string;
|
133
167
|
id: string;
|
@@ -167,6 +201,18 @@ export declare const WrapUpFormSchema: z.ZodObject<{
|
|
167
201
|
callFrom: string | null;
|
168
202
|
callTo: string | null;
|
169
203
|
note: string | null;
|
204
|
+
customFields?: {
|
205
|
+
id: string;
|
206
|
+
createdAt: Date;
|
207
|
+
updatedAt: Date;
|
208
|
+
deletedAt: Date | null;
|
209
|
+
entityId: string;
|
210
|
+
attributeId: string;
|
211
|
+
textValue: string | null;
|
212
|
+
booleanValue: boolean | null;
|
213
|
+
numberValue: number | null;
|
214
|
+
dateValue: Date | null;
|
215
|
+
}[] | undefined;
|
170
216
|
}, {
|
171
217
|
type: string;
|
172
218
|
id: string;
|
@@ -206,5 +252,17 @@ export declare const WrapUpFormSchema: z.ZodObject<{
|
|
206
252
|
callFrom: string | null;
|
207
253
|
callTo: string | null;
|
208
254
|
note: string | null;
|
255
|
+
customFields?: {
|
256
|
+
id: string;
|
257
|
+
createdAt: Date;
|
258
|
+
updatedAt: Date;
|
259
|
+
deletedAt: Date | null;
|
260
|
+
entityId: string;
|
261
|
+
attributeId: string;
|
262
|
+
textValue: string | null;
|
263
|
+
booleanValue: boolean | null;
|
264
|
+
numberValue: number | null;
|
265
|
+
dateValue: Date | null;
|
266
|
+
}[] | undefined;
|
209
267
|
}>;
|
210
268
|
//# sourceMappingURL=schema.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/wrap-up-form/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/wrap-up-form/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAkBpB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS3B,CAAC"}
|