@kl1/contracts 1.0.53 → 1.0.55
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 +104 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +103 -14
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +1033 -1033
- package/dist/src/chat/schema.d.ts +180 -180
- package/dist/src/chat/validation.d.ts +192 -192
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +3026 -1010
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +780 -188
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +296 -296
- package/dist/src/contact/schema.d.ts +20 -20
- package/dist/src/contact/validation.d.ts +150 -150
- package/dist/src/contract.d.ts +8513 -3217
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +240 -240
- package/dist/src/cx-log/schema.d.ts +180 -180
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +100 -100
- package/dist/src/messenger/index.d.ts +100 -100
- package/dist/src/telephony-cdr/index.d.ts +180 -180
- package/dist/src/telephony-cdr/schema.d.ts +40 -40
- package/dist/src/ticket/index.d.ts +3980 -892
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +512 -40
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/upload/index.d.ts +197 -0
- package/dist/src/upload/index.d.ts.map +1 -0
- package/dist/src/upload/schema.d.ts +14 -0
- package/dist/src/upload/schema.d.ts.map +1 -1
- package/dist/src/upload/validation.d.ts +2 -0
- package/dist/src/upload/validation.d.ts.map +1 -0
- package/package.json +1 -1
@@ -614,16 +614,6 @@ export declare const TelephonyCdrSchema: z.ZodObject<{
|
|
614
614
|
};
|
615
615
|
}[];
|
616
616
|
}[];
|
617
|
-
notes: string | null;
|
618
|
-
contactProfile: string | null;
|
619
|
-
socialProfileUrl: string | null;
|
620
|
-
tags: {
|
621
|
-
id: string;
|
622
|
-
name: string;
|
623
|
-
createdAt: Date;
|
624
|
-
updatedAt: Date;
|
625
|
-
deletedAt: Date | null;
|
626
|
-
}[];
|
627
617
|
company: {
|
628
618
|
id: string;
|
629
619
|
createdAt: Date;
|
@@ -634,6 +624,16 @@ export declare const TelephonyCdrSchema: z.ZodObject<{
|
|
634
624
|
phone?: string | null | undefined;
|
635
625
|
industry?: string | null | undefined;
|
636
626
|
} | null;
|
627
|
+
notes: string | null;
|
628
|
+
contactProfile: string | null;
|
629
|
+
socialProfileUrl: string | null;
|
630
|
+
tags: {
|
631
|
+
id: string;
|
632
|
+
name: string;
|
633
|
+
createdAt: Date;
|
634
|
+
updatedAt: Date;
|
635
|
+
deletedAt: Date | null;
|
636
|
+
}[];
|
637
637
|
contactEmails: {
|
638
638
|
id: string;
|
639
639
|
isPrimary: boolean;
|
@@ -717,16 +717,6 @@ export declare const TelephonyCdrSchema: z.ZodObject<{
|
|
717
717
|
};
|
718
718
|
}[];
|
719
719
|
}[];
|
720
|
-
notes: string | null;
|
721
|
-
contactProfile: string | null;
|
722
|
-
socialProfileUrl: string | null;
|
723
|
-
tags: {
|
724
|
-
id: string;
|
725
|
-
name: string;
|
726
|
-
createdAt: Date;
|
727
|
-
updatedAt: Date;
|
728
|
-
deletedAt: Date | null;
|
729
|
-
}[];
|
730
720
|
company: {
|
731
721
|
id: string;
|
732
722
|
createdAt: Date;
|
@@ -737,6 +727,16 @@ export declare const TelephonyCdrSchema: z.ZodObject<{
|
|
737
727
|
phone?: string | null | undefined;
|
738
728
|
industry?: string | null | undefined;
|
739
729
|
} | null;
|
730
|
+
notes: string | null;
|
731
|
+
contactProfile: string | null;
|
732
|
+
socialProfileUrl: string | null;
|
733
|
+
tags: {
|
734
|
+
id: string;
|
735
|
+
name: string;
|
736
|
+
createdAt: Date;
|
737
|
+
updatedAt: Date;
|
738
|
+
deletedAt: Date | null;
|
739
|
+
}[];
|
740
740
|
contactEmails: {
|
741
741
|
id: string;
|
742
742
|
isPrimary: boolean;
|
@@ -1247,16 +1247,6 @@ export declare const TelephonyCdrSchema: z.ZodObject<{
|
|
1247
1247
|
};
|
1248
1248
|
}[];
|
1249
1249
|
}[];
|
1250
|
-
notes: string | null;
|
1251
|
-
contactProfile: string | null;
|
1252
|
-
socialProfileUrl: string | null;
|
1253
|
-
tags: {
|
1254
|
-
id: string;
|
1255
|
-
name: string;
|
1256
|
-
createdAt: Date;
|
1257
|
-
updatedAt: Date;
|
1258
|
-
deletedAt: Date | null;
|
1259
|
-
}[];
|
1260
1250
|
company: {
|
1261
1251
|
id: string;
|
1262
1252
|
createdAt: Date;
|
@@ -1267,6 +1257,16 @@ export declare const TelephonyCdrSchema: z.ZodObject<{
|
|
1267
1257
|
phone?: string | null | undefined;
|
1268
1258
|
industry?: string | null | undefined;
|
1269
1259
|
} | null;
|
1260
|
+
notes: string | null;
|
1261
|
+
contactProfile: string | null;
|
1262
|
+
socialProfileUrl: string | null;
|
1263
|
+
tags: {
|
1264
|
+
id: string;
|
1265
|
+
name: string;
|
1266
|
+
createdAt: Date;
|
1267
|
+
updatedAt: Date;
|
1268
|
+
deletedAt: Date | null;
|
1269
|
+
}[];
|
1270
1270
|
contactEmails: {
|
1271
1271
|
id: string;
|
1272
1272
|
isPrimary: boolean;
|
@@ -1454,16 +1454,6 @@ export declare const TelephonyCdrSchema: z.ZodObject<{
|
|
1454
1454
|
};
|
1455
1455
|
}[];
|
1456
1456
|
}[];
|
1457
|
-
notes: string | null;
|
1458
|
-
contactProfile: string | null;
|
1459
|
-
socialProfileUrl: string | null;
|
1460
|
-
tags: {
|
1461
|
-
id: string;
|
1462
|
-
name: string;
|
1463
|
-
createdAt: Date;
|
1464
|
-
updatedAt: Date;
|
1465
|
-
deletedAt: Date | null;
|
1466
|
-
}[];
|
1467
1457
|
company: {
|
1468
1458
|
id: string;
|
1469
1459
|
createdAt: Date;
|
@@ -1474,6 +1464,16 @@ export declare const TelephonyCdrSchema: z.ZodObject<{
|
|
1474
1464
|
phone?: string | null | undefined;
|
1475
1465
|
industry?: string | null | undefined;
|
1476
1466
|
} | null;
|
1467
|
+
notes: string | null;
|
1468
|
+
contactProfile: string | null;
|
1469
|
+
socialProfileUrl: string | null;
|
1470
|
+
tags: {
|
1471
|
+
id: string;
|
1472
|
+
name: string;
|
1473
|
+
createdAt: Date;
|
1474
|
+
updatedAt: Date;
|
1475
|
+
deletedAt: Date | null;
|
1476
|
+
}[];
|
1477
1477
|
contactEmails: {
|
1478
1478
|
id: string;
|
1479
1479
|
isPrimary: boolean;
|