@cloud-cli/on 1.4.0 → 1.5.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.
- package/README.md +5 -6
- package/dist/config.d.ts +4 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/on.js +1030 -1021
- package/dist/parser/yaml-loader.d.ts.map +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/signals.d.ts +2 -0
- package/dist/signals.d.ts.map +1 -0
- package/dist/types.d.ts +3 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/worker.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -107,12 +107,11 @@ npx @cloud-cli/on [command] [options]
|
|
|
107
107
|
|
|
108
108
|
### Commands
|
|
109
109
|
|
|
110
|
-
| Command
|
|
111
|
-
|
|
|
112
|
-
| **`start`**
|
|
113
|
-
| **`start-
|
|
114
|
-
| **`
|
|
115
|
-
| **`validate`** | Parses and validates all YAML workflows in your workflows folder without executing jobs. |
|
|
110
|
+
| Command | Description |
|
|
111
|
+
| ------------------- | ---------------------------------------------------------------------------------------- |
|
|
112
|
+
| **`start-server`** | Runs Webhook Ingress Gateway (the HTTP server receiving webhooks). |
|
|
113
|
+
| **`start-workers`** | Runs Worker Polling loops (Scalable Workers). |
|
|
114
|
+
| **`validate`** | Parses and validates all YAML workflows in your workflows folder without executing jobs. |
|
|
116
115
|
|
|
117
116
|
### CLI and Environment Options
|
|
118
117
|
|
package/dist/config.d.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RunnerConfig, UserRunnerConfig } from './types.js';
|
|
2
|
+
export declare function loadConfig(values: any): Promise<RunnerConfig | null>;
|
|
3
|
+
export declare function resolveConfig(configFromFile: UserRunnerConfig, configFromCli: UserRunnerConfig): RunnerConfig;
|
|
4
|
+
//# sourceMappingURL=config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAE5D,wBAAsB,UAAU,CAAC,MAAM,KAAA,GAAG,OAAO,CAAC,YAAY,GAAG,IAAI,CAAC,CAyBrE;AAED,wBAAgB,aAAa,CAAC,cAAc,EAAE,gBAAgB,EAAE,aAAa,EAAE,gBAAgB,GAAG,YAAY,CAY7G"}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAaA,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC"}
|