@supernova-studio/client 1.69.3 → 1.69.4
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 +304 -1
- package/dist/index.d.ts +304 -1
- package/dist/index.js +21 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9707,9 +9707,20 @@ var DTOFeatureSandbox = z314.object({
|
|
|
9707
9707
|
url: z314.string(),
|
|
9708
9708
|
parentMessageId: Id.optional(),
|
|
9709
9709
|
currentIterationId: Id,
|
|
9710
|
+
featureId: Id,
|
|
9710
9711
|
expiresAt: z314.string().optional(),
|
|
9711
9712
|
error: DTOSandboxError.optional()
|
|
9712
9713
|
});
|
|
9714
|
+
var DTOCreateFeatureSandbox = DTOFeatureSandbox;
|
|
9715
|
+
var DTOUpdateFeatureSandbox = DTOCreateFeatureSandbox.partial().extend({
|
|
9716
|
+
id: z314.string(),
|
|
9717
|
+
parentMessageId: Id.nullish(),
|
|
9718
|
+
expiresAt: z314.string().nullish(),
|
|
9719
|
+
error: DTOSandboxError.nullish()
|
|
9720
|
+
});
|
|
9721
|
+
var DTOFeatureSandboxListResponse = z314.object({
|
|
9722
|
+
sandboxes: DTOFeatureSandbox.array()
|
|
9723
|
+
});
|
|
9713
9724
|
var DTOFeatureMessageCreateInput = DTOFeatureMessage.pick({
|
|
9714
9725
|
id: true,
|
|
9715
9726
|
body: true,
|
|
@@ -11090,6 +11101,10 @@ var DTOForgeProjectIterationTagSet = z336.object({
|
|
|
11090
11101
|
type: z336.literal("ProjectIterationTagSet"),
|
|
11091
11102
|
data: DTOFeatureIterationTag
|
|
11092
11103
|
});
|
|
11104
|
+
var DTOForgeProjectFeatureSandboxUpdated = z336.object({
|
|
11105
|
+
type: z336.literal("ProjectFeatureSandboxUpdated"),
|
|
11106
|
+
data: DTOFeatureSandbox
|
|
11107
|
+
});
|
|
11093
11108
|
var DTOForgeProjectIterationUpdated = z336.object({
|
|
11094
11109
|
type: z336.literal("ProjectIterationUpdated"),
|
|
11095
11110
|
data: DTOFeatureIteration
|
|
@@ -11099,6 +11114,7 @@ var DTOForgeProjectRoomEvent = z336.discriminatedUnion("type", [
|
|
|
11099
11114
|
DTOForgeProjectMemberUpdated,
|
|
11100
11115
|
DTOForgeProjectMemberDeleted,
|
|
11101
11116
|
DTOForgeProjectIterationTagSet,
|
|
11117
|
+
DTOForgeProjectFeatureSandboxUpdated,
|
|
11102
11118
|
DTOForgeProjectIterationUpdated
|
|
11103
11119
|
]);
|
|
11104
11120
|
|
|
@@ -20115,6 +20131,7 @@ export {
|
|
|
20115
20131
|
DTOCreateDocumentationGroupInput,
|
|
20116
20132
|
DTOCreateDocumentationPageInputV2,
|
|
20117
20133
|
DTOCreateDocumentationTabInput,
|
|
20134
|
+
DTOCreateFeatureSandbox,
|
|
20118
20135
|
DTOCreateForgeAgent,
|
|
20119
20136
|
DTOCreateForgeAgentResponse,
|
|
20120
20137
|
DTOCreateForgeArtifact,
|
|
@@ -20386,6 +20403,7 @@ export {
|
|
|
20386
20403
|
DTOFeatureMessageUserSender,
|
|
20387
20404
|
DTOFeaturePublishedStateUpdateInput,
|
|
20388
20405
|
DTOFeatureSandbox,
|
|
20406
|
+
DTOFeatureSandboxListResponse,
|
|
20389
20407
|
DTOFeatureUpdateThemeInput,
|
|
20390
20408
|
DTOFigmaComponent,
|
|
20391
20409
|
DTOFigmaComponentGroup,
|
|
@@ -20540,6 +20558,7 @@ export {
|
|
|
20540
20558
|
DTOForgeProjectFeatureListResponse,
|
|
20541
20559
|
DTOForgeProjectFeatureMoveInput,
|
|
20542
20560
|
DTOForgeProjectFeaturePreview,
|
|
20561
|
+
DTOForgeProjectFeatureSandboxUpdated,
|
|
20543
20562
|
DTOForgeProjectFeatureUpdateInput,
|
|
20544
20563
|
DTOForgeProjectFigmaNode,
|
|
20545
20564
|
DTOForgeProjectFigmaNodeRenderInput,
|
|
@@ -20766,6 +20785,7 @@ export {
|
|
|
20766
20785
|
DTOUpdateDocumentationGroupInput,
|
|
20767
20786
|
DTOUpdateDocumentationPageDocumentInputV2,
|
|
20768
20787
|
DTOUpdateDocumentationPageInputV2,
|
|
20788
|
+
DTOUpdateFeatureSandbox,
|
|
20769
20789
|
DTOUpdateForgeAgent,
|
|
20770
20790
|
DTOUpdateForgeAgentResponse,
|
|
20771
20791
|
DTOUpdateForgeArtifact,
|