@supernova-studio/model 1.10.4 → 1.10.5
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 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2383,7 +2383,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2383
2383
|
payload: z.ZodString;
|
|
2384
2384
|
createdAt: z.ZodDate;
|
|
2385
2385
|
updatedAt: z.ZodDate;
|
|
2386
|
-
|
|
2386
|
+
opikTraceId: z.ZodOptional<z.ZodString>;
|
|
2387
2387
|
sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2388
2388
|
type: z.ZodLiteral<"User">;
|
|
2389
2389
|
userId: z.ZodString;
|
|
@@ -2416,7 +2416,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2416
2416
|
type: "Agent";
|
|
2417
2417
|
persona: "Amy";
|
|
2418
2418
|
};
|
|
2419
|
-
|
|
2419
|
+
opikTraceId?: string | undefined;
|
|
2420
2420
|
}, {
|
|
2421
2421
|
id: string;
|
|
2422
2422
|
createdAt: Date;
|
|
@@ -2430,7 +2430,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2430
2430
|
type: "Agent";
|
|
2431
2431
|
persona: "Amy";
|
|
2432
2432
|
};
|
|
2433
|
-
|
|
2433
|
+
opikTraceId?: string | undefined;
|
|
2434
2434
|
}>;
|
|
2435
2435
|
type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
|
|
2436
2436
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2383,7 +2383,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2383
2383
|
payload: z.ZodString;
|
|
2384
2384
|
createdAt: z.ZodDate;
|
|
2385
2385
|
updatedAt: z.ZodDate;
|
|
2386
|
-
|
|
2386
|
+
opikTraceId: z.ZodOptional<z.ZodString>;
|
|
2387
2387
|
sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2388
2388
|
type: z.ZodLiteral<"User">;
|
|
2389
2389
|
userId: z.ZodString;
|
|
@@ -2416,7 +2416,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2416
2416
|
type: "Agent";
|
|
2417
2417
|
persona: "Amy";
|
|
2418
2418
|
};
|
|
2419
|
-
|
|
2419
|
+
opikTraceId?: string | undefined;
|
|
2420
2420
|
}, {
|
|
2421
2421
|
id: string;
|
|
2422
2422
|
createdAt: Date;
|
|
@@ -2430,7 +2430,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2430
2430
|
type: "Agent";
|
|
2431
2431
|
persona: "Amy";
|
|
2432
2432
|
};
|
|
2433
|
-
|
|
2433
|
+
opikTraceId?: string | undefined;
|
|
2434
2434
|
}>;
|
|
2435
2435
|
type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
|
|
2436
2436
|
|
package/dist/index.js
CHANGED
|
@@ -293,7 +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
|
-
|
|
296
|
+
opikTraceId: _zod.z.string().optional(),
|
|
297
297
|
sender: ForgeChatMessageSender
|
|
298
298
|
});
|
|
299
299
|
|