@flowcore/cli 2.20.0 → 2.22.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.22.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.21.0...v2.22.0) (2024-08-29)
14
+
15
+
16
+ ### Features
17
+
18
+ * added create new plugin feature ([fbeadda](https://github.com/flowcore-io/flowcore-cli/commit/fbeaddaa4e3cf956a425aca7a4d6948c397df217))
19
+
20
+ ## [2.21.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.20.0...v2.21.0) (2024-08-28)
21
+
22
+
23
+ ### Features
24
+
25
+ * updated generator with new generator ([fd9db27](https://github.com/flowcore-io/flowcore-cli/commit/fd9db27943e0202ca999692e46494e30bfaffa52))
26
+
13
27
  ## [2.20.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.19.2...v2.20.0) (2024-08-28)
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.20.0 linux-x64 node-v20.16.0
21
+ @flowcore/cli/2.22.0 linux-x64 node-v20.17.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -42,7 +42,9 @@ USAGE
42
42
  * [`flowcore login`](#flowcore-login)
43
43
  * [`flowcore logs adapter ADAPTER`](#flowcore-logs-adapter-adapter)
44
44
  * [`flowcore new bun-service NAME`](#flowcore-new-bun-service-name)
45
+ * [`flowcore new generator NAME`](#flowcore-new-generator-name)
45
46
  * [`flowcore new nextjs-app NAME`](#flowcore-new-nextjs-app-name)
47
+ * [`flowcore new plugin NAME`](#flowcore-new-plugin-name)
46
48
  * [`flowcore plugins`](#flowcore-plugins)
47
49
  * [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin)
48
50
  * [`flowcore plugins:inspect PLUGIN...`](#flowcore-pluginsinspect-plugin)
@@ -83,7 +85,7 @@ EXAMPLES
83
85
  $ flowcore apply -f ./path/to/manifest.yml
84
86
  ```
85
87
 
86
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.20.0/src/commands/apply.ts)_
88
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.22.0/src/commands/apply.ts)_
87
89
 
88
90
  ## `flowcore autocomplete [SHELL]`
89
91
 
@@ -302,7 +304,7 @@ EXAMPLES
302
304
  $ flowcore generate nextjs-entity my-entity
303
305
  ```
304
306
 
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)_
307
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/generate/nextjs-entity.ts)_
306
308
 
307
309
  ## `flowcore get adapter [ADAPTER]`
308
310
 
@@ -459,7 +461,30 @@ EXAMPLES
459
461
  $ flowcore new bun-service my-service --no-flowcore
460
462
  ```
461
463
 
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)_
464
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/bun-service.ts)_
465
+
466
+ ## `flowcore new generator NAME`
467
+
468
+ Create a new generator
469
+
470
+ ```
471
+ USAGE
472
+ $ flowcore new generator NAME [--profile <value>]
473
+
474
+ ARGUMENTS
475
+ NAME name of the generator
476
+
477
+ FLAGS
478
+ --profile=<value> Specify the configuration profile to use
479
+
480
+ DESCRIPTION
481
+ Create a new generator
482
+
483
+ EXAMPLES
484
+ $ flowcore new generator my-generator
485
+ ```
486
+
487
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/generator.ts)_
463
488
 
464
489
  ## `flowcore new nextjs-app NAME`
465
490
 
@@ -482,7 +507,30 @@ EXAMPLES
482
507
  $ flowcore new nextjs-app my-app
483
508
  ```
484
509
 
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)_
510
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/nextjs-app.ts)_
511
+
512
+ ## `flowcore new plugin NAME`
513
+
514
+ Create a new plugin
515
+
516
+ ```
517
+ USAGE
518
+ $ flowcore new plugin NAME [--profile <value>]
519
+
520
+ ARGUMENTS
521
+ NAME name of the plugin
522
+
523
+ FLAGS
524
+ --profile=<value> Specify the configuration profile to use
525
+
526
+ DESCRIPTION
527
+ Create a new plugin
528
+
529
+ EXAMPLES
530
+ $ flowcore new plugin my-plugin
531
+ ```
532
+
533
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/plugin.ts)_
486
534
 
487
535
  ## `flowcore plugins`
488
536
 
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "2.20.0"
51
+ "version": "2.22.0"
52
52
  }
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "@flowcore/cli-plugin-config": "^1.1.0",
9
9
  "@flowcore/cli-plugin-core": "^1.6.2",
10
10
  "@flowcore/cli-plugin-data-core": "^2.2.2",
11
- "@flowcore/cli-plugin-generator": "^1.1.0",
11
+ "@flowcore/cli-plugin-generator": "^1.3.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.20.0",
99
+ "version": "2.22.0",
100
100
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
101
101
  "keywords": [
102
102
  "flowcore",