@wix/sdk-types 1.13.16 → 1.13.17

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.
@@ -0,0 +1,7 @@
1
+ import type { Host } from '../src/host-modules.js';
2
+
3
+ declare global {
4
+ interface ContextualClient {
5
+ host: Host;
6
+ }
7
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "types": "client.d.ts",
3
+ "sideEffects": false
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/sdk-types",
3
- "version": "1.13.16",
3
+ "version": "1.13.17",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "Ronny Ringel",
@@ -13,7 +13,8 @@
13
13
  "types": "build/index.d.ts",
14
14
  "files": [
15
15
  "build",
16
- "internal"
16
+ "internal",
17
+ "client"
17
18
  ],
18
19
  "publishConfig": {
19
20
  "registry": "https://registry.npmjs.org/",
@@ -21,7 +22,7 @@
21
22
  },
22
23
  "scripts": {
23
24
  "build": "tsup",
24
- "test": "tsc --noEmit && tsup --config tsup.test.config.ts && vitest run",
25
+ "test": "tsc --noEmit && vitest run",
25
26
  "lint": "eslint --max-warnings=0 .",
26
27
  "typecheck": "tsc --noEmit"
27
28
  },
@@ -30,10 +31,10 @@
30
31
  },
31
32
  "dependencies": {
32
33
  "@wix/monitoring-types": "^0.12.0",
33
- "type-fest": "^4.40.1"
34
+ "type-fest": "^4.41.0"
34
35
  },
35
36
  "devDependencies": {
36
- "@types/node": "^20.17.32",
37
+ "@types/node": "^20.17.46",
37
38
  "eslint": "^8.57.1",
38
39
  "eslint-config-sdk": "0.0.0",
39
40
  "tsup": "^7.3.0",
@@ -60,5 +61,5 @@
60
61
  "wallaby": {
61
62
  "autoDetect": true
62
63
  },
63
- "falconPackageHash": "387a57f5c8cb61f2a227b7b60ee0a58a0f929b26b186b01ec3436e6d"
64
+ "falconPackageHash": "76f9877c5483eb5114d24da7e268a54bb6377d11b99b78f1db119bac"
64
65
  }