@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.
@@ -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
- }[]): Promise<void>;
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
- }[]): Promise<void>;
4601
+ }>): Promise<void>;
4602
4602
  get(key: string): any;
4603
4603
  getAll(): StoreData;
4604
4604
  get rateLimits(): {