@supernova-studio/client 1.82.1 → 1.82.2
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 +88 -1
- package/dist/index.d.ts +88 -1
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10360,6 +10360,15 @@ var DTOUpdateFeatureSandbox = DTOCreateFeatureSandbox.partial().extend({
|
|
|
10360
10360
|
var DTOFeatureSandboxListResponse = z318.object({
|
|
10361
10361
|
sandboxes: DTOFeatureSandbox.array()
|
|
10362
10362
|
});
|
|
10363
|
+
var DTOProvisionFeatureSandboxInput = z318.object({
|
|
10364
|
+
parentMessageId: z318.string().optional()
|
|
10365
|
+
});
|
|
10366
|
+
var DTOProvisionFeatureSandboxResponse = z318.object({
|
|
10367
|
+
iterationId: z318.string()
|
|
10368
|
+
});
|
|
10369
|
+
var DTOKeepAliveFeatureSandboxResponse = z318.object({
|
|
10370
|
+
sandbox: DTOFeatureSandbox
|
|
10371
|
+
});
|
|
10363
10372
|
var DTOFeatureMessageCreateInput = DTOFeatureMessage.pick({
|
|
10364
10373
|
id: true,
|
|
10365
10374
|
body: true,
|
|
@@ -21399,6 +21408,7 @@ export {
|
|
|
21399
21408
|
DTOIntegrationOAuthGetResponse,
|
|
21400
21409
|
DTOIntegrationPostResponse,
|
|
21401
21410
|
DTOIntegrationsGetListResponse,
|
|
21411
|
+
DTOKeepAliveFeatureSandboxResponse,
|
|
21402
21412
|
DTOLiveblocksAuthRequest,
|
|
21403
21413
|
DTOLiveblocksAuthResponse,
|
|
21404
21414
|
DTOLoginScreenSettings,
|
|
@@ -21455,6 +21465,8 @@ export {
|
|
|
21455
21465
|
DTOProjectContextOverride,
|
|
21456
21466
|
DTOProjectContextOverrideInput,
|
|
21457
21467
|
DTOProjectContextOverrideResponse,
|
|
21468
|
+
DTOProvisionFeatureSandboxInput,
|
|
21469
|
+
DTOProvisionFeatureSandboxResponse,
|
|
21458
21470
|
DTOPublishDocumentationChanges,
|
|
21459
21471
|
DTOPublishDocumentationRequest,
|
|
21460
21472
|
DTOPublishDocumentationResponse,
|