vona-cli-set-api 1.0.130 → 1.0.133
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/cli/templates/create/project/basic/boilerplate/package.original.json +1 -1
- package/cli/templates/create/project/basic/boilerplate/src/suite/a-home/modules/home-user/dist/.metadata/index.d.ts +10 -0
- package/cli/templates/create/project/basic/boilerplate/src/suite/a-home/modules/home-user/src/.metadata/index.ts +11 -0
- package/cli/templates/create/project/basic/boilerplate/src/suite/a-home/modules/home-user/tsconfig.build.tsbuildinfo +1 -1
- package/dist/lib/bean/cli.bin.demo.d.ts +2 -1
- package/dist/lib/bean/cli.bin.demo.js +1 -1
- package/dist/lib/bean/toolsBin/demo.js +12 -2
- package/dist/lib/command/bin.demo.d.ts +4 -0
- package/dist/lib/command/bin.demo.js +4 -0
- package/dist/lib/commands.d.ts +4 -0
- package/package.json +2 -2
- package/templates/app/bootstrap.ejs +1 -1
|
@@ -101,6 +101,16 @@ export interface IModuleModel {
|
|
|
101
101
|
}
|
|
102
102
|
/** model: end */
|
|
103
103
|
/** model: begin */
|
|
104
|
+
import 'vona';
|
|
105
|
+
declare module 'vona' {
|
|
106
|
+
interface IBeanRecordGeneral {
|
|
107
|
+
'home-user.model.role': ModelRole;
|
|
108
|
+
'home-user.model.roleUser': ModelRoleUser;
|
|
109
|
+
'home-user.model.user': ModelUser;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
/** model: end */
|
|
113
|
+
/** model: begin */
|
|
104
114
|
import type { IModelGetOptions, IModelMethodOptions, IModelSelectParams, TableIdentity, TypeModelRelationResult, TypeModelWhere, IModelInsertOptions, TypeModelMutateRelationData, IModelDeleteOptions, IModelUpdateOptions, IModelMutateOptions, IModelSelectCountParams, IModelSelectAggrParams, TypeModelAggrRelationResult, IModelSelectGroupParams, TypeModelGroupRelationResult } from 'vona-module-a-orm';
|
|
105
115
|
import { SymbolKeyEntity, SymbolKeyEntityMeta, SymbolKeyModelOptions } from 'vona-module-a-orm';
|
|
106
116
|
declare module 'vona-module-home-user' {
|
|
@@ -124,6 +124,17 @@ export interface IModuleModel {
|
|
|
124
124
|
}
|
|
125
125
|
/** model: end */
|
|
126
126
|
/** model: begin */
|
|
127
|
+
|
|
128
|
+
import 'vona';
|
|
129
|
+
declare module 'vona' {
|
|
130
|
+
export interface IBeanRecordGeneral {
|
|
131
|
+
'home-user.model.role': ModelRole;
|
|
132
|
+
'home-user.model.roleUser': ModelRoleUser;
|
|
133
|
+
'home-user.model.user': ModelUser;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
/** model: end */
|
|
137
|
+
/** model: begin */
|
|
127
138
|
import type { IModelGetOptions, IModelMethodOptions, IModelSelectParams, TableIdentity, TypeModelRelationResult, TypeModelWhere, IModelInsertOptions, TypeModelMutateRelationData, IModelDeleteOptions, IModelUpdateOptions, IModelMutateOptions, IModelSelectCountParams, IModelSelectAggrParams, TypeModelAggrRelationResult, IModelSelectGroupParams, TypeModelGroupRelationResult } from 'vona-module-a-orm';
|
|
128
139
|
import { SymbolKeyEntity, SymbolKeyEntityMeta, SymbolKeyModelOptions } from 'vona-module-a-orm';
|
|
129
140
|
declare module 'vona-module-home-user' {
|