@supernova-studio/client 1.82.1 → 1.82.3
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 +119 -25
- package/dist/index.d.ts +119 -25
- package/dist/index.js +19 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8686,8 +8686,11 @@ var WorkspaceConfigurationPayload = z269.object({
|
|
|
8686
8686
|
|
|
8687
8687
|
// src/api/payloads/workspaces/workspace-integrations.ts
|
|
8688
8688
|
import { z as z270 } from "zod";
|
|
8689
|
+
var IntegrationOauthPlatform = z270.enum(["Desktop", "Browser"]);
|
|
8690
|
+
var IntegrationOauthCallbackState = z270.enum(["Success", "Error"]);
|
|
8689
8691
|
var DTOWorkspaceIntegrationOauthInput = z270.object({
|
|
8690
|
-
type: IntegrationType
|
|
8692
|
+
type: IntegrationType,
|
|
8693
|
+
platform: IntegrationOauthPlatform.optional().default("Browser")
|
|
8691
8694
|
});
|
|
8692
8695
|
var DTOWorkspaceIntegrationPATInput = z270.object({
|
|
8693
8696
|
type: IntegrationType,
|
|
@@ -10360,6 +10363,15 @@ var DTOUpdateFeatureSandbox = DTOCreateFeatureSandbox.partial().extend({
|
|
|
10360
10363
|
var DTOFeatureSandboxListResponse = z318.object({
|
|
10361
10364
|
sandboxes: DTOFeatureSandbox.array()
|
|
10362
10365
|
});
|
|
10366
|
+
var DTOProvisionFeatureSandboxInput = z318.object({
|
|
10367
|
+
parentMessageId: z318.string().optional()
|
|
10368
|
+
});
|
|
10369
|
+
var DTOProvisionFeatureSandboxResponse = z318.object({
|
|
10370
|
+
iterationId: z318.string()
|
|
10371
|
+
});
|
|
10372
|
+
var DTOKeepAliveFeatureSandboxResponse = z318.object({
|
|
10373
|
+
sandbox: DTOFeatureSandbox
|
|
10374
|
+
});
|
|
10363
10375
|
var DTOFeatureMessageCreateInput = DTOFeatureMessage.pick({
|
|
10364
10376
|
id: true,
|
|
10365
10377
|
body: true,
|
|
@@ -21399,6 +21411,7 @@ export {
|
|
|
21399
21411
|
DTOIntegrationOAuthGetResponse,
|
|
21400
21412
|
DTOIntegrationPostResponse,
|
|
21401
21413
|
DTOIntegrationsGetListResponse,
|
|
21414
|
+
DTOKeepAliveFeatureSandboxResponse,
|
|
21402
21415
|
DTOLiveblocksAuthRequest,
|
|
21403
21416
|
DTOLiveblocksAuthResponse,
|
|
21404
21417
|
DTOLoginScreenSettings,
|
|
@@ -21455,6 +21468,8 @@ export {
|
|
|
21455
21468
|
DTOProjectContextOverride,
|
|
21456
21469
|
DTOProjectContextOverrideInput,
|
|
21457
21470
|
DTOProjectContextOverrideResponse,
|
|
21471
|
+
DTOProvisionFeatureSandboxInput,
|
|
21472
|
+
DTOProvisionFeatureSandboxResponse,
|
|
21458
21473
|
DTOPublishDocumentationChanges,
|
|
21459
21474
|
DTOPublishDocumentationRequest,
|
|
21460
21475
|
DTOPublishDocumentationResponse,
|
|
@@ -21679,6 +21694,8 @@ export {
|
|
|
21679
21694
|
FrontendVersionRoomYDoc,
|
|
21680
21695
|
GitDestinationOptions,
|
|
21681
21696
|
ImportJobsEndpoint,
|
|
21697
|
+
IntegrationOauthCallbackState,
|
|
21698
|
+
IntegrationOauthPlatform,
|
|
21682
21699
|
ListTreeBuilder,
|
|
21683
21700
|
LiveblocksEndpoint,
|
|
21684
21701
|
LocalDocsElementActionExecutor,
|