@flowcore/cli 4.1.1 → 4.2.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,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
+ ## [4.2.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.2.0...v4.2.1) (2024-10-07)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **scenario:** :bug: updated the scenario plugin to fix a few minor issues ([8e5582f](https://github.com/flowcore-io/flowcore-cli/commit/8e5582f0a6c23be5c85e5d5f49bf480571ff2a42))
19
+
20
+ ## [4.2.0](https://github.com/flowcore-io/flowcore-cli/compare/v4.1.1...v4.2.0) (2024-09-30)
21
+
22
+
23
+ ### Features
24
+
25
+ * **dependencies:** :sparkles: updated scenario and daca core plugins ([63b8dcb](https://github.com/flowcore-io/flowcore-cli/commit/63b8dcb8301fb82b3eca0d22996b91b0500f374c))
26
+
13
27
  ## [4.1.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.1.0...v4.1.1) (2024-09-17)
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/4.1.1 linux-x64 node-v20.17.0
21
+ @flowcore/cli/4.2.1 linux-x64 node-v20.17.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -95,7 +95,7 @@ EXAMPLES
95
95
  $ flowcore apply -f ./path/to/manifest.yml
96
96
  ```
97
97
 
98
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.1.1/src/commands/apply.ts)_
98
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.2.1/src/commands/apply.ts)_
99
99
 
100
100
  ## `flowcore auth delete key API_KEY_NAME`
101
101
 
@@ -370,7 +370,7 @@ EXAMPLES
370
370
  $ cat <<EOF | flowcore data-core apply -f -
371
371
  ```
372
372
 
373
- _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)_
373
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.1.0/src/commands/data-core/apply.ts)_
374
374
 
375
375
  ## `flowcore data-core generate event-type FLOWTYPE`
376
376
 
@@ -397,7 +397,7 @@ EXAMPLES
397
397
  $ flowcore data-core generate event-type flow-type-name -n event-type-name -d "description of the event type" -f example.yaml
398
398
  ```
399
399
 
400
- _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)_
400
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.1.0/src/commands/data-core/generate/event-type.ts)_
401
401
 
402
402
  ## `flowcore data-core generate flow-type`
403
403
 
@@ -424,7 +424,7 @@ EXAMPLES
424
424
  $ flowcore data-core generate flow-type -n flow-type-name -d "description of the flow type" -f example.yaml
425
425
  ```
426
426
 
427
- _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)_
427
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.1.0/src/commands/data-core/generate/flow-type.ts)_
428
428
 
429
429
  ## `flowcore data-core init`
430
430
 
@@ -432,15 +432,14 @@ Initialize a data core manifest
432
432
 
433
433
  ```
434
434
  USAGE
435
- $ flowcore data-core init [--profile <value>] [-f <value>] [-n <value>] [-o] [-t <value>] [-y]
435
+ $ flowcore data-core init -t <value> [--profile <value>] [-f <value>] [-p] [-o]
436
436
 
437
437
  FLAGS
438
438
  -f, --file=<value> [default: flowcore.yaml] filename it will be created with, defaults to flowcore.yaml
439
- -n, --name=<value> name of the data core to generate
440
439
  -o, --overwrite overwrite the existing data core
441
- -t, --tenant=<value> tenant to apply the data core to, this is the org for your organization, it can be seen in the
442
- url when accessing your organization
443
- -y, --yes skip confirmation
440
+ -p, --no-placeholders use placeholders for the data core
441
+ -t, --tenant=<value> (required) tenant to apply the data core to, this is the org for your organization, it can be
442
+ seen in the url when accessing your organization
444
443
  --profile=<value> Specify the configuration profile to use
445
444
 
446
445
  DESCRIPTION
@@ -456,7 +455,7 @@ EXAMPLES
456
455
  $ flowcore data-core init -t flowcore -n data-core-name -f example.yaml
457
456
  ```
458
457
 
459
- _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)_
458
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.1.0/src/commands/data-core/init.ts)_
460
459
 
461
460
  ## `flowcore generate nextjs-entity NAME`
462
461
 
@@ -506,7 +505,7 @@ EXAMPLES
506
505
  $ flowcore get adapter adapter-name -t tenant-name -s scenario-name
