@rtsee/common 0.0.34 → 0.0.36
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/common/src/interfaces/conference/IConference.d.ts +0 -7
- package/dist/common/src/interfaces/conference/IConference.d.ts.map +1 -1
- package/dist/common/src/interfaces/conference/StorageProcessor.d.ts +2 -3
- package/dist/common/src/interfaces/conference/StorageProcessor.d.ts.map +1 -1
- package/dist/common/src/interfaces/conference/index.d.ts +0 -1
- package/dist/common/src/interfaces/conference/index.d.ts.map +1 -1
- package/dist/common/src/interfaces/conference/index.js +0 -1
- package/dist/common/src/interfaces/conference/index.js.map +1 -1
- package/dist/common/src/interfaces/messenger/Chat.d.ts +2 -0
- package/dist/common/src/interfaces/messenger/Chat.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/common/src/interfaces/conference/Room.d.ts +0 -6
- package/dist/common/src/interfaces/conference/Room.d.ts.map +0 -1
- package/dist/common/src/interfaces/conference/Room.js +0 -3
- package/dist/common/src/interfaces/conference/Room.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IConference.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/conference/IConference.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"IConference.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/conference/IConference.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,IAAI,CAAC;IAChB,MAAM,CAAC,EAAE,IAAI,CAAC;CACf"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { IPeer } from "@rtsee/core";
|
|
2
|
-
import { IRTSeeCall, IRTSeeConferenceRoom } from "@rtsee/common";
|
|
1
|
+
import { IPeer, IRTSeeConferenceRoom, IRTSeeCall } from "@rtsee/core";
|
|
3
2
|
export interface IRTSeeConferenceStorageProcessor {
|
|
4
|
-
createRoom(roomData: IRTSeeConferenceRoom): Promise<IRTSeeConferenceRoom>;
|
|
3
|
+
createRoom(roomData: Omit<IRTSeeConferenceRoom, 'id'>): Promise<IRTSeeConferenceRoom>;
|
|
5
4
|
createCall(peer: IPeer, call: Omit<IRTSeeCall, 'id' | 'members'>): Promise<IRTSeeCall | null>;
|
|
6
5
|
joinCall(peer: IPeer, call: IRTSeeCall): Promise<IRTSeeCall | null>;
|
|
7
6
|
leaveCall(peer: IPeer, call: IRTSeeCall): Promise<IRTSeeCall | null>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StorageProcessor.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/conference/StorageProcessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"StorageProcessor.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/conference/StorageProcessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,oBAAoB,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAEtE,MAAM,WAAW,gCAAgC;IAC/C,UAAU,CACR,QAAQ,EAAE,IAAI,CAAC,oBAAoB,EAAE,IAAI,CAAC,GACzC,OAAO,CAAC,oBAAoB,CAAC,CAAC;IACjC,UAAU,CACR,IAAI,EAAE,KAAK,EACX,IAAI,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,GAAG,SAAS,CAAC,GACvC,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;IAC9B,QAAQ,CACN,IAAI,EAAE,KAAK,EACX,IAAI,EAAE,UAAU,GACf,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;IAC9B,SAAS,CACP,IAAI,EAAE,KAAK,EACX,IAAI,EAAE,UAAU,GACf,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;IAC9B,OAAO,CACL,IAAI,EAAE,KAAK,EACX,IAAI,EAAE,UAAU,GACf,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;CAC/B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/conference/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/conference/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC"}
|
|
@@ -17,5 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./ConferenceSignals"), exports);
|
|
18
18
|
__exportStar(require("./IConference"), exports);
|
|
19
19
|
__exportStar(require("./StorageProcessor"), exports);
|
|
20
|
-
__exportStar(require("./Room"), exports);
|
|
21
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/interfaces/conference/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,gDAA8B;AAC9B,qDAAmC
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/interfaces/conference/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,gDAA8B;AAC9B,qDAAmC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IRTSeeMessageBase, IRTSeeMessengerSignalingClient, RTSeeChatTypes } from "@rtsee/common";
|
|
2
2
|
import { IRTSeeChatMemberBase } from "./ChatMember";
|
|
3
|
+
import { IRTSeeConferenceRoom } from "@rtsee/core";
|
|
3
4
|
export interface IRTSeeChatBase {
|
|
4
5
|
id: string;
|
|
5
6
|
type: RTSeeChatTypes;
|
|
@@ -7,6 +8,7 @@ export interface IRTSeeChatBase {
|
|
|
7
8
|
isPreset?: boolean;
|
|
8
9
|
name?: string;
|
|
9
10
|
imageUrl?: string;
|
|
11
|
+
conferenceRoom?: IRTSeeConferenceRoom;
|
|
10
12
|
lastMessageTime?: Date;
|
|
11
13
|
createdAt?: Date;
|
|
12
14
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Chat.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/Chat.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,8BAA8B,EAC9B,cAAc,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"Chat.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/Chat.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,8BAA8B,EAC9B,cAAc,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAEnD,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,cAAc,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,oBAAoB,CAAC;IACtC,eAAe,CAAC,EAAE,IAAI,CAAC;IACvB,SAAS,CAAC,EAAE,IAAI,CAAC;CAClB;AAED,MAAM,WAAW,UAAW,SAAQ,IAAI,CAAC,cAAc,EAAE,WAAW,CAAC;IACnE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,8BAA8B,CAAC;IACjD,OAAO,EAAE,oBAAoB,CAAC;IAC9B,OAAO,EAAE,oBAAoB,EAAE,CAAC;IAChC,QAAQ,EAAE,iBAAiB,EAAE,CAAC;IAC9B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rtsee/common",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.36",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/common/src/index",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "785ce4b3f963ce334f767dc6499b9e029c5a28c2"
|
|
35
35
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Room.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/conference/Room.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB,CAAC,CAAC,GAAG,GAAG;IAC3C,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,CAAC,CAAC;CACV"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Room.js","sourceRoot":"","sources":["../../../../../src/interfaces/conference/Room.ts"],"names":[],"mappings":""}
|