@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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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