@kl1/contracts 1.4.18 → 1.4.19
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/contract.d.ts +1057 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/public-api/index.d.ts +1057 -0
- package/dist/api-contracts/src/public-api/index.d.ts.map +1 -1
- package/dist/api-contracts/src/public-api/validation.d.ts.map +1 -1
- package/dist/index.js +57 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +57 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -28497,6 +28497,7 @@ export declare const mainChatRoomContract: {
|
|
28497
28497
|
automationQueueId: z.ZodOptional<z.ZodString>;
|
28498
28498
|
botpressBotId: z.ZodOptional<z.ZodString>;
|
28499
28499
|
queueIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
28500
|
+
queueFilterIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
28500
28501
|
}, "strip", z.ZodTypeAny, {
|
28501
28502
|
page: number;
|
28502
28503
|
pageSize: number;
|
@@ -28536,6 +28537,7 @@ export declare const mainChatRoomContract: {
|
|
28536
28537
|
automationQueueId?: string | undefined;
|
28537
28538
|
botpressBotId?: string | undefined;
|
28538
28539
|
queueIds?: string[] | undefined;
|
28540
|
+
queueFilterIds?: string[] | undefined;
|
28539
28541
|
}, {
|
28540
28542
|
page?: number | undefined;
|
28541
28543
|
pageSize?: number | undefined;
|
@@ -28575,6 +28577,7 @@ export declare const mainChatRoomContract: {
|
|
28575
28577
|
automationQueueId?: string | undefined;
|
28576
28578
|
botpressBotId?: string | undefined;
|
28577
28579
|
queueIds?: string[] | undefined;
|
28580
|
+
queueFilterIds?: string[] | undefined;
|
28578
28581
|
}>;
|
28579
28582
|
responses: {
|
28580
28583
|
200: z.ZodObject<{
|