@kl1/contracts 1.1.17-uat → 1.1.19-uat

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
@@ -1368,7 +1368,8 @@ var GetRoomsSchema = z29.object({
1368
1368
  notes: z29.string().optional(),
1369
1369
  tab: z29.string().optional(),
1370
1370
  type: z29.string().optional(),
1371
- sorting: z29.string().optional().default("desc")
1371
+ sorting: z29.string().optional().default("desc"),
1372
+ caseId: z29.string().optional()
1372
1373
  });
1373
1374
  var UpdateRoomTagsAndNotesSchema = z29.object({
1374
1375
  note: z29.string().optional(),
@@ -4213,7 +4214,7 @@ var RoomContractsValidationSchema = {
4213
4214
  input: z59.object({
4214
4215
  disposition: z59.union([
4215
4216
  z59.literal("resolved"),
4216
- z59.literal("follow_up"),
4217
+ z59.literal("follow up"),
4217
4218
  z59.literal("escalated"),
4218
4219
  z59.literal("dropped"),
4219
4220
  z59.literal("prank"),
@@ -4320,11 +4321,12 @@ var roomContract = initContract18().router(
4320
4321
  summary: "Update a mail room by id"
4321
4322
  },
4322
4323
  markAsRead: {
4323
- method: "GET",
4324
+ method: "POST",
4324
4325
  path: "/:id",
4325
4326
  pathParams: z60.object({
4326
4327
  id: z60.string().uuid()
4327
4328
  }),
4329
+ body: null,
4328
4330
  responses: {
4329
4331
  200: DefaultSuccessResponseSchema.extend({
4330
4332
  message: z60.string()