@devkong/cli 0.0.17-0 → 0.0.17
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/index.js +7032 -539
- package/package.json +1 -1
- package/packages/kong-cli/src/commands/publishVersionCommand.d.ts +3 -1
- package/packages/kong-spec/src/lib/kongServerless.d.ts +2 -2
- package/packages/kong-spec/src/lib/kongSession.d.ts +1 -1
- package/packages/kong-spec/src/lib/kongSpecToServerless.d.ts +1 -1
- package/packages/kong-ts-contract/src/lib/appDocumentBuild.d.ts +2 -0
package/package.json
CHANGED
|
@@ -4,6 +4,7 @@ export declare class PublishVersionCommand {
|
|
|
4
4
|
private readonly isWin;
|
|
5
5
|
private registryClient;
|
|
6
6
|
private managementClient;
|
|
7
|
+
private defaultRendererOptions;
|
|
7
8
|
private get wslPrefix();
|
|
8
9
|
constructor(profile: Profile, verbose?: boolean);
|
|
9
10
|
execute(repoName: string, notes: string): Promise<void>;
|
|
@@ -11,5 +12,6 @@ export declare class PublishVersionCommand {
|
|
|
11
12
|
private dockerBuildCmdText;
|
|
12
13
|
private dockerPushCmdText;
|
|
13
14
|
private dockerLoginCmdText;
|
|
14
|
-
private
|
|
15
|
+
private getPythonSchemaCmdText;
|
|
16
|
+
private getKotlinSchemaCmdTask;
|
|
15
17
|
}
|
|
@@ -4,8 +4,8 @@ export declare function serverlessFlowBuilder(): FloweyServerlessBuilder;
|
|
|
4
4
|
export declare const copyServerlessFlow: (workflow: Specification.Workflow) => Specification.Workflow;
|
|
5
5
|
export declare function stringifyServerlessFlow(workflow: Specification.Workflow): string;
|
|
6
6
|
interface ServerlessJavaAppPropsGenerator {
|
|
7
|
-
|
|
7
|
+
processName: string;
|
|
8
8
|
events: Specification.Eventdef[];
|
|
9
9
|
}
|
|
10
|
-
export declare function makeServerlessJavaAppProps({
|
|
10
|
+
export declare function makeServerlessJavaAppProps({ processName, events, }: ServerlessJavaAppPropsGenerator): string;
|
|
11
11
|
export {};
|
|
@@ -6,5 +6,5 @@ interface ConvertSpecToServerlessResult {
|
|
|
6
6
|
workflow: Specification.Workflow;
|
|
7
7
|
inputSchema: JSONSchema7;
|
|
8
8
|
}
|
|
9
|
-
export declare function convertSpecToServerless(type: "main", specFlow: KongSpecFlow, env: KongSpecEnv): ConvertSpecToServerlessResult;
|
|
9
|
+
export declare function convertSpecToServerless(type: "main", processName: string, specFlow: KongSpecFlow, env: KongSpecEnv): ConvertSpecToServerlessResult;
|
|
10
10
|
export {};
|