twenty-sdk 2.4.0 → 2.4.1

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.
@@ -3,6 +3,7 @@ export type AppDevOptions = {
3
3
  appPath?: string;
4
4
  headless?: boolean;
5
5
  verbose?: boolean;
6
+ debounceMs?: number;
6
7
  };
7
8
  export declare class AppDevCommand {
8
9
  private orchestrator;
@@ -0,0 +1,2 @@
1
+ export declare const DEV_API_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC0xYzI1LTRkMDItYmYyNS02YWVjY2Y3ZWE0MTkiLCJ0eXBlIjoiQVBJX0tFWSIsIndvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWMyNS00ZDAyLWJmMjUtNmFlY2NmN2VhNDE5IiwiaWF0IjoxNzM1Njg5NjAwLCJleHAiOjQ4OTE0NDk2MDAsImp0aSI6IjIwMjAyMDIwLWY0MDEtNGQ4YS1hNzMxLTY0ZDAwN2MyN2JhZCJ9.bfQjfyN0NEtTCLE_xPyNcwonDzlSXFoP8kdCQTdnuDc";
2
+ export declare const DEV_API_URL = "http://localhost:2020";
@@ -25,5 +25,6 @@ export type { ServerUpgradeOptions, ServerUpgradeResult, } from './server-upgrad
25
25
  export { detectLocalServer } from '../../cli/utilities/server/detect-local-server';
26
26
  export { checkDockerRunning, containerExists, getContainerDigest, getImageDigest, getImageForVersion, } from '../../cli/utilities/server/docker-container';
27
27
  export { ConfigService } from '../../cli/utilities/config/config-service';
28
+ export { DEV_API_KEY, DEV_API_URL } from '../../cli/constants/dev-api-key';
28
29
  export { APP_ERROR_CODES, AUTH_ERROR_CODES, FUNCTION_ERROR_CODES, SERVER_ERROR_CODES, } from '../../cli/types';
29
30
  export type { AuthListRemote, AuthStatusResult, CommandError, CommandResult, FunctionExecutionResult, TypecheckResult, } from '../../cli/types';
@@ -28,6 +28,7 @@ export declare const APP_ERROR_CODES: {
28
28
  readonly DEPLOY_FAILED: "DEPLOY_FAILED";
29
29
  };
30
30
  export declare const SERVER_ERROR_CODES: {
31
+ readonly DOCKER_NOT_INSTALLED: "DOCKER_NOT_INSTALLED";
31
32
  readonly DOCKER_NOT_RUNNING: "DOCKER_NOT_RUNNING";
32
33
  readonly CONTAINER_START_FAILED: "CONTAINER_START_FAILED";
33
34
  readonly HEALTH_TIMEOUT: "HEALTH_TIMEOUT";