@supernova-studio/model 1.10.1 → 1.10.2

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.d.mts CHANGED
@@ -2373,6 +2373,7 @@ declare const ForgeChatMessage: z.ZodObject<{
2373
2373
  payload: z.ZodString;
2374
2374
  createdAt: z.ZodDate;
2375
2375
  updatedAt: z.ZodDate;
2376
+ opikSpanId: z.ZodOptional<z.ZodString>;
2376
2377
  sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2377
2378
  type: z.ZodLiteral<"User">;
2378
2379
  userId: z.ZodString;
@@ -2405,6 +2406,7 @@ declare const ForgeChatMessage: z.ZodObject<{
2405
2406
  type: "Agent";
2406
2407
  persona: "Amy";
2407
2408
  };
2409
+ opikSpanId?: string | undefined;
2408
2410
  }, {
2409
2411
  id: string;
2410
2412
  createdAt: Date;
@@ -2418,6 +2420,7 @@ declare const ForgeChatMessage: z.ZodObject<{
2418
2420
  type: "Agent";
2419
2421
  persona: "Amy";
2420
2422
  };
2423
+ opikSpanId?: string | undefined;
2421
2424
  }>;
2422
2425
  type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
2423
2426
 
package/dist/index.d.ts CHANGED
@@ -2373,6 +2373,7 @@ declare const ForgeChatMessage: z.ZodObject<{
2373
2373
  payload: z.ZodString;
2374
2374
  createdAt: z.ZodDate;
2375
2375
  updatedAt: z.ZodDate;
2376
+ opikSpanId: z.ZodOptional<z.ZodString>;
2376
2377
  sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2377
2378
  type: z.ZodLiteral<"User">;
2378
2379
  userId: z.ZodString;
@@ -2405,6 +2406,7 @@ declare const ForgeChatMessage: z.ZodObject<{
2405
2406
  type: "Agent";
2406
2407
  persona: "Amy";
2407
2408
  };
2409
+ opikSpanId?: string | undefined;
2408
2410
  }, {
2409
2411
  id: string;
2410
2412
  createdAt: Date;
@@ -2418,6 +2420,7 @@ declare const ForgeChatMessage: z.ZodObject<{
2418
2420
  type: "Agent";
2419
2421
  persona: "Amy";
2420
2422
  };
2423
+ opikSpanId?: string | undefined;
2421
2424
  }>;
2422
2425
  type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
2423
2426
 
package/dist/index.js CHANGED
@@ -293,6 +293,7 @@ var ForgeChatMessage = _zod.z.object({
293
293
  payload: _zod.z.string(),
294
294
  createdAt: _zod.z.coerce.date(),
295
295
  updatedAt: _zod.z.coerce.date(),
296
+ opikSpanId: _zod.z.string().optional(),
296
297
  sender: ForgeChatMessageSender
297
298
  });
298
299