@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
|
@@ -4590,15 +4590,15 @@ declare class Store {
|
|
|
4590
4590
|
});
|
|
4591
4591
|
set(key: string, value: any, sync?: boolean, emit?: boolean): Promise<void>;
|
|
4592
4592
|
private remoteSet;
|
|
4593
|
-
bulkSet(data: {
|
|
4593
|
+
bulkSet(data: Array<{
|
|
4594
4594
|
key: string;
|
|
4595
4595
|
payload: any;
|
|
4596
|
-
}
|
|
4596
|
+
}>): Promise<void>;
|
|
4597
4597
|
update(key: string, value: any, sync?: boolean): Promise<void>;
|
|
4598
4598
|
delete(key: string, sync?: boolean, emit?: boolean): Promise<void>;
|
|
4599
|
-
bulkDelete(data: {
|
|
4599
|
+
bulkDelete(data: Array<{
|
|
4600
4600
|
key: string;
|
|
4601
|
-
}
|
|
4601
|
+
}>): Promise<void>;
|
|
4602
4602
|
get(key: string): any;
|
|
4603
4603
|
getAll(): StoreData;
|
|
4604
4604
|
get rateLimits(): {
|