@wvdsh/api 0.1.36 → 0.1.38
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.
|
@@ -24,7 +24,7 @@ export type DeviceFingerprint = {
|
|
|
24
24
|
};
|
|
25
25
|
/**
|
|
26
26
|
* Default values used by Game SDKs
|
|
27
|
-
*
|
|
27
|
+
* Published externally in the @wvdsh/api package
|
|
28
28
|
*
|
|
29
29
|
* We use int values here rather than strings to speed up data marshalling in SDK calls
|
|
30
30
|
*/
|
|
@@ -193,6 +193,9 @@ export declare const UrlParams: {
|
|
|
193
193
|
export declare const PlayRouteCaller: {
|
|
194
194
|
readonly Wavedash: "wavedash";
|
|
195
195
|
};
|
|
196
|
+
export declare const PAID_CONTENT_PICOMATCH_OPTIONS: {
|
|
197
|
+
readonly dot: true;
|
|
198
|
+
};
|
|
196
199
|
export declare const HEARTBEAT: {
|
|
197
200
|
/** Client sends heartbeat every 30 seconds when tab is visible */
|
|
198
201
|
readonly CLIENT_INTERVAL_MS: 30000;
|
|
@@ -112,6 +112,8 @@ export const UrlParams = {
|
|
|
112
112
|
export const PlayRouteCaller = {
|
|
113
113
|
Wavedash: 'wavedash'
|
|
114
114
|
};
|
|
115
|
+
// ========== PAID CONTENT ==========
|
|
116
|
+
export const PAID_CONTENT_PICOMATCH_OPTIONS = { dot: true };
|
|
115
117
|
// ========== HEARTBEAT (client-side constants) ==========
|
|
116
118
|
const HEARTBEAT_CLIENT_INTERVAL_MS = 30_000;
|
|
117
119
|
export const HEARTBEAT = {
|