@flowcore/cli 2.1.1 → 2.2.1
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 +19 -0
- package/README.md +33 -3
- package/oclif.manifest.json +1 -1
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,25 @@
|
|
|
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.2.1](https://github.com/flowcore-io/flowcore-cli/compare/v2.2.0...v2.2.1) (2024-02-16)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* bumped data core plugin ([51df38b](https://github.com/flowcore-io/flowcore-cli/commit/51df38bb2445fb3ede92fd460f8431dc8ff41777))
|
|
19
|
+
|
|
20
|
+
## [2.2.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.1.1...v2.2.0) (2024-02-16)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* added flowcore data-core plugin ([32dbc6a](https://github.com/flowcore-io/flowcore-cli/commit/32dbc6a60bc6d1c3e38da03b4d115ff634b00477))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* updated readme badge ([bd87eeb](https://github.com/flowcore-io/flowcore-cli/commit/bd87eeb7090a08f36e5c8b7b7da4bd0cc059f052))
|
|
31
|
+
|
|
13
32
|
## [2.1.1](https://github.com/flowcore-io/flowcore-cli/compare/v2.1.0...v2.1.1) (2024-02-15)
|
|
14
33
|
|
|
15
34
|
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ Flowcore CLI
|
|
|
3
3
|
|
|
4
4
|
Flowcore CLI is a command line interface for interacting with the Flowcore Platform.
|
|
5
5
|
|
|
6
|
-
[](https://npmjs.org/package/@flowcore/cli)
|
|
7
7
|
[](https://oclif.io)
|
|
8
8
|
[](https://github.com/flowcore-io/flowcore-cli/actions/workflows/build.yml)
|
|
9
9
|
|
|
@@ -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.2.1 linux-x64 node-v20.11.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -30,6 +30,7 @@ USAGE
|
|
|
30
30
|
* [`flowcore autocomplete [SHELL]`](#flowcore-autocomplete-shell)
|
|
31
31
|
* [`flowcore config set`](#flowcore-config-set)
|
|
32
32
|
* [`flowcore config show`](#flowcore-config-show)
|
|
33
|
+
* [`flowcore data-core apply`](#flowcore-data-core-apply)
|
|
33
34
|
* [`flowcore help [COMMANDS]`](#flowcore-help-commands)
|
|
34
35
|
* [`flowcore login`](#flowcore-login)
|
|
35
36
|
* [`flowcore plugins`](#flowcore-plugins)
|
|
@@ -127,6 +128,35 @@ EXAMPLES
|
|
|
127
128
|
|
|
128
129
|
_See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.0.5/src/commands/config/show.ts)_
|
|
129
130
|
|
|
131
|
+
## `flowcore data-core apply`
|
|
132
|
+
|
|
133
|
+
Apply a manifest configuration for a Data Core to the Flowcore Platform
|
|
134
|
+
|
|
135
|
+
```
|
|
136
|
+
USAGE
|
|
137
|
+
$ flowcore data-core apply -f <value> -t <value> [--profile <value>] [-n <value>] [-y]
|
|
138
|
+
|
|
139
|
+
FLAGS
|
|
140
|
+
-f, --file=<value> (required) file to apply
|
|
141
|
+
-n, --name=<value> name of the data core to apply
|
|
142
|
+
-t, --tenant=<value> (required) tenant to apply the data core to, this is the org for your organization, it can be
|
|
143
|
+
seen in the url when accessing your organization
|
|
144
|
+
-y, --yes skip confirmation
|
|
145
|
+
--profile=<value> Specify the configuration profile to use
|
|
146
|
+
|
|
147
|
+
DESCRIPTION
|
|
148
|
+
Apply a manifest configuration for a Data Core to the Flowcore Platform
|
|
149
|
+
|
|
150
|
+
EXAMPLES
|
|
151
|
+
$ flowcore data-core apply -t flowcore -f example.yaml
|
|
152
|
+
|
|
153
|
+
$ flowcore data-core apply -t flowcore -n data-core-name -f example.yaml
|
|
154
|
+
|
|
155
|
+
$ cat <<EOF | flowcore data-core apply -f -
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v1.1.0/src/commands/data-core/apply.ts)_
|
|
159
|
+
|
|
130
160
|
## `flowcore help [COMMANDS]`
|
|
131
161
|
|
|
132
162
|
Display help for flowcore.
|
|
@@ -485,7 +515,7 @@ EXAMPLES
|
|
|
485
515
|
$ flowcore stream https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream -o log -s 3m
|
|
486
516
|
```
|
|
487
517
|
|
|
488
|
-
_See code: [src/commands/stream.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.
|
|
518
|
+
_See code: [src/commands/stream.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.2.1/src/commands/stream.ts)_
|
|
489
519
|
|
|
490
520
|
## `flowcore version`
|
|
491
521
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@datastructures-js/queue": "^4.2.3",
|
|
8
8
|
"@flowcore/cli-plugin-config": "^1.0.5",
|
|
9
|
+
"@flowcore/cli-plugin-data-core": "^1.1.0",
|
|
9
10
|
"@flowcore/time-bucket": "^1.1.0",
|
|
10
11
|
"@oclif/core": "^3",
|
|
11
12
|
"@oclif/plugin-autocomplete": "^3.0.2",
|
|
@@ -67,7 +68,8 @@
|
|
|
67
68
|
"@oclif/plugin-plugins",
|
|
68
69
|
"@oclif/plugin-autocomplete",
|
|
69
70
|
"@oclif/plugin-not-found",
|
|
70
|
-
"@flowcore/cli-plugin-config"
|
|
71
|
+
"@flowcore/cli-plugin-config",
|
|
72
|
+
"@flowcore/cli-plugin-data-core"
|
|
71
73
|
],
|
|
72
74
|
"topicSeparator": " "
|
|
73
75
|
},
|
|
@@ -85,7 +87,7 @@
|
|
|
85
87
|
"prestart": "npm run build",
|
|
86
88
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
87
89
|
},
|
|
88
|
-
"version": "2.
|
|
90
|
+
"version": "2.2.1",
|
|
89
91
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
90
92
|
"keywords": [
|
|
91
93
|
"flowcore",
|