@flowcore/cli 4.14.4 → 4.15.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 +14 -14
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
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.15.0](https://github.com/flowcore-io/flowcore-cli/compare/v4.14.4...v4.15.0) (2025-07-02)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* :arrow_up: update @flowcore/cli-plugin-scenario to version 4.4.0 ([f9b5cd0](https://github.com/flowcore-io/flowcore-cli/commit/f9b5cd094e6e5af22f475125884e023f66f6ca32))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **package:** :arrow_up: update @flowcore/cli-plugin-scenario to version 4.4.0 ([672e9d3](https://github.com/flowcore-io/flowcore-cli/commit/672e9d396f3edb81300eedc4ae0a133ce1b3fb5e))
|
|
24
|
+
|
|
13
25
|
## [4.14.4](https://github.com/flowcore-io/flowcore-cli/compare/v4.14.3...v4.14.4) (2025-06-20)
|
|
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.
|
|
21
|
+
@flowcore/cli/4.15.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.15.0/src/commands/apply.ts)_
|
|
113
113
|
|
|
114
114
|
## `flowcore auth delete key API_KEY_NAME`
|
|
115
115
|
|
|
@@ -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.15.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.15.0/src/commands/diff.ts)_
|
|
633
633
|
|
|
634
634
|
## `flowcore edit policy NAME`
|
|
635
635
|
|
|
@@ -731,7 +731,7 @@ EXAMPLES
|
|
|
731
731
|
$ flowcore get adapter adapter-name -t tenant-name -s scenario-name
|
|
732
732
|
```
|
|
733
733
|
|
|
734
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.
|
|
734
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.4.0/src/commands/get/adapter.ts)_
|
|
735
735
|
|
|
736
736
|
## `flowcore get policy [NAME]`
|
|
737
737
|
|
|
@@ -804,7 +804,7 @@ EXAMPLES
|
|
|
804
804
|
$ flowcore get scenario scenario-name -t tenant-name
|
|
805
805
|
```
|
|
806
806
|
|
|
807
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.
|
|
807
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.4.0/src/commands/get/scenario.ts)_
|
|
808
808
|
|
|
809
809
|
## `flowcore get tenant [NAME]`
|
|
810
810
|
|
|
@@ -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.15.0/src/commands/info.ts)_
|
|
877
877
|
|
|
878
878
|
## `flowcore login`
|
|
879
879
|
|
|
@@ -930,7 +930,7 @@ EXAMPLES
|
|
|
930
930
|
$ flowcore logs adapter adapter-name -t tenant-name -s scenario-name --json
|
|
931
931
|
```
|
|
932
932
|
|
|
933
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.
|
|
933
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.4.0/src/commands/logs/adapter.ts)_
|
|
934
934
|
|
|
935
935
|
## `flowcore new bun-service NAME`
|
|
936
936
|
|
|
@@ -1385,7 +1385,7 @@ EXAMPLES
|
|
|
1385
1385
|
$ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -e 9cb35da2-ba64-4bb5-86d6-ef20ebc62ab7
|
|
1386
1386
|
```
|
|
1387
1387
|
|
|
1388
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.
|
|
1388
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.4.0/src/commands/reset/adapter.ts)_
|
|
1389
1389
|
|
|
1390
1390
|
## `flowcore scenario apply`
|
|
1391
1391
|
|
|
@@ -1415,7 +1415,7 @@ EXAMPLES
|
|
|
1415
1415
|
$ cat <<EOF | flowcore scenario apply -f -
|
|
1416
1416
|
```
|
|
1417
1417
|
|
|
1418
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.
|
|
1418
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.4.0/src/commands/scenario/apply.ts)_
|
|
1419
1419
|
|
|
1420
1420
|
## `flowcore scenario generate transformer`
|
|
1421
1421
|
|
|
@@ -1442,7 +1442,7 @@ EXAMPLES
|
|
|
1442
1442
|
$ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
|
|
1443
1443
|
```
|
|
1444
1444
|
|
|
1445
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.
|
|
1445
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.4.0/src/commands/scenario/generate/transformer.ts)_
|
|
1446
1446
|
|
|
1447
1447
|
## `flowcore scenario init`
|
|
1448
1448
|
|
|
@@ -1474,7 +1474,7 @@ EXAMPLES
|
|
|
1474
1474
|
$ flowcore scenario init -t flowcore -n scenario-name -f example.yaml
|
|
1475
1475
|
```
|
|
1476
1476
|
|
|
1477
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.
|
|
1477
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.4.0/src/commands/scenario/init.ts)_
|
|
1478
1478
|
|
|
1479
1479
|
## `flowcore scenario local`
|
|
1480
1480
|
|
|
@@ -1507,7 +1507,7 @@ EXAMPLES
|
|
|
1507
1507
|
$ cat <<EOF | flowcore scenario local -f -
|
|
1508
1508
|
```
|
|
1509
1509
|
|
|
1510
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.
|
|
1510
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.4.0/src/commands/scenario/local.ts)_
|
|
1511
1511
|
|
|
1512
1512
|
## `flowcore stream STREAM`
|
|
1513
1513
|
|
|
@@ -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.15.0/src/commands/update.ts)_
|
|
1625
1625
|
|
|
1626
1626
|
## `flowcore version`
|
|
1627
1627
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@flowcore/cli-plugin-data-core": "^3.3.0",
|
|
14
14
|
"@flowcore/cli-plugin-generator": "^1.6.0",
|
|
15
15
|
"@flowcore/cli-plugin-iam": "^1.7.0",
|
|
16
|
-
"@flowcore/cli-plugin-scenario": "^4.
|
|
16
|
+
"@flowcore/cli-plugin-scenario": "^4.4.0",
|
|
17
17
|
"@flowcore/cli-plugin-tenant-management": "^1.1.1",
|
|
18
18
|
"@flowcore/sdk": "^1.50.0",
|
|
19
19
|
"@flowcore/time-bucket": "^1.1.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.15.0",
|
|
123
123
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
124
124
|
"keywords": [
|
|
125
125
|
"flowcore",
|