@kl1/contracts 1.4.20 → 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/index.mjs CHANGED
@@ -1234,8 +1234,9 @@ var GetRoomsSchema = z26.object({
1234
1234
  botpressBotId: z26.string().uuid().optional(),
1235
1235
  queueIds: z26.string().array().optional(),
1236
1236
  // for room multi select filter with queue
1237
- queueFilterIds: z26.string().array().optional()
1237
+ queueFilterIds: z26.string().array().optional(),
1238
1238
  // for room filter with queue
1239
+ orderBy: z26.union([z26.literal("DESC"), z26.literal("ASC")]).optional().default("DESC")
1239
1240
  });
1240
1241
  var UpdateRoomTagsAndNotesSchema = z26.object({
1241
1242
  note: z26.string().optional(),
@@ -8532,9 +8533,9 @@ var SendLineMessageSchema = z108.object({
8532
8533
  var publicApiContract = initContract38().router(
8533
8534
  {
8534
8535
  // Messaging parts
8535
- sendLineMessage: {
8536
+ sendMessage: {
8536
8537
  method: "POST",
8537
- path: "/message/line/send",
8538
+ path: "/message/send",
8538
8539
  body: SendLineMessageSchema,
8539
8540
  responses: {
8540
8541
  201: z109.object({