@pristine-ts/data-mapping-common 1.0.412 → 1.0.416

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.
@@ -95,15 +95,15 @@ export declare class DataMappingBuilder extends BaseDataMappingNode {
95
95
  [x: string]: DataMappingLeaf | DataMappingNode;
96
96
  };
97
97
  normalizers: {
98
- key: string;
98
+ key: DataNormalizerUniqueKey;
99
99
  options: any;
100
100
  }[];
101
101
  beforeMappingInterceptors: {
102
- key: string;
102
+ key: DataMappingInterceptorUniqueKeyType;
103
103
  options: any;
104
104
  }[];
105
105
  afterMappingInterceptors: {
106
- key: string;
106
+ key: DataMappingInterceptorUniqueKeyType;
107
107
  options: any;
108
108
  }[];
109
109
  };
@@ -1,2 +1,10 @@
1
1
  import { TypeFactoryCallback } from "../types/type-factory-callback.type";
2
- export declare const type: (callback: TypeFactoryCallback) => (target: any, propertyKey: string | symbol) => void;
2
+ export declare const type: (callback: TypeFactoryCallback) => (
3
+ /**
4
+ * The class on which the decorator is used.
5
+ */
6
+ target: any,
7
+ /**
8
+ * The property on which the decorator is used.
9
+ */
10
+ propertyKey: string | symbol) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pristine-ts/data-mapping-common",
3
- "version": "1.0.412",
3
+ "version": "1.0.416",
4
4
  "description": "",
5
5
  "module": "dist/lib/esm/data-mapping-common.js",
6
6
  "main": "dist/lib/cjs/data-mapping-common.js",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@pristine-ts/class-validator": "^2.0.4",
24
- "@pristine-ts/common": "^1.0.412",
24
+ "@pristine-ts/common": "^1.0.416",
25
25
  "@pristine-ts/metadata": "^1.0.16",
26
26
  "class-transformer": "^0.5.1",
27
27
  "date-fns": "^3.3.1"
@@ -63,5 +63,5 @@
63
63
  "jest-extended/all"
64
64
  ]
65
65
  },
66
- "gitHead": "18e39eb150db8443fff11c187225d51c425899c2"
66
+ "gitHead": "8b89ec32581da344372c3da63edd87703e0690bf"
67
67
  }