@flowcore/cli 2.15.4 → 2.15.5
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 +7 -0
- package/README.md +11 -7
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
* added description to start that includes week ([58687a7](https://github.com/flowcore-io/flowcore-cli/commit/58687a7bbb66aaa5d6da26af88e555cbb1e72467))
|
|
12
12
|
|
|
13
|
+
## [2.15.5](https://github.com/flowcore-io/flowcore-cli/compare/v2.15.4...v2.15.5) (2024-05-31)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* Update @flowcore/cli-plugin-core to version 1.4.0 ([7f71890](https://github.com/flowcore-io/flowcore-cli/commit/7f71890f2a2f1feb1601c1e1ce22937c6ea94a7d))
|
|
19
|
+
|
|
13
20
|
## [2.15.4](https://github.com/flowcore-io/flowcore-cli/compare/v2.15.3...v2.15.4) (2024-05-28)
|
|
14
21
|
|
|
15
22
|
|
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/2.15.
|
|
21
|
+
@flowcore/cli/2.15.5 linux-x64 node-v20.13.1
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -75,7 +75,7 @@ EXAMPLES
|
|
|
75
75
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.15.
|
|
78
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.15.5/src/commands/apply.ts)_
|
|
79
79
|
|
|
80
80
|
## `flowcore autocomplete [SHELL]`
|
|
81
81
|
|
|
@@ -746,16 +746,20 @@ DESCRIPTION
|
|
|
746
746
|
Stream events from a datacore running on the Flowcore Platform
|
|
747
747
|
|
|
748
748
|
EXAMPLES
|
|
749
|
-
$ flowcore stream https://flowcore.io/<org>/<data core>/<flow type>/<event type>.stream
|
|
749
|
+
$ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/<event type>.stream"
|
|
750
750
|
|
|
751
|
-
$ flowcore stream https://flowcore.io/<org>/<data core>/<flow type>/<event type>.stream -s 1y
|
|
751
|
+
$ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/<event type>.stream" -s 1y
|
|
752
752
|
|
|
753
|
-
$ flowcore stream https://flowcore.io/<org>/<data core
|
|
753
|
+
$ flowcore stream "https://flowcore.io/<org>/<data core>/*" -s 1y
|
|
754
754
|
|
|
755
|
-
$ flowcore stream https://flowcore.io/<org>/<data core>/<flow type
|
|
755
|
+
$ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/*" -s 1y
|
|
756
|
+
|
|
757
|
+
$ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/<event type>.stream" -o log -s 3m --json > some.json
|
|
758
|
+
|
|
759
|
+
$ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -o log -s 3m
|
|
756
760
|
```
|
|
757
761
|
|
|
758
|
-
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v1.
|
|
762
|
+
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v1.4.0/src/commands/stream.ts)_
|
|
759
763
|
|
|
760
764
|
## `flowcore version`
|
|
761
765
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@datastructures-js/queue": "^4.2.3",
|
|
8
8
|
"@flowcore/cli-plugin-config": "^1.1.0",
|
|
9
|
-
"@flowcore/cli-plugin-core": "^1.
|
|
9
|
+
"@flowcore/cli-plugin-core": "^1.4.0",
|
|
10
10
|
"@flowcore/cli-plugin-data-core": "^2.2.1",
|
|
11
11
|
"@flowcore/cli-plugin-scenario": "^2.9.1",
|
|
12
12
|
"@flowcore/time-bucket": "^1.1.0",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"prestart": "npm run build",
|
|
93
93
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
94
94
|
},
|
|
95
|
-
"version": "2.15.
|
|
95
|
+
"version": "2.15.5",
|
|
96
96
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
97
97
|
"keywords": [
|
|
98
98
|
"flowcore",
|