@flowcore/cli 4.3.1 → 4.4.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/CHANGELOG.md +14 -0
- package/README.md +4 -4
- package/dist/commands/apply.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,20 @@
|
|
|
10
10
|
|
|
11
11
|
* added description to start that includes week ([58687a7](https://github.com/flowcore-io/flowcore-cli/commit/58687a7bbb66aaa5d6da26af88e555cbb1e72467))
|
|
12
12
|
|
|
13
|
+
## [4.4.0](https://github.com/flowcore-io/flowcore-cli/compare/v4.3.2...v4.4.0) (2024-10-18)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **apply:** :art: update core plugin so that apply v2 displays what has been changed ([b155e1a](https://github.com/flowcore-io/flowcore-cli/commit/b155e1a209c080d40cfbb82cd122ffe0a227c0ea))
|
|
19
|
+
|
|
20
|
+
## [4.3.2](https://github.com/flowcore-io/flowcore-cli/compare/v4.3.1...v4.3.2) (2024-10-18)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* **apply:** :bug: only parse docs to validate the base resource validity ([c7b9b66](https://github.com/flowcore-io/flowcore-cli/commit/c7b9b669414904c2f7e10ed38a788d595d07f845))
|
|
26
|
+
|
|
13
27
|
## [4.3.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.3.0...v4.3.1) (2024-10-18)
|
|
14
28
|
|
|
15
29
|
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @flowcore/cli
|
|
|
18
18
|
$ flowcore COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ flowcore (--version)
|
|
21
|
-
@flowcore/cli/4.
|
|
21
|
+
@flowcore/cli/4.4.0 linux-x64 node-v20.18.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -96,7 +96,7 @@ EXAMPLES
|
|
|
96
96
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
99
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.4.0/src/commands/apply.ts)_
|
|
100
100
|
|
|
101
101
|
## `flowcore auth delete key API_KEY_NAME`
|
|
102
102
|
|
|
@@ -1254,7 +1254,7 @@ EXAMPLES
|
|
|
1254
1254
|
$ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m
|
|
1255
1255
|
```
|
|
1256
1256
|
|
|
1257
|
-
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.
|
|
1257
|
+
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.3.0/src/commands/stream.ts)_
|
|
1258
1258
|
|
|
1259
1259
|
## `flowcore stream http STREAM`
|
|
1260
1260
|
|
|
@@ -1296,7 +1296,7 @@ EXAMPLES
|
|
|
1296
1296
|
$ flowcore stream http "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m -d http://localhost:3000/transform
|
|
1297
1297
|
```
|
|
1298
1298
|
|
|
1299
|
-
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.
|
|
1299
|
+
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.3.0/src/commands/stream/http.ts)_
|
|
1300
1300
|
|
|
1301
1301
|
## `flowcore version`
|
|
1302
1302
|
|
package/dist/commands/apply.js
CHANGED
|
@@ -49,8 +49,8 @@ export default class Apply extends BaseCommand {
|
|
|
49
49
|
return yaml.loadAll(content);
|
|
50
50
|
});
|
|
51
51
|
}
|
|
52
|
-
|
|
53
|
-
await apiRegistry.apply(
|
|
52
|
+
documents.map((doc) => baseResourceDto.parse(doc));
|
|
53
|
+
await apiRegistry.apply(documents);
|
|
54
54
|
}
|
|
55
55
|
catch (error) {
|
|
56
56
|
this.logger.fatal(`Failed to apply documents with error: ${error}`);
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@flowcore/cli-plugin-ai": "^1.1.2",
|
|
9
9
|
"@flowcore/cli-plugin-auth-management": "^1.2.2",
|
|
10
10
|
"@flowcore/cli-plugin-config": "^2.4.1",
|
|
11
|
-
"@flowcore/cli-plugin-core": "^4.
|
|
11
|
+
"@flowcore/cli-plugin-core": "^4.3.0",
|
|
12
12
|
"@flowcore/cli-plugin-data-core": "^3.1.1",
|
|
13
13
|
"@flowcore/cli-plugin-generator": "^1.6.0",
|
|
14
14
|
"@flowcore/cli-plugin-scenario": "^4.1.2",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"prestart": "npm run build",
|
|
109
109
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
110
110
|
},
|
|
111
|
-
"version": "4.
|
|
111
|
+
"version": "4.4.0",
|
|
112
112
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
113
113
|
"keywords": [
|
|
114
114
|
"flowcore",
|