@supernova-studio/model 1.39.1 → 1.40.1
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 +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -35,7 +35,8 @@ var AuthV2Request = z3.object({
|
|
|
35
35
|
codeChallenge: z3.string(),
|
|
36
36
|
codeChallengeMethod: z3.string(),
|
|
37
37
|
redirectUri: z3.string(),
|
|
38
|
-
sessionId: z3.string()
|
|
38
|
+
sessionId: z3.string(),
|
|
39
|
+
clientApp: z3.string().optional()
|
|
39
40
|
});
|
|
40
41
|
|
|
41
42
|
// src/auth/session.ts
|
|
@@ -321,8 +322,7 @@ var ForgeChatMessage = z14.object({
|
|
|
321
322
|
updatedAt: z14.coerce.date(),
|
|
322
323
|
opikTraceId: z14.string().optional(),
|
|
323
324
|
sender: ForgeChatMessageSender,
|
|
324
|
-
userScore: ForgeChatMessageUserScore.optional()
|
|
325
|
-
replyToMessageId: z14.string().optional()
|
|
325
|
+
userScore: ForgeChatMessageUserScore.optional()
|
|
326
326
|
});
|
|
327
327
|
|
|
328
328
|
// src/chat-threads/chat-thread.ts
|