@inditextech/weave-store-azure-web-pubsub 0.76.3 → 1.0.0

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.
package/dist/server.js CHANGED
@@ -18710,7 +18710,7 @@ var require_response = __commonJS({ "../../node_modules/koa/lib/response.js"(exp
18710
18710
  this.redirect(alt || "/");
18711
18711
  },
18712
18712
  attachment(filename, options) {
18713
- if (filename) this.type = extname(filename);
18713
+ if (filename && !this.has("Content-Type")) this.type = extname(filename);
18714
18714
  this.set("Content-Disposition", contentDisposition(filename, options));
18715
18715
  },
18716
18716
  set type(type) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inditextech/weave-store-azure-web-pubsub",
3
- "version": "0.76.3",
3
+ "version": "1.0.0",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Jesus Manuel Piñeiro Cid <jesusmpc@inditex.com>",
@@ -15,14 +15,15 @@
15
15
  "exports": {
16
16
  "./client": {
17
17
  "import": "./dist/client.js",
18
- "require": "./dist/client.cjs"
18
+ "require": "./dist/client.cjs",
19
+ "types": "./dist/client.d.ts"
19
20
  },
20
21
  "./server": {
21
22
  "import": "./dist/server.js",
22
- "require": "./dist/server.cjs"
23
+ "require": "./dist/server.cjs",
24
+ "types": "./dist/server.d.ts"
23
25
  }
24
26
  },
25
- "types": "dist/store-azure-web-pubsub.d.ts",
26
27
  "files": [
27
28
  "dist"
28
29
  ],
@@ -40,6 +41,7 @@
40
41
  "link": "npm link",
41
42
  "lint:fix": "npm run lint -- --fix",
42
43
  "lint": "eslint ./src",
44
+ "pack": "npm pack",
43
45
  "publish:snapshot": "npm publish",
44
46
  "release:perform": "npm publish --access public",
45
47
  "release:prepare": "npm run verify",
@@ -54,14 +56,14 @@
54
56
  "@azure/web-pubsub": "1.2.0",
55
57
  "@syncedstore/core": "0.6.0",
56
58
  "buffer": "6.0.3",
57
- "konva": "9.3.20",
59
+ "konva": "10.0.2",
58
60
  "reconnecting-websocket": "4.4.0",
59
61
  "uuid": "11.1.0",
60
62
  "ws": "8.18.1",
61
63
  "yjs": "13.6.27"
62
64
  },
63
65
  "devDependencies": {
64
- "@inditextech/weave-sdk": "0.76.3",
66
+ "@inditextech/weave-sdk": "1.0.0",
65
67
  "@koa/cors": "^5.0.0",
66
68
  "@types/express": "^5.0.1",
67
69
  "@types/ioredis": "^4.28.10",