@kl1/contracts 1.1.18-uat → 1.1.20-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
@@ -1369,7 +1369,8 @@ var GetRoomsSchema = z29.object({
1369
1369
  tab: z29.string().optional(),
1370
1370
  type: z29.string().optional(),
1371
1371
  sorting: z29.string().optional().default("desc"),
1372
- caseId: z29.string().optional()
1372
+ caseId: z29.string().optional(),
1373
+ dispositions: z29.array(z29.string()).optional()
1373
1374
  });
1374
1375
  var UpdateRoomTagsAndNotesSchema = z29.object({
1375
1376
  note: z29.string().optional(),
@@ -4214,7 +4215,7 @@ var RoomContractsValidationSchema = {
4214
4215
  input: z59.object({
4215
4216
  disposition: z59.union([
4216
4217
  z59.literal("resolved"),
4217
- z59.literal("follow_up"),
4218
+ z59.literal("follow up"),
4218
4219
  z59.literal("escalated"),
4219
4220
  z59.literal("dropped"),
4220
4221
  z59.literal("prank"),
@@ -4321,11 +4322,12 @@ var roomContract = initContract18().router(
4321
4322
  summary: "Update a mail room by id"
4322
4323
  },
4323
4324
  markAsRead: {
4324
- method: "GET",
4325
+ method: "POST",
4325
4326
  path: "/:id",
4326
4327
  pathParams: z60.object({
4327
4328
  id: z60.string().uuid()
4328
4329
  }),
4330
+ body: null,
4329
4331
  responses: {
4330
4332
  200: DefaultSuccessResponseSchema.extend({
4331
4333
  message: z60.string()
@@ -6903,7 +6905,7 @@ var CreateSnippetGroupSchema = z100.object({
6903
6905
  });
6904
6906
  var UpdateSnippetGroupSchema = z100.object({
6905
6907
  name: z100.string().optional(),
6906
- paltformType: z100.string().optional()
6908
+ platformType: z100.string().optional()
6907
6909
  });
6908
6910
  var DeleteSnippetGroupSchema = z100.object({
6909
6911
  id: z100.string()
@@ -6916,7 +6918,7 @@ var CreateSnippetSchema = z100.object({
6916
6918
  platformType: z100.string()
6917
6919
  });
6918
6920
  var UpdateSnippetSchema = CreateSnippetSchema.extend({
6919
- snippetId: z100.string()
6921
+ snippetContentId: z100.string()
6920
6922
  });
6921
6923
  var DeleteSnippetSchema = z100.object({
6922
6924
  snippetId: z100.string()