@flowcore/cli 4.0.1 → 4.0.2

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 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
+ ## [4.0.2](https://github.com/flowcore-io/flowcore-cli/compare/v4.0.1...v4.0.2) (2024-09-11)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * bumped plugins with graphql client fix ([95f00a5](https://github.com/flowcore-io/flowcore-cli/commit/95f00a54d5ec0761f15fed8a74167558dc1ccbde))
19
+
13
20
  ## [4.0.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.0.0...v4.0.1) (2024-09-10)
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/4.0.1 linux-x64 node-v20.17.0
21
+ @flowcore/cli/4.0.2 linux-x64 node-v20.17.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -94,7 +94,7 @@ EXAMPLES
94
94
  $ flowcore apply -f ./path/to/manifest.yml
95
95
  ```
96
96
 
97
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.0.1/src/commands/apply.ts)_
97
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.0.2/src/commands/apply.ts)_
98
98
 
99
99
  ## `flowcore auth delete key API_KEY_NAME`
100
100
 
@@ -118,7 +118,7 @@ EXAMPLES
118
118
  $ flowcore auth delete key --tenant=tenant-id <api-key-name>
119
119
  ```
120
120
 
121
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.1/src/commands/auth/delete/key.ts)_
121
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/delete/key.ts)_
122
122
 
123
123
  ## `flowcore auth delete secret SECRET_KEY`
124
124
 
@@ -142,7 +142,7 @@ EXAMPLES
142
142
  $ flowcore auth delete secret --tenant=tenant-id <secret-key>
143
143
  ```
144
144
 
145
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.1/src/commands/auth/delete/secret.ts)_
145
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/delete/secret.ts)_
146
146
 
147
147
  ## `flowcore auth list key`
148
148
 
@@ -164,7 +164,7 @@ EXAMPLES
164
164
  $ flowcore auth list key --tenant=tenant-id
165
165
  ```
166
166
 
167
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.1/src/commands/auth/list/key.ts)_
167
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/list/key.ts)_
168
168
 
169
169
  ## `flowcore auth list secret`
170
170
 
@@ -186,7 +186,7 @@ EXAMPLES
186
186
  $ flowcore auth list secret --tenant=tenant-id
187
187
  ```
188
188
 
189
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.1/src/commands/auth/list/secret.ts)_
189
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/list/secret.ts)_
190
190
 
191
191
  ## `flowcore auth new key NAME`
192
192
 
@@ -211,7 +211,7 @@ EXAMPLES
211
211
  $ flowcore auth new key --tenant=tenant-id --name=key-name
212
212
  ```
213
213
 
214
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.1/src/commands/auth/new/key.ts)_
214
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/new/key.ts)_
215
215
 
216
216
  ## `flowcore auth new secret NAME`
217
217
 
@@ -237,7 +237,7 @@ EXAMPLES
237
237
  $ flowcore auth new secret --tenant=tenant-id --from-literal=value
238
238
  ```
239
239
 
240
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.1/src/commands/auth/new/secret.ts)_
240
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/new/secret.ts)_
241
241
 
242
242
  ## `flowcore autocomplete [SHELL]`
243
243
 
@@ -347,7 +347,7 @@ EXAMPLES
347
347
  $ cat <<EOF | flowcore data-core apply -f -
348
348
  ```
349
349
 
350
- _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.0.1/src/commands/data-core/apply.ts)_
350
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.0.2/src/commands/data-core/apply.ts)_
351
351
 
352
352
  ## `flowcore data-core generate event-type FLOWTYPE`
353
353
 
@@ -374,7 +374,7 @@ EXAMPLES
374
374
  $ flowcore data-core generate event-type flow-type-name -n event-type-name -d "description of the event type" -f example.yaml
375
375
  ```
376
376
 
377
- _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.0.1/src/commands/data-core/generate/event-type.ts)_
377
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.0.2/src/commands/data-core/generate/event-type.ts)_
378
378
 
379
379
  ## `flowcore data-core generate flow-type`
380
380
 
@@ -401,7 +401,7 @@ EXAMPLES
401
401
  $ flowcore data-core generate flow-type -n flow-type-name -d "description of the flow type" -f example.yaml
402
402
  ```
403
403
 
404
- _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.0.1/src/commands/data-core/generate/flow-type.ts)_
404
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.0.2/src/commands/data-core/generate/flow-type.ts)_
405
405
 
406
406
  ## `flowcore data-core init`
407
407
 
@@ -433,7 +433,7 @@ EXAMPLES
433
433
  $ flowcore data-core init -t flowcore -n data-core-name -f example.yaml
434
434
  ```
435
435
 
436
- _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.0.1/src/commands/data-core/init.ts)_
436
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.0.2/src/commands/data-core/init.ts)_
437
437
 
438
438
  ## `flowcore generate nextjs-entity NAME`
439
439
 
@@ -483,7 +483,7 @@ EXAMPLES
483
483
  $ flowcore get adapter adapter-name -t tenant-name -s scenario-name
484
484
  ```
485
485
 
486
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/get/adapter.ts)_
486
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.4/src/commands/get/adapter.ts)_
487
487
 
488
488
  ## `flowcore get scenario [SCENARIO]`
489
489
 
@@ -509,7 +509,7 @@ EXAMPLES
509
509
  $ flowcore get scenario scenario-name -t tenant-name
