@supernova-studio/client 1.25.0 → 1.27.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
@@ -9149,13 +9149,17 @@ var DTOFeatureAgentResponseTracker = z312.object({
9149
9149
  var DTOFeatureArtifact = z312.object({
9150
9150
  id: Id,
9151
9151
  /**
9152
- * Name of the artifact, can include path like `src/components/button.tsx`
9152
+ * Key of the artifact, can include path like `src/components/button.tsx`
9153
9153
  */
9154
- name: z312.string(),
9154
+ key: z312.string(),
9155
9155
  /**
9156
9156
  * Id of the project file that holds content of this artifact
9157
9157
  */
9158
9158
  fileId: z312.string(),
9159
+ /**
9160
+ * Id of the Iteration that this artifact belongs to
9161
+ */
9162
+ iterationId: Id.optional(),
9159
9163
  /**
9160
9164
  * URL of the feature artifact's contents
9161
9165
  */
@@ -9202,8 +9206,9 @@ var DTOFeatureMessageReactionDeleteInput = z312.object({
9202
9206
  });
9203
9207
  var DTOFeatureArtifactCreateInput = z312.object({
9204
9208
  id: Id,
9205
- name: z312.string(),
9206
- fileId: z312.string()
9209
+ key: z312.string(),
9210
+ fileId: z312.string(),
9211
+ iterationId: Id.optional()
9207
9212
  });
9208
9213
  var DTOFeatureArtifactDeleteInput = z312.object({
9209
9214
  id: Id