@arkadiuminc/sdk 2.31.0 → 2.31.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.
@@ -32,6 +32,7 @@ export declare class PersistenceGame implements IPersistence {
32
32
  private backend;
33
33
  private debugProvider;
34
34
  private remoteStorageBlacklist;
35
+ private remoteSetQueue;
35
36
  /**
36
37
  * @internal
37
38
  */
@@ -45,6 +46,7 @@ export declare class PersistenceGame implements IPersistence {
45
46
  private getRemoteToLocalStorageKey;
46
47
  private isRemoteStorageBlacklisted;
47
48
  getRemoteStorageItem(key: string): Promise<RemoteStorageValueType | null>;
49
+ private setRemoteStorageItemInternal;
48
50
  setRemoteStorageItem(key: string, value: RemoteStorageValueType): Promise<boolean>;
49
51
  removeRemoteStorageItem(key: string): Promise<boolean>;
50
52
  }
@@ -0,0 +1,6 @@
1
+ export declare class AsyncQueue {
2
+ private queue;
3
+ private isProcessing;
4
+ enqueue<T>(task: () => Promise<T>): Promise<T>;
5
+ private processQueue;
6
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkadiuminc/sdk",
3
- "version": "2.31.0",
3
+ "version": "2.31.1",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "main": "dist/pkg/arkadium-sdk.umd.js",