@arkadiuminc/sdk 2.14.0 → 2.14.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/README.md
CHANGED
|
@@ -33,7 +33,6 @@ main();
|
|
|
33
33
|
|
|
34
34
|
- Analytics
|
|
35
35
|
- [App Insights](TODO)
|
|
36
|
-
- [Google Tag manager](TODO)
|
|
37
36
|
- [Standardized Spec for every game](https://arkadium.atlassian.net/wiki/spaces/DepartmentBusinessOperations/pages/23675756/Standardized+Spec+for+every+game+-+GA+AppInsights)
|
|
38
37
|
- [AppInsight stamper](https://arkadium.atlassian.net/wiki/spaces/PhoenixGames/pages/23993424/AppInsight+stamper)
|
|
39
38
|
- [Adaptive Sampling Implementation](https://arkadium.atlassian.net/wiki/spaces/PhoenixGames/pages/23897949/Adaptive+Sampling+Implementation)
|
|
@@ -34,11 +34,12 @@ export declare class PersistenceGame implements IPersistence {
|
|
|
34
34
|
*/
|
|
35
35
|
constructor(rpcProvider: RpcProvider, host: IHost, backend: Backend);
|
|
36
36
|
getCookie(cookieName: string): Promise<string>;
|
|
37
|
+
private getPrefixedLocalStorageKey;
|
|
37
38
|
getLocalStorageItem(key: string): Promise<string | null>;
|
|
38
39
|
setLocalStorageItem(key: string, value: string): Promise<void>;
|
|
39
40
|
removeLocalStorageItem(key: string): Promise<void>;
|
|
40
41
|
private getCollection;
|
|
41
|
-
private
|
|
42
|
+
private getRemoteToLocalStorageKey;
|
|
42
43
|
private isRemoteStorageBlacklisted;
|
|
43
44
|
getRemoteStorageItem(key: string): Promise<RemoteStorageValueType | null>;
|
|
44
45
|
setRemoteStorageItem(key: string, value: RemoteStorageValueType): Promise<void>;
|