@flowcore/cli 3.4.0 → 4.0.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 CHANGED
@@ -10,6 +10,24 @@
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.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.0.0...v4.0.1) (2024-09-10)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * updated core libraries with fixes for streaming ([f6077ce](https://github.com/flowcore-io/flowcore-cli/commit/f6077ce40debe9247080c7f5f473709e2eef7ecf))
19
+
20
+ ## [4.0.0](https://github.com/flowcore-io/flowcore-cli/compare/v3.4.0...v4.0.0) (2024-09-09)
21
+
22
+
23
+ ### ⚠ BREAKING CHANGES
24
+
25
+ * updated oclif and flowcore core plugins, not compatibile with older versions
26
+
27
+ ### Features
28
+
29
+ * bumped base libraries ([c8e472c](https://github.com/flowcore-io/flowcore-cli/commit/c8e472c797467ca2b0572d427374928189604e61))
30
+
13
31
  ## [3.4.0](https://github.com/flowcore-io/flowcore-cli/compare/v3.3.1...v3.4.0) (2024-09-05)
14
32
 
15
33
 
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.4.0 linux-x64 node-v20.17.0
21
+ @flowcore/cli/4.0.1 linux-x64 node-v20.17.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -40,12 +40,12 @@ USAGE
40
40
  * [`flowcore data-core apply`](#flowcore-data-core-apply)
41
41
  * [`flowcore data-core generate event-type FLOWTYPE`](#flowcore-data-core-generate-event-type-flowtype)
42
42
  * [`flowcore data-core generate flow-type`](#flowcore-data-core-generate-flow-type)
43
- * [`flowcore data-core generate manifest`](#flowcore-data-core-generate-manifest)
43
+ * [`flowcore data-core init`](#flowcore-data-core-init)
44
44
  * [`flowcore generate nextjs-entity NAME`](#flowcore-generate-nextjs-entity-name)
45
45
  * [`flowcore get adapter [ADAPTER]`](#flowcore-get-adapter-adapter)
46
46
  * [`flowcore get scenario [SCENARIO]`](#flowcore-get-scenario-scenario)
47
47
  * [`flowcore get tenant [NAME]`](#flowcore-get-tenant-name)
48
- * [`flowcore help [COMMANDS]`](#flowcore-help-commands)
48
+ * [`flowcore help [COMMAND]`](#flowcore-help-command)
49
49
  * [`flowcore login`](#flowcore-login)
50
50
  * [`flowcore logs adapter ADAPTER`](#flowcore-logs-adapter-adapter)
51
51
  * [`flowcore new bun-service NAME`](#flowcore-new-bun-service-name)
@@ -54,20 +54,20 @@ USAGE
54
54
  * [`flowcore new plugin NAME`](#flowcore-new-plugin-name)
55
55
  * [`flowcore new transformer NAME`](#flowcore-new-transformer-name)
56
56
  * [`flowcore plugins`](#flowcore-plugins)
57
- * [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin)
57
+ * [`flowcore plugins add PLUGIN`](#flowcore-plugins-add-plugin)
58
58
  * [`flowcore plugins:inspect PLUGIN...`](#flowcore-pluginsinspect-plugin)
59
- * [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin-1)
60
- * [`flowcore plugins:link PLUGIN`](#flowcore-pluginslink-plugin)
61
- * [`flowcore plugins:uninstall PLUGIN...`](#flowcore-pluginsuninstall-plugin)
59
+ * [`flowcore plugins install PLUGIN`](#flowcore-plugins-install-plugin)
60
+ * [`flowcore plugins link PATH`](#flowcore-plugins-link-path)
61
+ * [`flowcore plugins remove [PLUGIN]`](#flowcore-plugins-remove-plugin)
62
62
  * [`flowcore plugins reset`](#flowcore-plugins-reset)
63
- * [`flowcore plugins:uninstall PLUGIN...`](#flowcore-pluginsuninstall-plugin-1)
64
- * [`flowcore plugins:uninstall PLUGIN...`](#flowcore-pluginsuninstall-plugin-2)
63
+ * [`flowcore plugins uninstall [PLUGIN]`](#flowcore-plugins-uninstall-plugin)
64
+ * [`flowcore plugins unlink [PLUGIN]`](#flowcore-plugins-unlink-plugin)
65
65
  * [`flowcore plugins update`](#flowcore-plugins-update)
66
66
  * [`flowcore plugins update check`](#flowcore-plugins-update-check)
67
67
  * [`flowcore reset adapter ADAPTER`](#flowcore-reset-adapter-adapter)
68
68
  * [`flowcore scenario apply`](#flowcore-scenario-apply)
69
- * [`flowcore scenario generate manifest`](#flowcore-scenario-generate-manifest)
70
69
  * [`flowcore scenario generate transformer`](#flowcore-scenario-generate-transformer)
70
+ * [`flowcore scenario init`](#flowcore-scenario-init)
71
71
  * [`flowcore scenario local`](#flowcore-scenario-local)
72
72
  * [`flowcore stream STREAM`](#flowcore-stream-stream)
73
73
  * [`flowcore stream http STREAM`](#flowcore-stream-http-stream)
@@ -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/v3.4.0/src/commands/apply.ts)_
97
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.0.1/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.1.0/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.1/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.1.0/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.1/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.1.0/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.1/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.1.0/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.1/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.1.0/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.1/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.1.0/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.1/src/commands/auth/new/secret.ts)_
241
241
 
242
242
  ## `flowcore autocomplete [SHELL]`
243
243
 
@@ -268,7 +268,7 @@ EXAMPLES
268
268
  $ flowcore autocomplete --refresh-cache
269
269
  ```
270
270
 
271
- _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.0.8/src/commands/autocomplete/index.ts)_
271
+ _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.3/src/commands/autocomplete/index.ts)_
272
272
 
273
273
  ## `flowcore config set`
274
274
 
@@ -298,7 +298,7 @@ EXAMPLES
298
298
  $ flowcore config set -l https://auth.flowcore.io/realms/flowcore/.well-known/openid-configuration -c my-client-id -p
299
299
  ```
300
300
 
301
- _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.1.0/src/commands/config/set.ts)_
301
+ _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.2.1/src/commands/config/set.ts)_
302
302
 
303
303
  ## `flowcore config show`
304
304
 
@@ -318,7 +318,7 @@ EXAMPLES
318
318
  $ flowcore config show
319
319
  ```
320
320
 
321
- _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.1.0/src/commands/config/show.ts)_
321
+ _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.2.1/src/commands/config/show.ts)_
322
322
 
323
323
  ## `flowcore data-core apply`
324
324
 
@@ -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/v2.2.2/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.1/src/commands/data-core/apply.ts)_
351
351
 
352
352
  ## `flowcore data-core generate event-type FLOWTYPE`
353
353
 
@@ -359,7 +359,7 @@ USAGE
359
359
 
360
360
  FLAGS
361
361
  -d, --description=<value> description of the event type
362
- -f, --file=<value> file to modify
362
+ -f, --file=<value> [default: flowcore.yaml] file to modify
363
363
  -n, --name=<value> name of the event type to generate
364
364
  --profile=<value> Specify the configuration profile to use
365
365
 
@@ -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/v2.2.2/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.1/src/commands/data-core/generate/event-type.ts)_
378
378
 
379
379
  ## `flowcore data-core generate flow-type`
380
380
 
@@ -386,7 +386,7 @@ USAGE
386
386
 
387
387
  FLAGS
388
388
  -d, --description=<value> description of the flow type
389
- -f, --file=<value> file to modify
389
+ -f, --file=<value> [default: flowcore.yaml] file to modify
390
390
  -n, --name=<value> name of the flow type to generate
391
391
  --profile=<value> Specify the configuration profile to use
392
392
 
@@ -401,39 +401,39 @@ 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/v2.2.2/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.1/src/commands/data-core/generate/flow-type.ts)_
405
405
 
406
- ## `flowcore data-core generate manifest`
406
+ ## `flowcore data-core init`
407
407
 
408
- Generate a data core manifest
408
+ Initialize a data core manifest
409
409
 
410
410
  ```
411
411
  USAGE
412
- $ flowcore data-core generate manifest -t <value> [--profile <value>] [-f <value>] [-n <value>] [-o] [--placeholder]
412
+ $ flowcore data-core init [--profile <value>] [-f <value>] [-n <value>] [-o] [-t <value>] [-y]
413
413
 
414
414
  FLAGS
415
- -f, --file=<value> file to apply
415
+ -f, --file=<value> [default: flowcore.yaml] filename it will be created with, defaults to flowcore.yaml
416
416
  -n, --name=<value> name of the data core to generate
417
417
  -o, --overwrite overwrite the existing data core
418
- -t, --tenant=<value> (required) tenant to apply the data core to, this is the org for your organization, it can be
419
- seen in the url when accessing your organization
420
- --placeholder generate a placeholder manifest
418
+ -t, --tenant=<value> tenant to apply the data core to, this is the org for your organization, it can be seen in the
419
+ url when accessing your organization
420
+ -y, --yes skip confirmation
421
421
  --profile=<value> Specify the configuration profile to use
422
422
 
423
423
  DESCRIPTION
424
- Generate a data core manifest
424
+ Initialize a data core manifest
425
425
 
426
426
  EXAMPLES
427
- $ flowcore data-core generate manifest -t flowcore
427
+ $ flowcore data-core init -t flowcore
428
428
 
429
- $ flowcore data-core generate manifest -t flowcore --placeholder
429
+ $ flowcore data-core init -t flowcore --placeholder
430
430
 
431
- $ flowcore data-core generate manifest -t flowcore -f example.yaml
431
+ $ flowcore data-core init -t flowcore -f example.yaml
432
432
 
433
- $ flowcore data-core generate manifest -t flowcore -n data-core-name -f example.yaml
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/v2.2.2/src/commands/data-core/generate/manifest.ts)_
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)_
437
437
 
438
438
  ## `flowcore generate nextjs-entity NAME`
439
439
 
@@ -456,7 +456,7 @@ EXAMPLES
456
456
  $ flowcore generate nextjs-entity my-entity
457
457
  ```
458
458
 
459
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/generate/nextjs-entity.ts)_
459
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.6.0/src/commands/generate/nextjs-entity.ts)_
460
460
 
461
461
  ## `flowcore get adapter [ADAPTER]`
462
462
 
@@ -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/v3.3.1/src/commands/get/adapter.ts)_
486
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/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/v3.3.1/src/commands/get/scenario.ts)_
512
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/get/scenario.ts)_
513
513
 
514
514
  ## `flowcore get tenant [NAME]`
515
515
 
@@ -538,18 +538,18 @@ 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.0.0/src/commands/get/tenant.ts)_
541
+ _See code: [@flowcore/cli-plugin-tenant-management](https://github.com/flowcore-io/tenant-management/blob/v1.1.0/src/commands/get/tenant.ts)_
542
542
 
543
- ## `flowcore help [COMMANDS]`
543
+ ## `flowcore help [COMMAND]`
544
544
 
545
545
  Display help for flowcore.
546
546
 
547
547
  ```
548
548
  USAGE
549
- $ flowcore help [COMMANDS] [-n]
549
+ $ flowcore help [COMMAND] [-n]
550
550
 
551
551
  ARGUMENTS
552
- COMMANDS Command to show help for.
552
+ COMMAND Command to show help for.
553
553
 
554
554
  FLAGS
555
555
  -n, --nested-commands Include all nested commands in the output.
@@ -558,7 +558,7 @@ DESCRIPTION
558
558
  Display help for flowcore.
559
559
  ```
560
560
 
561
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.20/src/commands/help.ts)_
561
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.11/src/commands/help.ts)_
562
562
 
563
563
  ## `flowcore login`
564
564
 
@@ -581,7 +581,7 @@ EXAMPLES
581
581
  $ flowcore login --port 8080
582
582
  ```
583
583
 
584
- _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.1.0/src/commands/login.ts)_
584
+ _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.2.1/src/commands/login.ts)_
585
585
 
586
586
  ## `flowcore logs adapter ADAPTER`
587
587
 
@@ -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/v3.3.1/src/commands/logs/adapter.ts)_
619
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/logs/adapter.ts)_
620
620
 
621
621
  ## `flowcore new bun-service NAME`
622
622
 
@@ -642,7 +642,7 @@ EXAMPLES
642
642
  $ flowcore new bun-service my-service --no-flowcore
643
643
  ```
644
644
 
645
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/bun-service.ts)_
645
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.6.0/src/commands/new/bun-service.ts)_
646
646
 
647
647
  ## `flowcore new generator NAME`
648
648
 
@@ -665,7 +665,7 @@ EXAMPLES
665
665
  $ flowcore new generator my-generator
666
666
  ```
667
667
 
668
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/generator.ts)_
668
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.6.0/src/commands/new/generator.ts)_
669
669
 
670
670
  ## `flowcore new nextjs-app NAME`
671
671
 
@@ -688,7 +688,7 @@ EXAMPLES
688
688
  $ flowcore new nextjs-app my-app
689
689
  ```
690
690
 
691
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/nextjs-app.ts)_
691
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.6.0/src/commands/new/nextjs-app.ts)_
692
692
 
693
693
  ## `flowcore new plugin NAME`
694
694
 
@@ -711,7 +711,7 @@ EXAMPLES
711
711
  $ flowcore new plugin my-plugin
712
712
  ```
713
713
 
714
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/plugin.ts)_
714
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.6.0/src/commands/new/plugin.ts)_
715
715
 
716
716
  ## `flowcore new transformer NAME`
717
717
 
@@ -737,7 +737,7 @@ EXAMPLES
737
737
  $ flowcore new transformer my-transformer --no-flowcore
738
738
  ```
739
739
 
740
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/transformer.ts)_
740
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.6.0/src/commands/new/transformer.ts)_
741
741
 
742
742
  ## `flowcore plugins`
743
743
 
@@ -760,48 +760,53 @@ EXAMPLES
760
760
  $ flowcore plugins
761
761
  ```
762
762
 
763
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.2.2/src/commands/plugins/index.ts)_
763
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.7/src/commands/plugins/index.ts)_
764
764
 
765
- ## `flowcore plugins:install PLUGIN...`
765
+ ## `flowcore plugins add PLUGIN`
766
766
 
767
- Installs a plugin into the CLI.
767
+ Installs a plugin into flowcore.
768
768
 
769
769
  ```
770
770
  USAGE
771
- $ flowcore plugins add plugins:install PLUGIN...
771
+ $ flowcore plugins add PLUGIN [--json] [-f] [-h] [-s | -v]
772
772
 
773
773
  ARGUMENTS
774
774
  PLUGIN Plugin to install.
775
775
 
776
776
  FLAGS
777
- -f, --force Run yarn install with force flag.
777
+ -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
778
778
  -h, --help Show CLI help.
779
- -s, --silent Silences yarn output.
780
- -v, --verbose Show verbose yarn output.
779
+ -s, --silent Silences npm output.
780
+ -v, --verbose Show verbose npm output.
781
781
 
782
782
  GLOBAL FLAGS
783
783
  --json Format output as json.
784
784
 
785
785
  DESCRIPTION
786
- Installs a plugin into the CLI.
787
- Can be installed from npm or a git url.
786
+ Installs a plugin into flowcore.
788
787
 
789
- Installation of a user-installed plugin will override a core plugin.
788
+ Uses npm to install plugins.
790
789
 
791
- e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
792
- will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
793
- the CLI without the need to patch and update the whole CLI.
790
+ Installation of a user-installed plugin will override a core plugin.
794
791
 
792
+ Use the FLOWCORE_NPM_LOG_LEVEL environment variable to set the npm loglevel.
793
+ Use the FLOWCORE_NPM_REGISTRY environment variable to set the npm registry.
795
794
 
796
795
  ALIASES
797
796
  $ flowcore plugins add
798
797
 
799
798
  EXAMPLES
800
- $ flowcore plugins add myplugin
799
+ Install a plugin from npm registry.
800
+
801
+ $ flowcore plugins add myplugin
802
+
803
+ Install a plugin from a github url.
804
+
805
+ $ flowcore plugins add https://github.com/someuser/someplugin
801
806
 
802
- $ flowcore plugins add https://github.com/someuser/someplugin
807
+ Install a plugin from a github slug.
803
808
 
804
- $ flowcore plugins add someuser/someplugin
809
+ $ flowcore plugins add someuser/someplugin
805
810
  ```
806
811
 
807
812
  ## `flowcore plugins:inspect PLUGIN...`
@@ -829,59 +834,64 @@ EXAMPLES
829
834
  $ flowcore plugins inspect myplugin
830
835
  ```
831
836
 
832
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.2.2/src/commands/plugins/inspect.ts)_
837
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.7/src/commands/plugins/inspect.ts)_
833
838
 
834
- ## `flowcore plugins:install PLUGIN...`
839
+ ## `flowcore plugins install PLUGIN`
835
840
 
836
- Installs a plugin into the CLI.
841
+ Installs a plugin into flowcore.
837
842
 
838
843
  ```
839
844
  USAGE
840
- $ flowcore plugins install PLUGIN...
845
+ $ flowcore plugins install PLUGIN [--json] [-f] [-h] [-s | -v]
841
846
 
842
847
  ARGUMENTS
843
848
  PLUGIN Plugin to install.
844
849
 
845
850
  FLAGS
846
- -f, --force Run yarn install with force flag.
851
+ -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
847
852
  -h, --help Show CLI help.
848
- -s, --silent Silences yarn output.
849
- -v, --verbose Show verbose yarn output.
853
+ -s, --silent Silences npm output.
854
+ -v, --verbose Show verbose npm output.
850
855
 
851
856
  GLOBAL FLAGS
852
857
  --json Format output as json.
853
858
 
854
859
  DESCRIPTION
855
- Installs a plugin into the CLI.
856
- Can be installed from npm or a git url.
860
+ Installs a plugin into flowcore.
857
861
 
858
- Installation of a user-installed plugin will override a core plugin.
862
+ Uses npm to install plugins.
859
863
 
860
- e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
861
- will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
862
- the CLI without the need to patch and update the whole CLI.
864
+ Installation of a user-installed plugin will override a core plugin.
863
865
 
866
+ Use the FLOWCORE_NPM_LOG_LEVEL environment variable to set the npm loglevel.
867
+ Use the FLOWCORE_NPM_REGISTRY environment variable to set the npm registry.
864
868
 
865
869
  ALIASES
866
870
  $ flowcore plugins add
867
871
 
868
872
  EXAMPLES
869
- $ flowcore plugins install myplugin
873
+ Install a plugin from npm registry.
874
+
875
+ $ flowcore plugins install myplugin
870
876
 
871
- $ flowcore plugins install https://github.com/someuser/someplugin
877
+ Install a plugin from a github url.
872
878
 
873
- $ flowcore plugins install someuser/someplugin
879
+ $ flowcore plugins install https://github.com/someuser/someplugin
880
+
881
+ Install a plugin from a github slug.
882
+
883
+ $ flowcore plugins install someuser/someplugin
874
884
  ```
875
885
 
876
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.2.2/src/commands/plugins/install.ts)_
886
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.7/src/commands/plugins/install.ts)_
877
887
 
878
- ## `flowcore plugins:link PLUGIN`
888
+ ## `flowcore plugins link PATH`
879
889
 
880
890
  Links a plugin into the CLI for development.
881
891
 
882
892
  ```
883
893
  USAGE
884
- $ flowcore plugins link PLUGIN
894
+ $ flowcore plugins link PATH [-h] [--install] [-v]
885
895
 
886
896
  ARGUMENTS
887
897
  PATH [default: .] path to plugin
@@ -903,15 +913,15 @@ EXAMPLES
903
913
  $ flowcore plugins link myplugin
904
914
  ```
905
915
 
906
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.2.2/src/commands/plugins/link.ts)_
916
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.7/src/commands/plugins/link.ts)_
907
917
 
908
- ## `flowcore plugins:uninstall PLUGIN...`
918
+ ## `flowcore plugins remove [PLUGIN]`
909
919
 
910
920
  Removes a plugin from the CLI.
911
921
 
912
922
  ```
913
923
  USAGE
914
- $ flowcore plugins remove plugins:uninstall PLUGIN...
924
+ $ flowcore plugins remove [PLUGIN] [-h] [-v]
915
925
 
916
926
  ARGUMENTS
917
927
  PLUGIN plugin to uninstall
@@ -944,15 +954,15 @@ FLAGS
944
954
  --reinstall Reinstall all plugins after uninstalling.
945
955
  ```
946
956
 
947
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.2.2/src/commands/plugins/reset.ts)_
957
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.7/src/commands/plugins/reset.ts)_
948
958
 
949
- ## `flowcore plugins:uninstall PLUGIN...`
959
+ ## `flowcore plugins uninstall [PLUGIN]`
950
960
 
951
961
  Removes a plugin from the CLI.
952
962
 
953
963
  ```
954
964
  USAGE
955
- $ flowcore plugins uninstall PLUGIN...
965
+ $ flowcore plugins uninstall [PLUGIN] [-h] [-v]
956
966
 
957
967
  ARGUMENTS
958
968
  PLUGIN plugin to uninstall
@@ -972,15 +982,15 @@ EXAMPLES
972
982
  $ flowcore plugins uninstall myplugin
973
983
  ```
974
984
 
975
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.2.2/src/commands/plugins/uninstall.ts)_
985
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.7/src/commands/plugins/uninstall.ts)_
976
986
 
977
- ## `flowcore plugins:uninstall PLUGIN...`
987
+ ## `flowcore plugins unlink [PLUGIN]`
978
988
 
979
989
  Removes a plugin from the CLI.
980
990
 
981
991
  ```
982
992
  USAGE
983
- $ flowcore plugins unlink plugins:uninstall PLUGIN...
993
+ $ flowcore plugins unlink [PLUGIN] [-h] [-v]
984
994
 
985
995
  ARGUMENTS
986
996
  PLUGIN plugin to uninstall
@@ -1016,7 +1026,7 @@ DESCRIPTION
1016
1026
  Update installed plugins.
1017
1027
  ```
1018
1028
 
1019
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.2.2/src/commands/plugins/update.ts)_
1029
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.7/src/commands/plugins/update.ts)_
1020
1030
 
1021
1031
  ## `flowcore plugins update check`
1022
1032
 
@@ -1061,7 +1071,7 @@ EXAMPLES
1061
1071
  $ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -e 9cb35da2-ba64-4bb5-86d6-ef20ebc62ab7
1062
1072
  ```
1063
1073
 
1064
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/reset/adapter.ts)_
1074
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/reset/adapter.ts)_
1065
1075
 
1066
1076
  ## `flowcore scenario apply`
1067
1077
 
@@ -1091,66 +1101,66 @@ EXAMPLES
1091
1101
  $ cat <<EOF | flowcore scenario apply -f -
1092
1102
  ```
1093
1103
 
1094
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/apply.ts)_
1104
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/scenario/apply.ts)_
1095
1105
 
1096
- ## `flowcore scenario generate manifest`
1106
+ ## `flowcore scenario generate transformer`
1097
1107
 
1098
- Generate a scenario manifest
1108
+ add a transformer to a scenario manifest
1099
1109
 
1100
1110
  ```
1101
1111
  USAGE
1102
- $ flowcore scenario generate manifest -t <value> [--profile <value>] [-f <value>] [-n <value>] [-o] [--placeholder]
1112
+ $ flowcore scenario generate transformer [--profile <value>] [-d <value>] [-f <value>] [-n <value>]
1103
1113
 
1104
1114
  FLAGS
1105
- -f, --file=<value> file to apply
1106
- -n, --name=<value> name of the scenario to generate
1107
- -o, --overwrite overwrite the existing scenario
1108
- -t, --tenant=<value> (required) tenant to apply the scenario to, this is the org for your organization, it can be
1109
- seen in the url when accessing your organization
1110
- --placeholder generate a placeholder manifest
1111
- --profile=<value> Specify the configuration profile to use
1115
+ -d, --description=<value> description of the transformer
1116
+ -f, --file=<value> file to modify
1117
+ -n, --name=<value> name of the transformer to generate
1118
+ --profile=<value> Specify the configuration profile to use
1112
1119
 
1113
1120
  DESCRIPTION
1114
- Generate a scenario manifest
1121
+ add a transformer to a scenario manifest
1115
1122
 
1116
1123
  EXAMPLES
1117
- $ flowcore scenario generate manifest -t flowcore
1118
-
1119
- $ flowcore scenario generate manifest -t flowcore --placeholder
1124
+ $ flowcore scenario generate transformer -n flow-type-name
1120
1125
 
1121
- $ flowcore scenario generate manifest -t flowcore -f example.yaml
1126
+ $ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer"
1122
1127
 
1123
- $ flowcore scenario generate manifest -t flowcore -n scenario-name -f example.yaml
1128
+ $ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
1124
1129
  ```
1125
1130
 
1126
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/generate/manifest.ts)_
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)_
1127
1132
 
1128
- ## `flowcore scenario generate transformer`
1133
+ ## `flowcore scenario init`
1129
1134
 
1130
- add a transformer to a scenario manifest
1135
+ Generate a scenario manifest
1131
1136
 
1132
1137
  ```
1133
1138
  USAGE
1134
- $ flowcore scenario generate transformer [--profile <value>] [-d <value>] [-f <value>] [-n <value>]
1139
+ $ flowcore scenario init -t <value> [--profile <value>] [-f <value>] [-n <value>] [-o] [--placeholder]
1135
1140
 
1136
1141
  FLAGS
1137
- -d, --description=<value> description of the transformer
1138
- -f, --file=<value> file to modify
1139
- -n, --name=<value> name of the transformer to generate
1140
- --profile=<value> Specify the configuration profile to use
1142
+ -f, --file=<value> [default: flowcore.yaml] file to apply
1143
+ -n, --name=<value> name of the scenario to generate
1144
+ -o, --overwrite overwrite the existing scenario
1145
+ -t, --tenant=<value> (required) tenant to apply the scenario to, this is the org for your organization, it can be
1146
+ seen in the url when accessing your organization
1147
+ --placeholder generate a placeholder manifest
1148
+ --profile=<value> Specify the configuration profile to use
1141
1149
 
1142
1150
  DESCRIPTION
1143
- add a transformer to a scenario manifest
1151
+ Generate a scenario manifest
1144
1152
 
1145
1153
  EXAMPLES
1146
- $ flowcore scenario generate transformer -n flow-type-name
1154
+ $ flowcore scenario init -t flowcore
1147
1155
 
1148
- $ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer"
1156
+ $ flowcore scenario init -t flowcore --placeholder
1149
1157
 
1150
- $ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
1158
+ $ flowcore scenario init -t flowcore -f example.yaml
1159
+
1160
+ $ flowcore scenario init -t flowcore -n scenario-name -f example.yaml
1151
1161
  ```
1152
1162
 
1153
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/generate/transformer.ts)_
1163
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/scenario/init.ts)_
1154
1164
 
1155
1165
  ## `flowcore scenario local`
1156
1166
 
@@ -1182,7 +1192,7 @@ EXAMPLES
1182
1192
  $ cat <<EOF | flowcore scenario local -f -
1183
1193
  ```
1184
1194
 
1185
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/local.ts)_
1195
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.3/src/commands/scenario/local.ts)_
1186
1196
 
1187
1197
  ## `flowcore stream STREAM`
1188
1198
 
@@ -1190,8 +1200,7 @@ Stream events from a datacore running on the Flowcore Platform and output them t
1190
1200
 
1191
1201
  ```
1192
1202
  USAGE
1193
- $ flowcore stream STREAM [--profile <value>] [-e <value>] [-j] [-l] [-m <value>] [-p] [-c] [-s <value>]
1194
- [-o <value>]
1203
+ $ flowcore stream STREAM [-e <value>] [-j] [-l] [-m <value>] [-p] [-c] [-s <value>] [--profile <value>]
1195
1204
 
1196
1205
  ARGUMENTS
1197
1206
  STREAM stream url to connect to
@@ -1202,7 +1211,6 @@ FLAGS
1202
1211
  -j, --json Output json only
1203
1212
  -l, --[no-]live Change to live mode when reaching last time bucket
1204
1213
  -m, --max=<value> Maximum number of events to send to the destination
1205
- -o, --output=<value> [default: log] Output to send events to (deprecated, use subcommand instead to specify output)
1206
1214
  -p, --payload Only send the event payload to the destination
1207
1215
  -s, --start=<value> Start time bucket to stream from, example: (2024-07-08T12:20:44Z, 1y, 1m, 1w, 1d, 1h, now)
1208
1216
  --profile=<value> Specify the configuration profile to use
@@ -1224,7 +1232,7 @@ EXAMPLES
1224
1232
  $ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m
1225
1233
  ```
1226
1234
 
1227
- _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v2.0.0/src/commands/stream.ts)_
1235
+ _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v3.3.0/src/commands/stream.ts)_
1228
1236
 
1229
1237
  ## `flowcore stream http STREAM`
1230
1238
 
@@ -1232,7 +1240,7 @@ Stream events from a datacore running on the Flowcore Platform and stream to a h
1232
1240
 
1233
1241
  ```
1234
1242
  USAGE
1235
- $ flowcore stream http STREAM [--profile <value>] [-e <value>] [-j] [-l] [-m <value>] [-p] [-c] [-s <value>]
1243
+ $ flowcore stream http STREAM [-e <value>] [-j] [-l] [-m <value>] [-p] [-c] [-s <value>] [--profile <value>]
1236
1244
  [-d <value>] [-H <value>] [-t <value>]
1237
1245
 
1238
1246
  ARGUMENTS
@@ -1266,7 +1274,7 @@ EXAMPLES
1266
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
1267
1275
  ```
1268
1276
 
1269
- _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v2.0.0/src/commands/stream/http.ts)_
1277
+ _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v3.3.0/src/commands/stream/http.ts)_
1270
1278
 
1271
1279
  ## `flowcore version`
1272
1280
 
@@ -1286,7 +1294,7 @@ FLAG DESCRIPTIONS
1286
1294
  Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
1287
1295
  ```
1288
1296
 
1289
- _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.0.12/src/commands/version.ts)_
1297
+ _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.12/src/commands/version.ts)_
1290
1298
 
1291
1299
  ## `flowcore whoami`
1292
1300
 
@@ -1303,5 +1311,5 @@ DESCRIPTION
1303
1311
  Check what user you are logged in as
1304
1312
  ```
1305
1313
 
1306
- _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.1.0/src/commands/whoami.ts)_
1314
+ _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v2.2.1/src/commands/whoami.ts)_
1307
1315
  <!-- commandsstop -->
@@ -4,8 +4,8 @@ export default class Apply extends BaseCommand<typeof Apply> {
4
4
  static description: string;
5
5
  static examples: string[];
6
6
  static flags: {
7
- file: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string[], import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
8
- yes: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
7
+ file: import("@oclif/core/interfaces").OptionFlag<string[], import("@oclif/core/interfaces").CustomOptions>;
8
+ yes: import("@oclif/core/interfaces").BooleanFlag<boolean>;
9
9
  };
10
10
  run(): Promise<void>;
11
11
  }
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "3.4.0"
51
+ "version": "4.0.1"
52
52
  }
package/package.json CHANGED
@@ -5,20 +5,20 @@
5
5
  },
6
6
  "dependencies": {
7
7
  "@datastructures-js/queue": "^4.2.3",
8
- "@flowcore/cli-plugin-auth-management": "^1.1.0",
9
- "@flowcore/cli-plugin-config": "^1.1.0",
10
- "@flowcore/cli-plugin-core": "^2.0.0",
11
- "@flowcore/cli-plugin-data-core": "^2.2.2",
12
- "@flowcore/cli-plugin-generator": "^1.5.0",
13
- "@flowcore/cli-plugin-scenario": "^3.3.1",
14
- "@flowcore/cli-plugin-tenant-management": "^1.0.0",
8
+ "@flowcore/cli-plugin-auth-management": "^1.2.1",
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",
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",
15
15
  "@flowcore/time-bucket": "^1.1.0",
16
- "@oclif/core": "^3",
17
- "@oclif/plugin-autocomplete": "^3.0.2",
18
- "@oclif/plugin-help": "^5",
19
- "@oclif/plugin-not-found": "^3.0.4",
20
- "@oclif/plugin-plugins": "^4",
21
- "@oclif/plugin-version": "^2.0.8",
16
+ "@oclif/core": "^4.0.21",
17
+ "@oclif/plugin-autocomplete": "^3.2.3",
18
+ "@oclif/plugin-help": "^6.2.11",
19
+ "@oclif/plugin-not-found": "^3.2.20",
20
+ "@oclif/plugin-plugins": "^5.4.7",
21
+ "@oclif/plugin-version": "^2.2.12",
22
22
  "axios": "^1.6.2",
23
23
  "cassandra-uuid": "^0.1.0",
24
24
  "cross-fetch": "^4.0.0",
@@ -36,7 +36,7 @@
36
36
  "description": "Flowcore CLI for interacting with the Flowcore platform",
37
37
  "devDependencies": {
38
38
  "@oclif/prettier-config": "^0.2.1",
39
- "@oclif/test": "^3",
39
+ "@oclif/test": "^4.0.9",
40
40
  "@types/chai": "^4",
41
41
  "@types/express": "^4.17.21",
42
42
  "@types/lodash": "^4.14.202",
@@ -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.4.0",
107
+ "version": "4.0.1",
108
108
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
109
109
  "keywords": [
110
110
  "flowcore",