@supernova-studio/client 1.29.4 → 1.30.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
@@ -9165,6 +9165,10 @@ var DTOFeatureArtifact = z312.object({
9165
9165
  });
9166
9166
  var DTOFeatureIteration = z312.object({
9167
9167
  id: Id,
9168
+ /**
9169
+ * Name of the iteration
9170
+ */
9171
+ name: z312.string(),
9168
9172
  /**
9169
9173
  * ID of the iteration that this iteration is based on
9170
9174
  */
@@ -9203,8 +9207,11 @@ var DTOFeatureMessageCreateInput = DTOFeatureMessage.pick({
9203
9207
  isPrompt: true,
9204
9208
  startsNewThread: true,
9205
9209
  parentMessageId: true,
9206
- sender: true
9210
+ sender: true,
9211
+ agentResponseTrackerId: true,
9212
+ createdAt: true
9207
9213
  });
9214
+ var DTOFeatureMessageUpdateInput = DTOFeatureMessageCreateInput.pick({ body: true }).merge(DTOFeatureMessage.pick({ agentResponseTrackerId: true })).partial();
9208
9215
  var DTOFeatureMessageReactionCreateInput = z312.object({
9209
9216
  messageId: Id,
9210
9217
  emoji: z312.string()
@@ -18521,6 +18528,7 @@ export {
18521
18528
  DTOFeatureMessageResponse,
18522
18529
  DTOFeatureMessageSender,
18523
18530
  DTOFeatureMessageSystemSender,
18531
+ DTOFeatureMessageUpdateInput,
18524
18532
  DTOFeatureMessageUserSender,
18525
18533
  DTOFigmaComponent,
18526
18534
  DTOFigmaComponentGroup,