@supernova-studio/client 1.19.2 → 1.19.3

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
@@ -68540,12 +68540,21 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
68540
68540
  type DTOFeatureMessage = z__default.infer<typeof DTOFeatureMessage>;
68541
68541
  declare const DTOFeatureArtifact: z__default.ZodObject<{
68542
68542
  id: z__default.ZodString;
68543
+ /**
68544
+ * Name of the artifact, can include path like `src/components/button.tsx`
68545
+ */
68546
+ name: z__default.ZodString;
68547
+ /**
68548
+ * URL of the artifact's contents
68549
+ */
68543
68550
  url: z__default.ZodString;
68544
68551
  }, "strip", z__default.ZodTypeAny, {
68545
68552
  id: string;
68553
+ name: string;
68546
68554
  url: string;
68547
68555
  }, {
68548
68556
  id: string;
68557
+ name: string;
68549
68558
  url: string;
68550
68559
  }>;
68551
68560
  type DTOFeatureArtifact = z__default.infer<typeof DTOFeatureArtifact>;
package/dist/index.d.ts CHANGED
@@ -68540,12 +68540,21 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
68540
68540
  type DTOFeatureMessage = z__default.infer<typeof DTOFeatureMessage>;
68541
68541
  declare const DTOFeatureArtifact: z__default.ZodObject<{
68542
68542
  id: z__default.ZodString;
68543
+ /**
68544
+ * Name of the artifact, can include path like `src/components/button.tsx`
68545
+ */
68546
+ name: z__default.ZodString;
68547
+ /**
68548
+ * URL of the artifact's contents
68549
+ */
68543
68550
  url: z__default.ZodString;
68544
68551
  }, "strip", z__default.ZodTypeAny, {
68545
68552
  id: string;
68553
+ name: string;
68546
68554
  url: string;
68547
68555
  }, {
68548
68556
  id: string;
68557
+ name: string;
68549
68558
  url: string;
68550
68559
  }>;
68551
68560
  type DTOFeatureArtifact = z__default.infer<typeof DTOFeatureArtifact>;
package/dist/index.js CHANGED
@@ -9128,9 +9128,14 @@ var DTOFeatureAgentResponseTracker = _zod2.default.object({
9128
9128
  });
9129
9129
  var DTOFeatureArtifact = _zod2.default.object({
9130
9130
  id: Id,
9131
+ /**
9132
+ * Name of the artifact, can include path like `src/components/button.tsx`
9133
+ */
9134
+ name: _zod2.default.string(),
9135
+ /**
9136
+ * URL of the artifact's contents
9137
+ */
9131
9138
  url: _zod2.default.string()
9132
- // Implied:
9133
- // type: z.literal("Build"),
9134
9139
  });
9135
9140
  var DTOFeatureIteration = _zod2.default.object({
9136
9141
  id: Id,