@kl1/contracts 1.0.84 → 1.0.86
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 +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/validation.d.ts +7 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +40 -12
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +12 -12
- package/dist/src/cx-log/validation.d.ts +6 -6
- package/dist/src/cx-log/validation.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +7 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +7 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +7 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +7 -0
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -1532,6 +1532,7 @@ var SendMessageToPlatformSchema = z29.object({
|
|
1532
1532
|
fileKey: z29.string()
|
1533
1533
|
}).optional(),
|
1534
1534
|
sender: z29.object({
|
1535
|
+
id: z29.string().uuid(),
|
1535
1536
|
name: z29.string(),
|
1536
1537
|
email: z29.string().email(),
|
1537
1538
|
address: z29.string().nullable(),
|
@@ -3016,6 +3017,7 @@ import z43 from "zod";
|
|
3016
3017
|
import z42 from "zod";
|
3017
3018
|
var sentimentScoreSchema = z42.union([
|
3018
3019
|
z42.literal("positive"),
|
3020
|
+
z42.literal("neutral"),
|
3019
3021
|
z42.literal("negative")
|
3020
3022
|
]);
|
3021
3023
|
var CustomFieldQueryParamsSchema = z42.object({
|
@@ -3033,7 +3035,7 @@ var GetAllCxLogQueryParamsSchema = DefaultQueryParamsSchema.extend({
|
|
3033
3035
|
direction: z42.array(z42.union([z42.literal("inbound"), z42.literal("outbound")])),
|
3034
3036
|
disposition: z42.array(z42.string()),
|
3035
3037
|
sentimentScore: z42.array(sentimentScoreSchema),
|
3036
|
-
csatScore: z42.string(),
|
3038
|
+
csatScore: z42.array(z42.string()),
|
3037
3039
|
sla: z42.array(z42.union([z42.literal("meet"), z42.literal("unmeet")])),
|
3038
3040
|
tags: z42.array(z42.string()),
|
3039
3041
|
// General tags
|