@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.
@@ -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<{