@flowcore/cli 2.16.1 → 2.17.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,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
+ ## [2.17.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.16.1...v2.17.0) (2024-07-15)
14
+
15
+
16
+ ### Features
17
+
18
+ * added generator plugin ([3dbf979](https://github.com/flowcore-io/flowcore-cli/commit/3dbf979f11d03a0e61d1f6efdb1c335139ce2db8))
19
+
13
20
  ## [2.16.1](https://github.com/flowcore-io/flowcore-cli/compare/v2.16.0...v2.16.1) (2024-07-09)
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/2.16.1 linux-x64 node-v20.15.0
21
+ @flowcore/cli/2.17.0 linux-x64 node-v20.15.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -35,8 +35,10 @@ 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
39
  * [`flowcore help [COMMANDS]`](#flowcore-help-commands)
39
40
  * [`flowcore login`](#flowcore-login)
41
+ * [`flowcore new nextjs-app NAME`](#flowcore-new-nextjs-app-name)
40
42
  * [`flowcore plugins`](#flowcore-plugins)
41
43
  * [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin)
42
44
  * [`flowcore plugins:inspect PLUGIN...`](#flowcore-pluginsinspect-plugin)
@@ -47,6 +49,7 @@ USAGE
47
49
  * [`flowcore plugins:uninstall PLUGIN...`](#flowcore-pluginsuninstall-plugin-1)
48
50
  * [`flowcore plugins:uninstall PLUGIN...`](#flowcore-pluginsuninstall-plugin-2)
49
51
  * [`flowcore plugins update`](#flowcore-plugins-update)
52
+ * [`flowcore plugins update check`](#flowcore-plugins-update-check)
50
53
  * [`flowcore scenario apply`](#flowcore-scenario-apply)
51
54
  * [`flowcore scenario generate manifest`](#flowcore-scenario-generate-manifest)
52
55
  * [`flowcore scenario generate transformer`](#flowcore-scenario-generate-transformer)
@@ -75,7 +78,7 @@ EXAMPLES
75
78
  $ flowcore apply -f ./path/to/manifest.yml
76
79
  ```
77
80
 
78
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.16.1/src/commands/apply.ts)_
81
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.17.0/src/commands/apply.ts)_
79
82
 
80
83
  ## `flowcore autocomplete [SHELL]`
81
84
 
@@ -273,6 +276,29 @@ EXAMPLES
273
276
 
274
277
  _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)_
275
278
 
279
+ ## `flowcore generate nestjs-entity NAME`
280
+
281
+ Create a new NestJS entity using the Flowcore IDD approach
282
+
283
+ ```
284
+ USAGE
285
+ $ flowcore generate nestjs-entity NAME [--profile <value>]
286
+
287
+ ARGUMENTS
288
+ NAME name of the entity to generate
289
+
290
+ FLAGS
291
+ --profile=<value> Specify the configuration profile to use
292
+
293
+ DESCRIPTION
294
+ Create a new NestJS entity using the Flowcore IDD approach
295
+
296
+ EXAMPLES
297
+ $ flowcore generate nestjs-entity my-entity
298
+ ```
299
+
300
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.0.0/src/commands/generate/nestjs-entity.ts)_
301
+
276
302
  ## `flowcore help [COMMANDS]`
277
303
 
278
304
  Display help for flowcore.
@@ -316,6 +342,29 @@ EXAMPLES
316
342
 
317
343
  _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.1.0/src/commands/login.ts)_
318
344
 
345
+ ## `flowcore new nextjs-app NAME`
346
+
347
+ Create a new NestJS application using the Flowcore IDD approach
348
+
349
+ ```
350
+ USAGE
351
+ $ flowcore new nextjs-app NAME [--profile <value>]
352
+
353
+ ARGUMENTS
354
+ NAME name of the nextjs app
355
+
356
+ FLAGS
357
+ --profile=<value> Specify the configuration profile to use
358
+
359
+ DESCRIPTION
360
+ Create a new NestJS application using the Flowcore IDD approach
361
+
362
+ EXAMPLES
363
+ $ flowcore new nextjs-app my-app
364
+ ```
365
+
366
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.0.0/src/commands/new/nextjs-app.ts)_
367
+
319
368
  ## `flowcore plugins`
320
369
 
321
370
  List installed plugins.
@@ -595,6 +644,20 @@ DESCRIPTION
595
644
 
596
645
  _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.2.2/src/commands/plugins/update.ts)_
597
646
 
647
+ ## `flowcore plugins update check`
648
+
649
+ check installed plugins for updates
650
+
651
+ ```
652
+ USAGE
653
+ $ flowcore plugins update check
654
+
655
+ DESCRIPTION
656
+ check installed plugins for updates
657
+ ```
658
+
659
+ _See code: [oclif-plugin-update-notifier](https://github.com/jayree/oclif-plugin-update-notifier/blob/v1.5.84/src/commands/plugins/update/check.ts)_
660
+
598
661
  ## `flowcore scenario apply`
599
662
 
600
663
  Apply a manifest configuration for a Scenario to the Flowcore Platform
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "2.16.1"
51
+ "version": "2.17.0"
52
52
  }
package/package.json CHANGED
@@ -8,6 +8,7 @@
8
8
  "@flowcore/cli-plugin-config": "^1.1.0",
9
9
  "@flowcore/cli-plugin-core": "^1.6.1",
10
10
  "@flowcore/cli-plugin-data-core": "^2.2.2",
11
+ "@flowcore/cli-plugin-generator": "^1.0.0",
11
12
  "@flowcore/cli-plugin-scenario": "^2.10.1",
12
13
  "@flowcore/time-bucket": "^1.1.0",
13
14
  "@oclif/core": "^3",
@@ -26,6 +27,7 @@
26
27
  "jwt-decode": "^4.0.0",
27
28
  "lodash": "^4.17.21",
28
29
  "merge": "^2.1.1",
30
+ "oclif-plugin-update-notifier": "^1.5.84",
29
31
  "rxjs": "^7.8.1",
30
32
  "session": "^0.1.0"
31
33
  },
@@ -71,10 +73,12 @@
71
73
  "@oclif/plugin-plugins",
72
74
  "@oclif/plugin-autocomplete",
73
75
  "@oclif/plugin-not-found",
76
+ "oclif-plugin-update-notifier",
74
77
  "@flowcore/cli-plugin-config",
75
78
  "@flowcore/cli-plugin-data-core",
76
79
  "@flowcore/cli-plugin-scenario",
77
- "@flowcore/cli-plugin-core"
80
+ "@flowcore/cli-plugin-core",
81
+ "@flowcore/cli-plugin-generator"
78
82
  ],
79
83
  "topicSeparator": " "
80
84
  },
@@ -92,7 +96,7 @@
92
96
  "prestart": "npm run build",
93
97
  "update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
94
98
  },
95
- "version": "2.16.1",
99
+ "version": "2.17.0",
96
100
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
97
101
  "keywords": [
98
102
  "flowcore",