@cloudflare/realtimekit 1.2.3 → 1.2.4-staging.2
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/dist/EncryptionManager.cjs.js +1 -1
- package/dist/EncryptionManager.d.ts +4 -4
- package/dist/EncryptionManager.es.js +13 -13
- package/dist/browser.js +12 -12
- package/dist/dependencies.txt +1 -1
- package/dist/index.cjs.js +10 -10
- package/dist/index.d.ts +4 -4
- package/dist/index.es.js +574 -312
- package/dist/index.es5.js +892 -710
- package/dist/index.rn.js +10 -10
- package/dist/ts3.4/dist/EncryptionManager.d.ts +4 -4
- package/dist/ts3.4/dist/index.d.ts +4 -4
- package/package.json +2 -3
package/dist/index.d.ts
CHANGED
|
@@ -4834,15 +4834,15 @@ declare class Store {
|
|
|
4834
4834
|
});
|
|
4835
4835
|
set(key: string, value: any, sync?: boolean, emit?: boolean): Promise<void>;
|
|
4836
4836
|
private remoteSet;
|
|
4837
|
-
bulkSet(data: {
|
|
4837
|
+
bulkSet(data: Array<{
|
|
4838
4838
|
key: string;
|
|
4839
4839
|
payload: any;
|
|
4840
|
-
}
|
|
4840
|
+
}>): Promise<void>;
|
|
4841
4841
|
update(key: string, value: any, sync?: boolean): Promise<void>;
|
|
4842
4842
|
delete(key: string, sync?: boolean, emit?: boolean): Promise<void>;
|
|
4843
|
-
bulkDelete(data: {
|
|
4843
|
+
bulkDelete(data: Array<{
|
|
4844
4844
|
key: string;
|
|
4845
|
-
}
|
|
4845
|
+
}>): Promise<void>;
|
|
4846
4846
|
get(key: string): any;
|
|
4847
4847
|
getAll(): StoreData;
|
|
4848
4848
|
get rateLimits(): {
|