@kl1/contracts 1.1.18-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.js CHANGED
@@ -4280,7 +4280,7 @@ var RoomContractsValidationSchema = {
4280
4280
  input: import_zod59.default.object({
4281
4281
  disposition: import_zod59.default.union([
4282
4282
  import_zod59.default.literal("resolved"),
4283
- import_zod59.default.literal("follow_up"),
4283
+ import_zod59.default.literal("follow up"),
4284
4284
  import_zod59.default.literal("escalated"),
4285
4285
  import_zod59.default.literal("dropped"),
4286
4286
  import_zod59.default.literal("prank"),
@@ -4387,11 +4387,12 @@ var roomContract = (0, import_core18.initContract)().router(
4387
4387
  summary: "Update a mail room by id"
4388
4388
  },
4389
4389
  markAsRead: {
4390
- method: "GET",
4390
+ method: "POST",
4391
4391
  path: "/:id",
4392
4392
  pathParams: import_zod60.default.object({
4393
4393
  id: import_zod60.default.string().uuid()
4394
4394
  }),
4395
+ body: null,
4395
4396
  responses: {
4396
4397
  200: DefaultSuccessResponseSchema.extend({
4397
4398
  message: import_zod60.default.string()