@eggjs/tegg-orm-decorator 1.4.1 → 1.5.0
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.
|
@@ -14,7 +14,7 @@ export interface ModelAttributeInfo {
|
|
|
14
14
|
dataType: string;
|
|
15
15
|
options?: AttributeOptions;
|
|
16
16
|
}
|
|
17
|
-
|
|
17
|
+
type ModelAttributeMap = Map<string, ModelAttributeInfo>;
|
|
18
18
|
export declare class ModelInfoUtil {
|
|
19
19
|
static setIsModel(isModel: boolean, clazz: EggProtoImplClass): void;
|
|
20
20
|
static getIsModel(clazz: EggProtoImplClass): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/tegg-orm-decorator",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "tegg orm decorator",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"node": ">=14.0.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@eggjs/core-decorator": "^1.
|
|
40
|
-
"@eggjs/tegg-common-util": "^1.
|
|
41
|
-
"@eggjs/tegg-metadata": "^1.
|
|
39
|
+
"@eggjs/core-decorator": "^1.4.0",
|
|
40
|
+
"@eggjs/tegg-common-util": "^1.2.0",
|
|
41
|
+
"@eggjs/tegg-metadata": "^1.4.0",
|
|
42
42
|
"lodash": "^4.17.21",
|
|
43
43
|
"pluralize": "^8.0.0"
|
|
44
44
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "6bd085c1c265921d31110811f4d707875dc7acea"
|
|
52
52
|
}
|