@signalwire/js 3.20.0 → 3.20.1-dev.202305221758.03b1041.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.
- package/dist/core/src/BaseComponent.d.ts +20 -0
- package/dist/core/src/BaseComponent.d.ts.map +1 -1
- package/dist/core/src/chat/BaseChat.d.ts +2 -3
- package/dist/core/src/chat/BaseChat.d.ts.map +1 -1
- package/dist/core/src/chat/workers/chatWorker.d.ts +4 -0
- package/dist/core/src/chat/workers/chatWorker.d.ts.map +1 -0
- package/dist/core/src/chat/workers/index.d.ts +2 -0
- package/dist/core/src/chat/workers/index.d.ts.map +1 -0
- package/dist/core/src/index.d.ts +3 -3
- package/dist/core/src/index.d.ts.map +1 -1
- package/dist/core/src/memberPosition/workers.d.ts +3 -6
- package/dist/core/src/memberPosition/workers.d.ts.map +1 -1
- package/dist/core/src/pubSub/BasePubSub.d.ts +5 -3
- package/dist/core/src/pubSub/BasePubSub.d.ts.map +1 -1
- package/dist/core/src/pubSub/workers/index.d.ts +2 -0
- package/dist/core/src/pubSub/workers/index.d.ts.map +1 -0
- package/dist/core/src/pubSub/workers/pubSubWorker.d.ts +4 -0
- package/dist/core/src/pubSub/workers/pubSubWorker.d.ts.map +1 -0
- package/dist/core/src/redux/index.d.ts +8 -1
- package/dist/core/src/redux/index.d.ts.map +1 -1
- package/dist/core/src/redux/rootSaga.d.ts +2 -2
- package/dist/core/src/rooms/RoomSessionRTPlayback.d.ts +45 -0
- package/dist/core/src/rooms/RoomSessionRTPlayback.d.ts.map +1 -0
- package/dist/core/src/rooms/RoomSessionRTPlayback.test.d.ts +2 -0
- package/dist/core/src/rooms/RoomSessionRTPlayback.test.d.ts.map +1 -0
- package/dist/core/src/rooms/RoomSessionRTRecording.d.ts +35 -0
- package/dist/core/src/rooms/RoomSessionRTRecording.d.ts.map +1 -0
- package/dist/core/src/rooms/RoomSessionRTRecording.test.d.ts +2 -0
- package/dist/core/src/rooms/RoomSessionRTRecording.test.d.ts.map +1 -0
- package/dist/core/src/rooms/RoomSessionRTStream.d.ts +34 -0
- package/dist/core/src/rooms/RoomSessionRTStream.d.ts.map +1 -0
- package/dist/core/src/rooms/RoomSessionRTStream.test.d.ts +2 -0
- package/dist/core/src/rooms/RoomSessionRTStream.test.d.ts.map +1 -0
- package/dist/core/src/rooms/index.d.ts +4 -0
- package/dist/core/src/rooms/index.d.ts.map +1 -1
- package/dist/core/src/rooms/methodsRT.d.ts +65 -0
- package/dist/core/src/rooms/methodsRT.d.ts.map +1 -0
- package/dist/core/src/testUtils.d.ts +12 -0
- package/dist/core/src/testUtils.d.ts.map +1 -1
- package/dist/core/src/types/utils.d.ts +4 -0
- package/dist/core/src/types/utils.d.ts.map +1 -1
- package/dist/core/src/types/voiceCall.d.ts +51 -9
- package/dist/core/src/types/voiceCall.d.ts.map +1 -1
- package/dist/core/src/utils/interfaces.d.ts +8 -0
- package/dist/core/src/utils/interfaces.d.ts.map +1 -1
- package/dist/core/src/utils/toExternalJSON.d.ts +5 -0
- package/dist/core/src/utils/toExternalJSON.d.ts.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/js/src/JWTSession.d.ts.map +1 -1
- package/dist/js/src/testUtils.d.ts +12 -0
- package/dist/js/src/testUtils.d.ts.map +1 -1
- package/dist/js/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/dist/core/src/chat/workers.d.ts +0 -4
- package/dist/core/src/chat/workers.d.ts.map +0 -1
- package/dist/core/src/pubSub/workers.d.ts +0 -4
- package/dist/core/src/pubSub/workers.d.ts.map +0 -1
|
@@ -22,6 +22,7 @@ export declare class BaseComponent<EventTypes extends EventEmitter.ValidEventTyp
|
|
|
22
22
|
private _eventsTransformsCache;
|
|
23
23
|
private _customSagaTriggers;
|
|
24
24
|
private _destroyer?;
|
|
25
|
+
private baseEventEmitter;
|
|
25
26
|
private _handleCompoundEvents;
|
|
26
27
|
/**
|
|
27
28
|
* A Namespace let us scope specific instances inside of a
|
|
@@ -76,6 +77,12 @@ export declare class BaseComponent<EventTypes extends EventEmitter.ValidEventTyp
|
|
|
76
77
|
runSaga: any;
|
|
77
78
|
}) => Task<any>;
|
|
78
79
|
channels: import("./utils/interfaces").InternalChannels;
|
|
80
|
+
putOnSwEventChannel: (arg: import("./redux/interfaces").MapToPubSubShape<import("./types").SwEventParams>) => void;
|
|
81
|
+
instanceMap: {
|
|
82
|
+
get: <T_1 extends unknown>(key: string) => T_1;
|
|
83
|
+
set: <T_2 extends unknown>(key: string, value: T_2) => Map<string, unknown>;
|
|
84
|
+
remove: (key: string) => Map<string, unknown>;
|
|
85
|
+
};
|
|
79
86
|
dispatch: import("redux").Dispatch<import("redux").AnyAction>;
|
|
80
87
|
getState(): any;
|
|
81
88
|
subscribe(listener: () => void): import("redux").Unsubscribe;
|
|
@@ -83,8 +90,16 @@ export declare class BaseComponent<EventTypes extends EventEmitter.ValidEventTyp
|
|
|
83
90
|
[Symbol.observable](): import("redux").Observable<any>;
|
|
84
91
|
};
|
|
85
92
|
/** @internal */
|
|
93
|
+
get instanceMap(): {
|
|
94
|
+
get: <T extends unknown>(key: string) => T;
|
|
95
|
+
set: <T_1 extends unknown>(key: string, value: T_1) => Map<string, unknown>;
|
|
96
|
+
remove: (key: string) => Map<string, unknown>;
|
|
97
|
+
};
|
|
98
|
+
/** @internal */
|
|
86
99
|
get emitter(): EventEmitter<EventTypes, any>;
|
|
87
100
|
/** @internal */
|
|
101
|
+
get baseEmitter(): EventEmitter<EventTypes, any>;
|
|
102
|
+
/** @internal */
|
|
88
103
|
private addEventToRegisterQueue;
|
|
89
104
|
/** @internal */
|
|
90
105
|
private _addEventToEmitQueue;
|
|
@@ -128,11 +143,16 @@ export declare class BaseComponent<EventTypes extends EventEmitter.ValidEventTyp
|
|
|
128
143
|
private _untrackEvent;
|
|
129
144
|
private _addListener;
|
|
130
145
|
on<T extends EventEmitter.EventNames<EventTypes>>(event: T, fn: EventEmitter.EventListener<EventTypes, T>): EventEmitter<EventTypes, any>;
|
|
146
|
+
_on<T extends EventEmitter.EventNames<EventTypes>>(event: T, fn: EventEmitter.EventListener<EventTypes, T>): EventEmitter<EventTypes, any>;
|
|
147
|
+
_once<T extends EventEmitter.EventNames<EventTypes>>(event: T, fn: EventEmitter.EventListener<EventTypes, T>): EventEmitter<EventTypes, any>;
|
|
148
|
+
_off<T extends EventEmitter.EventNames<EventTypes>>(event: T, fn?: EventEmitter.EventListener<EventTypes, T>): EventEmitter<EventTypes, any>;
|
|
131
149
|
once<T extends EventEmitter.EventNames<EventTypes>>(event: T, fn: EventEmitter.EventListener<EventTypes, T>): EventEmitter<EventTypes, any>;
|
|
132
150
|
off<T extends EventEmitter.EventNames<EventTypes>>(event: T, fn?: EventEmitter.EventListener<EventTypes, T>): EventEmitter<EventTypes, any>;
|
|
133
151
|
removeAllListeners<T extends EventEmitter.EventNames<EventTypes>>(event?: T): EventEmitter<EventTypes, any>;
|
|
134
152
|
/** @internal */
|
|
135
153
|
eventNames(): EventEmitter.EventNames<EventTypes>[];
|
|
154
|
+
/** @internal */
|
|
155
|
+
baseEventNames(): EventEmitter.EventNames<EventTypes>[];
|
|
136
156
|
protected getSubscriptions(): EventEmitter.EventNames<EventTypes>[];
|
|
137
157
|
/** @internal */
|
|
138
158
|
emit(event: EventEmitter.EventNames<EventTypes>, ...args: any[]): boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseComponent.d.ts","sourceRoot":"","sources":["../../../../core/src/BaseComponent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAA;AAU7C,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAA;AAChC,OAAO,EACL,aAAa,EAEb,oBAAoB,EACpB,sBAAsB,EACtB,YAAY,EAEZ,cAAc,EACd,SAAS,EACT,mBAAmB,EACnB,iBAAiB,EACjB,cAAc,EACd,aAAa,EACd,MAAM,oBAAoB,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAE7C,OAAO,EACL,mBAAmB,EACnB,eAAe,EACf,qBAAqB,EACtB,MAAM,SAAS,CAAA;AA+BhB,eAAO,MAAM,SAAS,eAA0B,CAAA;AAEhD,qBAAa,aAAa,CACxB,UAAU,SAAS,YAAY,CAAC,eAAe,EAC/C,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CACzC,YAAW,eAAe,CAAC,UAAU,CAAC,EAAE,qBAAqB;
|
|
1
|
+
{"version":3,"file":"BaseComponent.d.ts","sourceRoot":"","sources":["../../../../core/src/BaseComponent.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseComponentOptions,
|
|
1
|
+
import { BaseComponentOptions, JSONRPCSubscribeMethod, SessionEvents } from '..';
|
|
2
2
|
import { BasePubSubConsumer } from '../pubSub';
|
|
3
3
|
import type { ChatEventNames, ChatMemberEventNames, ChatMessageEventName } from '../types/chat';
|
|
4
4
|
import { ChatMember } from './ChatMember';
|
|
@@ -17,8 +17,7 @@ export declare class BaseChatConsumer extends BasePubSubConsumer<BaseChatApiEven
|
|
|
17
17
|
protected _eventsPrefix: "chat";
|
|
18
18
|
protected subscribeMethod: JSONRPCSubscribeMethod;
|
|
19
19
|
constructor(options: BaseComponentOptions<BaseChatApiEvents>);
|
|
20
|
-
|
|
21
|
-
protected getEmitterTransforms(): Map<ChatEventNames | ChatEventNames[], EventTransform>;
|
|
20
|
+
protected initWorker(): void;
|
|
22
21
|
}
|
|
23
22
|
export declare const BaseChatAPI: import("..").ConstructableType<BaseChatConsumer>;
|
|
24
23
|
export declare const createBaseChatObject: <ChatType>(params: BaseComponentOptions<ChatEventNames>) => ChatType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseChat.d.ts","sourceRoot":"","sources":["../../../../../core/src/chat/BaseChat.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,
|
|
1
|
+
{"version":3,"file":"BaseChat.d.ts","sourceRoot":"","sources":["../../../../../core/src/chat/BaseChat.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,EAGpB,sBAAsB,EACtB,aAAa,EACd,MAAM,IAAI,CAAA;AACX,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAC9C,OAAO,KAAK,EACV,cAAc,EACd,oBAAoB,EACpB,oBAAoB,EAErB,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAI3C,oBAAY,+BAA+B,GAAG,MAAM,CAClD,oBAAoB,EACpB,CAAC,OAAO,EAAE,WAAW,KAAK,IAAI,CAC/B,GACC,MAAM,CAAC,oBAAoB,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC,GAC1D,MAAM,CAAC,OAAO,CAAC,aAAa,EAAE,kBAAkB,CAAC,EAAE,MAAM,IAAI,CAAC,CAAA;AAEhE;;;;;GAKG;AACH,oBAAY,iBAAiB,CAAC,CAAC,GAAG,+BAA+B,IAAI;KAClE,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACrB,CAAA;AAED,qBAAa,gBAAiB,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IACzE,UAAmB,aAAa,SAAsB;IACtD,UAAmB,eAAe,EAAE,sBAAsB,CAAqC;gBAEnF,OAAO,EAAE,oBAAoB,CAAC,iBAAiB,CAAC;cAIzC,UAAU;CAG9B;AAED,eAAO,MAAM,WAAW,kDASvB,CAAA;AAED,eAAO,MAAM,oBAAoB,qBACvB,qBAAqB,cAAc,CAAC,aAQ7C,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chatWorker.d.ts","sourceRoot":"","sources":["../../../../../../core/src/chat/workers/chatWorker.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAC9C,OAAO,EAEL,SAAS,EAOV,MAAM,aAAa,CAAA;AAEpB,eAAO,MAAM,UAAU,EAAE,SAAS,CAAC,gBAAgB,CAsDlD,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../core/src/chat/workers/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA"}
|
package/dist/core/src/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { uuid, setLogger, getLogger, isGlobalEvent, toExternalJSON, toSnakeCaseKeys, toLocalEvent, toSyntheticEvent, extendComponent, validateEventsToSubscribe, toInternalEventName, toInternalAction, serializeableProxy, timeoutPromise, debounce, CloseEvent, isSATAuth } from './utils';
|
|
1
|
+
import { uuid, setLogger, getLogger, isGlobalEvent, toExternalJSON, fromSnakeToCamelCase, toSnakeCaseKeys, toLocalEvent, toSyntheticEvent, extendComponent, validateEventsToSubscribe, toInternalEventName, toInternalAction, serializeableProxy, timeoutPromise, debounce, CloseEvent, isSATAuth } from './utils';
|
|
2
2
|
import { WEBRTC_EVENT_TYPES, isWebrtcEventType } from './utils/common';
|
|
3
3
|
import { BaseSession } from './BaseSession';
|
|
4
4
|
import { BaseJWTSession } from './BaseJWTSession';
|
|
@@ -10,7 +10,7 @@ import { EventEmitter, getEventEmitter } from './utils/EventEmitter';
|
|
|
10
10
|
import { findNamespaceInPayload } from './redux/features/shared/namespace';
|
|
11
11
|
import { GLOBAL_VIDEO_EVENTS } from './utils/constants';
|
|
12
12
|
import { MEMBER_UPDATED_EVENTS, INTERNAL_MEMBER_UPDATED_EVENTS } from './types/videoMember';
|
|
13
|
-
export { uuid, setLogger, getLogger, BaseSession, BaseJWTSession, BaseComponent, BaseConsumer, BaseClient, connect, configureStore, EventEmitter, extendComponent, validateEventsToSubscribe, getEventEmitter, isGlobalEvent, toExternalJSON, toSnakeCaseKeys, toLocalEvent, toInternalEventName, toInternalAction, serializeableProxy, toSyntheticEvent, GLOBAL_VIDEO_EVENTS, MEMBER_UPDATED_EVENTS, INTERNAL_MEMBER_UPDATED_EVENTS, findNamespaceInPayload, timeoutPromise, debounce, CloseEvent, WEBRTC_EVENT_TYPES, isWebrtcEventType, isSATAuth, };
|
|
13
|
+
export { uuid, setLogger, getLogger, BaseSession, BaseJWTSession, BaseComponent, BaseConsumer, BaseClient, connect, configureStore, EventEmitter, extendComponent, validateEventsToSubscribe, getEventEmitter, isGlobalEvent, toExternalJSON, fromSnakeToCamelCase, toSnakeCaseKeys, toLocalEvent, toInternalEventName, toInternalAction, serializeableProxy, toSyntheticEvent, GLOBAL_VIDEO_EVENTS, MEMBER_UPDATED_EVENTS, INTERNAL_MEMBER_UPDATED_EVENTS, findNamespaceInPayload, timeoutPromise, debounce, CloseEvent, WEBRTC_EVENT_TYPES, isWebrtcEventType, isSATAuth, };
|
|
14
14
|
export * from './redux/features/component/componentSlice';
|
|
15
15
|
export * from './redux/features/session/sessionSlice';
|
|
16
16
|
export * as componentSelectors from './redux/features/component/componentSelectors';
|
|
@@ -28,7 +28,7 @@ export * as Rooms from './rooms';
|
|
|
28
28
|
export * as Chat from './chat';
|
|
29
29
|
export * as PubSub from './pubSub';
|
|
30
30
|
export * as MemberPosition from './memberPosition';
|
|
31
|
-
export type { RoomSessionRecording, RoomSessionPlayback, RoomSessionStream, } from './rooms';
|
|
31
|
+
export type { RoomSessionRecording, RoomSessionRTRecording, RoomSessionPlayback, RoomSessionRTPlayback, RoomSessionStream, RoomSessionRTStream, } from './rooms';
|
|
32
32
|
export declare const selectors: {
|
|
33
33
|
getIceServers: ({ session }: import("./redux/interfaces").SDKState) => RTCIceServer[];
|
|
34
34
|
getSession: (store: import("./redux/interfaces").SDKState) => import("./redux/interfaces").SessionState;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../core/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,IAAI,EACJ,SAAS,EACT,SAAS,EACT,aAAa,EACb,cAAc,EACd,eAAe,EACf,YAAY,EACZ,gBAAgB,EAChB,eAAe,EACf,yBAAyB,EACzB,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,cAAc,EACd,QAAQ,EACR,UAAU,EACV,SAAS,EACV,MAAM,SAAS,CAAA;AAChB,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AACtE,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAEpE,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAA;AAC1E,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,EACL,qBAAqB,EACrB,8BAA8B,EAC/B,MAAM,qBAAqB,CAAA;AAE5B,OAAO,EACL,IAAI,EACJ,SAAS,EACT,SAAS,EACT,WAAW,EACX,cAAc,EACd,aAAa,EACb,YAAY,EACZ,UAAU,EACV,OAAO,EACP,cAAc,EACd,YAAY,EACZ,eAAe,EACf,yBAAyB,EACzB,eAAe,EACf,aAAa,EACb,cAAc,EACd,eAAe,EACf,YAAY,EACZ,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,gBAAgB,EAChB,mBAAmB,EACnB,qBAAqB,EACrB,8BAA8B,EAC9B,sBAAsB,EACtB,cAAc,EACd,QAAQ,EACR,UAAU,EACV,kBAAkB,EAClB,iBAAiB,EACjB,SAAS,GACV,CAAA;AAED,cAAc,2CAA2C,CAAA;AACzD,cAAc,uCAAuC,CAAA;AACrD,OAAO,KAAK,kBAAkB,MAAM,+CAA+C,CAAA;AACnF,cAAc,eAAe,CAAA;AAC7B,cAAc,oBAAoB,CAAA;AAClC,cAAc,SAAS,CAAA;AACvB,cAAc,gBAAgB,CAAA;AAC9B,YAAY,EACV,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,aAAa,EACb,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,cAAc,GACf,MAAM,oBAAoB,CAAA;AAC3B,YAAY,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AACnD,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAA;AAC1C,OAAO,KAAK,WAAW,MAAM,2BAA2B,CAAA;AACxD,OAAO,KAAK,WAAW,MAAM,0BAA0B,CAAA;AACvD,YAAY,EAAE,YAAY,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAA;AACjE,OAAO,KAAK,KAAK,MAAM,SAAS,CAAA;AAChC,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAA;AAC9B,OAAO,KAAK,MAAM,MAAM,UAAU,CAAA;AAClC,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAA;AAClD,YAAY,EACV,oBAAoB,EACpB,mBAAmB,EACnB,iBAAiB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../core/src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare function memberUpdatedWorker({ action, channels, memberList, }: Omit<SDKWorkerParams<any>, 'runSaga'> & {
|
|
1
|
+
import { SagaIterator, SDKWorker, SDKWorkerParams, VideoMemberUpdatedEventParams } from '..';
|
|
2
|
+
export declare function memberUpdatedWorker({ action, channels, memberList, dispatcher, }: Omit<SDKWorkerParams<any>, 'runSaga'> & {
|
|
3
3
|
memberList: MemberEventParamsList;
|
|
4
4
|
action: any;
|
|
5
|
-
}): Generator<
|
|
6
|
-
type: "session.unknown" | "session.idle" | "session.reconnecting" | "session.connected" | "session.disconnecting" | "session.disconnected" | "session.auth_error" | "session.expiring";
|
|
7
|
-
payload: Error | undefined;
|
|
8
|
-
} | import("..").MapToPubSubShape<import("..").VideoManagerRoomsSubscribedEvent> | import("..").MapToPubSubShape<import("..").VideoManagerRoomEvent> | import("..").MapToPubSubShape<import("..").ChatChannelMessageEvent> | import("..").MapToPubSubShape<import("..").ChatMemberJoinedEvent> | import("..").MapToPubSubShape<import("..").ChatMemberUpdatedEvent> | import("..").MapToPubSubShape<import("..").ChatMemberLeftEvent> | import("..").MapToPubSubShape<import("..").PubSubChannelMessageEvent> | import("..").TaskAction | import("..").MapToPubSubShape<import("..").MessagingStateEvent> | import("..").MapToPubSubShape<import("..").MessageUpdatedEvent> | import("..").MapToPubSubShape<import("..").MessagingReceiveEvent> | import("..").MapToPubSubShape<import("..").MessageReceivedEvent> | import("..").MapToPubSubShape<import("..").CallingCallDialEvent> | import("..").MapToPubSubShape<import("..").CallingCallStateEvent> | import("..").MapToPubSubShape<import("..").CallingCallReceiveEvent> | import("..").MapToPubSubShape<import("..").CallingCallPlayEvent> | import("..").MapToPubSubShape<import("..").CallingCallRecordEvent> | import("..").MapToPubSubShape<import("..").CallingCallCollectEvent> | import("..").MapToPubSubShape<import("..").CallingCallTapEvent> | import("..").MapToPubSubShape<import("..").CallingCallConnectEvent> | import("..").MapToPubSubShape<import("..").CallingCallSendDigitsEvent> | import("..").MapToPubSubShape<import("..").CallingCallDetectEvent> | import("..").MapToPubSubShape<import("..").CallReceivedEvent> | import("..").MapToPubSubShape<import("..").CallPlaybackStartedEvent> | import("..").MapToPubSubShape<import("..").CallPlaybackUpdatedEvent> | import("..").MapToPubSubShape<import("..").CallPlaybackEndedEvent> | import("..").MapToPubSubShape<import("..").CallPlaybackFailedEvent> | import("..").MapToPubSubShape<import("..").CallRecordingStartedEvent> | import("..").MapToPubSubShape<import("..").CallRecordingUpdatedEvent> | import("..").MapToPubSubShape<import("..").CallRecordingEndedEvent> | import("..").MapToPubSubShape<import("..").CallRecordingFailedEvent> | import("..").MapToPubSubShape<import("..").CallPromptStartedEvent> | import("..").MapToPubSubShape<import("..").CallPromptStartOfInputEvent> | import("..").MapToPubSubShape<import("..").CallPromptUpdatedEvent> | import("..").MapToPubSubShape<import("..").CallPromptEndedEvent> | import("..").MapToPubSubShape<import("..").CallPromptFailedEvent> | import("..").MapToPubSubShape<import("..").CallTapStartedEvent> | import("..").MapToPubSubShape<import("..").CallTapEndedEvent> | import("..").MapToPubSubShape<import("..").CallConnectConnectingEvent> | import("..").MapToPubSubShape<import("..").CallConnectConnectedEvent> | import("..").MapToPubSubShape<import("..").CallConnectDisconnectedEvent> | import("..").MapToPubSubShape<import("..").CallConnectFailedEvent> | import("..").MapToPubSubShape<import("..").CallDetectStartedEvent> | import("..").MapToPubSubShape<import("..").CallDetectUpdatedEvent> | import("..").MapToPubSubShape<import("..").CallDetectEndedEvent> | import("..").MapToPubSubShape<import("..").CallCollectStartedEvent> | import("..").MapToPubSubShape<import("..").CallCollectStartOfInputEvent> | import("..").MapToPubSubShape<import("..").CallCollectUpdatedEvent> | import("..").MapToPubSubShape<import("..").CallCollectEndedEvent> | import("..").MapToPubSubShape<import("..").CallCollectFailedEvent>>, void, unknown>;
|
|
5
|
+
}): Generator<SagaIterator<any>, void, unknown>;
|
|
9
6
|
export declare const MEMBER_POSITION_COMPOUND_EVENTS: Map<any, any>;
|
|
10
7
|
export declare const memberPositionWorker: SDKWorker<any>;
|
|
11
8
|
declare type MemberEventParamsList = Map<string, VideoMemberUpdatedEventParams>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workers.d.ts","sourceRoot":"","sources":["../../../../../core/src/memberPosition/workers.ts"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"workers.d.ts","sourceRoot":"","sources":["../../../../../core/src/memberPosition/workers.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EACZ,SAAS,EACT,eAAe,EACf,6BAA6B,EAG9B,MAAM,IAAI,CAAA;AA8EX,wBAAiB,mBAAmB,CAAC,EACnC,MAAM,EACN,QAAQ,EACR,UAAU,EACV,UAA8B,GAC/B,EAAE,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,GAAG;IACzC,UAAU,EAAE,qBAAqB,CAAA;IACjC,MAAM,EAAE,GAAG,CAAA;CACZ,+CAgCA;AAED,eAAO,MAAM,+BAA+B,eAW1C,CAAA;AAEF,eAAO,MAAM,oBAAoB,EAAE,SAAS,CAAC,GAAG,CA8E7C,CAAA;AAEH,aAAK,qBAAqB,GAAG,GAAG,CAAC,MAAM,EAAE,6BAA6B,CAAC,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseComponentOptions, BaseConsumer, JSONRPCSubscribeMethod, SessionEvents, EventEmitter
|
|
1
|
+
import { BaseComponentOptions, BaseConsumer, JSONRPCSubscribeMethod, SessionEvents, EventEmitter } from '..';
|
|
2
2
|
import type { PubSubChannel, InternalPubSubChannel, PubSubEventNames, PubSubPublishParams, PubSubMessageEventName } from '../types/pubSub';
|
|
3
3
|
import { PubSubMessage } from './PubSubMessage';
|
|
4
4
|
export declare type BasePubSubApiEventsHandlerMapping = Record<PubSubMessageEventName, (message: PubSubMessage) => void> & Record<Extract<SessionEvents, 'session.expiring'>, () => void>;
|
|
@@ -15,8 +15,7 @@ export declare class BasePubSubConsumer<EventTypes extends EventEmitter.ValidEve
|
|
|
15
15
|
protected _eventsPrefix: "chat";
|
|
16
16
|
protected subscribeMethod: JSONRPCSubscribeMethod;
|
|
17
17
|
constructor(options: BaseComponentOptions<EventTypes>);
|
|
18
|
-
|
|
19
|
-
protected getEmitterTransforms(): Map<any, EventTransform>;
|
|
18
|
+
protected initWorker(): void;
|
|
20
19
|
private _getChannelsParam;
|
|
21
20
|
/** @internal */
|
|
22
21
|
protected _setSubscribeParams(params: Record<string, any>): void;
|
|
@@ -38,6 +37,9 @@ export declare class BasePubSubConsumer<EventTypes extends EventEmitter.ValidEve
|
|
|
38
37
|
updateToken(token: string): Promise<void>;
|
|
39
38
|
publish(params: PubSubPublishParams): Promise<unknown>;
|
|
40
39
|
getAllowedChannels(): Promise<import("..").ChatAuthorizationChannels>;
|
|
40
|
+
on(event: EventEmitter.EventNames<EventTypes>, fn: EventEmitter.EventListener<EventTypes, any>): EventEmitter<EventTypes, any>;
|
|
41
|
+
once(event: EventEmitter.EventNames<EventTypes>, fn: EventEmitter.EventListener<EventTypes, any>): EventEmitter<EventTypes, any>;
|
|
42
|
+
off(event: EventEmitter.EventNames<EventTypes>, fn: EventEmitter.EventListener<EventTypes, any>): EventEmitter<EventTypes, any>;
|
|
41
43
|
}
|
|
42
44
|
export declare const createBasePubSubObject: <PubSubType>(params: BaseComponentOptions<PubSubEventNames>) => PubSubType;
|
|
43
45
|
//# sourceMappingURL=BasePubSub.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BasePubSub.d.ts","sourceRoot":"","sources":["../../../../../core/src/pubSub/BasePubSub.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,EACpB,YAAY,EAEZ,sBAAsB,EAGtB,aAAa,EACb,YAAY,
|
|
1
|
+
{"version":3,"file":"BasePubSub.d.ts","sourceRoot":"","sources":["../../../../../core/src/pubSub/BasePubSub.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,EACpB,YAAY,EAEZ,sBAAsB,EAGtB,aAAa,EACb,YAAY,EACb,MAAM,IAAI,CAAA;AAEX,OAAO,KAAK,EACV,aAAa,EACb,qBAAqB,EACrB,gBAAgB,EAChB,mBAAmB,EACnB,sBAAsB,EACvB,MAAM,iBAAiB,CAAA;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAG/C,oBAAY,iCAAiC,GAAG,MAAM,CACpD,sBAAsB,EACtB,CAAC,OAAO,EAAE,aAAa,KAAK,IAAI,CACjC,GACC,MAAM,CAAC,OAAO,CAAC,aAAa,EAAE,kBAAkB,CAAC,EAAE,MAAM,IAAI,CAAC,CAAA;AAEhE;;;;;GAKG;AACH,oBAAY,mBAAmB,CAAC,CAAC,GAAG,iCAAiC,IAAI;KACtE,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACrB,CAAA;AAYD,qBAAa,kBAAkB,CAC7B,UAAU,SAAS,YAAY,CAAC,eAAe,GAAG,mBAAmB,CACrE,SAAQ,YAAY,CAAC,UAAU,CAAC;IAChC,UAAmB,aAAa,SAAwB;IACxD,UAAmB,eAAe,EAAE,sBAAsB,CAAuC;gBAErF,OAAO,EAAE,oBAAoB,CAAC,UAAU,CAAC;IAcrD,SAAS,CAAC,UAAU;IAIpB,OAAO,CAAC,iBAAiB;IAkBzB,gBAAgB;IAChB,SAAS,CAAC,mBAAmB,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;IAOzD,gBAAgB;IAChB,SAAS,CAAC,mBAAmB,CAAC,EAAE,QAAQ,EAAE,EAAE;QAAE,QAAQ,CAAC,EAAE,aAAa,CAAA;KAAE;;;IAMxE,gBAAgB;IAChB,SAAS,CAAC,qBAAqB,CAAC,EAAE,QAAQ,EAAE,EAAE;QAAE,QAAQ,CAAC,EAAE,aAAa,CAAA;KAAE;;;IAQ1E,OAAO,CAAC,0BAA0B;IAW5B,SAAS,CAAC,QAAQ,CAAC,EAAE,aAAa;IAUlC,WAAW,CAAC,QAAQ,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC;IAwCzD,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAezC,OAAO,CAAC,MAAM,EAAE,mBAAmB;IAU7B,kBAAkB;IASf,EAAE,CACT,KAAK,EAAE,YAAY,CAAC,UAAU,CAAC,UAAU,CAAC,EAC1C,EAAE,EAAE,YAAY,CAAC,aAAa,CAAC,UAAU,EAAE,GAAG,CAAC;IAMxC,IAAI,CACX,KAAK,EAAE,YAAY,CAAC,UAAU,CAAC,UAAU,CAAC,EAC1C,EAAE,EAAE,YAAY,CAAC,aAAa,CAAC,UAAU,EAAE,GAAG,CAAC;IAMxC,GAAG,CACV,KAAK,EAAE,YAAY,CAAC,UAAU,CAAC,UAAU,CAAC,EAC1C,EAAE,EAAE,YAAY,CAAC,aAAa,CAAC,UAAU,EAAE,GAAG,CAAC;CAKlD;AAED,eAAO,MAAM,sBAAsB,uBACzB,qBAAqB,gBAAgB,CAAC,eAQ/C,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../core/src/pubSub/workers/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pubSubWorker.d.ts","sourceRoot":"","sources":["../../../../../../core/src/pubSub/workers/pubSubWorker.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAA;AAElD,OAAO,EAGL,SAAS,EAIV,MAAM,aAAa,CAAA;AAEpB,eAAO,MAAM,YAAY,EAAE,SAAS,CAAC,kBAAkB,CA0DtD,CAAA"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Saga, Task } from '@redux-saga/core';
|
|
2
|
-
import { SDKState } from './interfaces';
|
|
2
|
+
import { MapToPubSubShape, SDKState } from './interfaces';
|
|
3
3
|
import { connect } from './connect';
|
|
4
4
|
import { InternalUserOptions, SessionConstructor, InternalChannels } from '../utils/interfaces';
|
|
5
|
+
import { SwEventParams } from '..';
|
|
5
6
|
export interface ConfigureStoreOptions {
|
|
6
7
|
userOptions: InternalUserOptions;
|
|
7
8
|
SessionConstructor: SessionConstructor;
|
|
@@ -16,6 +17,12 @@ declare const configureStore: (options: ConfigureStoreOptions) => {
|
|
|
16
17
|
runSaga: any;
|
|
17
18
|
}) => Task<any>;
|
|
18
19
|
channels: InternalChannels;
|
|
20
|
+
putOnSwEventChannel: (arg: MapToPubSubShape<SwEventParams>) => void;
|
|
21
|
+
instanceMap: {
|
|
22
|
+
get: <T_1 extends unknown>(key: string) => T_1;
|
|
23
|
+
set: <T_2 extends unknown>(key: string, value: T_2) => Map<string, unknown>;
|
|
24
|
+
remove: (key: string) => Map<string, unknown>;
|
|
25
|
+
};
|
|
19
26
|
dispatch: import("redux").Dispatch<import("redux").AnyAction>;
|
|
20
27
|
getState(): any;
|
|
21
28
|
subscribe(listener: () => void): import("redux").Unsubscribe;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../core/src/redux/index.ts"],"names":[],"mappings":"AACA,OAA6B,EAG3B,IAAI,EACJ,IAAI,EACL,MAAM,kBAAkB,CAAA;AAIzB,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../core/src/redux/index.ts"],"names":[],"mappings":"AACA,OAA6B,EAG3B,IAAI,EACJ,IAAI,EACL,MAAM,kBAAkB,CAAA;AAIzB,OAAO,EACL,gBAAgB,EAEhB,QAAQ,EAGT,MAAM,cAAc,CAAA;AACrB,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EACL,mBAAmB,EACnB,kBAAkB,EAClB,gBAAgB,EACjB,MAAM,qBAAqB,CAAA;AAG5B,OAAO,EAAE,aAAa,EAAE,MAAM,IAAI,CAAA;AAElC,MAAM,WAAW,qBAAqB;IACpC,WAAW,EAAE,mBAAmB,CAAA;IAChC,kBAAkB,EAAE,kBAAkB,CAAA;IACtC,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAA;CACnC;AAED,oBAAY,QAAQ,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAA;AACxD,oBAAY,UAAU,GAAG,CAAC,CAAC,SAAS,IAAI,EACtC,IAAI,EAAE,CAAC,EACP,MAAM,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KACtB,IAAI,CAAA;AAET,QAAA,MAAM,cAAc,YAAa,qBAAqB;uBA4E5C,IAAI;;iBAGC,GAAG;;;+BAuBa,iBAAiB,aAAa,CAAC;;wCA/Cf,MAAM;wCAIN,MAAM;sBAKtB,MAAM;;;;;;;CA2CpC,CAAA;AAED,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,CAAA;AAClC,cAAc,WAAW,CAAA;AACzB,cAAc,qBAAqB,CAAA;AACnC,cAAc,WAAW,CAAA"}
|
|
@@ -17,10 +17,10 @@ export declare function reauthenticateWorker({ session, token, pubSubChannel, }:
|
|
|
17
17
|
session: BaseSession;
|
|
18
18
|
token: string;
|
|
19
19
|
pubSubChannel: PubSubChannel;
|
|
20
|
-
}): Generator<import("@redux-saga/core/effects").ChannelPutEffect<import("./interfaces").MapToPubSubShape<import("..").
|
|
20
|
+
}): Generator<import("@redux-saga/core/effects").CallEffect<void> | import("@redux-saga/core/effects").ChannelPutEffect<import("./interfaces").MapToPubSubShape<import("..").VideoRoomStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoRoomSubscribedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoRoomUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoRoomEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoMemberJoinedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoMemberLeftEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoMemberUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoMemberTalkingEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoMemberPromotedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoMemberDemotedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoLayoutChangedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoRecordingStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoRecordingUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoRecordingEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoPlaybackStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoPlaybackUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoPlaybackEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoStreamStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoStreamEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoRoomAudienceCountEvent> | import("./interfaces").MapToPubSubShape<import("..").InternalVideoRoomJoinedEvent> | import("./interfaces").MapToPubSubShape<import("..").InternalVideoRoomAudienceCountEvent> | import("./interfaces").MapToPubSubShape<import("..").InternalVideoMemberUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").InternalVideoMemberTalkingEvent> | {
|
|
21
21
|
type: "session.unknown" | "session.idle" | "session.reconnecting" | "session.connected" | "session.disconnecting" | "session.disconnected" | "session.auth_error" | "session.expiring";
|
|
22
22
|
payload: Error | undefined;
|
|
23
|
-
} | import("./interfaces").MapToPubSubShape<import("..").VideoManagerRoomsSubscribedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoManagerRoomEvent> | import("./interfaces").MapToPubSubShape<import("..").ChatChannelMessageEvent> | import("./interfaces").MapToPubSubShape<import("..").ChatMemberJoinedEvent> | import("./interfaces").MapToPubSubShape<import("..").ChatMemberUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").ChatMemberLeftEvent> | import("./interfaces").MapToPubSubShape<import("..").PubSubChannelMessageEvent> | import("..").TaskAction | import("./interfaces").MapToPubSubShape<import("..").MessagingStateEvent> | import("./interfaces").MapToPubSubShape<import("..").MessageUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").MessagingReceiveEvent> | import("./interfaces").MapToPubSubShape<import("..").MessageReceivedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallDialEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallStateEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallReceiveEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallPlayEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallRecordEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallCollectEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallTapEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallConnectEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallSendDigitsEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallDetectEvent> | import("./interfaces").MapToPubSubShape<import("..").CallReceivedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPlaybackStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPlaybackUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPlaybackEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPlaybackFailedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallRecordingStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallRecordingUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallRecordingEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallRecordingFailedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptStartOfInputEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptFailedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallTapStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallTapEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallConnectConnectingEvent> | import("./interfaces").MapToPubSubShape<import("..").CallConnectConnectedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallConnectDisconnectedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallConnectFailedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallDetectStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallDetectUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallDetectEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectStartOfInputEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectFailedEvent
|
|
23
|
+
} | import("./interfaces").MapToPubSubShape<import("..").VideoManagerRoomsSubscribedEvent> | import("./interfaces").MapToPubSubShape<import("..").VideoManagerRoomEvent> | import("./interfaces").MapToPubSubShape<import("..").ChatChannelMessageEvent> | import("./interfaces").MapToPubSubShape<import("..").ChatMemberJoinedEvent> | import("./interfaces").MapToPubSubShape<import("..").ChatMemberUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").ChatMemberLeftEvent> | import("./interfaces").MapToPubSubShape<import("..").PubSubChannelMessageEvent> | import("..").TaskAction | import("./interfaces").MapToPubSubShape<import("..").MessagingStateEvent> | import("./interfaces").MapToPubSubShape<import("..").MessageUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").MessagingReceiveEvent> | import("./interfaces").MapToPubSubShape<import("..").MessageReceivedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallDialEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallStateEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallReceiveEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallPlayEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallRecordEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallCollectEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallTapEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallConnectEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallSendDigitsEvent> | import("./interfaces").MapToPubSubShape<import("..").CallingCallDetectEvent> | import("./interfaces").MapToPubSubShape<import("..").CallReceivedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPlaybackStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPlaybackUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPlaybackEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPlaybackFailedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallRecordingStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallRecordingUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallRecordingEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallRecordingFailedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptStartOfInputEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallPromptFailedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallTapStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallTapEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallConnectConnectingEvent> | import("./interfaces").MapToPubSubShape<import("..").CallConnectConnectedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallConnectDisconnectedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallConnectFailedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallDetectStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallDetectUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallDetectEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectStartedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectStartOfInputEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectUpdatedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectEndedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallCollectFailedEvent> | import("./interfaces").MapToPubSubShape<import("..").CallSDKPromptEvent> | import("./interfaces").MapToPubSubShape<import("..").CallSDKCollectEvent> | import("./interfaces").MapToPubSubShape<import("..").CallSDKDetectEvent>> | import("@redux-saga/core/effects").PutEffect<{
|
|
24
24
|
payload: import("../utils/interfaces").RPCConnectResult;
|
|
25
25
|
type: string;
|
|
26
26
|
}>, void, unknown>;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `RoomSessionPlayback.ts` -> Uses old event emitter - being used in browser SDK
|
|
3
|
+
* `RoomSessionRTPlayback.ts` -> Uses new event emitter - being used in realtime SDK
|
|
4
|
+
*
|
|
5
|
+
* The `RoomSessionPlayback.ts` file should be removed when we start using the new event emitter in browser sdk.
|
|
6
|
+
* We will also need to rename the new file and remove the letters `RT` from all the variables/classes/functions/types.
|
|
7
|
+
*/
|
|
8
|
+
import { BaseComponent } from '../BaseComponent';
|
|
9
|
+
import { BaseComponentOptions } from '../utils/interfaces';
|
|
10
|
+
import type { VideoPlaybackContract, VideoPlaybackMethods, VideoPlaybackEventNames, VideoPlaybackEventParams } from '../types/videoPlayback';
|
|
11
|
+
/**
|
|
12
|
+
* Instances of this class allow you to control (e.g., pause, resume, stop) the
|
|
13
|
+
* playback inside a room session. You can obtain instances of this class by
|
|
14
|
+
* starting a playback from the desired {@link RoomSession} (see
|
|
15
|
+
* {@link RoomSession.play})
|
|
16
|
+
*/
|
|
17
|
+
export interface RoomSessionRTPlayback extends VideoPlaybackContract {
|
|
18
|
+
setPayload(payload: VideoPlaybackEventParams): void;
|
|
19
|
+
}
|
|
20
|
+
export declare type RoomSessionRTPlaybackEventsHandlerMapping = Record<VideoPlaybackEventNames, (playback: RoomSessionRTPlayback) => void>;
|
|
21
|
+
export declare class RoomSessionRTPlaybackAPI extends BaseComponent<RoomSessionRTPlaybackEventsHandlerMapping> implements VideoPlaybackMethods {
|
|
22
|
+
private _payload;
|
|
23
|
+
constructor(options: BaseComponentOptions<RoomSessionRTPlaybackEventsHandlerMapping>);
|
|
24
|
+
get id(): string;
|
|
25
|
+
get roomId(): string;
|
|
26
|
+
get roomSessionId(): string;
|
|
27
|
+
get url(): string;
|
|
28
|
+
get state(): "playing" | "paused" | "completed";
|
|
29
|
+
get volume(): number;
|
|
30
|
+
get startedAt(): Date | undefined;
|
|
31
|
+
get endedAt(): Date | undefined;
|
|
32
|
+
get position(): number;
|
|
33
|
+
get seekable(): boolean;
|
|
34
|
+
/** @internal */
|
|
35
|
+
protected setPayload(payload: VideoPlaybackEventParams): void;
|
|
36
|
+
pause(): Promise<void>;
|
|
37
|
+
resume(): Promise<void>;
|
|
38
|
+
stop(): Promise<void>;
|
|
39
|
+
setVolume(volume: number): Promise<void>;
|
|
40
|
+
seek(timecode: number): Promise<void>;
|
|
41
|
+
forward(offset?: number): Promise<void>;
|
|
42
|
+
rewind(offset?: number): Promise<void>;
|
|
43
|
+
}
|
|
44
|
+
export declare const createRoomSessionRTPlaybackObject: (params: BaseComponentOptions<RoomSessionRTPlaybackEventsHandlerMapping>) => RoomSessionRTPlayback;
|
|
45
|
+
//# sourceMappingURL=RoomSessionRTPlayback.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoomSessionRTPlayback.d.ts","sourceRoot":"","sources":["../../../../../core/src/rooms/RoomSessionRTPlayback.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAA;AAC1D,OAAO,KAAK,EACV,qBAAqB,EACrB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACzB,MAAM,wBAAwB,CAAA;AAE/B;;;;;GAKG;AACH,MAAM,WAAW,qBAAsB,SAAQ,qBAAqB;IAClE,UAAU,CAAC,OAAO,EAAE,wBAAwB,GAAG,IAAI,CAAA;CACpD;AAED,oBAAY,yCAAyC,GAAG,MAAM,CAC5D,uBAAuB,EACvB,CAAC,QAAQ,EAAE,qBAAqB,KAAK,IAAI,CAC1C,CAAA;AAED,qBAAa,wBACX,SAAQ,aAAa,CAAC,yCAAyC,CAC/D,YAAW,oBAAoB;IAE/B,OAAO,CAAC,QAAQ,CAA0B;gBAGxC,OAAO,EAAE,oBAAoB,CAAC,yCAAyC,CAAC;IAO1E,IAAI,EAAE,WAEL;IAED,IAAI,MAAM,WAET;IAED,IAAI,aAAa,WAEhB;IAED,IAAI,GAAG,WAEN;IAED,IAAI,KAAK,uCAER;IAED,IAAI,MAAM,WAET;IAED,IAAI,SAAS,qBAKZ;IAED,IAAI,OAAO,qBAKV;IAED,IAAI,QAAQ,WAEX;IAED,IAAI,QAAQ,YAEX;IAED,gBAAgB;IAChB,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,wBAAwB;IAIhD,KAAK;IAUL,MAAM;IAUN,IAAI;IAUJ,SAAS,CAAC,MAAM,EAAE,MAAM;IAWxB,IAAI,CAAC,QAAQ,EAAE,MAAM;IAWrB,OAAO,CAAC,MAAM,GAAE,MAAa;IAW7B,MAAM,CAAC,MAAM,GAAE,MAAa;CAUnC;AAED,eAAO,MAAM,iCAAiC,WACpC,qBAAqB,yCAAyC,CAAC,KACtE,qBAWF,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoomSessionRTPlayback.test.d.ts","sourceRoot":"","sources":["../../../../../core/src/rooms/RoomSessionRTPlayback.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `RoomSessionRecording.ts` -> Uses old event emitter - being used in browser SDK
|
|
3
|
+
* `RoomSessionRTRecording.ts` -> Uses new event emitter - being used in realtime SDK
|
|
4
|
+
*
|
|
5
|
+
* The `RoomSessionRecording.ts` file should be removed when we start using the new event emitter in browser sdk.
|
|
6
|
+
* We will also need to rename the new file and remove the letters `RT` from all the variables/classes/functions/types.
|
|
7
|
+
*/
|
|
8
|
+
import { BaseComponent } from '../BaseComponent';
|
|
9
|
+
import { BaseComponentOptions } from '../utils/interfaces';
|
|
10
|
+
import type { VideoRecordingContract, VideoRecordingEventNames, VideoRecordingEventParams, VideoRecordingMethods } from '../types/videoRecording';
|
|
11
|
+
/**
|
|
12
|
+
* Represents a specific recording of a room session.
|
|
13
|
+
*/
|
|
14
|
+
export interface RoomSessionRTRecording extends VideoRecordingContract {
|
|
15
|
+
setPayload(payload: VideoRecordingEventParams): void;
|
|
16
|
+
}
|
|
17
|
+
export declare type RoomSessionRTRecordingEventsHandlerMapping = Record<VideoRecordingEventNames, (recording: RoomSessionRTRecording) => void>;
|
|
18
|
+
export declare class RoomSessionRTRecordingAPI extends BaseComponent<RoomSessionRTRecordingEventsHandlerMapping> implements VideoRecordingMethods {
|
|
19
|
+
private _payload;
|
|
20
|
+
constructor(options: BaseComponentOptions<RoomSessionRTRecordingEventsHandlerMapping>);
|
|
21
|
+
get id(): string;
|
|
22
|
+
get roomId(): string;
|
|
23
|
+
get roomSessionId(): string;
|
|
24
|
+
get state(): "recording" | "paused" | "completed";
|
|
25
|
+
get duration(): number | undefined;
|
|
26
|
+
get startedAt(): Date | undefined;
|
|
27
|
+
get endedAt(): Date | undefined;
|
|
28
|
+
/** @internal */
|
|
29
|
+
protected setPayload(payload: VideoRecordingEventParams): void;
|
|
30
|
+
pause(): Promise<void>;
|
|
31
|
+
resume(): Promise<void>;
|
|
32
|
+
stop(): Promise<void>;
|
|
33
|
+
}
|
|
34
|
+
export declare const createRoomSessionRTRecordingObject: (params: BaseComponentOptions<RoomSessionRTRecordingEventsHandlerMapping>) => RoomSessionRTRecording;
|
|
35
|
+
//# sourceMappingURL=RoomSessionRTRecording.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoomSessionRTRecording.d.ts","sourceRoot":"","sources":["../../../../../core/src/rooms/RoomSessionRTRecording.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAA;AAC1D,OAAO,KAAK,EACV,sBAAsB,EACtB,wBAAwB,EACxB,yBAAyB,EACzB,qBAAqB,EACtB,MAAM,yBAAyB,CAAA;AAEhC;;GAEG;AACH,MAAM,WAAW,sBAAuB,SAAQ,sBAAsB;IACpE,UAAU,CAAC,OAAO,EAAE,yBAAyB,GAAG,IAAI,CAAA;CACrD;AAED,oBAAY,0CAA0C,GAAG,MAAM,CAC7D,wBAAwB,EACxB,CAAC,SAAS,EAAE,sBAAsB,KAAK,IAAI,CAC5C,CAAA;AAED,qBAAa,yBACX,SAAQ,aAAa,CAAC,0CAA0C,CAChE,YAAW,qBAAqB;IAEhC,OAAO,CAAC,QAAQ,CAA2B;gBAGzC,OAAO,EAAE,oBAAoB,CAAC,0CAA0C,CAAC;IAO3E,IAAI,EAAE,WAEL;IAED,IAAI,MAAM,WAET;IAED,IAAI,aAAa,WAEhB;IAED,IAAI,KAAK,yCAER;IAED,IAAI,QAAQ,uBAEX;IAED,IAAI,SAAS,qBAKZ;IAED,IAAI,OAAO,qBAKV;IAED,gBAAgB;IAChB,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,yBAAyB;IAIjD,KAAK;IAUL,MAAM;IAUN,IAAI;CASX;AAED,eAAO,MAAM,kCAAkC,WACrC,qBAAqB,0CAA0C,CAAC,KACvE,sBAWF,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoomSessionRTRecording.test.d.ts","sourceRoot":"","sources":["../../../../../core/src/rooms/RoomSessionRTRecording.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `RoomSessionStream.ts` -> Uses old event emitter - being used in browser SDK
|
|
3
|
+
* `RoomSessionRTStream.ts` -> Uses new event emitter - being used in realtime SDK
|
|
4
|
+
*
|
|
5
|
+
* The `RoomSessionStream.ts` file should be removed when we start using the new event emitter in browser sdk.
|
|
6
|
+
* We will also need to rename the new file and remove the letters `RT` from all the variables/classes/functions/types.
|
|
7
|
+
*/
|
|
8
|
+
import { BaseComponent } from '../BaseComponent';
|
|
9
|
+
import { BaseComponentOptions } from '../utils/interfaces';
|
|
10
|
+
import type { VideoStreamContract, VideoStreamEventNames, VideoStreamEventParams, VideoStreamMethods } from '../types/videoStream';
|
|
11
|
+
/**
|
|
12
|
+
* Represents a specific Stream of a room session.
|
|
13
|
+
*/
|
|
14
|
+
export interface RoomSessionRTStream extends VideoStreamContract {
|
|
15
|
+
setPayload(payload: VideoStreamEventParams): void;
|
|
16
|
+
}
|
|
17
|
+
export declare type RoomSessionRTStreamEventsHandlerMapping = Record<VideoStreamEventNames, (stream: RoomSessionRTStream) => void>;
|
|
18
|
+
export declare class RoomSessionRTStreamAPI extends BaseComponent<RoomSessionRTStreamEventsHandlerMapping> implements VideoStreamMethods {
|
|
19
|
+
private _payload;
|
|
20
|
+
constructor(options: BaseComponentOptions<RoomSessionRTStreamEventsHandlerMapping>);
|
|
21
|
+
get id(): string;
|
|
22
|
+
get roomId(): string;
|
|
23
|
+
get roomSessionId(): string;
|
|
24
|
+
get state(): "streaming" | "completed";
|
|
25
|
+
get duration(): number | undefined;
|
|
26
|
+
get url(): string | undefined;
|
|
27
|
+
get startedAt(): Date | undefined;
|
|
28
|
+
get endedAt(): Date | undefined;
|
|
29
|
+
/** @internal */
|
|
30
|
+
protected setPayload(payload: VideoStreamEventParams): void;
|
|
31
|
+
stop(): Promise<void>;
|
|
32
|
+
}
|
|
33
|
+
export declare const createRoomSessionRTStreamObject: (params: BaseComponentOptions<RoomSessionRTStreamEventsHandlerMapping>) => RoomSessionRTStream;
|
|
34
|
+
//# sourceMappingURL=RoomSessionRTStream.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoomSessionRTStream.d.ts","sourceRoot":"","sources":["../../../../../core/src/rooms/RoomSessionRTStream.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAA;AAC1D,OAAO,KAAK,EACV,mBAAmB,EACnB,qBAAqB,EACrB,sBAAsB,EACtB,kBAAkB,EACnB,MAAM,sBAAsB,CAAA;AAE7B;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,mBAAmB;IAC9D,UAAU,CAAC,OAAO,EAAE,sBAAsB,GAAG,IAAI,CAAA;CAClD;AAED,oBAAY,uCAAuC,GAAG,MAAM,CAC1D,qBAAqB,EACrB,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CACtC,CAAA;AAED,qBAAa,sBACX,SAAQ,aAAa,CAAC,uCAAuC,CAC7D,YAAW,kBAAkB;IAE7B,OAAO,CAAC,QAAQ,CAAwB;gBAGtC,OAAO,EAAE,oBAAoB,CAAC,uCAAuC,CAAC;IAOxE,IAAI,EAAE,WAEL;IAED,IAAI,MAAM,WAET;IAED,IAAI,aAAa,WAEhB;IAED,IAAI,KAAK,8BAER;IAED,IAAI,QAAQ,uBAEX;IAED,IAAI,GAAG,uBAEN;IAED,IAAI,SAAS,qBAKZ;IAED,IAAI,OAAO,qBAGV;IAED,gBAAgB;IAChB,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,sBAAsB;IAI9C,IAAI;CASX;AAED,eAAO,MAAM,+BAA+B,WAClC,qBAAqB,uCAAuC,CAAC,KACpE,mBAWF,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoomSessionRTStream.test.d.ts","sourceRoot":"","sources":["../../../../../core/src/rooms/RoomSessionRTStream.test.ts"],"names":[],"mappings":""}
|
|
@@ -5,7 +5,11 @@ export interface BaseRoomInterface<EventTypes extends EventEmitter.ValidEventTyp
|
|
|
5
5
|
memberId: string;
|
|
6
6
|
}
|
|
7
7
|
export * from './methods';
|
|
8
|
+
export * from './methodsRT';
|
|
8
9
|
export * from './RoomSessionRecording';
|
|
10
|
+
export * from './RoomSessionRTRecording';
|
|
9
11
|
export * from './RoomSessionPlayback';
|
|
12
|
+
export * from './RoomSessionRTPlayback';
|
|
10
13
|
export * from './RoomSessionStream';
|
|
14
|
+
export * from './RoomSessionRTStream';
|
|
11
15
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../core/src/rooms/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,IAAI,CAAA;AAEhD,MAAM,WAAW,iBAAiB,CAChC,UAAU,SAAS,YAAY,CAAC,eAAe,CAC/C,SAAQ,aAAa,CAAC,UAAU,CAAC;IACjC,MAAM,EAAE,MAAM,CAAA;IACd,aAAa,EAAE,MAAM,CAAA;IACrB,QAAQ,EAAE,MAAM,CAAA;CACjB;AAED,cAAc,WAAW,CAAA;AACzB,cAAc,wBAAwB,CAAA;AACtC,cAAc,uBAAuB,CAAA;AACrC,cAAc,qBAAqB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../core/src/rooms/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,IAAI,CAAA;AAEhD,MAAM,WAAW,iBAAiB,CAChC,UAAU,SAAS,YAAY,CAAC,eAAe,CAC/C,SAAQ,aAAa,CAAC,UAAU,CAAC;IACjC,MAAM,EAAE,MAAM,CAAA;IACd,aAAa,EAAE,MAAM,CAAA;IACrB,QAAQ,EAAE,MAAM,CAAA;CACjB;AAED,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,wBAAwB,CAAA;AACtC,cAAc,0BAA0B,CAAA;AACxC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `methods.ts` -> Uses old event emitter - being used in browser SDK
|
|
3
|
+
* `methodsRT.ts` -> Uses new event emitter - being used in realtime SDK
|
|
4
|
+
*
|
|
5
|
+
* Once we start using the new event emitter in browser sdk
|
|
6
|
+
* The functions that are written in `methodsRT.ts` should be removed from the `methods.ts`
|
|
7
|
+
* We will also need to delete one of the files and rename new functions/types
|
|
8
|
+
*/
|
|
9
|
+
import { BaseRoomInterface, RoomSessionRTPlayback, RoomSessionRTRecording, RoomSessionRTStream } from '.';
|
|
10
|
+
import { VideoPosition } from '../types';
|
|
11
|
+
declare type RoomMethodParams = Record<string, unknown>;
|
|
12
|
+
interface RoomMethodPropertyDescriptor<OutputType, ParamsType> extends PropertyDescriptor {
|
|
13
|
+
value: (params: ParamsType) => Promise<OutputType>;
|
|
14
|
+
}
|
|
15
|
+
declare type RoomMethodDescriptor<OutputType = unknown, ParamsType = RoomMethodParams> = RoomMethodPropertyDescriptor<OutputType, ParamsType> & ThisType<BaseRoomInterface<string>>;
|
|
16
|
+
/**
|
|
17
|
+
* Room Methods
|
|
18
|
+
*/
|
|
19
|
+
export declare type PlayRTParams = {
|
|
20
|
+
url: string;
|
|
21
|
+
volume?: number;
|
|
22
|
+
positions?: Record<string, VideoPosition>;
|
|
23
|
+
layout?: string;
|
|
24
|
+
seekPosition?: number;
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated Use {@link seekPosition} instead.
|
|
27
|
+
* `currentTimecode` will be removed in v4.0.0
|
|
28
|
+
*/
|
|
29
|
+
currentTimecode?: number;
|
|
30
|
+
};
|
|
31
|
+
export interface PlayRTOutput {
|
|
32
|
+
playback: RoomSessionRTPlayback;
|
|
33
|
+
}
|
|
34
|
+
export declare const playRT: RoomMethodDescriptor<RoomSessionRTPlayback, PlayRTParams>;
|
|
35
|
+
export interface GetRTPlaybacksOutput {
|
|
36
|
+
playbacks: RoomSessionRTPlayback[];
|
|
37
|
+
}
|
|
38
|
+
export declare const getRTPlaybacks: RoomMethodDescriptor<GetRTPlaybacksOutput>;
|
|
39
|
+
export interface StartRTRecordingOutput {
|
|
40
|
+
recording: RoomSessionRTRecording;
|
|
41
|
+
}
|
|
42
|
+
export declare const startRTRecording: RoomMethodDescriptor<RoomSessionRTRecording>;
|
|
43
|
+
export interface GetRTRecordingsOutput {
|
|
44
|
+
recordings: RoomSessionRTRecording[];
|
|
45
|
+
}
|
|
46
|
+
export declare const getRTRecordings: RoomMethodDescriptor<GetRTRecordingsOutput>;
|
|
47
|
+
export interface StartRTStreamParams {
|
|
48
|
+
url: string;
|
|
49
|
+
}
|
|
50
|
+
export interface StartRTStreamOutput {
|
|
51
|
+
stream: RoomSessionRTStream;
|
|
52
|
+
}
|
|
53
|
+
export declare const startRTStream: RoomMethodDescriptor<StartRTStreamOutput, StartRTStreamParams>;
|
|
54
|
+
export interface GetRTStreamsOutput {
|
|
55
|
+
streams: RoomSessionRTStream[];
|
|
56
|
+
}
|
|
57
|
+
export declare const getRTStreams: RoomMethodDescriptor<GetRTStreamsOutput>;
|
|
58
|
+
export declare type GetRTPlaybacks = ReturnType<typeof getRTPlaybacks.value>;
|
|
59
|
+
export declare type PlayRT = ReturnType<typeof playRT.value>;
|
|
60
|
+
export declare type GetRTRecordings = ReturnType<typeof getRTRecordings.value>;
|
|
61
|
+
export declare type StartRTRecording = ReturnType<typeof startRTRecording.value>;
|
|
62
|
+
export declare type GetRTStreams = ReturnType<typeof getRTStreams.value>;
|
|
63
|
+
export declare type StartRTStream = ReturnType<typeof startRTStream.value>;
|
|
64
|
+
export {};
|
|
65
|
+
//# sourceMappingURL=methodsRT.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"methodsRT.d.ts","sourceRoot":"","sources":["../../../../../core/src/rooms/methodsRT.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EACL,iBAAiB,EACjB,qBAAqB,EACrB,sBAAsB,EACtB,mBAAmB,EAIpB,MAAM,GAAG,CAAA;AACV,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAExC,aAAK,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;AAE/C,UAAU,4BAA4B,CAAC,UAAU,EAAE,UAAU,CAC3D,SAAQ,kBAAkB;IAC1B,KAAK,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,OAAO,CAAC,UAAU,CAAC,CAAA;CACnD;AAED,aAAK,oBAAoB,CACvB,UAAU,GAAG,OAAO,EACpB,UAAU,GAAG,gBAAgB,IAC3B,4BAA4B,CAAC,UAAU,EAAE,UAAU,CAAC,GAEtD,QAAQ,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC,CAAA;AAErC;;GAEG;AACH,oBAAY,YAAY,GAAG;IACzB,GAAG,EAAE,MAAM,CAAA;IACX,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CAAA;IACzC,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAA;CACzB,CAAA;AACD,MAAM,WAAW,YAAY;IAC3B,QAAQ,EAAE,qBAAqB,CAAA;CAChC;AACD,eAAO,MAAM,MAAM,EAAE,oBAAoB,CAAC,qBAAqB,EAAE,YAAY,CAkC1E,CAAA;AAEH,MAAM,WAAW,oBAAoB;IACnC,SAAS,EAAE,qBAAqB,EAAE,CAAA;CACnC;AACD,eAAO,MAAM,cAAc,EAAE,oBAAoB,CAAC,oBAAoB,CA+CrE,CAAA;AAED,MAAM,WAAW,sBAAsB;IACrC,SAAS,EAAE,sBAAsB,CAAA;CAClC;AACD,eAAO,MAAM,gBAAgB,EAAE,oBAAoB,CAAC,sBAAsB,CAgCzE,CAAA;AAED,MAAM,WAAW,qBAAqB;IACpC,UAAU,EAAE,sBAAsB,EAAE,CAAA;CACrC;AACD,eAAO,MAAM,eAAe,EAAE,oBAAoB,CAAC,qBAAqB,CA+CvE,CAAA;AAED,MAAM,WAAW,mBAAmB;IAClC,GAAG,EAAE,MAAM,CAAA;CACZ;AACD,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,mBAAmB,CAAA;CAC5B;AACD,eAAO,MAAM,aAAa,EAAE,oBAAoB,CAC9C,mBAAmB,EACnB,mBAAmB,CAqCpB,CAAA;AAED,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,mBAAmB,EAAE,CAAA;CAC/B;AACD,eAAO,MAAM,YAAY,EAAE,oBAAoB,CAAC,kBAAkB,CA+CjE,CAAA;AAED,oBAAY,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,KAAK,CAAC,CAAA;AACpE,oBAAY,MAAM,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAA;AAEpD,oBAAY,eAAe,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,CAAA;AACtE,oBAAY,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,KAAK,CAAC,CAAA;AAExE,oBAAY,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,KAAK,CAAC,CAAA;AAChE,oBAAY,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,KAAK,CAAC,CAAA"}
|