@kl1/contracts 1.4.9 → 1.4.11
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/chat/index.d.ts +3 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +3 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contact/index.d.ts +2 -2
- package/dist/api-contracts/src/contract.d.ts +2 -2
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -28496,6 +28496,7 @@ export declare const mainChatRoomContract: {
|
|
28496
28496
|
holdLabelId: z.ZodOptional<z.ZodString>;
|
28497
28497
|
automationQueueId: z.ZodOptional<z.ZodString>;
|
28498
28498
|
botpressBotId: z.ZodOptional<z.ZodString>;
|
28499
|
+
queueIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
28499
28500
|
}, "strip", z.ZodTypeAny, {
|
28500
28501
|
page: number;
|
28501
28502
|
pageSize: number;
|
@@ -28534,6 +28535,7 @@ export declare const mainChatRoomContract: {
|
|
28534
28535
|
holdLabelId?: string | undefined;
|
28535
28536
|
automationQueueId?: string | undefined;
|
28536
28537
|
botpressBotId?: string | undefined;
|
28538
|
+
queueIds?: string[] | undefined;
|
28537
28539
|
}, {
|
28538
28540
|
page?: number | undefined;
|
28539
28541
|
pageSize?: number | undefined;
|
@@ -28572,6 +28574,7 @@ export declare const mainChatRoomContract: {
|
|
28572
28574
|
holdLabelId?: string | undefined;
|
28573
28575
|
automationQueueId?: string | undefined;
|
28574
28576
|
botpressBotId?: string | undefined;
|
28577
|
+
queueIds?: string[] | undefined;
|
28575
28578
|
}>;
|
28576
28579
|
responses: {
|
28577
28580
|
200: z.ZodObject<{
|