@unito/integrations-platform-client 1.1.6 → 1.1.8

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +10 -4
package/README.md CHANGED
@@ -37,7 +37,7 @@ See [oazapfts](https://www.npmjs.com/package/oazapfts) for more information.
37
37
  Install the dependencies:
38
38
 
39
39
  ```sh
40
- npm ci
40
+ npm --no-audit --no-fund ci
41
41
  ```
42
42
 
43
43
  ### Regenerate the library
package/package.json CHANGED
@@ -1,14 +1,20 @@
1
1
  {
2
2
  "name": "@unito/integrations-platform-client",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
4
4
  "description": "The Unito Integrations Platform Client",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
8
8
  "./package.json": "./package.json",
9
9
  ".": {
10
- "import": "./dist/src/index.js",
11
- "require": "./dist/src/index.cjs"
10
+ "import": {
11
+ "types": "./dist/src/index.d.ts",
12
+ "default": "./dist/src/index.js"
13
+ },
14
+ "require": {
15
+ "types": "./dist/src/index.d.ts",
16
+ "default": "./dist/src/index.cjs"
17
+ }
12
18
  }
13
19
  },
14
20
  "files": [
@@ -49,6 +55,6 @@
49
55
  },
50
56
  "dependencies": {
51
57
  "@oazapfts/runtime": "1.x",
52
- "@unito/integration-api": "0.x"
58
+ "@unito/integration-api": "4.x"
53
59
  }
54
60
  }