@flowcore/cli 4.0.3 → 4.1.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 +12 -0
- package/README.md +29 -6
- package/oclif.manifest.json +1 -1
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@
|
|
|
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.0](https://github.com/flowcore-io/flowcore-cli/compare/v4.0.3...v4.1.0) (2024-09-13)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **ai:** :sparkles: Added AI plugin that can be used with other plugins ([8a0fd5a](https://github.com/flowcore-io/flowcore-cli/commit/8a0fd5aa68dd0a5fc2e9d6ca1742eae78611575b))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* added missing readme ([0607bec](https://github.com/flowcore-io/flowcore-cli/commit/0607becf74efde7583b5fa903c610a618a634dcc))
|
|
24
|
+
|
|
13
25
|
## [4.0.3](https://github.com/flowcore-io/flowcore-cli/compare/v4.0.2...v4.0.3) (2024-09-11)
|
|
14
26
|
|
|
15
27
|
|
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.0
|
|
21
|
+
@flowcore/cli/4.1.0 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.0
|
|
98
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.1.0/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.0.0/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.0/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.0/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.0/src/commands/login.ts)_
|
|
585
608
|
|
|
586
609
|
## `flowcore logs adapter ADAPTER`
|
|
587
610
|
|
|
@@ -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.0/src/commands/whoami.ts)_
|
|
1314
1337
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -5,8 +5,9 @@
|
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@datastructures-js/queue": "^4.2.3",
|
|
8
|
+
"@flowcore/cli-plugin-ai": "^1.0.0",
|
|
8
9
|
"@flowcore/cli-plugin-auth-management": "^1.2.2",
|
|
9
|
-
"@flowcore/cli-plugin-config": "^2.
|
|
10
|
+
"@flowcore/cli-plugin-config": "^2.4.0",
|
|
10
11
|
"@flowcore/cli-plugin-core": "^3.3.1",
|
|
11
12
|
"@flowcore/cli-plugin-data-core": "^3.0.2",
|
|
12
13
|
"@flowcore/cli-plugin-generator": "^1.6.0",
|
|
@@ -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.0
|
|
109
|
+
"version": "4.1.0",
|
|
108
110
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
109
111
|
"keywords": [
|
|
110
112
|
"flowcore",
|