@3dsource/angular-unreal-module 0.0.85 → 0.0.87
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@3dsource/angular-unreal-module",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.87",
|
|
4
4
|
"description": "Angular Unreal module for connect with unreal engine stream",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"3dsource",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"npm": ">9"
|
|
35
35
|
},
|
|
36
36
|
"module": "fesm2022/3dsource-angular-unreal-module.mjs",
|
|
37
|
-
"typings": "
|
|
37
|
+
"typings": "types/3dsource-angular-unreal-module.d.ts",
|
|
38
38
|
"exports": {
|
|
39
39
|
"./package.json": {
|
|
40
40
|
"default": "./package.json"
|
|
41
41
|
},
|
|
42
42
|
".": {
|
|
43
|
-
"types": "./
|
|
43
|
+
"types": "./types/3dsource-angular-unreal-module.d.ts",
|
|
44
44
|
"default": "./fesm2022/3dsource-angular-unreal-module.mjs"
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -12,7 +12,7 @@ import { SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angu
|
|
|
12
12
|
import * as _ngrx_effects from '@ngrx/effects';
|
|
13
13
|
|
|
14
14
|
declare class ClickableOverlayComponent {
|
|
15
|
-
state: i0.Signal<{
|
|
15
|
+
readonly state: i0.Signal<{
|
|
16
16
|
message: string;
|
|
17
17
|
className: string;
|
|
18
18
|
isActivityDetected: boolean;
|
|
@@ -24,8 +24,8 @@ declare class ClickableOverlayComponent {
|
|
|
24
24
|
|
|
25
25
|
declare class FreezeFrameComponent {
|
|
26
26
|
private store;
|
|
27
|
-
freezeFrameProgressMessageFromVideo: i0.Signal<number | null | undefined>;
|
|
28
|
-
combinedFreeze: i0.Signal<string | null | undefined>;
|
|
27
|
+
readonly freezeFrameProgressMessageFromVideo: i0.Signal<number | null | undefined>;
|
|
28
|
+
readonly combinedFreeze: i0.Signal<string | null | undefined>;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<FreezeFrameComponent, never>;
|
|
30
30
|
static ɵcmp: i0.ɵɵComponentDeclaration<FreezeFrameComponent, "app-freeze-frame", never, {}, {}, never, never, true, never>;
|
|
31
31
|
}
|
|
@@ -63,7 +63,7 @@ declare class StatGraphComponent implements AfterViewInit {
|
|
|
63
63
|
min: number;
|
|
64
64
|
current: number;
|
|
65
65
|
ngAfterViewInit(): void;
|
|
66
|
-
resize(): void;
|
|
66
|
+
resize(e: Event): void;
|
|
67
67
|
private draw;
|
|
68
68
|
private getColor;
|
|
69
69
|
private pushData;
|
|
@@ -72,9 +72,9 @@ declare class StatGraphComponent implements AfterViewInit {
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
declare class UnrealSceneComponent {
|
|
75
|
-
isStudio: i0.InputSignal<boolean>;
|
|
76
|
-
useContainerAsSizeProvider: i0.InputSignal<boolean>;
|
|
77
|
-
studioResolutionSize: i0.InputSignal<{
|
|
75
|
+
readonly isStudio: i0.InputSignal<boolean>;
|
|
76
|
+
readonly useContainerAsSizeProvider: i0.InputSignal<boolean>;
|
|
77
|
+
readonly studioResolutionSize: i0.InputSignal<{
|
|
78
78
|
width: number;
|
|
79
79
|
height: number;
|
|
80
80
|
}>;
|
|
@@ -119,7 +119,7 @@ declare class UnrealSceneComponent {
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
declare class IntroSrcComponent {
|
|
122
|
-
private videoElement;
|
|
122
|
+
private readonly videoElement;
|
|
123
123
|
private store;
|
|
124
124
|
protected imageIntroSrc: i0.Signal<string | null>;
|
|
125
125
|
protected videoIntroSrc: i0.Signal<string | null>;
|
|
@@ -136,14 +136,29 @@ declare class VideoStatsComponent implements OnInit {
|
|
|
136
136
|
private videoService;
|
|
137
137
|
private isDevMode;
|
|
138
138
|
private obs$;
|
|
139
|
-
viewportReady: i0.Signal<boolean | undefined>;
|
|
140
|
-
ssInfo: i0.Signal<string | undefined>;
|
|
141
|
-
fpsTick: i0.Signal<
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
139
|
+
readonly viewportReady: i0.Signal<boolean | undefined>;
|
|
140
|
+
readonly ssInfo: i0.Signal<string | undefined>;
|
|
141
|
+
readonly fpsTick: i0.Signal<{
|
|
142
|
+
value: number;
|
|
143
|
+
hash: number;
|
|
144
|
+
} | undefined>;
|
|
145
|
+
readonly fpsAvgTick: i0.Signal<{
|
|
146
|
+
value: number;
|
|
147
|
+
hash: number;
|
|
148
|
+
} | undefined>;
|
|
149
|
+
readonly bitrateTick: i0.Signal<{
|
|
150
|
+
value: number;
|
|
151
|
+
hash: number;
|
|
152
|
+
} | undefined>;
|
|
153
|
+
readonly videoQP: i0.Signal<{
|
|
154
|
+
value: number;
|
|
155
|
+
hash: number;
|
|
156
|
+
} | undefined>;
|
|
157
|
+
readonly bitrateAverageTick: i0.Signal<{
|
|
158
|
+
value: number;
|
|
159
|
+
hash: number;
|
|
160
|
+
} | undefined>;
|
|
161
|
+
readonly videoStatus: i0.Signal<{
|
|
147
162
|
key: string;
|
|
148
163
|
value: any;
|
|
149
164
|
}[] | undefined>;
|
|
@@ -967,6 +982,15 @@ declare class FileHandlerService {
|
|
|
967
982
|
static ɵprov: i0.ɵɵInjectableDeclaration<FileHandlerService>;
|
|
968
983
|
}
|
|
969
984
|
|
|
985
|
+
declare class AnalyticsService {
|
|
986
|
+
#private;
|
|
987
|
+
sendEventToMixPanel(name: string, params?: Record<string, unknown>): void;
|
|
988
|
+
constructor();
|
|
989
|
+
private monitorMouse;
|
|
990
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnalyticsService, never>;
|
|
991
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AnalyticsService>;
|
|
992
|
+
}
|
|
993
|
+
|
|
970
994
|
declare function AnswerHandler(this: SignallingService, msg: RTCSessionDescriptionInit): void;
|
|
971
995
|
|
|
972
996
|
declare function ConfigHandler(this: SignallingService, msg: ConfigMessage): void;
|
|
@@ -1287,6 +1311,17 @@ declare const resetAfkAction: _ngrx_store.ActionCreator<string, () => _ngrx_stor
|
|
|
1287
1311
|
declare const resetWarnTimeout: _ngrx_store.ActionCreator<string, () => _ngrx_store.Action<string>>;
|
|
1288
1312
|
declare const abortEstablishingConnection: _ngrx_store.ActionCreator<string, () => _ngrx_store.Action<string>>;
|
|
1289
1313
|
declare const setUnrealPlaywrightConfig: _ngrx_store.ActionCreator<string, () => _ngrx_store.Action<string>>;
|
|
1314
|
+
declare const saveAnalyticsEvent: _ngrx_store.ActionCreator<string, (props: {
|
|
1315
|
+
event: {
|
|
1316
|
+
name: string;
|
|
1317
|
+
params: Record<string, unknown>;
|
|
1318
|
+
};
|
|
1319
|
+
}) => {
|
|
1320
|
+
event: {
|
|
1321
|
+
name: string;
|
|
1322
|
+
params: Record<string, unknown>;
|
|
1323
|
+
};
|
|
1324
|
+
} & _ngrx_store.Action<string>>;
|
|
1290
1325
|
|
|
1291
1326
|
declare class UnrealEffects {
|
|
1292
1327
|
private actions$;
|
|
@@ -1410,6 +1445,13 @@ declare const unrealFeature: {
|
|
|
1410
1445
|
selectVideoIntroSrc: _ngrx_store.MemoizedSelector<Record<string, any>, string | null, (featureState: _3dsource_angular_unreal_module.UnrealState) => string | null>;
|
|
1411
1446
|
selectImageIntroSrc: _ngrx_store.MemoizedSelector<Record<string, any>, string | null, (featureState: _3dsource_angular_unreal_module.UnrealState) => string | null>;
|
|
1412
1447
|
selectImageLoadingSrc: _ngrx_store.MemoizedSelector<Record<string, any>, string, (featureState: _3dsource_angular_unreal_module.UnrealState) => string>;
|
|
1448
|
+
selectAnalyticsEvent: _ngrx_store.MemoizedSelector<Record<string, any>, {
|
|
1449
|
+
name: string;
|
|
1450
|
+
params: Record<string, unknown>;
|
|
1451
|
+
} | null, (featureState: _3dsource_angular_unreal_module.UnrealState) => {
|
|
1452
|
+
name: string;
|
|
1453
|
+
params: Record<string, unknown>;
|
|
1454
|
+
} | null>;
|
|
1413
1455
|
};
|
|
1414
1456
|
|
|
1415
1457
|
interface CommandsLoaderState {
|
|
@@ -1455,6 +1497,10 @@ interface UnrealState {
|
|
|
1455
1497
|
imageIntroSrc: string | null;
|
|
1456
1498
|
imageLoadingSrc: string;
|
|
1457
1499
|
streamRequestContext: StreamRequestContext | null;
|
|
1500
|
+
analyticsEvent: {
|
|
1501
|
+
name: string;
|
|
1502
|
+
params: Record<string, unknown>;
|
|
1503
|
+
} | null;
|
|
1458
1504
|
}
|
|
1459
1505
|
declare const initialState: UnrealState;
|
|
1460
1506
|
declare const unrealReducer: _ngrx_store.ActionReducer<UnrealState, _ngrx_store.Action<string>>;
|
|
@@ -1540,23 +1586,24 @@ interface SignalingData {
|
|
|
1540
1586
|
}
|
|
1541
1587
|
|
|
1542
1588
|
declare const OrchestrationMessageTypes: {
|
|
1543
|
-
readonly
|
|
1544
|
-
readonly streamerDisconnected: "streamerDisconnected";
|
|
1545
|
-
readonly interruptClientStream: "interruptClientStream";
|
|
1589
|
+
readonly ping: "ping";
|
|
1546
1590
|
readonly error: "error";
|
|
1547
|
-
readonly
|
|
1548
|
-
readonly
|
|
1549
|
-
readonly listStreamers: "listStreamers";
|
|
1550
|
-
readonly instanceReady: "instanceReady";
|
|
1551
|
-
readonly instanceReserved: "instanceReserved";
|
|
1591
|
+
readonly offer: "offer";
|
|
1592
|
+
readonly answer: "answer";
|
|
1552
1593
|
readonly ssInfo: "ssInfo";
|
|
1594
|
+
readonly config: "config";
|
|
1553
1595
|
readonly playerCount: "playerCount";
|
|
1554
|
-
readonly answer: "answer";
|
|
1555
1596
|
readonly iceCandidate: "iceCandidate";
|
|
1597
|
+
readonly streamerList: "streamerList";
|
|
1598
|
+
readonly requestStream: "requestStream";
|
|
1599
|
+
readonly listStreamers: "listStreamers";
|
|
1600
|
+
readonly instanceReady: "instanceReady";
|
|
1556
1601
|
readonly p2pEstablished: "p2pEstablished";
|
|
1557
|
-
readonly
|
|
1558
|
-
readonly
|
|
1559
|
-
readonly
|
|
1602
|
+
readonly instanceReserved: "instanceReserved";
|
|
1603
|
+
readonly playerDisconnected: "playerDisconnected";
|
|
1604
|
+
readonly streamPreparedForInteraction: "streamPreparedForInteraction";
|
|
1605
|
+
readonly streamerDisconnected: "streamerDisconnected";
|
|
1606
|
+
readonly interruptClientStream: "interruptClientStream";
|
|
1560
1607
|
};
|
|
1561
1608
|
interface InstanceReady extends InstanceMessageBase {
|
|
1562
1609
|
type: 'instanceReady';
|
|
@@ -1629,6 +1676,10 @@ interface P2PEstablishedMessage extends MessageBase {
|
|
|
1629
1676
|
source: string;
|
|
1630
1677
|
sessionId: string;
|
|
1631
1678
|
}
|
|
1679
|
+
interface StreamPreparedForInteractionMessage extends MessageBase {
|
|
1680
|
+
type: 'streamPreparedForInteraction';
|
|
1681
|
+
correlationId: string;
|
|
1682
|
+
}
|
|
1632
1683
|
interface RequestStream extends MessageBase {
|
|
1633
1684
|
type: 'requestStream';
|
|
1634
1685
|
correlationId: string;
|
|
@@ -1680,25 +1731,26 @@ interface CustomApplicationContext {
|
|
|
1680
1731
|
applicationId: string;
|
|
1681
1732
|
};
|
|
1682
1733
|
}
|
|
1683
|
-
type StreamRequestContext =
|
|
1734
|
+
type StreamRequestContext = MetaboxStudioContext | MetaboxProductContext | CustomApplicationContext | MetaboxEnvironmentContext | MetaboxBasicConfiguratorContext | MetaboxModularConfiguratorContext;
|
|
1684
1735
|
interface SignalingMessageMap {
|
|
1685
|
-
[OrchestrationMessageTypes.
|
|
1736
|
+
[OrchestrationMessageTypes.ping]: PingMessage;
|
|
1737
|
+
[OrchestrationMessageTypes.offer]: RTCSessionDescriptionInit;
|
|
1738
|
+
[OrchestrationMessageTypes.error]: OrchestrationErrorMessage;
|
|
1686
1739
|
[OrchestrationMessageTypes.ssInfo]: SSInfo;
|
|
1687
|
-
[OrchestrationMessageTypes.playerCount]: PlayerCountMessage;
|
|
1688
|
-
[OrchestrationMessageTypes.answer]: RTCSessionDescriptionInit;
|
|
1689
1740
|
[OrchestrationMessageTypes.config]: ConfigMessage;
|
|
1741
|
+
[OrchestrationMessageTypes.answer]: RTCSessionDescriptionInit;
|
|
1742
|
+
[OrchestrationMessageTypes.playerCount]: PlayerCountMessage;
|
|
1690
1743
|
[OrchestrationMessageTypes.iceCandidate]: CandidateMessage;
|
|
1744
|
+
[OrchestrationMessageTypes.streamerList]: StreamerListMessage;
|
|
1691
1745
|
[OrchestrationMessageTypes.instanceReady]: InstanceReady;
|
|
1692
|
-
[OrchestrationMessageTypes.instanceReserved]: InstanceReserved;
|
|
1693
|
-
[OrchestrationMessageTypes.error]: OrchestrationErrorMessage;
|
|
1694
|
-
[OrchestrationMessageTypes.ping]: PingMessage;
|
|
1695
|
-
[OrchestrationMessageTypes.offer]: RTCSessionDescriptionInit;
|
|
1696
1746
|
[OrchestrationMessageTypes.requestStream]: RequestStream;
|
|
1697
|
-
[OrchestrationMessageTypes.interruptClientStream]: InterruptClientStream;
|
|
1698
|
-
[OrchestrationMessageTypes.playerDisconnected]: ForceClientDisconnect;
|
|
1699
|
-
[OrchestrationMessageTypes.streamerDisconnected]: ForceClientDisconnect;
|
|
1700
1747
|
[OrchestrationMessageTypes.listStreamers]: ListStreamersMessage;
|
|
1701
1748
|
[OrchestrationMessageTypes.p2pEstablished]: P2PEstablishedMessage;
|
|
1749
|
+
[OrchestrationMessageTypes.instanceReserved]: InstanceReserved;
|
|
1750
|
+
[OrchestrationMessageTypes.playerDisconnected]: ForceClientDisconnect;
|
|
1751
|
+
[OrchestrationMessageTypes.streamPreparedForInteraction]: StreamPreparedForInteractionMessage;
|
|
1752
|
+
[OrchestrationMessageTypes.streamerDisconnected]: ForceClientDisconnect;
|
|
1753
|
+
[OrchestrationMessageTypes.interruptClientStream]: InterruptClientStream;
|
|
1702
1754
|
}
|
|
1703
1755
|
type OrchestrationMessageType = keyof SignalingMessageMap;
|
|
1704
1756
|
type AnySignalingMessage = SignalingMessageMap[OrchestrationMessageType] | string;
|
|
@@ -1962,7 +2014,7 @@ declare class LowBandwidthDetectorComponent implements OnInit {
|
|
|
1962
2014
|
private readonly videoQuality$;
|
|
1963
2015
|
private readonly fps$;
|
|
1964
2016
|
private readonly bitrateDrop$;
|
|
1965
|
-
readonly fps: i0.Signal<number
|
|
2017
|
+
readonly fps: i0.Signal<number>;
|
|
1966
2018
|
readonly nativeQuality: i0.Signal<Quality | undefined>;
|
|
1967
2019
|
readonly isLowBandwidth: i0.Signal<boolean | undefined>;
|
|
1968
2020
|
readonly aggregatedStats: i0.Signal<_3dsource_angular_unreal_module.InboundVideoStats | undefined>;
|
|
@@ -1985,5 +2037,5 @@ declare class SafePipe implements PipeTransform {
|
|
|
1985
2037
|
static ɵpipe: i0.ɵɵPipeDeclaration<SafePipe, "safe", true>;
|
|
1986
2038
|
}
|
|
1987
2039
|
|
|
1988
|
-
export { AFKService, AfkPlaywrightService, AggregatorPlaywrightService, AggregatorService, AnswerHandler, CONSOLE_COMMAND_DISABLE_MESSAGES, CONSOLE_COMMAND_ENABLE_MESSAGES, CONSOLE_COMMAND_PIXEL_QUALITY, ClickableOverlayComponent, CommandTelemetryPlaywrightService, CommandTelemetryService, ConfigHandler, ConsoleExtensionsPlaywrightService, ConsoleExtensionsService, DATA_CHANNEL_CONNECTION_TIMEOUT, DEBOUNCE_TO_MANY_RESIZE_CALLS, DEFAULT_AFK_TIMEOUT, DEFAULT_AFK_TIMEOUT_PERIOD, DataFlowMonitor, DevModeService, DisconnectReason, EControlSchemeType, EMessageType, EToClientMessageType, FULL_HD_HEIGHT, FULL_HD_WIDTH, FileHandlerService, FileReceiverPlaywrightService, FileReceiverService, FilterSettingsComponent, FreezeFrameComponent, FreezeFramePlaywrightService, FreezeFrameService, IceCandidateHandler, ImageLoadingSrcComponent, InputOptions, InputPlaywrightService, InputService, InstanceReadyHandler, InstanceReservedHandler, IntroSrcComponent, KalmanFilter1D, LatencyTimings, LowBandwidthDetectorComponent, LowBandwidthModalComponent, MINIMAL_FPS, MouseButton, MouseButtonsMask, OnCloseHandler, OnErrorHandler, OnMessageHandler, OnOpenHandler, OrchestrationMessageTypes, POLLING_TIME, PingHandler, PlayerCountHandler, RegionsPingService, ResetTelemetry, SAME_SIZE_THRESHOLD, SCREEN_LOCKER_CONTAINER_ID, SIGNALLING_PERCENT_VALUE, SSInfoHandler, STREAMING_VIDEO_ID, SafePipe, SignallingPlaywrightService, SignallingService, SpecialKeyCodes, StatGraphComponent, StreamStatusTelemetryPlaywrightService, StreamStatusTelemetryService, SubService, TelemetryStart, TelemetryStop, UNREAL_CONFIG, UnrealCommunicatorPlaywrightService, UnrealCommunicatorService, UnrealEffects, UnrealInternalSignalEvents, UnrealSceneComponent, UnrealStatusMessage, VideoRecorder, VideoService, VideoStatsComponent, WSCloseCode_CIRRUS_ABNORMAL_CLOSURE, WSCloseCode_CIRRUS_MAX_PLAYERS_ERROR, WSCloseCode_CIRRUS_PLAYER_DISCONNECTED, WSCloseCode_CIRRUS_STREAMER_KIKED_PLAYER, WSCloseCode_FORCE_CIRRUS_CLOSE, WSCloseCode_NORMAL_AFK_TIMEOUT, WSCloseCode_NORMAL_CLOSURE, WSCloseCode_NORMAL_MANUAL_DISCONNECT, WSCloseCode_UNKNOWN, WSCloseCodes, WS_OPEN_STATE, WS_TIMEOUT, WebRtcPlayerService, WebrtcErrorModalComponent, abortEstablishingConnection, changeLowBandwidth, changeStatusMainVideoOnScene, changeStreamResolutionAction, changeStreamResolutionSuccessAction, commandCompleted, commandStarted, decodeData, destroyRemoteConnections, destroyUnrealScene, disconnectStream, dispatchResize, dropConnection, floatToSmoothPercents, forceResizeUnrealVideo, fromResizeObserver, fromSignal, fromUnrealCallBackSignal, getActiveUrl, getImageFromVideoStream, getRtcErrorMessage, initSignalling, initialState, isLoaderScreenVisible, keepMaxUntilReset, mapQpToQuality, observeCommandResponse, provideAngularUnrealModule, removeExileCommands, resetAfk, resetAfkAction, resetConfig, resetIntroSrc, resetWarnTimeout, selectClientAndViewIds, selectCommandProgress, selectCommandsInProgress, selectFreezeFrameCombinedDataUrl, selectFreezeFrameDataUrl, selectFreezeFrameDataUrlFromVideo, selectFreezeFrameProgressMessageFromVideo, selectIsAutostart, selectIsExistMatchUrls, selectIsFreezeFrameLoading, selectIsVideoPlayingAndDataChannelConnected, selectLastCommandInProgress, selectLoaderCommands, selectShowLoader, selectShowReconnectPopup, selectSignalingParameters, selectStreamConfig, selectTotalProgress, selectWarnTimeout, sendSignal, setAfkTimerHide, setAfkTimerVisible, setAwsInstance, setCirrusConnected, setCirrusDisconnected, setConfig, setDataChannelConnected, setEstablishingConnection, setFreezeFrame, setFreezeFrameFromVideo, setIntroImageSrc, setIntroVideoSrc, setLoadingImageSrc, setLoopBackCommandIsCompleted, setMaxFps, setOrchestrationContext, setOrchestrationMessage, setOrchestrationParameters, setOrchestrationProgress, setSignalingName, setStatusMessage, setStatusPercentSignallingServer, setStreamClientCompanyId, setStreamViewId, setUnrealPlaywrightConfig, setViewportNotReady, setViewportReady, showPopupWithoutAutoStart, showUnrealErrorMessage, smoothTransition, startStream, trackMixpanelEvent, unrealFeature, unrealReducer, updateCirrusInfo };
|
|
1989
|
-
export type { AnySignalingMessage, AwsInstance, CandidateMessage, CloseReason, CommandsLoaderState, ConfigMessage, ConnectionError, DataFlowCheckResult, DisconnectReasonType, EControlSchemeTypeValues, EMessageTypeValues, ForceClientDisconnect, FreezeFrameMessage, IAggregatedStat, InboundVideoStats, InputProps, InstanceReady, InstanceReserved, InterruptClientStream, LBMStats, ListStreamersMessage, MessageBase, NormalizeAndQuantizeSignedValue, NormalizeAndQuantizeUnsignedValue, ObservedCallbackResponse, OrchestrationErrorMessage, OrchestrationMessageType, P2PEstablishedMessage, PingMessage, PlayerCountMessage, PollingOrchestrationMessage, Quality, ReceivedFile, RequestStream, SSInfo, SignalDescriptor, SignalingData, SignalingMessageHandler, SignalingMessageMap, StreamConfig, StreamRequestContext, StreamResolutionProps, StreamerListMessage, TelemetryType, UnknownFields, UnquantizeAndDenormalizeUnsignedValue, UnrealCallBackJson, UnrealInitialConfig, UnrealState, WSCloseCodesValues, WrappedMetaBoxCommandPacket };
|
|
2040
|
+
export { AFKService, AfkPlaywrightService, AggregatorPlaywrightService, AggregatorService, AnalyticsService, AnswerHandler, CONSOLE_COMMAND_DISABLE_MESSAGES, CONSOLE_COMMAND_ENABLE_MESSAGES, CONSOLE_COMMAND_PIXEL_QUALITY, ClickableOverlayComponent, CommandTelemetryPlaywrightService, CommandTelemetryService, ConfigHandler, ConsoleExtensionsPlaywrightService, ConsoleExtensionsService, DATA_CHANNEL_CONNECTION_TIMEOUT, DEBOUNCE_TO_MANY_RESIZE_CALLS, DEFAULT_AFK_TIMEOUT, DEFAULT_AFK_TIMEOUT_PERIOD, DataFlowMonitor, DevModeService, DisconnectReason, EControlSchemeType, EMessageType, EToClientMessageType, FULL_HD_HEIGHT, FULL_HD_WIDTH, FileHandlerService, FileReceiverPlaywrightService, FileReceiverService, FilterSettingsComponent, FreezeFrameComponent, FreezeFramePlaywrightService, FreezeFrameService, IceCandidateHandler, ImageLoadingSrcComponent, InputOptions, InputPlaywrightService, InputService, InstanceReadyHandler, InstanceReservedHandler, IntroSrcComponent, KalmanFilter1D, LatencyTimings, LowBandwidthDetectorComponent, LowBandwidthModalComponent, MINIMAL_FPS, MouseButton, MouseButtonsMask, OnCloseHandler, OnErrorHandler, OnMessageHandler, OnOpenHandler, OrchestrationMessageTypes, POLLING_TIME, PingHandler, PlayerCountHandler, RegionsPingService, ResetTelemetry, SAME_SIZE_THRESHOLD, SCREEN_LOCKER_CONTAINER_ID, SIGNALLING_PERCENT_VALUE, SSInfoHandler, STREAMING_VIDEO_ID, SafePipe, SignallingPlaywrightService, SignallingService, SpecialKeyCodes, StatGraphComponent, StreamStatusTelemetryPlaywrightService, StreamStatusTelemetryService, SubService, TelemetryStart, TelemetryStop, UNREAL_CONFIG, UnrealCommunicatorPlaywrightService, UnrealCommunicatorService, UnrealEffects, UnrealInternalSignalEvents, UnrealSceneComponent, UnrealStatusMessage, VideoRecorder, VideoService, VideoStatsComponent, WSCloseCode_CIRRUS_ABNORMAL_CLOSURE, WSCloseCode_CIRRUS_MAX_PLAYERS_ERROR, WSCloseCode_CIRRUS_PLAYER_DISCONNECTED, WSCloseCode_CIRRUS_STREAMER_KIKED_PLAYER, WSCloseCode_FORCE_CIRRUS_CLOSE, WSCloseCode_NORMAL_AFK_TIMEOUT, WSCloseCode_NORMAL_CLOSURE, WSCloseCode_NORMAL_MANUAL_DISCONNECT, WSCloseCode_UNKNOWN, WSCloseCodes, WS_OPEN_STATE, WS_TIMEOUT, WebRtcPlayerService, WebrtcErrorModalComponent, abortEstablishingConnection, changeLowBandwidth, changeStatusMainVideoOnScene, changeStreamResolutionAction, changeStreamResolutionSuccessAction, commandCompleted, commandStarted, decodeData, destroyRemoteConnections, destroyUnrealScene, disconnectStream, dispatchResize, dropConnection, floatToSmoothPercents, forceResizeUnrealVideo, fromResizeObserver, fromSignal, fromUnrealCallBackSignal, getActiveUrl, getImageFromVideoStream, getRtcErrorMessage, initSignalling, initialState, isLoaderScreenVisible, keepMaxUntilReset, mapQpToQuality, observeCommandResponse, provideAngularUnrealModule, removeExileCommands, resetAfk, resetAfkAction, resetConfig, resetIntroSrc, resetWarnTimeout, saveAnalyticsEvent, selectClientAndViewIds, selectCommandProgress, selectCommandsInProgress, selectFreezeFrameCombinedDataUrl, selectFreezeFrameDataUrl, selectFreezeFrameDataUrlFromVideo, selectFreezeFrameProgressMessageFromVideo, selectIsAutostart, selectIsExistMatchUrls, selectIsFreezeFrameLoading, selectIsVideoPlayingAndDataChannelConnected, selectLastCommandInProgress, selectLoaderCommands, selectShowLoader, selectShowReconnectPopup, selectSignalingParameters, selectStreamConfig, selectTotalProgress, selectWarnTimeout, sendSignal, setAfkTimerHide, setAfkTimerVisible, setAwsInstance, setCirrusConnected, setCirrusDisconnected, setConfig, setDataChannelConnected, setEstablishingConnection, setFreezeFrame, setFreezeFrameFromVideo, setIntroImageSrc, setIntroVideoSrc, setLoadingImageSrc, setLoopBackCommandIsCompleted, setMaxFps, setOrchestrationContext, setOrchestrationMessage, setOrchestrationParameters, setOrchestrationProgress, setSignalingName, setStatusMessage, setStatusPercentSignallingServer, setStreamClientCompanyId, setStreamViewId, setUnrealPlaywrightConfig, setViewportNotReady, setViewportReady, showPopupWithoutAutoStart, showUnrealErrorMessage, smoothTransition, startStream, trackMixpanelEvent, unrealFeature, unrealReducer, updateCirrusInfo };
|
|
2041
|
+
export type { AnySignalingMessage, AwsInstance, CandidateMessage, CloseReason, CommandsLoaderState, ConfigMessage, ConnectionError, DataFlowCheckResult, DisconnectReasonType, EControlSchemeTypeValues, EMessageTypeValues, ForceClientDisconnect, FreezeFrameMessage, IAggregatedStat, InboundVideoStats, InputProps, InstanceReady, InstanceReserved, InterruptClientStream, LBMStats, ListStreamersMessage, MessageBase, NormalizeAndQuantizeSignedValue, NormalizeAndQuantizeUnsignedValue, ObservedCallbackResponse, OrchestrationErrorMessage, OrchestrationMessageType, P2PEstablishedMessage, PingMessage, PlayerCountMessage, PollingOrchestrationMessage, Quality, ReceivedFile, RequestStream, SSInfo, SignalDescriptor, SignalingData, SignalingMessageHandler, SignalingMessageMap, StreamConfig, StreamPreparedForInteractionMessage, StreamRequestContext, StreamResolutionProps, StreamerListMessage, TelemetryType, UnknownFields, UnquantizeAndDenormalizeUnsignedValue, UnrealCallBackJson, UnrealInitialConfig, UnrealState, WSCloseCodesValues, WrappedMetaBoxCommandPacket };
|