ts-serializable 3.0.44 → 3.0.48

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.
@@ -145,6 +145,7 @@ export class Serializable {
145
145
  * @returns {(Object | null | void)}
146
146
  * @memberof Serializable
147
147
  */
148
+ // eslint-disable-next-line @typescript-eslint/max-params
148
149
  deserializeProperty(prop, acceptedTypes, jsonValue, settings) {
149
150
  for (const acceptedType of acceptedTypes) { // Type Symbol is not a property
150
151
  if ( // Null
@@ -1,6 +1,6 @@
1
1
  export declare enum DefaultValueHandling {
2
2
  Include = 0,
3
- Ignore = 1,
4
- Populate = 2,
3
+ Ignore = 1,// Not supported yet
4
+ Populate = 2,// Not supported yet
5
5
  IgnoreAndPopulate = 3
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-serializable",
3
- "version": "3.0.44",
3
+ "version": "3.0.48",
4
4
  "description": "Serialization and deserializtion for classes",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",
@@ -10,14 +10,14 @@
10
10
  "reflect-metadata": ">=0.1.0"
11
11
  },
12
12
  "devDependencies": {
13
- "@labeg/code-style": "^3.0.6",
14
- "@types/chai": "^4.3.5",
15
- "@types/mocha": "^10.0.1",
16
- "chai": "^4.3.8",
13
+ "@labeg/code-style": "^3.0.9",
14
+ "@types/chai": "^4.3.11",
15
+ "@types/mocha": "^10.0.6",
16
+ "chai": "^4.3.10",
17
17
  "mocha": "^10.2.0",
18
18
  "reflect-metadata": "^0.1.13",
19
19
  "ts-node": "^10.9.1",
20
- "typescript": "^5.2.2"
20
+ "typescript": "^5.3.2"
21
21
  },
22
22
  "scripts": {
23
23
  "cs:eslint": "eslint --fix -c .eslintrc.cjs --ext .tsx,.ts,.jsx,.js ./src/ ./tests/",