@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/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
- }[]): Promise<void>;
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
- }[]): Promise<void>;
4845
+ }>): Promise<void>;
4846
4846
  get(key: string): any;
4847
4847
  getAll(): StoreData;
4848
4848
  get rateLimits(): {