@flowcore/cli 2.8.1 → 2.8.2
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 +3 -3
- package/dist/commands/stream.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
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.8.2](https://github.com/flowcore-io/flowcore-cli/compare/v2.8.1...v2.8.2) (2024-02-28)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* show correct info when streaming ([aae6597](https://github.com/flowcore-io/flowcore-cli/commit/aae6597dff983db811cc156592c0b8ac946037a6))
|
|
19
|
+
|
|
13
20
|
## [2.8.1](https://github.com/flowcore-io/flowcore-cli/compare/v2.8.0...v2.8.1) (2024-02-26)
|
|
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.8.
|
|
21
|
+
@flowcore/cli/2.8.2 linux-x64 node-v20.11.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.8.
|
|
78
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.8.2/src/commands/apply.ts)_
|
|
79
79
|
|
|
80
80
|
## `flowcore autocomplete [SHELL]`
|
|
81
81
|
|
|
@@ -753,7 +753,7 @@ EXAMPLES
|
|
|
753
753
|
$ flowcore stream https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream -o log -s 3m
|
|
754
754
|
```
|
|
755
755
|
|
|
756
|
-
_See code: [src/commands/stream.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.8.
|
|
756
|
+
_See code: [src/commands/stream.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.8.2/src/commands/stream.ts)_
|
|
757
757
|
|
|
758
758
|
## `flowcore version`
|
|
759
759
|
|
package/dist/commands/stream.js
CHANGED
|
@@ -275,7 +275,7 @@ export default class Stream extends BaseCommand {
|
|
|
275
275
|
ux.error("No time bucket found");
|
|
276
276
|
}
|
|
277
277
|
if (!this.flags.json) {
|
|
278
|
-
ux.action.start(`Fetching events for ${
|
|
278
|
+
ux.action.start(`Fetching events for ${dayjs(timeBucket, TIME_BUCKET_PATTERN)}`);
|
|
279
279
|
}
|
|
280
280
|
let cursor = null;
|
|
281
281
|
let found = false;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"prestart": "npm run build",
|
|
91
91
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
92
92
|
},
|
|
93
|
-
"version": "2.8.
|
|
93
|
+
"version": "2.8.2",
|
|
94
94
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
95
95
|
"keywords": [
|
|
96
96
|
"flowcore",
|