vona-module-a-version 5.0.13 → 5.0.14
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.
|
@@ -45,9 +45,9 @@ export * from '../bean/meta.version.ts';
|
|
|
45
45
|
export * from '../bean/startup.databaseInit.ts';
|
|
46
46
|
declare module 'vona-module-a-database' {
|
|
47
47
|
interface IEntityRecord {
|
|
48
|
-
'a-version:version': IEntityOptionsVersion
|
|
49
|
-
'a-version:versionInit': IEntityOptionsVersionInit
|
|
50
|
-
'a-version:viewRecord': IEntityOptionsViewRecord
|
|
48
|
+
'a-version:version': Omit<IEntityOptionsVersion, '_fieldsMore_'>;
|
|
49
|
+
'a-version:versionInit': Omit<IEntityOptionsVersionInit, '_fieldsMore_'>;
|
|
50
|
+
'a-version:viewRecord': Omit<IEntityOptionsViewRecord, '_fieldsMore_'>;
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
declare module 'vona-module-a-version' {
|
|
@@ -76,13 +76,13 @@ declare module 'vona-module-a-version' {
|
|
|
76
76
|
$columns: <K extends keyof Omit<EntityViewRecord, '$column' | '$columns' | '$table'>>(...columns: K[]) => K[];
|
|
77
77
|
}
|
|
78
78
|
interface IEntityOptionsVersion {
|
|
79
|
-
fields?: TypeEntityOptionsFields<EntityVersion, IEntityOptionsVersion['
|
|
79
|
+
fields?: TypeEntityOptionsFields<EntityVersion, IEntityOptionsVersion['_fieldsMore_']>;
|
|
80
80
|
}
|
|
81
81
|
interface IEntityOptionsVersionInit {
|
|
82
|
-
fields?: TypeEntityOptionsFields<EntityVersionInit, IEntityOptionsVersionInit['
|
|
82
|
+
fields?: TypeEntityOptionsFields<EntityVersionInit, IEntityOptionsVersionInit['_fieldsMore_']>;
|
|
83
83
|
}
|
|
84
84
|
interface IEntityOptionsViewRecord {
|
|
85
|
-
fields?: TypeEntityOptionsFields<EntityViewRecord, IEntityOptionsViewRecord['
|
|
85
|
+
fields?: TypeEntityOptionsFields<EntityViewRecord, IEntityOptionsViewRecord['_fieldsMore_']>;
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
export * from '../bean/startup.databaseName.ts';
|