510
510
  ```
511
511
 
512
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/get/scenario.ts)_
512
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.4/src/commands/get/scenario.ts)_
513
513
 
514
514
  ## `flowcore get tenant [NAME]`
515
515
 
@@ -538,7 +538,7 @@ EXAMPLES
538
538
  $ flowcore get tenant --tenant=tenant-name --json
539
539
  ```
540
540
 
541
- _See code: [@flowcore/cli-plugin-tenant-management](https://github.com/flowcore-io/tenant-management/blob/v1.1.0/src/commands/get/tenant.ts)_
541
+ _See code: [@flowcore/cli-plugin-tenant-management](https://github.com/flowcore-io/tenant-management/blob/v1.1.1/src/commands/get/tenant.ts)_
542
542
 
543
543
  ## `flowcore help [COMMAND]`
544
544
 
@@ -616,7 +616,7 @@ EXAMPLES
616
616
  $ flowcore logs adapter adapter-name -t tenant-name -s scenario-name --json
617
617
  ```
618
618
 
619
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/logs/adapter.ts)_
619
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.4/src/commands/logs/adapter.ts)_
620
620
 
621
621
  ## `flowcore new bun-service NAME`
622
622
 
@@ -1071,7 +1071,7 @@ EXAMPLES
1071
1071
  $ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -e 9cb35da2-ba64-4bb5-86d6-ef20ebc62ab7
1072
1072
  ```
1073
1073
 
1074
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/reset/adapter.ts)_
1074
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.4/src/commands/reset/adapter.ts)_
1075
1075
 
1076
1076
  ## `flowcore scenario apply`
1077
1077
 
@@ -1101,7 +1101,7 @@ EXAMPLES
1101
1101
  $ cat <<EOF | flowcore scenario apply -f -
1102
1102
  ```
1103
1103
 
1104
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/scenario/apply.ts)_
1104
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.4/src/commands/scenario/apply.ts)_
1105
1105
 
1106
1106
  ## `flowcore scenario generate transformer`
1107
1107
 
@@ -1128,7 +1128,7 @@ EXAMPLES
1128
1128
  $ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
1129
1129
  ```
1130
1130
 
1131
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/scenario/generate/transformer.ts)_
1131
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.4/src/commands/scenario/generate/transformer.ts)_
1132
1132
 
1133
1133
  ## `flowcore scenario init`
1134
1134
 
@@ -1160,7 +1160,7 @@ EXAMPLES
1160
1160
  $ flowcore scenario init -t flowcore -n scenario-name -f example.yaml
1161
1161
  ```
1162
1162
 
1163
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/scenario/init.ts)_
1163
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.4/src/commands/scenario/init.ts)_
1164
1164
 
1165
1165
  ## `flowcore scenario local`
1166
1166
 
@@ -1192,7 +1192,7 @@ EXAMPLES
1192
1192
  $ cat <<EOF | flowcore scenario local -f -
1193
1193
  ```
1194
1194
 
1195
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/scenario/local.ts)_
1195
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.4/src/commands/scenario/local.ts)_
1196
1196
 
1197
1197
  ## `flowcore stream STREAM`
1198
1198
 
@@ -1232,7 +1232,7 @@ EXAMPLES
1232
1232
  $ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m
1233
1233
  ```
1234
1234
 
1235
- _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v3.3.0/src/commands/stream.ts)_
1235
+ _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v3.3.1/src/commands/stream.ts)_
1236
1236
 
1237
1237
  ## `flowcore stream http STREAM`
1238
1238
 
@@ -1274,7 +1274,7 @@ EXAMPLES
1274
1274
  $ flowcore stream http "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m -d http://localhost:3000/transform
1275
1275
  ```
1276
1276
 
1277
- _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v3.3.0/src/commands/stream/http.ts)_
1277
+ _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v3.3.1/src/commands/stream/http.ts)_
1278
1278
 
1279
1279
  ## `flowcore version`
1280
1280
 
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "4.0.1"
51
+ "version": "4.0.2"
52
52
  }
package/package.json CHANGED
@@ -5,13 +5,13 @@
5
5
  },
6
6
  "dependencies": {
7
7
  "@datastructures-js/queue": "^4.2.3",
8
- "@flowcore/cli-plugin-auth-management": "^1.2.1",
8
+ "@flowcore/cli-plugin-auth-management": "^1.2.2",
9
9
  "@flowcore/cli-plugin-config": "^2.2.1",
10
- "@flowcore/cli-plugin-core": "^3.3.0",
11
- "@flowcore/cli-plugin-data-core": "^3.0.1",
10
+ "@flowcore/cli-plugin-core": "^3.3.1",
11
+ "@flowcore/cli-plugin-data-core": "^3.0.2",
12
12
  "@flowcore/cli-plugin-generator": "^1.6.0",
13
- "@flowcore/cli-plugin-scenario": "^4.0.3",
14
- "@flowcore/cli-plugin-tenant-management": "^1.1.0",
13
+ "@flowcore/cli-plugin-scenario": "^4.0.4",
14
+ "@flowcore/cli-plugin-tenant-management": "^1.1.1",
15
15
  "@flowcore/time-bucket": "^1.1.0",
16
16
  "@oclif/core": "^4.0.21",
17
17
  "@oclif/plugin-autocomplete": "^3.2.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": "4.0.1",
107
+ "version": "4.0.2",
108
108
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
109
109
  "keywords": [
110
110
  "flowcore",