dexie-cloud-addon 4.4.6 → 4.4.7

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.
Files changed (50) hide show
  1. package/dist/modern/DXCWebSocketStatus.d.ts +1 -1
  2. package/dist/modern/DexieCloudAPI.d.ts +1 -1
  3. package/dist/modern/authentication/AuthPersistedContext.d.ts +2 -2
  4. package/dist/modern/currentUserEmitter.d.ts +3 -3
  5. package/dist/modern/db/entities/Member.d.ts +3 -3
  6. package/dist/modern/db/entities/PersistedSyncState.d.ts +1 -1
  7. package/dist/modern/db/entities/Role.d.ts +3 -3
  8. package/dist/modern/default-ui/Dialog.d.ts +1 -1
  9. package/dist/modern/default-ui/index.d.ts +5 -5
  10. package/dist/modern/dexie-cloud-addon.js +636 -526
  11. package/dist/modern/dexie-cloud-addon.js.map +1 -1
  12. package/dist/modern/dexie-cloud-addon.min.js +1 -1
  13. package/dist/modern/dexie-cloud-addon.min.js.map +1 -1
  14. package/dist/modern/dexie-cloud-client.d.ts +1 -1
  15. package/dist/modern/helpers/BroadcastedAndLocalEvent.d.ts +2 -2
  16. package/dist/modern/helpers/getSyncableTables.d.ts +3 -3
  17. package/dist/modern/helpers/resolveText.d.ts +1 -1
  18. package/dist/modern/middleware-helpers/guardedTable.d.ts +1 -1
  19. package/dist/modern/service-worker.js +638 -528
  20. package/dist/modern/service-worker.js.map +1 -1
  21. package/dist/modern/service-worker.min.js +1 -1
  22. package/dist/modern/service-worker.min.js.map +1 -1
  23. package/dist/modern/sync/BlobDownloadTracker.d.ts +2 -2
  24. package/dist/modern/sync/extractRealm.d.ts +1 -1
  25. package/dist/modern/sync/getTablesToSyncify.d.ts +2 -2
  26. package/dist/modern/sync/isSyncNeeded.d.ts +1 -1
  27. package/dist/modern/sync/messageConsumerIsReady.d.ts +1 -1
  28. package/dist/modern/sync/modifyLocalObjectsWithNewUserId.d.ts +3 -3
  29. package/dist/modern/sync/numUnsyncedMutations.d.ts +1 -1
  30. package/dist/modern/sync/performGuardedJob.d.ts +1 -1
  31. package/dist/modern/sync/registerSyncEvent.d.ts +1 -1
  32. package/dist/modern/sync/triggerSync.d.ts +2 -2
  33. package/dist/modern/types/DXCUserInteraction.d.ts +2 -2
  34. package/dist/modern/types/SyncState.d.ts +2 -2
  35. package/dist/modern/types/TXExpandos.d.ts +1 -1
  36. package/dist/modern/updateSchemaFromOptions.d.ts +2 -2
  37. package/dist/modern/verifyConfig.d.ts +1 -1
  38. package/dist/modern/verifySchema.d.ts +1 -1
  39. package/dist/modern/yjs/YTable.d.ts +3 -3
  40. package/dist/modern/yjs/getUpdatesTable.d.ts +2 -2
  41. package/dist/modern/yjs/reopenDocSignal.d.ts +2 -2
  42. package/dist/umd/dexie-cloud-addon.js +644 -534
  43. package/dist/umd/dexie-cloud-addon.js.map +1 -1
  44. package/dist/umd/dexie-cloud-addon.min.js +1 -1
  45. package/dist/umd/dexie-cloud-addon.min.js.map +1 -1
  46. package/dist/umd/service-worker.js +646 -536
  47. package/dist/umd/service-worker.js.map +1 -1
  48. package/dist/umd/service-worker.min.js +1 -1
  49. package/dist/umd/service-worker.min.js.map +1 -1
  50. package/package.json +1 -1
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * ==========================================================================
10
10
  *
11
- * Version 4.4.6, Thu Mar 26 2026
11
+ * Version 4.4.7, Fri Mar 27 2026
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -111,7 +111,7 @@
111
111
  const keys = Object.keys(value);
112
112
  let dollarKeys = null;
113
113
  for (let i = 0, l = keys.length; i < l; ++i) {
114
- if (keys[i][0] === "$") {
114
+ if (keys[i][0] === '$') {
115
115
  dollarKeys = dollarKeys || [];
116
116
  dollarKeys.push(keys[i]);
117
117
  }
@@ -123,7 +123,7 @@
123
123
  delete clone[k];
124
124
  }
125
125
  for (const k of dollarKeys) {
126
- clone["$" + k] = value[k];
126
+ clone['$' + k] = value[k];
127
127
  }
128
128
  return clone;
129
129
  }
@@ -174,7 +174,7 @@
174
174
  //
175
175
  // Child part
176
176
  //
