@flowcore/cli 4.10.1 → 4.10.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 +8 -0
- package/README.md +18 -21
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,14 @@
|
|
|
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.10.2](https://github.com/flowcore-io/flowcore-cli/compare/v4.10.1...v4.10.2) (2024-11-01)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* downgrade core plugin ([8a1d29a](https://github.com/flowcore-io/flowcore-cli/commit/8a1d29a9d7151a3c5d51603201c87b7ab492576a))
|
|
19
|
+
* fix version ([7e854fc](https://github.com/flowcore-io/flowcore-cli/commit/7e854fcd533a0cd97b5700ce36b833154630fb2a))
|
|
20
|
+
|
|
13
21
|
## [4.10.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.10.0...v4.10.1) (2024-11-01)
|
|
14
22
|
|
|
15
23
|
|
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.10.
|
|
21
|
+
@flowcore/cli/4.10.2 linux-x64 node-v20.18.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -99,7 +99,7 @@ EXAMPLES
|
|
|
99
99
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.10.
|
|
102
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.10.2/src/commands/apply.ts)_
|
|
103
103
|
|
|
104
104
|
## `flowcore auth delete key API_KEY_NAME`
|
|
105
105
|
|
|
@@ -483,7 +483,7 @@ EXAMPLES
|
|
|
483
483
|
cat ./path/to/manifest.yml | flowcore delete -f -
|
|
484
484
|
```
|
|
485
485
|
|
|
486
|
-
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.10.
|
|
486
|
+
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.10.2/src/commands/delete.ts)_
|
|
487
487
|
|
|
488
488
|
## `flowcore diff`
|
|
489
489
|
|
|
@@ -504,7 +504,7 @@ EXAMPLES
|
|
|
504
504
|
$ flowcore diff -f ./path/to/manifest.yml
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.10.
|
|
507
|
+
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.10.2/src/commands/diff.ts)_
|
|
508
508
|
|
|
509
509
|
## `flowcore generate nextjs-entity NAME`
|
|
510
510
|
|
|
@@ -649,7 +649,7 @@ EXAMPLES
|
|
|
649
649
|
$ flowcore info
|
|
650
650
|
```
|
|
651
651
|
|
|
652
|
-
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.10.
|
|
652
|
+
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.10.2/src/commands/info.ts)_
|
|
653
653
|
|
|
654
654
|
## `flowcore login`
|
|
655
655
|
|
|
@@ -1290,22 +1290,20 @@ Stream events from a datacore running on the Flowcore Platform and output them t
|
|
|
1290
1290
|
|
|
1291
1291
|
```
|
|
1292
1292
|
USAGE
|
|
1293
|
-
$ flowcore stream STREAM [-e <value>] [-j] [-l] [-m <value>] [-p] [-c] [-s <value>] [
|
|
1294
|
-
[--profile <value>]
|
|
1293
|
+
$ flowcore stream STREAM [-e <value>] [-j] [-l] [-m <value>] [-p] [-c] [-s <value>] [--profile <value>]
|
|
1295
1294
|
|
|
1296
1295
|
ARGUMENTS
|
|
1297
1296
|
STREAM stream url to connect to
|
|
1298
1297
|
|
|
1299
1298
|
FLAGS
|
|
1300
|
-
-c, --scan
|
|
1301
|
-
-e, --end=<value>
|
|
1302
|
-
-j, --json
|
|
1303
|
-
-l, --[no-]live
|
|
1304
|
-
-m, --max=<value>
|
|
1305
|
-
-p, --payload
|
|
1306
|
-
-s, --start=<value>
|
|
1307
|
-
|
|
1308
|
-
--profile=<value> Specify the configuration profile to use
|
|
1299
|
+
-c, --scan Scan the full time range
|
|
1300
|
+
-e, --end=<value> End time to stream to, example: 2024-07-08T12:20:44Z, 1y, 1m, 1w, 1d, 1h, now
|
|
1301
|
+
-j, --json Output json only
|
|
1302
|
+
-l, --[no-]live Change to live mode when reaching last time bucket
|
|
1303
|
+
-m, --max=<value> Maximum number of events to send to the destination
|
|
1304
|
+
-p, --payload Only send the event payload to the destination
|
|
1305
|
+
-s, --start=<value> Start time bucket to stream from, example: (2024-07-08T12:20:44Z, 1y, 1m, 1w, 1d, 1h, now)
|
|
1306
|
+
--profile=<value> Specify the configuration profile to use
|
|
1309
1307
|
|
|
1310
1308
|
DESCRIPTION
|
|
1311
1309
|
Stream events from a datacore running on the Flowcore Platform and output them to the console
|
|
@@ -1324,7 +1322,7 @@ EXAMPLES
|
|
|
1324
1322
|
$ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m
|
|
1325
1323
|
```
|
|
1326
1324
|
|
|
1327
|
-
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.
|
|
1325
|
+
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.8.0/src/commands/stream.ts)_
|
|
1328
1326
|
|
|
1329
1327
|
## `flowcore stream http STREAM`
|
|
1330
1328
|
|
|
@@ -1332,8 +1330,8 @@ Stream events from a datacore running on the Flowcore Platform and stream to a h
|
|
|
1332
1330
|
|
|
1333
1331
|
```
|
|
1334
1332
|
USAGE
|
|
1335
|
-
$ flowcore stream http STREAM [-e <value>] [-j] [-l] [-m <value>] [-p] [-c] [-s <value>] [
|
|
1336
|
-
[
|
|
1333
|
+
$ flowcore stream http STREAM [-e <value>] [-j] [-l] [-m <value>] [-p] [-c] [-s <value>] [--profile <value>]
|
|
1334
|
+
[-d <value>] [-H <value>] [-t <value>]
|
|
1337
1335
|
|
|
1338
1336
|
ARGUMENTS
|
|
1339
1337
|
STREAM stream url to connect to
|
|
@@ -1349,7 +1347,6 @@ FLAGS
|
|
|
1349
1347
|
-p, --payload Only send the event payload to the destination
|
|
1350
1348
|
-s, --start=<value> Start time bucket to stream from, example: (2024-07-08T12:20:44Z, 1y, 1m, 1w, 1d, 1h, now)
|
|
1351
1349
|
-t, --timeout=<value> [default: 5000] Timeout in milliseconds to wait for a response from the destination
|
|
1352
|
-
-z, --pageSize=<value> [default: 10000] Number of events to fetch per page
|
|
1353
1350
|
--profile=<value> Specify the configuration profile to use
|
|
1354
1351
|
|
|
1355
1352
|
DESCRIPTION
|
|
@@ -1367,7 +1364,7 @@ EXAMPLES
|
|
|
1367
1364
|
$ 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
|
|
1368
1365
|
```
|
|
1369
1366
|
|
|
1370
|
-
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.
|
|
1367
|
+
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.8.0/src/commands/stream/http.ts)_
|
|
1371
1368
|
|
|
1372
1369
|
## `flowcore version`
|
|
1373
1370
|
|
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": "
|
|
11
|
+
"@flowcore/cli-plugin-core": "~4.8.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",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"prestart": "npm run build",
|
|
113
113
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
114
114
|
},
|
|
115
|
-
"version": "4.10.
|
|
115
|
+
"version": "4.10.2",
|
|
116
116
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
117
117
|
"keywords": [
|
|
118
118
|
"flowcore",
|