@zerotal/broadcasting 1.7.3 → 1.7.4

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/api-surface.md +1 -1
  2. package/package.json +2 -2
package/api-surface.md CHANGED
@@ -266,7 +266,7 @@ interface WsConnectionData = {
266
266
  userId?: string | number
267
267
  }
268
268
 
269
- type AuthorizeResult = { matched: false;} | { matched: true; result: boolean | PresenceMemberData | null | undefined;}
269
+ type AuthorizeResult = { matched: false } | { matched: true; result: boolean | PresenceMemberData | null | undefined }
270
270
 
271
271
  type BroadcastChannelMap = { [x: string]: Record<string, object>;}
272
272
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zerotal/broadcasting",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "license": "MIT",
5
5
  "maturity": "stable",
6
6
  "private": false,
@@ -30,7 +30,7 @@
30
30
  "typecheck": "tsc --noEmit"
31
31
  },
32
32
  "dependencies": {
33
- "@zerotal/core": "1.7.3"
33
+ "@zerotal/core": "1.7.4"
34
34
  },
35
35
  "devDependencies": {
36
36
  "typescript": "^5.8.0"