vona-module-test-vona 5.0.66 → 5.0.67
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.
|
@@ -29,7 +29,7 @@ declare module 'vona-module-test-vona' {
|
|
|
29
29
|
/** aopMethod: begin */
|
|
30
30
|
export * from '../bean/aopMethod.test.ts';
|
|
31
31
|
import type { IAopMethodOptionsTest } from '../bean/aopMethod.test.ts';
|
|
32
|
-
import 'vona';
|
|
32
|
+
import 'vona-module-a-aspect';
|
|
33
33
|
declare module 'vona-module-a-aspect' {
|
|
34
34
|
interface IAopMethodRecord {
|
|
35
35
|
'test-vona:test': IAopMethodOptionsTest;
|
|
@@ -63,7 +63,7 @@ import type { IEntityOptionsRole } from '../entity/role.ts';
|
|
|
63
63
|
import type { IEntityOptionsRoleUser } from '../entity/roleUser.ts';
|
|
64
64
|
import type { IEntityOptionsTest } from '../entity/test.ts';
|
|
65
65
|
import type { IEntityOptionsUser } from '../entity/user.ts';
|
|
66
|
-
import 'vona';
|
|
66
|
+
import 'vona-module-a-orm';
|
|
67
67
|
declare module 'vona-module-a-orm' {
|
|
68
68
|
interface IEntityRecord {
|
|
69
69
|
'test-vona:category': IEntityOptionsCategory;
|
|
@@ -193,7 +193,7 @@ import type { IModelOptionsTestDynamicTable } from '../model/testDynamicTable.ts
|
|
|
193
193
|
import type { IModelOptionsUser } from '../model/user.ts';
|
|
194
194
|
import type { IModelOptionsUserStats } from '../model/userStats.ts';
|
|
195
195
|
import type { IModelOptionsUserStatsGroup } from '../model/userStatsGroup.ts';
|
|
196
|
-
import 'vona';
|
|
196
|
+
import 'vona-module-a-orm';
|
|
197
197
|
declare module 'vona-module-a-orm' {
|
|
198
198
|
interface IModelRecord {
|
|
199
199
|
'test-vona:category': IModelOptionsCategory;
|
|
@@ -831,7 +831,7 @@ export * from '../service/testClass.ts';
|
|
|
831
831
|
export * from '../service/testData.ts';
|
|
832
832
|
export * from '../service/transaction.ts';
|
|
833
833
|
export * from '../service/user.ts';
|
|
834
|
-
import 'vona';
|
|
834
|
+
import 'vona-module-a-bean';
|
|
835
835
|
declare module 'vona-module-a-bean' {
|
|
836
836
|
interface IServiceRecord {
|
|
837
837
|
'test-vona:aopMethod': never;
|
|
@@ -1097,8 +1097,8 @@ declare module 'vona-module-test-vona' {
|
|
|
1097
1097
|
/** eventListener: end */
|
|
1098
1098
|
/** meta: begin */
|
|
1099
1099
|
export * from '../bean/meta.version.ts';
|
|
1100
|
-
import 'vona';
|
|
1101
|
-
declare module 'vona' {
|
|
1100
|
+
import 'vona-module-a-meta';
|
|
1101
|
+
declare module 'vona-module-a-meta' {
|
|
1102
1102
|
interface IMetaRecord {
|
|
1103
1103
|
'test-vona:version': never;
|
|
1104
1104
|
}
|
|
@@ -1163,7 +1163,7 @@ declare module 'vona-module-test-vona' {
|
|
|
1163
1163
|
/** serializerTransform: begin */
|
|
1164
1164
|
export * from '../bean/serializerTransform.email.ts';
|
|
1165
1165
|
import type { ISerializerTransformOptionsEmail } from '../bean/serializerTransform.email.ts';
|
|
1166
|
-
import 'vona';
|
|
1166
|
+
import 'vona-module-a-serialization';
|
|
1167
1167
|
declare module 'vona-module-a-serialization' {
|
|
1168
1168
|
interface ISerializerTransformRecord {
|
|
1169
1169
|
'test-vona:email': ISerializerTransformOptionsEmail;
|
|
@@ -1246,7 +1246,7 @@ import type { IDtoOptionsUser } from '../dto/user.ts';
|
|
|
1246
1246
|
import type { IDtoOptionsUserCreate } from '../dto/userCreate.ts';
|
|
1247
1247
|
import type { IDtoOptionsUserLazy } from '../dto/userLazy.ts';
|
|
1248
1248
|
import type { IDtoOptionsUserUpdate } from '../dto/userUpdate.ts';
|
|
1249
|
-
import 'vona';
|
|
1249
|
+
import 'vona-module-a-web';
|
|
1250
1250
|
declare module 'vona-module-a-web' {
|
|
1251
1251
|
interface IDtoRecord {
|
|
1252
1252
|
'test-vona:categoryTree': IDtoOptionsCategoryTree;
|
|
@@ -1403,7 +1403,7 @@ import type { IControllerOptionsSummer } from '../controller/summer.ts';
|
|
|
1403
1403
|
import type { IControllerOptionsTail } from '../controller/tail.ts';
|
|
1404
1404
|
import type { IControllerOptionsTransaction } from '../controller/transaction.ts';
|
|
1405
1405
|
import type { IControllerOptionsUpload } from '../controller/upload.ts';
|
|
1406
|
-
import 'vona';
|
|
1406
|
+
import 'vona-module-a-web';
|
|
1407
1407
|
declare module 'vona-module-a-web' {
|
|
1408
1408
|
interface IControllerRecord {
|
|
1409
1409
|
'test-vona:bean': IControllerOptionsBean;
|
package/package.json
CHANGED
package/src/.metadata/index.ts
CHANGED
|
@@ -42,7 +42,7 @@ declare module 'vona-module-test-vona' {
|
|
|
42
42
|
/** aopMethod: begin */
|
|
43
43
|
export * from '../bean/aopMethod.test.ts';
|
|
44
44
|
import type { IAopMethodOptionsTest } from '../bean/aopMethod.test.ts';
|
|
45
|
-
import 'vona';
|
|
45
|
+
import 'vona-module-a-aspect';
|
|
46
46
|
declare module 'vona-module-a-aspect' {
|
|
47
47
|
|
|
48
48
|
export interface IAopMethodRecord {
|
|
@@ -83,7 +83,7 @@ import type { IEntityOptionsRole } from '../entity/role.ts';
|
|
|
83
83
|
import type { IEntityOptionsRoleUser } from '../entity/roleUser.ts';
|
|
84
84
|
import type { IEntityOptionsTest } from '../entity/test.ts';
|
|
85
85
|
import type { IEntityOptionsUser } from '../entity/user.ts';
|
|
86
|
-
import 'vona';
|
|
86
|
+
import 'vona-module-a-orm';
|
|
87
87
|
declare module 'vona-module-a-orm' {
|
|
88
88
|
|
|
89
89
|
export interface IEntityRecord {
|
|
@@ -226,7 +226,7 @@ import type { IModelOptionsTestDynamicTable } from '../model/testDynamicTable.ts
|
|
|
226
226
|
import type { IModelOptionsUser } from '../model/user.ts';
|
|
227
227
|
import type { IModelOptionsUserStats } from '../model/userStats.ts';
|
|
228
228
|
import type { IModelOptionsUserStatsGroup } from '../model/userStatsGroup.ts';
|
|
229
|
-
import 'vona';
|
|
229
|
+
import 'vona-module-a-orm';
|
|
230
230
|
declare module 'vona-module-a-orm' {
|
|
231
231
|
|
|
232
232
|
export interface IModelRecord {
|
|
@@ -915,7 +915,7 @@ export * from '../service/testData.ts';
|
|
|
915
915
|
export * from '../service/transaction.ts';
|
|
916
916
|
export * from '../service/user.ts';
|
|
917
917
|
|
|
918
|
-
import 'vona';
|
|
918
|
+
import 'vona-module-a-bean';
|
|
919
919
|
declare module 'vona-module-a-bean' {
|
|
920
920
|
|
|
921
921
|
export interface IServiceRecord {
|
|
@@ -1277,8 +1277,8 @@ declare module 'vona-module-test-vona' {
|
|
|
1277
1277
|
/** meta: begin */
|
|
1278
1278
|
export * from '../bean/meta.version.ts';
|
|
1279
1279
|
|
|
1280
|
-
import 'vona';
|
|
1281
|
-
declare module 'vona' {
|
|
1280
|
+
import 'vona-module-a-meta';
|
|
1281
|
+
declare module 'vona-module-a-meta' {
|
|
1282
1282
|
|
|
1283
1283
|
export interface IMetaRecord {
|
|
1284
1284
|
'test-vona:version': never;
|
|
@@ -1370,7 +1370,7 @@ declare module 'vona-module-test-vona' {
|
|
|
1370
1370
|
/** serializerTransform: begin */
|
|
1371
1371
|
export * from '../bean/serializerTransform.email.ts';
|
|
1372
1372
|
import type { ISerializerTransformOptionsEmail } from '../bean/serializerTransform.email.ts';
|
|
1373
|
-
import 'vona';
|
|
1373
|
+
import 'vona-module-a-serialization';
|
|
1374
1374
|
declare module 'vona-module-a-serialization' {
|
|
1375
1375
|
|
|
1376
1376
|
export interface ISerializerTransformRecord {
|
|
@@ -1468,7 +1468,7 @@ import type { IDtoOptionsUser } from '../dto/user.ts';
|
|
|
1468
1468
|
import type { IDtoOptionsUserCreate } from '../dto/userCreate.ts';
|
|
1469
1469
|
import type { IDtoOptionsUserLazy } from '../dto/userLazy.ts';
|
|
1470
1470
|
import type { IDtoOptionsUserUpdate } from '../dto/userUpdate.ts';
|
|
1471
|
-
import 'vona';
|
|
1471
|
+
import 'vona-module-a-web';
|
|
1472
1472
|
declare module 'vona-module-a-web' {
|
|
1473
1473
|
|
|
1474
1474
|
export interface IDtoRecord {
|
|
@@ -1651,7 +1651,7 @@ import type { IControllerOptionsSummer } from '../controller/summer.ts';
|
|
|
1651
1651
|
import type { IControllerOptionsTail } from '../controller/tail.ts';
|
|
1652
1652
|
import type { IControllerOptionsTransaction } from '../controller/transaction.ts';
|
|
1653
1653
|
import type { IControllerOptionsUpload } from '../controller/upload.ts';
|
|
1654
|
-
import 'vona';
|
|
1654
|
+
import 'vona-module-a-web';
|
|
1655
1655
|
declare module 'vona-module-a-web' {
|
|
1656
1656
|
|
|
1657
1657
|
export interface IControllerRecord {
|