@wvdsh/api 0.1.32 → 0.1.33
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.
|
@@ -181,6 +181,10 @@ export declare const UrlParams: {
|
|
|
181
181
|
readonly EngineVersion: "engineversion";
|
|
182
182
|
readonly PlayKey: "pk";
|
|
183
183
|
readonly SdkConfig: "sdkconfig";
|
|
184
|
+
readonly Caller: "caller";
|
|
185
|
+
};
|
|
186
|
+
export declare const PlayRouteCaller: {
|
|
187
|
+
readonly Wavedash: "wavedash";
|
|
184
188
|
};
|
|
185
189
|
export declare const HEARTBEAT: {
|
|
186
190
|
/** Client sends heartbeat every 30 seconds when tab is visible */
|
|
@@ -108,7 +108,11 @@ export const UrlParams = {
|
|
|
108
108
|
Engine: 'engine',
|
|
109
109
|
EngineVersion: 'engineversion',
|
|
110
110
|
PlayKey: 'pk',
|
|
111
|
-
SdkConfig: 'sdkconfig'
|
|
111
|
+
SdkConfig: 'sdkconfig',
|
|
112
|
+
Caller: 'caller'
|
|
113
|
+
};
|
|
114
|
+
export const PlayRouteCaller = {
|
|
115
|
+
Wavedash: 'wavedash'
|
|
112
116
|
};
|
|
113
117
|
// ========== HEARTBEAT (client-side constants) ==========
|
|
114
118
|
const HEARTBEAT_CLIENT_INTERVAL_MS = 30_000;
|