@supernova-studio/client 1.80.2 → 1.81.0

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
@@ -154,6 +154,7 @@ var FeaturesSummary = z7.object({
154
154
  forgeActiveFeaturesPerProject: featureLimitedSchema,
155
155
  forgeActiveDocumentsPerProject: featureLimitedSchema,
156
156
  forgePrivateProjects: featureToggleSchema,
157
+ forgeAttachFigmaFrames: featureToggleSchema,
157
158
  forgeActiveProjectContexts: featureLimitedSchema,
158
159
  forgeFeatureWorkspacePublishing: featureToggleSchema,
159
160
  forgeFeatureHideSupernovaUI: featureToggleSchema,
@@ -10464,6 +10465,7 @@ var DTOForgeFigmaNodeOrigin = z317.object({
10464
10465
  * Figma file ID that was passed into the create request as a part of the Figma node URL
10465
10466
  */
10466
10467
  fileId: z317.string(),
10468
+ fileName: z317.string(),
10467
10469
  /**
10468
10470
  * Timestamp of the last edit to the file, can be used for reusing nodes
10469
10471
  * if the file has not changed since
@@ -10472,7 +10474,8 @@ var DTOForgeFigmaNodeOrigin = z317.object({
10472
10474
  /**
10473
10475
  * Figma node ID that was passed into the create request as a part of the Figma node URL
10474
10476
  */
10475
- nodeId: z317.string()
10477
+ nodeId: z317.string(),
10478
+ nodeName: z317.string()
10476
10479
  });
10477
10480
  var DTOForgeFigmaNode = z317.object({
10478
10481
  id: z317.string().uuid(),
@@ -10654,7 +10657,8 @@ var DTOThreadReaction = z321.object({
10654
10657
  var DTOThreadMessageAttachments = z321.object({
10655
10658
  iterationId: Id.optional(),
10656
10659
  files: DTOFileReference.array().optional(),
10657
- templateId: z321.string().optional()
10660
+ templateId: z321.string().optional(),
10661
+ figmaNodeIds: z321.string().uuid().array().optional()
10658
10662
  });
10659
10663
  var DTOThreadMessage = z321.object({
10660
10664
  id: Id,