@flowcore/cli 3.2.0 → 3.3.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 +16 -0
- package/README.md +88 -13
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,22 @@
|
|
|
10
10
|
|
|
11
11
|
* added description to start that includes week ([58687a7](https://github.com/flowcore-io/flowcore-cli/commit/58687a7bbb66aaa5d6da26af88e555cbb1e72467))
|
|
12
12
|
|
|
13
|
+
## [3.3.1](https://github.com/flowcore-io/flowcore-cli/compare/v3.3.0...v3.3.1) (2024-09-04)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* bumped flowcore scenario plugin version to 3.3.1 ([422cc60](https://github.com/flowcore-io/flowcore-cli/commit/422cc60c013e5ee86b2996013f975d5ab8d97ad8))
|
|
19
|
+
|
|
20
|
+
## [3.3.0](https://github.com/flowcore-io/flowcore-cli/compare/v3.2.0...v3.3.0) (2024-09-03)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* added functionality to manage secrets and support github pat token ([53f6c93](https://github.com/flowcore-io/flowcore-cli/commit/53f6c931e61528694b7de35b765555310290035b))
|
|
26
|
+
* bumped flowcore scenario to latest shell version ([597462b](https://github.com/flowcore-io/flowcore-cli/commit/597462bc833de42ece7219ad4bb49476d32504d7))
|
|
27
|
+
* updated to scenario plugin with private repo pat blueprint configuration ([e3dae25](https://github.com/flowcore-io/flowcore-cli/commit/e3dae259457061e4277aba3690db0e55a33ae1b6))
|
|
28
|
+
|
|
13
29
|
## [3.2.0](https://github.com/flowcore-io/flowcore-cli/compare/v3.1.1...v3.2.0) (2024-08-30)
|
|
14
30
|
|
|
15
31
|
|
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/3.
|
|
21
|
+
@flowcore/cli/3.3.1 linux-x64 node-v20.17.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -29,8 +29,11 @@ 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 secret SECRET_KEY`](#flowcore-auth-delete-secret-secret_key)
|
|
32
33
|
* [`flowcore auth list key`](#flowcore-auth-list-key)
|
|
34
|
+
* [`flowcore auth list secret`](#flowcore-auth-list-secret)
|
|
33
35
|
* [`flowcore auth new key NAME`](#flowcore-auth-new-key-name)
|
|
36
|
+
* [`flowcore auth new secret NAME`](#flowcore-auth-new-secret-name)
|
|
34
37
|
* [`flowcore autocomplete [SHELL]`](#flowcore-autocomplete-shell)
|
|
35
38
|
* [`flowcore config set`](#flowcore-config-set)
|
|
36
39
|
* [`flowcore config show`](#flowcore-config-show)
|
|
@@ -90,7 +93,7 @@ EXAMPLES
|
|
|
90
93
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
91
94
|
```
|
|
92
95
|
|
|
93
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.
|
|
96
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.3.1/src/commands/apply.ts)_
|
|
94
97
|
|
|
95
98
|
## `flowcore auth delete key API_KEY_NAME`
|
|
96
99
|
|
|
@@ -114,7 +117,31 @@ EXAMPLES
|
|
|
114
117
|
$ flowcore auth delete key --tenant=tenant-id <api-key-name>
|
|
115
118
|
```
|
|
116
119
|
|
|
117
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.0
|
|
120
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.1.0/src/commands/auth/delete/key.ts)_
|
|
121
|
+
|
|
122
|
+
## `flowcore auth delete secret SECRET_KEY`
|
|
123
|
+
|
|
124
|
+
Delete an organization secret
|
|
125
|
+
|
|
126
|
+
```
|
|
127
|
+
USAGE
|
|
128
|
+
$ flowcore auth delete secret SECRET_KEY -t <value> [--profile <value>]
|
|
129
|
+
|
|
130
|
+
ARGUMENTS
|
|
131
|
+
SECRET_KEY Key of the secret to delete
|
|
132
|
+
|
|
133
|
+
FLAGS
|
|
134
|
+
-t, --tenant=<value> (required) tenant where the secret should be deleted
|
|
135
|
+
--profile=<value> Specify the configuration profile to use
|
|
136
|
+
|
|
137
|
+
DESCRIPTION
|
|
138
|
+
Delete an organization secret
|
|
139
|
+
|
|
140
|
+
EXAMPLES
|
|
141
|
+
$ flowcore auth delete secret --tenant=tenant-id <secret-key>
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.1.0/src/commands/auth/delete/secret.ts)_
|
|
118
145
|
|
|
119
146
|
## `flowcore auth list key`
|
|
120
147
|
|
|
@@ -136,7 +163,29 @@ EXAMPLES
|
|
|
136
163
|
$ flowcore auth list key --tenant=tenant-id
|
|
137
164
|
```
|
|
138
165
|
|
|
139
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.0
|
|
166
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.1.0/src/commands/auth/list/key.ts)_
|
|
167
|
+
|
|
168
|
+
## `flowcore auth list secret`
|
|
169
|
+
|
|
170
|
+
List all organization secrets
|
|
171
|
+
|
|
172
|
+
```
|
|
173
|
+
USAGE
|
|
174
|
+
$ flowcore auth list secret -t <value> [--profile <value>] [-j]
|
|
175
|
+
|
|
176
|
+
FLAGS
|
|
177
|
+
-j, --json output the secrets in JSON format
|
|
178
|
+
-t, --tenant=<value> (required) tenant where the secrets should be listed
|
|
179
|
+
--profile=<value> Specify the configuration profile to use
|
|
180
|
+
|
|
181
|
+
DESCRIPTION
|
|
182
|
+
List all organization secrets
|
|
183
|
+
|
|
184
|
+
EXAMPLES
|
|
185
|
+
$ flowcore auth list secret --tenant=tenant-id
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.1.0/src/commands/auth/list/secret.ts)_
|
|
140
189
|
|
|
141
190
|
## `flowcore auth new key NAME`
|
|
142
191
|
|
|
@@ -161,7 +210,33 @@ EXAMPLES
|
|
|
161
210
|
$ flowcore auth new key --tenant=tenant-id --name=key-name
|
|
162
211
|
```
|
|
163
212
|
|
|
164
|
-
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.0
|
|
213
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.1.0/src/commands/auth/new/key.ts)_
|
|
214
|
+
|
|
215
|
+
## `flowcore auth new secret NAME`
|
|
216
|
+
|
|
217
|
+
Create a new secret for the tenant
|
|
218
|
+
|
|
219
|
+
```
|
|
220
|
+
USAGE
|
|
221
|
+
$ flowcore auth new secret NAME -t <value> [--profile <value>] [--from-file <value>] [--from-literal <value>]
|
|
222
|
+
|
|
223
|
+
ARGUMENTS
|
|
224
|
+
NAME name of the secret
|
|
225
|
+
|
|
226
|
+
FLAGS
|
|
227
|
+
-t, --tenant=<value> (required) tenant where the secret should be created
|
|
228
|
+
--from-file=<value> read value from a file
|
|
229
|
+
--from-literal=<value> use literal value instead of reading from stdin
|
|
230
|
+
--profile=<value> Specify the configuration profile to use
|
|
231
|
+
|
|
232
|
+
DESCRIPTION
|
|
233
|
+
Create a new secret for the tenant
|
|
234
|
+
|
|
235
|
+
EXAMPLES
|
|
236
|
+
$ flowcore auth new secret --tenant=tenant-id --from-literal=value
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
_See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.1.0/src/commands/auth/new/secret.ts)_
|
|
165
240
|
|
|
166
241
|
## `flowcore autocomplete [SHELL]`
|
|
167
242
|
|
|
@@ -407,7 +482,7 @@ EXAMPLES
|
|
|
407
482
|
$ flowcore get adapter adapter-name -t tenant-name -s scenario-name
|
|
408
483
|
```
|
|
409
484
|
|
|
410
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.
|
|
485
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/get/adapter.ts)_
|
|
411
486
|
|
|
412
487
|
## `flowcore get scenario [SCENARIO]`
|
|
413
488
|
|
|
@@ -433,7 +508,7 @@ EXAMPLES
|
|
|
433
508
|
$ flowcore get scenario scenario-name -t tenant-name
|
|
434
509
|
```
|
|
435
510
|
|
|
436
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.
|
|
511
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/get/scenario.ts)_
|
|
437
512
|
|
|
438
513
|
## `flowcore get tenant [NAME]`
|
|
439
514
|
|
|
@@ -540,7 +615,7 @@ EXAMPLES
|
|
|
540
615
|
$ flowcore logs adapter adapter-name -t tenant-name -s scenario-name --json
|
|
541
616
|
```
|
|
542
617
|
|
|
543
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.
|
|
618
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/logs/adapter.ts)_
|
|
544
619
|
|
|
545
620
|
## `flowcore new bun-service NAME`
|
|
546
621
|
|
|
@@ -959,7 +1034,7 @@ EXAMPLES
|
|
|
959
1034
|
$ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -e 9cb35da2-ba64-4bb5-86d6-ef20ebc62ab7
|
|
960
1035
|
```
|
|
961
1036
|
|
|
962
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.
|
|
1037
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/reset/adapter.ts)_
|
|
963
1038
|
|
|
964
1039
|
## `flowcore scenario apply`
|
|
965
1040
|
|
|
@@ -989,7 +1064,7 @@ EXAMPLES
|
|
|
989
1064
|
$ cat <<EOF | flowcore scenario apply -f -
|
|
990
1065
|
```
|
|
991
1066
|
|
|
992
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.
|
|
1067
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/apply.ts)_
|
|
993
1068
|
|
|
994
1069
|
## `flowcore scenario generate manifest`
|
|
995
1070
|
|
|
@@ -1021,7 +1096,7 @@ EXAMPLES
|
|
|
1021
1096
|
$ flowcore scenario generate manifest -t flowcore -n scenario-name -f example.yaml
|
|
1022
1097
|
```
|
|
1023
1098
|
|
|
1024
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.
|
|
1099
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/generate/manifest.ts)_
|
|
1025
1100
|
|
|
1026
1101
|
## `flowcore scenario generate transformer`
|
|
1027
1102
|
|
|
@@ -1048,7 +1123,7 @@ EXAMPLES
|
|
|
1048
1123
|
$ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
|
|
1049
1124
|
```
|
|
1050
1125
|
|
|
1051
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.
|
|
1126
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/generate/transformer.ts)_
|
|
1052
1127
|
|
|
1053
1128
|
## `flowcore scenario local`
|
|
1054
1129
|
|
|
@@ -1080,7 +1155,7 @@ EXAMPLES
|
|
|
1080
1155
|
$ cat <<EOF | flowcore scenario local -f -
|
|
1081
1156
|
```
|
|
1082
1157
|
|
|
1083
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.
|
|
1158
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/local.ts)_
|
|
1084
1159
|
|
|
1085
1160
|
## `flowcore stream STREAM`
|
|
1086
1161
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@datastructures-js/queue": "^4.2.3",
|
|
8
|
-
"@flowcore/cli-plugin-auth-management": "^1.0
|
|
8
|
+
"@flowcore/cli-plugin-auth-management": "^1.1.0",
|
|
9
9
|
"@flowcore/cli-plugin-config": "^1.1.0",
|
|
10
10
|
"@flowcore/cli-plugin-core": "^2.0.0",
|
|
11
11
|
"@flowcore/cli-plugin-data-core": "^2.2.2",
|
|
12
12
|
"@flowcore/cli-plugin-generator": "^1.3.0",
|
|
13
|
-
"@flowcore/cli-plugin-scenario": "^3.
|
|
13
|
+
"@flowcore/cli-plugin-scenario": "^3.3.1",
|
|
14
14
|
"@flowcore/cli-plugin-tenant-management": "^1.0.0",
|
|
15
15
|
"@flowcore/time-bucket": "^1.1.0",
|
|
16
16
|
"@oclif/core": "^3",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"prestart": "npm run build",
|
|
105
105
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
106
106
|
},
|
|
107
|
-
"version": "3.
|
|
107
|
+
"version": "3.3.1",
|
|
108
108
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
109
109
|
"keywords": [
|
|
110
110
|
"flowcore",
|