twenty-sdk 2.4.0 → 2.4.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/cli/commands/dev.d.ts +1 -0
- package/dist/cli/constants/dev-api-key.d.ts +2 -0
- package/dist/cli/operations/index.d.ts +1 -0
- package/dist/cli/types.d.ts +1 -0
- package/dist/cli.cjs +11 -11
- package/dist/cli.mjs +372 -376
- package/dist/define/index.cjs +1 -1
- package/dist/define/index.cjs.map +1 -1
- package/dist/define/index.mjs +4 -2
- package/dist/define/index.mjs.map +1 -1
- package/dist/front-component/index.cjs +1 -1
- package/dist/front-component/index.cjs.map +1 -1
- package/dist/front-component/index.d.ts +3 -1
- package/dist/front-component/index.mjs +23 -17
- package/dist/front-component/index.mjs.map +1 -1
- package/dist/{get-function-input-schema-BZ7_XyUh-DT3stfoz.js → get-function-input-schema-BZ7_XyUh-BkkT5sr_.js} +1 -1
- package/dist/{get-function-input-schema-BZ7_XyUh-OrMskPPC.mjs → get-function-input-schema-BZ7_XyUh-Dd-bckv_.mjs} +1 -1
- package/dist/operations.cjs +1 -1
- package/dist/operations.mjs +24 -22
- package/dist/{uninstall-BIllVz44.js → uninstall-BL0Kw7KG.js} +5 -5
- package/dist/{uninstall-XLw7db6v.mjs → uninstall-xvZY2Uuc.mjs} +28 -25
- package/package.json +2 -2
|
@@ -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';
|
package/dist/cli/types.d.ts
CHANGED
|
@@ -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";
|