@kl1/contracts 1.2.25-uat → 1.2.26-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
@@ -2616,6 +2616,21 @@ var mainChatRoomContract = initContract7().router(
2616
2616
  url: z39.string(),
2617
2617
  previewUrl: z39.string(),
2618
2618
  imageSetId: z39.string()
2619
+ }),
2620
+ latestMessage: z39.object({
2621
+ message: z39.string(),
2622
+ direction: MessageDirectionTypeSchema,
2623
+ type: MessageTypeSchema,
2624
+ readAt: z39.date(),
2625
+ metadata: z39.any(),
2626
+ platformId: z39.string(),
2627
+ platformMessageId: z39.string(),
2628
+ replyPlatformMessageId: z39.string(),
2629
+ template: z39.any(),
2630
+ locale: MessageLocaleTypeSchema,
2631
+ url: z39.string(),
2632
+ previewUrl: z39.string(),
2633
+ imageSetId: z39.string()
2619
2634
  })
2620
2635
  })
2621
2636
  }),