@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.mjs CHANGED
@@ -282,10 +282,19 @@ var Subscription = z13.object({
282
282
 
283
283
  // src/chat-threads/chat-message.ts
284
284
  import { z as z14 } from "zod";
285
- var ForgeChatMessageSenderType = z14.enum(["User", "Agent"]);
285
+ var ForgeChatMessageSenderType = z14.enum([
286
+ "User",
287
+ "Agent",
288
+ "Developer",
289
+ "FunctionCallInput",
290
+ "FunctionCallOutput"
291
+ ]);
286
292
  var ForgeChatMessageSender = z14.discriminatedUnion("type", [
287
293
  z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.User), userId: z14.string() }),
288
- z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.Agent), persona: z14.literal("Amy") })
294
+ z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.Agent), persona: z14.literal("Amy") }),
295
+ z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.Developer) }),
296
+ z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.FunctionCallInput) }),
297
+ z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.FunctionCallOutput) })
289
298
  ]);
290
299
  var ForgeChatMessage = z14.object({
291
300
  id: z14.string(),
@@ -2232,8 +2241,8 @@ var PageBlockTextSpanAttribute = z47.object({
2232
2241
  // Link attributes
2233
2242
  link: nullishToOptional(z47.string()),
2234
2243
  documentationItemId: nullishToOptional(z47.string()),
2244
+ /** @deprecated use openInNewTab */
2235
2245
  openInNewWindow: nullishToOptional(z47.boolean()),
2236
- // deprecated. use openInNewTab
2237
2246
  openInNewTab: nullishToOptional(z47.boolean()),
2238
2247
  // Comment attributes
2239
2248
  commentHighlightId: nullishToOptional(z47.string()),
@@ -6065,7 +6074,8 @@ var ExportJobLogEntry = z184.object({
6065
6074
  message: z184.string()
6066
6075
  });
6067
6076
  var ExportJobPullRequestDestinationResult = z184.object({
6068
- pullRequestUrl: z184.string()
6077
+ pullRequestUrl: z184.string(),
6078
+ sparseCheckoutUsed: nullishToOptional(z184.boolean())
6069
6079
  });
6070
6080
  var ExportJobS3DestinationResult = z184.object({
6071
6081
  bucket: z184.string(),
@@ -6159,6 +6169,8 @@ var FlaggedFeature = z188.enum([
6159
6169
  "NonCompatibleTypeChanges",
6160
6170
  "TypographyUseFontStyle",
6161
6171
  "FigmaImporterV3",
6172
+ "SparseCheckoutEnabled",
6173
+ "NoTagsNoBlobsCheckoutEnabled",
6162
6174
  "PulsarDebugMode",
6163
6175
  "PulsarLogSdkNetwork",
6164
6176
  "PulsarCacheSdk",