@supernova-studio/client 1.35.4 → 1.37.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 +193 -1
- package/dist/index.d.ts +193 -1
- package/dist/index.js +21 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9206,6 +9206,11 @@ var DTOFeatureArtifact = z311.object({
|
|
|
9206
9206
|
createdAt: z311.string(),
|
|
9207
9207
|
updatedAt: z311.string()
|
|
9208
9208
|
});
|
|
9209
|
+
var DTOFeatureIterationArtifactsDiff = z311.object({
|
|
9210
|
+
created: z311.array(DTOFeatureArtifact.shape.key).optional().default([]),
|
|
9211
|
+
updated: z311.array(DTOFeatureArtifact.shape.key).optional().default([]),
|
|
9212
|
+
deleted: z311.array(DTOFeatureArtifact.shape.key).optional().default([])
|
|
9213
|
+
});
|
|
9209
9214
|
var DTOFeatureIteration = z311.object({
|
|
9210
9215
|
id: Id,
|
|
9211
9216
|
/**
|
|
@@ -9232,8 +9237,13 @@ var DTOFeatureIteration = z311.object({
|
|
|
9232
9237
|
* Indicates whether the iteration is bookmarked by user
|
|
9233
9238
|
*/
|
|
9234
9239
|
isBookmarked: z311.boolean().optional(),
|
|
9240
|
+
/**
|
|
9241
|
+
* URL of a static thumbnail of the feature iteration
|
|
9242
|
+
*/
|
|
9243
|
+
thumbnailUrl: z311.string().optional(),
|
|
9235
9244
|
createdAt: z311.string(),
|
|
9236
|
-
updatedAt: z311.string().optional()
|
|
9245
|
+
updatedAt: z311.string().optional(),
|
|
9246
|
+
artifactsDiff: DTOFeatureIterationArtifactsDiff.optional().nullable()
|
|
9237
9247
|
});
|
|
9238
9248
|
var DTOFeatureIterationTag = z311.object({
|
|
9239
9249
|
id: Id,
|
|
@@ -9301,6 +9311,14 @@ var DTOFeatureIterationTagCreateInput = z311.object({
|
|
|
9301
9311
|
messageId: Id.optional()
|
|
9302
9312
|
});
|
|
9303
9313
|
var DTOFeatureIterationArtifactDiff = z311.object({
|
|
9314
|
+
/**
|
|
9315
|
+
* Map of artifact key -> new key that describes artifacts that will be moved in this iteration
|
|
9316
|
+
*/
|
|
9317
|
+
move: z311.record(
|
|
9318
|
+
z311.object({
|
|
9319
|
+
newKey: z311.string()
|
|
9320
|
+
})
|
|
9321
|
+
),
|
|
9304
9322
|
/**
|
|
9305
9323
|
* Map of artifact key -> artifact content that describes artifacts that will be
|
|
9306
9324
|
* create or updated in this iteration
|
|
@@ -18529,6 +18547,7 @@ export {
|
|
|
18529
18547
|
DTOFeatureEventReactionsSent,
|
|
18530
18548
|
DTOFeatureIteration,
|
|
18531
18549
|
DTOFeatureIterationArtifactDiff,
|
|
18550
|
+
DTOFeatureIterationArtifactsDiff,
|
|
18532
18551
|
DTOFeatureIterationCreateInput,
|
|
18533
18552
|
DTOFeatureIterationListResponse,
|
|
18534
18553
|
DTOFeatureIterationPromoteInput,
|