@supernova-studio/model 1.10.9 → 1.10.10
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 +2889 -3103
- package/dist/index.d.ts +2889 -3103
- package/dist/index.js +12 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -282,10 +282,19 @@ var Subscription = _zod.z.object({
|
|
|
282
282
|
|
|
283
283
|
// src/chat-threads/chat-message.ts
|
|
284
284
|
|
|
285
|
-
var ForgeChatMessageSenderType = _zod.z.enum([
|
|
285
|
+
var ForgeChatMessageSenderType = _zod.z.enum([
|
|
286
|
+
"User",
|
|
287
|
+
"Agent",
|
|
288
|
+
"Developer",
|
|
289
|
+
"FunctionCallInput",
|
|
290
|
+
"FunctionCallOutput"
|
|
291
|
+
]);
|
|
286
292
|
var ForgeChatMessageSender = _zod.z.discriminatedUnion("type", [
|
|
287
293
|
_zod.z.object({ type: _zod.z.literal(ForgeChatMessageSenderType.Values.User), userId: _zod.z.string() }),
|
|
288
|
-
_zod.z.object({ type: _zod.z.literal(ForgeChatMessageSenderType.Values.Agent), persona: _zod.z.literal("Amy") })
|
|
294
|
+
_zod.z.object({ type: _zod.z.literal(ForgeChatMessageSenderType.Values.Agent), persona: _zod.z.literal("Amy") }),
|
|
295
|
+
_zod.z.object({ type: _zod.z.literal(ForgeChatMessageSenderType.Values.Developer) }),
|
|
296
|
+
_zod.z.object({ type: _zod.z.literal(ForgeChatMessageSenderType.Values.FunctionCallInput) }),
|
|
297
|
+
_zod.z.object({ type: _zod.z.literal(ForgeChatMessageSenderType.Values.FunctionCallOutput) })
|
|
289
298
|
]);
|
|
290
299
|
var ForgeChatMessage = _zod.z.object({
|
|
291
300
|
id: _zod.z.string(),
|
|
@@ -2232,8 +2241,8 @@ var PageBlockTextSpanAttribute = _zod.z.object({
|
|
|
2232
2241
|
// Link attributes
|
|
2233
2242
|
link: nullishToOptional(_zod.z.string()),
|
|
2234
2243
|
documentationItemId: nullishToOptional(_zod.z.string()),
|
|
2244
|
+
/** @deprecated use openInNewTab */
|
|
2235
2245
|
openInNewWindow: nullishToOptional(_zod.z.boolean()),
|
|
2236
|
-
// deprecated. use openInNewTab
|
|
2237
2246
|
openInNewTab: nullishToOptional(_zod.z.boolean()),
|
|
2238
2247
|
// Comment attributes
|
|
2239
2248
|
commentHighlightId: nullishToOptional(_zod.z.string()),
|