@supernova-studio/client 1.40.8 → 1.40.10

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
@@ -9263,7 +9263,7 @@ var DTOFeatureArtifact = z311.object({
9263
9263
  /**
9264
9264
  * Id of the project file that holds content of this artifact
9265
9265
  */
9266
- fileId: z311.string(),
9266
+ fileId: z311.string().optional(),
9267
9267
  /**
9268
9268
  * Id of the Iteration that this artifact belongs to
9269
9269
  */
@@ -9272,6 +9272,10 @@ var DTOFeatureArtifact = z311.object({
9272
9272
  * URL of the feature artifact's contents
9273
9273
  */
9274
9274
  url: z311.string(),
9275
+ /**
9276
+ * Relative file path of the artifact (without domain/base URL)
9277
+ */
9278
+ filePath: z311.string().optional(),
9275
9279
  createdAt: z311.string(),
9276
9280
  updatedAt: z311.string()
9277
9281
  });
@@ -9332,7 +9336,8 @@ var DTOFeatureSandbox = z311.object({
9332
9336
  url: z311.string(),
9333
9337
  staticPreviewUrl: z311.string().optional(),
9334
9338
  parentMessageId: Id.optional(),
9335
- currentIterationId: Id
9339
+ currentIterationId: Id,
9340
+ expiresAt: z311.string().optional()
9336
9341
  });
9337
9342
  var DTOFeatureMessageCreateInput = DTOFeatureMessage.pick({
9338
9343
  id: true,