@bloqz/relay 1.1.3 → 1.2.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.
Files changed (2) hide show
  1. package/dist/models.d.ts +1 -0
  2. package/package.json +2 -2
package/dist/models.d.ts CHANGED
@@ -8,6 +8,7 @@
8
8
  */
9
9
  export type RelayEvent = {
10
10
  readonly type: string;
11
+ readonly [key: string]: any;
11
12
  };
12
13
  /**
13
14
  * A handler function that receives the topic and event for a matched subscription.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloqz/relay",
3
- "version": "1.1.3",
3
+ "version": "1.2.0",
4
4
  "description": "A package for enabling inter-bloc communication using an event relay system.",
5
5
  "keywords": [
6
6
  "bloc",
@@ -39,7 +39,7 @@
39
39
  "rxjs": "^7.8.2"
40
40
  },
41
41
  "peerDependencies": {
42
- "@bloqz/core": "1.1.3"
42
+ "@bloqz/core": "^1.2.0"
43
43
  },
44
44
  "devDependencies": {},
45
45
  "scripts": {