@rtsee/common 0.0.41 → 0.0.45
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 +1 -0
- package/dist/common/src/interfaces/conference/IConference.d.ts.map +1 -1
- package/dist/common/src/interfaces/conference/StorageProcessor.d.ts +6 -6
- package/dist/common/src/interfaces/conference/StorageProcessor.d.ts.map +1 -1
- package/dist/common/src/interfaces/events-manager/Client.d.ts +1 -0
- package/dist/common/src/interfaces/events-manager/Client.d.ts.map +1 -1
- package/dist/common/src/interfaces/events-manager/ClientSession.d.ts +1 -0
- package/dist/common/src/interfaces/events-manager/ClientSession.d.ts.map +1 -1
- package/dist/common/src/interfaces/events-manager/DashboardClient.d.ts +1 -0
- package/dist/common/src/interfaces/events-manager/DashboardClient.d.ts.map +1 -1
- package/dist/common/src/interfaces/events-manager/DashboardClientSessionOptions.d.ts +1 -0
- package/dist/common/src/interfaces/events-manager/DashboardClientSessionOptions.d.ts.map +1 -1
- package/dist/common/src/interfaces/events-manager/DashboardEvent.d.ts +1 -0
- package/dist/common/src/interfaces/events-manager/DashboardEvent.d.ts.map +1 -1
- package/dist/common/src/interfaces/events-manager/StorageProcessor.d.ts +8 -8
- package/dist/common/src/interfaces/events-manager/StorageProcessor.d.ts.map +1 -1
- package/dist/common/src/interfaces/messenger/RTSeeMessengerEvents.d.ts +22 -0
- package/dist/common/src/interfaces/messenger/RTSeeMessengerEvents.d.ts.map +1 -0
- package/dist/common/src/interfaces/messenger/RTSeeMessengerEvents.js +26 -0
- package/dist/common/src/interfaces/messenger/RTSeeMessengerEvents.js.map +1 -0
- package/dist/common/src/interfaces/messenger/StorageHandlers.d.ts +13 -11
- package/dist/common/src/interfaces/messenger/StorageHandlers.d.ts.map +1 -1
- package/dist/common/src/interfaces/messenger/index.d.ts +1 -2
- package/dist/common/src/interfaces/messenger/index.d.ts.map +1 -1
- package/dist/common/src/interfaces/messenger/index.js +1 -2
- package/dist/common/src/interfaces/messenger/index.js.map +1 -1
- package/dist/common/src/interfaces/presentation/PresentationStorageHandlers.d.ts +28 -27
- package/dist/common/src/interfaces/presentation/PresentationStorageHandlers.d.ts.map +1 -1
- package/dist/common/src/interfaces/presentation/Room.d.ts +1 -0
- package/dist/common/src/interfaces/presentation/Room.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/common/src/interfaces/messenger/ChatPeers.d.ts +0 -6
- package/dist/common/src/interfaces/messenger/ChatPeers.d.ts.map +0 -1
- package/dist/common/src/interfaces/messenger/ChatPeers.js +0 -3
- package/dist/common/src/interfaces/messenger/ChatPeers.js.map +0 -1
- package/dist/common/src/interfaces/messenger/Peer.d.ts +0 -5
- package/dist/common/src/interfaces/messenger/Peer.d.ts.map +0 -1
- package/dist/common/src/interfaces/messenger/Peer.js +0 -3
- package/dist/common/src/interfaces/messenger/Peer.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
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
|
+
{"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,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,IAAI,CAAC;IAChB,MAAM,CAAC,EAAE,IAAI,CAAC;CACf"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IRTSeeConferenceRoom, IRTSeeCall, IRTSeeTransport } from "@rtsee/core";
|
|
2
2
|
export interface IRTSeeConferenceStorageProcessor {
|
|
3
|
-
createRoom(roomData: Omit<IRTSeeConferenceRoom, 'id'>): Promise<IRTSeeConferenceRoom>;
|
|
4
|
-
createCall(
|
|
5
|
-
joinCall(
|
|
6
|
-
leaveCall(
|
|
7
|
-
endCall(
|
|
3
|
+
createRoom(transport: IRTSeeTransport, roomData: Omit<IRTSeeConferenceRoom, 'id'>): Promise<IRTSeeConferenceRoom>;
|
|
4
|
+
createCall(transport: IRTSeeTransport, call: Omit<IRTSeeCall, 'id' | 'members'>): Promise<IRTSeeCall | null>;
|
|
5
|
+
joinCall(transport: IRTSeeTransport, call: IRTSeeCall): Promise<IRTSeeCall | null>;
|
|
6
|
+
leaveCall(transport: IRTSeeTransport, call: IRTSeeCall): Promise<IRTSeeCall | null>;
|
|
7
|
+
endCall(transport: IRTSeeTransport, call: IRTSeeCall): Promise<IRTSeeCall | null>;
|
|
8
8
|
}
|
|
9
9
|
//# sourceMappingURL=StorageProcessor.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StorageProcessor.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/conference/StorageProcessor.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"StorageProcessor.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/conference/StorageProcessor.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,EACpB,UAAU,EACV,eAAe,EAChB,MAAM,aAAa,CAAC;AAErB,MAAM,WAAW,gCAAgC;IAC/C,UAAU,CACR,SAAS,EAAE,eAAe,EAC1B,QAAQ,EAAE,IAAI,CAAC,oBAAoB,EAAE,IAAI,CAAC,GACzC,OAAO,CAAC,oBAAoB,CAAC,CAAC;IACjC,UAAU,CACR,SAAS,EAAE,eAAe,EAC1B,IAAI,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,GAAG,SAAS,CAAC,GACvC,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;IAC9B,QAAQ,CACN,SAAS,EAAE,eAAe,EAC1B,IAAI,EAAE,UAAU,GACf,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;IAE9B,SAAS,CACP,SAAS,EAAE,eAAe,EAC1B,IAAI,EAAE,UAAU,GACf,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;IAC9B,OAAO,CACL,SAAS,EAAE,eAAe,EAC1B,IAAI,EAAE,UAAU,GACf,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;CAC/B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Client.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/Client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,MAAM,WAAW,yBAA0B,SAAQ,SAAS;IAC1D,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB"}
|
|
1
|
+
{"version":3,"file":"Client.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/Client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,MAAM,WAAW,yBAA0B,SAAQ,SAAS;IAC1D,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClientSession.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/ClientSession.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AAE7E,MAAM,WAAW,gCAAgC;IAC/C,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,MAAM,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAChC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,CAAC,EAAE,sBAAsB,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB"}
|
|
1
|
+
{"version":3,"file":"ClientSession.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/ClientSession.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AAE7E,MAAM,WAAW,gCAAgC;IAC/C,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,MAAM,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAChC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,CAAC,EAAE,sBAAsB,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB"}
|
|
@@ -2,6 +2,7 @@ import { IPeerInfo } from "@rtsee/core";
|
|
|
2
2
|
import { IRTSeeDashboardClientSessionOptions } from "@rtsee/common";
|
|
3
3
|
export interface IRTSeeDashboardClient extends IPeerInfo {
|
|
4
4
|
id: string;
|
|
5
|
+
rtseeAppId: string;
|
|
5
6
|
isAnonymous?: boolean;
|
|
6
7
|
connectedAt: Date;
|
|
7
8
|
sessions?: IRTSeeDashboardClientSessionOptions[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DashboardClient.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/DashboardClient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,mCAAmC,EAAE,MAAM,eAAe,CAAC;AAEpE,MAAM,WAAW,qBAAsB,SAAQ,SAAS;IACtD,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,WAAW,EAAE,IAAI,CAAC;IAClB,QAAQ,CAAC,EAAE,mCAAmC,EAAE,CAAC;CAClD"}
|
|
1
|
+
{"version":3,"file":"DashboardClient.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/DashboardClient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,mCAAmC,EAAE,MAAM,eAAe,CAAC;AAEpE,MAAM,WAAW,qBAAsB,SAAQ,SAAS;IACtD,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,WAAW,EAAE,IAAI,CAAC;IAClB,QAAQ,CAAC,EAAE,mCAAmC,EAAE,CAAC;CAClD"}
|
|
@@ -2,6 +2,7 @@ import { IDeviceDetectionResult, IRTSeeDashboardEvent } from "@rtsee/common";
|
|
|
2
2
|
export interface IRTSeeDashboardClientSessionOptions {
|
|
3
3
|
id: string;
|
|
4
4
|
clientId: string;
|
|
5
|
+
rtseeAppId?: string;
|
|
5
6
|
connectedAt?: Date;
|
|
6
7
|
agent?: IDeviceDetectionResult;
|
|
7
8
|
events?: IRTSeeDashboardEvent[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DashboardClientSessionOptions.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/DashboardClientSessionOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AAE7E,MAAM,WAAW,mCAAmC;IAClD,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,KAAK,CAAC,EAAE,sBAAsB,CAAC;IAC/B,MAAM,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAChC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB"}
|
|
1
|
+
{"version":3,"file":"DashboardClientSessionOptions.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/DashboardClientSessionOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AAE7E,MAAM,WAAW,mCAAmC;IAClD,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,KAAK,CAAC,EAAE,sBAAsB,CAAC;IAC/B,MAAM,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAChC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DashboardEvent.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/DashboardEvent.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB,CAAC,CAAC,GAAG,GAAG;IAC3C,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,CAAC,CAAC;CACV"}
|
|
1
|
+
{"version":3,"file":"DashboardEvent.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/DashboardEvent.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB,CAAC,CAAC,GAAG,GAAG;IAC3C,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,CAAC,CAAC;CACV"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IDeviceDetectionResult, IRTSeeDashboardClient, IRTSeeDashboardEvent, IRTSeeEventsManagerClient, IRTSeeEventsManagerClientSession } from "@rtsee/common";
|
|
2
|
-
import {
|
|
2
|
+
import { IRTSeeTransport } from "@rtsee/core";
|
|
3
3
|
export interface IRTSeeEventsManagerSessionCreateResult {
|
|
4
4
|
session: IRTSeeEventsManagerClientSession;
|
|
5
5
|
client: IRTSeeEventsManagerClient;
|
|
@@ -11,12 +11,12 @@ export interface IRTSeeEventsManagerSessionEndResult {
|
|
|
11
11
|
hasRemainingSessions: boolean;
|
|
12
12
|
}
|
|
13
13
|
export interface IRTSeeEventsManagerStorageProcessor {
|
|
14
|
-
createSession(
|
|
15
|
-
endSession(
|
|
16
|
-
processEvent(
|
|
17
|
-
addSessionAgent(clientId: string, sessionId: string, agent: IDeviceDetectionResult): Promise<IRTSeeEventsManagerClientSession | null>;
|
|
18
|
-
getClientsData(skipClientId: string): Promise<IRTSeeDashboardClient[]>;
|
|
19
|
-
getSession(clientId: string, sessionId: string): Promise<IRTSeeEventsManagerClientSession | null>;
|
|
20
|
-
getClientById(id: string): Promise<IRTSeeEventsManagerClient | null>;
|
|
14
|
+
createSession(transport: IRTSeeTransport): Promise<IRTSeeEventsManagerSessionCreateResult | null>;
|
|
15
|
+
endSession(transport: IRTSeeTransport): Promise<IRTSeeEventsManagerSessionEndResult | null>;
|
|
16
|
+
processEvent(transport: IRTSeeTransport, eventOptions: IRTSeeDashboardEvent): Promise<IRTSeeDashboardEvent | null>;
|
|
17
|
+
addSessionAgent(transport: IRTSeeTransport, clientId: string, sessionId: string, agent: IDeviceDetectionResult): Promise<IRTSeeEventsManagerClientSession | null>;
|
|
18
|
+
getClientsData(transport: IRTSeeTransport, skipClientId: string): Promise<IRTSeeDashboardClient[]>;
|
|
19
|
+
getSession(transport: IRTSeeTransport, clientId: string, sessionId: string): Promise<IRTSeeEventsManagerClientSession | null>;
|
|
20
|
+
getClientById(transport: IRTSeeTransport, id: string): Promise<IRTSeeEventsManagerClient | null>;
|
|
21
21
|
}
|
|
22
22
|
//# sourceMappingURL=StorageProcessor.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StorageProcessor.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/StorageProcessor.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,sBAAsB,EACtB,qBAAqB,EACrB,oBAAoB,EACpB,yBAAyB,EACzB,gCAAgC,EACjC,MAAM,eAAe,CAAC;AACvB,OAAO,
|
|
1
|
+
{"version":3,"file":"StorageProcessor.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/events-manager/StorageProcessor.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,sBAAsB,EACtB,qBAAqB,EACrB,oBAAoB,EACpB,yBAAyB,EACzB,gCAAgC,EACjC,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,eAAe,EAAc,MAAM,aAAa,CAAC;AAEzD,MAAM,WAAW,sCAAsC;IACrD,OAAO,EAAE,gCAAgC,CAAC;IAC1C,MAAM,EAAE,yBAAyB,CAAC;IAClC,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,mCAAmC;IAClD,OAAO,EAAE,gCAAgC,CAAC;IAC1C,MAAM,EAAE,yBAAyB,CAAC;IAClC,oBAAoB,EAAE,OAAO,CAAC;CAC/B;AAED,MAAM,WAAW,mCAAmC;IAClD,aAAa,CACX,SAAS,EAAE,eAAe,GACzB,OAAO,CAAC,sCAAsC,GAAG,IAAI,CAAC,CAAC;IAC1D,UAAU,CACR,SAAS,EAAE,eAAe,GACzB,OAAO,CAAC,mCAAmC,GAAG,IAAI,CAAC,CAAC;IACvD,YAAY,CACV,SAAS,EAAE,eAAe,EAC1B,YAAY,EAAE,oBAAoB,GACjC,OAAO,CAAC,oBAAoB,GAAG,IAAI,CAAC,CAAC;IACxC,eAAe,CACb,SAAS,EAAE,eAAe,EAC1B,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,sBAAsB,GAC5B,OAAO,CAAC,gCAAgC,GAAG,IAAI,CAAC,CAAC;IACpD,cAAc,CACZ,SAAS,EAAE,eAAe,EAC1B,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC,qBAAqB,EAAE,CAAC,CAAC;IACpC,UAAU,CACR,SAAS,EAAE,eAAe,EAC1B,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,GAChB,OAAO,CAAC,gCAAgC,GAAG,IAAI,CAAC,CAAC;IACpD,aAAa,CACX,SAAS,EAAE,eAAe,EAC1B,EAAE,EAAE,MAAM,GACT,OAAO,CAAC,yBAAyB,GAAG,IAAI,CAAC,CAAC;CAC9C"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare enum RTSeeMessengerEvents {
|
|
2
|
+
INCOMING_MESSAGE = "rtsee-incoming-message",
|
|
3
|
+
OUTGOING_MESSAGE = "rtsee-outgoing-message",
|
|
4
|
+
INCOMING_MESSAGES_SEEN = "rtsee-incoming-message-seen",
|
|
5
|
+
OUTGOING_MESSAGES_SEEN = "rtsee-outgoing-message-seen",
|
|
6
|
+
CREATE_CHAT_ATTEMPT_SUCCEED = "rtsee-create-chat-attempt-succeed",
|
|
7
|
+
CREATE_CHAT_ATTEMPT_FAILED = "rtsee-create-chat-attempt-failed",
|
|
8
|
+
GET_CHAT = "rtsee-get-chat",
|
|
9
|
+
GET_CHATS = "rtsee-get-chats",
|
|
10
|
+
SEARCH = "rtsee-messenger-search",
|
|
11
|
+
SEARCH_SUCCESS = "rtsee-messenger-search-success",
|
|
12
|
+
CREATE_CHAT = "rtsee-create-chat",
|
|
13
|
+
GET_MESSAGES = "rtsee-get-messages",
|
|
14
|
+
CHAT_FETCHED = "rtsee-chat-fetched",
|
|
15
|
+
CHATS_FETCHED = "rtsee-chats-fetched",
|
|
16
|
+
MESSAGES_FETCHED = "rtsee-messages-fetched",
|
|
17
|
+
MESSAGE_SEND_SUCCEED = "message-send-succeed",
|
|
18
|
+
MESSAGE_RECEIVED = "message-received",
|
|
19
|
+
GET_PEER = "rtsee-get-peer",
|
|
20
|
+
OWN_PROFILE_CLOSED = "rtsee-own-profile-closed"
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=RTSeeMessengerEvents.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RTSeeMessengerEvents.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/RTSeeMessengerEvents.ts"],"names":[],"mappings":"AAAA,oBAAY,oBAAoB;IAC9B,gBAAgB,2BAA2B;IAC3C,gBAAgB,2BAA2B;IAC3C,sBAAsB,gCAAgC;IACtD,sBAAsB,gCAAgC;IACtD,2BAA2B,sCAAsC;IACjE,0BAA0B,qCAAqC;IAC/D,QAAQ,mBAAmB;IAC3B,SAAS,oBAAoB;IAC7B,MAAM,2BAA2B;IACjC,cAAc,mCAAmC;IACjD,WAAW,sBAAsB;IACjC,YAAY,uBAAuB;IACnC,YAAY,uBAAuB;IACnC,aAAa,wBAAwB;IACrC,gBAAgB,2BAA2B;IAC3C,oBAAoB,yBAAyB;IAC7C,gBAAgB,qBAAqB;IACrC,QAAQ,mBAAmB;IAC3B,kBAAkB,6BAA6B;CAChD"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RTSeeMessengerEvents = void 0;
|
|
4
|
+
var RTSeeMessengerEvents;
|
|
5
|
+
(function (RTSeeMessengerEvents) {
|
|
6
|
+
RTSeeMessengerEvents["INCOMING_MESSAGE"] = "rtsee-incoming-message";
|
|
7
|
+
RTSeeMessengerEvents["OUTGOING_MESSAGE"] = "rtsee-outgoing-message";
|
|
8
|
+
RTSeeMessengerEvents["INCOMING_MESSAGES_SEEN"] = "rtsee-incoming-message-seen";
|
|
9
|
+
RTSeeMessengerEvents["OUTGOING_MESSAGES_SEEN"] = "rtsee-outgoing-message-seen";
|
|
10
|
+
RTSeeMessengerEvents["CREATE_CHAT_ATTEMPT_SUCCEED"] = "rtsee-create-chat-attempt-succeed";
|
|
11
|
+
RTSeeMessengerEvents["CREATE_CHAT_ATTEMPT_FAILED"] = "rtsee-create-chat-attempt-failed";
|
|
12
|
+
RTSeeMessengerEvents["GET_CHAT"] = "rtsee-get-chat";
|
|
13
|
+
RTSeeMessengerEvents["GET_CHATS"] = "rtsee-get-chats";
|
|
14
|
+
RTSeeMessengerEvents["SEARCH"] = "rtsee-messenger-search";
|
|
15
|
+
RTSeeMessengerEvents["SEARCH_SUCCESS"] = "rtsee-messenger-search-success";
|
|
16
|
+
RTSeeMessengerEvents["CREATE_CHAT"] = "rtsee-create-chat";
|
|
17
|
+
RTSeeMessengerEvents["GET_MESSAGES"] = "rtsee-get-messages";
|
|
18
|
+
RTSeeMessengerEvents["CHAT_FETCHED"] = "rtsee-chat-fetched";
|
|
19
|
+
RTSeeMessengerEvents["CHATS_FETCHED"] = "rtsee-chats-fetched";
|
|
20
|
+
RTSeeMessengerEvents["MESSAGES_FETCHED"] = "rtsee-messages-fetched";
|
|
21
|
+
RTSeeMessengerEvents["MESSAGE_SEND_SUCCEED"] = "message-send-succeed";
|
|
22
|
+
RTSeeMessengerEvents["MESSAGE_RECEIVED"] = "message-received";
|
|
23
|
+
RTSeeMessengerEvents["GET_PEER"] = "rtsee-get-peer";
|
|
24
|
+
RTSeeMessengerEvents["OWN_PROFILE_CLOSED"] = "rtsee-own-profile-closed";
|
|
25
|
+
})(RTSeeMessengerEvents || (exports.RTSeeMessengerEvents = RTSeeMessengerEvents = {}));
|
|
26
|
+
//# sourceMappingURL=RTSeeMessengerEvents.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RTSeeMessengerEvents.js","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/RTSeeMessengerEvents.ts"],"names":[],"mappings":";;;AAAA,IAAY,oBAoBX;AApBD,WAAY,oBAAoB;IAC9B,mEAA2C,CAAA;IAC3C,mEAA2C,CAAA;IAC3C,8EAAsD,CAAA;IACtD,8EAAsD,CAAA;IACtD,yFAAiE,CAAA;IACjE,uFAA+D,CAAA;IAC/D,mDAA2B,CAAA;IAC3B,qDAA6B,CAAA;IAC7B,yDAAiC,CAAA;IACjC,yEAAiD,CAAA;IACjD,yDAAiC,CAAA;IACjC,2DAAmC,CAAA;IACnC,2DAAmC,CAAA;IACnC,6DAAqC,CAAA;IACrC,mEAA2C,CAAA;IAC3C,qEAA6C,CAAA;IAC7C,6DAAqC,CAAA;IACrC,mDAA2B,CAAA;IAC3B,uEAA+C,CAAA;AACjD,CAAC,EApBW,oBAAoB,oCAApB,oBAAoB,QAoB/B"}
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import { IRTSeeChat, IRTSeeChatsQuery, IRTSeeChatsResult, IRTSeeCreateChatOptions, IRTSeeMessageBase, IRTSeeMessagesQuery, IRTSeeMessagesResult, IRTSeeMessageStatusTransportData, IRTSeeMessengerSearchOptions, IRTSeeMessengerSearchResults } from "@rtsee/common";
|
|
2
|
+
import { IPeer, IRTSeeTransport } from "@rtsee/core";
|
|
2
3
|
export interface IRTSeeMessengerStorageHandlers {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
4
|
+
getPeerById: (transport: IRTSeeTransport, id: string) => Promise<IPeer | null>;
|
|
5
|
+
getMessages: (transport: IRTSeeTransport, options: IRTSeeMessagesQuery) => Promise<IRTSeeMessagesResult>;
|
|
6
|
+
getChats: (transport: IRTSeeTransport, options: IRTSeeChatsQuery) => Promise<IRTSeeChatsResult>;
|
|
7
|
+
getChat: (transport: IRTSeeTransport, options: IRTSeeChatsQuery) => Promise<IRTSeeChat | null>;
|
|
8
|
+
isAllowedToCreateChat: (transport: IRTSeeTransport, membersIds?: string[]) => Promise<boolean>;
|
|
9
|
+
isAllowedToMessage: (transport: IRTSeeTransport, chatId?: string) => Promise<boolean>;
|
|
10
|
+
processMessage: (transport: IRTSeeTransport, message: IRTSeeMessageBase) => Promise<IRTSeeMessageBase>;
|
|
11
|
+
createChat: (transport: IRTSeeTransport, chat: IRTSeeCreateChatOptions) => Promise<IRTSeeChat | null>;
|
|
12
|
+
getChatPeersIds: (transport: IRTSeeTransport, chatId: string) => Promise<string[] | null>;
|
|
13
|
+
processMessagesReceivedEvent?: (transport: IRTSeeTransport, messages: IRTSeeMessageStatusTransportData) => Promise<void>;
|
|
14
|
+
processMessagesSeenEvent?: (transport: IRTSeeTransport, messages: IRTSeeMessageStatusTransportData) => Promise<void>;
|
|
15
|
+
processSearch?: (transport: IRTSeeTransport, options: IRTSeeMessengerSearchOptions) => Promise<IRTSeeMessengerSearchResults>;
|
|
14
16
|
}
|
|
15
17
|
//# sourceMappingURL=StorageHandlers.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StorageHandlers.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/StorageHandlers.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EACV,gBAAgB,EAChB,iBAAiB,EACjB,uBAAuB,EACvB,iBAAiB,EACjB,mBAAmB,EACnB,oBAAoB,EACpB,gCAAgC,EAChC,4BAA4B,EAC5B,4BAA4B,EAC7B,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"StorageHandlers.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/StorageHandlers.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EACV,gBAAgB,EAChB,iBAAiB,EACjB,uBAAuB,EACvB,iBAAiB,EACjB,mBAAmB,EACnB,oBAAoB,EACpB,gCAAgC,EAChC,4BAA4B,EAC5B,4BAA4B,EAC7B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,KAAK,EAAE,eAAe,EAAC,MAAM,aAAa,CAAC;AAEnD,MAAM,WAAW,8BAA8B;IAC7C,WAAW,EAAE,CAAC,SAAS,EAAE,eAAe,EAAE,EAAE,EAAE,MAAM,KAAK,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC;IAC/E,WAAW,EAAE,CAAC,SAAS,EAAE,eAAe,EAAE,OAAO,EAAE,mBAAmB,KAAK,OAAO,CAAC,oBAAoB,CAAC,CAAC;IACzG,QAAQ,EAAE,CAAC,SAAS,EAAE,eAAe,EAAE,OAAO,EAAE,gBAAgB,KAAK,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChG,OAAO,EAAE,CAAC,SAAS,EAAE,eAAe,EAAE,OAAO,EAAE,gBAAgB,KAAK,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;IAC/F,qBAAqB,EAAE,CACrB,SAAS,EAAE,eAAe,EAC1B,UAAU,CAAC,EAAE,MAAM,EAAE,KAClB,OAAO,CAAC,OAAO,CAAC,CAAC;IACtB,kBAAkB,EAAE,CAClB,SAAS,EAAE,eAAe,EAC1B,MAAM,CAAC,EAAE,MAAM,KACZ,OAAO,CAAC,OAAO,CAAC,CAAC;IACtB,cAAc,EAAE,CACd,SAAS,EAAE,eAAe,EAC1B,OAAO,EAAE,iBAAiB,KACvB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,UAAU,EAAE,CACV,SAAS,EAAE,eAAe,EAC1B,IAAI,EAAE,uBAAuB,KAC1B,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;IAChC,eAAe,EAAE,CACf,SAAS,EAAE,eAAe,EAC1B,MAAM,EAAE,MAAM,KACX,OAAO,CAAC,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC;IAC9B,4BAA4B,CAAC,EAAE,CAC7B,SAAS,EAAE,eAAe,EAC1B,QAAQ,EAAE,gCAAgC,KACvC,OAAO,CAAC,IAAI,CAAC,CAAC;IACnB,wBAAwB,CAAC,EAAE,CACzB,SAAS,EAAE,eAAe,EAC1B,QAAQ,EAAE,gCAAgC,KACvC,OAAO,CAAC,IAAI,CAAC,CAAC;IACnB,aAAa,CAAC,EAAE,CACd,SAAS,EAAE,eAAe,EAC1B,OAAO,EAAE,4BAA4B,KAClC,OAAO,CAAC,4BAA4B,CAAC,CAAC;CAC5C"}
|
|
@@ -9,7 +9,6 @@ export * from "./SearchResults";
|
|
|
9
9
|
export * from "./SearchResponse";
|
|
10
10
|
export * from "./MessageThumbnail";
|
|
11
11
|
export * from "./StorageHandlers";
|
|
12
|
-
export * from "./ChatPeers";
|
|
13
|
-
export * from "./Peer";
|
|
14
12
|
export * from "./MessengerClientEvents";
|
|
13
|
+
export * from './RTSeeMessengerEvents';
|
|
15
14
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC"}
|
|
@@ -25,7 +25,6 @@ __exportStar(require("./SearchResults"), exports);
|
|
|
25
25
|
__exportStar(require("./SearchResponse"), exports);
|
|
26
26
|
__exportStar(require("./MessageThumbnail"), exports);
|
|
27
27
|
__exportStar(require("./StorageHandlers"), exports);
|
|
28
|
-
__exportStar(require("./ChatPeers"), exports);
|
|
29
|
-
__exportStar(require("./Peer"), exports);
|
|
30
28
|
__exportStar(require("./MessengerClientEvents"), exports);
|
|
29
|
+
__exportStar(require("./RTSeeMessengerEvents"), exports);
|
|
31
30
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,+CAA6B;AAC7B,4CAA0B;AAC1B,0CAAwB;AACxB,sDAAoC;AACpC,oDAAkC;AAClC,kDAAgC;AAChC,kDAAgC;AAChC,mDAAiC;AACjC,qDAAmC;AACnC,oDAAkC;AAClC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,+CAA6B;AAC7B,4CAA0B;AAC1B,0CAAwB;AACxB,sDAAoC;AACpC,oDAAkC;AAClC,kDAAgC;AAChC,kDAAgC;AAChC,mDAAiC;AACjC,qDAAmC;AACnC,oDAAkC;AAClC,0DAAwC;AACxC,yDAAuC"}
|
|
@@ -1,31 +1,32 @@
|
|
|
1
1
|
import { IPresentationRoom, IPresentationRoomOptions, IRTSeeStory, IRTSeeStoryCategory, IRTSeeStoryLabel, IRTSeeStoryLabelRequestOptions, IRTSeeStorySlide, IStoriesQuery, IStoriesQueryResponse, IStorySlidesQuery, IStorySlidesQueryResponse } from "@rtsee/common";
|
|
2
|
+
import { IRTSeeTransport } from "@rtsee/core";
|
|
2
3
|
export interface IPresentationStorageHandlers {
|
|
3
|
-
createRoom(
|
|
4
|
-
deleteRoom(
|
|
5
|
-
onJoinRoomRequest(
|
|
6
|
-
onRoomJoined(
|
|
7
|
-
onRoomLeft(
|
|
8
|
-
getRoomsForPeer(
|
|
9
|
-
getStories(
|
|
10
|
-
getStory(
|
|
11
|
-
createStory(
|
|
12
|
-
editStory(
|
|
13
|
-
deleteStory(
|
|
14
|
-
publishStory(
|
|
15
|
-
getSlides(
|
|
16
|
-
createSlide(
|
|
17
|
-
editSlide(
|
|
18
|
-
deleteSlide(
|
|
19
|
-
getCategories(
|
|
20
|
-
createCategory(
|
|
21
|
-
deleteCategory(
|
|
22
|
-
updateCategory(
|
|
23
|
-
addStoryToCategory(
|
|
24
|
-
removeStoryFromCategory(
|
|
25
|
-
getLabels(
|
|
26
|
-
getLabel(
|
|
27
|
-
createLabel(
|
|
28
|
-
editLabel(
|
|
29
|
-
deleteLabel(
|
|
4
|
+
createRoom(transport: IRTSeeTransport, options: IPresentationRoomOptions): Promise<IPresentationRoom | null>;
|
|
5
|
+
deleteRoom(transport: IRTSeeTransport, roomId: string): Promise<IPresentationRoom | null>;
|
|
6
|
+
onJoinRoomRequest(transport: IRTSeeTransport, roomId: string): Promise<IPresentationRoom | null>;
|
|
7
|
+
onRoomJoined(transport: IRTSeeTransport, roomId: string): Promise<void>;
|
|
8
|
+
onRoomLeft(transport: IRTSeeTransport, roomId: string): Promise<void>;
|
|
9
|
+
getRoomsForPeer(transport: IRTSeeTransport): Promise<IPresentationRoom[]>;
|
|
10
|
+
getStories(transport: IRTSeeTransport, options: IStoriesQuery): Promise<IStoriesQueryResponse>;
|
|
11
|
+
getStory(transport: IRTSeeTransport, storyId: string): Promise<IRTSeeStory>;
|
|
12
|
+
createStory(transport: IRTSeeTransport, options: Omit<IRTSeeStory, 'id'>): Promise<IRTSeeStory>;
|
|
13
|
+
editStory(transport: IRTSeeTransport, options: IRTSeeStory): Promise<IRTSeeStory>;
|
|
14
|
+
deleteStory(transport: IRTSeeTransport, storyId: string): Promise<IRTSeeStory>;
|
|
15
|
+
publishStory(transport: IRTSeeTransport, storyId: string): Promise<IRTSeeStory>;
|
|
16
|
+
getSlides(transport: IRTSeeTransport, options: IStorySlidesQuery): Promise<IStorySlidesQueryResponse>;
|
|
17
|
+
createSlide(transport: IRTSeeTransport, options: Omit<IRTSeeStorySlide, 'id'>): Promise<IRTSeeStorySlide>;
|
|
18
|
+
editSlide(transport: IRTSeeTransport, options: IRTSeeStorySlide): Promise<IRTSeeStorySlide>;
|
|
19
|
+
deleteSlide(transport: IRTSeeTransport, slideId: string): Promise<IRTSeeStorySlide>;
|
|
20
|
+
getCategories(transport: IRTSeeTransport, populate?: boolean): Promise<IRTSeeStoryCategory[]>;
|
|
21
|
+
createCategory(transport: IRTSeeTransport, category: Omit<IRTSeeStoryCategory, 'id'>): Promise<IRTSeeStoryCategory>;
|
|
22
|
+
deleteCategory(transport: IRTSeeTransport, categoryId: string): Promise<IRTSeeStoryCategory | null>;
|
|
23
|
+
updateCategory(transport: IRTSeeTransport, category: IRTSeeStoryCategory): Promise<IRTSeeStoryCategory | null>;
|
|
24
|
+
addStoryToCategory(transport: IRTSeeTransport, storyId: string, categoryId: string): Promise<IRTSeeStory | null>;
|
|
25
|
+
removeStoryFromCategory(transport: IRTSeeTransport, storyId: string, categoryId: string): Promise<IRTSeeStory | null>;
|
|
26
|
+
getLabels(transport: IRTSeeTransport, populate?: boolean): Promise<IRTSeeStoryLabel[]>;
|
|
27
|
+
getLabel(transport: IRTSeeTransport, options: IRTSeeStoryLabelRequestOptions): Promise<IRTSeeStoryLabel>;
|
|
28
|
+
createLabel(transport: IRTSeeTransport, label: Omit<IRTSeeStoryLabel, 'id' | 'stories'>): Promise<IRTSeeStoryLabel>;
|
|
29
|
+
editLabel(transport: IRTSeeTransport, label: IRTSeeStoryLabel): Promise<IRTSeeStoryLabel>;
|
|
30
|
+
deleteLabel(transport: IRTSeeTransport, labelId: string): Promise<IRTSeeStoryLabel>;
|
|
30
31
|
}
|
|
31
32
|
//# sourceMappingURL=PresentationStorageHandlers.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PresentationStorageHandlers.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/presentation/PresentationStorageHandlers.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,wBAAwB,EACxB,WAAW,EACX,mBAAmB,EACnB,gBAAgB,EAChB,8BAA8B,EAC9B,gBAAgB,EAChB,aAAa,EACb,qBAAqB,EACrB,iBAAiB,EACjB,yBAAyB,EAC1B,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"PresentationStorageHandlers.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/presentation/PresentationStorageHandlers.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Room.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/presentation/Room.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"Room.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/presentation/Room.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,wBAAyB,SAAQ,OAAO,CAAC,iBAAiB,CAAC;CAE3E"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rtsee/common",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.45",
|
|
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": "1162958bb02625dc4473457d4e417cf9e2ee3d07"
|
|
35
35
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ChatPeers.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/ChatPeers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAEpD,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,mBAAmB,EAAE,CAAC;IAC/B,OAAO,EAAE,mBAAmB,CAAC;CAC9B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ChatPeers.js","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/ChatPeers.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Peer.d.ts","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/Peer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,MAAM,WAAW,mBAAmB,CAAC,CAAC,GAAG,GAAG,CAAE,SAAQ,KAAK,CAAC,CAAC,CAAC;IAC5D,EAAE,EAAE,MAAM,CAAC;CACZ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Peer.js","sourceRoot":"","sources":["../../../../../src/interfaces/messenger/Peer.ts"],"names":[],"mappings":""}
|