@flowcore/cli 4.16.0 → 4.17.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 +7 -0
- package/README.md +15 -15
- 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
|
+
## [4.17.0](https://github.com/flowcore-io/flowcore-cli/compare/v4.16.0...v4.17.0) (2025-07-10)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* update auth man plugin ([f82d2f7](https://github.com/flowcore-io/flowcore-cli/commit/f82d2f7fcf8710f1610f0fb1e5aaa91f214fa1d3))
|
|
19
|
+
|
|
13
20
|
## [4.16.0](https://github.com/flowcore-io/flowcore-cli/compare/v4.15.0...v4.16.0) (2025-07-04)
|
|
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/4.
|
|
21
|
+
@flowcore/cli/4.17.0 linux-x64 node-v20.16.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -109,7 +109,7 @@ EXAMPLES
|
|
|
109
109
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
112
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.17.0/src/commands/apply.ts)_
|
|
113
113
|
|
|
114
114
|
## `flowcore auth delete key API_KEY_NAME`
|
|
115
115
|
|
|
@@ -133,7 +133,7 @@ EXAMPLES
|
|
|
133
133
|
$ flowcore auth delete key --tenant=tenant-id <api-key-name>
|
|
134
134
|
```
|
|
135
135
|
|
|
136
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
136
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.7.0/src/commands/auth/delete/key.ts)_
|
|
137
137
|
|
|
138
138
|
## `flowcore auth delete pat PAT`
|
|
139
139
|
|
|
@@ -157,7 +157,7 @@ EXAMPLES
|
|
|
157
157
|
$ flowcore auth delete pat <pat-id>
|
|
158
158
|
```
|
|
159
159
|
|
|
160
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
160
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.7.0/src/commands/auth/delete/pat.ts)_
|
|
161
161
|
|
|
162
162
|
## `flowcore auth delete secret SECRET_KEY`
|
|
163
163
|
|
|
@@ -181,7 +181,7 @@ EXAMPLES
|
|
|
181
181
|
$ flowcore auth delete secret --tenant=tenant-id <secret-key>
|
|
182
182
|
```
|
|
183
183
|
|
|
184
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
184
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.7.0/src/commands/auth/delete/secret.ts)_
|
|
185
185
|
|
|
186
186
|
## `flowcore auth list key`
|
|
187
187
|
|
|
@@ -203,7 +203,7 @@ EXAMPLES
|
|
|
203
203
|
$ flowcore auth list key --tenant=tenant-id
|
|
204
204
|
```
|
|
205
205
|
|
|
206
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
206
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.7.0/src/commands/auth/list/key.ts)_
|
|
207
207
|
|
|
208
208
|
## `flowcore auth list pat`
|
|
209
209
|
|
|
@@ -224,7 +224,7 @@ EXAMPLES
|
|
|
224
224
|
$ flowcore auth list pat
|
|
225
225
|
```
|
|
226
226
|
|
|
227
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
227
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.7.0/src/commands/auth/list/pat.ts)_
|
|
228
228
|
|
|
229
229
|
## `flowcore auth list secret`
|
|
230
230
|
|
|
@@ -246,7 +246,7 @@ EXAMPLES
|
|
|
246
246
|
$ flowcore auth list secret --tenant=tenant-id
|
|
247
247
|
```
|
|
248
248
|
|
|
249
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
249
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.7.0/src/commands/auth/list/secret.ts)_
|
|
250
250
|
|
|
251
251
|
## `flowcore auth new key NAME`
|
|
252
252
|
|
|
@@ -271,7 +271,7 @@ EXAMPLES
|
|
|
271
271
|
$ flowcore auth new key <NAME> --tenant=tenant-id
|
|
272
272
|
```
|
|
273
273
|
|
|
274
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
274
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.7.0/src/commands/auth/new/key.ts)_
|
|
275
275
|
|
|
276
276
|
## `flowcore auth new pat NAME`
|
|
277
277
|
|
|
@@ -295,7 +295,7 @@ EXAMPLES
|
|
|
295
295
|
$ flowcore auth new pat <pat-name>
|
|
296
296
|
```
|
|
297
297
|
|
|
298
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
298
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.7.0/src/commands/auth/new/pat.ts)_
|
|
299
299
|
|
|
300
300
|
## `flowcore auth new secret NAME`
|
|
301
301
|
|
|
@@ -321,7 +321,7 @@ EXAMPLES
|
|
|
321
321
|
$ flowcore auth new secret <NAME> --tenant=tenant-id --from-literal=value
|
|
322
322
|
```
|
|
323
323
|
|
|
324
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
324
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.7.0/src/commands/auth/new/secret.ts)_
|
|
325
325
|
|
|
326
326
|
## `flowcore autocomplete [SHELL]`
|
|
327
327
|
|
|
@@ -562,7 +562,7 @@ EXAMPLES
|
|
|
562
562
|
cat ./path/to/manifest.yml | flowcore delete -f -
|
|
563
563
|
```
|
|
564
564
|
|
|
565
|
-
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
565
|
+
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.17.0/src/commands/delete.ts)_
|
|
566
566
|
|
|
567
567
|
## `flowcore delete policy NAME`
|
|
568
568
|
|
|
@@ -629,7 +629,7 @@ EXAMPLES
|
|
|
629
629
|
$ flowcore diff -f ./path/to/manifest.yml
|
|
630
630
|
```
|
|
631
631
|
|
|
632
|
-
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
632
|
+
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.17.0/src/commands/diff.ts)_
|
|
633
633
|
|
|
634
634
|
## `flowcore edit policy NAME`
|
|
635
635
|
|
|
@@ -873,7 +873,7 @@ EXAMPLES
|
|
|
873
873
|
$ flowcore info
|
|
874
874
|
```
|
|
875
875
|
|
|
876
|
-
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
876
|
+
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.17.0/src/commands/info.ts)_
|
|
877
877
|
|
|
878
878
|
## `flowcore login`
|
|
879
879
|
|
|
@@ -1621,7 +1621,7 @@ EXAMPLES
|
|
|
1621
1621
|
$ flowcore update
|
|
1622
1622
|
```
|
|
1623
1623
|
|
|
1624
|
-
_See code: [src/commands/update.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
1624
|
+
_See code: [src/commands/update.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.17.0/src/commands/update.ts)_
|
|
1625
1625
|
|
|
1626
1626
|
## `flowcore version`
|
|
1627
1627
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"@datastructures-js/queue": "^4.2.3",
|
|
8
8
|
"@flowcore/cli": "^4.13.5",
|
|
9
9
|
"@flowcore/cli-plugin-ai": "^1.1.2",
|
|
10
|
-
"@flowcore/cli-plugin-auth-management": "^1.
|
|
10
|
+
"@flowcore/cli-plugin-auth-management": "^1.7.0",
|
|
11
11
|
"@flowcore/cli-plugin-config": "^2.5.0",
|
|
12
12
|
"@flowcore/cli-plugin-core": "^5.7.0",
|
|
13
13
|
"@flowcore/cli-plugin-data-core": "^3.3.0",
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"prestart": "npm run build",
|
|
120
120
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
121
121
|
},
|
|
122
|
-
"version": "4.
|
|
122
|
+
"version": "4.17.0",
|
|
123
123
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
124
124
|
"keywords": [
|
|
125
125
|
"flowcore",
|