@kl1/contracts 1.4.19 → 1.4.21
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 +1192 -1099
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/public-api/index.d.ts +1196 -1101
- package/dist/api-contracts/src/public-api/index.d.ts.map +1 -1
- package/dist/api-contracts/src/public-api/schema.d.ts +1 -0
- package/dist/api-contracts/src/public-api/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/public-api/validation.d.ts +13 -0
- package/dist/api-contracts/src/public-api/validation.d.ts.map +1 -1
- package/dist/index.js +78 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +78 -29
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -28498,10 +28498,12 @@ export declare const mainChatRoomContract: {
|
|
28498
28498
|
botpressBotId: z.ZodOptional<z.ZodString>;
|
28499
28499
|
queueIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
28500
28500
|
queueFilterIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
28501
|
+
orderBy: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"DESC">, z.ZodLiteral<"ASC">]>>>;
|
28501
28502
|
}, "strip", z.ZodTypeAny, {
|
28502
28503
|
page: number;
|
28503
28504
|
pageSize: number;
|
28504
28505
|
sorting: string;
|
28506
|
+
orderBy: "ASC" | "DESC";
|
28505
28507
|
contactTags?: string[] | undefined;
|
28506
28508
|
contacts?: string[] | undefined;
|
28507
28509
|
agents?: string[] | undefined;
|
@@ -28578,6 +28580,7 @@ export declare const mainChatRoomContract: {
|
|
28578
28580
|
botpressBotId?: string | undefined;
|
28579
28581
|
queueIds?: string[] | undefined;
|
28580
28582
|
queueFilterIds?: string[] | undefined;
|
28583
|
+
orderBy?: "ASC" | "DESC" | undefined;
|
28581
28584
|
}>;
|
28582
28585
|
responses: {
|
28583
28586
|
200: z.ZodObject<{
|