vona-module-test-vona 5.0.17 → 5.0.18
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.
|
@@ -131,7 +131,7 @@ declare module 'vona-module-test-vona' {
|
|
|
131
131
|
export * from '../bean/bean.testCtx.ts';
|
|
132
132
|
declare module 'vona-module-a-database' {
|
|
133
133
|
interface IEntityRecord {
|
|
134
|
-
'test-vona:test': IEntityOptionsTest
|
|
134
|
+
'test-vona:test': Omit<IEntityOptionsTest, '_fieldsMore_'>;
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
declare module 'vona-module-test-vona' {
|
|
@@ -148,7 +148,7 @@ declare module 'vona-module-test-vona' {
|
|
|
148
148
|
$columns: <K extends keyof Omit<EntityTest, '$column' | '$columns' | '$table'>>(...columns: K[]) => K[];
|
|
149
149
|
}
|
|
150
150
|
interface IEntityOptionsTest {
|
|
151
|
-
fields?: TypeEntityOptionsFields<EntityTest, IEntityOptionsTest['
|
|
151
|
+
fields?: TypeEntityOptionsFields<EntityTest, IEntityOptionsTest['_fieldsMore_']>;
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
/** bean: end */
|
|
@@ -316,18 +316,18 @@ export * from '../controller/cacheMem.ts';
|
|
|
316
316
|
export * from '../controller/cacheRedis.ts';
|
|
317
317
|
declare module 'vona-module-a-web' {
|
|
318
318
|
interface IDtoRecord {
|
|
319
|
-
'test-vona:profile': IDtoOptionsProfile
|
|
320
|
-
'test-vona:user': IDtoOptionsUser
|
|
319
|
+
'test-vona:profile': Omit<IDtoOptionsProfile, '_fieldsMore_'>;
|
|
320
|
+
'test-vona:user': Omit<IDtoOptionsUser, '_fieldsMore_'>;
|
|
321
321
|
}
|
|
322
322
|
}
|
|
323
323
|
declare module 'vona-module-test-vona' {
|
|
324
324
|
}
|
|
325
325
|
declare module 'vona-module-test-vona' {
|
|
326
326
|
interface IDtoOptionsProfile {
|
|
327
|
-
fields?: TypeEntityOptionsFields<DtoProfile, IDtoOptionsProfile['
|
|
327
|
+
fields?: TypeEntityOptionsFields<DtoProfile, IDtoOptionsProfile['_fieldsMore_']>;
|
|
328
328
|
}
|
|
329
329
|
interface IDtoOptionsUser {
|
|
330
|
-
fields?: TypeEntityOptionsFields<DtoUser, IDtoOptionsUser['
|
|
330
|
+
fields?: TypeEntityOptionsFields<DtoUser, IDtoOptionsUser['_fieldsMore_']>;
|
|
331
331
|
}
|
|
332
332
|
}
|
|
333
333
|
export * from '../controller/guardPassport.ts';
|