@kl1/contracts 1.4.63 → 1.4.64

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
@@ -1273,7 +1273,7 @@ var ActionMessageSchema = z26.object({
1273
1273
  messageId: z26.string().uuid()
1274
1274
  });
1275
1275
  var SendMessageSchema = z26.object({
1276
- createdAt: z26.string().time().optional(),
1276
+ createdAt: z26.string().transform((str) => new Date(str)),
1277
1277
  roomId: z26.string().uuid(),
1278
1278
  messageType: MessageTypeSchema,
1279
1279
  message: z26.string().optional(),
@@ -10131,14 +10131,7 @@ var RoomContractsValidationSchema = {
10131
10131
  },
10132
10132
  update: {
10133
10133
  input: z126.object({
10134
- disposition: z126.union([
10135
- z126.literal("resolved"),
10136
- z126.literal("follow up"),
10137
- z126.literal("escalated"),
10138
- z126.literal("dropped"),
10139
- z126.literal("prank"),
10140
- z126.literal("blank")
10141
- ]).optional().nullable(),
10134
+ disposition: z126.string().optional().nullable(),
10142
10135
  assigneeId: z126.string().uuid().optional().nullable(),
10143
10136
  note: z126.string().optional(),
10144
10137
  tags: z126.array(z126.string().uuid()).optional(),