@rtsee/core 0.0.39 → 0.0.40

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.
@@ -2,6 +2,7 @@ export interface IPeerInfo {
2
2
  name?: string;
3
3
  imageUrl?: string;
4
4
  url?: string;
5
+ sessionId?: string;
5
6
  }
6
7
  export interface IPeer extends IPeerInfo {
7
8
  clientId: string;
@@ -1 +1 @@
1
- {"version":3,"file":"Peer.d.ts","sourceRoot":"","sources":["../../src/interfaces/Peer.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,SAAS;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,KAAM,SAAQ,SAAS;IACtC,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB"}
1
+ {"version":3,"file":"Peer.d.ts","sourceRoot":"","sources":["../../src/interfaces/Peer.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,SAAS;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,KAAM,SAAQ,SAAS;IACtC,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtsee/core",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "license": "ISC",
5
5
  "private": false,
6
6
  "main": "dist/index",
@@ -18,6 +18,7 @@
18
18
  "clean": "rm -rf ./dist",
19
19
  "build": "yarn clean && yarn compile",
20
20
  "compile": "tsc -p tsconfig.json",
21
+ "watch": "tsc -p tsconfig.json --watch",
21
22
  "lint-file:eslint": "yarn eslint",
22
23
  "lint-file:prettier": "yarn prettier --check",
23
24
  "lint:eslint": "yarn lint-file:eslint 'src/**/*.ts'",
@@ -44,5 +45,5 @@
44
45
  "publishConfig": {
45
46
  "access": "public"
46
47
  },
47
- "gitHead": "e13d78be9ac59eaad92473f750234831ae66b246"
48
+ "gitHead": "1b63380ca99abfb7597eb27c0368f1222c983b27"
48
49
  }