@3dsource/angular-unreal-module 0.0.68 → 0.0.71
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
|
@@ -6,8 +6,8 @@ import { Store } from '@ngrx/store';
|
|
|
6
6
|
import * as rxjs from 'rxjs';
|
|
7
7
|
import { Observable, Subject } from 'rxjs';
|
|
8
8
|
import * as _3dsource_angular_unreal_module from '@3dsource/angular-unreal-module';
|
|
9
|
-
import { IKeyCode, ImageOutputValues } from '@3dsource/utils';
|
|
10
9
|
import { MetaBoxCommandPacket, MetaBoxCommandList } from '@3dsource/types-unreal';
|
|
10
|
+
import { IKeyCode, ImageOutputValues } from '@3dsource/utils';
|
|
11
11
|
import { SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
|
|
12
12
|
import * as _ngrx_effects from '@ngrx/effects';
|
|
13
13
|
|
|
@@ -91,11 +91,9 @@ declare class UnrealSceneComponent implements AfterViewInit {
|
|
|
91
91
|
lightMode: i0.Signal<boolean>;
|
|
92
92
|
isFreezeFrameLoading: i0.Signal<boolean>;
|
|
93
93
|
isExistMatchUrls: i0.Signal<boolean>;
|
|
94
|
-
private aggregatorService;
|
|
95
94
|
private commandsSender;
|
|
96
95
|
private inputService;
|
|
97
96
|
private videoService;
|
|
98
|
-
private streamTelemetryService;
|
|
99
97
|
private element;
|
|
100
98
|
private destroyRef;
|
|
101
99
|
private get resizeValues();
|
|
@@ -292,7 +290,12 @@ declare const EToClientMessageType: {
|
|
|
292
290
|
readonly VideoEncoderAvgQP: 5;
|
|
293
291
|
readonly LatencyTest: 6;
|
|
294
292
|
readonly InitialSettings: 7;
|
|
293
|
+
readonly FileExtension: 8;
|
|
294
|
+
readonly FileMimeType: 9;
|
|
295
|
+
readonly FileContents: 10;
|
|
296
|
+
readonly TestEcho: 11;
|
|
295
297
|
readonly InputControlOwnership: 12;
|
|
298
|
+
readonly GamepadResponse: 13;
|
|
296
299
|
readonly Protocol: 255;
|
|
297
300
|
};
|
|
298
301
|
|
|
@@ -323,6 +326,29 @@ declare const DATA_CHANNEL_CONNECTION_TIMEOUT = 8000;
|
|
|
323
326
|
declare const SIGNALLING_PERCENT_VALUE = 56;
|
|
324
327
|
declare const SCREEN_LOCKER_CONTAINER_ID = "3dsource_start_screen";
|
|
325
328
|
|
|
329
|
+
declare function provideAngularUnrealModule(config?: {
|
|
330
|
+
playwright: boolean;
|
|
331
|
+
}): i0.EnvironmentProviders;
|
|
332
|
+
|
|
333
|
+
interface NormalizeAndQuantizeUnsignedValue {
|
|
334
|
+
inRange: boolean;
|
|
335
|
+
x: number;
|
|
336
|
+
y: number;
|
|
337
|
+
}
|
|
338
|
+
interface UnquantizeAndDenormalizeUnsignedValue {
|
|
339
|
+
x: number;
|
|
340
|
+
y: number;
|
|
341
|
+
}
|
|
342
|
+
interface NormalizeAndQuantizeSignedValue {
|
|
343
|
+
x: number;
|
|
344
|
+
y: number;
|
|
345
|
+
}
|
|
346
|
+
interface InputProps {
|
|
347
|
+
controlScheme: EControlSchemeTypeValues;
|
|
348
|
+
suppressBrowserKeys: boolean;
|
|
349
|
+
fakeMouseWithTouches: boolean;
|
|
350
|
+
}
|
|
351
|
+
|
|
326
352
|
declare class SubService {
|
|
327
353
|
store: Store<any>;
|
|
328
354
|
disconnect$: rxjs.Observable<false>;
|
|
@@ -338,7 +364,6 @@ declare class AFKService extends SubService {
|
|
|
338
364
|
private selectWarnTimeout;
|
|
339
365
|
private isViewportReady;
|
|
340
366
|
constructor();
|
|
341
|
-
initAfk(): void;
|
|
342
367
|
init(): void;
|
|
343
368
|
private hideOverlay;
|
|
344
369
|
/**
|
|
@@ -371,6 +396,7 @@ declare class AggregatorService extends SubService {
|
|
|
371
396
|
private readonly videoService;
|
|
372
397
|
private readonly webrtcPlayer;
|
|
373
398
|
private readonly freezeFrame;
|
|
399
|
+
private readonly fileReceiver;
|
|
374
400
|
private readonly unrealInitialConfig;
|
|
375
401
|
private readonly responseEventListeners;
|
|
376
402
|
/**
|
|
@@ -378,7 +404,8 @@ declare class AggregatorService extends SubService {
|
|
|
378
404
|
*/
|
|
379
405
|
private readonly destroy$;
|
|
380
406
|
constructor();
|
|
381
|
-
init(): void;
|
|
407
|
+
protected init(): void;
|
|
408
|
+
protected listenWebRTC(): void;
|
|
382
409
|
protected initialize(): void;
|
|
383
410
|
private addResponseEventListener;
|
|
384
411
|
private showOnScreenKeyboard;
|
|
@@ -386,7 +413,6 @@ declare class AggregatorService extends SubService {
|
|
|
386
413
|
private startListenCallbacks;
|
|
387
414
|
private showMessageFromUnreal;
|
|
388
415
|
private resetResponseList;
|
|
389
|
-
protected listenWebRTC(): void;
|
|
390
416
|
private dataChannelMessageHandler;
|
|
391
417
|
static ɵfac: i0.ɵɵFactoryDeclaration<AggregatorService, never>;
|
|
392
418
|
static ɵprov: i0.ɵɵInjectableDeclaration<AggregatorService>;
|
|
@@ -407,12 +433,13 @@ declare class CommandTelemetryService {
|
|
|
407
433
|
private lastTime;
|
|
408
434
|
private uuid;
|
|
409
435
|
private viewId;
|
|
410
|
-
private
|
|
411
|
-
private
|
|
436
|
+
private sessionId;
|
|
437
|
+
private userId;
|
|
412
438
|
private payloads;
|
|
413
439
|
private readonly httpClient;
|
|
414
440
|
private readonly unrealInitialConfig;
|
|
415
441
|
constructor();
|
|
442
|
+
protected init(): void;
|
|
416
443
|
private get timeNow();
|
|
417
444
|
private get sessionTime();
|
|
418
445
|
private get canSkipSending();
|
|
@@ -463,9 +490,9 @@ declare function TelemetryStop(externalId: string, payload?: any): void;
|
|
|
463
490
|
declare function ResetTelemetry(): void;
|
|
464
491
|
|
|
465
492
|
declare class ConsoleExtensionsService extends SubService {
|
|
466
|
-
private
|
|
467
|
-
|
|
468
|
-
init(): void;
|
|
493
|
+
#private;
|
|
494
|
+
constructor();
|
|
495
|
+
protected init(): void;
|
|
469
496
|
private unrealHelp;
|
|
470
497
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConsoleExtensionsService, never>;
|
|
471
498
|
static ɵprov: i0.ɵɵInjectableDeclaration<ConsoleExtensionsService>;
|
|
@@ -483,7 +510,8 @@ declare class FreezeFrameService extends SubService {
|
|
|
483
510
|
private size;
|
|
484
511
|
private jpeg;
|
|
485
512
|
private freezeFrameOverlay;
|
|
486
|
-
|
|
513
|
+
constructor();
|
|
514
|
+
protected init(): void;
|
|
487
515
|
setData(view: Uint8Array): void;
|
|
488
516
|
private dispatchInProgress;
|
|
489
517
|
start(view: Uint8Array): void;
|
|
@@ -598,6 +626,7 @@ declare class SignallingService extends SubService {
|
|
|
598
626
|
private wsMsgHandlers;
|
|
599
627
|
protected correlationId: string;
|
|
600
628
|
constructor();
|
|
629
|
+
protected init(): void;
|
|
601
630
|
connectToSignaling(urlList: string[]): Observable<WebSocket>;
|
|
602
631
|
protected startEstablishingConnection(): void;
|
|
603
632
|
private adaptUrlsToRegion;
|
|
@@ -715,25 +744,23 @@ declare class StreamStatusTelemetryService {
|
|
|
715
744
|
private store;
|
|
716
745
|
private videoService;
|
|
717
746
|
constructor();
|
|
747
|
+
protected init(): void;
|
|
718
748
|
private mapEventData;
|
|
719
|
-
protected initTelemetry(): void;
|
|
720
749
|
private trackEventToMixPanel;
|
|
721
|
-
init(): void;
|
|
722
750
|
static ɵfac: i0.ɵɵFactoryDeclaration<StreamStatusTelemetryService, never>;
|
|
723
751
|
static ɵprov: i0.ɵɵInjectableDeclaration<StreamStatusTelemetryService>;
|
|
724
752
|
}
|
|
725
753
|
|
|
726
754
|
declare class UnrealCommunicatorService {
|
|
755
|
+
private store;
|
|
727
756
|
private telemetry;
|
|
728
|
-
private afkService;
|
|
729
757
|
private freezeFrame;
|
|
730
758
|
private webrtcPlayer;
|
|
731
759
|
private videoService;
|
|
732
|
-
private consoleExtensions;
|
|
733
|
-
private store;
|
|
734
760
|
private destroy$;
|
|
735
761
|
private cirrusConnected;
|
|
736
762
|
constructor();
|
|
763
|
+
protected init(): void;
|
|
737
764
|
destroy(): void;
|
|
738
765
|
sendCommandToUnreal(data: MetaBoxCommandPacket): void;
|
|
739
766
|
emitUIInteraction(descriptor: MetaBoxCommandPacket): void;
|
|
@@ -774,6 +801,7 @@ declare class VideoService extends SubService {
|
|
|
774
801
|
*/
|
|
775
802
|
videoStats$: rxjs.Observable<IAggregatedStat>;
|
|
776
803
|
constructor();
|
|
804
|
+
protected init(): void;
|
|
777
805
|
setContainer(container: HTMLDivElement): void;
|
|
778
806
|
setLatencyTimings(latencyTimings: string): void;
|
|
779
807
|
setEncoder(data: any): void;
|
|
@@ -804,7 +832,7 @@ declare class WebRtcPlayerService extends SubService {
|
|
|
804
832
|
private forceMonoAudio;
|
|
805
833
|
private dcClient;
|
|
806
834
|
constructor();
|
|
807
|
-
private
|
|
835
|
+
private init;
|
|
808
836
|
private createWebRtcOffer;
|
|
809
837
|
private createDataChannel;
|
|
810
838
|
private receiveAnswer;
|
|
@@ -828,7 +856,7 @@ declare class WebRtcPlayerService extends SubService {
|
|
|
828
856
|
}
|
|
829
857
|
|
|
830
858
|
declare class AfkPlaywrightService extends AFKService {
|
|
831
|
-
|
|
859
|
+
init(): void;
|
|
832
860
|
static ɵfac: i0.ɵɵFactoryDeclaration<AfkPlaywrightService, never>;
|
|
833
861
|
static ɵprov: i0.ɵɵInjectableDeclaration<AfkPlaywrightService>;
|
|
834
862
|
}
|
|
@@ -841,6 +869,7 @@ declare class SignallingPlaywrightService extends SignallingService {
|
|
|
841
869
|
}
|
|
842
870
|
|
|
843
871
|
declare class UnrealCommunicatorPlaywrightService extends UnrealCommunicatorService {
|
|
872
|
+
init(): void;
|
|
844
873
|
sendCommandToUnreal(): void;
|
|
845
874
|
sendInputData(): void;
|
|
846
875
|
listenVideo(): void;
|
|
@@ -849,74 +878,85 @@ declare class UnrealCommunicatorPlaywrightService extends UnrealCommunicatorServ
|
|
|
849
878
|
}
|
|
850
879
|
|
|
851
880
|
declare class AggregatorPlaywrightService extends AggregatorService {
|
|
852
|
-
|
|
853
|
-
initialize(): void;
|
|
881
|
+
init(): void;
|
|
854
882
|
static ɵfac: i0.ɵɵFactoryDeclaration<AggregatorPlaywrightService, never>;
|
|
855
883
|
static ɵprov: i0.ɵɵInjectableDeclaration<AggregatorPlaywrightService>;
|
|
856
884
|
}
|
|
857
885
|
|
|
858
886
|
declare class FreezeFramePlaywrightService extends FreezeFrameService {
|
|
859
887
|
init(): void;
|
|
860
|
-
invalidate(): void;
|
|
861
888
|
static ɵfac: i0.ɵɵFactoryDeclaration<FreezeFramePlaywrightService, never>;
|
|
862
889
|
static ɵprov: i0.ɵɵInjectableDeclaration<FreezeFramePlaywrightService>;
|
|
863
890
|
}
|
|
864
891
|
|
|
865
892
|
declare class CommandTelemetryPlaywrightService extends CommandTelemetryService {
|
|
866
|
-
|
|
867
|
-
listenCallbacks(): void;
|
|
893
|
+
init(): void;
|
|
868
894
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommandTelemetryPlaywrightService, never>;
|
|
869
895
|
static ɵprov: i0.ɵɵInjectableDeclaration<CommandTelemetryPlaywrightService>;
|
|
870
896
|
}
|
|
871
897
|
|
|
872
898
|
declare class StreamStatusTelemetryPlaywrightService extends StreamStatusTelemetryService {
|
|
873
|
-
|
|
899
|
+
init(): void;
|
|
874
900
|
static ɵfac: i0.ɵɵFactoryDeclaration<StreamStatusTelemetryPlaywrightService, never>;
|
|
875
901
|
static ɵprov: i0.ɵɵInjectableDeclaration<StreamStatusTelemetryPlaywrightService>;
|
|
876
902
|
}
|
|
877
903
|
|
|
878
|
-
declare
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
} | {
|
|
884
|
-
provide: typeof CommandTelemetryService;
|
|
885
|
-
useClass: typeof CommandTelemetryService;
|
|
886
|
-
} | {
|
|
887
|
-
provide: typeof AggregatorService;
|
|
888
|
-
useClass: typeof AggregatorService;
|
|
889
|
-
} | {
|
|
890
|
-
provide: typeof FreezeFrameService;
|
|
891
|
-
useClass: typeof FreezeFrameService;
|
|
892
|
-
} | {
|
|
893
|
-
provide: typeof UnrealCommunicatorService;
|
|
894
|
-
useClass: typeof UnrealCommunicatorService;
|
|
895
|
-
} | {
|
|
896
|
-
provide: typeof AFKService;
|
|
897
|
-
useClass: typeof AFKService;
|
|
898
|
-
} | {
|
|
899
|
-
provide: typeof SignallingService;
|
|
900
|
-
useClass: typeof SignallingService;
|
|
901
|
-
})[];
|
|
904
|
+
declare class ConsoleExtensionsPlaywrightService extends ConsoleExtensionsService {
|
|
905
|
+
init(): void;
|
|
906
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConsoleExtensionsPlaywrightService, never>;
|
|
907
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConsoleExtensionsPlaywrightService>;
|
|
908
|
+
}
|
|
902
909
|
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
910
|
+
declare const ReceivedMimeTypes: {
|
|
911
|
+
readonly ApplicationJson: "application/json";
|
|
912
|
+
};
|
|
913
|
+
type ReceivedMimeType = (typeof ReceivedMimeTypes)[keyof typeof ReceivedMimeTypes];
|
|
914
|
+
|
|
915
|
+
declare class FileReceiverService extends SubService {
|
|
916
|
+
fileComplete$: Subject<ReceivedFile>;
|
|
917
|
+
private valid;
|
|
918
|
+
private chunks;
|
|
919
|
+
private mimetype;
|
|
920
|
+
private receiving;
|
|
921
|
+
private extension;
|
|
922
|
+
private timestampStart;
|
|
923
|
+
private data;
|
|
924
|
+
constructor();
|
|
925
|
+
protected init(): void;
|
|
926
|
+
reset(): void;
|
|
927
|
+
private resetOnStart;
|
|
928
|
+
/**
|
|
929
|
+
* Processes a files extension when received over data channel
|
|
930
|
+
* @param view - the file extension data
|
|
931
|
+
*/
|
|
932
|
+
setExtensionFromBytes(view: Uint8Array): void;
|
|
933
|
+
/**
|
|
934
|
+
* Processes a files mime type when received over data channel
|
|
935
|
+
* @param view - the file mime type data
|
|
936
|
+
*/
|
|
937
|
+
setMimeTypeFromBytes(view: Uint8Array): void;
|
|
938
|
+
setContentsFromBytes(view: Uint8Array): void;
|
|
907
939
|
}
|
|
908
|
-
interface
|
|
909
|
-
|
|
910
|
-
|
|
940
|
+
interface ReceivedFile {
|
|
941
|
+
blob: Blob;
|
|
942
|
+
mimetype: ReceivedMimeType;
|
|
943
|
+
extension: string;
|
|
944
|
+
valid: boolean;
|
|
911
945
|
}
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
946
|
+
|
|
947
|
+
declare class FileReceiverPlaywrightService extends FileReceiverService {
|
|
948
|
+
init(): void;
|
|
915
949
|
}
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
950
|
+
|
|
951
|
+
declare class FileHandlerService {
|
|
952
|
+
private fileService;
|
|
953
|
+
private fileHandlers;
|
|
954
|
+
private handleJsonFile;
|
|
955
|
+
observeFileResponse<K extends keyof MetaBoxCommandList, T extends MetaBoxCommandList[K] = MetaBoxCommandList[K]>(mimetype: ReceivedMimeType, data: T, sender: (data: T) => void, timeOut?: number): Observable<{
|
|
956
|
+
commandCallback: ObservedCallbackResponse<T>;
|
|
957
|
+
} | never>;
|
|
958
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileHandlerService, never>;
|
|
959
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FileHandlerService>;
|
|
920
960
|
}
|
|
921
961
|
|
|
922
962
|
declare function AnswerHandler(this: SignallingService, msg: RTCSessionDescriptionInit): void;
|
|
@@ -1940,5 +1980,5 @@ declare class SafePipe implements PipeTransform {
|
|
|
1940
1980
|
static ɵpipe: i0.ɵɵPipeDeclaration<SafePipe, "safe", true>;
|
|
1941
1981
|
}
|
|
1942
1982
|
|
|
1943
|
-
export { AFKService, AfkPlaywrightService, AggregatorPlaywrightService, AggregatorService, AnswerHandler, CONSOLE_COMMAND_DISABLE_MESSAGES, CONSOLE_COMMAND_ENABLE_MESSAGES, CONSOLE_COMMAND_PIXEL_QUALITY, ClickableOverlayComponent, CommandTelemetryPlaywrightService, CommandTelemetryService, ConfigHandler, 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, 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 };
|
|
1944
|
-
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, RequestStream, SSInfo, SignalDescriptor, SignalingData, SignalingMessageHandler, SignalingMessageMap, StreamConfig, StreamRequestContext, StreamResolutionProps, StreamerListMessage, TelemetryType, UnknownFields, UnquantizeAndDenormalizeUnsignedValue, UnrealCallBackJson, UnrealInitialConfig, UnrealState, WSCloseCodesValues, WrappedMetaBoxCommandPacket };
|
|
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 };
|
|
1984
|
+
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 };
|