@supernova-studio/client 1.82.2 → 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.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,
@@ -21691,6 +21694,8 @@ export {
21691
21694
  FrontendVersionRoomYDoc,
21692
21695
  GitDestinationOptions,
21693
21696
  ImportJobsEndpoint,
21697
+ IntegrationOauthCallbackState,
21698
+ IntegrationOauthPlatform,
21694
21699
  ListTreeBuilder,
21695
21700
  LiveblocksEndpoint,
21696
21701
  LocalDocsElementActionExecutor,