@supernova-studio/client 1.10.24 → 1.10.25

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
@@ -9235,8 +9235,13 @@ var DTOForgeChatMessageScoreInput = z313.object({
9235
9235
  categoryName: z313.string().optional(),
9236
9236
  reason: z313.string().optional()
9237
9237
  });
9238
+ var DTOForgeChatMessageTagInput = z313.object({
9239
+ messageId: z313.string(),
9240
+ tags: z313.array(z313.string())
9241
+ });
9238
9242
  var DTOForgeChatMessageScoreRequest = z313.object({
9239
- scores: DTOForgeChatMessageScoreInput.array()
9243
+ scores: DTOForgeChatMessageScoreInput.array(),
9244
+ tags: DTOForgeChatMessageTagInput.array().optional().default([])
9240
9245
  });
9241
9246
 
9242
9247
  // src/api/dto/liveblocks/auth-response.ts
@@ -17044,6 +17049,7 @@ export {
17044
17049
  DTOForgeChatMessageScoreRequest,
17045
17050
  DTOForgeChatMessageSender,
17046
17051
  DTOForgeChatMessageSenderType,
17052
+ DTOForgeChatMessageTagInput,
17047
17053
  DTOForgeChatThread,
17048
17054
  DTOForgeChatThreadCreateInput,
17049
17055
  DTOForgeChatThreadCreateResponse,