@supernova-studio/client 1.30.2 → 1.31.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.d.mts CHANGED
@@ -68873,6 +68873,7 @@ declare const DTOFeatureIterationArtifactDiff: z__default.ZodObject<{
68873
68873
  type DTOFeatureIterationArtifactDiff = z__default.infer<typeof DTOFeatureIterationArtifactDiff>;
68874
68874
  declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
68875
68875
  id: z__default.ZodString;
68876
+ name: z__default.ZodOptional<z__default.ZodString>;
68876
68877
  artifactDiff: z__default.ZodObject<{
68877
68878
  /**
68878
68879
  * Map of artifact key -> artifact content that describes artifacts that will be
@@ -68908,6 +68909,7 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
68908
68909
  }>;
68909
68910
  remove: string[];
68910
68911
  };
68912
+ name?: string | undefined;
68911
68913
  }, {
68912
68914
  id: string;
68913
68915
  artifactDiff: {
@@ -68916,6 +68918,7 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
68916
68918
  }>;
68917
68919
  remove: string[];
68918
68920
  };
68921
+ name?: string | undefined;
68919
68922
  }>;
68920
68923
  type DTOFeatureIterationUpdateArtifactsInput = z__default.infer<typeof DTOFeatureIterationUpdateArtifactsInput>;
68921
68924
  declare const DTOFeatureAgentWorkFinalizeInput: z__default.ZodObject<{
package/dist/index.d.ts CHANGED
@@ -68873,6 +68873,7 @@ declare const DTOFeatureIterationArtifactDiff: z__default.ZodObject<{
68873
68873
  type DTOFeatureIterationArtifactDiff = z__default.infer<typeof DTOFeatureIterationArtifactDiff>;
68874
68874
  declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
68875
68875
  id: z__default.ZodString;
68876
+ name: z__default.ZodOptional<z__default.ZodString>;
68876
68877
  artifactDiff: z__default.ZodObject<{
68877
68878
  /**
68878
68879
  * Map of artifact key -> artifact content that describes artifacts that will be
@@ -68908,6 +68909,7 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
68908
68909
  }>;
68909
68910
  remove: string[];
68910
68911
  };
68912
+ name?: string | undefined;
68911
68913
  }, {
68912
68914
  id: string;
68913
68915
  artifactDiff: {
@@ -68916,6 +68918,7 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
68916
68918
  }>;
68917
68919
  remove: string[];
68918
68920
  };
68921
+ name?: string | undefined;
68919
68922
  }>;
68920
68923
  type DTOFeatureIterationUpdateArtifactsInput = z__default.infer<typeof DTOFeatureIterationUpdateArtifactsInput>;
68921
68924
  declare const DTOFeatureAgentWorkFinalizeInput: z__default.ZodObject<{
package/dist/index.js CHANGED
@@ -9260,6 +9260,7 @@ var DTOFeatureIterationArtifactDiff = _zod2.default.object({
9260
9260
  });
9261
9261
  var DTOFeatureIterationUpdateArtifactsInput = _zod2.default.object({
9262
9262
  id: Id,
9263
+ name: _zod2.default.string().optional(),
9263
9264
  artifactDiff: DTOFeatureIterationArtifactDiff
9264
9265
  });
9265
9266
  var DTOFeatureAgentWorkFinalizeInput = _zod2.default.object({