@supernova-studio/client 1.40.9 → 1.40.11
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 +37 -17
- package/dist/index.d.ts +37 -17
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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
|
});
|
|
@@ -9330,7 +9334,6 @@ var DTOFeatureIterationTag = z311.object({
|
|
|
9330
9334
|
var DTOFeatureSandbox = z311.object({
|
|
9331
9335
|
id: z311.string(),
|
|
9332
9336
|
url: z311.string(),
|
|
9333
|
-
staticPreviewUrl: z311.string().optional(),
|
|
9334
9337
|
parentMessageId: Id.optional(),
|
|
9335
9338
|
currentIterationId: Id,
|
|
9336
9339
|
expiresAt: z311.string().optional()
|