@3dsource/angular-unreal-module 0.0.75 → 0.0.77-dev.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/index.d.ts
CHANGED
|
@@ -87,6 +87,9 @@ declare class UnrealSceneComponent implements AfterViewInit {
|
|
|
87
87
|
private width;
|
|
88
88
|
private height;
|
|
89
89
|
private store;
|
|
90
|
+
private streamStatusTelemetryService;
|
|
91
|
+
private aggregatorService;
|
|
92
|
+
private inputService;
|
|
90
93
|
readonly isDevMode: boolean;
|
|
91
94
|
readonly lightMode: i0.Signal<boolean>;
|
|
92
95
|
private isFreezeFrameLoading;
|
|
@@ -362,7 +365,6 @@ declare class AFKService extends SubService {
|
|
|
362
365
|
private countdownTimer;
|
|
363
366
|
private selectWarnTimeout;
|
|
364
367
|
private isViewportReady;
|
|
365
|
-
constructor();
|
|
366
368
|
init(): void;
|
|
367
369
|
private hideOverlay;
|
|
368
370
|
/**
|
|
@@ -403,8 +405,7 @@ declare class AggregatorService extends SubService {
|
|
|
403
405
|
* Never called for now
|
|
404
406
|
*/
|
|
405
407
|
private readonly destroy$;
|
|
406
|
-
|
|
407
|
-
protected init(): void;
|
|
408
|
+
init(): void;
|
|
408
409
|
protected listenWebRTC(): void;
|
|
409
410
|
protected initialize(): void;
|
|
410
411
|
private addResponseEventListener;
|
|
@@ -491,8 +492,7 @@ declare function ResetTelemetry(): void;
|
|
|
491
492
|
|
|
492
493
|
declare class ConsoleExtensionsService extends SubService {
|
|
493
494
|
#private;
|
|
494
|
-
|
|
495
|
-
protected init(): void;
|
|
495
|
+
init(): void;
|
|
496
496
|
private unrealHelp;
|
|
497
497
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConsoleExtensionsService, never>;
|
|
498
498
|
static ɵprov: i0.ɵɵInjectableDeclaration<ConsoleExtensionsService>;
|
|
@@ -510,8 +510,7 @@ declare class FreezeFrameService extends SubService {
|
|
|
510
510
|
private size;
|
|
511
511
|
private jpeg;
|
|
512
512
|
private freezeFrameOverlay;
|
|
513
|
-
|
|
514
|
-
protected init(): void;
|
|
513
|
+
init(): void;
|
|
515
514
|
setData(view: Uint8Array): void;
|
|
516
515
|
private dispatchInProgress;
|
|
517
516
|
start(view: Uint8Array): void;
|
|
@@ -538,7 +537,7 @@ declare class InputService extends SubService {
|
|
|
538
537
|
maxByteValue: number;
|
|
539
538
|
fingers: number[];
|
|
540
539
|
private offsetParams;
|
|
541
|
-
|
|
540
|
+
init(): void;
|
|
542
541
|
useKeyboardKeys(keys: IKeyCode[]): void;
|
|
543
542
|
private setup;
|
|
544
543
|
/**
|
|
@@ -741,10 +740,8 @@ declare class SignallingService extends SubService {
|
|
|
741
740
|
}
|
|
742
741
|
|
|
743
742
|
declare class StreamStatusTelemetryService {
|
|
744
|
-
private
|
|
745
|
-
|
|
746
|
-
constructor();
|
|
747
|
-
protected init(): void;
|
|
743
|
+
#private;
|
|
744
|
+
init(): void;
|
|
748
745
|
private mapEventData;
|
|
749
746
|
private trackEventToMixPanel;
|
|
750
747
|
static ɵfac: i0.ɵɵFactoryDeclaration<StreamStatusTelemetryService, never>;
|
|
@@ -753,11 +750,13 @@ declare class StreamStatusTelemetryService {
|
|
|
753
750
|
|
|
754
751
|
declare class UnrealCommunicatorService {
|
|
755
752
|
private store;
|
|
756
|
-
private
|
|
757
|
-
private
|
|
758
|
-
private
|
|
753
|
+
private commandTelemetryService;
|
|
754
|
+
private freezeFrameService;
|
|
755
|
+
private webRtcPlayerService;
|
|
759
756
|
private videoService;
|
|
760
757
|
private destroy$;
|
|
758
|
+
private afkService;
|
|
759
|
+
private consoleExtensionsService;
|
|
761
760
|
private cirrusConnected;
|
|
762
761
|
constructor();
|
|
763
762
|
protected init(): void;
|
|
@@ -926,12 +925,12 @@ declare class FileReceiverService extends SubService {
|
|
|
926
925
|
reset(): void;
|
|
927
926
|
private resetOnStart;
|
|
928
927
|
/**
|
|
929
|
-
* Processes a
|
|
928
|
+
* Processes a file extension when received over data channel
|
|
930
929
|
* @param view - the file extension data
|
|
931
930
|
*/
|
|
932
931
|
setExtensionFromBytes(view: Uint8Array): void;
|
|
933
932
|
/**
|
|
934
|
-
* Processes a
|
|
933
|
+
* Processes a file mime type when received over data channel
|
|
935
934
|
* @param view - the file mime type data
|
|
936
935
|
*/
|
|
937
936
|
setMimeTypeFromBytes(view: Uint8Array): void;
|
|
@@ -948,6 +947,12 @@ declare class FileReceiverPlaywrightService extends FileReceiverService {
|
|
|
948
947
|
init(): void;
|
|
949
948
|
}
|
|
950
949
|
|
|
950
|
+
declare class InputPlaywrightService extends InputService {
|
|
951
|
+
init(): void;
|
|
952
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPlaywrightService, never>;
|
|
953
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InputPlaywrightService>;
|
|
954
|
+
}
|
|
955
|
+
|
|
951
956
|
declare class FileHandlerService {
|
|
952
957
|
private fileService;
|
|
953
958
|
private fileHandlers;
|
|
@@ -1281,16 +1286,16 @@ declare const abortEstablishingConnection: _ngrx_store.ActionCreator<string, ()
|
|
|
1281
1286
|
declare const setUnrealPlaywrightConfig: _ngrx_store.ActionCreator<string, () => _ngrx_store.Action<string>>;
|
|
1282
1287
|
|
|
1283
1288
|
declare class UnrealEffects {
|
|
1289
|
+
private actions$;
|
|
1284
1290
|
private dialog;
|
|
1285
1291
|
private http;
|
|
1286
1292
|
private store;
|
|
1287
1293
|
private isDevMode;
|
|
1288
|
-
private unrealInitialConfig;
|
|
1289
|
-
private actions$;
|
|
1290
|
-
private player;
|
|
1291
|
-
private signallingService;
|
|
1292
1294
|
private scrollStrategy;
|
|
1295
|
+
private unrealInitialConfig;
|
|
1296
|
+
private webRtcPlayerService;
|
|
1293
1297
|
private commandsSender;
|
|
1298
|
+
private signallingService;
|
|
1294
1299
|
private videoService;
|
|
1295
1300
|
private dataChannelConnectionTimeout;
|
|
1296
1301
|
private connectionCompleted$;
|
|
@@ -1980,5 +1985,5 @@ declare class SafePipe implements PipeTransform {
|
|
|
1980
1985
|
static ɵpipe: i0.ɵɵPipeDeclaration<SafePipe, "safe", true>;
|
|
1981
1986
|
}
|
|
1982
1987
|
|
|
1983
|
-
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, 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 };
|
|
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 };
|
|
1984
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 };
|