@solidstarters/solid-core 1.2.5 → 1.2.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidstarters/solid-core",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "This module is a NestJS module containing all the required core providers required by a Solid application",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,7 +37,7 @@ export class RefreshModelCommand extends CommandRunner {
37
37
  }
38
38
 
39
39
  @Option({
40
- flags: '-id, --modelId [model ID]',
40
+ flags: '-id, --id [model ID]',
41
41
  description: 'Model ID from the ss_model_metadata table',
42
42
  })
43
43
  parseModelId(val: string): number {
@@ -46,7 +46,7 @@ export class RefreshModelCommand extends CommandRunner {
46
46
 
47
47
  // Accept the module name as an argument
48
48
  @Option({
49
- flags: '-n, --modelName [model name]',
49
+ flags: '-n, --name [model name]',
50
50
  description: 'Model Name from the ss_model_metadata table',
51
51
  })
52
52
  parseModelName(val: string): string {
@@ -37,7 +37,7 @@ export class RefreshModuleCommand extends CommandRunner {
37
37
 
38
38
 
39
39
  @Option({
40
- flags: '-id, --moduleId [module ID]',
40
+ flags: '-id, --id [module ID]',
41
41
  description: 'Module ID from the ss_module_metadata table',
42
42
  })
43
43
  parseModuleId(val: string): number {
@@ -46,7 +46,7 @@ export class RefreshModuleCommand extends CommandRunner {
46
46
 
47
47
  // Accept the module name as an argument
48
48
  @Option({
49
- flags: '-n, --moduleName [module name]',
49
+ flags: '-n, --name [module name]',
50
50
  description: 'Module Name from the ss_module_metadata table',
51
51
  })
52
52
  parseModuleName(val: string): string {
@@ -46,7 +46,8 @@ export class SeedCommand extends CommandRunner {
46
46
  @Option({
47
47
  flags: '-s, --seeder [seeder name]',
48
48
  description: 'The seeder to run.',
49
- required: true
49
+ required: true,
50
+ defaultValue: 'ModuleMetadataSeederService'
50
51
  })
51
52
  parseString(val: string): string {
52
53
  return val;