@supernova-studio/model 1.37.6 → 1.38.0

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
@@ -247,7 +247,7 @@ var PriceSchema = z11.object({
247
247
 
248
248
  // src/billing/product.ts
249
249
  import { z as z12 } from "zod";
250
- var ProductCodeSchema = z12.enum(["free", "team", "company", "enterprise"]);
250
+ var ProductCodeSchema = z12.enum(["free", "team", "company", "enterprise", "pro"]);
251
251
  var ProductCode = ProductCodeSchema.enum;
252
252
 
253
253
  // src/billing/subscription.ts
@@ -321,7 +321,8 @@ var ForgeChatMessage = z14.object({
321
321
  updatedAt: z14.coerce.date(),
322
322
  opikTraceId: z14.string().optional(),
323
323
  sender: ForgeChatMessageSender,
324
- userScore: ForgeChatMessageUserScore.optional()
324
+ userScore: ForgeChatMessageUserScore.optional(),
325
+ replyToMessageId: z14.string().optional()
325
326
  });
326
327
 
327
328
  // src/chat-threads/chat-thread.ts