@flowcore/cli 4.12.5 → 4.13.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 +14 -0
- package/README.md +96 -23
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,20 @@
|
|
|
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.13.0](https://github.com/flowcore-io/flowcore-cli/compare/v4.12.6...v4.13.0) (2025-03-17)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **package:** :arrow_up: update @flowcore/cli-plugin-auth-management to version 1.4.0 ([0b15372](https://github.com/flowcore-io/flowcore-cli/commit/0b1537249f9f6bcd4a1682eb834de8d2da329345))
|
|
19
|
+
|
|
20
|
+
## [4.12.6](https://github.com/flowcore-io/flowcore-cli/compare/v4.12.5...v4.12.6) (2025-03-06)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* update scenario plugin to version 4.1.5 ([0ed9ddf](https://github.com/flowcore-io/flowcore-cli/commit/0ed9ddf811d738d7ef190854f6903c49ce39a365))
|
|
26
|
+
|
|
13
27
|
## [4.12.5](https://github.com/flowcore-io/flowcore-cli/compare/v4.12.4...v4.12.5) (2025-02-16)
|
|
14
28
|
|
|
15
29
|
|
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.13.0 linux-x64 node-v20.16.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -29,10 +29,13 @@ USAGE
|
|
|
29
29
|
<!-- commands -->
|
|
30
30
|
* [`flowcore apply`](#flowcore-apply)
|
|
31
31
|
* [`flowcore auth delete key API_KEY_NAME`](#flowcore-auth-delete-key-api_key_name)
|
|
32
|
+
* [`flowcore auth delete pat PAT`](#flowcore-auth-delete-pat-pat)
|
|
32
33
|
* [`flowcore auth delete secret SECRET_KEY`](#flowcore-auth-delete-secret-secret_key)
|
|
33
34
|
* [`flowcore auth list key`](#flowcore-auth-list-key)
|
|
35
|
+
* [`flowcore auth list pat`](#flowcore-auth-list-pat)
|
|
34
36
|
* [`flowcore auth list secret`](#flowcore-auth-list-secret)
|
|
35
37
|
* [`flowcore auth new key NAME`](#flowcore-auth-new-key-name)
|
|
38
|
+
* [`flowcore auth new pat NAME`](#flowcore-auth-new-pat-name)
|
|
36
39
|
* [`flowcore auth new secret NAME`](#flowcore-auth-new-secret-name)
|
|
37
40
|
* [`flowcore autocomplete [SHELL]`](#flowcore-autocomplete-shell)
|
|
38
41
|
* [`flowcore config ai`](#flowcore-config-ai)
|
|
@@ -105,7 +108,7 @@ EXAMPLES
|
|
|
105
108
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
106
109
|
```
|
|
107
110
|
|
|
108
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
111
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.0/src/commands/apply.ts)_
|
|
109
112
|
|
|
110
113
|
## `flowcore auth delete key API_KEY_NAME`
|
|
111
114
|
|
|
@@ -129,7 +132,31 @@ EXAMPLES
|
|
|
129
132
|
$ flowcore auth delete key --tenant=tenant-id <api-key-name>
|
|
130
133
|
```
|
|
131
134
|
|
|
132
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
135
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/delete/key.ts)_
|
|
136
|
+
|
|
137
|
+
## `flowcore auth delete pat PAT`
|
|
138
|
+
|
|
139
|
+
Delete a Personal Access Token (PAT)
|
|
140
|
+
|
|
141
|
+
```
|
|
142
|
+
USAGE
|
|
143
|
+
$ flowcore auth delete pat PAT [--profile <value>] [-j]
|
|
144
|
+
|
|
145
|
+
ARGUMENTS
|
|
146
|
+
PAT PAT id to delete
|
|
147
|
+
|
|
148
|
+
FLAGS
|
|
149
|
+
-j, --json output the PAT in JSON format
|
|
150
|
+
--profile=<value> Specify the configuration profile to use
|
|
151
|
+
|
|
152
|
+
DESCRIPTION
|
|
153
|
+
Delete a Personal Access Token (PAT)
|
|
154
|
+
|
|
155
|
+
EXAMPLES
|
|
156
|
+
$ flowcore auth delete pat <pat-id>
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/delete/pat.ts)_
|
|
133
160
|
|
|
134
161
|
## `flowcore auth delete secret SECRET_KEY`
|
|
135
162
|
|
|
@@ -153,7 +180,7 @@ EXAMPLES
|
|
|
153
180
|
$ flowcore auth delete secret --tenant=tenant-id <secret-key>
|
|
154
181
|
```
|
|
155
182
|
|
|
156
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
183
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/delete/secret.ts)_
|
|
157
184
|
|
|
158
185
|
## `flowcore auth list key`
|
|
159
186
|
|
|
@@ -175,7 +202,28 @@ EXAMPLES
|
|
|
175
202
|
$ flowcore auth list key --tenant=tenant-id
|
|
176
203
|
```
|
|
177
204
|
|
|
178
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
205
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/list/key.ts)_
|
|
206
|
+
|
|
207
|
+
## `flowcore auth list pat`
|
|
208
|
+
|
|
209
|
+
List all Personal Access Tokens (PATs)
|
|
210
|
+
|
|
211
|
+
```
|
|
212
|
+
USAGE
|
|
213
|
+
$ flowcore auth list pat [--profile <value>] [-j]
|
|
214
|
+
|
|
215
|
+
FLAGS
|
|
216
|
+
-j, --json output the PATs in JSON format
|
|
217
|
+
--profile=<value> Specify the configuration profile to use
|
|
218
|
+
|
|
219
|
+
DESCRIPTION
|
|
220
|
+
List all Personal Access Tokens (PATs)
|
|
221
|
+
|
|
222
|
+
EXAMPLES
|
|
223
|
+
$ flowcore auth list pat
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/list/pat.ts)_
|
|
179
227
|
|
|
180
228
|
## `flowcore auth list secret`
|
|
181
229
|
|
|
@@ -197,7 +245,7 @@ EXAMPLES
|
|
|
197
245
|
$ flowcore auth list secret --tenant=tenant-id
|
|
198
246
|
```
|
|
199
247
|
|
|
200
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
248
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/list/secret.ts)_
|
|
201
249
|
|
|
202
250
|
## `flowcore auth new key NAME`
|
|
203
251
|
|
|
@@ -219,10 +267,34 @@ DESCRIPTION
|
|
|
219
267
|
Create a new API key
|
|
220
268
|
|
|
221
269
|
EXAMPLES
|
|
222
|
-
$ flowcore auth new key --tenant=tenant-id
|
|
270
|
+
$ flowcore auth new key <NAME> --tenant=tenant-id
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/new/key.ts)_
|
|
274
|
+
|
|
275
|
+
## `flowcore auth new pat NAME`
|
|
276
|
+
|
|
277
|
+
Create a new PAT (Personal Access Token)
|
|
278
|
+
|
|
279
|
+
```
|
|
280
|
+
USAGE
|
|
281
|
+
$ flowcore auth new pat NAME [--profile <value>] [-j]
|
|
282
|
+
|
|
283
|
+
ARGUMENTS
|
|
284
|
+
NAME PAT name
|
|
285
|
+
|
|
286
|
+
FLAGS
|
|
287
|
+
-j, --json output the API key in JSON format
|
|
288
|
+
--profile=<value> Specify the configuration profile to use
|
|
289
|
+
|
|
290
|
+
DESCRIPTION
|
|
291
|
+
Create a new PAT (Personal Access Token)
|
|
292
|
+
|
|
293
|
+
EXAMPLES
|
|
294
|
+
$ flowcore auth new pat <pat-name>
|
|
223
295
|
```
|
|
224
296
|
|
|
225
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
297
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/new/pat.ts)_
|
|
226
298
|
|
|
227
299
|
## `flowcore auth new secret NAME`
|
|
228
300
|
|
|
@@ -245,10 +317,10 @@ DESCRIPTION
|
|
|
245
317
|
Create a new secret for the tenant
|
|
246
318
|
|
|
247
319
|
EXAMPLES
|
|
248
|
-
$ flowcore auth new secret --tenant=tenant-id --from-literal=value
|
|
320
|
+
$ flowcore auth new secret <NAME> --tenant=tenant-id --from-literal=value
|
|
249
321
|
```
|
|
250
322
|
|
|
251
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.
|
|
323
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/new/secret.ts)_
|
|
252
324
|
|
|
253
325
|
## `flowcore autocomplete [SHELL]`
|
|
254
326
|
|
|
@@ -489,7 +561,7 @@ EXAMPLES
|
|
|
489
561
|
cat ./path/to/manifest.yml | flowcore delete -f -
|
|
490
562
|
```
|
|
491
563
|
|
|
492
|
-
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
564
|
+
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.0/src/commands/delete.ts)_
|
|
493
565
|
|
|
494
566
|
## `flowcore delete policy NAME`
|
|
495
567
|
|
|
@@ -556,7 +628,7 @@ EXAMPLES
|
|
|
556
628
|
$ flowcore diff -f ./path/to/manifest.yml
|
|
557
629
|
```
|
|
558
630
|
|
|
559
|
-
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
631
|
+
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.0/src/commands/diff.ts)_
|
|
560
632
|
|
|
561
633
|
## `flowcore edit policy NAME`
|
|
562
634
|
|
|
@@ -658,7 +730,7 @@ EXAMPLES
|
|
|
658
730
|
$ flowcore get adapter adapter-name -t tenant-name -s scenario-name
|
|
659
731
|
```
|
|
660
732
|
|
|
661
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.
|
|
733
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.6/src/commands/get/adapter.ts)_
|
|
662
734
|
|
|
663
735
|
## `flowcore get policy [NAME]`
|
|
664
736
|
|
|
@@ -730,7 +802,7 @@ EXAMPLES
|
|
|
730
802
|
$ flowcore get scenario scenario-name -t tenant-name
|
|
731
803
|
```
|
|
732
804
|
|
|
733
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.
|
|
805
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.6/src/commands/get/scenario.ts)_
|
|
734
806
|
|
|
735
807
|
## `flowcore get tenant [NAME]`
|
|
736
808
|
|
|
@@ -799,7 +871,7 @@ EXAMPLES
|
|
|
799
871
|
$ flowcore info
|
|
800
872
|
```
|
|
801
873
|
|
|
802
|
-
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.
|
|
874
|
+
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.0/src/commands/info.ts)_
|
|
803
875
|
|
|
804
876
|
## `flowcore login`
|
|
805
877
|
|
|
@@ -856,7 +928,7 @@ EXAMPLES
|
|
|
856
928
|
$ flowcore logs adapter adapter-name -t tenant-name -s scenario-name --json
|
|
857
929
|
```
|
|
858
930
|
|
|
859
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.
|
|
931
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.6/src/commands/logs/adapter.ts)_
|
|
860
932
|
|
|
861
933
|
## `flowcore new bun-service NAME`
|
|
862
934
|
|
|
@@ -1311,7 +1383,7 @@ EXAMPLES
|
|
|
1311
1383
|
$ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -e 9cb35da2-ba64-4bb5-86d6-ef20ebc62ab7
|
|
1312
1384
|
```
|
|
1313
1385
|
|
|
1314
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.
|
|
1386
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.6/src/commands/reset/adapter.ts)_
|
|
1315
1387
|
|
|
1316
1388
|
## `flowcore scenario apply`
|
|
1317
1389
|
|
|
@@ -1341,7 +1413,7 @@ EXAMPLES
|
|
|
1341
1413
|
$ cat <<EOF | flowcore scenario apply -f -
|
|
1342
1414
|
```
|
|
1343
1415
|
|
|
1344
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.
|
|
1416
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.6/src/commands/scenario/apply.ts)_
|
|
1345
1417
|
|
|
1346
1418
|
## `flowcore scenario generate transformer`
|
|
1347
1419
|
|
|
@@ -1368,7 +1440,7 @@ EXAMPLES
|
|
|
1368
1440
|
$ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
|
|
1369
1441
|
```
|
|
1370
1442
|
|
|
1371
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.
|
|
1443
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.6/src/commands/scenario/generate/transformer.ts)_
|
|
1372
1444
|
|
|
1373
1445
|
## `flowcore scenario init`
|
|
1374
1446
|
|
|
@@ -1400,7 +1472,7 @@ EXAMPLES
|
|
|
1400
1472
|
$ flowcore scenario init -t flowcore -n scenario-name -f example.yaml
|
|
1401
1473
|
```
|
|
1402
1474
|
|
|
1403
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.
|
|
1475
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.6/src/commands/scenario/init.ts)_
|
|
1404
1476
|
|
|
1405
1477
|
## `flowcore scenario local`
|
|
1406
1478
|
|
|
@@ -1408,8 +1480,8 @@ Spin up local stream threads based on a scenario manifest
|
|
|
1408
1480
|
|
|
1409
1481
|
```
|
|
1410
1482
|
USAGE
|
|
1411
|
-
$ flowcore scenario local -e <value> -f <value> [--profile <value>] [-H <value>] [-m http] [-
|
|
1412
|
-
<value>] [-y]
|
|
1483
|
+
$ flowcore scenario local -e <value> -f <value> [--profile <value>] [-H <value>] [-m http] [-z <value>] [-c] [-s
|
|
1484
|
+
<value>] [-t <value>] [-y]
|
|
1413
1485
|
|
|
1414
1486
|
FLAGS
|
|
1415
1487
|
-H, --header=<value>... [default: ] header to send with the request, example: (-H 'Authorization: Bearer TOKEN')
|
|
@@ -1421,6 +1493,7 @@ FLAGS
|
|
|
1421
1493
|
-s, --start=<value> Start time bucket to stream from, example: (1y, 1m, 1w, 1d, 1h, now)
|
|
1422
1494
|
-t, --timeout=<value> [default: 5000] Timeout in milliseconds to wait for a response from the destination
|
|
1423
1495
|
-y, --yes skip confirmation
|
|
1496
|
+
-z, --pageSize=<value> [default: 10000] Page size for the stream
|
|
1424
1497
|
--profile=<value> Specify the configuration profile to use
|
|
1425
1498
|
|
|
1426
1499
|
DESCRIPTION
|
|
@@ -1432,7 +1505,7 @@ EXAMPLES
|
|
|
1432
1505
|
$ cat <<EOF | flowcore scenario local -f -
|
|
1433
1506
|
```
|
|
1434
1507
|
|
|
1435
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.
|
|
1508
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.6/src/commands/scenario/local.ts)_
|
|
1436
1509
|
|
|
1437
1510
|
## `flowcore stream STREAM`
|
|
1438
1511
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@datastructures-js/queue": "^4.2.3",
|
|
8
8
|
"@flowcore/cli-plugin-ai": "^1.1.2",
|
|
9
|
-
"@flowcore/cli-plugin-auth-management": "^1.
|
|
9
|
+
"@flowcore/cli-plugin-auth-management": "^1.4.0",
|
|
10
10
|
"@flowcore/cli-plugin-config": "^2.5.0",
|
|
11
11
|
"@flowcore/cli-plugin-core": "^5.1.6",
|
|
12
12
|
"@flowcore/cli-plugin-data-core": "^3.2.2",
|
|
13
13
|
"@flowcore/cli-plugin-generator": "^1.6.0",
|
|
14
14
|
"@flowcore/cli-plugin-iam": "^1.6.0",
|
|
15
|
-
"@flowcore/cli-plugin-scenario": "^4.1.
|
|
15
|
+
"@flowcore/cli-plugin-scenario": "^4.1.5",
|
|
16
16
|
"@flowcore/cli-plugin-tenant-management": "^1.1.1",
|
|
17
17
|
"@flowcore/time-bucket": "^1.1.0",
|
|
18
18
|
"@oclif/core": "^4.0.21",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"prestart": "npm run build",
|
|
115
115
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
116
116
|
},
|
|
117
|
-
"version": "4.
|
|
117
|
+
"version": "4.13.0",
|
|
118
118
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
119
119
|
"keywords": [
|
|
120
120
|
"flowcore",
|