177
- if (value === undefined || (key[0] === "$" && key !== "$t")) {
177
+ if (value === undefined || (key[0] === '$' && key !== '$t')) {
178
178
  top = stack[stack.length - 1];
179
179
  let deletes;
180
180
  let mods;
@@ -185,7 +185,7 @@
185
185
  else {
186
186
  stack.push([this, (deletes = []), (mods = {})]);
187
187
  }
188
- if (key[0] === "$" && key !== "$t") {
188
+ if (key[0] === '$' && key !== '$t') {
189
189
  // Unescape props (also preserves undefined if this is a combo)
190
190
  deletes.push(key);
191
191
  mods[key.substr(1)] = value;
@@ -202,8 +202,8 @@
202
202
  function getTypeDef(realVal) {
203
203
  const type = typeof realVal;
204
204
  switch (typeof realVal) {
205
- case "object":
206
- case "function": {
205
+ case 'object':
206
+ case 'function': {
207
207
  // "object", "function", null
208
208
  if (realVal === null)
209
209
  return null;
@@ -219,7 +219,7 @@
219
219
  if (!typeDef) {
220
220
  typeDef = Array.isArray(realVal)
221
221
  ? null
222
- : typeof realVal === "function"
222
+ : typeof realVal === 'function'
223
223
  ? typeDefs.function || null
224
224
  : ObjectDef;
225
225
  }
@@ -395,13 +395,13 @@
395
395
 
396
396
  function readBlobSync(b) {
397
397
  const req = new XMLHttpRequest();
398
- req.overrideMimeType("text/plain; charset=x-user-defined");
398
+ req.overrideMimeType('text/plain; charset=x-user-defined');
399
399
  const url = URL.createObjectURL(b);
400
400
  try {
401
- req.open("GET", url, false); // Sync
401
+ req.open('GET', url, false); // Sync
402
402
  req.send();
403
403
  if (req.status !== 200 && req.status !== 0) {
404
- throw new Error("Bad Blob access: " + req.status);
404
+ throw new Error('Bad Blob access: ' + req.status);
405
405
  }
406
406
  return req.responseText;
407
407
  }
@@ -415,11 +415,11 @@
415
415
  replace: (num) => {
416
416
  switch (true) {
417
417
  case isNaN(num):
418
- return { $t: "number", v: "NaN" };
418
+ return { $t: 'number', v: 'NaN' };
419
419
  case num === Infinity:
420
- return { $t: "number", v: "Infinity" };
420
+ return { $t: 'number', v: 'Infinity' };
421
421
  case num === -Infinity:
422
- return { $t: "number", v: "-Infinity" };
422
+ return { $t: 'number', v: '-Infinity' };
423
423
  default:
424
424
  return num;
425
425
  }
@@ -431,17 +431,17 @@
431
431
  const dateTypeDef = {
432
432
  Date: {
433
433
  replace: (date) => ({
434
- $t: "Date",
435
- v: isNaN(date.getTime()) ? "NaN" : date.toISOString(),
434
+ $t: 'Date',
435
+ v: isNaN(date.getTime()) ? 'NaN' : date.toISOString(),
436
436
  }),
437
- revive: ({ v }) => new Date(v === "NaN" ? NaN : Date.parse(v)),
437
+ revive: ({ v }) => new Date(v === 'NaN' ? NaN : Date.parse(v)),
438
438
  },
439
439
  };
440
440
 
441
441
  const setTypeDef = {
442
442
  Set: {
443
443
  replace: (set) => ({
444
- $t: "Set",
444
+ $t: 'Set',
445
445
  v: Array.from(set),
446
446
  }),
447
447
  revive: ({ v }) => new Set(v),
@@ -451,34 +451,34 @@
451
451
  const mapTypeDef = {
452
452
  Map: {
453
453
  replace: (map) => ({
454
- $t: "Map",
454
+ $t: 'Map',
455
455
  v: Array.from(map.entries()),
456
456
  }),
457
457
  revive: ({ v }) => new Map(v),
458
458
  },
459
459
  };
460
460
 
461
- const _global = typeof globalThis !== "undefined" // All modern environments (node, bun, deno, browser, workers, webview etc)
461
+ const _global = typeof globalThis !== 'undefined' // All modern environments (node, bun, deno, browser, workers, webview etc)
462
462
  ? globalThis
463
- : typeof self !== "undefined" // Older browsers, workers, webview, window etc
463
+ : typeof self !== 'undefined' // Older browsers, workers, webview, window etc
464
464
  ? self
465
- : typeof global !== "undefined" // Older versions of node
465
+ : typeof global !== 'undefined' // Older versions of node
466
466
  ? global
467
467
  : undefined; // Unsupported environment. No idea to return 'this' since we are in a module or a function scope anyway.
468
468
 
469
469
  const typedArrayTypeDefs = [
470
- "Int8Array",
471
- "Uint8Array",
472
- "Uint8ClampedArray",
473
- "Int16Array",
474
- "Uint16Array",
475
- "Int32Array",
476
- "Uint32Array",
477
- "Float32Array",
478
- "Float64Array",
479
- "DataView",
480
- "BigInt64Array",
481
- "BigUint64Array",
470
+ 'Int8Array',
471
+ 'Uint8Array',
472
+ 'Uint8ClampedArray',
473
+ 'Int16Array',
474
+ 'Uint16Array',
475
+ 'Int32Array',
476
+ 'Uint32Array',
477
+ 'Float32Array',
478
+ 'Float64Array',
479
+ 'DataView',
480
+ 'BigInt64Array',
481
+ 'BigUint64Array',
482
482
  ].reduce((specs, typeName) => ({
483
483
  ...specs,
484
484
  [typeName]: {
@@ -506,10 +506,10 @@
506
506
  },
507
507
  }), {});
508
508
 
509
- const hasArrayBufferFromBase64 = "fromBase64" in Uint8Array; // https://github.com/tc39/proposal-arraybuffer-base64;
510
- const hasArrayBufferToBase64 = "toBase64" in Uint8Array.prototype; // https://github.com/tc39/proposal-arraybuffer-base64;
511
- const b64decode = typeof Buffer !== "undefined"
512
- ? (base64) => Buffer.from(base64, "base64") // Node
509
+ const hasArrayBufferFromBase64 = 'fromBase64' in Uint8Array; // https://github.com/tc39/proposal-arraybuffer-base64;
510
+ const hasArrayBufferToBase64 = 'toBase64' in Uint8Array.prototype; // https://github.com/tc39/proposal-arraybuffer-base64;
511
+ const b64decode = typeof Buffer !== 'undefined'
512
+ ? (base64) => Buffer.from(base64, 'base64') // Node
513
513
  : hasArrayBufferFromBase64
514
514
  ? // @ts-ignore: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/fromBase64
515
515
  (base64) => Uint8Array.fromBase64(base64) // Modern javascript standard
@@ -523,14 +523,14 @@
523
523
  }
524
524
  return bytes;
525
525
  };
526
- const b64encode = typeof Buffer !== "undefined"
526
+ const b64encode = typeof Buffer !== 'undefined'
527
527
  ? (b) => {
528
528
  // Node
529
529
  if (ArrayBuffer.isView(b)) {
530
- return Buffer.from(b.buffer, b.byteOffset, b.byteLength).toString("base64");
530
+ return Buffer.from(b.buffer, b.byteOffset, b.byteLength).toString('base64');
531
531
  }
532
532
  else {
533
- return Buffer.from(b).toString("base64");
533
+ return Buffer.from(b).toString('base64');
534
534
  }
535
535
  }
536
536
  : hasArrayBufferToBase64
@@ -549,7 +549,7 @@
549
549
  const chunk = u8a.subarray(i, i + CHUNK_SIZE);
550
550
  strs.push(String.fromCharCode.apply(null, Array.from(chunk)));
551
551
  }
552
- return btoa(strs.join(""));
552
+ return btoa(strs.join(''));
553
553
  };
554
554
 
555
555
  function b64LexEncode(b) {
@@ -559,7 +559,7 @@
559
559
  return b64decode(lexToB64(b64Lex));
560
560
  }
561
561
  function b64ToLex(base64) {
562
- var encoded = "";
562
+ var encoded = '';
563
563
  for (var i = 0, length = base64.length; i < length; i++) {
564
564
  encoded += ENCODE_TABLE[base64[i]];
565
565
  }
@@ -567,81 +567,81 @@
567
567
  }
568
568
  function lexToB64(base64lex) {
569
569
  // only accept string input
570
- if (typeof base64lex !== "string") {
571
- throw new Error("invalid decoder input: " + base64lex);
570
+ if (typeof base64lex !== 'string') {
571
+ throw new Error('invalid decoder input: ' + base64lex);
572
572
  }
573
- var base64 = "";
573
+ var base64 = '';
574
574
  for (var i = 0, length = base64lex.length; i < length; i++) {
575
575
  base64 += DECODE_TABLE[base64lex[i]];
576
576
  }
577
577
  return base64;
578
578
  }
579
579
  const DECODE_TABLE = {
580
- "-": "=",
581
- "0": "A",
582
- "1": "B",
583
- "2": "C",
584
- "3": "D",
585
- "4": "E",
586
- "5": "F",
587
- "6": "G",
588
- "7": "H",
589
- "8": "I",
590
- "9": "J",
591
- A: "K",
592
- B: "L",
593
- C: "M",
594
- D: "N",
595
- E: "O",
596
- F: "P",
597
- G: "Q",
598
- H: "R",
599
- I: "S",
600
- J: "T",
601
- K: "U",
602
- L: "V",
603
- M: "W",
604
- N: "X",
605
- O: "Y",
606
- P: "Z",
607
- Q: "a",
608
- R: "b",
609
- S: "c",
610
- T: "d",
611
- U: "e",
612
- V: "f",
613
- W: "g",
614
- X: "h",
615
- Y: "i",
616
- Z: "j",
617
- _: "k",
618
- a: "l",
619
- b: "m",
620
- c: "n",
621
- d: "o",
622
- e: "p",
623
- f: "q",
624
- g: "r",
625
- h: "s",
626
- i: "t",
627
- j: "u",
628
- k: "v",
629
- l: "w",
630
- m: "x",
631
- n: "y",
632
- o: "z",
633
- p: "0",
634
- q: "1",
635
- r: "2",
636
- s: "3",
637
- t: "4",
638
- u: "5",
639
- v: "6",
640
- w: "7",
641
- x: "8",
642
- y: "9",
643
- z: "+",
644
- "|": "/",
580
+ '-': '=',
581
+ '0': 'A',
582
+ '1': 'B',
583
+ '2': 'C',
584
+ '3': 'D',
585
+ '4': 'E',
586
+ '5': 'F',
587
+ '6': 'G',
588
+ '7': 'H',
589
+ '8': 'I',
590
+ '9': 'J',
591
+ A: 'K',
592
+ B: 'L',
593
+ C: 'M',
594
+ D: 'N',
595
+ E: 'O',
596
+ F: 'P',
597
+ G: 'Q',
598
+ H: 'R',
599
+ I: 'S',
600
+ J: 'T',
601
+ K: 'U',
602
+ L: 'V',
603
+ M: 'W',
604
+ N: 'X',
605
+ O: 'Y',
606
+ P: 'Z',
607
+ Q: 'a',
608
+ R: 'b',
609
+ S: 'c',
610
+ T: 'd',
611
+ U: 'e',
612
+ V: 'f',
613
+ W: 'g',
614
+ X: 'h',
615
+ Y: 'i',
616
+ Z: 'j',
617
+ _: 'k',
618
+ a: 'l',
619
+ b: 'm',
620
+ c: 'n',
621
+ d: 'o',
622
+ e: 'p',
623
+ f: 'q',
624
+ g: 'r',
625
+ h: 's',
626
+ i: 't',
627
+ j: 'u',
628
+ k: 'v',
629
+ l: 'w',
630
+ m: 'x',
631
+ n: 'y',
632
+ o: 'z',
633
+ p: '0',
634
+ q: '1',
635
+ r: '2',
636
+ s: '3',
637
+ t: '4',
638
+ u: '5',
639
+ v: '6',
640
+ w: '7',
641
+ x: '8',
642
+ y: '9',
643
+ z: '+',
644
+ '|': '/',
645
645
  };
646
646
  const ENCODE_TABLE = {};
647
647
  for (const c of Object.keys(DECODE_TABLE)) {
@@ -651,7 +651,7 @@
651
651
  const arrayBufferTypeDef = {
652
652
  ArrayBuffer: {
653
653
  replace: (ab) => ({
654
- $t: "ArrayBuffer",
654
+ $t: 'ArrayBuffer',
655
655
  v: b64LexEncode(ab),
656
656
  }),
657
657
  revive: ({ v }) => {
@@ -674,9 +674,9 @@
674
674
 
675
675
  const blobTypeDef = {
676
676
  Blob: {
677
- test: (blob, toStringTag) => toStringTag === "Blob" || blob instanceof FakeBlob,
677
+ test: (blob, toStringTag) => toStringTag === 'Blob' || blob instanceof FakeBlob,
678
678
  replace: (blob) => ({
679
- $t: "Blob",
679
+ $t: 'Blob',
680
680
  v: blob instanceof FakeBlob
681
681
  ? b64encode(blob.buf)
682
682
  : b64encode(string2ArrayBuffer(readBlobSync(blob))),
@@ -687,7 +687,7 @@
687
687
  const buf = ab.buffer.byteLength === ab.byteLength
688
688
  ? ab.buffer
689
689
  : ab.buffer.slice(ab.byteOffset, ab.byteOffset + ab.byteLength);
690
- return typeof Blob !== "undefined"
690
+ return typeof Blob !== 'undefined'
691
691
  ? new Blob([new Uint8Array(buf)], { type })
692
692
  : new FakeBlob(buf, type);
693
693
  },
@@ -706,15 +706,15 @@
706
706
 
707
707
  const fileTypeDef = {
708
708
  File: {
709
- test: (file, toStringTag) => toStringTag === "File",
709
+ test: (file, toStringTag) => toStringTag === 'File',
710
710
  replace: (file) => ({
711
- $t: "File",
711
+ $t: 'File',
712
712
  v: b64encode(string2ArrayBuffer(readBlobSync(file))),
713
713
  type: file.type,
714
714
  name: file.name,
715
715
  lastModified: new Date(file.lastModified).toISOString(),
716
716
  }),
717
- revive: ({ type, v, name, lastModified }) => {
717
+ revive: ({ type, v, name, lastModified, }) => {
718
718
  const ab = b64decode(v);
719
719
  const buf = ab.buffer.byteLength === ab.byteLength
720
720
  ? ab.buffer
@@ -738,13 +738,13 @@
738
738
  const undefinedTypeDef = {
739
739
  undefined: {
740
740
  replace: () => ({
741
- $t: "undefined",
741
+ $t: 'undefined',
742
742
  }),
743
743
  revive: () => undefined,
744
744
  },
745
745
  };
746
746
 
747
- const getRandomValues$1 = typeof crypto !== "undefined"
747
+ const getRandomValues$1 = typeof crypto !== 'undefined'
748
748
  ? crypto.getRandomValues.bind(crypto)
749
749
  : (buf) => {
750
750
  for (let i = 0; i < buf.length; ++i) {
@@ -845,7 +845,7 @@
845
845
  var innerObj = obj[currentKeyPath];
846
846
  //@ts-ignore: even if currentKeyPath would be numeric string and obj would be array - it works.
847
847
  if (!innerObj || !hasOwn(obj, currentKeyPath))
848
- innerObj = (obj[currentKeyPath] = {});
848
+ innerObj = obj[currentKeyPath] = {};
849
849
  setByKeyPath(innerObj, remainingKeyPath, value);
850
850
  }
851
851
  }
@@ -864,17 +864,23 @@
864
864
  }
865
865
  }
866
866
  }
867
- const randomString$1 = typeof self !== 'undefined' && typeof crypto !== 'undefined' ? (bytes, randomFill = crypto.getRandomValues.bind(crypto)) => {
868
- // Web
869
- const buf = new Uint8Array(bytes);
870
- randomFill(buf);
871
- return self.btoa(String.fromCharCode.apply(null, buf));
872
- } : typeof Buffer !== 'undefined' ? (bytes, randomFill = simpleRandomFill) => {
873
- // Node
874
- const buf = Buffer.alloc(bytes);
875
- randomFill(buf);
876
- return buf.toString("base64");
877
- } : () => { throw new Error("No implementation of randomString was found"); };
867
+ const randomString$1 = typeof self !== 'undefined' && typeof crypto !== 'undefined'
868
+ ? (bytes, randomFill = crypto.getRandomValues.bind(crypto)) => {
869
+ // Web
870
+ const buf = new Uint8Array(bytes);
871
+ randomFill(buf);
872
+ return self.btoa(String.fromCharCode.apply(null, buf));
873
+ }
874
+ : typeof Buffer !== 'undefined'
875
+ ? (bytes, randomFill = simpleRandomFill) => {
876
+ // Node
877
+ const buf = Buffer.alloc(bytes);
878
+ randomFill(buf);
879
+ return buf.toString('base64');
880
+ }
881
+ : () => {
882
+ throw new Error('No implementation of randomString was found');
883
+ };
878
884
  function simpleRandomFill(buf) {
879
885
  for (let i = 0; i < buf.length; ++i) {
880
886
  buf[i] = Math.floor(Math.random() * 256);
@@ -893,11 +899,13 @@
893
899
  * @returns
894
900
  */
895
901
  function isValidSyncableID(id) {
896
- if (typeof id === "string")
902
+ if (typeof id === 'string')
897
903
  return true;
898
904
  //if (validIDTypes[toStringTag(id)]) return true;
899
905
  //if (Array.isArray(id)) return id.every((part) => isValidSyncableID(part));
900
- if (Array.isArray(id) && id.some(key => isValidSyncableID(key)) && id.every(isValidSyncableIDPart))
906
+ if (Array.isArray(id) &&
907
+ id.some((key) => isValidSyncableID(key)) &&
908
+ id.every(isValidSyncableIDPart))
901
909
  return true;
902
910
  return false;
903
911
  }
@@ -906,53 +914,53 @@
906
914
  * For example, ArrayBuffer cannot be used (gives "object ArrayBuffer") but Uint8Array can be
907
915
  * used (gives comma-delimited list of included bytes).
908
916
  * 2: Since we store the key as a VARCHAR server side in current version, try not promote types that stringifies to become very long server side.
909
- */
917
+ */
910
918
  function isValidSyncableIDPart(part) {
911
- return typeof part === "string" || typeof part === "number" || Array.isArray(part) && part.every(isValidSyncableIDPart);
919
+ return (typeof part === 'string' ||
920
+ typeof part === 'number' ||
921
+ (Array.isArray(part) && part.every(isValidSyncableIDPart)));
912
922
  }
913
923
  function isValidAtID(id, idPrefix) {
914
- return !idPrefix || (typeof id === "string" && id.startsWith(idPrefix));
924
+ return !idPrefix || (typeof id === 'string' && id.startsWith(idPrefix));
915
925
  }
916
926
 
917
927
  function applyOperation(target, table, op) {
918
928
  const tbl = target[table] || (target[table] = {});
919
- const keys = op.keys.map(key => typeof key === 'string' ? key : JSON.stringify(key));
929
+ const keys = op.keys.map((key) => typeof key === 'string' ? key : JSON.stringify(key));
920
930
  switch (op.type) {
921
- case "insert":
931
+ case 'insert':
922
932
  // TODO: Don't treat insert and upsert the same?
923
- case "upsert":
933
+ case 'upsert':
924
934
  keys.forEach((key, idx) => {
925
935
  tbl[key] = {
926
- type: "ups",
936
+ type: 'ups',
927
937
  val: op.values[idx],
928
938
  };
929
939
  });
930
940
  break;
931
- case "update":
932
- case "modify": {
941
+ case 'update':
942
+ case 'modify': {
933
943
  keys.forEach((key, idx) => {
934
- const changeSpec = op.type === "update"
935
- ? op.changeSpecs[idx]
936
- : op.changeSpec;
944
+ const changeSpec = op.type === 'update' ? op.changeSpecs[idx] : op.changeSpec;
937
945
  const entry = tbl[key];
938
946
  if (!entry) {
939
947
  tbl[key] = {
940
- type: "upd",
948
+ type: 'upd',
941
949
  mod: changeSpec,
942
950
  };
943
951
  }
944
952
  else {
945
953
  switch (entry.type) {
946
- case "ups":
954
+ case 'ups':
947
955
  // Adjust the existing upsert with additional updates
948
956
  for (const [propPath, value] of Object.entries(changeSpec)) {
949
957
  setByKeyPath(entry.val, propPath, value);
950
958
  }
951
959
  break;
952
- case "del":
960
+ case 'del':
953
961
  // No action.
954
962
  break;
955
- case "upd":
963
+ case 'upd':
956
964
  // Adjust existing update with additional updates
957
965
  Object.assign(entry.mod, changeSpec); // May work for deep props as well - new keys is added later, right? Does the prop order persist along TSON and all? But it will not be 100% when combined with some server code (seach for "address.city": "Stockholm" comment)
958
966
  break;
@@ -961,10 +969,10 @@
961
969
  });
962
970
  break;
963
971
  }
964
- case "delete":
972
+ case 'delete':
965
973
  keys.forEach((key) => {
966
974
  tbl[key] = {
967
- type: "del",
975
+ type: 'del',
968
976
  };
969
977
  });
970
978
  break;
@@ -1061,30 +1069,30 @@
1061
1069
  };
1062
1070
  for (const [optype, muts] of Object.entries(ops)) {
1063
1071
  switch (optype) {
1064
- case "ups": {
1072
+ case 'ups': {
1065
1073
  const op = {
1066
- type: "upsert",
1067
- keys: muts.map(mut => mut.key),
1068
- values: muts.map(mut => mut.val),
1069
- txid
1074
+ type: 'upsert',
1075
+ keys: muts.map((mut) => mut.key),
1076
+ values: muts.map((mut) => mut.val),
1077
+ txid,
1070
1078
  };
1071
1079
  resultEntry.muts.push(op);
1072
1080
  break;
1073
1081
  }
1074
- case "upd": {
1082
+ case 'upd': {
1075
1083
  const op = {
1076
- type: "update",
1077
- keys: muts.map(mut => mut.key),
1078
- changeSpecs: muts.map(mut => mut.mod),
1079
- txid
1084
+ type: 'update',
1085
+ keys: muts.map((mut) => mut.key),
1086
+ changeSpecs: muts.map((mut) => mut.mod),
1087
+ txid,
1080
1088
  };
1081
1089
  resultEntry.muts.push(op);
1082
1090
  break;
1083
1091
  }
1084
- case "del": {
1092
+ case 'del': {
1085
1093
  const op = {
1086
- type: "delete",
1087
- keys: muts.map(mut => mut.key),
1094
+ type: 'delete',
1095
+ keys: muts.map((mut) => mut.key),
1088
1096
  txid,
1089
1097
  };
1090
1098
  resultEntry.muts.push(op);
@@ -1099,7 +1107,7 @@
1099
1107
 
1100
1108
  function getDbNameFromDbUrl(dbUrl) {
1101
1109
  const url = new URL(dbUrl);
1102
- return url.pathname === "/"
1110
+ return url.pathname === '/'
1103
1111
  ? url.hostname.split('.')[0]
1104
1112
  : url.pathname.split('/')[1];
1105
1113
  }
@@ -2520,7 +2528,8 @@
2520
2528
  prop,
2521
2529
  k,
2522
2530
  u: readVarUint8Array(decoder),
2523
- r: (decoder.pos < decoder.arr.length && readVarString(decoder)) || undefined,
2531
+ r: (decoder.pos < decoder.arr.length && readVarString(decoder)) ||
2532
+ undefined,
2524
2533
  };
2525
2534
  default:
2526
2535
  throw new TypeError(`Unknown message type: ${type}`);
@@ -2537,7 +2546,8 @@
2537
2546
  }
2538
2547
  // Start running the machine. If the last stage is a sink, it will consume the data and never emit anything
2539
2548
  // to us here...
2540
- for await (const chunk of result) { }
2549
+ for await (const chunk of result) {
2550
+ }
2541
2551
  }
2542
2552
 
2543
2553
  async function* consumeChunkedBinaryStream(source) {
@@ -2591,7 +2601,7 @@
2591
2601
  }
2592
2602
  if (pos + len > chunk.byteLength) {
2593
2603
  bufs.push(chunk.slice(pos));
2594
- len -= (chunk.byteLength - pos);
2604
+ len -= chunk.byteLength - pos;
2595
2605
  state = 2;
2596
2606
  pos = chunk.byteLength; // will break while loop.
2597
2607
  }
@@ -2622,7 +2632,7 @@
2622
2632
  function getFetchResponseBodyGenerator(res) {
2623
2633
  return async function* () {
2624
2634
  if (!res.body)
2625
- throw new Error("Response body is not readable");
2635
+ throw new Error('Response body is not readable');
2626
2636
  const reader = res.body.getReader();
2627
2637
  try {
2628
2638
  while (true) {
@@ -2691,11 +2701,11 @@
2691
2701
  return false;
2692
2702
  }
2693
2703
  if (Array.isArray(obj)) {
2694
- return obj.some(item => hasBlobRefs(item, visited));
2704
+ return obj.some((item) => hasBlobRefs(item, visited));
2695
2705
  }
2696
2706
  // Only traverse POJOs
2697
2707
  if (obj.constructor === Object) {
2698
- return Object.values(obj).some(value => hasBlobRefs(value, visited));
2708
+ return Object.values(obj).some((value) => hasBlobRefs(value, visited));
2699
2709
  }
2700
2710
  return false;
2701
2711
  }
@@ -2759,7 +2769,8 @@
2759
2769
  */
2760
2770
  function resolveAllBlobRefs(obj_1, dbUrl_1) {
2761
2771
  return __awaiter(this, arguments, void 0, function* (obj, dbUrl, resolvedBlobs = [], currentPath = '', visited = new WeakMap(), tracker) {
2762
- if (obj == null) { // null or undefined
2772
+ if (obj == null) {
2773
+ // null or undefined
2763
2774
  return obj;
2764
2775
  }
2765
2776
  // Check if this is a BlobRef - resolve it and track it
@@ -2808,9 +2819,7 @@
2808
2819
  * Check if an object has unresolved BlobRefs
2809
2820
  */
2810
2821
  function hasUnresolvedBlobRefs(obj) {
2811
- return (typeof obj === 'object' &&
2812
- obj !== null &&
2813
- obj._hasBlobRefs === 1);
2822
+ return (typeof obj === 'object' && obj !== null && obj._hasBlobRefs === 1);
2814
2823
  }
2815
2824
 
2816
2825
  function getSyncableTables(db) {
@@ -2875,7 +2884,7 @@
2875
2884
  isDownloading: isDownloading && stats.blobsRemaining > 0,
2876
2885
  blobsRemaining: stats.blobsRemaining,
2877
2886
  bytesRemaining: stats.bytesRemaining,
2878
- })), operators.share({ resetOnRefCountZero: () => rxjs.timer(2000) }) // Keep alive for 2s after last unsubscription to avoid rapid re-subscriptions during UI updates
2887
+ })), operators.share({ resetOnRefCountZero: () => rxjs.timer(2000) }) // Keep alive for 2s after last unsubscription to avoid rapid re-subscriptions during UI updates
2879
2888
  );
2880
2889
  }
2881
2890
  /**
@@ -2959,13 +2968,13 @@
2959
2968
  }
2960
2969
  setDownloadingState(downloading$, true);
2961
2970
  try {
2962
- debugLog(`Eager download: Found ${syncedTables.length} syncable tables: ${syncedTables.map(t => t.name).join(', ')}`);
2971
+ debugLog(`Eager download: Found ${syncedTables.length} syncable tables: ${syncedTables.map((t) => t.name).join(', ')}`);
2963
2972
  for (const table of syncedTables) {
2964
2973
  if (signal === null || signal === void 0 ? void 0 : signal.aborted)
2965
2974
  ;
2966
2975
  try {
2967
2976
  // Check if table has _hasBlobRefs index
2968
- const hasIndex = table.schema.indexes.some(idx => idx.name === '_hasBlobRefs');
2977
+ const hasIndex = table.schema.indexes.some((idx) => idx.name === '_hasBlobRefs');
2969
2978
  if (!hasIndex)
2970
2979
  continue;
2971
2980
  // Query objects with _hasBlobRefs marker
@@ -2981,7 +2990,7 @@
2981
2990
  const MAX_CONCURRENT = 6;
2982
2991
  const primaryKey = table.schema.primKey;
2983
2992
  // Filter to actionable objects first
2984
- const pending = unresolvedObjects.filter(obj => {
2993
+ const pending = unresolvedObjects.filter((obj) => {
2985
2994
  if (!hasUnresolvedBlobRefs(obj))
2986
2995
  return false;
2987
2996
  const key = primaryKey.keyPath
@@ -3042,7 +3051,7 @@
3042
3051
  try {
3043
3052
  // Send sync event to SW:
3044
3053
  const sw = yield navigator.serviceWorker.ready;
3045
- if (purpose === "push" && sw.sync) {
3054
+ if (purpose === 'push' && sw.sync) {
3046
3055
  yield sw.sync.register(`dexie-cloud:${db.name}`);
3047
3056
  }
3048
3057
  if (sw.active) {
@@ -3051,7 +3060,7 @@
3051
3060
  sw.active.postMessage({
3052
3061
  type: 'dexie-cloud-sync',
3053
3062
  dbName: db.name,
3054
- purpose
3063
+ purpose,
3055
3064
  });
3056
3065
  }
3057
3066
  else {
@@ -3176,14 +3185,15 @@
3176
3185
  // the domain extension like .com, .net, etc.
3177
3186
  // (\sas\s[\w-+.]+@([\w-]+\.)+[\w-]{2,10})?$ : This part is optional (due to the ? at the end).
3178
3187
  // If present, it matches " as " followed by another valid email address. This allows for the
3179
- // input to be either a single email address or two email addresses separated by " as ".
3188
+ // input to be either a single email address or two email addresses separated by " as ".
3180
3189
  //
3181
3190
  // The use case for "<email1> as <email2>"" is for when a database owner with full access to the
3182
3191
  // database needs to impersonate another user in the database in order to troubleshoot. This
3183
3192
  // format will only be possible to use when email1 is the owner of an API client with GLOBAL_READ
3184
3193
  // and GLOBAL_WRITE permissions on the database. The email will be checked on the server before
3185
3194
  // allowing it and giving out a token for email2, using the OTP sent to email1.
3186
- while (!email || !/^[\w-+.]+@([\w-]+\.)+[\w-]{2,10}(\sas\s[\w-+.]+@([\w-]+\.)+[\w-]{2,10})?$/.test(email)) {
3195
+ while (!email ||
3196
+ !/^[\w-+.]+@([\w-]+\.)+[\w-]{2,10}(\sas\s[\w-+.]+@([\w-]+\.)+[\w-]{2,10})?$/.test(email)) {
3187
3197
  const alerts = [];
3188
3198
  if (firstPrompt && initialAlert)
3189
3199
  alerts.push(initialAlert);
@@ -3249,7 +3259,7 @@
3249
3259
  messageParams: {
3250
3260
  currentUserId,
3251
3261
  numUnsyncedChanges: numUnsyncedChanges.toString(),
3252
- }
3262
+ },
3253
3263
  },
3254
3264
  ];
3255
3265
  return yield interactWithUser(userInteraction, {
@@ -3258,7 +3268,7 @@
3258
3268
  alerts,
3259
3269
  fields: {},
3260
3270
  submitLabel: 'Confirm logout',
3261
- cancelLabel: 'Cancel'
3271
+ cancelLabel: 'Cancel',
3262
3272
  })
3263
3273
  .then(() => true)
3264
3274
  .catch(() => false);
@@ -3375,7 +3385,8 @@
3375
3385
  if (!accessToken)
3376
3386
  return null;
3377
3387
  const expTime = (_a = accessTokenExpiration === null || accessTokenExpiration === void 0 ? void 0 : accessTokenExpiration.getTime()) !== null && _a !== void 0 ? _a : Infinity;
3378
- if (expTime > (Date.now() + 5 * MINUTES) && (((_b = currentUser.license) === null || _b === void 0 ? void 0 : _b.status) || 'ok') === 'ok') {
3388
+ if (expTime > Date.now() + 5 * MINUTES &&
3389
+ (((_b = currentUser.license) === null || _b === void 0 ? void 0 : _b.status) || 'ok') === 'ok') {
3379
3390
  return currentUser;
3380
3391
  }
3381
3392
  if (!refreshToken) {
@@ -3535,11 +3546,13 @@
3535
3546
  }
3536
3547
  catch (error) {
3537
3548
  // OAuth redirect is not an error - page is navigating away
3538
- if (error instanceof OAuthRedirectError || (error === null || error === void 0 ? void 0 : error.name) === 'OAuthRedirectError') {
3549
+ if (error instanceof OAuthRedirectError ||
3550
+ (error === null || error === void 0 ? void 0 : error.name) === 'OAuthRedirectError') {
3539
3551
  throw error; // Re-throw without logging
3540
3552
  }
3541
3553
  // Policy rejections have already been shown to the user as a challenge
3542
- if (error instanceof PolicyRejectionError || (error === null || error === void 0 ? void 0 : error.name) === 'PolicyRejectionError') {
3554
+ if (error instanceof PolicyRejectionError ||
3555
+ (error === null || error === void 0 ? void 0 : error.name) === 'PolicyRejectionError') {
3543
3556
  throw error;
3544
3557
  }
3545
3558
  if (error instanceof TokenErrorResponseError) {
@@ -3558,7 +3571,10 @@
3558
3571
  if (isOffline) {
3559
3572
  message = `You seem to be offline. Please connect to the internet and try again.`;
3560
3573
  }
3561
- else if (typeof location !== 'undefined' && (Dexie.debug || location.hostname === 'localhost' || location.hostname === '127.0.0.1')) {
3574
+ else if (typeof location !== 'undefined' &&
3575
+ (Dexie.debug ||
3576
+ location.hostname === 'localhost' ||
3577
+ location.hostname === '127.0.0.1')) {
3562
3578
  // The audience is most likely the developer. Suggest to whitelist the localhost origin:
3563
3579
  const whitelistCommand = `npx dexie-cloud whitelist ${location.origin}`;
3564
3580
  message = `Could not connect to server. Please verify that your origin '${location.origin}' is whitelisted using \`npx dexie-cloud whitelist\``;
@@ -3608,31 +3624,31 @@
3608
3624
  }
3609
3625
  static load(db, userId) {
3610
3626
  return db
3611
- .table("$logins")
3627
+ .table('$logins')
3612
3628
  .get(userId)
3613
3629
  .then((userLogin) => new AuthPersistedContext(db, userLogin || {
3614
3630
  userId,
3615
3631
  claims: {
3616
- sub: userId
3632
+ sub: userId,
3617
3633
  },
3618
- lastLogin: new Date(0)
3634
+ lastLogin: new Date(0),
3619
3635
  }));
3620
3636
  }
3621
3637
  save() {
3622
3638
  return __awaiter(this, void 0, void 0, function* () {
3623
3639
  const db = wm$4.get(this);
3624
- db.table("$logins").put(this);
3640
+ db.table('$logins').put(this);
3625
3641
  });
3626
3642
  }
3627
3643
  }
3628
3644
 
3629
3645
  const UNAUTHORIZED_USER = {
3630
- userId: "unauthorized",
3631
- name: "Unauthorized",
3646
+ userId: 'unauthorized',
3647
+ name: 'Unauthorized',
3632
3648
  claims: {
3633
- sub: "unauthorized",
3649
+ sub: 'unauthorized',
3634
3650
  },
3635
- lastLogin: new Date(0)
3651
+ lastLogin: new Date(0),
3636
3652
  };
3637
3653
  try {
3638
3654
  Object.freeze(UNAUTHORIZED_USER);
@@ -3701,7 +3717,7 @@
3701
3717
  this.httpStatus = res.status;
3702
3718
  }
3703
3719
  get name() {
3704
- return "HttpError";
3720
+ return 'HttpError';
3705
3721
  }
3706
3722
  }
3707
3723
 
@@ -3740,7 +3756,7 @@
3740
3756
  */
3741
3757
  function exchangeOAuthCode(options) {
3742
3758
  return __awaiter(this, void 0, void 0, function* () {
3743
- const { databaseUrl, code, publicKey, scopes = ['ACCESS_DB'], intent } = options;
3759
+ const { databaseUrl, code, publicKey, scopes = ['ACCESS_DB'], intent, } = options;
3744
3760
  const tokenRequest = Object.assign({ grant_type: 'authorization_code', code, public_key: publicKey, scopes }, (intent !== undefined ? { intent } : {}));
3745
3761
  try {
3746
3762
  const res = yield fetch(`${databaseUrl}/token`, {
@@ -3798,7 +3814,8 @@
3798
3814
  return response;
3799
3815
  }
3800
3816
  catch (error) {
3801
- if (error instanceof OAuthError || error instanceof TokenErrorResponseError) {
3817
+ if (error instanceof OAuthError ||
3818
+ error instanceof TokenErrorResponseError) {
3802
3819
  throw error;
3803
3820
  }
3804
3821
  if (error instanceof TypeError) {
@@ -3836,7 +3853,7 @@
3836
3853
  try {
3837
3854
  const res = yield fetch(`${databaseUrl}/auth-providers`, {
3838
3855
  method: 'GET',
3839
- headers: { 'Accept': 'application/json' },
3856
+ headers: { Accept: 'application/json' },
3840
3857
  mode: 'cors',
3841
3858
  });
3842
3859
  if (res.status === 404) {
@@ -4166,7 +4183,7 @@
4166
4183
  * @param args
4167
4184
  */
4168
4185
  function prodLog(level, ...args) {
4169
- globalThis["con" + "sole"][level](...args);
4186
+ globalThis['con' + 'sole'][level](...args);
4170
4187
  }
4171
4188
 
4172
4189
  /** This function changes or sets the current user as requested.
@@ -4278,8 +4295,10 @@
4278
4295
  }
4279
4296
 
4280
4297
  const swHolder = {};
4281
- const swContainer = typeof self !== 'undefined' && self.document && // self.document is to verify we're not the SW ourself
4282
- typeof navigator !== 'undefined' && navigator.serviceWorker;
4298
+ const swContainer = typeof self !== 'undefined' &&
4299
+ self.document && // self.document is to verify we're not the SW ourself
4300
+ typeof navigator !== 'undefined' &&
4301
+ navigator.serviceWorker;
4283
4302
  if (swContainer)
4284
4303
  swContainer.ready.then((registration) => (swHolder.registration = registration));
4285
4304
  if (typeof self !== 'undefined' && 'clients' in self && !self.document) {
@@ -4333,7 +4352,8 @@
4333
4352
  }
4334
4353
  }
4335
4354
 
4336
- const events = globalThis['lbc-events'] || (globalThis['lbc-events'] = new Map());
4355
+ const events = globalThis['lbc-events'] ||
4356
+ (globalThis['lbc-events'] = new Map());
4337
4357
  function addListener(name, listener) {
4338
4358
  if (events.has(name)) {
4339
4359
  events.get(name).push(listener);
@@ -4354,25 +4374,25 @@
4354
4374
  function dispatch(ev) {
4355
4375
  const listeners = events.get(ev.type);
4356
4376
  if (listeners) {
4357
- listeners.forEach(listener => {
4377
+ listeners.forEach((listener) => {
4358
4378
  try {
4359
4379
  listener(ev);
4360
4380
  }
4361
- catch (_a) {
4362
- }
4381
+ catch (_a) { }
4363
4382
  });
4364
4383
  }
4365
4384
  }
4366
4385
  class BroadcastedAndLocalEvent extends rxjs.Observable {
4367
4386
  constructor(name) {
4368
- const bc = typeof BroadcastChannel === "undefined"
4369
- ? new SWBroadcastChannel(name) : new BroadcastChannel(name);
4370
- super(subscriber => {
4387
+ const bc = typeof BroadcastChannel === 'undefined'
4388
+ ? new SWBroadcastChannel(name)
4389
+ : new BroadcastChannel(name);
4390
+ super((subscriber) => {
4371
4391
  function onCustomEvent(ev) {
4372
4392
  subscriber.next(ev.detail);
4373
4393
  }
4374
4394
  function onMessageEvent(ev) {
4375
- console.debug("BroadcastedAndLocalEvent: onMessageEvent", ev);
4395
+ console.debug('BroadcastedAndLocalEvent: onMessageEvent', ev);
4376
4396
  subscriber.next(ev.data);
4377
4397
  }
4378
4398
  let unsubscribe;
@@ -4380,11 +4400,11 @@
4380
4400
  addListener(`lbc-${name}`, onCustomEvent); // Works better in service worker
4381
4401
  try {
4382
4402
  if (bc instanceof SWBroadcastChannel) {
4383
- unsubscribe = bc.subscribe(message => subscriber.next(message));
4403
+ unsubscribe = bc.subscribe((message) => subscriber.next(message));
4384
4404
  }
4385
4405
  else {
4386
- console.debug("BroadcastedAndLocalEvent: bc.addEventListener()", name, "bc is a", bc);
4387
- bc.addEventListener("message", onMessageEvent);
4406
+ console.debug('BroadcastedAndLocalEvent: bc.addEventListener()', name, 'bc is a', bc);
4407
+ bc.addEventListener('message', onMessageEvent);
4388
4408
  }
4389
4409
  }
4390
4410
  catch (err) {
@@ -4398,7 +4418,7 @@
4398
4418
  unsubscribe();
4399
4419
  }
4400
4420
  else {
4401
- bc.removeEventListener("message", onMessageEvent);
4421
+ bc.removeEventListener('message', onMessageEvent);
4402
4422
  }
4403
4423
  };
4404
4424
  });
@@ -4406,7 +4426,7 @@
4406
4426
  this.bc = bc;
4407
4427
  }
4408
4428
  next(message) {
4409
- console.debug("BroadcastedAndLocalEvent: bc.postMessage()", Object.assign({}, message), "bc is a", this.bc);
4429
+ console.debug('BroadcastedAndLocalEvent: bc.postMessage()', Object.assign({}, message), 'bc is a', this.bc);
4410
4430
  this.bc.postMessage(message);
4411
4431
  const ev = new CustomEvent(`lbc-${this.name}`, { detail: message });
4412
4432
  //self.dispatchEvent(ev);
@@ -4499,7 +4519,7 @@
4499
4519
  }
4500
4520
  const strKey = '' + mut.keys[0];
4501
4521
  const changeSpecs = mut.changeSpecs[0];
4502
- if (Object.values(changeSpecs).some(v => typeof v === "object" && v && "@@propmod" in v)) {
4522
+ if (Object.values(changeSpecs).some((v) => typeof v === 'object' && v && '@@propmod' in v)) {
4503
4523
  continue; // Cannot optimize if any PropModification is present
4504
4524
  }
4505
4525
  let keyCoverage = updateCoverage.get(strKey);
@@ -4507,11 +4527,13 @@
4507
4527
  keyCoverage.push({ txid: mut.txid, updateSpec: changeSpecs });
4508
4528
  }
4509
4529
  else {
4510
- updateCoverage.set(strKey, [{ txid: mut.txid, updateSpec: changeSpecs }]);
4530
+ updateCoverage.set(strKey, [
4531
+ { txid: mut.txid, updateSpec: changeSpecs },
4532
+ ]);
4511
4533
  }
4512
4534
  }
4513
4535
  }
4514
- muts = muts.filter(mut => {
4536
+ muts = muts.filter((mut) => {
4515
4537
  // Only apply optimization to update mutations that are single-key
4516
4538
  if (mut.type !== 'update')
4517
4539
  return true;
@@ -4519,7 +4541,7 @@
4519
4541
  return true;
4520
4542
  // Check if this has PropModifications - if so, skip optimization
4521
4543
  const changeSpecs = mut.changeSpecs[0];
4522
- if (Object.values(changeSpecs).some(v => typeof v === "object" && v && "@@propmod" in v)) {
4544
+ if (Object.values(changeSpecs).some((v) => typeof v === 'object' && v && '@@propmod' in v)) {
4523
4545
  return true; // Cannot optimize if any PropModification is present
4524
4546
  }
4525
4547
  // Keep track of properties that aren't overlapped by later transactions
@@ -4547,7 +4569,7 @@
4547
4569
  return muts;
4548
4570
  }
4549
4571
  function canonicalizeToUpdateOps(muts) {
4550
- muts = muts.map(mut => {
4572
+ muts = muts.map((mut) => {
4551
4573
  if (mut.type === 'modify' && mut.criteria.index === null) {
4552
4574
  // The criteria is on primary key. Convert to an update operation instead.
4553
4575
  // It is simpler for the server to handle and also more efficient.
@@ -4769,7 +4791,7 @@
4769
4791
  const delatMilliseconds = ((_b = (_a = syncRatelimitDelays.get(db)) === null || _a === void 0 ? void 0 : _a.getTime()) !== null && _b !== void 0 ? _b : 0) - Date.now();
4770
4792
  if (delatMilliseconds > 0) {
4771
4793
  console.debug(`Stalling sync request ${delatMilliseconds} ms to spare ratelimits`);
4772
- yield new Promise(resolve => setTimeout(resolve, delatMilliseconds));
4794
+ yield new Promise((resolve) => setTimeout(resolve, delatMilliseconds));
4773
4795
  }
4774
4796
  });
4775
4797
  }
@@ -4834,7 +4856,7 @@
4834
4856
  baseRevs,
4835
4857
  changes: encodeIdsForServer(db.dx.core.schema, currentUser, changes),
4836
4858
  y,
4837
- dxcv: db.cloud.version
4859
+ dxcv: db.cloud.version,
4838
4860
  };
4839
4861
  console.debug('Sync request', syncRequest);
4840
4862
  db.syncStateChangedEvent.next({
@@ -4874,19 +4896,22 @@
4874
4896
  return __awaiter(this, void 0, void 0, function* () {
4875
4897
  const ignoredRealms = new Set(alreadySyncedRealms || []);
4876
4898
  for (const table of syncifiedTables) {
4877
- if (table.name === "members") {
4899
+ if (table.name === 'members') {
4878
4900
  // members
4879
4901
  yield table.toCollection().modify((member) => {
4880
- if (!ignoredRealms.has(member.realmId) && (!member.userId || member.userId === UNAUTHORIZED_USER.userId)) {
4902
+ if (!ignoredRealms.has(member.realmId) &&
4903
+ (!member.userId || member.userId === UNAUTHORIZED_USER.userId)) {
4881
4904
  member.userId = currentUser.userId;
4882
4905
  }
4883
4906
  });
4884
4907
  }
4885
- else if (table.name === "roles") ;
4886
- else if (table.name === "realms") {
4908
+ else if (table.name === 'roles') ;
4909
+ else if (table.name === 'realms') {
4887
4910
  // realms
4888
4911
  yield table.toCollection().modify((realm) => {
4889
- if (!ignoredRealms.has(realm.realmId) && (realm.owner === undefined || realm.owner === UNAUTHORIZED_USER.userId)) {
4912
+ if (!ignoredRealms.has(realm.realmId) &&
4913
+ (realm.owner === undefined ||
4914
+ realm.owner === UNAUTHORIZED_USER.userId)) {
4890
4915
  realm.owner = currentUser.userId;
4891
4916
  }
4892
4917
  });
@@ -4919,8 +4944,8 @@
4919
4944
  let isOnline = false;
4920
4945
  if (typeof self !== 'undefined' && typeof navigator !== 'undefined') {
4921
4946
  isOnline = navigator.onLine;
4922
- self.addEventListener('online', () => isOnline = true);
4923
- self.addEventListener('offline', () => isOnline = false);
4947
+ self.addEventListener('online', () => (isOnline = true));
4948
+ self.addEventListener('offline', () => (isOnline = false));
4924
4949
  }
4925
4950
 
4926
4951
  function updateBaseRevs(db, schema, latestRevisions, serverRev) {
@@ -4937,7 +4962,10 @@
4937
4962
  }));
4938
4963
  // Clean up baseRevs for tables that do not exist anymore or are no longer marked for sync
4939
4964
  // Resolve #2168 by also cleaning up baseRevs for tables that are not marked for sync
4940
- yield db.$baseRevs.where('tableName').noneOf(Object.keys(schema).filter((table) => schema[table].markedForSync)).delete();
4965
+ yield db.$baseRevs
4966
+ .where('tableName')
4967
+ .noneOf(Object.keys(schema).filter((table) => schema[table].markedForSync))
4968
+ .delete();
4941
4969
  });
4942
4970
  }
4943
4971
 
@@ -5083,10 +5111,7 @@
5083
5111
  const DEXIE_CLOUD_SYNCER_ID = 'dexie-cloud-syncer';
5084
5112
 
5085
5113
  function listUpdatesSince(yTable, sinceIncluding) {
5086
- return yTable
5087
- .where('i')
5088
- .between(sinceIncluding, Infinity, true)
5089
- .toArray();
5114
+ return yTable.where('i').between(sinceIncluding, Infinity, true).toArray();
5090
5115
  }
5091
5116
 
5092
5117
  /**
@@ -14438,7 +14463,7 @@
14438
14463
  }
14439
14464
  return {
14440
14465
  yMessages: result,
14441
- lastUpdateIds
14466
+ lastUpdateIds,
14442
14467
  };
14443
14468
  });
14444
14469
  }
@@ -14447,7 +14472,8 @@
14447
14472
  var _a, _b, _c;
14448
14473
  if (!db.dx._allTables[table])
14449
14474
  return undefined;
14450
- const utbl = (_c = (_b = (_a = db.table(table)) === null || _a === void 0 ? void 0 : _a.schema.yProps) === null || _b === void 0 ? void 0 : _b.find(p => p.prop === ydocProp)) === null || _c === void 0 ? void 0 : _c.updatesTable;
14475
+ const utbl = (_c = (_b = (_a = db
14476
+ .table(table)) === null || _a === void 0 ? void 0 : _a.schema.yProps) === null || _b === void 0 ? void 0 : _b.find((p) => p.prop === ydocProp)) === null || _c === void 0 ? void 0 : _c.updatesTable;
14451
14477
  if (!utbl) {
14452
14478
  console.debug(`No updatesTable found for ${table}.${ydocProp}`);
14453
14479
  return undefined;
@@ -14467,7 +14493,7 @@
14467
14493
  *
14468
14494
  * ==========================================================================
14469
14495
  *
14470
- * Version 4.4.0, Thu Mar 26 2026
14496
+ * Version 4.4.0, Fri Mar 27 2026
14471
14497
  *
14472
14498
  * https://dexie.org
14473
14499
  *
@@ -14484,7 +14510,7 @@
14484
14510
  function getDocCache(db) {
14485
14511
  var _a;
14486
14512
  var _b;
14487
- return (_a = (_b = db._novip)['_docCache']) !== null && _a !== void 0 ? _a : (_b['_docCache'] = {
14513
+ return ((_a = (_b = db._novip)['_docCache']) !== null && _a !== void 0 ? _a : (_b['_docCache'] = {
14488
14514
  cache: {},
14489
14515
  get size() {
14490
14516
  return Object.keys(this.cache).length;
@@ -14515,7 +14541,7 @@
14515
14541
  delete this.cache[cacheKey]; // Remove the entry from the cache only if it is the same doc.
14516
14542
  }
14517
14543
  },
14518
- });
14544
+ }));
14519
14545
  }
14520
14546
  // Emulate a private boolean property "destroyed" on Y.Doc instances that we manage
14521
14547
  // in createYDocProperty.ts:
@@ -14831,7 +14857,7 @@
14831
14857
  }
14832
14858
  throwIfDestroyed(doc);
14833
14859
  this.stopObserving = observeYDocUpdates(this, doc, db, parentTable, updatesTable, parentId);
14834
- DexieYProvider.on("new").fire(this); // Allow for addons to invoke their sync- and awareness providers here.
14860
+ DexieYProvider.on('new').fire(this); // Allow for addons to invoke their sync- and awareness providers here.
14835
14861
  }
14836
14862
  destroy() {
14837
14863
  var _a, _b, _c;
@@ -14856,16 +14882,16 @@
14856
14882
  });
14857
14883
  DexieYProvider.getDocCache = getDocCache;
14858
14884
  //
14859
- // Eliminate dual package hazard
14885
+ // Eliminate dual package hazard
14860
14886
  //
14861
14887
  // Since we're holding static state, make sure to singletonize DexieYProvider
14862
14888
  //
14863
- if (Dexie.Dexie["DexieYProvider"]) {
14889
+ if (Dexie.Dexie['DexieYProvider']) {
14864
14890
  // @ts-ignore
14865
- DexieYProvider = Dexie.Dexie["DexieYProvider"] || DexieYProvider;
14891
+ DexieYProvider = Dexie.Dexie['DexieYProvider'] || DexieYProvider;
14866
14892
  }
14867
14893
  else {
14868
- Dexie.Dexie["DexieYProvider"] = DexieYProvider;
14894
+ Dexie.Dexie['DexieYProvider'] = DexieYProvider;
14869
14895
  }
14870
14896
 
14871
14897
  function applyYServerMessages(yMessages, db) {
@@ -14991,10 +15017,18 @@
14991
15017
  */
14992
15018
  // TypedArray/DataView tags for size check
14993
15019
  const ARRAYBUFFER_VIEW_TAGS = new Set([
14994
- 'Int8Array', 'Uint8Array', 'Uint8ClampedArray',
14995
- 'Int16Array', 'Uint16Array', 'Int32Array', 'Uint32Array',
14996
- 'Float32Array', 'Float64Array', 'BigInt64Array', 'BigUint64Array',
14997
- 'DataView'
15020
+ 'Int8Array',
15021
+ 'Uint8Array',
15022
+ 'Uint8ClampedArray',
15023
+ 'Int16Array',
15024
+ 'Uint16Array',
15025
+ 'Int32Array',
15026
+ 'Uint32Array',
15027
+ 'Float32Array',
15028
+ 'Float64Array',
15029
+ 'BigInt64Array',
15030
+ 'BigUint64Array',
15031
+ 'DataView',
14998
15032
  ]);
14999
15033
  // Static Set for O(1) lookup of binary type tags
15000
15034
  const BINARY_TYPE_TAGS = new Set([
@@ -15094,7 +15128,7 @@
15094
15128
  const response = yield fetch(uploadUrl, {
15095
15129
  method: 'PUT',
15096
15130
  headers: {
15097
- 'Authorization': `Bearer ${accessToken}`,
15131
+ Authorization: `Bearer ${accessToken}`,
15098
15132
  'Content-Type': contentType,
15099
15133
  },
15100
15134
  body,
@@ -15110,8 +15144,7 @@
15110
15144
  // The server returns the ref with version prefix (e.g., "1:blobId")
15111
15145
  const result = yield response.json();
15112
15146
  // Return BlobRef with server's ref (includes version) and original type preserved in _bt
15113
- return Object.assign({ _bt: origType, ref: result.ref, size: size }, (origType === 'Blob' ? { ct: contentType } : {}) // Only include content type for Blobs
15114
- );
15147
+ return Object.assign({ _bt: origType, ref: result.ref, size: size }, (origType === 'Blob' ? { ct: contentType } : {}));
15115
15148
  });
15116
15149
  }
15117
15150
  function offloadBlobsAndMarkDirty(obj_1, databaseUrl_1, getCachedAccessToken_1) {
@@ -15119,7 +15152,10 @@
15119
15152
  const dirtyFlag = { dirty: false };
15120
15153
  const result = yield offloadBlobs(obj, databaseUrl, getCachedAccessToken, maxStringLength, dirtyFlag);
15121
15154
  // Mark the object as dirty for sync if any blobs were offloaded
15122
- if (dirtyFlag.dirty && typeof result === 'object' && result !== null && result.constructor === Object) {
15155
+ if (dirtyFlag.dirty &&
15156
+ typeof result === 'object' &&
15157
+ result !== null &&
15158
+ result.constructor === Object) {
15123
15159
  result._hasBlobRefs = 1;
15124
15160
  }
15125
15161
  return result;
@@ -15135,7 +15171,9 @@
15135
15171
  return obj;
15136
15172
  }
15137
15173
  // Check if this is a long string that should be offloaded
15138
- if (typeof obj === 'string' && obj.length > maxStringLength && maxStringLength !== Infinity) {
15174
+ if (typeof obj === 'string' &&
15175
+ obj.length > maxStringLength &&
15176
+ maxStringLength !== Infinity) {
15139
15177
  if (blobEndpointSupported.get(databaseUrl) === false) {
15140
15178
  return obj;
15141
15179
  }
@@ -15221,11 +15259,11 @@
15221
15259
  switch (op.type) {
15222
15260
  case 'insert':
15223
15261
  case 'upsert': {
15224
- const processedValues = yield Promise.all(op.values.map(value => offloadBlobsAndMarkDirty(value, databaseUrl, getCachedAccessToken, maxStringLength)));
15262
+ const processedValues = yield Promise.all(op.values.map((value) => offloadBlobsAndMarkDirty(value, databaseUrl, getCachedAccessToken, maxStringLength)));
15225
15263
  return Object.assign(Object.assign({}, op), { values: processedValues });
15226
15264
  }
15227
15265
  case 'update': {
15228
- const processedChangeSpecs = yield Promise.all(op.changeSpecs.map(spec => offloadBlobsAndMarkDirty(spec, databaseUrl, getCachedAccessToken, maxStringLength)));
15266
+ const processedChangeSpecs = yield Promise.all(op.changeSpecs.map((spec) => offloadBlobsAndMarkDirty(spec, databaseUrl, getCachedAccessToken, maxStringLength)));
15229
15267
  return Object.assign(Object.assign({}, op), { changeSpecs: processedChangeSpecs });
15230
15268
  }
15231
15269
  case 'modify': {
@@ -15258,9 +15296,9 @@
15258
15296
  switch (op.type) {
15259
15297
  case 'insert':
15260
15298
  case 'upsert':
15261
- return op.values.some(value => hasLargeBlobs(value, maxStringLength));
15299
+ return op.values.some((value) => hasLargeBlobs(value, maxStringLength));
15262
15300
  case 'update':
15263
- return op.changeSpecs.some(spec => hasLargeBlobs(spec, maxStringLength));
15301
+ return op.changeSpecs.some((spec) => hasLargeBlobs(spec, maxStringLength));
15264
15302
  case 'modify':
15265
15303
  return hasLargeBlobs(op.changeSpec, maxStringLength);
15266
15304
  default:
@@ -15272,7 +15310,9 @@
15272
15310
  return false;
15273
15311
  }
15274
15312
  // Check long strings
15275
- if (typeof obj === 'string' && obj.length > maxStringLength && maxStringLength !== Infinity) {
15313
+ if (typeof obj === 'string' &&
15314
+ obj.length > maxStringLength &&
15315
+ maxStringLength !== Infinity) {
15276
15316
  return true;
15277
15317
  }
15278
15318
  if (shouldOffloadBlob(obj)) {
@@ -15287,13 +15327,13 @@
15287
15327
  }
15288
15328
  visited.add(obj);
15289
15329
  if (Array.isArray(obj)) {
15290
- return obj.some(item => hasLargeBlobs(item, maxStringLength, visited));
15330
+ return obj.some((item) => hasLargeBlobs(item, maxStringLength, visited));
15291
15331
  }
15292
15332
  // Traverse plain objects (POJO-like) - use duck typing since IndexedDB
15293
15333
  // may return objects where constructor !== Object
15294
15334
  const proto = Object.getPrototypeOf(obj);
15295
15335
  if (proto === Object.prototype || proto === null) {
15296
- return Object.values(obj).some(value => hasLargeBlobs(value, maxStringLength, visited));
15336
+ return Object.values(obj).some((value) => hasLargeBlobs(value, maxStringLength, visited));
15297
15337
  }
15298
15338
  return false;
15299
15339
  }
@@ -15347,7 +15387,7 @@
15347
15387
  yield db.table(yTable).add({
15348
15388
  i: DEXIE_CLOUD_SYNCER_ID,
15349
15389
  unsentFrom,
15350
- receivedUntil
15390
+ receivedUntil,
15351
15391
  });
15352
15392
  }
15353
15393
  else {
@@ -15487,19 +15527,22 @@
15487
15527
  return Promise.resolve(cached.accessToken);
15488
15528
  }
15489
15529
  const currentUser = db.cloud.currentUser.value;
15490
- if (currentUser && currentUser.accessToken && ((_b = (_a = currentUser.accessTokenExpiration) === null || _a === void 0 ? void 0 : _a.getTime()) !== null && _b !== void 0 ? _b : Infinity) > Date.now() + 5 * MINUTES) {
15530
+ if (currentUser &&
15531
+ currentUser.accessToken &&
15532
+ ((_b = (_a = currentUser.accessTokenExpiration) === null || _a === void 0 ? void 0 : _a.getTime()) !== null && _b !== void 0 ? _b : Infinity) >
15533
+ Date.now() + 5 * MINUTES) {
15491
15534
  wm$2.set(db, {
15492
15535
  accessToken: currentUser.accessToken,
15493
- expiration: (_d = (_c = currentUser.accessTokenExpiration) === null || _c === void 0 ? void 0 : _c.getTime()) !== null && _d !== void 0 ? _d : Infinity
15536
+ expiration: (_d = (_c = currentUser.accessTokenExpiration) === null || _c === void 0 ? void 0 : _c.getTime()) !== null && _d !== void 0 ? _d : Infinity,
15494
15537
  });
15495
15538
  return Promise.resolve(currentUser.accessToken);
15496
15539
  }
15497
- return Dexie.ignoreTransaction(() => loadAccessToken(db).then(user => {
15540
+ return Dexie.ignoreTransaction(() => loadAccessToken(db).then((user) => {
15498
15541
  var _a, _b;
15499
15542
  if (user === null || user === void 0 ? void 0 : user.accessToken) {
15500
15543
  wm$2.set(db, {
15501
15544
  accessToken: user.accessToken,
15502
- expiration: (_b = (_a = user.accessTokenExpiration) === null || _a === void 0 ? void 0 : _a.getTime()) !== null && _b !== void 0 ? _b : Infinity
15545
+ expiration: (_b = (_a = user.accessTokenExpiration) === null || _a === void 0 ? void 0 : _a.getTime()) !== null && _b !== void 0 ? _b : Infinity,
15503
15546
  });
15504
15547
  }
15505
15548
  return (user === null || user === void 0 ? void 0 : user.accessToken) || null;
@@ -15510,7 +15553,8 @@
15510
15553
  function sync(db, options, schema, syncOptions) {
15511
15554
  return _sync(db, options, schema, syncOptions)
15512
15555
  .then((result) => {
15513
- if (!(syncOptions === null || syncOptions === void 0 ? void 0 : syncOptions.justCheckIfNeeded)) { // && syncOptions?.purpose !== 'push') {
15556
+ if (!(syncOptions === null || syncOptions === void 0 ? void 0 : syncOptions.justCheckIfNeeded)) {
15557
+ // && syncOptions?.purpose !== 'push') {
15514
15558
  db.syncStateChangedEvent.next({
15515
15559
  phase: 'in-sync',
15516
15560
  });
@@ -15597,7 +15641,7 @@
15597
15641
  const syncState = yield db.getPersistedSyncState();
15598
15642
  let baseRevs = yield db.$baseRevs.toArray();
15599
15643
  // Resolve #2168
15600
- baseRevs = baseRevs.filter(br => tablesToSync.some(tbl => tbl.name === br.tableName));
15644
+ baseRevs = baseRevs.filter((br) => tablesToSync.some((tbl) => tbl.name === br.tableName));
15601
15645
  let clientChanges = yield listClientChanges(mutationTables, db);
15602
15646
  const yResults = yield listYClientMessagesAndStateVector(db, tablesToSync);
15603
15647
  throwIfCancelled(cancelToken);
@@ -15613,7 +15657,7 @@
15613
15657
  }
15614
15658
  return [clientChanges, syncState, baseRevs, yResults];
15615
15659
  }));
15616
- const pushSyncIsNeeded = clientChangeSet.some((set) => set.muts.some((mut) => mut.keys.length > 0)) || yMessages.some(m => m.type === 'u-c');
15660
+ const pushSyncIsNeeded = clientChangeSet.some((set) => set.muts.some((mut) => mut.keys.length > 0)) || yMessages.some((m) => m.type === 'u-c');
15617
15661
  if (justCheckIfNeeded) {
15618
15662
  console.debug('Sync is needed:', pushSyncIsNeeded);
15619
15663
  return pushSyncIsNeeded;
@@ -15757,7 +15801,7 @@
15757
15801
  db.$syncState.put(newSyncState, 'syncState');
15758
15802
  return {
15759
15803
  done: addedClientChanges.length === 0,
15760
- newSyncState
15804
+ newSyncState,
15761
15805
  };
15762
15806
  }));
15763
15807
  if (!done) {
@@ -15765,7 +15809,7 @@
15765
15809
  yield checkSyncRateLimitDelay(db);
15766
15810
  return yield _sync(db, options, schema, { isInitialSync, cancelToken });
15767
15811
  }
15768
- const usingYProps = Object.values(schema).some(tbl => { var _a; return (_a = tbl.yProps) === null || _a === void 0 ? void 0 : _a.length; });
15812
+ const usingYProps = Object.values(schema).some((tbl) => { var _a; return (_a = tbl.yProps) === null || _a === void 0 ? void 0 : _a.length; });
15769
15813
  const serverSupportsYprops = !!res.yMessages;
15770
15814
  if (usingYProps && serverSupportsYprops) {
15771
15815
  try {
@@ -16072,11 +16116,13 @@
16072
16116
  download(blobRef, dbUrl) {
16073
16117
  let promise = this.inFlight.get(blobRef.ref);
16074
16118
  if (!promise) {
16075
- promise = loadCachedAccessToken(this.db).then(accessToken => {
16119
+ promise = loadCachedAccessToken(this.db)
16120
+ .then((accessToken) => {
16076
16121
  if (!accessToken)
16077
- throw new Error("No access token available for blob download");
16122
+ throw new Error('No access token available for blob download');
16078
16123
  return downloadBlob(blobRef, dbUrl, accessToken);
16079
- }).finally(() => this.inFlight.delete(blobRef.ref));
16124
+ })
16125
+ .finally(() => this.inFlight.delete(blobRef.ref));
16080
16126
  // When the promise settles (either fulfilled or rejected), remove it from the in-flight map
16081
16127
  this.inFlight.set(blobRef.ref, promise);
16082
16128
  }
@@ -16096,8 +16142,8 @@
16096
16142
  const downloadUrl = `${dbUrl}/blob/${blobRef.ref}`;
16097
16143
  const response = yield fetch(downloadUrl, {
16098
16144
  headers: {
16099
- 'Authorization': `Bearer ${accessToken}`
16100
- }
16145
+ Authorization: `Bearer ${accessToken}`,
16146
+ },
16101
16147
  });
16102
16148
  if (!response.ok) {
16103
16149
  throw new Error(`Failed to download blob ${blobRef.ref}: ${response.status} ${response.statusText}`);
@@ -16189,7 +16235,9 @@
16189
16235
  return db.$syncState.get('schema').then((schema) => {
16190
16236
  if (schema) {
16191
16237
  for (const table of db.tables) {
16192
- if (table.schema.primKey && table.schema.primKey.keyPath && schema[table.name]) {
16238
+ if (table.schema.primKey &&
16239
+ table.schema.primKey.keyPath &&
16240
+ schema[table.name]) {
16193
16241
  schema[table.name].primaryKey = nameFromKeyPath(table.schema.primKey.keyPath);
16194
16242
  }
16195
16243
  }
@@ -16217,9 +16265,11 @@
16217
16265
  return db;
16218
16266
  }
16219
16267
  function nameFromKeyPath(keyPath) {
16220
- return typeof keyPath === 'string' ?
16221
- keyPath :
16222
- keyPath ? ('[' + [].join.call(keyPath, '+') + ']') : "";
16268
+ return typeof keyPath === 'string'
16269
+ ? keyPath
16270
+ : keyPath
16271
+ ? '[' + [].join.call(keyPath, '+') + ']'
16272
+ : '';
16223
16273
  }
16224
16274
 
16225
16275
  // @ts-ignore
@@ -16241,7 +16291,7 @@
16241
16291
  const DISABLE_SERVICEWORKER_STRATEGY = (isSafari && safariVersion <= 605) || // Disable for Safari for now.
16242
16292
  isFirefox; // Disable for Firefox for now. Seems to have a bug in reading CryptoKeys from IDB from service workers
16243
16293
 
16244
- const IS_SERVICE_WORKER = typeof self !== "undefined" && "clients" in self && !self.document;
16294
+ const IS_SERVICE_WORKER = typeof self !== 'undefined' && 'clients' in self && !self.document;
16245
16295
 
16246
16296
  function throwVersionIncrementNeeded() {
16247
16297
  throw new Dexie.SchemaError(`Version increment needed to allow dexie-cloud change tracking`);
@@ -16487,7 +16537,7 @@
16487
16537
  // We must also degrade from consistent modify operations for the
16488
16538
  // same reason - object might be there on server. Must but put up instead.
16489
16539
  // FUTURE: This clumpsy behavior of private IDs could be refined later.
16490
- // Suggestion is to in future, treat private IDs as we treat all objects
16540
+ // Suggestion is to in future, treat private IDs as we treat all objects
16491
16541
  // and sync operations normally. Only that deletions should become soft deletes
16492
16542
  // for them - so that server knows when a private ID has been deleted on server
16493
16543
  // not accept insert/upserts on them.
@@ -16510,19 +16560,20 @@
16510
16560
  }
16511
16561
 
16512
16562
  function allSettled(possiblePromises) {
16513
- return new Promise(resolve => {
16563
+ return new Promise((resolve) => {
16514
16564
  if (possiblePromises.length === 0)
16515
16565
  resolve([]);
16516
16566
  let remaining = possiblePromises.length;
16517
16567
  const results = new Array(remaining);
16518
- possiblePromises.forEach((p, i) => Promise.resolve(p).then(value => results[i] = { status: "fulfilled", value }, reason => results[i] = { status: "rejected", reason })
16568
+ possiblePromises.forEach((p, i) => Promise.resolve(p)
16569
+ .then((value) => (results[i] = { status: 'fulfilled', value }), (reason) => (results[i] = { status: 'rejected', reason }))
16519
16570
  .then(() => --remaining || resolve(results)));
16520
16571
  });
16521
16572
  }
16522
16573
 
16523
16574
  let counter$1 = 0;
16524
16575
  function guardedTable(table) {
16525
- const prop = "$lock" + (++counter$1);
16576
+ const prop = '$lock' + ++counter$1;
16526
16577
  return Object.assign(Object.assign({}, table), { count: readLock(table.count, prop), get: readLock(table.get, prop), getMany: readLock(table.getMany, prop), openCursor: readLock(table.openCursor, prop), query: readLock(table.query, prop), mutate: writeLock(table.mutate, prop) });
16527
16578
  }
16528
16579
  function readLock(fn, prop) {
@@ -16531,7 +16582,9 @@
16531
16582
  const numWriters = writers.length;
16532
16583
  const promise = (numWriters > 0
16533
16584
  ? writers[numWriters - 1].then(() => fn(req), () => fn(req))
16534
- : fn(req)).finally(() => { readers.splice(readers.indexOf(promise)); });
16585
+ : fn(req)).finally(() => {
16586
+ readers.splice(readers.indexOf(promise));
16587
+ });
16535
16588
  readers.push(promise);
16536
16589
  return promise;
16537
16590
  };
@@ -16543,7 +16596,9 @@
16543
16596
  ? writers[writers.length - 1].then(() => fn(req), () => fn(req))
16544
16597
  : readers.length > 0
16545
16598
  ? allSettled(readers).then(() => fn(req))
16546
- : fn(req)).finally(() => { writers.shift(); });
16599
+ : fn(req)).finally(() => {
16600
+ writers.shift();
16601
+ });
16547
16602
  writers.push(promise);
16548
16603
  return promise;
16549
16604
  };
@@ -16821,16 +16876,17 @@
16821
16876
  userId,
16822
16877
  values,
16823
16878
  }
16824
- : upsert && updates ? {
16825
- type: 'upsert',
16826
- ts,
16827
- opNo,
16828
- keys,
16829
- values,
16830
- changeSpecs: updates.changeSpecs.filter((_, idx) => !failures[idx]),
16831
- txid,
16832
- userId,
16833
- }
16879
+ : upsert && updates
16880
+ ? {
16881
+ type: 'upsert',
16882
+ ts,
16883
+ opNo,
16884
+ keys,
16885
+ values,
16886
+ changeSpecs: updates.changeSpecs.filter((_, idx) => !failures[idx]),
16887
+ txid,
16888
+ userId,
16889
+ }
16834
16890
  : criteria && changeSpec
16835
16891
  ? {
16836
16892
  // Common changeSpec for all keys
@@ -16943,7 +16999,8 @@
16943
16999
  return;
16944
17000
  }
16945
17001
  // Atomic update of just the blob property
16946
- this.db.transaction('rw', item.tableName, (tx) => {
17002
+ this.db
17003
+ .transaction('rw', item.tableName, (tx) => {
16947
17004
  const trans = tx.idbtrans;
16948
17005
  trans.disableChangeTracking = true; // Don't regard this as a change for sync purposes
16949
17006
  trans.disableAccessControl = true; // Bypass any access control checks since this is an internal operation
@@ -16952,7 +17009,7 @@
16952
17009
  for (const blob of item.resolvedBlobs) {
16953
17010
  updateSpec[blob.keyPath] = blob.data;
16954
17011
  }
16955
- tx.table(item.tableName).update(item.primaryKey, obj => {
17012
+ tx.table(item.tableName).update(item.primaryKey, (obj) => {
16956
17013
  // Check that object still has the same unresolved blob refs before applying update (i.e. it hasn't been modified since we read it)
16957
17014
  for (const blob of item.resolvedBlobs) {
16958
17015
  // Verify atomicity - none of the blob properties has been modified since we read it. If any of them was modified, skip updating this item to avoid overwriting user changes.
@@ -16973,9 +17030,11 @@
16973
17030
  }
16974
17031
  delete obj._hasBlobRefs; // Clear the _hasBlobRefs marker if all refs was resolved.
16975
17032
  });
16976
- }).catch((error) => {
17033
+ })
17034
+ .catch((error) => {
16977
17035
  console.error(`Error saving resolved blobs on ${item.tableName}:${item.primaryKey}:`, error);
16978
- }).finally(() => {
17036
+ })
17037
+ .finally(() => {
16979
17038
  // Process next item in the queue
16980
17039
  return this.processQueue();
16981
17040
  });
@@ -17026,7 +17085,7 @@
17026
17085
  if ((_a = req.trans) === null || _a === void 0 ? void 0 : _a.disableBlobResolve) {
17027
17086
  return downlevelTable.get(req);
17028
17087
  }
17029
- return downlevelTable.get(req).then(result => {
17088
+ return downlevelTable.get(req).then((result) => {
17030
17089
  if (result && hasUnresolvedBlobRefs(result)) {
17031
17090
  return resolveAndSave(downlevelTable, req.trans, req.key, result, blobSavingQueue, db);
17032
17091
  }
@@ -17038,9 +17097,9 @@
17038
17097
  if ((_a = req.trans) === null || _a === void 0 ? void 0 : _a.disableBlobResolve) {
17039
17098
  return downlevelTable.getMany(req);
17040
17099
  }
17041
- return downlevelTable.getMany(req).then(results => {
17100
+ return downlevelTable.getMany(req).then((results) => {
17042
17101
  // Check if any results need resolution
17043
- const needsResolution = results.some(r => r && hasUnresolvedBlobRefs(r));
17102
+ const needsResolution = results.some((r) => r && hasUnresolvedBlobRefs(r));
17044
17103
  if (!needsResolution)
17045
17104
  return results;
17046
17105
  return Dexie.Promise.all(results.map((result, index) => {
@@ -17056,19 +17115,19 @@
17056
17115
  if ((_a = req.trans) === null || _a === void 0 ? void 0 : _a.disableBlobResolve) {
17057
17116
  return downlevelTable.query(req);
17058
17117
  }
17059
- return downlevelTable.query(req).then(result => {
17118
+ return downlevelTable.query(req).then((result) => {
17060
17119
  if (!result.result || !Array.isArray(result.result))
17061
17120
  return result;
17062
17121
  // Check if any results need resolution
17063
- const needsResolution = result.result.some(r => r && hasUnresolvedBlobRefs(r));
17122
+ const needsResolution = result.result.some((r) => r && hasUnresolvedBlobRefs(r));
17064
17123
  if (!needsResolution)
17065
17124
  return result;
17066
- return Dexie.Promise.all(result.result.map(item => {
17125
+ return Dexie.Promise.all(result.result.map((item) => {
17067
17126
  if (item && hasUnresolvedBlobRefs(item)) {
17068
17127
  return resolveAndSave(downlevelTable, req.trans, undefined, item, blobSavingQueue, db);
17069
17128
  }
17070
17129
  return item;
17071
- })).then(resolved => (Object.assign(Object.assign({}, result), { result: resolved })));
17130
+ })).then((resolved) => (Object.assign(Object.assign({}, result), { result: resolved })));
17072
17131
  });
17073
17132
  },
17074
17133
  openCursor(req) {
@@ -17076,7 +17135,7 @@
17076
17135
  if ((_a = req.trans) === null || _a === void 0 ? void 0 : _a.disableBlobResolve) {
17077
17136
  return downlevelTable.openCursor(req);
17078
17137
  }
17079
- return downlevelTable.openCursor(req).then(cursor => {
17138
+ return downlevelTable.openCursor(req).then((cursor) => {
17080
17139
  if (!cursor)
17081
17140
  return cursor; // No results, so no resolution needed
17082
17141
  if (!req.values)
@@ -17106,7 +17165,7 @@
17106
17165
  value: {
17107
17166
  value: cursor.value,
17108
17167
  enumerable: true,
17109
- writable: true
17168
+ writable: true,
17110
17169
  },
17111
17170
  start: {
17112
17171
  value(onNext) {
@@ -17118,17 +17177,17 @@
17118
17177
  onNext();
17119
17178
  return;
17120
17179
  }
17121
- resolveAndSave(table, cursor.trans, cursor.primaryKey, rawValue, blobSavingQueue, db, true).then(resolved => {
17180
+ resolveAndSave(table, cursor.trans, cursor.primaryKey, rawValue, blobSavingQueue, db, true).then((resolved) => {
17122
17181
  wrappedCursor.value = resolved;
17123
17182
  onNext();
17124
- }, err => {
17183
+ }, (err) => {
17125
17184
  console.error('Failed to resolve BlobRefs for cursor value:', err);
17126
17185
  wrappedCursor.value = rawValue;
17127
17186
  onNext();
17128
17187
  });
17129
17188
  });
17130
- }
17131
- }
17189
+ },
17190
+ },
17132
17191
  });
17133
17192
  return wrappedCursor;
17134
17193
  }
@@ -17173,12 +17232,15 @@
17173
17232
  const resolvePromise = needsWaitFor
17174
17233
  ? Dexie.waitFor(resolutionPromise)
17175
17234
  : Dexie.Promise.resolve(resolutionPromise);
17176
- return resolvePromise.then(resolved => {
17235
+ return resolvePromise
17236
+ .then((resolved) => {
17177
17237
  // Get primary key from the object
17178
17238
  const primaryKey = table.schema.primaryKey;
17179
- const key = pKey !== undefined ? pKey : primaryKey.keyPath
17180
- ? Dexie.getByKeyPath(obj, primaryKey.keyPath)
17181
- : undefined;
17239
+ const key = pKey !== undefined
17240
+ ? pKey
17241
+ : primaryKey.keyPath
17242
+ ? Dexie.getByKeyPath(obj, primaryKey.keyPath)
17243
+ : undefined;
17182
17244
  if (key !== undefined) {
17183
17245
  // Queue each resolved blob individually for atomic update
17184
17246
  // This uses setTimeout(fn, 0) to completely isolate from
@@ -17189,13 +17251,16 @@
17189
17251
  else {
17190
17252
  // For rw transactions, we can save directly without queueing
17191
17253
  // since we're still in the same transaction context
17192
- table.mutate({ type: 'put', keys: [key], values: [resolved], trans }).catch(err => {
17254
+ table
17255
+ .mutate({ type: 'put', keys: [key], values: [resolved], trans })
17256
+ .catch((err) => {
17193
17257
  console.error(`Failed to save resolved blob on ${table.name}:${key}:`, err);
17194
17258
  });
17195
17259
  }
17196
17260
  }
17197
17261
  return resolved;
17198
- }).catch(err => {
17262
+ })
17263
+ .catch((err) => {
17199
17264
  console.error(`[dexie-cloud:blobResolve] Failed to resolve BlobRefs on ${table.name}:`, err);
17200
17265
  return obj; // Return original object on error - never block the read pipeline
17201
17266
  });
@@ -17224,9 +17289,13 @@
17224
17289
  return; // Continue
17225
17290
  }
17226
17291
  // They have declared this table. Merge indexes in case they didn't declare all indexes we need.
17227
- const requestedIndexes = schemaSrc.split(',').map(spec => spec.trim());
17228
- const builtInIndexes = DEXIE_CLOUD_SCHEMA[tableName].split(',').map(spec => spec.trim());
17229
- const requestedIndexSet = new Set(requestedIndexes.map(index => index.replace(/([&*]|\+\+)/g, "")));
17292
+ const requestedIndexes = schemaSrc
17293
+ .split(',')
17294
+ .map((spec) => spec.trim());
17295
+ const builtInIndexes = DEXIE_CLOUD_SCHEMA[tableName]
17296
+ .split(',')
17297
+ .map((spec) => spec.trim());
17298
+ const requestedIndexSet = new Set(requestedIndexes.map((index) => index.replace(/([&*]|\+\+)/g, '')));
17230
17299
  // Verify that primary key is unchanged
17231
17300
  if (requestedIndexes[0] !== builtInIndexes[0]) {
17232
17301
  // Primary key must match exactly
@@ -17235,7 +17304,7 @@
17235
17304
  // Merge indexes
17236
17305
  for (let i = 1; i < builtInIndexes.length; ++i) {
17237
17306
  const builtInIndex = builtInIndexes[i];
17238
- if (!requestedIndexSet.has(builtInIndex.replace(/([&*]|\+\+)/g, ""))) {
17307
+ if (!requestedIndexSet.has(builtInIndex.replace(/([&*]|\+\+)/g, ''))) {
17239
17308
  // Add built-in index if not already requested
17240
17309
  storesClone[tableName] += `,${builtInIndex}`;
17241
17310
  }
@@ -17244,7 +17313,7 @@
17244
17313
  // Populate dexie.cloud.schema
17245
17314
  const cloudSchema = dexie.cloud.schema || (dexie.cloud.schema = {});
17246
17315
  const allPrefixes = new Set();
17247
- Object.keys(storesClone).forEach(tableName => {
17316
+ Object.keys(storesClone).forEach((tableName) => {
17248
17317
  var _a;
17249
17318
  const schemaSrc = (_a = storesClone[tableName]) === null || _a === void 0 ? void 0 : _a.trim();
17250
17319
  const cloudTableSchema = cloudSchema[tableName] || (cloudSchema[tableName] = {});
@@ -17373,7 +17442,7 @@
17373
17442
  class TokenExpiredError extends Error {
17374
17443
  constructor() {
17375
17444
  super(...arguments);
17376
- this.name = "TokenExpiredError";
17445
+ this.name = 'TokenExpiredError';
17377
17446
  }
17378
17447
  }
17379
17448
 
@@ -17859,7 +17928,7 @@
17859
17928
  // Connect the WebSocket to given url:
17860
17929
  console.debug('dexie-cloud WebSocket create');
17861
17930
  const ws = (this.ws = new WebSocket(`${wsUrl}/changes?${searchParams}`));
17862
- ws.binaryType = "arraybuffer";
17931
+ ws.binaryType = 'arraybuffer';
17863
17932
  ws.onclose = (event) => {
17864
17933
  if (!this.pinger)
17865
17934
  return;
@@ -17898,10 +17967,17 @@
17898
17967
  getOpenDocSignal(doc).next(); // Make yHandler reopen the document on server.
17899
17968
  }
17900
17969
  }
17901
- else if (msg.type === 'u-ack' || msg.type === 'u-reject' || msg.type === 'u-s' || msg.type === 'in-sync' || msg.type === 'outdated-server-rev' || msg.type === 'y-complete-sync-done') {
17970
+ else if (msg.type === 'u-ack' ||
17971
+ msg.type === 'u-reject' ||
17972
+ msg.type === 'u-s' ||
17973
+ msg.type === 'in-sync' ||
17974
+ msg.type === 'outdated-server-rev' ||
17975
+ msg.type === 'y-complete-sync-done') {
17902
17976
  applyYServerMessages([msg], this.db).then((_a) => __awaiter(this, [_a], void 0, function* ({ resyncNeeded, yServerRevision, receivedUntils }) {
17903
17977
  if (yServerRevision) {
17904
- yield this.db.$syncState.update('syncState', { yServerRevision: yServerRevision });
17978
+ yield this.db.$syncState.update('syncState', {
17979
+ yServerRevision: yServerRevision,
17980
+ });
17905
17981
  }
17906
17982
  if (msg.type === 'u-s' && receivedUntils) {
17907
17983
  const utbl = getUpdatesTable(this.db, msg.table, msg.prop);
@@ -18104,7 +18180,9 @@
18104
18180
  return __awaiter(this, void 0, void 0, function* () {
18105
18181
  var _a;
18106
18182
  return ((_a = db.cloud.options) === null || _a === void 0 ? void 0 : _a.databaseUrl) && db.cloud.schema
18107
- ? yield sync(db, db.cloud.options, db.cloud.schema, { justCheckIfNeeded: true })
18183
+ ? yield sync(db, db.cloud.options, db.cloud.schema, {
18184
+ justCheckIfNeeded: true,
18185
+ })
18108
18186
  : false;
18109
18187
  });
18110
18188
  }
@@ -18316,243 +18394,243 @@
18316
18394
  const Styles = {
18317
18395
  Alert: {
18318
18396
  error: {
18319
- color: "red",
18320
- fontWeight: "bold"
18397
+ color: 'red',
18398
+ fontWeight: 'bold',
18321
18399
  },
18322
18400
  warning: {
18323
- color: "#f80",
18324
- fontWeight: "bold"
18401
+ color: '#f80',
18402
+ fontWeight: 'bold',
18325
18403
  },
18326
18404
  info: {
18327
- color: "black"
18328
- }
18405
+ color: 'black',
18406
+ },
18329
18407
  },
18330
18408
  Darken: {
18331
- position: "fixed",
18409
+ position: 'fixed',
18332
18410
  top: 0,
18333
18411
  left: 0,
18334
18412
  opacity: 0.5,
18335
- backgroundColor: "#000",
18336
- width: "100vw",
18337
- height: "100vh",
18413
+ backgroundColor: '#000',
18414
+ width: '100vw',
18415
+ height: '100vh',
18338
18416
  zIndex: 150,
18339
- webkitBackdropFilter: "blur(2px)",
18340
- backdropFilter: "blur(2px)",
18417
+ webkitBackdropFilter: 'blur(2px)',
18418
+ backdropFilter: 'blur(2px)',
18341
18419
  },
18342
18420
  DialogOuter: {
18343
- position: "fixed",
18421
+ position: 'fixed',
18344
18422
  top: 0,
18345
18423
  left: 0,
18346
- width: "100vw",
18347
- height: "100vh",
18424
+ width: '100vw',
18425
+ height: '100vh',
18348
18426
  zIndex: 150,
18349
- alignItems: "center",
18350
- display: "flex",
18351
- justifyContent: "center",
18352
- padding: "16px",
18353
- boxSizing: "border-box"
18427
+ alignItems: 'center',
18428
+ display: 'flex',
18429
+ justifyContent: 'center',
18430
+ padding: '16px',
18431
+ boxSizing: 'border-box',
18354
18432
  },
18355
18433
  DialogInner: {
18356
- position: "relative",
18357
- color: "#222",
18358
- backgroundColor: "#fff",
18359
- padding: "24px",
18360
- marginBottom: "2em",
18361
- maxWidth: "400px",
18362
- width: "100%",
18363
- maxHeight: "90%",
18364
- overflowY: "auto",
18365
- border: "3px solid #3d3d5d",
18366
- borderRadius: "8px",
18367
- boxShadow: "0 0 80px 10px #666",
18368
- fontFamily: "sans-serif",
18369
- boxSizing: "border-box"
18434
+ position: 'relative',
18435
+ color: '#222',
18436
+ backgroundColor: '#fff',
18437
+ padding: '24px',
18438
+ marginBottom: '2em',
18439
+ maxWidth: '400px',
18440
+ width: '100%',
18441
+ maxHeight: '90%',
18442
+ overflowY: 'auto',
18443
+ border: '3px solid #3d3d5d',
18444
+ borderRadius: '8px',
18445
+ boxShadow: '0 0 80px 10px #666',
18446
+ fontFamily: 'sans-serif',
18447
+ boxSizing: 'border-box',
18370
18448
  },
18371
18449
  Input: {
18372
- height: "35px",
18373
- width: "100%",
18374
- maxWidth: "100%",
18375
- borderColor: "#ccf4",
18376
- outline: "none",
18377
- fontSize: "16px",
18378
- padding: "8px",
18379
- boxSizing: "border-box",
18380
- backgroundColor: "#f9f9f9",
18381
- borderRadius: "4px",
18382
- border: "1px solid #ccc",
18383
- marginTop: "6px",
18384
- fontFamily: "inherit"
18450
+ height: '35px',
18451
+ width: '100%',
18452
+ maxWidth: '100%',
18453
+ borderColor: '#ccf4',
18454
+ outline: 'none',
18455
+ fontSize: '16px',
18456
+ padding: '8px',
18457
+ boxSizing: 'border-box',
18458
+ backgroundColor: '#f9f9f9',
18459
+ borderRadius: '4px',
18460
+ border: '1px solid #ccc',
18461
+ marginTop: '6px',
18462
+ fontFamily: 'inherit',
18385
18463
  },
18386
18464
  Button: {
18387
- padding: "10px 20px",
18388
- margin: "0 4px",
18389
- border: "1px solid #d1d5db",
18390
- borderRadius: "6px",
18391
- backgroundColor: "#ffffff",
18392
- cursor: "pointer",
18393
- fontSize: "14px",
18394
- fontWeight: "500",
18395
- color: "#374151",
18396
- transition: "all 0.2s ease"
18465
+ padding: '10px 20px',
18466
+ margin: '0 4px',
18467
+ border: '1px solid #d1d5db',
18468
+ borderRadius: '6px',
18469
+ backgroundColor: '#ffffff',
18470
+ cursor: 'pointer',
18471
+ fontSize: '14px',
18472
+ fontWeight: '500',
18473
+ color: '#374151',
18474
+ transition: 'all 0.2s ease',
18397
18475
  },
18398
18476
  PrimaryButton: {
18399
- padding: "10px 20px",
18400
- margin: "0 4px",
18401
- border: "1px solid #3b82f6",
18402
- borderRadius: "6px",
18403
- backgroundColor: "#3b82f6",
18404
- color: "white",
18405
- cursor: "pointer",
18406
- fontSize: "14px",
18407
- fontWeight: "500",
18408
- transition: "all 0.2s ease"
18477
+ padding: '10px 20px',
18478
+ margin: '0 4px',
18479
+ border: '1px solid #3b82f6',
18480
+ borderRadius: '6px',
18481
+ backgroundColor: '#3b82f6',
18482
+ color: 'white',
18483
+ cursor: 'pointer',
18484
+ fontSize: '14px',
18485
+ fontWeight: '500',
18486
+ transition: 'all 0.2s ease',
18409
18487
  },
18410
18488
  ButtonsDiv: {
18411
- display: "flex",
18412
- justifyContent: "flex-end",
18413
- gap: "12px",
18414
- marginTop: "24px",
18415
- paddingTop: "20px"
18489
+ display: 'flex',
18490
+ justifyContent: 'flex-end',
18491
+ gap: '12px',
18492
+ marginTop: '24px',
18493
+ paddingTop: '20px',
18416
18494
  },
18417
18495
  Label: {
18418
- display: "block",
18419
- marginBottom: "12px",
18420
- fontSize: "14px",
18421
- fontWeight: "500",
18422
- color: "#333"
18496
+ display: 'block',
18497
+ marginBottom: '12px',
18498
+ fontSize: '14px',
18499
+ fontWeight: '500',
18500
+ color: '#333',
18423
18501
  },
18424
18502
  WindowHeader: {
18425
- margin: "0 0 20px 0",
18426
- fontSize: "18px",
18427
- fontWeight: "600",
18428
- color: "#333",
18429
- borderBottom: "1px solid #eee",
18430
- paddingBottom: "10px"
18503
+ margin: '0 0 20px 0',
18504
+ fontSize: '18px',
18505
+ fontWeight: '600',
18506
+ color: '#333',
18507
+ borderBottom: '1px solid #eee',
18508
+ paddingBottom: '10px',
18431
18509
  },
18432
18510
  // OAuth Provider Button Styles
18433
18511
  ProviderButton: {
18434
- display: "flex",
18435
- alignItems: "center",
18436
- justifyContent: "center",
18437
- width: "100%",
18438
- padding: "12px 16px",
18439
- marginBottom: "10px",
18440
- border: "1px solid #d1d5db",
18441
- borderRadius: "6px",
18442
- backgroundColor: "#ffffff",
18443
- cursor: "pointer",
18444
- fontSize: "14px",
18445
- fontWeight: "500",
18446
- color: "#374151",
18447
- transition: "all 0.2s ease",
18448
- gap: "12px"
18512
+ display: 'flex',
18513
+ alignItems: 'center',
18514
+ justifyContent: 'center',
18515
+ width: '100%',
18516
+ padding: '12px 16px',
18517
+ marginBottom: '10px',
18518
+ border: '1px solid #d1d5db',
18519
+ borderRadius: '6px',
18520
+ backgroundColor: '#ffffff',
18521
+ cursor: 'pointer',
18522
+ fontSize: '14px',
18523
+ fontWeight: '500',
18524
+ color: '#374151',
18525
+ transition: 'all 0.2s ease',
18526
+ gap: '12px',
18449
18527
  },
18450
18528
  ProviderButtonIcon: {
18451
- width: "20px",
18452
- height: "20px",
18529
+ width: '20px',
18530
+ height: '20px',
18453
18531
  flexShrink: 0,
18454
- display: "flex",
18455
- alignItems: "center",
18456
- justifyContent: "center"
18532
+ display: 'flex',
18533
+ alignItems: 'center',
18534
+ justifyContent: 'center',
18457
18535
  },
18458
18536
  ProviderButtonText: {
18459
18537
  flex: 1,
18460
- textAlign: "left"
18538
+ textAlign: 'left',
18461
18539
  },
18462
18540
  // Provider-specific colors
18463
18541
  ProviderGoogle: {
18464
- backgroundColor: "#ffffff",
18465
- border: "1px solid #dadce0",
18466
- color: "#3c4043"
18542
+ backgroundColor: '#ffffff',
18543
+ border: '1px solid #dadce0',
18544
+ color: '#3c4043',
18467
18545
  },
18468
18546
  ProviderGitHub: {
18469
- backgroundColor: "#ffffff",
18470
- border: "1px solid #dadce0",
18471
- color: "#181717"
18547
+ backgroundColor: '#ffffff',
18548
+ border: '1px solid #dadce0',
18549
+ color: '#181717',
18472
18550
  },
18473
18551
  ProviderMicrosoft: {
18474
- backgroundColor: "#ffffff",
18475
- border: "1px solid #dadce0",
18476
- color: "#5e5e5e"
18552
+ backgroundColor: '#ffffff',
18553
+ border: '1px solid #dadce0',
18554
+ color: '#5e5e5e',
18477
18555
  },
18478
18556
  ProviderApple: {
18479
- backgroundColor: "#000000",
18480
- border: "1px solid #000000",
18481
- color: "#ffffff"
18557
+ backgroundColor: '#000000',
18558
+ border: '1px solid #000000',
18559
+ color: '#ffffff',
18482
18560
  },
18483
18561
  ProviderCustom: {
18484
- backgroundColor: "#ffffff",
18485
- border: "1px solid #dadce0",
18486
- color: "#181717"
18562
+ backgroundColor: '#ffffff',
18563
+ border: '1px solid #dadce0',
18564
+ color: '#181717',
18487
18565
  },
18488
18566
  // Divider styles
18489
18567
  Divider: {
18490
- display: "flex",
18491
- alignItems: "center",
18492
- margin: "20px 0",
18493
- color: "#6b7280",
18494
- fontSize: "13px"
18568
+ display: 'flex',
18569
+ alignItems: 'center',
18570
+ margin: '20px 0',
18571
+ color: '#6b7280',
18572
+ fontSize: '13px',
18495
18573
  },
18496
18574
  DividerLine: {
18497
18575
  flex: 1,
18498
- height: "1px",
18499
- backgroundColor: "#e5e7eb"
18576
+ height: '1px',
18577
+ backgroundColor: '#e5e7eb',
18500
18578
  },
18501
18579
  DividerText: {
18502
- padding: "0 12px",
18503
- color: "#9ca3af"
18580
+ padding: '0 12px',
18581
+ color: '#9ca3af',
18504
18582
  },
18505
18583
  // OTP Button (Continue with email)
18506
18584
  OtpButton: {
18507
- display: "flex",
18508
- alignItems: "center",
18509
- justifyContent: "center",
18510
- width: "100%",
18511
- padding: "12px 16px",
18512
- border: "1px solid #d1d5db",
18513
- borderRadius: "6px",
18514
- backgroundColor: "#f9fafb",
18515
- cursor: "pointer",
18516
- fontSize: "14px",
18517
- fontWeight: "500",
18518
- color: "#374151",
18519
- transition: "all 0.2s ease",
18520
- gap: "12px"
18585
+ display: 'flex',
18586
+ alignItems: 'center',
18587
+ justifyContent: 'center',
18588
+ width: '100%',
18589
+ padding: '12px 16px',
18590
+ border: '1px solid #d1d5db',
18591
+ borderRadius: '6px',
18592
+ backgroundColor: '#f9fafb',
18593
+ cursor: 'pointer',
18594
+ fontSize: '14px',
18595
+ fontWeight: '500',
18596
+ color: '#374151',
18597
+ transition: 'all 0.2s ease',
18598
+ gap: '12px',
18521
18599
  },
18522
18600
  // Copy button for alerts with copyText
18523
18601
  CopyButton: {
18524
- display: "inline-flex",
18525
- alignItems: "center",
18526
- gap: "4px",
18527
- padding: "4px 10px",
18528
- marginTop: "8px",
18529
- border: "1px solid #d1d5db",
18530
- borderRadius: "4px",
18531
- backgroundColor: "#f9fafb",
18532
- cursor: "pointer",
18533
- fontSize: "12px",
18534
- fontWeight: "500",
18535
- color: "#374151",
18536
- transition: "all 0.15s ease",
18537
- fontFamily: "monospace"
18602
+ display: 'inline-flex',
18603
+ alignItems: 'center',
18604
+ gap: '4px',
18605
+ padding: '4px 10px',
18606
+ marginTop: '8px',
18607
+ border: '1px solid #d1d5db',
18608
+ borderRadius: '4px',
18609
+ backgroundColor: '#f9fafb',
18610
+ cursor: 'pointer',
18611
+ fontSize: '12px',
18612
+ fontWeight: '500',
18613
+ color: '#374151',
18614
+ transition: 'all 0.15s ease',
18615
+ fontFamily: 'monospace',
18538
18616
  },
18539
18617
  CopyButtonCopied: {
18540
- display: "inline-flex",
18541
- alignItems: "center",
18542
- gap: "4px",
18543
- padding: "4px 10px",
18544
- marginTop: "8px",
18545
- border: "1px solid #22c55e",
18546
- borderRadius: "4px",
18547
- backgroundColor: "#f0fdf4",
18548
- cursor: "default",
18549
- fontSize: "12px",
18550
- fontWeight: "500",
18551
- color: "#16a34a",
18552
- fontFamily: "monospace"
18618
+ display: 'inline-flex',
18619
+ alignItems: 'center',
18620
+ gap: '4px',
18621
+ padding: '4px 10px',
18622
+ marginTop: '8px',
18623
+ border: '1px solid #22c55e',
18624
+ borderRadius: '4px',
18625
+ backgroundColor: '#f0fdf4',
18626
+ cursor: 'default',
18627
+ fontSize: '12px',
18628
+ fontWeight: '500',
18629
+ color: '#16a34a',
18630
+ fontFamily: 'monospace',
18553
18631
  }};
18554
18632
 
18555
- function Dialog({ children, className }) {
18633
+ function Dialog({ children, className, }) {
18556
18634
  return (_$1("div", { className: `dexie-dialog ${className || ''}` },
18557
18635
  _$1("div", { style: Styles.Darken }),
18558
18636
  _$1("div", { style: Styles.DialogOuter },
@@ -18576,7 +18654,7 @@
18576
18654
  * @returns A final message where parameters have been replaced with values.
18577
18655
  */
18578
18656
  function resolveText({ message, messageCode, messageParams }) {
18579
- return message.replace(/\{\w+\}/ig, n => messageParams[n.substring(1, n.length - 1)]);
18657
+ return message.replace(/\{\w+\}/gi, (n) => messageParams[n.substring(1, n.length - 1)]);
18580
18658
  }
18581
18659
 
18582
18660
  /** Get style based on styleHint (for provider branding, etc.) */
@@ -18663,13 +18741,13 @@
18663
18741
  alerts.map((alert, idx) => (_$1("div", { key: idx },
18664
18742
  _$1("p", { style: Styles.Alert[alert.type] }, resolveText(alert)),
18665
18743
  alert.copyText && _$1(CopyButton, { text: alert.copyText })))),
18666
- hasOptions && (_$1("div", { class: "dxc-options" }, hasMultipleGroups ? (
18667
- // Render with dividers between groups
18668
- Array.from(optionGroups.entries()).map(([groupName, groupOptions], groupIdx) => (_$1(k$1, { key: groupName },
18669
- groupIdx > 0 && _$1(Divider, null),
18670
- groupOptions.map((option) => (_$1(OptionButton, { key: `${option.name}-${option.value}`, option: option, onClick: () => handleOptionClick(option) }))))))) : (
18671
- // Simple case: all options in one group
18672
- options.map((option) => (_$1(OptionButton, { key: `${option.name}-${option.value}`, option: option, onClick: () => handleOptionClick(option) })))))),
18744
+ hasOptions && (_$1("div", { class: "dxc-options" }, hasMultipleGroups
18745
+ ? // Render with dividers between groups
18746
+ Array.from(optionGroups.entries()).map(([groupName, groupOptions], groupIdx) => (_$1(k$1, { key: groupName },
18747
+ groupIdx > 0 && _$1(Divider, null),
18748
+ groupOptions.map((option) => (_$1(OptionButton, { key: `${option.name}-${option.value}`, option: option, onClick: () => handleOptionClick(option) }))))))
18749
+ : // Simple case: all options in one group
18750
+ options.map((option) => (_$1(OptionButton, { key: `${option.name}-${option.value}`, option: option, onClick: () => handleOptionClick(option) }))))),
18673
18751
  hasOptions && hasFields && _$1(Divider, null),
18674
18752
  hasFields && (_$1("form", { onSubmit: (ev) => {
18675
18753
  ev.preventDefault();
@@ -18681,7 +18759,8 @@
18681
18759
  const value = valueTransformer(type, (_a = ev.target) === null || _a === void 0 ? void 0 : _a['value']);
18682
18760
  let updatedParams = Object.assign(Object.assign({}, params), { [fieldName]: value });
18683
18761
  setParams(updatedParams);
18684
- if (type === 'otp' && (value === null || value === void 0 ? void 0 : value.trim().length) === OTP_LENGTH) {
18762
+ if (type === 'otp' &&
18763
+ (value === null || value === void 0 ? void 0 : value.trim().length) === OTP_LENGTH) {
18685
18764
  // Auto-submit when OTP is filled in.
18686
18765
  onSubmit(updatedParams);
18687
18766
  }
@@ -18723,7 +18802,10 @@
18723
18802
  const handleClick = () => {
18724
18803
  var _a;
18725
18804
  if (typeof navigator !== 'undefined' && ((_a = navigator.clipboard) === null || _a === void 0 ? void 0 : _a.writeText)) {
18726
- navigator.clipboard.writeText(text).then(scheduleCopiedReset).catch(() => {
18805
+ navigator.clipboard
18806
+ .writeText(text)
18807
+ .then(scheduleCopiedReset)
18808
+ .catch(() => {
18727
18809
  fallbackCopy(text, scheduleCopiedReset);
18728
18810
  });
18729
18811
  }
@@ -18794,7 +18876,7 @@
18794
18876
  },
18795
18877
  get closed() {
18796
18878
  return closed;
18797
- }
18879
+ },
18798
18880
  };
18799
18881
  }
18800
18882
 
@@ -18839,14 +18921,14 @@
18839
18921
  lazyWebSocketStatus,
18840
18922
  db.syncStateChangedEvent.pipe(operators.startWith({ phase: 'initial' })),
18841
18923
  getCurrentUserEmitter(db.dx._novip),
18842
- userIsReallyActive
18924
+ userIsReallyActive,
18843
18925
  ]).pipe(operators.map(([status, syncState, user, userIsActive]) => {
18844
18926
  var _a;
18845
18927
  if (((_a = user.license) === null || _a === void 0 ? void 0 : _a.status) && user.license.status !== 'ok') {
18846
18928
  return {
18847
18929
  phase: 'offline',
18848
18930
  status: 'offline',
18849
- license: user.license.status
18931
+ license: user.license.status,
18850
18932
  };
18851
18933
  }
18852
18934
  let { phase, error, progress } = syncState;
@@ -18866,7 +18948,8 @@
18866
18948
  }
18867
18949
  const previousPhase = db.cloud.syncState.value.phase;
18868
18950
  //const previousStatus = db.cloud.syncState.value.status;
18869
- if (previousPhase === 'error' && (syncState.phase === 'pushing' || syncState.phase === 'pulling')) {
18951
+ if (previousPhase === 'error' &&
18952
+ (syncState.phase === 'pushing' || syncState.phase === 'pulling')) {
18870
18953
  // We were in an errored state but is now doing sync. Show "connecting" icon.
18871
18954
  adjustedStatus = 'connecting';
18872
18955
  }
@@ -18881,7 +18964,7 @@
18881
18964
  error,
18882
18965
  progress,
18883
18966
  status: isOnline ? adjustedStatus : 'offline',
18884
- license: 'ok'
18967
+ license: 'ok',
18885
18968
  };
18886
18969
  return retState;
18887
18970
  }));
@@ -18902,7 +18985,7 @@
18902
18985
  },
18903
18986
  complete() {
18904
18987
  observer.complete();
18905
- }
18988
+ },
18906
18989
  });
18907
18990
  if (!didEmit && !subscription.closed) {
18908
18991
  observer.next(currentValue);
@@ -19143,7 +19226,9 @@
19143
19226
  const realm = permissionsLookup[realmId || dexie.cloud.currentUserId];
19144
19227
  if (!realm)
19145
19228
  return new PermissionChecker({}, tableName, !owner || owner === dexie.cloud.currentUserId);
19146
- return new PermissionChecker(realm.permissions, tableName, realmId === undefined || realmId === dexie.cloud.currentUserId || owner === dexie.cloud.currentUserId);
19229
+ return new PermissionChecker(realm.permissions, tableName, realmId === undefined ||
19230
+ realmId === dexie.cloud.currentUserId ||
19231
+ owner === dexie.cloud.currentUserId);
19147
19232
  };
19148
19233
  const o = source.pipe(operators.map(mapper));
19149
19234
  o.getValue = () => mapper(source.getValue());
@@ -19185,7 +19270,19 @@
19185
19270
  return; // The table that holds the doc is not marked for sync - leave it to dexie. No syncing, no awareness.
19186
19271
  }
19187
19272
  let awareness;
19273
+ const existingDescriptor = Object.getOwnPropertyDescriptor(provider, 'awareness');
19274
+ if (existingDescriptor) {
19275
+ // Provider already initialized — likely a leaked handler from a previous db instance
19276
+ // (e.g. HMR where db.close() didn't fire). Destroy the stale awareness so the new
19277
+ // handler can take over cleanly.
19278
+ const staleAwareness = provider.awareness;
19279
+ if (staleAwareness) {
19280
+ staleAwareness.destroy();
19281
+ awarenessWeakMap.delete(doc);
19282
+ }
19283
+ }
19188
19284
  Object.defineProperty(provider, 'awareness', {
19285
+ configurable: true,
19189
19286
  get() {
19190
19287
  if (awareness)
19191
19288
  return awareness;
@@ -19368,10 +19465,12 @@
19368
19465
  const { code, provider, state, error } = payload;
19369
19466
  // Check for error first
19370
19467
  if (error) {
19371
- if (error.toLowerCase().includes('access_denied') || error.toLowerCase().includes('access denied')) {
19468
+ if (error.toLowerCase().includes('access_denied') ||
19469
+ error.toLowerCase().includes('access denied')) {
19372
19470
  throw new OAuthError('access_denied', provider, error);
19373
19471
  }
19374
- if (error.toLowerCase().includes('email') && error.toLowerCase().includes('verif')) {
19472
+ if (error.toLowerCase().includes('email') &&
19473
+ error.toLowerCase().includes('verif')) {
19375
19474
  throw new OAuthError('email_not_verified', provider, error);
19376
19475
  }
19377
19476
  throw new OAuthError('provider_error', provider, error);
@@ -19397,7 +19496,9 @@
19397
19496
  return;
19398
19497
  }
19399
19498
  url.searchParams.delete('dxc-auth');
19400
- const cleanUrl = url.pathname + (url.searchParams.toString() ? `?${url.searchParams.toString()}` : '') + url.hash;
19499
+ const cleanUrl = url.pathname +
19500
+ (url.searchParams.toString() ? `?${url.searchParams.toString()}` : '') +
19501
+ url.hash;
19401
19502
  window.history.replaceState(null, '', cleanUrl);
19402
19503
  }
19403
19504
 
@@ -19410,8 +19511,8 @@
19410
19511
 
19411
19512
  const ydocTriggers = {};
19412
19513
  const middlewares = new WeakMap();
19413
- const txRunner = TriggerRunner("tx"); // Trigger registry for transaction completion. Avoids open docs.
19414
- const unloadRunner = TriggerRunner("unload"); // Trigger registry for unload. Runs when a document is closed.
19514
+ const txRunner = TriggerRunner('tx'); // Trigger registry for transaction completion. Avoids open docs.
19515
+ const unloadRunner = TriggerRunner('unload'); // Trigger registry for unload. Runs when a document is closed.
19415
19516
  function TriggerRunner(name) {
19416
19517
  let triggerExecPromise = null;
19417
19518
  let triggerScheduled = false;
@@ -19450,7 +19551,7 @@
19450
19551
  yield triggerExecPromise.catch(() => { });
19451
19552
  setTimeout(() => {
19452
19553
  // setTimeout() is to escape from Promise.PSD zones and never run within liveQueries or transaction scopes
19453
- console.log("Running trigger really!", name);
19554
+ console.log('Running trigger really!', name);
19454
19555
  triggerScheduled = false;
19455
19556
  const registryCopy = registry;
19456
19557
  registry = new Map();
@@ -19617,7 +19718,7 @@
19617
19718
  const downloading$ = createDownloadingState();
19618
19719
  dexie.cloud = {
19619
19720
  // @ts-ignore
19620
- version: "4.4.6",
19721
+ version: "4.4.7",
19621
19722
  options: Object.assign({}, DEFAULT_OPTIONS),
19622
19723
  schema: null,
19623
19724
  get currentUserId() {
@@ -19673,7 +19774,10 @@
19673
19774
  const callback = parseOAuthCallback();
19674
19775
  if (callback) {
19675
19776
  // Store the pending auth code for processing when db is ready
19676
- pendingOAuthCode = { code: callback.code, provider: callback.provider };
19777
+ pendingOAuthCode = {
19778
+ code: callback.code,
19779
+ provider: callback.provider,
19780
+ };
19677
19781
  console.debug('[dexie-cloud] OAuth callback detected, auth code stored for processing');
19678
19782
  }
19679
19783
  }
@@ -19790,7 +19894,7 @@
19790
19894
  if (eagerBlobDownloadInFlight)
19791
19895
  return;
19792
19896
  eagerBlobDownloadInFlight = Dexie.ignoreTransaction(() => downloadUnresolvedBlobs(db, downloading$))
19793
- .catch(err => {
19897
+ .catch((err) => {
19794
19898
  console.error('[dexie-cloud] Eager blob download failed:', err);
19795
19899
  })
19796
19900
  .finally(() => {
@@ -19883,7 +19987,10 @@
19883
19987
  // Let's assign all props as the newPersistedSchems should be what we should be working with.
19884
19988
  Object.assign(schema, newPersistedSchema);
19885
19989
  }
19886
- return [persistedSyncState === null || persistedSyncState === void 0 ? void 0 : persistedSyncState.initiallySynced, persistedSyncState === null || persistedSyncState === void 0 ? void 0 : persistedSyncState.realms];
19990
+ return [
19991
+ persistedSyncState === null || persistedSyncState === void 0 ? void 0 : persistedSyncState.initiallySynced,
19992
+ persistedSyncState === null || persistedSyncState === void 0 ? void 0 : persistedSyncState.realms,
19993
+ ];
19887
19994
  }));
19888
19995
  if (initiallySynced) {
19889
19996
  db.setInitiallySynced(true);
@@ -19892,8 +19999,10 @@
19892
19999
  // Manage CurrentUser observable:
19893
20000
  throwIfClosed();
19894
20001
  if (!db.cloud.isServiceWorkerDB) {
19895
- subscriptions.push(Dexie.liveQuery(() => db.getCurrentUser().then(user => {
19896
- if (!user.isLoggedIn && typeof location !== 'undefined' && /dxc-auth\=/.test(location.search)) {
20002
+ subscriptions.push(Dexie.liveQuery(() => db.getCurrentUser().then((user) => {
20003
+ if (!user.isLoggedIn &&
20004
+ typeof location !== 'undefined' &&
20005
+ /dxc-auth\=/.test(location.search)) {
19897
20006
  // Still loading user because OAuth redirect just happened.
19898
20007
  // Keep isLoading true.
19899
20008
  return Object.assign(Object.assign({}, user), { isLoading: true });
@@ -19931,7 +20040,7 @@
19931
20040
  type: 'error',
19932
20041
  messageCode: 'GENERIC_ERROR',
19933
20042
  message: error.message,
19934
- messageParams: { provider: error.provider || 'unknown' }
20043
+ messageParams: { provider: error.provider || 'unknown' },
19935
20044
  });
19936
20045
  // Clean up URL (remove dxc-auth param)
19937
20046
  cleanupOAuthUrl();
@@ -19981,7 +20090,8 @@
19981
20090
  }
19982
20091
  }
19983
20092
  }
19984
- if (user.isLoggedIn && (!lastSyncedRealms || !lastSyncedRealms.includes(user.userId))) {
20093
+ if (user.isLoggedIn &&
20094
+ (!lastSyncedRealms || !lastSyncedRealms.includes(user.userId))) {
19985
20095
  // User has been logged in but this is not reflected in the sync state.
19986
20096
  // This can happen if page is reloaded after login but before the sync call following
19987
20097
  // the login was complete.
@@ -20044,7 +20154,7 @@
20044
20154
  }
20045
20155
  }
20046
20156
  // @ts-ignore
20047
- dexieCloud.version = "4.4.6";
20157
+ dexieCloud.version = "4.4.7";
20048
20158
  Dexie.Cloud = dexieCloud;
20049
20159
 
20050
20160
  exports.default = dexieCloud;