@devkong/cli 0.0.18-0 → 0.0.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devkong/cli",
3
- "version": "0.0.18-0",
3
+ "version": "0.0.19",
4
4
  "type": "commonjs",
5
5
  "main": "./index.js",
6
6
  "typings": "./index.d.ts",
@@ -14,5 +14,4 @@ export declare class PublishVersionCommand {
14
14
  private dockerLoginCmdText;
15
15
  private getPythonSchemaCmdText;
16
16
  private getKotlinSchemaCmdTask;
17
- private getSchemaTask;
18
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
- processId: string;
7
+ processName: string;
8
8
  events: Specification.Eventdef[];
9
9
  }
10
- export declare function makeServerlessJavaAppProps({ processId, events }: ServerlessJavaAppPropsGenerator): string;
10
+ export declare function makeServerlessJavaAppProps({ processName, events, }: ServerlessJavaAppPropsGenerator): string;
11
11
  export {};
@@ -16,7 +16,7 @@ export declare enum KongSpecJobSessionExecutionMode {
16
16
  export declare enum KongSpecJobSessionPriority {
17
17
  HIGHEST = "HIGHEST",
18
18
  HIGH = "HIGH",
19
- MEDIUM = "MEDIUM",
19
+ MAIN = "MAIN",
20
20
  LOW = "LOW",
21
21
  LOWEST = "LOWEST"
22
22
  }
@@ -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 {};
@@ -1,5 +1,7 @@
1
1
  import { UrlText, UtcDateTime } from "@kong/ts";
2
+ import { AppExtensionAlias } from "./appExtensionAlias";
2
3
  export interface AppDocumentBuild {
4
+ aliasName: AppExtensionAlias["name"];
3
5
  bundleUrl: UrlText;
4
6
  deadline: UtcDateTime;
5
7
  }