@devkong/cli 0.0.1 → 0.0.2-0
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/README.md +10 -3
- package/assets/python-install.bat +27 -0
- package/assets/python-install.sh +23 -0
- package/index.js +6140 -4471
- package/package.json +1 -1
- package/packages/kong-cli/src/common/cli.d.ts +0 -6
- package/packages/kong-cli/src/common/utils.d.ts +1 -1
- package/packages/kong-spec/src/lib/kongSpecDoc.d.ts +12 -0
package/package.json
CHANGED
|
@@ -2,5 +2,5 @@ export declare function env(key: string): string;
|
|
|
2
2
|
export declare function optionalEnv(key: string): string;
|
|
3
3
|
export declare function resolveProjectPath(fileName: string): string;
|
|
4
4
|
export declare function generateShortId(): string;
|
|
5
|
-
export declare function spawnCommand(
|
|
5
|
+
export declare function spawnCommand(commandText: string, inheritStdout?: boolean): Promise<string>;
|
|
6
6
|
export declare function printError(message: string, error: unknown): void;
|
|
@@ -11,4 +11,16 @@ export declare class KongSpecDoc {
|
|
|
11
11
|
static aboutResilience: string;
|
|
12
12
|
static aboutLimits: string;
|
|
13
13
|
static aboutIdentify: string;
|
|
14
|
+
static aboutCallFunction: string;
|
|
15
|
+
static aboutCallProcess: string;
|
|
16
|
+
static aboutCompensate: string;
|
|
17
|
+
static aboutFail: string;
|
|
18
|
+
static aboutForeach: string;
|
|
19
|
+
static aboutInject: string;
|
|
20
|
+
static aboutParallel: string;
|
|
21
|
+
static aboutSendEvent: string;
|
|
22
|
+
static aboutStart: string;
|
|
23
|
+
static aboutSucceed: string;
|
|
24
|
+
static aboutSwitch: string;
|
|
25
|
+
static aboutWaitEvent: string;
|
|
14
26
|
}
|