@supernova-studio/client 1.31.3 → 1.31.4

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
@@ -5219,9 +5219,9 @@ var ProjectFeature = z179.object({
5219
5219
  sectionId: Id.optional(),
5220
5220
  sortOrder: SortOrder.default(0),
5221
5221
  status: ProjectFeatureStatus.default("Draft"),
5222
- initialPrompt: z179.string(),
5223
5222
  updatedAt: z179.coerce.date().optional(),
5224
5223
  numberOfIterations: z179.number().min(0).default(0),
5224
+ numberOfBookmarkedIterations: z179.number().min(0).default(0),
5225
5225
  lastReplyTimestamp: z179.coerce.date().optional()
5226
5226
  });
5227
5227
  var ForgeProjectFigmaNode = z180.object({
@@ -9140,6 +9140,10 @@ var DTOFeatureMessage = z312.object({
9140
9140
  */
9141
9141
  agentResponseTrackerId: Id.optional().nullable(),
9142
9142
  attachments: DTOFeatureMessageAttachments.optional(),
9143
+ /**
9144
+ * If defined, this message is considered to be a reply to different message
9145
+ */
9146
+ replyToMessageId: Id.optional(),
9143
9147
  createdAt: z312.string(),
9144
9148
  updatedAt: z312.string().optional()
9145
9149
  });
@@ -9190,6 +9194,10 @@ var DTOFeatureIteration = z312.object({
9190
9194
  * URL of a static preview of the feature
9191
9195
  */
9192
9196
  staticPreviewUrl: z312.string().optional(),
9197
+ /**
9198
+ * Indicates whether the iteration is bookmarked by user
9199
+ */
9200
+ isBookmarked: z312.boolean().optional(),
9193
9201
  createdAt: z312.string(),
9194
9202
  updatedAt: z312.string().optional()
9195
9203
  });
@@ -9241,6 +9249,10 @@ var DTOFeatureIterationCreateInput = DTOFeatureIteration.pick({
9241
9249
  var DTOFeatureIterationPromoteInput = z312.object({
9242
9250
  id: Id
9243
9251
  });
9252
+ var DTOFeatureIterationUpdateInput = z312.object({
9253
+ id: Id,
9254
+ isBookmarked: z312.boolean().optional()
9255
+ });
9244
9256
  var DTOFeatureIterationTagCreateInput = z312.object({
9245
9257
  featureId: Id,
9246
9258
  iterationId: Id,
@@ -9466,9 +9478,9 @@ var DTOForgeProjectFeatureCreateInput = z318.object({
9466
9478
  id: Id,
9467
9479
  name: z318.string(),
9468
9480
  description: z318.string(),
9469
- initialPrompt: z318.string(),
9470
9481
  sectionId: Id.optional(),
9471
- afterFeatureId: Id.nullable().optional()
9482
+ afterFeatureId: Id.nullable().optional(),
9483
+ initialMessage: DTOFeatureMessageCreateInput
9472
9484
  });
9473
9485
  var DTOForgeProjectFeatureUpdateInput = z318.object({
9474
9486
  id: Id,
@@ -17968,9 +17980,9 @@ var LocalProjectActionExecutor = class {
17968
17980
  updatedAt: /* @__PURE__ */ new Date(),
17969
17981
  createdAt: /* @__PURE__ */ new Date(),
17970
17982
  createdByUserId: this.userId,
17971
- initialPrompt: input.initialPrompt,
17972
17983
  lastReplyTimestamp: void 0,
17973
- numberOfIterations: 0
17984
+ numberOfIterations: 0,
17985
+ numberOfBookmarkedIterations: 0
17974
17986
  });
17975
17987
  }
17976
17988
  //
@@ -18512,6 +18524,7 @@ export {
18512
18524
  DTOFeatureIterationTagListResponse,
18513
18525
  DTOFeatureIterationTagResponse,
18514
18526
  DTOFeatureIterationUpdateArtifactsInput,
18527
+ DTOFeatureIterationUpdateInput,
18515
18528
  DTOFeatureMessage,
18516
18529
  DTOFeatureMessageAgentSender,
18517
18530
  DTOFeatureMessageAttachments,