@flowcore/cli 3.3.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 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
+ ## [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
+
13
20
  ## [3.3.0](https://github.com/flowcore-io/flowcore-cli/compare/v3.2.0...v3.3.0) (2024-09-03)
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/3.3.0 linux-x64 node-v20.17.0
21
+ @flowcore/cli/3.3.1 linux-x64 node-v20.17.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -93,7 +93,7 @@ EXAMPLES
93
93
  $ flowcore apply -f ./path/to/manifest.yml
94
94
  ```
95
95
 
96
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.3.0/src/commands/apply.ts)_
96
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.3.1/src/commands/apply.ts)_
97
97
 
98
98
  ## `flowcore auth delete key API_KEY_NAME`
99
99
 
@@ -482,7 +482,7 @@ EXAMPLES
482
482
  $ flowcore get adapter adapter-name -t tenant-name -s scenario-name
483
483
  ```
484
484
 
485
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/get/adapter.ts)_
485
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/get/adapter.ts)_
486
486
 
487
487
  ## `flowcore get scenario [SCENARIO]`
488
488
 
@@ -508,7 +508,7 @@ EXAMPLES
508
508
  $ flowcore get scenario scenario-name -t tenant-name
509
509
  ```
510
510
 
511
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/get/scenario.ts)_
511
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/get/scenario.ts)_
512
512
 
513
513
  ## `flowcore get tenant [NAME]`
514
514
 
@@ -615,7 +615,7 @@ EXAMPLES
615
615
  $ flowcore logs adapter adapter-name -t tenant-name -s scenario-name --json
616
616
  ```
617
617
 
618
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/logs/adapter.ts)_
618
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/logs/adapter.ts)_
619
619
 
620
620
  ## `flowcore new bun-service NAME`
621
621
 
@@ -1034,7 +1034,7 @@ EXAMPLES
1034
1034
  $ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -e 9cb35da2-ba64-4bb5-86d6-ef20ebc62ab7
1035
1035
  ```
1036
1036
 
1037
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/reset/adapter.ts)_
1037
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/reset/adapter.ts)_
1038
1038
 
1039
1039
  ## `flowcore scenario apply`
1040
1040
 
@@ -1064,7 +1064,7 @@ EXAMPLES
1064
1064
  $ cat <<EOF | flowcore scenario apply -f -
1065
1065
  ```
1066
1066
 
1067
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/scenario/apply.ts)_
1067
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/apply.ts)_
1068
1068
 
1069
1069
  ## `flowcore scenario generate manifest`
1070
1070
 
@@ -1096,7 +1096,7 @@ EXAMPLES
1096
1096
  $ flowcore scenario generate manifest -t flowcore -n scenario-name -f example.yaml
1097
1097
  ```
1098
1098
 
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)_
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)_
1100
1100
 
1101
1101
  ## `flowcore scenario generate transformer`
1102
1102
 
@@ -1123,7 +1123,7 @@ EXAMPLES
1123
1123
  $ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
1124
1124
  ```
1125
1125
 
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)_
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)_
1127
1127
 
1128
1128
  ## `flowcore scenario local`
1129
1129
 
@@ -1155,7 +1155,7 @@ EXAMPLES
1155
1155
  $ cat <<EOF | flowcore scenario local -f -
1156
1156
  ```
1157
1157
 
1158
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.0/src/commands/scenario/local.ts)_
1158
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.3.1/src/commands/scenario/local.ts)_
1159
1159
 
1160
1160
  ## `flowcore stream STREAM`
1161
1161
 
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "3.3.0"
51
+ "version": "3.3.1"
52
52
  }
package/package.json CHANGED
@@ -10,7 +10,7 @@
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.3.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.3.1",
108
108
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
109
109
  "keywords": [
110
110
  "flowcore",