@eggjs/tegg-orm-decorator 1.4.1 → 1.5.1

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
- declare type ModelAttributeMap = Map<string, ModelAttributeInfo>;
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.4.1",
3
+ "version": "1.5.1",
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.3.0",
40
- "@eggjs/tegg-common-util": "^1.1.1",
41
- "@eggjs/tegg-metadata": "^1.3.0",
39
+ "@eggjs/core-decorator": "^1.4.1",
40
+ "@eggjs/tegg-common-util": "^1.2.1",
41
+ "@eggjs/tegg-metadata": "^1.4.1",
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": "5da127fcf618ed89c4bf1beadc38bb2058f8426b"
51
+ "gitHead": "d5e18b9e9af115d0fe02e3b3190e364244b698ac"
52
52
  }