@kl1/contracts 1.1.19-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(),
@@ -6904,7 +6905,7 @@ var CreateSnippetGroupSchema = z100.object({
6904
6905
  });
6905
6906
  var UpdateSnippetGroupSchema = z100.object({
6906
6907
  name: z100.string().optional(),
6907
- paltformType: z100.string().optional()
6908
+ platformType: z100.string().optional()
6908
6909
  });
6909
6910
  var DeleteSnippetGroupSchema = z100.object({
6910
6911
  id: z100.string()
@@ -6917,7 +6918,7 @@ var CreateSnippetSchema = z100.object({
6917
6918
  platformType: z100.string()
6918
6919
  });
6919
6920
  var UpdateSnippetSchema = CreateSnippetSchema.extend({
6920
- snippetId: z100.string()
6921
+ snippetContentId: z100.string()
6921
6922
  });
6922
6923
  var DeleteSnippetSchema = z100.object({
6923
6924
  snippetId: z100.string()