@kl1/contracts 1.2.6-uat → 1.2.8-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/api-contracts/src/automation-queue/index.d.ts +3 -3
- package/dist/api-contracts/src/automation-queue/validation.d.ts +3 -3
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +11 -5
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +5 -5
- package/dist/api-contracts/src/cx-log/schema.d.ts +3 -3
- package/dist/api-contracts/src/user/index.d.ts +3 -0
- package/dist/api-contracts/src/user/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4242,13 +4242,13 @@ export declare const automationQueueContract: {
|
|
|
4242
4242
|
};
|
|
4243
4243
|
checkHasAssignedRoom: {
|
|
4244
4244
|
body: z.ZodObject<{
|
|
4245
|
-
userId: z.ZodString
|
|
4245
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
4246
4246
|
queueId: z.ZodOptional<z.ZodString>;
|
|
4247
4247
|
}, "strip", z.ZodTypeAny, {
|
|
4248
|
-
userId
|
|
4248
|
+
userId?: string | undefined;
|
|
4249
4249
|
queueId?: string | undefined;
|
|
4250
4250
|
}, {
|
|
4251
|
-
userId
|
|
4251
|
+
userId?: string | undefined;
|
|
4252
4252
|
queueId?: string | undefined;
|
|
4253
4253
|
}>;
|
|
4254
4254
|
method: "POST";
|
|
@@ -51,13 +51,13 @@ export declare const UpdateAutomationQueueSchema: z.ZodObject<{
|
|
|
51
51
|
maximumAssignPerAgent: number;
|
|
52
52
|
}>;
|
|
53
53
|
export declare const CheckHasAssignedRoomSchema: z.ZodObject<{
|
|
54
|
-
userId: z.ZodString
|
|
54
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
55
55
|
queueId: z.ZodOptional<z.ZodString>;
|
|
56
56
|
}, "strip", z.ZodTypeAny, {
|
|
57
|
-
userId
|
|
57
|
+
userId?: string | undefined;
|
|
58
58
|
queueId?: string | undefined;
|
|
59
59
|
}, {
|
|
60
|
-
userId
|
|
60
|
+
userId?: string | undefined;
|
|
61
61
|
queueId?: string | undefined;
|
|
62
62
|
}>;
|
|
63
63
|
//# sourceMappingURL=validation.d.ts.map
|