vona-module-test-vona 5.0.34 → 5.0.35
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/dist/.metadata/index.d.ts +21 -0
- package/package.json +1 -1
|
@@ -331,6 +331,27 @@ export interface IModuleModel {
|
|
|
331
331
|
}
|
|
332
332
|
/** model: end */
|
|
333
333
|
/** model: begin */
|
|
334
|
+
import 'vona';
|
|
335
|
+
declare module 'vona' {
|
|
336
|
+
interface IBeanRecordGeneral {
|
|
337
|
+
'test-vona.model.category': ModelCategory;
|
|
338
|
+
'test-vona.model.categoryChain': ModelCategoryChain;
|
|
339
|
+
'test-vona.model.order': ModelOrder;
|
|
340
|
+
'test-vona.model.orderStats': ModelOrderStats;
|
|
341
|
+
'test-vona.model.post': ModelPost;
|
|
342
|
+
'test-vona.model.postContent': ModelPostContent;
|
|
343
|
+
'test-vona.model.product': ModelProduct;
|
|
344
|
+
'test-vona.model.role': ModelRole;
|
|
345
|
+
'test-vona.model.roleUser': ModelRoleUser;
|
|
346
|
+
'test-vona.model.test': ModelTest;
|
|
347
|
+
'test-vona.model.testDynamicTable': ModelTestDynamicTable;
|
|
348
|
+
'test-vona.model.user': ModelUser;
|
|
349
|
+
'test-vona.model.userStats': ModelUserStats;
|
|
350
|
+
'test-vona.model.userStatsGroup': ModelUserStatsGroup;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
/** model: end */
|
|
354
|
+
/** model: begin */
|
|
334
355
|
import type { IModelGetOptions, IModelMethodOptions, IModelSelectParams, TableIdentity, TypeModelRelationResult, TypeModelWhere, IModelInsertOptions, TypeModelMutateRelationData, IModelDeleteOptions, IModelUpdateOptions, IModelMutateOptions, IModelSelectCountParams, IModelSelectAggrParams, TypeModelAggrRelationResult, IModelSelectGroupParams, TypeModelGroupRelationResult } from 'vona-module-a-orm';
|
|
335
356
|
import { SymbolKeyEntity, SymbolKeyEntityMeta, SymbolKeyModelOptions } from 'vona-module-a-orm';
|
|
336
357
|
declare module 'vona-module-test-vona' {
|