@flowcore/cli 4.0.3 → 4.1.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/CHANGELOG.md +20 -0
- package/README.md +31 -8
- package/oclif.manifest.json +1 -1
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,26 @@
|
|
|
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.1.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.1.0...v4.1.1) (2024-09-17)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* :bug: fixed graphql login problem ([47ffdac](https://github.com/flowcore-io/flowcore-cli/commit/47ffdacf7f166ef35bb673b1d2b968f861199587))
|
|
19
|
+
* bumped flowcore plugin packages to latest versions ([4454218](https://github.com/flowcore-io/flowcore-cli/commit/445421803e12f71b48b77eb7d4c5a666389d6b40))
|
|
20
|
+
|
|
21
|
+
## [4.1.0](https://github.com/flowcore-io/flowcore-cli/compare/v4.0.3...v4.1.0) (2024-09-13)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
* **ai:** :sparkles: Added AI plugin that can be used with other plugins ([8a0fd5a](https://github.com/flowcore-io/flowcore-cli/commit/8a0fd5aa68dd0a5fc2e9d6ca1742eae78611575b))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* added missing readme ([0607bec](https://github.com/flowcore-io/flowcore-cli/commit/0607becf74efde7583b5fa903c610a618a634dcc))
|
|
32
|
+
|
|
13
33
|
## [4.0.3](https://github.com/flowcore-io/flowcore-cli/compare/v4.0.2...v4.0.3) (2024-09-11)
|
|
14
34
|
|
|
15
35
|
|
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.1.1 linux-x64 node-v20.17.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -35,6 +35,7 @@ USAGE
|
|
|
35
35
|
* [`flowcore auth new key NAME`](#flowcore-auth-new-key-name)
|
|
36
36
|
* [`flowcore auth new secret NAME`](#flowcore-auth-new-secret-name)
|
|
37
37
|
* [`flowcore autocomplete [SHELL]`](#flowcore-autocomplete-shell)
|
|
38
|
+
* [`flowcore config ai`](#flowcore-config-ai)
|
|
38
39
|
* [`flowcore config set`](#flowcore-config-set)
|
|
39
40
|
* [`flowcore config show`](#flowcore-config-show)
|
|
40
41
|
* [`flowcore data-core apply`](#flowcore-data-core-apply)
|
|
@@ -94,7 +95,7 @@ EXAMPLES
|
|
|
94
95
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
95
96
|
```
|
|
96
97
|
|
|
97
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
98
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.1.1/src/commands/apply.ts)_
|
|
98
99
|
|
|
99
100
|
## `flowcore auth delete key API_KEY_NAME`
|
|
100
101
|
|
|
@@ -270,6 +271,28 @@ EXAMPLES
|
|
|
270
271
|
|
|
271
272
|
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.3/src/commands/autocomplete/index.ts)_
|
|
272
273
|
|
|
274
|
+
## `flowcore config ai`
|
|
275
|
+
|
|
276
|
+
AI Config
|
|
277
|
+
|
|
278
|
+
```
|
|
279
|
+
USAGE
|
|
280
|
+
$ flowcore config ai [--profile <value>] [-a <value>] [-p <value>]
|
|
281
|
+
|
|
282
|
+
FLAGS
|
|
283
|
+
-a, --apiKey=<value> api key
|
|
284
|
+
-p, --provider=<value> provider
|
|
285
|
+
--profile=<value> Specify the configuration profile to use
|
|
286
|
+
|
|
287
|
+
DESCRIPTION
|
|
288
|
+
AI Config
|
|
289
|
+
|
|
290
|
+
EXAMPLES
|
|
291
|
+
$ flowcore
|
|
292
|
+
```
|
|
293
|
+
|
|
294
|
+
_See code: [@flowcore/cli-plugin-ai](https://github.com/flowcore-io/cli-plugin-ai/blob/v1.1.2/src/commands/config/ai.ts)_
|
|
295
|
+
|
|
273
296
|
## `flowcore config set`
|
|
274
297
|
|
|
275
298
|
Configure the cli
|
|
@@ -298,7 +321,7 @@ EXAMPLES
|
|
|
298
321
|
$ flowcore config set -l https://auth.flowcore.io/realms/flowcore/.well-known/openid-configuration -c my-client-id -p
|
|
299
322
|
```
|
|
300
323
|
|
|
301
|
-
_See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.
|
|
324
|
+
_See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.4.1/src/commands/config/set.ts)_
|
|
302
325
|
|
|
303
326
|
## `flowcore config show`
|
|
304
327
|
|
|
@@ -318,7 +341,7 @@ EXAMPLES
|
|
|
318
341
|
$ flowcore config show
|
|
319
342
|
```
|
|
320
343
|
|
|
321
|
-
_See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.
|
|
344
|
+
_See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.4.1/src/commands/config/show.ts)_
|
|
322
345
|
|
|
323
346
|
## `flowcore data-core apply`
|
|
324
347
|
|
|
@@ -581,7 +604,7 @@ EXAMPLES
|
|
|
581
604
|
$ flowcore login --port 8080
|
|
582
605
|
```
|
|
583
606
|
|
|
584
|
-
_See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.
|
|
607
|
+
_See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.4.1/src/commands/login.ts)_
|
|
585
608
|
|
|
586
609
|
## `flowcore logs adapter ADAPTER`
|
|
587
610
|
|
|
@@ -1231,7 +1254,7 @@ EXAMPLES
|
|
|
1231
1254
|
$ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m
|
|
1232
1255
|
```
|
|
1233
1256
|
|
|
1234
|
-
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/
|
|
1257
|
+
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.0.3/src/commands/stream.ts)_
|
|
1235
1258
|
|
|
1236
1259
|
## `flowcore stream http STREAM`
|
|
1237
1260
|
|
|
@@ -1273,7 +1296,7 @@ EXAMPLES
|
|
|
1273
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
|
|
1274
1297
|
```
|
|
1275
1298
|
|
|
1276
|
-
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/
|
|
1299
|
+
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.0.3/src/commands/stream/http.ts)_
|
|
1277
1300
|
|
|
1278
1301
|
## `flowcore version`
|
|
1279
1302
|
|
|
@@ -1310,5 +1333,5 @@ DESCRIPTION
|
|
|
1310
1333
|
Check what user you are logged in as
|
|
1311
1334
|
```
|
|
1312
1335
|
|
|
1313
|
-
_See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.
|
|
1336
|
+
_See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.4.1/src/commands/whoami.ts)_
|
|
1314
1337
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -5,9 +5,10 @@
|
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@datastructures-js/queue": "^4.2.3",
|
|
8
|
+
"@flowcore/cli-plugin-ai": "^1.1.2",
|
|
8
9
|
"@flowcore/cli-plugin-auth-management": "^1.2.2",
|
|
9
|
-
"@flowcore/cli-plugin-config": "^2.
|
|
10
|
-
"@flowcore/cli-plugin-core": "^
|
|
10
|
+
"@flowcore/cli-plugin-config": "^2.4.1",
|
|
11
|
+
"@flowcore/cli-plugin-core": "^4.0.3",
|
|
11
12
|
"@flowcore/cli-plugin-data-core": "^3.0.2",
|
|
12
13
|
"@flowcore/cli-plugin-generator": "^1.6.0",
|
|
13
14
|
"@flowcore/cli-plugin-scenario": "^4.0.5",
|
|
@@ -83,7 +84,8 @@
|
|
|
83
84
|
"@flowcore/cli-plugin-core",
|
|
84
85
|
"@flowcore/cli-plugin-generator",
|
|
85
86
|
"@flowcore/cli-plugin-auth-management",
|
|
86
|
-
"@flowcore/cli-plugin-tenant-management"
|
|
87
|
+
"@flowcore/cli-plugin-tenant-management",
|
|
88
|
+
"@flowcore/cli-plugin-ai"
|
|
87
89
|
],
|
|
88
90
|
"warnIfUpdateAvailable": {
|
|
89
91
|
"timeoutInDays": 2
|
|
@@ -104,7 +106,7 @@
|
|
|
104
106
|
"prestart": "npm run build",
|
|
105
107
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
106
108
|
},
|
|
107
|
-
"version": "4.
|
|
109
|
+
"version": "4.1.1",
|
|
108
110
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
109
111
|
"keywords": [
|
|
110
112
|
"flowcore",
|