@supernova-studio/model 1.10.9 → 1.10.11
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 +2953 -3108
- package/dist/index.d.ts +2953 -3108
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -4
- 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()),
|
|
@@ -6065,7 +6074,8 @@ var ExportJobLogEntry = _zod.z.object({
|
|
|
6065
6074
|
message: _zod.z.string()
|
|
6066
6075
|
});
|
|
6067
6076
|
var ExportJobPullRequestDestinationResult = _zod.z.object({
|
|
6068
|
-
pullRequestUrl: _zod.z.string()
|
|
6077
|
+
pullRequestUrl: _zod.z.string(),
|
|
6078
|
+
sparseCheckoutUsed: nullishToOptional(_zod.z.boolean())
|
|
6069
6079
|
});
|
|
6070
6080
|
var ExportJobS3DestinationResult = _zod.z.object({
|
|
6071
6081
|
bucket: _zod.z.string(),
|
|
@@ -6159,6 +6169,8 @@ var FlaggedFeature = _zod.z.enum([
|
|
|
6159
6169
|
"NonCompatibleTypeChanges",
|
|
6160
6170
|
"TypographyUseFontStyle",
|
|
6161
6171
|
"FigmaImporterV3",
|
|
6172
|
+
"SparseCheckoutEnabled",
|
|
6173
|
+
"NoTagsNoBlobsCheckoutEnabled",
|
|
6162
6174
|
"PulsarDebugMode",
|
|
6163
6175
|
"PulsarLogSdkNetwork",
|
|
6164
6176
|
"PulsarCacheSdk",
|