@supernova-studio/client 1.55.0 → 1.55.2

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 CHANGED
@@ -333626,6 +333626,11 @@ type DTOThreadMessageFinalizeInput = z$1.infer<typeof DTOThreadMessageFinalizeIn
333626
333626
  declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
333627
333627
  agentMessageId: z$1.ZodString;
333628
333628
  runtimeError: z$1.ZodOptional<z$1.ZodString>;
333629
+ /**
333630
+ * When `true`, the retry message will be sent to a thread started by the user's message
333631
+ * Useful when user retries a message created in the main thread, but expects the retry to be sent as a thread reply
333632
+ */
333633
+ shouldReplyInThread: z$1.ZodOptional<z$1.ZodBoolean>;
333629
333634
  message: z$1.ZodOptional<z$1.ZodObject<Pick<{
333630
333635
  id: z$1.ZodString;
333631
333636
  threadId: z$1.ZodString;
@@ -333789,6 +333794,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
333789
333794
  body: string;
333790
333795
  } | undefined;
333791
333796
  runtimeError?: string | undefined;
333797
+ shouldReplyInThread?: boolean | undefined;
333792
333798
  }, {
333793
333799
  agentMessageId: string;
333794
333800
  message?: {
@@ -333796,6 +333802,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
333796
333802
  body: string;
333797
333803
  } | undefined;
333798
333804
  runtimeError?: string | undefined;
333805
+ shouldReplyInThread?: boolean | undefined;
333799
333806
  }>;
333800
333807
  type DTOThreadMessageRetryInput = z$1.infer<typeof DTOThreadMessageRetryInput>;
333801
333808
  declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
package/dist/index.d.ts CHANGED
@@ -333626,6 +333626,11 @@ type DTOThreadMessageFinalizeInput = z$1.infer<typeof DTOThreadMessageFinalizeIn
333626
333626
  declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
333627
333627
  agentMessageId: z$1.ZodString;
333628
333628
  runtimeError: z$1.ZodOptional<z$1.ZodString>;
333629
+ /**
333630
+ * When `true`, the retry message will be sent to a thread started by the user's message
333631
+ * Useful when user retries a message created in the main thread, but expects the retry to be sent as a thread reply
333632
+ */
333633
+ shouldReplyInThread: z$1.ZodOptional<z$1.ZodBoolean>;
333629
333634
  message: z$1.ZodOptional<z$1.ZodObject<Pick<{
333630
333635
  id: z$1.ZodString;
333631
333636
  threadId: z$1.ZodString;
@@ -333789,6 +333794,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
333789
333794
  body: string;
333790
333795
  } | undefined;
333791
333796
  runtimeError?: string | undefined;
333797
+ shouldReplyInThread?: boolean | undefined;
333792
333798
  }, {
333793
333799
  agentMessageId: string;
333794
333800
  message?: {
@@ -333796,6 +333802,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
333796
333802
  body: string;
333797
333803
  } | undefined;
333798
333804
  runtimeError?: string | undefined;
333805
+ shouldReplyInThread?: boolean | undefined;
333799
333806
  }>;
333800
333807
  type DTOThreadMessageRetryInput = z$1.infer<typeof DTOThreadMessageRetryInput>;
333801
333808
  declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
package/dist/index.js CHANGED
@@ -5768,7 +5768,6 @@ var FlaggedFeature = _zod.z.enum([
5768
5768
  "ShadowPropsKeepAliases",
5769
5769
  "NonCompatibleTypeChanges",
5770
5770
  "TypographyUseFontStyle",
5771
- "FigmaImporterV3",
5772
5771
  "SparseCheckoutEnabled",
5773
5772
  "NoTagsNoBlobsCheckoutEnabled",
5774
5773
  "PulsarDebugMode",
@@ -10519,6 +10518,11 @@ var DTOThreadMessageFinalizeInput = _zod2.default.object({
10519
10518
  var DTOThreadMessageRetryInput = _zod2.default.object({
10520
10519
  agentMessageId: Id,
10521
10520
  runtimeError: _zod2.default.string().optional(),
10521
+ /**
10522
+ * When `true`, the retry message will be sent to a thread started by the user's message
10523
+ * Useful when user retries a message created in the main thread, but expects the retry to be sent as a thread reply
10524
+ */
10525
+ shouldReplyInThread: _zod2.default.boolean().optional(),
10522
10526
  message: DTOThreadMessage.pick({ id: true, body: true }).optional()
10523
10527
  });
10524
10528
  var DTOThreadMessageUpdateInput = DTOThreadMessage.pick({