@3dsource/angular-unreal-module 0.0.37 → 0.0.38-dev.1
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/LICENSE +14 -14
- package/README.md +107 -112
- package/fesm2022/3dsource-angular-unreal-module.mjs +101 -97
- package/fesm2022/3dsource-angular-unreal-module.mjs.map +1 -1
- package/index.d.ts +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -329,6 +329,7 @@ interface UnrealInitialConfig {
|
|
|
329
329
|
commandTelemetryReceiver?: string;
|
|
330
330
|
regionsPingUrl?: string;
|
|
331
331
|
screenLockerContainerId?: string;
|
|
332
|
+
dataChannelConnectionTimeout?: number;
|
|
332
333
|
}
|
|
333
334
|
|
|
334
335
|
declare const SpecialKeyCodes: {
|
|
@@ -423,7 +424,7 @@ declare const WS_TIMEOUT = 2000;
|
|
|
423
424
|
declare const WS_OPEN_STATE = 1;
|
|
424
425
|
declare const DEFAULT_TIMEOUT_PERIOD = 15;
|
|
425
426
|
declare const DEFAULT_WARN_TIMEOUT = 120;
|
|
426
|
-
declare const DATA_CHANNEL_CONNECTION_TIMEOUT =
|
|
427
|
+
declare const DATA_CHANNEL_CONNECTION_TIMEOUT = 8000;
|
|
427
428
|
declare const SCREEN_LOCKER_CONTAINER_ID = "3dsource_start_screen";
|
|
428
429
|
|
|
429
430
|
interface NormalizeAndQuantizeUnsignedValue {
|
|
@@ -855,6 +856,7 @@ declare class UnrealEffects {
|
|
|
855
856
|
private scrollStrategy;
|
|
856
857
|
private commandsSender;
|
|
857
858
|
private videoService;
|
|
859
|
+
private dataChannelConnectionTimeout;
|
|
858
860
|
cirrusDisconnectEffect$: rxjs.Observable<_ngrx_store.Action<string>> & _ngrx_effects.CreateEffectMetadata;
|
|
859
861
|
destroyConnections$: rxjs.Observable<{
|
|
860
862
|
disconnectReason: _3dsource_angular_unreal_module.DisconnectType;
|