@flowcore/cli 2.19.1 → 2.20.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
+ ## [2.20.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.19.2...v2.20.0) (2024-08-28)
14
+
15
+
16
+ ### Features
17
+
18
+ * updated generator library to 1.1.0 for new bun service generator ([cab6273](https://github.com/flowcore-io/flowcore-cli/commit/cab62738878574ebaafcb5f84f05a2238ce4a9a1))
19
+
20
+ ## [2.19.2](https://github.com/flowcore-io/flowcore-cli/compare/v2.19.1...v2.19.2) (2024-08-26)
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * bumped flowcore core plugin version to optimized flowcore stream command ([5a55116](https://github.com/flowcore-io/flowcore-cli/commit/5a55116b1823d3e717b6e6c1bd9a3e0f5e506c2a))
26
+
13
27
  ## [2.19.1](https://github.com/flowcore-io/flowcore-cli/compare/v2.19.0...v2.19.1) (2024-08-19)
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/2.19.1 linux-x64 node-v20.16.0
21
+ @flowcore/cli/2.20.0 linux-x64 node-v20.16.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -35,12 +35,13 @@ USAGE
35
35
  * [`flowcore data-core generate event-type FLOWTYPE`](#flowcore-data-core-generate-event-type-flowtype)
36
36
  * [`flowcore data-core generate flow-type`](#flowcore-data-core-generate-flow-type)
37
37
  * [`flowcore data-core generate manifest`](#flowcore-data-core-generate-manifest)
38
- * [`flowcore generate nestjs-entity NAME`](#flowcore-generate-nestjs-entity-name)
38
+ * [`flowcore generate nextjs-entity NAME`](#flowcore-generate-nextjs-entity-name)
39
39
  * [`flowcore get adapter [ADAPTER]`](#flowcore-get-adapter-adapter)
40
40
  * [`flowcore get scenario [SCENARIO]`](#flowcore-get-scenario-scenario)
41
41
  * [`flowcore help [COMMANDS]`](#flowcore-help-commands)
42
42
  * [`flowcore login`](#flowcore-login)
43
43
  * [`flowcore logs adapter ADAPTER`](#flowcore-logs-adapter-adapter)
44
+ * [`flowcore new bun-service NAME`](#flowcore-new-bun-service-name)
44
45
  * [`flowcore new nextjs-app NAME`](#flowcore-new-nextjs-app-name)
45
46
  * [`flowcore plugins`](#flowcore-plugins)
46
47
  * [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin)
@@ -82,7 +83,7 @@ EXAMPLES
82
83
  $ flowcore apply -f ./path/to/manifest.yml
83
84
  ```
84
85
 
85
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.19.1/src/commands/apply.ts)_
86
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.20.0/src/commands/apply.ts)_
86
87
 
87
88
  ## `flowcore autocomplete [SHELL]`
88
89
 
@@ -280,13 +281,13 @@ EXAMPLES
280
281
 
281
282
  _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)_
282
283
 
283
- ## `flowcore generate nestjs-entity NAME`
284
+ ## `flowcore generate nextjs-entity NAME`
284
285
 
285
- Create a new NestJS entity using the Flowcore IDD approach
286
+ Create a new NextJS entity using the Flowcore IDD approach
286
287
 
287
288
  ```
288
289
  USAGE
289
- $ flowcore generate nestjs-entity NAME [--profile <value>]
290
+ $ flowcore generate nextjs-entity NAME [--profile <value>]
290
291
 
291
292
  ARGUMENTS
292
293
  NAME name of the entity to generate
@@ -295,13 +296,13 @@ FLAGS
295
296
  --profile=<value> Specify the configuration profile to use
296
297
 
297
298
  DESCRIPTION
298
- Create a new NestJS entity using the Flowcore IDD approach
299
+ Create a new NextJS entity using the Flowcore IDD approach
299
300
 
300
301
  EXAMPLES
301
- $ flowcore generate nestjs-entity my-entity
302
+ $ flowcore generate nextjs-entity my-entity
302
303
  ```
303
304
 
304
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.0.0/src/commands/generate/nestjs-entity.ts)_
305
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.1.0/src/commands/generate/nextjs-entity.ts)_
305
306
 
306
307
  ## `flowcore get adapter [ADAPTER]`
307
308
 
@@ -434,9 +435,35 @@ EXAMPLES
434
435
 
435
436
  _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.13.1/src/commands/logs/adapter.ts)_
436
437
 
438
+ ## `flowcore new bun-service NAME`
439
+
440
+ Create a new Bun service
441
+
442
+ ```
443
+ USAGE
444
+ $ flowcore new bun-service NAME [--profile <value>] [--no-flowcore]
445
+
446
+ ARGUMENTS
447
+ NAME name of the bun service
448
+
449
+ FLAGS
450
+ --no-flowcore do not use flowcore
451
+ --profile=<value> Specify the configuration profile to use
452
+
453
+ DESCRIPTION
454
+ Create a new Bun service
455
+
456
+ EXAMPLES
457
+ $ flowcore new bun-service my-service
458
+
459
+ $ flowcore new bun-service my-service --no-flowcore
460
+ ```
461
+
462
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.1.0/src/commands/new/bun-service.ts)_
463
+
437
464
  ## `flowcore new nextjs-app NAME`
438
465
 
439
- Create a new NestJS application using the Flowcore IDD approach
466
+ Create a new NextJS application using the Flowcore IDD approach
440
467
 
441
468
  ```
442
469
  USAGE
@@ -449,13 +476,13 @@ FLAGS
449
476
  --profile=<value> Specify the configuration profile to use
450
477
 
451
478
  DESCRIPTION
452
- Create a new NestJS application using the Flowcore IDD approach
479
+ Create a new NextJS application using the Flowcore IDD approach
453
480
 
454
481
  EXAMPLES
455
482
  $ flowcore new nextjs-app my-app
456
483
  ```
457
484
 
458
- _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.0.0/src/commands/new/nextjs-app.ts)_
485
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.1.0/src/commands/new/nextjs-app.ts)_
459
486
 
460
487
  ## `flowcore plugins`
461
488
 
@@ -946,7 +973,7 @@ EXAMPLES
946
973
  $ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -o log -s 3m
947
974
  ```
948
975
 
949
- _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v1.6.1/src/commands/stream.ts)_
976
+ _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v1.6.2/src/commands/stream.ts)_
950
977
 
951
978
  ## `flowcore version`
952
979
 
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "2.19.1"
51
+ "version": "2.20.0"
52
52
  }
package/package.json CHANGED
@@ -6,9 +6,9 @@
6
6
  "dependencies": {
7
7
  "@datastructures-js/queue": "^4.2.3",
8
8
  "@flowcore/cli-plugin-config": "^1.1.0",
9
- "@flowcore/cli-plugin-core": "^1.6.1",
9
+ "@flowcore/cli-plugin-core": "^1.6.2",
10
10
  "@flowcore/cli-plugin-data-core": "^2.2.2",
11
- "@flowcore/cli-plugin-generator": "^1.0.0",
11
+ "@flowcore/cli-plugin-generator": "^1.1.0",
12
12
  "@flowcore/cli-plugin-scenario": "^2.13.1",
13
13
  "@flowcore/time-bucket": "^1.1.0",
14
14
  "@oclif/core": "^3",
@@ -96,7 +96,7 @@
96
96
  "prestart": "npm run build",
97
97
  "update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
98
98
  },
99
- "version": "2.19.1",
99
+ "version": "2.20.0",
100
100
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
101
101
  "keywords": [
102
102
  "flowcore",