@lark-sh/client 0.1.23 → 0.1.24

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/README.md CHANGED
@@ -13,7 +13,7 @@ JavaScript/TypeScript client for [Lark](https://lark.sh) - a real-time database
13
13
  - **Local-first writes** - Optimistic updates appear instantly
14
14
  - **Works everywhere** - Browsers and Node.js
15
15
  - **TypeScript support** - Full type definitions included
16
- - **~10KB gzipped** - Lightweight bundle
16
+ - **~20KB gzipped** - Lightweight bundle
17
17
 
18
18
  ## Installation
19
19
 
@@ -5321,8 +5321,8 @@ var _LarkDatabase = class _LarkDatabase {
5321
5321
  */
5322
5322
  _LarkDatabase.ServerValue = ServerValue;
5323
5323
  // Use real timers for ping so fake timers in tests don't cause infinite loops
5324
- _LarkDatabase._realSetInterval = globalThis.setInterval;
5325
- _LarkDatabase._realClearInterval = globalThis.clearInterval;
5324
+ _LarkDatabase._realSetInterval = globalThis.setInterval.bind(globalThis);
5325
+ _LarkDatabase._realClearInterval = globalThis.clearInterval.bind(globalThis);
5326
5326
  var LarkDatabase = _LarkDatabase;
5327
5327
 
5328
5328
  export {
@@ -5337,4 +5337,4 @@ export {
5337
5337
  ServerValue,
5338
5338
  LarkDatabase
5339
5339
  };
5340
- //# sourceMappingURL=chunk-3MBKCYWV.mjs.map
5340
+ //# sourceMappingURL=chunk-MTT7WQB4.mjs.map