@flowcore/cli 3.3.0 → 3.4.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 CHANGED
@@ -10,6 +10,20 @@
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.4.0](https://github.com/flowcore-io/flowcore-cli/compare/v3.3.1...v3.4.0) (2024-09-05)
14
+
15
+
16
+ ### Features
17
+
18
+ * added new transformer command ([ba69d1f](https://github.com/flowcore-io/flowcore-cli/commit/ba69d1f93c87780e8f4bc0970b6dc712ce0d0c0e))
19
+
20
+ ## [3.3.1](https://github.com/flowcore-io/flowcore-cli/compare/v3.3.0...v3.3.1) (2024-09-04)
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * bumped flowcore scenario plugin version to 3.3.1 ([422cc60](https://github.com/flowcore-io/flowcore-cli/commit/422cc60c013e5ee86b2996013f975d5ab8d97ad8))
26
+
13
27
  ## [3.3.0](https://github.com/flowcore-io/flowcore-cli/compare/v3.2.0...v3.3.0) (2024-09-03)
14
28
 
15
29
 
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.3.0 linux-x64 node-v20.17.0
21
+ @flowcore/cli/3.4.0 linux-x64 node-v20.17.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -52,6 +52,7 @@ USAGE
52
52
  * [`flowcore new generator NAME`](#flowcore-new-generator-name)
53
53
  * [`flowcore new nextjs-app NAME`](#flowcore-new-nextjs-app-name)
54
54
  * [`flowcore new plugin NAME`](#flowcore-new-plugin-name)
55
+ * [`flowcore new transformer NAME`](#flowcore-new-transformer-name)
55
56
  * [`flowcore plugins`](#flowcore-plugins)
56
57
  * [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin)
57
58
  * [`flowcore plugins:inspect PLUGIN...`](#flowcore-pluginsinspect-plugin)
@@ -93,7 +94,7 @@ EXAMPLES
93
94
  $ flowcore apply -f ./path/to/manifest.yml
94
95
  ```
95
96
 
96
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.3.0/src/commands/apply.ts)_
97
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.4.0/src/commands/apply.ts)_
97
98
 
98
99
  ## `flowcore auth delete key API_KEY_NAME`
99
100
 
@@ -455,7 +456,7 @@ EXAMPLES
455
456
  $ flowcore generate nextjs-entity my-entity
456
457
  ```
457
458
 
458
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/generate/nextjs-entity.ts)_
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
460
 
460
461
  ## `flowcore get adapter [ADAPTER]`
461
462
 
@@ -482,7 +483,7 @@ EXAMPLES
482
483
  $ flowcore get adapter adapter-name -t tenant-name -s scenario-name
483
484
  ```
484
485
 
485
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/get/adapter.ts)_
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
487
 
487
488
  ## `flowcore get scenario [SCENARIO]`
488
489
 
@@ -508,7 +509,7 @@ EXAMPLES
508
509
  $ flowcore get scenario scenario-name -t tenant-name
509
510
  ```
510
511
 
511
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/get/scenario.ts)_
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
513
 
513
514
  ## `flowcore get tenant [NAME]`
514
515
 
@@ -615,7 +616,7 @@ EXAMPLES
615
616
  $ flowcore logs adapter adapter-name -t tenant-name -s scenario-name --json
616
617
  ```
617
618
 
618
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/logs/adapter.ts)_
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
620
 
620
621
  ## `flowcore new bun-service NAME`
621
622
 
@@ -641,7 +642,7 @@ EXAMPLES
641
642
  $ flowcore new bun-service my-service --no-flowcore
642
643
  ```
643
644
 
644
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/bun-service.ts)_
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
646
 
646
647
  ## `flowcore new generator NAME`
647
648
 
@@ -664,7 +665,7 @@ EXAMPLES
664
665
  $ flowcore new generator my-generator
665
666
  ```
666
667
 
667
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/generator.ts)_
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
669
 
669
670
  ## `flowcore new nextjs-app NAME`
670
671
 
@@ -687,7 +688,7 @@ EXAMPLES
687
688
  $ flowcore new nextjs-app my-app
688
689
  ```
689
690
 
690
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/nextjs-app.ts)_
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
692
 
692
693
  ## `flowcore new plugin NAME`
693
694
 
@@ -710,7 +711,33 @@ EXAMPLES
710
711
  $ flowcore new plugin my-plugin
711
712
  ```
712
713
 
713
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/plugin.ts)_
714
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/plugin.ts)_
715
+
716
+ ## `flowcore new transformer NAME`
717
+
718
+ Create a new Bun transformer
719
+
720
+ ```
721
+ USAGE
722
+ $ flowcore new transformer NAME [--profile <value>] [--no-flowcore]
723
+
724
+ ARGUMENTS
725
+ NAME name of the bun transformer
726
+
727
+ FLAGS
728
+ --no-flowcore do not use flowcore
729
+ --profile=<value> Specify the configuration profile to use
730
+
731
+ DESCRIPTION
732
+ Create a new Bun transformer
733
+
734
+ EXAMPLES
735
+ $ flowcore new transformer my-transformer
736
+
737
+ $ flowcore new transformer my-transformer --no-flowcore
738
+ ```
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)_
714
741
 
715
742
  ## `flowcore plugins`
716
743
 
@@ -1034,7 +1061,7 @@ EXAMPLES
1034
1061
  $ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -e 9cb35da2-ba64-4bb5-86d6-ef20ebc62ab7
1035
1062
  ```
1036
1063
 
1037
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/reset/adapter.ts)_
1064
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/reset/adapter.ts)_
1038
1065
 
1039
1066
  ## `flowcore scenario apply`
1040
1067
 
@@ -1064,7 +1091,7 @@ EXAMPLES
1064
1091
  $ cat <<EOF | flowcore scenario apply -f -
1065
1092
  ```
1066
1093
 
1067
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/scenario/apply.ts)_
1094
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/apply.ts)_
1068
1095
 
1069
1096
  ## `flowcore scenario generate manifest`
1070
1097
 
@@ -1096,7 +1123,7 @@ EXAMPLES
1096
1123
  $ flowcore scenario generate manifest -t flowcore -n scenario-name -f example.yaml
1097
1124
  ```
1098
1125
 
1099
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/scenario/generate/manifest.ts)_
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)_
1100
1127
 
1101
1128
  ## `flowcore scenario generate transformer`
1102
1129
 
@@ -1123,7 +1150,7 @@ EXAMPLES
1123
1150
  $ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
1124
1151
  ```
1125
1152
 
1126
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/scenario/generate/transformer.ts)_
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)_
1127
1154
 
1128
1155
  ## `flowcore scenario local`
1129
1156
 
@@ -1155,7 +1182,7 @@ EXAMPLES
1155
1182
  $ cat <<EOF | flowcore scenario local -f -
1156
1183
  ```
1157
1184
 
1158
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/scenario/local.ts)_
1185
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/local.ts)_
1159
1186
 
1160
1187
  ## `flowcore stream STREAM`
1161
1188
 
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "3.3.0"
51
+ "version": "3.4.0"
52
52
  }
package/package.json CHANGED
@@ -9,8 +9,8 @@
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
- "@flowcore/cli-plugin-generator": "^1.3.0",
13
- "@flowcore/cli-plugin-scenario": "^3.3.0",
12
+ "@flowcore/cli-plugin-generator": "^1.5.0",
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.3.0",
107
+ "version": "3.4.0",
108
108
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
109
109
  "keywords": [
110
110
  "flowcore",