@supernova-studio/model 1.37.6 → 1.37.8
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 +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1647,6 +1647,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1647
1647
|
tags: string[];
|
|
1648
1648
|
comment?: string | undefined;
|
|
1649
1649
|
}>>;
|
|
1650
|
+
replyToMessageId: z.ZodOptional<z.ZodString>;
|
|
1650
1651
|
}, "strip", z.ZodTypeAny, {
|
|
1651
1652
|
id: string;
|
|
1652
1653
|
createdAt: Date;
|
|
@@ -1672,6 +1673,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1672
1673
|
tags: string[];
|
|
1673
1674
|
comment?: string | undefined;
|
|
1674
1675
|
} | undefined;
|
|
1676
|
+
replyToMessageId?: string | undefined;
|
|
1675
1677
|
}, {
|
|
1676
1678
|
id: string;
|
|
1677
1679
|
createdAt: Date;
|
|
@@ -1697,6 +1699,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1697
1699
|
tags: string[];
|
|
1698
1700
|
comment?: string | undefined;
|
|
1699
1701
|
} | undefined;
|
|
1702
|
+
replyToMessageId?: string | undefined;
|
|
1700
1703
|
}>;
|
|
1701
1704
|
type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
|
|
1702
1705
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1647,6 +1647,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1647
1647
|
tags: string[];
|
|
1648
1648
|
comment?: string | undefined;
|
|
1649
1649
|
}>>;
|
|
1650
|
+
replyToMessageId: z.ZodOptional<z.ZodString>;
|
|
1650
1651
|
}, "strip", z.ZodTypeAny, {
|
|
1651
1652
|
id: string;
|
|
1652
1653
|
createdAt: Date;
|
|
@@ -1672,6 +1673,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1672
1673
|
tags: string[];
|
|
1673
1674
|
comment?: string | undefined;
|
|
1674
1675
|
} | undefined;
|
|
1676
|
+
replyToMessageId?: string | undefined;
|
|
1675
1677
|
}, {
|
|
1676
1678
|
id: string;
|
|
1677
1679
|
createdAt: Date;
|
|
@@ -1697,6 +1699,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1697
1699
|
tags: string[];
|
|
1698
1700
|
comment?: string | undefined;
|
|
1699
1701
|
} | undefined;
|
|
1702
|
+
replyToMessageId?: string | undefined;
|
|
1700
1703
|
}>;
|
|
1701
1704
|
type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
|
|
1702
1705
|
|
package/dist/index.js
CHANGED
|
@@ -321,7 +321,8 @@ var ForgeChatMessage = _zod.z.object({
|
|
|
321
321
|
updatedAt: _zod.z.coerce.date(),
|
|
322
322
|
opikTraceId: _zod.z.string().optional(),
|
|
323
323
|
sender: ForgeChatMessageSender,
|
|
324
|
-
userScore: ForgeChatMessageUserScore.optional()
|
|
324
|
+
userScore: ForgeChatMessageUserScore.optional(),
|
|
325
|
+
replyToMessageId: _zod.z.string().optional()
|
|
325
326
|
});
|
|
326
327
|
|
|
327
328
|
// src/chat-threads/chat-thread.ts
|