vona-module-a-version 5.0.12 → 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' {
|
|
@@ -61,25 +61,28 @@ export interface IModuleEntity {
|
|
|
61
61
|
/** entity: begin */
|
|
62
62
|
declare module 'vona-module-a-version' {
|
|
63
63
|
interface EntityVersion {
|
|
64
|
+
get $table(): 'aVersion';
|
|
64
65
|
$column: <K extends keyof Omit<EntityVersion, '$column' | '$columns' | '$table'>>(column: K) => K;
|
|
65
66
|
$columns: <K extends keyof Omit<EntityVersion, '$column' | '$columns' | '$table'>>(...columns: K[]) => K[];
|
|
66
67
|
}
|
|
67
68
|
interface EntityVersionInit {
|
|
69
|
+
get $table(): 'aVersionInit';
|
|
68
70
|
$column: <K extends keyof Omit<EntityVersionInit, '$column' | '$columns' | '$table'>>(column: K) => K;
|
|
69
71
|
$columns: <K extends keyof Omit<EntityVersionInit, '$column' | '$columns' | '$table'>>(...columns: K[]) => K[];
|
|
70
72
|
}
|
|
71
73
|
interface EntityViewRecord {
|
|
74
|
+
get $table(): 'aViewRecord';
|
|
72
75
|
$column: <K extends keyof Omit<EntityViewRecord, '$column' | '$columns' | '$table'>>(column: K) => K;
|
|
73
76
|
$columns: <K extends keyof Omit<EntityViewRecord, '$column' | '$columns' | '$table'>>(...columns: K[]) => K[];
|
|
74
77
|
}
|
|
75
78
|
interface IEntityOptionsVersion {
|
|
76
|
-
fields?: TypeEntityOptionsFields<EntityVersion, IEntityOptionsVersion['
|
|
79
|
+
fields?: TypeEntityOptionsFields<EntityVersion, IEntityOptionsVersion['_fieldsMore_']>;
|
|
77
80
|
}
|
|
78
81
|
interface IEntityOptionsVersionInit {
|
|
79
|
-
fields?: TypeEntityOptionsFields<EntityVersionInit, IEntityOptionsVersionInit['
|
|
82
|
+
fields?: TypeEntityOptionsFields<EntityVersionInit, IEntityOptionsVersionInit['_fieldsMore_']>;
|
|
80
83
|
}
|
|
81
84
|
interface IEntityOptionsViewRecord {
|
|
82
|
-
fields?: TypeEntityOptionsFields<EntityViewRecord, IEntityOptionsViewRecord['
|
|
85
|
+
fields?: TypeEntityOptionsFields<EntityViewRecord, IEntityOptionsViewRecord['_fieldsMore_']>;
|
|
83
86
|
}
|
|
84
87
|
}
|
|
85
88
|
export * from '../bean/startup.databaseName.ts';
|