@flowcore/cli 2.17.0 → 2.18.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 +36 -6
- 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
|
+
## [2.18.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.17.0...v2.18.0) (2024-08-06)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* added reset adapter command ([bf3831c](https://github.com/flowcore-io/flowcore-cli/commit/bf3831c01e1356fa64059d82c3be0517840f7e81))
|
|
19
|
+
|
|
13
20
|
## [2.17.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.16.1...v2.17.0) (2024-07-15)
|
|
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/2.
|
|
21
|
+
@flowcore/cli/2.18.0 linux-x64 node-v20.16.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -50,6 +50,7 @@ USAGE
|
|
|
50
50
|
* [`flowcore plugins:uninstall PLUGIN...`](#flowcore-pluginsuninstall-plugin-2)
|
|
51
51
|
* [`flowcore plugins update`](#flowcore-plugins-update)
|
|
52
52
|
* [`flowcore plugins update check`](#flowcore-plugins-update-check)
|
|
53
|
+
* [`flowcore reset adapter ADAPTER`](#flowcore-reset-adapter-adapter)
|
|
53
54
|
* [`flowcore scenario apply`](#flowcore-scenario-apply)
|
|
54
55
|
* [`flowcore scenario generate manifest`](#flowcore-scenario-generate-manifest)
|
|
55
56
|
* [`flowcore scenario generate transformer`](#flowcore-scenario-generate-transformer)
|
|
@@ -78,7 +79,7 @@ EXAMPLES
|
|
|
78
79
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
79
80
|
```
|
|
80
81
|
|
|
81
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.
|
|
82
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.18.0/src/commands/apply.ts)_
|
|
82
83
|
|
|
83
84
|
## `flowcore autocomplete [SHELL]`
|
|
84
85
|
|
|
@@ -658,6 +659,35 @@ DESCRIPTION
|
|
|
658
659
|
|
|
659
660
|
_See code: [oclif-plugin-update-notifier](https://github.com/jayree/oclif-plugin-update-notifier/blob/v1.5.84/src/commands/plugins/update/check.ts)_
|
|
660
661
|
|
|
662
|
+
## `flowcore reset adapter ADAPTER`
|
|
663
|
+
|
|
664
|
+
Reset a adapter
|
|
665
|
+
|
|
666
|
+
```
|
|
667
|
+
USAGE
|
|
668
|
+
$ flowcore reset adapter ADAPTER -s <value> -t <value> [--profile <value>] [-b <value>] [-e <value>]
|
|
669
|
+
|
|
670
|
+
ARGUMENTS
|
|
671
|
+
ADAPTER adapter name or id
|
|
672
|
+
|
|
673
|
+
FLAGS
|
|
674
|
+
-b, --bucket=<value> time bucket
|
|
675
|
+
-e, --eventId=<value> time uuid
|
|
676
|
+
-s, --scenario=<value> (required) scenario
|
|
677
|
+
-t, --tenant=<value> (required) tenant
|
|
678
|
+
--profile=<value> Specify the configuration profile to use
|
|
679
|
+
|
|
680
|
+
DESCRIPTION
|
|
681
|
+
Reset a adapter
|
|
682
|
+
|
|
683
|
+
EXAMPLES
|
|
684
|
+
$ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -b 20240718110000
|
|
685
|
+
|
|
686
|
+
$ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -e 9cb35da2-ba64-4bb5-86d6-ef20ebc62ab7
|
|
687
|
+
```
|
|
688
|
+
|
|
689
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.11.0/src/commands/reset/adapter.ts)_
|
|
690
|
+
|
|
661
691
|
## `flowcore scenario apply`
|
|
662
692
|
|
|
663
693
|
Apply a manifest configuration for a Scenario to the Flowcore Platform
|
|
@@ -686,7 +716,7 @@ EXAMPLES
|
|
|
686
716
|
$ cat <<EOF | flowcore scenario apply -f -
|
|
687
717
|
```
|
|
688
718
|
|
|
689
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.
|
|
719
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.11.0/src/commands/scenario/apply.ts)_
|
|
690
720
|
|
|
691
721
|
## `flowcore scenario generate manifest`
|
|
692
722
|
|
|
@@ -718,7 +748,7 @@ EXAMPLES
|
|
|
718
748
|
$ flowcore scenario generate manifest -t flowcore -n scenario-name -f example.yaml
|
|
719
749
|
```
|
|
720
750
|
|
|
721
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.
|
|
751
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.11.0/src/commands/scenario/generate/manifest.ts)_
|
|
722
752
|
|
|
723
753
|
## `flowcore scenario generate transformer`
|
|
724
754
|
|
|
@@ -745,7 +775,7 @@ EXAMPLES
|
|
|
745
775
|
$ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
|
|
746
776
|
```
|
|
747
777
|
|
|
748
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.
|
|
778
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.11.0/src/commands/scenario/generate/transformer.ts)_
|
|
749
779
|
|
|
750
780
|
## `flowcore scenario local`
|
|
751
781
|
|
|
@@ -777,7 +807,7 @@ EXAMPLES
|
|
|
777
807
|
$ cat <<EOF | flowcore scenario local -f -
|
|
778
808
|
```
|
|
779
809
|
|
|
780
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.
|
|
810
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.11.0/src/commands/scenario/local.ts)_
|
|
781
811
|
|
|
782
812
|
## `flowcore stream STREAM`
|
|
783
813
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@flowcore/cli-plugin-core": "^1.6.1",
|
|
10
10
|
"@flowcore/cli-plugin-data-core": "^2.2.2",
|
|
11
11
|
"@flowcore/cli-plugin-generator": "^1.0.0",
|
|
12
|
-
"@flowcore/cli-plugin-scenario": "^2.
|
|
12
|
+
"@flowcore/cli-plugin-scenario": "^2.11.0",
|
|
13
13
|
"@flowcore/time-bucket": "^1.1.0",
|
|
14
14
|
"@oclif/core": "^3",
|
|
15
15
|
"@oclif/plugin-autocomplete": "^3.0.2",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"prestart": "npm run build",
|
|
97
97
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
98
98
|
},
|
|
99
|
-
"version": "2.
|
|
99
|
+
"version": "2.18.0",
|
|
100
100
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
101
101
|
"keywords": [
|
|
102
102
|
"flowcore",
|