@supernova-studio/client 1.35.3 → 1.36.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 +173 -8
- package/dist/index.d.ts +173 -8
- package/dist/index.js +17 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -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
|
/**
|
|
@@ -9233,7 +9238,8 @@ var DTOFeatureIteration = z311.object({
|
|
|
9233
9238
|
*/
|
|
9234
9239
|
isBookmarked: z311.boolean().optional(),
|
|
9235
9240
|
createdAt: z311.string(),
|
|
9236
|
-
updatedAt: z311.string().optional()
|
|
9241
|
+
updatedAt: z311.string().optional(),
|
|
9242
|
+
artifactsDiff: DTOFeatureIterationArtifactsDiff.optional().nullable()
|
|
9237
9243
|
});
|
|
9238
9244
|
var DTOFeatureIterationTag = z311.object({
|
|
9239
9245
|
id: Id,
|
|
@@ -9301,6 +9307,14 @@ var DTOFeatureIterationTagCreateInput = z311.object({
|
|
|
9301
9307
|
messageId: Id.optional()
|
|
9302
9308
|
});
|
|
9303
9309
|
var DTOFeatureIterationArtifactDiff = z311.object({
|
|
9310
|
+
/**
|
|
9311
|
+
* Map of artifact key -> new key that describes artifacts that will be moved in this iteration
|
|
9312
|
+
*/
|
|
9313
|
+
move: z311.record(
|
|
9314
|
+
z311.object({
|
|
9315
|
+
newKey: z311.string()
|
|
9316
|
+
})
|
|
9317
|
+
),
|
|
9304
9318
|
/**
|
|
9305
9319
|
* Map of artifact key -> artifact content that describes artifacts that will be
|
|
9306
9320
|
* create or updated in this iteration
|
|
@@ -18529,6 +18543,7 @@ export {
|
|
|
18529
18543
|
DTOFeatureEventReactionsSent,
|
|
18530
18544
|
DTOFeatureIteration,
|
|
18531
18545
|
DTOFeatureIterationArtifactDiff,
|
|
18546
|
+
DTOFeatureIterationArtifactsDiff,
|
|
18532
18547
|
DTOFeatureIterationCreateInput,
|
|
18533
18548
|
DTOFeatureIterationListResponse,
|
|
18534
18549
|
DTOFeatureIterationPromoteInput,
|