@cloudize/sdk-core 23.2.5 → 23.3.2

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.
@@ -264,7 +264,7 @@ class ResourceObject {
264
264
  obj.data.relationships = this.SerializeRelationshipsPayload(undefined, this.relationships);
265
265
  }
266
266
  (0, json_1.redactUndefinedValues)(obj);
267
- return obj;
267
+ return JSON.parse(JSON.stringify(obj));
268
268
  }
269
269
  get type() {
270
270
  throw new Error('Method or Property not implemented.');
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  ],
14
14
  "description": "Cloudize SDK Core",
15
15
  "license": "MIT",
16
- "version": "23.2.5",
16
+ "version": "23.3.2",
17
17
  "main": "lib/index.js",
18
18
  "types": "lib/index.d.ts",
19
19
  "scripts": {
@@ -33,26 +33,26 @@
33
33
  "test:watch": "jest --watch"
34
34
  },
35
35
  "dependencies": {
36
- "@cloudize/json": "23.2.3",
37
- "@cloudize/rest-client": "23.2.3",
36
+ "@cloudize/json": "23.3.2",
37
+ "@cloudize/rest-client": "23.3.2",
38
38
  "object-hash": "3.0.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/date-and-time": "0.13.0",
42
- "@types/jest": "29.5.2",
43
- "@types/node": "20.3.1",
44
- "@typescript-eslint/eslint-plugin": "5.60.0",
45
- "@typescript-eslint/parser": "5.60.0",
46
- "date-and-time": "3.0.2",
47
- "eslint": "8.43.0",
42
+ "@types/jest": "29.5.5",
43
+ "@types/node": "20.8.2",
44
+ "@typescript-eslint/eslint-plugin": "6.7.4",
45
+ "@typescript-eslint/parser": "6.7.4",
46
+ "date-and-time": "3.0.3",
47
+ "eslint": "8.50.0",
48
48
  "eslint-config-airbnb": "19.0.4",
49
- "eslint-plugin-import": "2.27.5",
49
+ "eslint-plugin-import": "2.28.1",
50
50
  "eslint-plugin-jsx-a11y": "6.7.1",
51
- "eslint-plugin-react": "7.32.2",
51
+ "eslint-plugin-react": "7.33.2",
52
52
  "eslint-plugin-react-hooks": "4.6.0",
53
- "jest": "29.5.0",
54
- "ts-jest": "29.1.0",
55
- "typescript": "5.1.3"
53
+ "jest": "29.7.0",
54
+ "ts-jest": "29.1.1",
55
+ "typescript": "5.2.2"
56
56
  },
57
57
  "eslintConfig": {},
58
58
  "repository": {
@@ -0,0 +1,28 @@
1
+ {
2
+ "compilerOptions": {
3
+ "allowJs": true,
4
+ "declaration": true,
5
+ "emitDecoratorMetadata": true,
6
+ "esModuleInterop": true,
7
+ "experimentalDecorators": true,
8
+ "lib": [
9
+ "es2015",
10
+ "es2016",
11
+ "es2017"
12
+ ],
13
+ "module": "CommonJS",
14
+ "moduleResolution": "node",
15
+ "noImplicitAny": true,
16
+ "noImplicitThis": true,
17
+ "outDir": "./lib",
18
+ "removeComments": true,
19
+ "strict": true,
20
+ "strictNullChecks": false,
21
+ "target": "ES6",
22
+ "typeRoots": [ "node_modules/@types" ]
23
+ },
24
+ "include": [
25
+ "src",
26
+ "tests"
27
+ ]
28
+ }