507
506
  ```
508
507
 
509
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.5/src/commands/get/adapter.ts)_
508
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.1/src/commands/get/adapter.ts)_
510
509
 
511
510
  ## `flowcore get scenario [SCENARIO]`
512
511
 
@@ -532,7 +531,7 @@ EXAMPLES
532
531
  $ flowcore get scenario scenario-name -t tenant-name
533
532
  ```
534
533
 
535
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.5/src/commands/get/scenario.ts)_
534
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.1/src/commands/get/scenario.ts)_
536
535
 
537
536
  ## `flowcore get tenant [NAME]`
538
537
 
@@ -638,7 +637,7 @@ EXAMPLES
638
637
  $ flowcore logs adapter adapter-name -t tenant-name -s scenario-name --json
639
638
  ```
640
639
 
641
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.5/src/commands/logs/adapter.ts)_
640
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.1/src/commands/logs/adapter.ts)_
642
641
 
643
642
  ## `flowcore new bun-service NAME`
644
643
 
@@ -1093,7 +1092,7 @@ EXAMPLES
1093
1092
  $ flowcore reset adapter adapter-name -t tenant-name -s scenario-name -e 9cb35da2-ba64-4bb5-86d6-ef20ebc62ab7
1094
1093
  ```
1095
1094
 
1096
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.5/src/commands/reset/adapter.ts)_
1095
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.1/src/commands/reset/adapter.ts)_
1097
1096
 
1098
1097
  ## `flowcore scenario apply`
1099
1098
 
@@ -1123,7 +1122,7 @@ EXAMPLES
1123
1122
  $ cat <<EOF | flowcore scenario apply -f -
1124
1123
  ```
1125
1124
 
1126
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.5/src/commands/scenario/apply.ts)_
1125
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.1/src/commands/scenario/apply.ts)_
1127
1126
 
1128
1127
  ## `flowcore scenario generate transformer`
1129
1128
 
@@ -1150,7 +1149,7 @@ EXAMPLES
1150
1149
  $ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
1151
1150
  ```
1152
1151
 
1153
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.5/src/commands/scenario/generate/transformer.ts)_
1152
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.1/src/commands/scenario/generate/transformer.ts)_
1154
1153
 
1155
1154
  ## `flowcore scenario init`
1156
1155
 
@@ -1182,7 +1181,7 @@ EXAMPLES
1182
1181
  $ flowcore scenario init -t flowcore -n scenario-name -f example.yaml
1183
1182
  ```
1184
1183
 
1185
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.5/src/commands/scenario/init.ts)_
1184
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.1/src/commands/scenario/init.ts)_
1186
1185
 
1187
1186
  ## `flowcore scenario local`
1188
1187
 
@@ -1214,7 +1213,7 @@ EXAMPLES
1214
1213
  $ cat <<EOF | flowcore scenario local -f -
1215
1214
  ```
1216
1215
 
1217
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.0.5/src/commands/scenario/local.ts)_
1216
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.1/src/commands/scenario/local.ts)_
1218
1217
 
1219
1218
  ## `flowcore stream STREAM`
1220
1219
 
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "4.1.1"
51
+ "version": "4.2.1"
52
52
  }
package/package.json CHANGED
@@ -9,9 +9,9 @@
9
9
  "@flowcore/cli-plugin-auth-management": "^1.2.2",
10
10
  "@flowcore/cli-plugin-config": "^2.4.1",
11
11
  "@flowcore/cli-plugin-core": "^4.0.3",
12
- "@flowcore/cli-plugin-data-core": "^3.0.2",
12
+ "@flowcore/cli-plugin-data-core": "^3.1.0",
13
13
  "@flowcore/cli-plugin-generator": "^1.6.0",
14
- "@flowcore/cli-plugin-scenario": "^4.0.5",
14
+ "@flowcore/cli-plugin-scenario": "^4.1.1",
15
15
  "@flowcore/cli-plugin-tenant-management": "^1.1.1",
16
16
  "@flowcore/time-bucket": "^1.1.0",
17
17
  "@oclif/core": "^4.0.21",
@@ -106,7 +106,7 @@
106
106
  "prestart": "npm run build",
107
107
  "update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
108
108
  },
109
- "version": "4.1.1",
109
+ "version": "4.2.1",
110
110
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
111
111
  "keywords": [
112
112
  "flowcore",