@supernova-studio/client 1.81.1 → 1.81.3

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
@@ -10568,6 +10568,9 @@ var DTOForgeFigmaNodeCreateRequest = z319.object({
10568
10568
  var DTOForgeFigmaNodeResponse = z319.object({
10569
10569
  figmaNode: DTOForgeFigmaNode
10570
10570
  });
10571
+ var DTOForgeFigmaNodeValidateResponse = z319.object({
10572
+ isValid: z319.boolean()
10573
+ });
10571
10574
 
10572
10575
  // src/api/dto/forge/iteration-message-old.ts
10573
10576
  import { z as z321 } from "zod";
@@ -10708,7 +10711,7 @@ var DTOThreadMessageAttachments = z323.object({
10708
10711
  iterationId: Id.optional(),
10709
10712
  files: DTOFileReference.array().optional(),
10710
10713
  templateId: z323.string().optional(),
10711
- figmaNodeIds: z323.string().uuid().array().optional()
10714
+ figmaNodes: DTOForgeFigmaNode.array().optional()
10712
10715
  });
10713
10716
  var DTOThreadMessage = z323.object({
10714
10717
  id: Id,
@@ -10758,6 +10761,7 @@ var DTOThreadAgentResponseTracker = z323.object({
10758
10761
  var DTOThreadMessageAttachmentsCreateInput = z323.object({
10759
10762
  iterationId: Id.optional(),
10760
10763
  fileIds: z323.string().array().optional(),
10764
+ figmaNodeIds: z323.string().array().optional(),
10761
10765
  templateId: z323.string().optional()
10762
10766
  });
10763
10767
  var DTOThreadMessageCreateInput = DTOThreadMessage.pick({
@@ -21182,6 +21186,7 @@ export {
21182
21186
  DTOForgeFigmaNodeOrigin,
21183
21187
  DTOForgeFigmaNodeResponse,
21184
21188
  DTOForgeFigmaNodeState,
21189
+ DTOForgeFigmaNodeValidateResponse,
21185
21190
  DTOForgeFileArtifact,
21186
21191
  DTOForgeIconSet,
21187
21192
  DTOForgeIconSetTypeV2,