@instantdb/core 0.22.88 → 0.22.89-experimental.drewh-ssr.20277611943.1

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 (102) hide show
  1. package/__tests__/src/Reactor.test.js +18 -11
  2. package/__tests__/src/{datalog.test.js → datalog.test.ts} +17 -5
  3. package/__tests__/src/{instaml.test.js → instaml.test.ts} +183 -119
  4. package/__tests__/src/instaql.bench.ts +34 -0
  5. package/__tests__/src/{instaql.test.js → instaql.test.ts} +342 -455
  6. package/__tests__/src/instaqlInference.test.js +13 -9
  7. package/__tests__/src/serializeSchema.test.ts +123 -0
  8. package/__tests__/src/{store.test.js → store.test.ts} +215 -212
  9. package/dist/commonjs/Reactor.d.ts +36 -7
  10. package/dist/commonjs/Reactor.d.ts.map +1 -1
  11. package/dist/commonjs/Reactor.js +176 -47
  12. package/dist/commonjs/Reactor.js.map +1 -1
  13. package/dist/commonjs/SyncTable.d.ts +4 -1
  14. package/dist/commonjs/SyncTable.d.ts.map +1 -1
  15. package/dist/commonjs/SyncTable.js +35 -37
  16. package/dist/commonjs/SyncTable.js.map +1 -1
  17. package/dist/commonjs/createRouteHandler.d.ts +8 -0
  18. package/dist/commonjs/createRouteHandler.d.ts.map +1 -0
  19. package/dist/commonjs/createRouteHandler.js +57 -0
  20. package/dist/commonjs/createRouteHandler.js.map +1 -0
  21. package/dist/commonjs/framework.d.ts +77 -0
  22. package/dist/commonjs/framework.d.ts.map +1 -0
  23. package/dist/commonjs/framework.js +209 -0
  24. package/dist/commonjs/framework.js.map +1 -0
  25. package/dist/commonjs/index.d.ts +5 -1
  26. package/dist/commonjs/index.d.ts.map +1 -1
  27. package/dist/commonjs/index.js +7 -1
  28. package/dist/commonjs/index.js.map +1 -1
  29. package/dist/commonjs/instaml.d.ts +17 -4
  30. package/dist/commonjs/instaml.d.ts.map +1 -1
  31. package/dist/commonjs/instaml.js +115 -82
  32. package/dist/commonjs/instaml.js.map +1 -1
  33. package/dist/commonjs/instaql.d.ts +4 -3
  34. package/dist/commonjs/instaql.d.ts.map +1 -1
  35. package/dist/commonjs/instaql.js +65 -63
  36. package/dist/commonjs/instaql.js.map +1 -1
  37. package/dist/commonjs/parseSchemaFromJSON.d.ts +3 -0
  38. package/dist/commonjs/parseSchemaFromJSON.d.ts.map +1 -0
  39. package/dist/commonjs/parseSchemaFromJSON.js +148 -0
  40. package/dist/commonjs/parseSchemaFromJSON.js.map +1 -0
  41. package/dist/commonjs/reactorTypes.d.ts +30 -0
  42. package/dist/commonjs/reactorTypes.d.ts.map +1 -0
  43. package/dist/commonjs/reactorTypes.js +3 -0
  44. package/dist/commonjs/reactorTypes.js.map +1 -0
  45. package/dist/commonjs/store.d.ts +67 -25
  46. package/dist/commonjs/store.d.ts.map +1 -1
  47. package/dist/commonjs/store.js +177 -81
  48. package/dist/commonjs/store.js.map +1 -1
  49. package/dist/esm/Reactor.d.ts +36 -7
  50. package/dist/esm/Reactor.d.ts.map +1 -1
  51. package/dist/esm/Reactor.js +177 -48
  52. package/dist/esm/Reactor.js.map +1 -1
  53. package/dist/esm/SyncTable.d.ts +4 -1
  54. package/dist/esm/SyncTable.d.ts.map +1 -1
  55. package/dist/esm/SyncTable.js +35 -37
  56. package/dist/esm/SyncTable.js.map +1 -1
  57. package/dist/esm/createRouteHandler.d.ts +8 -0
  58. package/dist/esm/createRouteHandler.d.ts.map +1 -0
  59. package/dist/esm/createRouteHandler.js +53 -0
  60. package/dist/esm/createRouteHandler.js.map +1 -0
  61. package/dist/esm/framework.d.ts +77 -0
  62. package/dist/esm/framework.d.ts.map +1 -0
  63. package/dist/esm/framework.js +169 -0
  64. package/dist/esm/framework.js.map +1 -0
  65. package/dist/esm/index.d.ts +5 -1
  66. package/dist/esm/index.d.ts.map +1 -1
  67. package/dist/esm/index.js +5 -2
  68. package/dist/esm/index.js.map +1 -1
  69. package/dist/esm/instaml.d.ts +17 -4
  70. package/dist/esm/instaml.d.ts.map +1 -1
  71. package/dist/esm/instaml.js +112 -77
  72. package/dist/esm/instaml.js.map +1 -1
  73. package/dist/esm/instaql.d.ts +4 -3
  74. package/dist/esm/instaql.d.ts.map +1 -1
  75. package/dist/esm/instaql.js +65 -63
  76. package/dist/esm/instaql.js.map +1 -1
  77. package/dist/esm/parseSchemaFromJSON.d.ts +3 -0
  78. package/dist/esm/parseSchemaFromJSON.d.ts.map +1 -0
  79. package/dist/esm/parseSchemaFromJSON.js +144 -0
  80. package/dist/esm/parseSchemaFromJSON.js.map +1 -0
  81. package/dist/esm/reactorTypes.d.ts +30 -0
  82. package/dist/esm/reactorTypes.d.ts.map +1 -0
  83. package/dist/esm/reactorTypes.js +2 -0
  84. package/dist/esm/reactorTypes.js.map +1 -0
  85. package/dist/esm/store.d.ts +67 -25
  86. package/dist/esm/store.d.ts.map +1 -1
  87. package/dist/esm/store.js +174 -81
  88. package/dist/esm/store.js.map +1 -1
  89. package/dist/standalone/index.js +2899 -2389
  90. package/dist/standalone/index.umd.cjs +3 -3
  91. package/package.json +2 -2
  92. package/src/Reactor.js +232 -77
  93. package/src/SyncTable.ts +85 -45
  94. package/src/createRouteHandler.ts +44 -0
  95. package/src/framework.ts +294 -0
  96. package/src/index.ts +9 -0
  97. package/src/{instaml.js → instaml.ts} +201 -96
  98. package/src/instaql.ts +88 -62
  99. package/src/parseSchemaFromJSON.ts +176 -0
  100. package/src/reactorTypes.ts +33 -0
  101. package/src/store.ts +257 -101
  102. package/__tests__/src/instaql.bench.js +0 -29
@@ -1,7 +1,7 @@
1
- (function(S,O){typeof exports=="object"&&typeof module<"u"?O(exports):typeof define=="function"&&define.amd?define(["exports"],O):(S=typeof globalThis<"u"?globalThis:S||self,O(S.instant={}))})(this,function(S){"use strict";var xo=Object.defineProperty;var Uo=(S,O,A)=>O in S?xo(S,O,{enumerable:!0,configurable:!0,writable:!0,value:A}):S[O]=A;var w=(S,O,A)=>Uo(S,typeof O!="symbol"?O+"":O,A);function O(t){if(typeof t=="number")return(Math.abs(t*2654435761)>>>0).toString(16);if(typeof t=="boolean")return t?"1":"0";if(t===null)return"null";if(t===void 0)return"undefined";if(typeof t=="string"){let e=2166136261;for(let n=0;n<t.length;n++)e^=t.charCodeAt(n),e+=(e<<1)+(e<<4)+(e<<7)+(e<<8)+(e<<24),e=e>>>0;return e.toString(16)}if(Array.isArray(t)){let e=2166136261;for(let n=0;n<t.length;n++){e^=(n+1)*2654435761;const r=O(t[n]);for(let s=0;s<r.length;s++)e^=r.charCodeAt(s),e*=16777619,e=e>>>0}return e.toString(16)}if(typeof t=="object"){let e=2166136261;const n=Object.keys(t).sort();for(let r=0;r<n.length;r++){const s=n[r],i=O(s);e^=parseInt(i,16),e*=16777619,e=e>>>0;const o=O(t[s]);e^=parseInt(o,16),e*=16777619,e=e>>>0}return e.toString(16)}return O(String(t))}const A={Remove:"remove",Replace:"replace",Add:"add"},Ot=Symbol.for("__MUTATIVE_PROXY_DRAFT__"),nr=Symbol("__MUTATIVE_RAW_RETURN_SYMBOL__"),we=Symbol.iterator,L={mutable:"mutable",immutable:"immutable"},Re={};function ae(t,e){return t instanceof Map?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function At(t,e){if(e in t){let n=Reflect.getPrototypeOf(t);for(;n;){const r=Reflect.getOwnPropertyDescriptor(n,e);if(r)return r;n=Reflect.getPrototypeOf(n)}}}function xe(t){return Object.getPrototypeOf(t)===Set.prototype}function Ue(t){return Object.getPrototypeOf(t)===Map.prototype}function F(t){var e;return(e=t.copy)!==null&&e!==void 0?e:t.original}function H(t){return!!v(t)}function v(t){return typeof t!="object"?null:t==null?void 0:t[Ot]}function Le(t){var e;const n=v(t);return n?(e=n.copy)!==null&&e!==void 0?e:n.original:t}function K(t,e){if(!t||typeof t!="object")return!1;let n;return Object.getPrototypeOf(t)===Object.prototype||Array.isArray(t)||t instanceof Map||t instanceof Set||!!(e!=null&&e.mark)&&((n=e.mark(t,L))===L.immutable||typeof n=="function")}function kt(t,e=[]){if(Object.hasOwnProperty.call(t,"key")){const n=t.parent.copy,r=v(W(n,t.key));if(r!==null&&(r==null?void 0:r.original)!==t.original)return null;const s=t.parent.type===3,i=s?Array.from(t.parent.setMap.keys()).indexOf(t.key):t.key;if(!(s&&n.size>i||ae(n,i)))return null;e.push(i)}if(t.parent)return kt(t.parent,e);e.reverse();try{rr(t.copy,e)}catch{return null}return e}function J(t){return Array.isArray(t)?1:t instanceof Map?2:t instanceof Set?3:0}function W(t,e){return J(t)===2?t.get(e):t[e]}function ce(t,e,n){J(t)===2?t.set(e,n):t[e]=n}function Fe(t,e){const n=v(t);return(n?F(n):t)[e]}function Q(t,e){return t===e?t!==0||1/t===1/e:t!==t&&e!==e}function Ne(t){if(t)for(;t.finalities.revoke.length>0;)t.finalities.revoke.pop()()}function Y(t,e){return e?t:[""].concat(t).map(n=>{const r=`${n}`;return r.indexOf("/")===-1&&r.indexOf("~")===-1?r:r.replace(/~/g,"~0").replace(/\//g,"~1")}).join("/")}function rr(t,e){for(let n=0;n<e.length-1;n+=1){const r=e[n];if(t=W(J(t)===3?Array.from(t):t,r),typeof t!="object")throw new Error(`Cannot resolve patch at '${e.join("/")}'.`)}return t}function sr(t){const e=Object.create(Object.getPrototypeOf(t));return Reflect.ownKeys(t).forEach(n=>{let r=Reflect.getOwnPropertyDescriptor(t,n);if(r.enumerable&&r.configurable&&r.writable){e[n]=t[n];return}r.writable||(r.writable=!0,r.configurable=!0),(r.get||r.set)&&(r={configurable:!0,writable:!0,enumerable:r.enumerable,value:t[n]}),Reflect.defineProperty(e,n,r)}),e}const ir=Object.prototype.propertyIsEnumerable;function Et(t,e){let n;if(Array.isArray(t))return Array.prototype.concat.call(t);if(t instanceof Set){if(!xe(t)){const r=Object.getPrototypeOf(t).constructor;return new r(t.values())}return Set.prototype.difference?Set.prototype.difference.call(t,new Set):new Set(t.values())}else if(t instanceof Map){if(!Ue(t)){const r=Object.getPrototypeOf(t).constructor;return new r(t)}return new Map(t)}else if(e!=null&&e.mark&&(n=e.mark(t,L),n!==void 0)&&n!==L.mutable){if(n===L.immutable)return sr(t);if(typeof n=="function"){if(e.enablePatches||e.enableAutoFreeze)throw new Error("You can't use mark and patches or auto freeze together.");return n()}throw new Error(`Unsupported mark result: ${n}`)}else if(typeof t=="object"&&Object.getPrototypeOf(t)===Object.prototype){const r={};return Object.keys(t).forEach(s=>{r[s]=t[s]}),Object.getOwnPropertySymbols(t).forEach(s=>{ir.call(t,s)&&(r[s]=t[s])}),r}else throw new Error("Please check mark() to ensure that it is a stable marker draftable function.")}function $(t){t.copy||(t.copy=Et(t.original,t.options))}function ue(t){if(!K(t))return Le(t);if(Array.isArray(t))return t.map(ue);if(t instanceof Map){const n=Array.from(t.entries()).map(([r,s])=>[r,ue(s)]);if(!Ue(t)){const r=Object.getPrototypeOf(t).constructor;return new r(n)}return new Map(n)}if(t instanceof Set){const n=Array.from(t).map(ue);if(!xe(t)){const r=Object.getPrototypeOf(t).constructor;return new r(n)}return new Set(n)}const e=Object.create(Object.getPrototypeOf(t));for(const n in t)e[n]=ue(t[n]);return e}function Te(t){return H(t)?ue(t):t}function V(t){var e;t.assignedMap=(e=t.assignedMap)!==null&&e!==void 0?e:new Map,t.operated||(t.operated=!0,t.parent&&V(t.parent))}function Ct(){throw new Error("Cannot modify frozen object")}function ee(t,e,n,r,s){{n=n??new WeakMap,r=r??[],s=s??[];const o=n.has(t)?n.get(t):t;if(r.length>0){const a=r.indexOf(o);if(o&&typeof o=="object"&&a!==-1)throw r[0]===o?new Error("Forbids circular reference"):new Error(`Forbids circular reference: ~/${s.slice(0,a).map((c,u)=>{if(typeof c=="symbol")return`[${c.toString()}]`;const l=r[u];return typeof c=="object"&&(l instanceof Map||l instanceof Set)?Array.from(l.keys()).indexOf(c):c}).join("/")}`);r.push(o),s.push(e)}else r.push(o)}if(Object.isFrozen(t)||H(t)){r.pop(),s.pop();return}switch(J(t)){case 2:for(const[a,c]of t)ee(a,a,n,r,s),ee(c,a,n,r,s);t.set=t.clear=t.delete=Ct;break;case 3:for(const a of t)ee(a,a,n,r,s);t.add=t.clear=t.delete=Ct;break;case 1:Object.freeze(t);let o=0;for(const a of t)ee(a,o,n,r,s),o+=1;break;default:Object.freeze(t),Object.keys(t).forEach(a=>{const c=t[a];ee(c,a,n,r,s)})}r.pop(),s.pop()}function Ke(t,e){const n=J(t);if(n===0)Reflect.ownKeys(t).forEach(r=>{e(r,t[r],t)});else if(n===1){let r=0;for(const s of t)e(r,s,t),r+=1}else t.forEach((r,s)=>e(s,r,t))}function It(t,e,n){if(H(t)||!K(t,n)||e.has(t)||Object.isFrozen(t))return;const r=t instanceof Set,s=r?new Map:void 0;if(e.add(t),Ke(t,(i,o)=>{var a;if(H(o)){const c=v(o);$(c);const u=!((a=c.assignedMap)===null||a===void 0)&&a.size||c.operated?c.copy:c.original;ce(r?s:t,i,u)}else It(o,e,n)}),s){const i=t,o=Array.from(i);i.clear(),o.forEach(a=>{i.add(s.has(a)?s.get(a):a)})}}function or(t,e){const n=t.type===3?t.setMap:t.copy;t.finalities.revoke.length>1&&t.assignedMap.get(e)&&n&&It(W(n,e),t.finalities.handledSet,t.options)}function qe(t){t.type===3&&t.copy&&(t.copy.clear(),t.setMap.forEach(e=>{t.copy.add(Le(e))}))}function ze(t,e,n,r){if(t.operated&&t.assignedMap&&t.assignedMap.size>0&&!t.finalized){if(n&&r){const i=kt(t);i&&e(t,i,n,r)}t.finalized=!0}}function Ve(t,e,n,r){const s=v(n);s&&(s.callbacks||(s.callbacks=[]),s.callbacks.push((i,o)=>{var a;const c=t.type===3?t.setMap:t.copy;if(Q(W(c,e),n)){let u=s.original;s.copy&&(u=s.copy),qe(t),ze(t,r,i,o),t.options.enableAutoFreeze&&(t.options.updatedValues=(a=t.options.updatedValues)!==null&&a!==void 0?a:new WeakMap,t.options.updatedValues.set(u,s.original)),ce(c,e,u)}}),t.options.enableAutoFreeze&&s.finalities!==t.finalities&&(t.options.enableAutoFreeze=!1)),K(n,t.options)&&t.finalities.draft.push(()=>{const i=t.type===3?t.setMap:t.copy;Q(W(i,e),n)&&or(t,e)})}function ar(t,e,n,r,s){let{original:i,assignedMap:o,options:a}=t,c=t.copy;c.length<i.length&&([i,c]=[c,i],[n,r]=[r,n]);for(let u=0;u<i.length;u+=1)if(o.get(u.toString())&&c[u]!==i[u]){const l=e.concat([u]),f=Y(l,s);n.push({op:A.Replace,path:f,value:Te(c[u])}),r.push({op:A.Replace,path:f,value:Te(i[u])})}for(let u=i.length;u<c.length;u+=1){const l=e.concat([u]),f=Y(l,s);n.push({op:A.Add,path:f,value:Te(c[u])})}if(i.length<c.length){const{arrayLengthAssignment:u=!0}=a.enablePatches;if(u){const l=e.concat(["length"]),f=Y(l,s);r.push({op:A.Replace,path:f,value:i.length})}else for(let l=c.length;i.length<l;l-=1){const f=e.concat([l-1]),d=Y(f,s);r.push({op:A.Remove,path:d})}}}function cr({original:t,copy:e,assignedMap:n},r,s,i,o){n.forEach((a,c)=>{const u=W(t,c),l=Te(W(e,c)),f=a?ae(t,c)?A.Replace:A.Add:A.Remove;if(Q(u,l)&&f===A.Replace)return;const d=r.concat(c),h=Y(d,o);s.push(f===A.Remove?{op:f,path:h}:{op:f,path:h,value:l}),i.push(f===A.Add?{op:A.Remove,path:h}:f===A.Remove?{op:A.Add,path:h,value:u}:{op:A.Replace,path:h,value:u})})}function ur({original:t,copy:e},n,r,s,i){let o=0;t.forEach(a=>{if(!e.has(a)){const c=n.concat([o]),u=Y(c,i);r.push({op:A.Remove,path:u,value:a}),s.unshift({op:A.Add,path:u,value:a})}o+=1}),o=0,e.forEach(a=>{if(!t.has(a)){const c=n.concat([o]),u=Y(c,i);r.push({op:A.Add,path:u,value:a}),s.unshift({op:A.Remove,path:u,value:a})}o+=1})}function le(t,e,n,r){const{pathAsArray:s=!0}=t.options.enablePatches;switch(t.type){case 0:case 2:return cr(t,e,n,r,s);case 1:return ar(t,e,n,r,s);case 3:return ur(t,e,n,r,s)}}const me=(t,e,n=!1)=>{if(typeof t=="object"&&t!==null&&(!K(t,e)||n))throw new Error("Strict mode: Mutable data cannot be accessed directly, please use 'unsafe(callback)' wrap.")},We={get size(){return F(v(this)).size},has(t){return F(v(this)).has(t)},set(t,e){const n=v(this),r=F(n);return(!r.has(t)||!Q(r.get(t),e))&&($(n),V(n),n.assignedMap.set(t,!0),n.copy.set(t,e),Ve(n,t,e,le)),this},delete(t){if(!this.has(t))return!1;const e=v(this);return $(e),V(e),e.original.has(t)?e.assignedMap.set(t,!1):e.assignedMap.delete(t),e.copy.delete(t),!0},clear(){const t=v(this);if(this.size){$(t),V(t),t.assignedMap=new Map;for(const[e]of t.original)t.assignedMap.set(e,!1);t.copy.clear()}},forEach(t,e){const n=v(this);F(n).forEach((r,s)=>{t.call(e,this.get(s),s,this)})},get(t){var e,n;const r=v(this),s=F(r).get(t),i=((n=(e=r.options).mark)===null||n===void 0?void 0:n.call(e,s,L))===L.mutable;if(r.options.strict&&me(s,r.options,i),i||r.finalized||!K(s,r.options)||s!==r.original.get(t))return s;const o=Re.createDraft({original:s,parentDraft:r,key:t,finalities:r.finalities,options:r.options});return $(r),r.copy.set(t,o),o},keys(){return F(v(this)).keys()},values(){const t=this.keys();return{[we]:()=>this.values(),next:()=>{const e=t.next();return e.done?e:{done:!1,value:this.get(e.value)}}}},entries(){const t=this.keys();return{[we]:()=>this.entries(),next:()=>{const e=t.next();if(e.done)return e;const n=this.get(e.value);return{done:!1,value:[e.value,n]}}}},[we](){return this.entries()}},lr=Reflect.ownKeys(We),Mt=(t,e,{isValuesIterator:n})=>()=>{var r,s;const i=e.next();if(i.done)return i;const o=i.value;let a=t.setMap.get(o);const c=v(a),u=((s=(r=t.options).mark)===null||s===void 0?void 0:s.call(r,a,L))===L.mutable;if(t.options.strict&&me(o,t.options,u),!u&&!c&&K(o,t.options)&&!t.finalized&&t.original.has(o)){const l=Re.createDraft({original:o,parentDraft:t,key:o,finalities:t.finalities,options:t.options});t.setMap.set(o,l),a=l}else c&&(a=c.proxy);return{done:!1,value:n?a:[a,a]}},Se={get size(){return v(this).setMap.size},has(t){const e=v(this);if(e.setMap.has(t))return!0;$(e);const n=v(t);return!!(n&&e.setMap.has(n.original))},add(t){const e=v(this);return this.has(t)||($(e),V(e),e.assignedMap.set(t,!0),e.setMap.set(t,t),Ve(e,t,t,le)),this},delete(t){if(!this.has(t))return!1;const e=v(this);$(e),V(e);const n=v(t);return n&&e.setMap.has(n.original)?(e.assignedMap.set(n.original,!1),e.setMap.delete(n.original)):(!n&&e.setMap.has(t)?e.assignedMap.set(t,!1):e.assignedMap.delete(t),e.setMap.delete(t))},clear(){if(!this.size)return;const t=v(this);$(t),V(t);for(const e of t.original)t.assignedMap.set(e,!1);t.setMap.clear()},values(){const t=v(this);$(t);const e=t.setMap.keys();return{[Symbol.iterator]:()=>this.values(),next:Mt(t,e,{isValuesIterator:!0})}},entries(){const t=v(this);$(t);const e=t.setMap.keys();return{[Symbol.iterator]:()=>this.entries(),next:Mt(t,e,{isValuesIterator:!1})}},keys(){return this.values()},[we](){return this.values()},forEach(t,e){const n=this.values();let r=n.next();for(;!r.done;)t.call(e,r.value,r.value,this),r=n.next()}};Set.prototype.difference&&Object.assign(Se,{intersection(t){return Set.prototype.intersection.call(new Set(this.values()),t)},union(t){return Set.prototype.union.call(new Set(this.values()),t)},difference(t){return Set.prototype.difference.call(new Set(this.values()),t)},symmetricDifference(t){return Set.prototype.symmetricDifference.call(new Set(this.values()),t)},isSubsetOf(t){return Set.prototype.isSubsetOf.call(new Set(this.values()),t)},isSupersetOf(t){return Set.prototype.isSupersetOf.call(new Set(this.values()),t)},isDisjointFrom(t){return Set.prototype.isDisjointFrom.call(new Set(this.values()),t)}});const fr=Reflect.ownKeys(Se),Pt=new WeakSet,jt={get(t,e,n){var r,s;const i=(r=t.copy)===null||r===void 0?void 0:r[e];if(i&&Pt.has(i))return i;if(e===Ot)return t;let o;if(t.options.mark){const u=e==="size"&&(t.original instanceof Map||t.original instanceof Set)?Reflect.get(t.original,e):Reflect.get(t.original,e,n);if(o=t.options.mark(u,L),o===L.mutable)return t.options.strict&&me(u,t.options,!0),u}const a=F(t);if(a instanceof Map&&lr.includes(e)){if(e==="size")return Object.getOwnPropertyDescriptor(We,"size").get.call(t.proxy);const u=We[e];if(u)return u.bind(t.proxy)}if(a instanceof Set&&fr.includes(e)){if(e==="size")return Object.getOwnPropertyDescriptor(Se,"size").get.call(t.proxy);const u=Se[e];if(u)return u.bind(t.proxy)}if(!ae(a,e)){const u=At(a,e);return u?"value"in u?u.value:(s=u.get)===null||s===void 0?void 0:s.call(t.proxy):void 0}const c=a[e];if(t.options.strict&&me(c,t.options),t.finalized||!K(c,t.options))return c;if(c===Fe(t.original,e)){if($(t),t.copy[e]=Qe({original:t.original[e],parentDraft:t,key:t.type===1?Number(e):e,finalities:t.finalities,options:t.options}),typeof o=="function"){const u=v(t.copy[e]);return $(u),V(u),u.copy}return t.copy[e]}return c},set(t,e,n){var r;if(t.type===3||t.type===2)throw new Error("Map/Set draft does not support any property assignment.");let s;if(t.type===1&&e!=="length"&&!(Number.isInteger(s=Number(e))&&s>=0&&(e===0||s===0||String(s)===String(e))))throw new Error("Only supports setting array indices and the 'length' property.");const i=At(F(t),e);if(i!=null&&i.set)return i.set.call(t.proxy,n),!0;const o=Fe(F(t),e),a=v(o);return a&&Q(a.original,n)?(t.copy[e]=n,t.assignedMap=(r=t.assignedMap)!==null&&r!==void 0?r:new Map,t.assignedMap.set(e,!1),!0):(Q(n,o)&&(n!==void 0||ae(t.original,e))||($(t),V(t),ae(t.original,e)&&Q(n,t.original[e])?t.assignedMap.delete(e):t.assignedMap.set(e,!0),t.copy[e]=n,Ve(t,e,n,le)),!0)},has(t,e){return e in F(t)},ownKeys(t){return Reflect.ownKeys(F(t))},getOwnPropertyDescriptor(t,e){const n=F(t),r=Reflect.getOwnPropertyDescriptor(n,e);return r&&{writable:!0,configurable:t.type!==1||e!=="length",enumerable:r.enumerable,value:n[e]}},getPrototypeOf(t){return Reflect.getPrototypeOf(t.original)},setPrototypeOf(){throw new Error("Cannot call 'setPrototypeOf()' on drafts")},defineProperty(){throw new Error("Cannot call 'defineProperty()' on drafts")},deleteProperty(t,e){var n;return t.type===1?jt.set.call(this,t,e,void 0,t.proxy):(Fe(t.original,e)!==void 0||e in t.original?($(t),V(t),t.assignedMap.set(e,!1)):(t.assignedMap=(n=t.assignedMap)!==null&&n!==void 0?n:new Map,t.assignedMap.delete(e)),t.copy&&delete t.copy[e],!0)}};function Qe(t){const{original:e,parentDraft:n,key:r,finalities:s,options:i}=t,o=J(e),a={type:o,finalized:!1,parent:n,original:e,copy:null,proxy:null,finalities:s,options:i,setMap:o===3?new Map(e.entries()):void 0};(r||"key"in t)&&(a.key=r);const{proxy:c,revoke:u}=Proxy.revocable(o===1?Object.assign([],a):a,jt);if(s.revoke.push(u),Pt.add(c),a.proxy=c,n){const l=n;l.finalities.draft.push((f,d)=>{var h,p;const b=v(c);let _=l.type===3?l.setMap:l.copy;const y=W(_,r),g=v(y);if(g){let T=g.original;g.operated&&(T=Le(y)),qe(g),ze(g,le,f,d),l.options.enableAutoFreeze&&(l.options.updatedValues=(h=l.options.updatedValues)!==null&&h!==void 0?h:new WeakMap,l.options.updatedValues.set(T,g.original)),ce(_,r,T)}(p=b.callbacks)===null||p===void 0||p.forEach(T=>{T(f,d)})})}else{const l=v(c);l.finalities.draft.push((f,d)=>{qe(l),ze(l,le,f,d)})}return c}Re.createDraft=Qe;function dr(t,e,n,r,s){var i;const o=v(t),a=(i=o==null?void 0:o.original)!==null&&i!==void 0?i:t,c=!!e.length;if(o!=null&&o.operated)for(;o.finalities.draft.length>0;)o.finalities.draft.pop()(n,r);const u=c?e[0]:o?o.operated?o.copy:o.original:t;return o&&Ne(o),s&&ee(u,u,o==null?void 0:o.options.updatedValues),[u,n&&c?[{op:A.Replace,path:[],value:e[0]}]:n,r&&c?[{op:A.Replace,path:[],value:a}]:r]}function hr(t,e){var n;const r={draft:[],revoke:[],handledSet:new WeakSet};let s,i;e.enablePatches&&(s=[],i=[]);const a=((n=e.mark)===null||n===void 0?void 0:n.call(e,t,L))===L.mutable||!K(t,e)?t:Qe({original:t,parentDraft:null,finalities:r,options:e});return[a,(c=[])=>{const[u,l,f]=dr(a,c,s,i,e.enableAutoFreeze);return e.enablePatches?[u,l,f]:u}]}function Ge(t){const{rootDraft:e,value:n,useRawReturn:r=!1,isRoot:s=!0}=t;Ke(n,(i,o,a)=>{const c=v(o);if(c&&e&&c.finalities===e.finalities){t.isContainDraft=!0;const u=c.original;if(a instanceof Set){const l=Array.from(a);a.clear(),l.forEach(f=>a.add(i===f?u:f))}else ce(a,i,u)}else typeof o=="object"&&o!==null&&(t.value=o,t.isRoot=!1,Ge(t))}),s&&(t.isContainDraft||console.warn("The return value does not contain any draft, please use 'rawReturn()' to wrap the return value to improve performance."),r&&console.warn("The return value contains drafts, please don't use 'rawReturn()' to wrap the return value."))}function $t(t){var e;const n=v(t);if(!K(t,n==null?void 0:n.options))return t;const r=J(t);if(n&&!n.operated)return n.original;let s;function i(){s=r===2?Ue(t)?new Map(t):new(Object.getPrototypeOf(t)).constructor(t):r===3?Array.from(n.setMap.values()):Et(t,n==null?void 0:n.options)}if(n){n.finalized=!0;try{i()}finally{n.finalized=!1}}else s=t;if(Ke(s,(o,a)=>{if(n&&Q(W(n.original,o),a))return;const c=$t(a);c!==a&&(s===t&&i(),ce(s,o,c))}),r===3){const o=(e=n==null?void 0:n.original)!==null&&e!==void 0?e:s;return xe(o)?new Set(s):new(Object.getPrototypeOf(o)).constructor(s)}return s}function Dt(t){if(!H(t))throw new Error(`current() is only used for Draft, parameter: ${t}`);return $t(t)}const ve=(t=>function e(n,r,s){var i,o,a;if(typeof n=="function"&&typeof r!="function")return function(m,...P){return e(m,j=>n.call(this,j,...P),r)};const c=n,u=r;let l=s;if(typeof r!="function"&&(l=r),l!==void 0&&Object.prototype.toString.call(l)!=="[object Object]")throw new Error(`Invalid options: ${l}, 'options' should be an object.`);l=Object.assign(Object.assign({},t),l);const f=H(c)?Dt(c):c,d=Array.isArray(l.mark)?(m,P)=>{for(const j of l.mark){if(typeof j!="function")throw new Error(`Invalid mark: ${j}, 'mark' should be a function.`);const X=j(m,P);if(X)return X}}:l.mark,h=(i=l.enablePatches)!==null&&i!==void 0?i:!1,p=(o=l.strict)!==null&&o!==void 0?o:!1,_={enableAutoFreeze:(a=l.enableAutoFreeze)!==null&&a!==void 0?a:!1,mark:d,strict:p,enablePatches:h};if(!K(f,_)&&typeof f=="object"&&f!==null)throw new Error("Invalid base state: create() only supports plain objects, arrays, Set, Map or using mark() to mark the state as immutable.");const[y,g]=hr(f,_);if(typeof r!="function"){if(!K(f,_))throw new Error("Invalid base state: create() only supports plain objects, arrays, Set, Map or using mark() to mark the state as immutable.");return[y,g]}let T;try{T=u(y)}catch(m){throw Ne(v(y)),m}const E=m=>{const P=v(y);if(!H(m)){if(m!==void 0&&!Q(m,y)&&(P!=null&&P.operated))throw new Error("Either the value is returned as a new non-draft value, or only the draft is modified without returning any value.");const X=m==null?void 0:m[nr];if(X){const vt=X[0];return _.strict&&typeof m=="object"&&m!==null&&Ge({rootDraft:P,value:m,useRawReturn:!0}),g([vt])}if(m!==void 0)return typeof m=="object"&&m!==null&&Ge({rootDraft:P,value:m}),g([m])}if(m===y||m===void 0)return g([]);const j=v(m);if(_===j.options){if(j.operated)throw new Error("Cannot return a modified child draft.");return g([Dt(m)])}return g([m])};return T instanceof Promise?T.then(E,m=>{throw Ne(v(y)),m}):E(T)})();Object.prototype.constructor.toString();function Rt(t,e){const n=Object.keys(t),r=Object.keys(e);return n.length===r.length&&Object.keys(t).every(s=>e.hasOwnProperty(s))}function xt(t,e){return Object.keys(t).length===Object.keys(e).length&&Object.keys(t).every(n=>e.hasOwnProperty(n)&&t[n]===e[n])}function Oe(t,e){return typeof t!="object"||typeof e!="object"||t===null||e===null?t===e:Rt(t,e)?Object.keys(t).every(n=>Oe(t[n],e[n])):!1}function Be(t){if(!fe(t))return t;const e={};for(const[n,r]of Object.entries(t))r!==void 0&&(e[n]=r);return e}function Ut(t,e){if(!fe(t)||!fe(e))return e;const n={...t};for(const r of Object.keys(e)){if(e[r]===void 0)continue;if(e[r]===null){delete n[r];continue}const s=fe(t[r])&&fe(e[r]);n[r]=s?Ut(t[r],e[r]):e[r]}return n}function fe(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}function pr(t,e,n){if(!t||e.length===0)return;let r=t||{};for(let i=0;i<e.length-1;i++){const o=e[i];(!(o in r)||typeof r[o]!="object")&&(r[o]=typeof e[i+1]=="number"?[]:{}),r=r[o]}const s=e[e.length-1];Array.isArray(r)&&typeof s=="number"?r.splice(s,0,n):r[s]=n}function Lt(t,e,n){if(!t||e.length===0)return;let r=t||{};for(let s=0;s<e.length-1;s++){const i=e[s];(!(i in r)||typeof r[i]!="object")&&(r[i]=typeof e[s+1]=="number"?[]:{}),r=r[i]}r[e[e.length-1]]=n}function Ft(t,e){if(!t||e.length===0)return;const[n,...r]=e;if(n in t){if(r.length===0){Array.isArray(t)?t.splice(n,1):delete t[n];return}Ft(t[n],r),yr(t[n])&&delete t[n]}}function yr(t){return t&&Object.keys(t).length===0}const Nt=/ZULU|YEKT|YEKST|YAPT|YAKT|YAKST|XJT|WGT|WGST|WFT|WETDST|WET|WDT|WAT|WAST|WAKT|WADT|VUT|VOLT|VLAT|VLAST|VET|UZT|UZST|UYT|UYST|UTC|UT|ULAT|ULAST|UCT|TVT|TRUT|TOT|TMT|TKT|TJT|TFT|TAHT|SGT|SCT|SAST|SADT|RET|PYT|PYST|PWT|PST|PONT|PMST|PMDT|PKT|PKST|PHT|PGT|PETT|PETST|PET|PDT|OMST|OMSST|NZT|NZST|NZDT|NUT|NST|NPT|NOVT|NOVST|NFT|NDT|MYT|MVT|MUT|MUST|MST|MSK|MSD|MPT|MMT|MHT|MEZ|METDST|MET|MESZ|MEST|MDT|MAWT|MART|MAGT|MAGST|LKT|LINT|LIGT|LHST|LHDT|KST|KRAT|KRAST|KOST|KGT|KGST|KDT|JST|JAYT|IST|IRT|IRKT|IRKST|IOT|IDT|ICT|HST|HKT|GYT|GMT|GILT|GFT|GET|GEST|GAMT|GALT|FNT|FNST|FKT|FKST|FJT|FJST|FET|EST|EGT|EGST|EETDST|EET|EEST|EDT|EAT|EAST|EASST|DDUT|DAVT|CXT|CST|COT|CLT|CLST|CKT|CHUT|CHAST|CHADT|CETDST|CET|CEST|CDT|CCT|CAST|CADT|BTT|BST|BRT|BRST|BRA|BOT|BORT|BNT|BDT|BDST|AZT|AZST|AZOT|AZOST|AWST|AWSST|AST|ART|ARST|ANAT|ANAST|AMT|AMST|ALMT|ALMST|AKST|AKDT|AFT|AEST|AESST|AEDT|ADT|ACWST|ACT|ACST|ACSST|ACDT$/,br={ZULU:0,YEKT:18e3,YEKST:21600,YAPT:36e3,YAKT:32400,YAKST:32400,XJT:21600,WGT:-10800,WGST:-7200,WFT:43200,WETDST:3600,WET:0,WDT:32400,WAT:3600,WAST:25200,WAKT:43200,WADT:28800,VUT:39600,VOLT:10800,VLAT:36e3,VLAST:36e3,VET:-14400,UZT:18e3,UZST:21600,UYT:-10800,UYST:-7200,UTC:0,UT:0,ULAT:28800,ULAST:32400,UCT:0,TVT:43200,TRUT:36e3,TOT:46800,TMT:18e3,TKT:46800,TJT:18e3,TFT:18e3,TAHT:-36e3,SGT:28800,SCT:14400,SAST:7200,SADT:37800,RET:14400,PYT:-14400,PYST:-10800,PWT:32400,PST:-28800,PONT:39600,PMST:-10800,PMDT:-7200,PKT:18e3,PKST:21600,PHT:28800,PGT:36e3,PETT:43200,PETST:43200,PET:-18e3,PDT:-25200,OMST:21600,OMSST:21600,NZT:43200,NZST:43200,NZDT:46800,NUT:-39600,NST:-12600,NPT:20700,NOVT:25200,NOVST:25200,NFT:-12600,NDT:-9e3,MYT:28800,MVT:18e3,MUT:14400,MUST:18e3,MST:-25200,MSK:10800,MSD:14400,MPT:36e3,MMT:23400,MHT:43200,MEZ:3600,METDST:7200,MET:3600,MESZ:7200,MEST:7200,MDT:-21600,MAWT:18e3,MART:-34200,MAGT:39600,MAGST:39600,LKT:19800,LINT:50400,LIGT:36e3,LHST:37800,LHDT:37800,KST:32400,KRAT:25200,KRAST:25200,KOST:39600,KGT:21600,KGST:21600,KDT:36e3,JST:32400,JAYT:32400,IST:7200,IRT:12600,IRKT:28800,IRKST:28800,IOT:21600,IDT:10800,ICT:25200,HST:-36e3,HKT:28800,GYT:-14400,GMT:0,GILT:43200,GFT:-10800,GET:14400,GEST:14400,GAMT:-32400,GALT:-21600,FNT:-7200,FNST:-3600,FKT:-10800,FKST:-10800,FJT:43200,FJST:46800,FET:10800,EST:-18e3,EGT:-3600,EGST:0,EETDST:10800,EET:7200,EEST:10800,EDT:-14400,EAT:10800,EAST:-21600,EASST:-21600,DDUT:36e3,DAVT:25200,CXT:25200,CST:-21600,COT:-18e3,CLT:-14400,CLST:-10800,CKT:-36e3,CHUT:36e3,CHAST:45900,CHADT:49500,CETDST:7200,CET:3600,CEST:7200,CDT:-18e3,CCT:28800,CAST:34200,CADT:37800,BTT:21600,BST:3600,BRT:-10800,BRST:-7200,BRA:-10800,BOT:-14400,BORT:28800,BNT:28800,BDT:21600,BDST:7200,AZT:14400,AZST:14400,AZOT:-3600,AZOST:0,AWST:28800,AWSST:32400,AST:-14400,ART:-10800,ARST:-10800,ANAT:43200,ANAST:43200,AMT:-14400,AMST:14400,ALMT:21600,ALMST:25200,AKST:-32400,AKDT:-28800,AFT:16200,AEST:36e3,AESST:39600,AEDT:39600,ADT:-10800,ACWST:31500,ACT:-18e3,ACST:34200,ACSST:37800,ACDT:37800};function _r(t){return new Date(t)}function gr(t){return new Date(t+"Z")}const wr=/^(\d+)[\./-](\d+)[\./-](\d+)$/;function Tr(t){const e=t.match(wr);if(!e)return null;const[n,r,s,i]=e;return r<=0||s<=0||i<=0?null:r>999?new Date(Date.UTC(r,s-1,i,0,0,0,0)):new Date(Date.UTC(i,r-1,s,0,0,0,0))}function mr(t){const[e,n]=t.split(" ");return new Date(e+"T"+n+"Z")}function Sr(t){const[e,n]=t.split(" ");return new Date(e+"T"+n+"Z")}function vr(t){return new Date(t)}function Or(t){const e=/^(\w{3}) (\w{3}) (\d{2}) (\d{4})$/;if(!t.match(e))throw new Error(`Unable to parse \`${t}\` as a date.`);const r=new Date(t+" UTC");return new Date(Date.UTC(r.getUTCFullYear(),r.getUTCMonth(),r.getUTCDate(),0,0,0,0))}function Ar(t){const e=/^(.+T.+)([+-])(\d{2})$/,n=t.match(e);if(n){const[,r,s,i]=n,o=`${r}${s}${i}:00`;return new Date(o)}return null}function kr(t){const e=/^(\d+)-(\d{1,2})-(\d{1,2})([ T])(.+)$/,n=t.match(e);if(n){const[,r,s,i,o,a]=n,c=s.padStart(2,"0"),u=i.padStart(2,"0"),l=`${r}-${c}-${u}T${a}`;return new Date(l)}return null}function Er(t){const[e,n]=t.split(", "),[r,s,i]=e.split("/").map(Number),o=n.match(/(\d{1,2}):(\d{2}):(\d{2}) (AM|PM)/);if(!o)throw new Error(`Unable to parse time from: ${t}`);let[,a,c,u,l]=o;return a=Number(a),c=Number(c),u=Number(u),l==="PM"&&a!==12?a+=12:l==="AM"&&a===12&&(a=0),new Date(Date.UTC(i,r-1,s,a,c,u))}function Cr(t){switch(t){case"epoch":return new Date(0);case"infinity":case"-infinity":case"today":case"tomorrow":case"yesterday":return null}}function Ir(t){const e=t.match(Nt);if(!e)return null;const[n]=e,r=br[n],s=new Date(t.replace(Nt,"Z"));return new Date(s.getTime()-r*1e3)}const Mr=[Tr,Sr,Or,Er,vr,gr,Ar,mr,_r,Cr,Ir,kr];function Pr(t,e){try{const n=t(e);return n instanceof Date&&!isNaN(n.getTime())?n:null}catch{return null}}function He(t){for(const e of Mr){const n=Pr(e,t);if(n)return n}return null}function jr(t){try{const e=JSON.parse(t);return typeof e=="string"?He(e):null}catch{return null}}function de(t){if(t!==void 0){if(t===null)return null;if(t instanceof Date)return t;if(typeof t=="string"){const e=He(t)||jr(t)||He(t.trim());if(!e)throw new Error(`Unable to parse \`${t}\` as a date.`);return e}else if(typeof t=="number")return new Date(t);throw new Error(`Invalid date value \`${t}\`. Expected a date, number, or string, got type ${typeof t}.`)}}function $r(t){return t.cardinality==="one"}function Je(t){return t["value-type"]==="ref"}function Ye(t){return t["value-type"]==="blob"}function te(t,e){return t[e]}function ne(t,e){return e.reduce((n,r)=>n&&n.get(r),t)}function q(t,e){if(e.length===0)throw new Error("path must have at least one element");if(e.length===1){t.delete(e[0]);return}const[n,...r]=e;t.has(n)&&q(t.get(n),r)}function R(t,e,n){if(e.length===0)throw new Error("path must have at least one element");if(e.length===1){t.set(e[0],n);return}const[r,...s]=e;let i=t.get(r);i||(i=new Map,t.set(r,i)),R(i,s,n)}function Kt(t,e,n){const r=new Map,s=new Map,i=new Map;for(const o of e){let[a,c,u,l]=o;const f=te(t,c);if(!f){console.warn("no such attr",a,t);continue}f["checked-data-type"]==="date"&&n&&(u=de(u),o[2]=u),Je(f)&&R(i,[u,c,a],o),R(r,[a,c,u],o),R(s,[c,a,u],o)}return{eav:r,aev:s,vae:i}}function qt(t){const e=new Map,n=new Map,r=new Map,s=new Map;for(const i of Object.values(t)){const o=i["forward-identity"],[a,c,u]=o,l=i["reverse-identity"];if(R(r,[c,u],i),Ye(i)&&R(e,[c,u],i),i["primary?"]&&R(n,[c],i),l){const[f,d,h]=l;R(s,[d,h],i)}}return{blobAttrs:e,primaryKeys:n,forwardIdents:r,revIdents:s}}function zt(t){return{__type:t.__type,attrs:t.attrs,triples:x(t.eav,3),cardinalityInference:t.cardinalityInference,linkIndex:t.linkIndex,useDateObjects:t.useDateObjects}}function Vt(t){return Ae(t.attrs,t.triples,t.cardinalityInference,t.linkIndex,t.useDateObjects)}function Dr(t,e){return ne(t.eav,[e])!==void 0}function Ze(t){t.attrIndexes=qt(t.attrs)}function Ae(t,e,n,r,s){const i=Kt(t,e,s);return i.useDateObjects=s,i.attrs=t,i.attrIndexes=qt(t),i.cardinalityInference=n,i.linkIndex=r,i.__type="store",i}function he(t,e){var s,i;let n;if(Array.isArray(e[0])){const[o,a]=e[0],c=t.aev.get(o);if(!c)return null;n=(s=x(c,2).find(l=>l[2]===a))==null?void 0:s[0]}else n=e[0];if(!n)return null;const r=e[2];if(Array.isArray(r)&&r.length===2&&t.aev.get(r[0])){const[o,a]=r,c=t.aev.get(o);if(!c)return null;const l=(i=x(c,2).find(b=>b[2]===a))==null?void 0:i[0];if(!l)return null;const[f,d,h,...p]=e;return[n,d,l,...p]}else{const[o,...a]=e;return[n,...a]}}function Wt(t,e){const n=he(t,e);if(!n)return;const[r,s,i]=n,o=te(t.attrs,s);o&&(q(t.eav,[r,s,i]),q(t.aev,[s,r,i]),Je(o)&&q(t.vae,[i,s,r]))}let Rr=0;function Qt(t,e,n){const[r,s,i]=n;let o;const a=ne(t.eav,[r,s,i]);return a&&(o=a[3]),o||Date.now()*10+Rr++}function Gt(t,e){const n=he(t,e);if(!n)return;let[r,s,i]=n;const o=te(t.attrs,s);if(!o)return;o["checked-data-type"]==="date"&&t.useDateObjects&&(i=de(i));const a=ne(t.eav,[r,s,i]),c=(a==null?void 0:a[3])??Qt(t,o,n),u=[r,s,i,c];$r(o)?(R(t.eav,[r,s],new Map([[i,u]])),R(t.aev,[s,r],new Map([[i,u]]))):(R(t.eav,[r,s,i],u),R(t.aev,[s,r,i],u)),Je(o)&&R(t.vae,[i,s,r],u)}function xr(t,e){var d;const n=he(t,e);if(!n)return;const[r,s,i]=n,o=te(t.attrs,s);if(!o)return;if(!Ye(o))throw new Error("merge operation is not supported for links");const a=ne(t.eav,[r,s]);if(!a)return;const c=(d=a.values().next())==null?void 0:d.value;if(!c)return;const u=c[2],l=Ut(u,i),f=[r,s,l,Qt(t,o,c)];R(t.eav,[r,s],new Map([[l,f]]))}function Xe(t,e){var c,u;const[n,r]=e,s=he(t,[n]);if(!s)return;const[i]=s,o=t.eav.get(i);if(o){for(const l of o.keys()){const f=t.attrs[l];f&&f["on-delete-reverse"]==="cascade"&&x(o.get(l),1).forEach(([d,h,p])=>{var b;return Xe(t,[p,(b=f["reverse-identity"])==null?void 0:b[1]])}),(!r||!f||((c=f["forward-identity"])==null?void 0:c[1])===r)&&(q(t.aev,[l,i]),q(t.eav,[i,l]))}o.size===0&&q(t.eav,[i])}const a=t.vae.get(i)&&x(t.vae.get(i),2);a&&a.forEach(l=>{var b,_,y;const[f,d,h]=l,p=t.attrs[d];(!r||!p||((b=p["reverse-identity"])==null?void 0:b[1])===r)&&(q(t.eav,[f,d,h]),q(t.aev,[d,f,h]),q(t.vae,[h,d,f])),p&&p["on-delete"]==="cascade"&&((_=p["reverse-identity"])==null?void 0:_[1])===r&&Xe(t,[f,(y=p["forward-identity"])==null?void 0:y[1]])}),((u=t.vae.get(i))==null?void 0:u.size)===0&&q(t.vae,[i])}function Bt(t,e){const n=Kt(t.attrs,e,t.useDateObjects);Object.keys(n).forEach(r=>{t[r]=n[r]})}function Ur(t,[e]){t.attrs[e.id]=e,Ze(t)}function Ht(t){return x(t.eav,3)}function Lr(t,[e]){if(!t.attrs[e])return;const n=Ht(t).filter(([r,s])=>s!==e);delete t.attrs[e],Ze(t),Bt(t,n)}function Fr(t,[e]){const n=t.attrs[e.id];n&&(t.attrs[e.id]={...n,...e},Ze(t),Bt(t,Ht(t)))}function Nr(t,e){const[n,...r]=e;switch(n){case"add-triple":Gt(t,r);break;case"deep-merge-triple":xr(t,r);break;case"retract-triple":Wt(t,r);break;case"delete-entity":Xe(t,r);break;case"add-attr":Ur(t,r);break;case"delete-attr":Lr(t,r);break;case"update-attr":Fr(t,r);break;case"restore-attr":break;case"rule-params":break;default:throw new Error(`unhandled transaction action: ${n}`)}}function x(t,e,n=[]){if(!t||e===0)return n;if(e===1){for(const r of t.values())n.push(r);return n}for(const r of t.values())x(r,e-1,n);return n}function ke(t,e,n){var i;const r=[];if(n!=null&&n.hasOwnProperty("$not")){for(const o of e.keys())n.$not!==o&&r.push(e.get(o));return r}if(n!=null&&n.hasOwnProperty("$isNull")){const{attrId:o,isNull:a,reverse:c}=n.$isNull;if(c)for(const u of e.keys()){const l=t.vae.get(u),f=!l||!l.get(o);(a?f:!f)&&r.push(e.get(u))}else{const u=t.aev.get(o);for(const l of e.keys()){const f=!u||((i=u.get(l))==null?void 0:i.get(null))||!u.get(l);(a?f:!f)&&r.push(e.get(l))}}return r}if(n!=null&&n.$comparator)return x(e,1).filter(n.$op);const s=n.in||n.$in||[n];for(const o of s){const a=e.get(o);a&&r.push(a)}return r}function Kr(t,e,n){let r="";return t!==void 0&&(r+="e"),e!==void 0&&(r+="a"),n!==void 0&&(r+="v"),r}function qr(t,[e,n,r]){var i,o;switch(Kr(e,n,r)){case"e":{const a=t.eav.get(e);return x(a,2)}case"ea":{const a=(i=t.eav.get(e))==null?void 0:i.get(n);return x(a,1)}case"eav":{const a=(o=t.eav.get(e))==null?void 0:o.get(n);return a?ke(t,a,r):[]}case"ev":{const a=t.eav.get(e);if(!a)return[];const c=[];for(const u of a.values())c.push(...ke(t,u,r));return c}case"a":{const a=t.aev.get(n);return x(a,2)}case"av":{const a=t.aev.get(n);if(!a)return[];const c=[];for(const u of a.values())c.push(...ke(t,u,r));return c}case"v":{const a=[];for(const c of t.eav.values())for(const u of c.values())a.push(...ke(t,u,r));return a}default:return x(t.eav,3)}}function zr(t,e,n){var s;const r={};if(!e)return r;for(const[i,o]of e.entries()){const a=(s=t.eav.get(n))==null?void 0:s.get(o.id),c=x(a,1);for(const u of c)r[i]=u[2]}return r}function B(t,e,n){var r;return(r=t.attrIndexes.forwardIdents.get(e))==null?void 0:r.get(n)}function Jt(t,e,n){var r;return(r=t.attrIndexes.revIdents.get(e))==null?void 0:r.get(n)}function Vr(t,e){return t.attrIndexes.blobAttrs.get(e)}function Yt(t,e){var r;const n=t.attrIndexes.primaryKeys.get(e);return n||((r=t.attrIndexes.forwardIdents.get(e))==null?void 0:r.get("id"))}function Wr(t,e){const n=he(t,e);if(!n)return;const[r,s,i]=n;if(te(t.attrs,s))return ne(t.eav,[r,s])}function Qr(t,e){const n=e.filter(([r,s,i,o,a])=>{if(r!=="add-triple"&&r!=="deep-merge-triple")return!0;const c=a==null?void 0:a.mode;if(c!=="create"&&c!=="update")return!0;let u=!1;const l=te(t.attrs,i);if(l){const f=Yt(t,l["forward-identity"][1]);u=!!Wr(t,[s,f==null?void 0:f.id,s])}return!(c==="create"&&u||c==="update"&&!u)});return ve(t,r=>{n.forEach(s=>{Nr(r,s)})})}function Gr(t){return typeof t=="string"&&t.startsWith("?")}function Br(t,e,n){if(n.hasOwnProperty(t)){const r=n[t];return Xt(r,e,n)}return{...n,[t]:e}}function Zt(t,e,n){return t===e?n:null}function Hr(t){switch(typeof t){case"string":return t.startsWith("?")?Br:Zt;default:return Zt}}const Jr=["in","$in","$not","$isNull","$comparator"];function Yr(t){for(const e of Jr)if(t.hasOwnProperty(e))return!0;return!1}function Xt(t,e,n){return n?typeof t=="object"?Yr(t)?n:null:Hr(t)(t,e,n):null}function Zr(t,e,n){return t.reduce((r,s,i)=>{const o=e[i];return Xt(s,o,r)},n)}function Xr(t,e,n){return ns(t,e,n).map(r=>Zr(e,r,n)).filter(r=>r)}function es(t,e,n){return e.or?e.or.patterns.flatMap(r=>et(t,r,n)):e.and?e.and.patterns.reduce((r,s)=>et(t,s,r),n):n.flatMap(r=>Xr(t,e,r))}function et(t,e,n=[{}]){return e.reduce((r,s)=>es(t,s,r),n)}function tt(t,e){return Array.isArray(e)?e.map(n=>tt(t,n)):Gr(e)?t[e]:e}function ts(t,{find:e,where:n}){return et(t,n).map(s=>tt(s,e))}function ns(t,e,n){return qr(t,tt(n,e))}const rs=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i;function re(t){return typeof t=="string"&&rs.test(t)}const I=[];for(let t=0;t<256;++t)I.push((t+256).toString(16).slice(1));function ss(t,e=0){return(I[t[e+0]]+I[t[e+1]]+I[t[e+2]]+I[t[e+3]]+"-"+I[t[e+4]]+I[t[e+5]]+"-"+I[t[e+6]]+I[t[e+7]]+"-"+I[t[e+8]]+I[t[e+9]]+"-"+I[t[e+10]]+I[t[e+11]]+I[t[e+12]]+I[t[e+13]]+I[t[e+14]]+I[t[e+15]]).toLowerCase()}let nt;const is=new Uint8Array(16);function os(){if(!nt){if(typeof crypto>"u"||!crypto.getRandomValues)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");nt=crypto.getRandomValues.bind(crypto)}return nt(is)}const en={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function as(t,e,n){var s;if(en.randomUUID&&!t)return en.randomUUID();t=t||{};const r=t.random??((s=t.rng)==null?void 0:s.call(t))??os();if(r.length<16)throw new Error("Random bytes length must be >= 16");return r[6]=r[6]&15|64,r[8]=r[8]&63|128,ss(r)}function tn(t){const e=t.replace(/-/g,""),n=[];for(let r=0;r<e.length;r+=2)n.push(parseInt(e.substring(r,r+2),16));return n}function cs(t,e){for(let n=0;n<t.length;n++){if(t[n]<e[n])return-1;if(t[n]>e[n])return 1}return 0}function us(t,e){return cs(tn(t),tn(e))}function C(){return as()}function ls(t,e){return t.localeCompare(e)}function fs(){let t=ls;if(typeof Intl=="object"&&Intl.hasOwnProperty("Collator"))try{t=Intl.Collator("en-US").compare}catch{}return t}const ds=fs();let hs=0;function pe(t){return Ee(`_${t}`,hs++)}function Ee(t,e){return`?${t}-${e}`}class se extends Error{constructor(e){super(e),this.name="AttrNotFoundError"}}function ps(t,e){const n=Yt(t,e);if(!n)throw new se(`Could not find id attr for ${e}`);return n}function nn(t,e,n,r){return[ys(t,e,n,r)]}function ys(t,e,n,r){return[t(n,r),ps(e,n).id,t(n,r),t("time",r)]}function bs(t,e,n){return t.map(r=>r===e?n:r)}function rn(t,e,n,r,s){const i=B(e,n,s),o=Jt(e,n,s),a=i||o;if(!a)throw new se(`Could not find attr for ${[n,s]}`);if(a["value-type"]!=="ref")throw new Error(`Attr ${a.id} is not a ref`);const[c,u]=a["forward-identity"],[l,f]=a["reverse-identity"],d=r+1,h=i?[t(u,r),a.id,t(f,d),pe("time")]:[t(u,d),a.id,t(f,r),pe("time")];return[i?f:u,d,h,a,!!i]}function sn(t,e){if(typeof e!="string")return function(o){return!1};const r=e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/%/g,".*").replace(/_/g,"."),s=new RegExp(`^${r}$`,t?void 0:"i");return function(o){return typeof o!="string"?!1:s.test(o)}}function _s(t,e){if(typeof e!="object"||e.hasOwnProperty("$in")||e.hasOwnProperty("in"))return e;const n=t["checked-data-type"]==="date";if(e.hasOwnProperty("$gt"))return{$comparator:!0,$op:n?function(s){return new Date(s[2])>new Date(e.$gt)}:function(s){return s[2]>e.$gt}};if(e.hasOwnProperty("$gte"))return{$comparator:!0,$op:n?function(s){return new Date(s[2])>=new Date(e.$gte)}:function(s){return s[2]>=e.$gte}};if(e.hasOwnProperty("$lt"))return{$comparator:!0,$op:n?function(s){return new Date(s[2])<new Date(e.$lt)}:function(s){return s[2]<e.$lt}};if(e.hasOwnProperty("$lte"))return{$comparator:!0,$op:n?function(s){return new Date(s[2])<=new Date(e.$lte)}:function(s){return s[2]<=e.$lte}};if(e.hasOwnProperty("$like")){const r=sn(!0,e.$like);return{$comparator:!0,$op:function(i){return r(i[2])}}}if(e.hasOwnProperty("$ilike")){const r=sn(!1,e.$ilike);return{$comparator:!0,$op:function(i){return r(i[2])}}}return e}function gs(t,e,n,r,s,i){const o=B(e,n,s),a=Jt(e,n,s),c=o||a;if(!c)throw new se(`No attr for etype = ${n} label = ${s}`);if(i!=null&&i.hasOwnProperty("$isNull")){const u=B(e,n,"id");if(!u)throw new se(`No attr for etype = ${n} label = id`);return[t(n,r),u.id,{$isNull:{attrId:c.id,isNull:i.$isNull,reverse:!o}},pe("time")]}return o?[t(n,r),c.id,_s(c,i),pe("time")]:[i,c.id,t(n,r),pe("time")]}function ws(t,e,n,r,s){const[i,o,a]=s.reduce((c,u)=>{const[l,f,d]=c,[h,p,b]=rn(t,e,l,f,u);return[h,p,[...d,b]]},[n,r,[]]);return[i,o,a]}function rt(t,e,n,r,s,i){const o=s.slice(0,s.length-1),a=s[s.length-1],[c,u,l]=ws(t,e,n,r,o),f=gs(t,e,c,u,a,i);return l.concat([f])}function Ts(t,e){return e?[e].concat(t):t}function ms([t,e]){return t==="or"&&Array.isArray(e)}function Ss([t,e]){return t==="and"&&Array.isArray(e)}function vs(t,e,n){return(r,s)=>{const i=t(r,s);return e==i?i:`${i}-${n}`}}function on(t,e,n,r,s,i){const o=t(r,s),a=i.map((c,u)=>{const l=vs(t,o,u);return cn(l,n,r,s,c)});return{[e]:{patterns:a,joinSym:o}}}function Os(t){const e=[];for(let n=1;n<=t.length;n++)e.push(t.slice(0,n));return e}function an(t,e,n,r,s){return Os(s).map(i=>rt(t,e,n,r,i,{$isNull:!0}))}function cn(t,e,n,r,s){return Object.entries(s).flatMap(([i,o])=>{if(ms([i,o]))return on(t,"or",e,n,r,o);if(Ss([i,o]))return on(t,"and",e,n,r,o);if(i==="$entityIdStartsWith")return[];const a=i.split(".");if(o!=null&&o.hasOwnProperty("$ne")&&(o={...o,$not:o.$ne},delete o.$ne),o!=null&&o.hasOwnProperty("$not")){const c=rt(t,e,n,r,a,o),u=an(t,e,n,r,a);return[{or:{patterns:[c,...u],joinSym:t(n,r)}}]}return o!=null&&o.hasOwnProperty("$isNull")&&o.$isNull===!0&&a.length>1?[{or:{patterns:an(t,e,n,r,a),joinSym:t(n,r)}}]:rt(t,e,n,r,a,o)})}function As(t,e,n,r){const s=Ee;return r?cn(s,t,e,n,r).concat(nn(s,t,e,n)):nn(s,t,e,n)}function ks(t,e,n){return[t(e,n),t("time",n)]}function Es(t,e,n,r,s,i){const[o,a,c,u,l]=rn(t,e,n,r,s),f=bs(c,t(n,r),i);return[o,a,f,u,l]}function Cs(t,e,{etype:n,level:r,form:s},i){const o=Object.keys(s).filter(a=>a!=="$");return o.length?Object.entries(i).map(function([c,u]){return o.map(function(d){var p,b,_;const h=!!(e.cardinalityInference&&((_=(b=(p=e.linkIndex)==null?void 0:p[n])==null?void 0:b[d])!=null&&_.isSingular));try{const[y,g,T]=Es(t,e,n,r,d,c),E=ln(e,{etype:y,level:g,form:s[d],join:T}),m=h?E[0]:E;return{[d]:m}}catch(y){if(y instanceof se)return{[d]:h?void 0:[]};throw y}}).reduce(function(d,h){return{...d,...h}},u)}):Object.values(i)}function Is(t,e,n){return n==="string"?ds(t,e):t>e?1:-1}function ye(t,e,n,r,s){return e===r||e==null&&r==null?us(t,n):r==null?1:e==null?-1:Is(e,r,s)}function Ce([t,e],[n,r],s){return ye(t,e,n,r,s)}function st(t){return t==null?t:new Date(t).getTime()}function Ms(t,e,n,r){var p;const[s,i,o,a]=t,c=n==="desc"?1:-1;if(((p=e["forward-identity"])==null?void 0:p[2])==="id")return Ce(r,[s,a],null)===c;const[u,l]=r,f=e["checked-data-type"],d=f==="date"?st(l):l,h=f==="date"?st(o):o;return Ce([u,d],[s,h],f)===c}function Ps(t,e){const n=e[1];return t.attrs[n]}function js(t,e,n){const r=Object.keys(n)[0];return B(t,e,r)}function $s(t,e,n,r){if(n)return Ps(t,n);if(r)return js(t,e,r)}function Ds(t,e,n){var s,i;if(!Array.isArray(n.fields))return Vr(t,e);const r=new Map;for(const o of n.fields){const a=B(t,e,o),c=(s=a==null?void 0:a["forward-identity"])==null?void 0:s[2];c&&Ye(a)&&r.set(c,a)}if(!r.has("id")){const o=B(t,e,"id"),a=(i=o==null?void 0:o["forward-identity"])==null?void 0:i[2];a&&r.set(a,o)}return r}function Rs(t,{etype:e,pageInfo:n,dq:r,form:s}){var h,p;const i=(h=s==null?void 0:s.$)==null?void 0:h.order,o=un(s),a=xs(s);let c=ts(t,r);const u=n==null?void 0:n["start-cursor"],l=$s(t,e,u,i);if(l&&((p=l==null?void 0:l["forward-identity"])==null?void 0:p[2])!=="id"){const b=l["checked-data-type"]==="date",_=l.id;c=c.map(([y])=>{var T,E,m,P,j;let g=(j=(P=(m=(E=(T=t.eav.get(y))==null?void 0:T.get(_))==null?void 0:E.values())==null?void 0:m.next())==null?void 0:P.value)==null?void 0:j[2];return b&&(g=st(g)),[y,g]})}c.sort(a==="asc"?function(_,y){return Ce(_,y,l==null?void 0:l["checked-data-type"])}:function(_,y){return Ce(y,_,l==null?void 0:l["checked-data-type"])});let f={};const d=Ds(t,e,r);for(const b of c){const[_]=b;if(f[_]||!o&&u&&l&&Ms(u,l,a,b))continue;const y=zr(t,d,_);y&&(f[_]=y)}return f}function xs(t){var n;const e=(n=t.$)==null?void 0:n.order;return e&&e[Object.keys(e)[0]]||"asc"}function un(t){var s,i,o;const e=(s=t.$)==null?void 0:s.offset,n=(i=t.$)==null?void 0:i.before,r=(o=t.$)==null?void 0:o.after;return!e&&!n&&!r}function Us(t,{etype:e,level:n,form:r,join:s,pageInfo:i}){var f,d,h,p,b;if(!un(r)&&(!i||!i["start-cursor"]))return[];const o=Ts(As(t,e,n,(f=r.$)==null?void 0:f.where),s),a=ks(Ee,e,n),c=(d=r.$)==null?void 0:d.fields,u=Rs(t,{etype:e,pageInfo:i,form:r,dq:{where:o,find:a,fields:c}}),l=((h=r.$)==null?void 0:h.limit)||((p=r.$)==null?void 0:p.first)||((b=r.$)==null?void 0:b.last);if(l!=null){n>0&&console.warn("WARNING: Limits in child queries are only run client-side. Data returned from the server will not have a limit.");const _=Object.entries(u);return _.length<=l?u:Object.fromEntries(_.slice(0,l))}return u}function Ls(t,e){try{return Us(t,e)}catch(n){if(n instanceof se)return{};throw n}}function ln(t,e){const n=Ls(t,e);return Cs(Ee,t,e,n)}function Fs(t){const e={};for(const[n,r]of Object.entries(t))e[n]={startCursor:r["start-cursor"],endCursor:r["end-cursor"],hasNextPage:r["has-next-page?"],hasPreviousPage:r["has-previous-page?"]};return e}function fn({store:t,pageInfo:e,aggregate:n},r){const i={data:Object.keys(r).reduce(function(a,c){return n!=null&&n[c]||c==="$$ruleParams"||(a[c]=ln(t,{etype:c,form:r[c],level:0,pageInfo:e==null?void 0:e[c]})),a},{})};return e&&(i.pageInfo=Fs(e)),n&&(i.aggregate=n),i}function Ns(){const e={__etype:1,__ops:1,create:1,update:1,link:1,unlink:1,delete:1,merge:1,ruleParams:1};return new Set(Object.keys(e))}const Ks=Ns();function it(t,e,n){const r={__etype:t,__ops:n};return new Proxy(r,{get:(s,i)=>{if(i==="__ops")return n;if(i==="__etype")return t;if(Ks.has(i))return(o,a)=>it(t,e,[...n,a?[i,t,e,o,a]:[i,t,e,o]])}})}function qs(t,e){return`lookup__${t}__${JSON.stringify(e)}`}function Ie(t){return t.startsWith("lookup__")}function dn(t){const[e,n,...r]=t.split("__");return[n,JSON.parse(r.join("__"))]}function zs(t){return new Proxy({__etype:t},{get(e,n){if(n==="__etype")return t;const r=n;return Ie(r)?it(t,dn(r),[]):it(t,r,[])}})}function ot(){return new Proxy({},{get(t,e){return zs(e)}})}const Vs=ot();function hn(t){return t.__ops}function Ws(t,e){const{attrIdMap:n,refSwapAttrIds:r}=t,s=[];for(const o of e){const a=n[o];if(a)s.push(a);else if(Array.isArray(o)&&o.length==2&&n[o[0]]){const[c,u]=o;s.push([n[c],u])}else s.push(o)}const[i]=e;if((i==="add-triple"||i==="retract-triple")&&r.has(e[2])){const o=s[1];s[1]=s[3],s[3]=o}return s}function M(t,e,n){return Object.values(t).find(r=>{const[s,i,o]=r["forward-identity"];return i===e&&o===n})}function Z(t,e,n){return Object.values(t).find(r=>{const s=r["reverse-identity"];if(!s)return!1;const[i,o,a]=s;return o===e&&a===n})}function Qs(t){if(Array.isArray(t))return t;const e=Object.entries(t);if(e.length!==1)throw new Error("lookup must be an object with a single unique attr and value.");return e[0]}function at(t,e,n){return n.indexOf(".")!==-1&&!M(t,e,n)}function ct(t){const[e,n,...r]=t.split(".");if(r.length>0||n!=="id")throw new Error(`${t} is not a valid lookup attribute.`);return e}function Gs(t,e,n){if(!at(t,e,n))return M(t,e,n);const r=ct(n),s=M(t,e,r)||Z(t,e,r);if(s&&s["value-type"]!=="ref")throw new Error(`${n} does not reference a valid link attribute.`);return s}function ut(t){return typeof t=="string"&&!Ie(t)?null:typeof t=="string"&&Ie(t)?dn(t):Qs(t)}function U(t,e,n){const r=ut(n);if(r===null)return n;const[s,i]=r,o=Gs(t,e,s);if(!o||!o["unique?"])throw new Error(`${s} is not a unique attribute.`);return[o.id,i]}function pn(t,e,n,r){const s=U(t,e,n);return Array.isArray(s)?[["add-triple",s,M(t,e,"id").id,s]].concat(r):r}function Bs({attrs:t},[e,n,r]){const s=Object.entries(r).flatMap(([i,o])=>{const a=Array.isArray(o)?o:[o],c=M(t,e,i),u=Z(t,e,i);return a.map(l=>c?["add-triple",U(t,e,n),c.id,U(t,c["reverse-identity"][1],l)]:["add-triple",U(t,u["forward-identity"][1],l),u.id,U(t,e,n)])});return pn(t,e,n,s)}function Hs({attrs:t},[e,n,r]){const s=Object.entries(r).flatMap(([i,o])=>{const a=Array.isArray(o)?o:[o],c=M(t,e,i),u=Z(t,e,i);return a.map(l=>c?["retract-triple",U(t,e,n),c.id,U(t,c["reverse-identity"][1],l)]:["retract-triple",U(t,u["forward-identity"][1],l),u.id,U(t,e,n)])});return pn(t,e,n,s)}function Js(t,e,n){if(Array.isArray(n)){const[r,s]=n;for(const i of t||[]){const o=i==null?void 0:i.aev.get(r);if(o){for(const[a,c,u]of x(o,2))if(u===s)return!0}}}else for(const r of t||[]){const s=r==null?void 0:r.eav.get(n);if(s){for(const i of s.keys())if(r.attrs[i]["forward-identity"][1]==e)return!0}}return!1}function yn({stores:t,attrs:e},[n,r,s,i]){return(i==null?void 0:i.upsert)===!1?{mode:"update"}:(i==null?void 0:i.upsert)===!0?null:Js(t,n,r)?{mode:"update"}:null}function Ys(t,e){const{attrs:n}=t,[r,s,i,o]=e,a=Be(i),c=U(n,r,s);return[["id",c]].concat(Object.entries(a)).map(([l,f])=>{const d=M(n,r,l);return d["checked-data-type"]==="date"&&t.useDateObjects&&(f=de(f)),["add-triple",c,d.id,f,{mode:"create"}]})}function Zs(t,e){const{attrs:n}=t,[r,s,i,o]=e,a=Be(i),c=U(n,r,s),u=yn(t,[r,c,i,o]);return[["id",c]].concat(Object.entries(a)).map(([f,d])=>{const h=M(n,r,f);return h["checked-data-type"]==="date"&&t.useDateObjects&&(d=de(d)),["add-triple",c,h.id,d,...u?[u]:[]]})}function Xs({attrs:t},[e,n]){return[["delete-entity",U(t,e,n),e]]}function ei(t,e){const{attrs:n}=t,[r,s,i,o]=e,a=Be(i),c=U(n,r,s),u=yn(t,[r,c,i,o]),l=Object.entries(a).map(([d,h])=>{const p=M(n,r,d);return["deep-merge-triple",c,p.id,h,...u?[u]:[]]});return[["add-triple",c,M(n,r,"id").id,c,...u?[u]:[]]].concat(l)}function ti({attrs:t},[e,n,r]){return[["rule-params",U(t,e,n),e,r]]}function ni(t){const[e,n,r,s,i]=t;if(!s)return t;const o={...s};return delete o.id,[e,n,r,o,...i?[i]:[]]}function ri(t,e){const[n,...r]=ni(e);switch(n){case"merge":return ei(t,r);case"create":return Ys(t,r);case"update":return Zs(t,r);case"link":return Bs(t,r);case"unlink":return Hs(t,r);case"delete":return Xs(t,r);case"ruleParams":return ti(t,r);default:throw new Error(`unsupported action ${n}`)}}function si(t){switch(t){case"string":case"date":case"boolean":case"number":return t;default:return}}function ii(t,e,n){var a,c;const r=(c=(a=t.entities[e])==null?void 0:a.attrs)==null?void 0:c[n];if(n==="id")return null;if(!r)throw new Error(`${e}.${n} does not exist in your schema`);const{unique:s,indexed:i}=r==null?void 0:r.config,o=si(r==null?void 0:r.valueType);return{"index?":i,"unique?":s,"checked-data-type":o}}function Me(t,e,n,r){const s=t?ii(t,e,n):null,i=C(),a=[C(),e,n];return{id:i,"forward-identity":a,"value-type":"blob",cardinality:"one","unique?":!1,"index?":!1,isUnsynced:!0,...s||{},...r||{}}}function oi(t,e,n){return Object.values(t.links).find(s=>s.forward.on===e&&s.forward.label===n||s.reverse.on===e&&s.reverse.label===n)}function ai(t,e,n){const r=oi(t,e,n);if(!r)throw new Error(`Couldn't find the link ${e}.${n} in your schema`);const{forward:s,reverse:i}=r;return{"forward-identity":[C(),s.on,s.label],"reverse-identity":[C(),i.on,i.label],cardinality:s.has==="one"?"one":"many","unique?":i.has==="one","on-delete":s.onDelete,"on-delete-reverse":i.onDelete}}function bn(t,e,n,r){const s=t?ai(t,e,n):null,i=C(),o=[C(),e,n],a=[C(),n,e];return{id:i,"forward-identity":o,"reverse-identity":a,"value-type":"ref",cardinality:"many","unique?":!1,"index?":!1,isUnsynced:!0,...s||{},...r||{}}}const ci=new Set(["create","update","merge","link","unlink"]),ui=new Set(["link","unlink"]),li=new Set(["create","update","merge"]),fi=new Set(["link","unlink","create","update","merge","delete","ruleParams"]),lt={"unique?":!0,"index?":!0},di={...lt,cardinality:"one"};function hi(t){const e=[],[n,r,s,i]=t;if(!fi.has(n))return e;const o=ut(s);if(o&&e.push({etype:r,lookupPair:o}),n==="link")for(const[a,c]of Object.entries(i)){const u=Array.isArray(c)?c:[c];for(const l of u){const f=ut(l);f&&e.push({etype:r,lookupPair:f,linkLabel:a})}}return e}function pi({attrs:t,schema:e},n){var u,l;const[r,s,i]=[new Set,{...t},[]];function o(f){s[f.id]=f,i.push(["add-attr",f]),r.add(f.id)}function a(f){f!=null&&f.isUnsynced&&!r.has(f.id)&&(i.push(["add-attr",f]),r.add(f.id))}function c(f,d){const h=M(s,f,d),p=Z(s,f,d);a(h),a(p),!h&&!p&&o(bn(e,f,d,di))}for(const f of n)for(const{etype:d,lookupPair:h,linkLabel:p}of hi(f)){const b=h[0];if(p){c(d,p);const _=M(s,d,p),y=Z(s,d,p);a(_),a(y);const g=((u=_==null?void 0:_["reverse-identity"])==null?void 0:u[1])||((l=y==null?void 0:y["forward-identity"])==null?void 0:l[1])||p;if(at(s,g,b))c(g,ct(b));else{const T=M(s,g,b);T||o(Me(e,g,b,lt)),a(T)}}else if(at(s,d,b))c(d,ct(b));else{const _=M(s,d,b);_||o(Me(e,d,b,lt)),a(_)}}for(const f of n){const[d,h,p,b]=f;if(ci.has(d)){const _=M(s,h,"id");a(_),_||o(Me(e,h,"id",{"unique?":!0}));for(const y of Object.keys(b)){const g=M(s,h,y);if(a(g),li.has(d)&&(g||o(Me(e,h,y,y==="id"?{"unique?":!0}:null))),ui.has(d)){const T=Z(s,h,y);!g&&!T&&o(bn(e,h,y)),a(T)}}}}return[s,i]}function yi(t,e){const r=(Array.isArray(e)?e:[e]).flatMap(c=>hn(c)),[s,i]=pi(t,r),o={...t,attrs:s},a=r.flatMap(c=>ri(o,c));return[...i,...a]}function _n(t,e){typeof requestIdleCallback>"u"?t():requestIdleCallback(t,{timeout:e})}const be="__meta";class gn{constructor(e,n){}}class ft{constructor(e){this._subs=[],this._nextSave=null,this._nextGc=null,this._pendingSaveKeys=new Set,this._loadedKeys=new Set,this._version=0,this._meta={isLoading:!0,onLoadCbs:[],value:null,error:null,attempts:0},this._persister=e.persister,this._merge=e.merge,this.serialize=e.serialize,this.parse=e.parse,this._objectSize=e.objectSize,this._log=e.logger,this._saveThrottleMs=e.saveThrottleMs??100,this._idleCallbackMaxWaitMs=e.idleCallbackMaxWaitMs??1e3,this._gcOpts=e.gc,this.currentValue={},this._loadedKeys=new Set,this._loadingKeys={},this._initMeta(),e.preloadEntryCount&&this._preloadEntries(e.preloadEntryCount)}async _initMeta(){var e;this._meta.loadingPromise&&await this._meta.loadingPromise;try{const n=this._persister.getItem(be);this._meta.loadingPromise=n;const r=await n;this._meta.isLoading=!1,this._meta.error=null,this._meta.loadingPromise=null,this._meta.attempts=0;const s=((e=this._meta.value)==null?void 0:e.objects)??{},i=r??{},o=i.objects??{};this._meta.value={...i,objects:{...s,...o}}}catch(n){this._meta.error=n,this._meta.attempts++,this._meta.loadingPromise=null}}async _getMeta(){return this._meta.value?this._meta.value:this._meta.loadingPromise?(await this._meta.loadingPromise,this._meta.value):(this._initMeta(),await this._meta.loadingPromise,this._meta.value)}async _refreshMeta(){return await this._initMeta(),this._meta.value}async _preloadEntries(e){const n=await this.waitForMetaToLoad();if(!n)return;const r=Object.entries(n.objects);r.sort(([s,i],[o,a])=>a.updatedAt-i.updatedAt);for(const[s]of r.slice(0,e))this._loadKey(s)}async _getFromStorage(e){try{const n=await this._persister.getItem(e);return n&&this.parse(e,n)}catch(n){return console.error(`Unable to read from storage for key=${e}`,n),null}}async waitForKeyToLoad(e){return this._loadedKeys.has(e)?this.currentValue[e]:(await(this._loadingKeys[e]||this._loadKey(e)),this.currentValue[e])}async waitForMetaToLoad(){return this._getMeta()}unloadKey(e){this._loadedKeys.delete(e),delete this._loadingKeys[e],delete this.currentValue[e]}async _loadKey(e){if(this._loadedKeys.has(e)||e in this._loadingKeys)return;const n=this._getFromStorage(e);this._loadingKeys[e]=n;const r=await n;if(delete this._loadingKeys[e],this._loadedKeys.add(e),r){const s=this._merge(e,r,this.currentValue[e]);s&&(this.currentValue[e]=s)}this.onKeyLoaded&&this.onKeyLoaded(e)}_writeToStorage(e){const n=[],r=e==null?void 0:e.skipGc;if(this._meta.isLoading){const f=new Promise((d,h)=>{setTimeout(()=>this._enqueuePersist(e?{...e,attempts:(e.attempts||0)+1}:{attempts:1}).then(d).catch(h),10+((e==null?void 0:e.attempts)??0)*1e3)});return n.push(f),Promise.all(n).then(d=>d.reduce((h,p)=>h+p,0))}const s=this._meta.value;if(!s)return Promise.resolve(0);const i=[],o=[];for(const f of this._pendingSaveKeys)f in this.currentValue?o.push(f):(i.push(f),delete s.objects[f]);for(const f of i){const d=this._persister.removeItem(f);n.push(d.then(()=>1)),this._loadedKeys.delete(f),this._pendingSaveKeys.delete(f)}const a=[],c=[[be,s]],u=s.objects??{};s.objects=u;for(const f of o)if(this._loadedKeys.has(f)){const d=this.serialize(f,this.currentValue[f]);c.push([f,d]);const h=this._objectSize(d),p=u[f]??{createdAt:Date.now(),updatedAt:Date.now(),size:h};p.updatedAt=Date.now(),p.size=h,u[f]=p,this._pendingSaveKeys.delete(f)}else a.push(f);const l=this._persister.multiSet(c);n.push(l.then(()=>1));for(const f of a){const d=this._loadKey(f).then(()=>this._enqueuePersist(e));n.push(d)}return r||this.gc(),Promise.all(n).then(f=>f.reduce((d,h)=>d+h,0))}async flush(){return this._nextSave?(clearTimeout(this._nextSave),this._nextSave=null,this._writeToStorage()):void 0}async _gc(){if(!this._gcOpts)return;const e=new Set(await this._persister.getAllKeys());e.delete(be);const n=new Set(Object.keys(this.currentValue));for(const d of Object.keys(this._loadingKeys))n.add(d);for(const d of this._loadedKeys)n.add(d);const r=await this._refreshMeta();if(!r){this._log.info("Could not gc because we were not able to load meta");return}const s=[],i={gcOpts:this._gcOpts,keys:e,sacredKeys:n,removed:[],metaRemoved:[],removedMissingCount:0,removedOldCount:0,removedThresholdCount:0,removedSizeCount:0};for(const d of e)n.has(d)||d in r.objects||(this._log.info("Lost track of key in meta",d),s.push(this._persister.removeItem(d)),i.removed.push(d),i.removedMissingCount++);const o=Date.now();for(const[d,h]of Object.entries(r.objects))!n.has(d)&&h.updatedAt<o-this._gcOpts.maxAgeMs&&(s.push(this._persister.removeItem(d)),delete r.objects[d],i.removed.push(d),i.removedOldCount++);const a=Object.entries(r.objects);a.sort(([d,h],[p,b])=>h.updatedAt-b.updatedAt);const c=a.filter(([d])=>!n.has(d));if(a.length>this._gcOpts.maxEntries)for(const[d]of c.slice(0,a.length-this._gcOpts.maxEntries))s.push(this._persister.removeItem(d)),delete r.objects[d],i.removed.push(d),i.removedThresholdCount++;const u=Object.entries(r.objects);u.sort(([d,h],[p,b])=>h.updatedAt-b.updatedAt);const l=u.filter(([d])=>!n.has(d));let f=u.reduce((d,[h,p])=>d+p.size,0);for(;f>0&&f>this._gcOpts.maxSize&&l.length;){const[[d,h]]=l.splice(0,1);f-=h.size,s.push(this._persister.removeItem(d)),delete r.objects[d],i.removed.push(d),i.removedSizeCount++}for(const d of Object.keys(r.objects))!e.has(d)&&!n.has(d)&&delete r.objects[d];return(i.removed.length||i.metaRemoved.length)&&s.push(this._enqueuePersist({skipGc:!0})),this._log.info("Completed GC",i),await Promise.all(s),i}gc(){this._nextGc||(this._nextGc=setTimeout(()=>{_n(()=>{this._nextGc=null,this._gc()},30*1e3)},1e3*60+Math.random()*500))}_enqueuePersist(e){return new Promise((n,r)=>{if(this._nextSave){n(0);return}this._nextSave=setTimeout(()=>{_n(()=>{this._nextSave=null,this._writeToStorage(e).then(n).catch(r)},this._idleCallbackMaxWaitMs)},this._saveThrottleMs)})}version(){return this._version}updateInPlace(e){this._version++;const[n,r]=ve(this.currentValue,e,{enablePatches:!0});for(const s of r){const i=s.path[0];i&&typeof i=="string"&&(this._pendingSaveKeys.add(i),this._loadedKeys.has(i)||this._loadKey(i))}this.currentValue=n,this._enqueuePersist();for(const s of this._subs)s(this.currentValue);return n}subscribe(e){return this._subs.push(e),e(this.currentValue),()=>{this._subs=this._subs.filter(n=>n!==e)}}}const bi=6,_i=["kv","querySubs","syncSubs"];function gi(t){return function(n){console.error("Error in IndexedDB event",{source:t,event:n})}}async function wi(t){return new Promise(e=>{const n=indexedDB.open(t);n.onerror=r=>{e(null)},n.onsuccess=r=>{const i=r.target.result;e(i)},n.onupgradeneeded=r=>{var i;(i=r.target.transaction)==null||i.abort(),e(null)}})}async function Ti(t,e,n){const r=typeof e=="string"?JSON.parse(e):e;if(!r)return;const s=new Set;return new Promise((i,o)=>{var l,f,d;const a={};for(const[h,p]of Object.entries(r)){const b=typeof p=="string"?JSON.parse(p):p;if(b.lastAccessed){const y={createdAt:b.lastAccessed,updatedAt:b.lastAccessed,size:((d=(f=(l=b.result)==null?void 0:l.store)==null?void 0:f.triples)==null?void 0:d.length)??0};a[h]=y}const _=n.put(b,h);s.add(_)}const c={objects:a},u=n.put(c,be);s.add(u);for(const h of s)h.onsuccess=()=>{s.delete(h),s.size===0&&i()},h.onerror=p=>{o(p)}})}async function wn(t,e,n){const r=n.put(e,t);return new Promise((s,i)=>{r.onsuccess=()=>s(),r.onerror=o=>i(o)})}async function mi(t,e){const n=await wi(`instant_${t}_5`);if(!n)return;const r=await new Promise((l,f)=>{const p=n.transaction(["kv"],"readonly").objectStore("kv").openCursor();p.onerror=_=>{f(_)};const b=[];p.onsuccess=()=>{const _=p.result;if(_){const y=_.key,g=_.value;b.push([y,g]),_.continue()}else l(b)},p.onerror=_=>{f(_)}}),s=e.transaction(["kv","querySubs"],"readwrite"),i=s.objectStore("kv"),o=s.objectStore("querySubs"),a=[],c={objects:{}};for(const[l,f]of r)switch(l){case"querySubs":{const d=Ti(l,f,o);a.push(d);break}default:{const d=wn(l,f,i);a.push(d);const h={createdAt:Date.now(),updatedAt:Date.now(),size:0};c.objects[l]=h;break}}const u=wn(be,c,i);a.push(u),await Promise.all(a),await new Promise((l,f)=>{s.oncomplete=d=>l(d),s.onerror=d=>f(d),s.onabort=d=>f(d)})}const Tn=new Map;class dt extends gn{constructor(e,n){super(e,n),this.dbName=`instant_${e}_${bi}`,this._storeName=n,this._appId=e,this._dbPromise=this._init()}_init(){return new Promise((e,n)=>{let r=!1;const s=indexedDB.open(this.dbName,1);s.onerror=i=>{n(i)},s.onsuccess=i=>{const a=i.target.result;if(r){const c=mi(this._appId,a).catch(u=>{gi("Error upgrading store from version 5 to 6.")(u)});Tn.set(this.dbName,c),c.then(()=>e(a)).catch(()=>e(a))}else{const c=Tn.get(this.dbName);c?c.then(()=>e(a)).catch(()=>e(a)):e(a)}},s.onupgradeneeded=i=>{r=!0,this._upgradeStore(i)}})}_upgradeStore(e){const r=e.target.result;for(const s of _i)r.objectStoreNames.contains(s)||r.createObjectStore(s)}async getItem(e){const n=await this._dbPromise;return new Promise((r,s)=>{const a=n.transaction([this._storeName],"readonly").objectStore(this._storeName).get(e);a.onerror=c=>{s(c)},a.onsuccess=c=>{a.result?r(a.result):r(null)}})}async setItem(e,n){const r=await this._dbPromise;return new Promise((s,i)=>{const c=r.transaction([this._storeName],"readwrite").objectStore(this._storeName).put(n,e);c.onerror=u=>{i(u)},c.onsuccess=u=>{s()}})}async multiSet(e){const n=await this._dbPromise;return new Promise((r,s)=>{const i=n.transaction([this._storeName],"readwrite"),o=i.objectStore(this._storeName),a=new Set;for(const[c,u]of e){const l=o.put(u,c);a.add(l)}for(const c of a)c.onerror=u=>{i.abort(),s(u)},c.onsuccess=u=>{a.delete(c),a.size===0&&r()}})}async removeItem(e){const n=await this._dbPromise;return new Promise((r,s)=>{const a=n.transaction([this._storeName],"readwrite").objectStore(this._storeName).delete(e);a.onerror=c=>{s(c)},a.onsuccess=c=>{r()}})}async getAllKeys(){const e=await this._dbPromise;return new Promise((n,r)=>{const o=e.transaction([this._storeName],"readonly").objectStore(this._storeName).getAllKeys();o.onerror=a=>{r(a)},o.onsuccess=a=>{n(o.result.filter(c=>typeof c=="string"))}})}}class ht{static async getIsOnline(){return navigator.onLine}static listen(e){const n=()=>{e(!0)},r=()=>{e(!1)};return addEventListener("online",n),addEventListener("offline",r),()=>{removeEventListener("online",n),removeEventListener("offline",r)}}}class ie extends Error{constructor(e,n){super(e),this.hint=n;const r=new.target.prototype;Object.setPrototypeOf&&Object.setPrototypeOf(this,r),Error.captureStackTrace&&Error.captureStackTrace(this,ie),this.name="InstantError"}get[Symbol.toStringTag](){return"InstantError"}}class _e extends ie{constructor(e){var s;const n=((s=e.body)==null?void 0:s.message)||`API Error (${e.status})`;super(n,e.body.hint);const r=new.target.prototype;Object.setPrototypeOf&&Object.setPrototypeOf(this,r),Error.captureStackTrace&&Error.captureStackTrace(this,_e),this.name="InstantAPIError",this.status=e.status,this.body=e.body}get[Symbol.toStringTag](){return"InstantAPIError"}}async function z(t,e){const n=await fetch(t,e),r=await n.json();return n.status===200?Promise.resolve(r):Promise.reject(new _e({status:n.status,body:r}))}function Si({apiURI:t,appId:e,email:n}){return z(`${t}/runtime/auth/send_magic_code`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({"app-id":e,email:n})})}async function vi({apiURI:t,appId:e,email:n,code:r,refreshToken:s}){return await z(`${t}/runtime/auth/verify_magic_code`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({"app-id":e,email:n,code:r,...s?{"refresh-token":s}:{}})})}async function Oi({apiURI:t,appId:e,refreshToken:n}){return await z(`${t}/runtime/auth/verify_refresh_token`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({"app-id":e,"refresh-token":n})})}async function Ai({apiURI:t,appId:e}){return await z(`${t}/runtime/auth/sign_in_guest`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({"app-id":e})})}async function mn({apiURI:t,appId:e,code:n,codeVerifier:r,refreshToken:s}){return await z(`${t}/runtime/oauth/token`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({app_id:e,code:n,code_verifier:r,refresh_token:s})})}async function ki({apiURI:t,appId:e,nonce:n,idToken:r,clientName:s,refreshToken:i}){return await z(`${t}/runtime/oauth/id_token`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({app_id:e,nonce:n,id_token:r,client_name:s,refresh_token:i})})}async function Ei({apiURI:t,appId:e,refreshToken:n}){return await z(`${t}/runtime/signout`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({app_id:e,refresh_token:n})})}async function Ci({apiURI:t,appId:e,path:n,file:r,refreshToken:s,contentType:i,contentDisposition:o}){const a={app_id:e,path:n,authorization:`Bearer ${s}`,"content-type":i||r.type};return o&&(a["content-disposition"]=o),await z(`${t}/storage/upload`,{method:"PUT",headers:a,body:r})}async function Ii({apiURI:t,appId:e,path:n,refreshToken:r}){const{data:s}=await z(`${t}/storage/files?app_id=${e}&filename=${encodeURIComponent(n)}`,{method:"DELETE",headers:{"content-type":"application/json",authorization:`Bearer ${r}`}});return s}async function Mi({apiURI:t,appId:e,fileName:n,refreshToken:r,metadata:s={}}){const{data:i}=await z(`${t}/storage/signed-upload-url`,{method:"POST",headers:{"content-type":"application/json",authorization:`Bearer ${r}`},body:JSON.stringify({app_id:e,filename:n})});return i}async function Pi(t,e){return(await fetch(t,{method:"PUT",body:e,headers:{"Content-Type":e.type}})).ok}async function ji({apiURI:t,appId:e,path:n,refreshToken:r}){const{data:s}=await z(`${t}/storage/signed-download-url?app_id=${e}&filename=${encodeURIComponent(n)}`,{method:"GET",headers:{"content-type":"application/json",authorization:`Bearer ${r}`}});return s}let pt=!1,Sn=!1,vn=!1;typeof window<"u"&&typeof window.localStorage<"u"&&(pt=!!window.localStorage.getItem("devBackend"),Sn=!!window.localStorage.getItem("__instantLogging"),vn=!!window.localStorage.getItem("__devtoolLocalDash"));function On(t,e){if(!e)return t;const n={};return e.forEach(r=>{n[r]=t[r]}),n}function $i(t,e,n){const r={peers:{}};if(e&&"user"in e?e.user:!0){const i=On(t.user??{},e==null?void 0:e.keys);r.user={...i,peerId:n}}for(const i of Object.keys(t.peers??{})){const o=(e==null?void 0:e.peers)===void 0,a=Array.isArray(e==null?void 0:e.peers)&&(e==null?void 0:e.peers.includes(i));if(o||a){const c=On(t.peers[i],e==null?void 0:e.keys);r.peers[i]={...c,peerId:i}}}return r}function Di(t,e){if(t.isLoading!==e.isLoading||t.error!==e.error||(t.user||e.user)&&(!t.user||!e.user||!xt(t.user,e.user))||!Rt(t.peers,e.peers))return!0;for(const r of Object.keys(t.peers))if(!xt(t.peers[r],e.peers[r]))return!0;return!1}class An{constructor(){w(this,"promise");w(this,"_resolve");w(this,"_reject");this.promise=new Promise((e,n)=>{this._resolve=e,this._reject=n})}resolve(e){this._resolve(e)}reject(e){this._reject(e)}}function kn(t,e=[]){t.forEach(n=>{const{data:r}=n,{"datalog-result":s}=r,{"join-rows":i}=s;for(const o of i)for(const a of o)e.push(a);kn(n["child-nodes"],e)})}function En(t){const e=[];return kn(t,e),e}function Cn(t){return Object.values(t.links).reduce((e,n)=>{var r,s;return e[r=n.forward.on]??(e[r]={}),e[n.forward.on][n.forward.label]={isForward:!0,isSingular:n.forward.has==="one",link:n},e[s=n.reverse.on]??(e[s]={}),e[n.reverse.on][n.reverse.label]={isForward:!1,isSingular:n.reverse.has==="one",link:n},e},{})}const yt="v0.22.88";function Ri(t,e){return{info:t?(...n)=>console.info(...n,e()):()=>{},debug:t?(...n)=>console.debug(...n,e()):()=>{},error:t?(...n)=>console.error(...n,e()):()=>{}}}class D{constructor(e,n,r,s={indexed:!1,unique:!1}){this.valueType=e,this.required=n,this.isIndexed=r,this.config=s,this.metadata={}}clientRequired(){return new D(this.valueType,!1,this.isIndexed,this.config)}optional(){return new D(this.valueType,!1,this.isIndexed,this.config)}unique(){return new D(this.valueType,this.required,this.isIndexed,{...this.config,unique:!0})}indexed(){return new D(this.valueType,this.required,!0,{...this.config,indexed:!0})}}class Pe{constructor(e,n){this.attrs=e,this.links=n}asType(){return new Pe(this.attrs,this.links)}}class je{constructor(e,n,r){this.entities=e,this.links=n,this.rooms=r}withRoomSchema(){return new je(this.entities,this.links,{})}}class k extends Error{constructor(e,n){const r=n?`At path '${n}': ${e}`:e;super(r),this.name="QueryValidationError"}}const In=["where","order","limit","last","first","offset","after","before","fields","aggregate"],xi=t=>t.valueType||"unknown",Mn=(t,e,n=!1)=>{if(n||t==null)return!0;switch(e){case"string":return typeof t=="string";case"number":return typeof t=="number"&&!isNaN(t);case"boolean":return typeof t=="boolean";case"date":return t instanceof Date||typeof t=="string"||typeof t=="number";default:return!0}},Ui=(t,e,n,r,s,i,o)=>{const a=i.valueType==="json",c=(u,l,f)=>{if(!Mn(f,l,a))throw new k(`Invalid value for operator '${u}' on attribute '${r}' in entity '${s}'. Expected ${l}, but received: ${typeof f}`,o)};switch(t){case"in":case"$in":if(!Array.isArray(e))throw new k(`Operator '${t}' for attribute '${r}' in entity '${s}' must be an array, but received: ${typeof e}`,o);for(const u of e)c(t,n,u);break;case"$not":case"$ne":case"$gt":case"$lt":case"$gte":case"$lte":c(t,n,e);break;case"$like":case"$ilike":if(c(t,"string",e),t==="$ilike"&&!i.isIndexed)throw new k(`Operator '${t}' can only be used with indexed attributes, but '${r}' in entity '${s}' is not indexed`,o);break;case"$isNull":c(t,"boolean",e);break;default:throw new k(`Unknown operator '${t}' for attribute '${r}' in entity '${s}'`,o)}},oe=(t,e,n,r,s)=>{const i=xi(n),o=n.valueType==="json";if(typeof t=="object"&&t!==null&&!Array.isArray(t)){if(o)return;const c=t;for(const[u,l]of Object.entries(c))Ui(u,l,i,e,r,n,`${s}.${u}`)}else if(!Mn(t,i,o))throw new k(`Invalid value for attribute '${e}' in entity '${r}'. Expected ${i}, but received: ${typeof t}`,s)},Li=(t,e,n,r,s)=>{const i=t.split(".");if(i.length<2)throw new k(`Invalid dot notation path '${t}'. Must contain at least one dot.`,s);let o=n;for(let l=0;l<i.length-1;l++){const f=i[l],d=r.entities[o];if(!d)throw new k(`Entity '${o}' does not exist in schema while traversing dot notation path '${t}'.`,s);const h=d.links[f];if(!h){const p=Object.keys(d.links);throw new k(`Link '${f}' does not exist on entity '${o}' in dot notation path '${t}'. Available links: ${p.length>0?p.join(", "):"none"}`,s)}o=h.entityName}const a=i[i.length-1],c=r.entities[o];if(!c)throw new k(`Target entity '${o}' does not exist in schema for dot notation path '${t}'.`,s);if(a==="id"){if(typeof e=="string"&&!re(e))throw new k(`Invalid value for id field in entity '${o}'. Expected a UUID, but received: ${e}`,s);oe(e,t,new D("string",!1,!0),n,s);return}const u=c.attrs[a];if(Object.keys(c.links).includes(a)){if(typeof e=="string"&&!re(e))throw new k(`Invalid value for link '${a}' in entity '${o}'. Expected a UUID, but received: ${e}`,s);oe(e,t,new D("string",!1,!0),n,s);return}if(!u){const l=Object.keys(c.attrs);throw new k(`Attribute '${a}' does not exist on entity '${o}' in dot notation path '${t}'. Available attributes: ${l.length>0?l.join(", ")+", id":"id"}`,s)}oe(e,t,u,n,s)},Pn=(t,e,n,r)=>{for(const[s,i]of Object.entries(t)){if(s==="or"||s==="and"){if(Array.isArray(i))for(const u of i)typeof u=="object"&&u!==null&&Pn(u,e,n,`${r}.${s}[${u}]`);continue}if(s==="id"){oe(i,"id",new D("string",!1,!0),e,`${r}.id`);continue}if(s.includes(".")){Li(s,i,e,n,`${r}.${s}`);continue}const o=n.entities[e];if(!o)continue;const a=o.attrs[s],c=o.links[s];if(!a&&!c){const u=Object.keys(o.attrs),l=Object.keys(o.links);throw new k(`Attribute or link '${s}' does not exist on entity '${e}'. Available attributes: ${u.length>0?u.join(", "):"none"}. Available links: ${l.length>0?l.join(", "):"none"}`,`${r}.${s}`)}if(a)oe(i,s,a,e,`${r}.${s}`);else if(c){if(typeof i=="string"&&!re(i))throw new k(`Invalid value for link '${s}' in entity '${e}'. Expected a UUID, but received: ${i}`,`${r}.${s}`);const u=new D("string",!1,!0);oe(i,s,u,e,`${r}.${s}`)}}},Fi=(t,e,n,r,s=0)=>{for(const o of Object.keys(t))if(!In.includes(o))throw new k(`Invalid query parameter '${o}' in $ object. Valid parameters are: ${In.join(", ")}. Found: ${o}`,r);const i=["offset","before","after","first","last"];for(const o of i)if(t[o]!==void 0&&s>0)throw new k(`'${o}' can only be used on top-level namespaces. It cannot be used in nested queries.`,r);if(t.where&&n){if(typeof t.where!="object"||t.where===null)throw new k(`'where' clause must be an object in entity '${e}', but received: ${typeof t.where}`,r?`${r}.where`:void 0);Pn(t.where,e,n,r?`${r}.where`:"where")}},jn=(t,e,n,r,s=0)=>{var i;if(!t||typeof t!="object")throw new k(`Query part for entity '${e}' must be an object, but received: ${typeof t}`,r);for(const o of Object.keys(t))if(o!=="$"){if(n&&!(o in n.entities[e].links)){const c=Object.keys(n.entities[e].links);throw new k(`Link '${o}' does not exist on entity '${e}'. Available links: ${c.length>0?c.join(", "):"none"}`,`${r}.${o}`)}const a=t[o];if(typeof a=="object"&&a!==null){const c=(i=n==null?void 0:n.entities[e].links[o])==null?void 0:i.entityName;c&&jn(a,c,n,`${r}.${o}`,s+1)}}else{const a=t[o];if(typeof a!="object"||a===null)throw new k(`Query parameter '$' must be an object in entity '${e}', but received: ${typeof a}`,`${r}.$`);Fi(a,e,n,`${r}.$`,s)}},bt=(t,e)=>{if(typeof t!="object"||t===null)throw new k(`Query must be an object, but received: ${typeof t}${t===null?" (null)":""}`);if(Array.isArray(t))throw new k(`Query must be an object, but received: ${typeof t}`);const n=t;for(const r of Object.keys(n)){if(Array.isArray(t[r]))throw new k(`Query keys must be strings, but found key of type: ${typeof r}`,r);if(typeof r!="string")throw new k(`Query keys must be strings, but found key of type: ${typeof r}`,r);if(r!=="$$ruleParams"){if(e&&!e.entities[r]){const s=Object.keys(e.entities);throw new k(`Entity '${r}' does not exist in schema. Available entities: ${s.length>0?s.join(", "):"none"}`,r)}jn(n[r],r,e,r,0)}}},$n=t=>typeof t!="string"?!1:Ie(t)?!0:re(t);class N extends Error{constructor(e){super(e),this.name="TransactionValidationError"}}const Dn=t=>t.length>0?t.join(", "):"none",Ni=(t,e)=>new N(`Entity '${t}' does not exist in schema. Available entities: ${Dn(e)}`),_t={string:t=>typeof t=="string",number:t=>typeof t=="number"&&!isNaN(t),boolean:t=>typeof t=="boolean",date:t=>t instanceof Date||typeof t=="string"||typeof t=="number",json:()=>!0},Ki=(t,e)=>{var n;return t==null?!0:((n=_t[e.valueType])==null?void 0:n.call(_t,t))??!1},Rn=(t,e)=>{const n=e.entities[t];if(!n)throw Ni(t,Object.keys(e.entities));return n},gt=(t,e,n)=>{const r=Rn(t,n);if(typeof e!="object"||e===null)throw new N(`Arguments for data operation on entity '${t}' must be an object, but received: ${typeof e}`);for(const[s,i]of Object.entries(e)){if(s==="id")continue;const o=r.attrs[s];if(o&&!Ki(i,o))throw new N(`Invalid value for attribute '${s}' in entity '${t}'. Expected ${o.valueType}, but received: ${typeof i}`)}},xn=(t,e,n)=>{const r=Rn(t,n);if(typeof e!="object"||e===null)throw new N(`Arguments for link operation on entity '${t}' must be an object, but received: ${typeof e}`);for(const[s,i]of Object.entries(e)){if(!r.links[s]){const a=Object.keys(r.links);throw new N(`Link '${s}' does not exist on entity '${t}'. Available links: ${Dn(a)}`)}if(i!=null){if(Array.isArray(i)){for(const a of i)if(!$n(a))throw new N(`Invalid entity ID in link '${s}' for entity '${t}'. Expected a UUID or a lookup, but received: ${a}`)}else if(!$n(i))throw new N(`Invalid UUID in link '${s}' for entity '${t}'. Expected a UUID, but received: ${i}`)}}},qi={create:gt,update:gt,merge:gt,link:xn,unlink:xn,delete:()=>{}},zi=(t,e)=>{if(!e)return;const[n,r,s,i]=t;if(!Array.isArray(s)&&!re(s))throw new N(`Invalid id for entity '${r}'. Expected a UUID, but received: ${s}`);if(typeof r!="string")throw new N(`Entity name must be a string, but received: ${typeof r}`);const o=qi[n];o&&i!==void 0&&o(r,i,e)},Un=(t,e)=>{const n=Array.isArray(t)?t:[t];for(const r of n){if(!r||typeof r!="object")throw new N(`Transaction chunk must be an object, but received: ${typeof r}`);if(!Array.isArray(r.__ops))throw new N(`Transaction chunk must have __ops array, but received: ${typeof r.__ops}`);for(const s of r.__ops){if(!Array.isArray(s))throw new N(`Transaction operation must be an array, but received: ${typeof s}`);zi(s,e)}}};let Ln=0;class Fn{constructor(e){this.type="ws",this.id=`${this.type}_${Ln++}`,this.conn=new WebSocket(e),this.conn.onopen=n=>{this.onopen&&this.onopen({target:this})},this.conn.onmessage=n=>{this.onmessage&&this.onmessage({target:this,message:JSON.parse(n.data.toString())})},this.conn.onclose=n=>{this.onclose&&this.onclose({target:this})},this.conn.onerror=n=>{this.onerror&&this.onerror({target:this})}}close(){this.conn.close()}isOpen(){return this.conn.readyState===(WebSocket.OPEN??1)}isConnecting(){return this.conn.readyState===(WebSocket.CONNECTING??0)}send(e){return this.conn.send(JSON.stringify(e))}}class Vi{constructor(e,n){this.type="sse",this.initParams=null,this.sendQueue=[],this.closeFired=!1,this.sseInitTimeout=void 0,this.id=`${this.type}_${Ln++}`,this.url=n,this.ES=e,this.conn=new e(n),this.sseInitTimeout=setTimeout(()=>{this.initParams||this.handleError()},1e4),this.conn.onmessage=r=>{const s=JSON.parse(r.data);if(Array.isArray(s))for(const i of s)this.handleMessage(i);else this.handleMessage(s)},this.conn.onerror=r=>{this.handleError()}}handleMessage(e){if(e.op==="sse-init"){this.initParams={machineId:e["machine-id"],sessionId:e["session-id"],sseToken:e["sse-token"]},this.onopen&&this.onopen({target:this}),clearTimeout(this.sseInitTimeout);return}this.onmessage&&this.onmessage({target:this,message:e})}handleError(){try{this.onerror&&this.onerror({target:this})}finally{this.handleClose()}}handleClose(){this.conn.close(),this.onclose&&!this.closeFired&&(this.closeFired=!0,this.onclose({target:this}))}async postMessages(e){var n,r,s;try{(await fetch(this.url,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({machine_id:(n=this.initParams)==null?void 0:n.machineId,session_id:(r=this.initParams)==null?void 0:r.sessionId,sse_token:(s=this.initParams)==null?void 0:s.sseToken,messages:e})})).ok||this.handleError()}catch{this.handleError()}}async flushQueue(){if(this.sendPromise||!this.sendQueue.length)return;const e=this.sendQueue;this.sendQueue=[];const n=this.postMessages(e);this.sendPromise=n,n.then(()=>{this.sendPromise=null,this.flushQueue()})}send(e){if(!this.isOpen()||!this.initParams)throw this.isConnecting()?new Error("Failed to execute 'send' on 'EventSource': Still in CONNECTING state."):this.conn.readyState===this.ES.CLOSED?new Error("EventSource is already in CLOSING or CLOSED state."):new Error("EventSource is in invalid state.");this.sendQueue.push(e),this.flushQueue()}isOpen(){return this.conn.readyState===this.ES.OPEN&&this.initParams!==null}isConnecting(){return this.conn.readyState===this.ES.CONNECTING||this.conn.readyState===this.ES.OPEN&&this.initParams===null}close(){this.handleClose()}}function Wi(t,e){const n=t.values;if(n)for(const r of n.entities||[])r.store.useDateObjects=e,r.store.attrs=n.attrs,r.store=Vt(r.store);return t}function Qi(t,e){var n,r;if((n=e.values)!=null&&n.entities){const s=[];for(const i of(r=e.values)==null?void 0:r.entities){const o=zt(i.store);delete o.attrs,s.push({...i,store:o})}return{...e,values:{...e.values,entities:s}}}else return e}function Gi(t,e,n){var i,o;const r=(i=e==null?void 0:e.state)==null?void 0:i.txId,s=(o=n==null?void 0:n.state)==null?void 0:o.txId;return r&&(!s||r>s)?e:s&&(!r||s>r)?n:e||n}function wt(t,e){return fn({store:e,pageInfo:null,aggregate:null},t.query).data[t.table][0]}function Nn(t,e,n){var i;const r=(i=B(e,t.table,"id"))==null?void 0:i.id;if(!r)return-1;const s=ne(e.eav,[n,r,n]);return s?s[3]:-1}function Kn(t,e){for(const{action:n,triple:r}of e)switch(n){case"added":Gt(t,r);break;case"removed":Wt(t,r);break}}function Bi(t,e){var r,s;const n={};for(const{action:i,triple:o}of e){const[a,c,u]=o,l=(s=(r=t.attrs[c])==null?void 0:r["forward-identity"])==null?void 0:s[2];if(!l)continue;const f=n[a]??{};n[a]=f;const d=f[l]??{};switch(f[l]=d,i){case"added":d.newValue=u;break;case"removed":d.oldValue===void 0&&(d.oldValue=u);break}}for(const i of Object.keys(n)){const{oldValue:o,newValue:a}=n[i];o===a&&delete n[i]}return n}function $e(t,e){return{[t.table]:e.map(n=>n.entity)}}function Hi(t,e){var r;if(t.orderFieldType)return t.orderFieldType;const n=t.orderField==="serverCreatedAt"?"number":(r=B(e([]),t.table,t.orderField))==null?void 0:r["checked-data-type"];return t.orderFieldType=n,n}function Ji(t,e,n){const r=e;if(t.orderField==="serverCreatedAt"){n.sort(t.orderDirection==="asc"?function(o,a){return ye(o.entity.id,o.serverCreatedAt,a.entity.id,a.serverCreatedAt,r)}:function(o,a){return ye(a.entity.id,a.serverCreatedAt,o.entity.id,o.serverCreatedAt,r)});return}const s=t.orderField;n.sort(t.orderDirection==="asc"?function(o,a){return ye(o.entity.id,o.entity[s],a.entity.id,a.entity[s],r)}:function(o,a){return ye(a.entity.id,a.entity[s],o.entity.id,o.entity[s],r)})}var qn=(t=>(t.InitialSyncBatch="InitialSyncBatch",t.InitialSyncComplete="InitialSyncComplete",t.LoadFromStorage="LoadFromStorage",t.SyncTransaction="SyncTransaction",t.Error="Error",t))(qn||{});class Yi{constructor(e,n,r,s,i){this.callbacks={},this.idToHash={},this.trySend=e,this.config=r,this.log=s,this.createStore=i,this.subs=new ft({persister:n,merge:Gi,serialize:Qi,parse:(o,a)=>Wi(a,this.config.useDateObjects),objectSize:o=>{var a;return((a=o.values)==null?void 0:a.entities.length)||0},logger:s,gc:{maxAgeMs:1e3*60*60*24*7*52,maxEntries:1e3,maxSize:1e6}})}beforeUnload(){this.subs.flush()}subscribe(e,n){const r=O(e);return this.callbacks[r]=this.callbacks[r]||[],this.callbacks[r].push(n),this.initSubscription(e,r,n),s=>{this.unsubscribe(r,n,s==null?void 0:s.keepSubscription)}}unsubscribe(e,n,r){const s=(this.callbacks[e]||[]).filter(i=>i!==n);if(this.callbacks[e]=s,!s.length){delete this.callbacks[e];const i=this.subs.currentValue[e];i!=null&&i.state&&this.clearSubscriptionData(i.state.subscriptionId,!!r),r||this.subs.updateInPlace(o=>{delete o[e]})}}sendStart(e){this.trySend(C(),{op:"start-sync",q:e})}sendResync(e,n,r){this.idToHash[n.subscriptionId]=e.hash,this.trySend(n.subscriptionId,{op:"resync-table","subscription-id":n.subscriptionId,"tx-id":r,token:n.token})}sendRemove(e,n){this.trySend(C(),{op:"remove-sync","subscription-id":e.subscriptionId,"keep-subscription":n})}async initSubscription(e,n,r){var u,l,f,d;await this.subs.waitForKeyToLoad(n);const s=this.subs.currentValue[n];if(s&&s.state&&s.state.txId){this.sendResync(s,s.state,s.state.txId),(u=s.values)!=null&&u.entities&&r&&r({type:"LoadFromStorage",data:$e(s,(l=s.values)==null?void 0:l.entities)});return}const i=Object.keys(e)[0],o=((d=(f=e[i])==null?void 0:f.$)==null?void 0:d.order)||{serverCreatedAt:"asc"},[a,c]=Object.entries(o)[0];this.subs.updateInPlace(h=>{h[n]={query:e,hash:n,table:i,orderDirection:c,orderField:a,createdAt:Date.now(),updatedAt:Date.now()}}),this.sendStart(e)}async flushPending(){for(const e of Object.keys(this.callbacks)){await this.subs.waitForKeyToLoad(e);const n=this.subs.currentValue[e];n?await this.initSubscription(n.query,n.hash):this.log.error("Missing sub for hash in flushPending",e)}}onStartSyncOk(e){const n=e["subscription-id"],r=e.q,s=O(r);this.idToHash[n]=s,this.subs.updateInPlace(i=>{const o=i[s];if(!o)return this.log.error("Missing sub for hash",s,"subscription-id",n,"query",r),i;o.state={subscriptionId:n,token:e.token}})}notifyCbs(e,n){for(const r of this.callbacks[e]||[])r(n)}onSyncLoadBatch(e){const n=e["subscription-id"],r=e["join-rows"],s=this.idToHash[n];if(!s){this.log.error("Missing hash for subscription",e);return}const i=[],o=this.subs.currentValue[s];if(!o){this.log.error("Missing sub for hash",s,e);return}const a=o.values??{entities:[],attrs:this.createStore([]).attrs};o.values=a;const c=a.entities;for(const u of r){const l=this.createStore(u);a.attrs=l.attrs;const f=wt(o,l);c.push({store:l,entity:f,serverCreatedAt:Nn(o,l,f.id)}),i.push(f)}this.subs.updateInPlace(u=>{u[s]=o,u[s].updatedAt=Date.now()}),o.values&&this.notifyCbs(s,{type:"InitialSyncBatch",data:$e(o,o.values.entities),batch:i})}onSyncInitFinish(e){var i;const n=e["subscription-id"],r=this.idToHash[n];if(!r){this.log.error("Missing hash for subscription",e);return}this.subs.updateInPlace(o=>{const a=o[r];if(!a){this.log.error("Missing sub for hash",r,e);return}const c=a.state;if(!c)return this.log.error("Sub never set init, missing result",a,e),o;c.txId=e["tx-id"],a.updatedAt=Date.now()});const s=this.subs.currentValue[r];s&&this.notifyCbs(r,{type:"InitialSyncComplete",data:$e(s,((i=s.values)==null?void 0:i.entities)||[])})}onSyncUpdateTriples(e){var o;const n=e["subscription-id"],r=this.idToHash[n];if(!r){this.log.error("Missing hash for subscription",e);return}const s=this.subs.currentValue[r];if(!s){this.log.error("Missing sub for hash",r,e);return}const i=s.state;if(!i){this.log.error("Missing state for sub",s,e);return}for(const a of e.txes){if(i.txId&&i.txId>=a["tx-id"])continue;i.txId=a["tx-id"];const c=[],u={};for(const _ of a.changes){const y=u[_.triple[0]]??[];u[_.triple[0]]=y,y.push(_)}const l=s.values??{entities:[],attrs:this.createStore([]).attrs},f=l.entities;s.values=l;const d=[];e:for(const[_,y]of Object.entries(u))for(let g=0;g<f.length;g++){const T=f[g];if(Dr(T.store,_)){Kn(T.store,y);const E=wt(s,T.store),m=Bi(T.store,y)[_];E?(d.push({oldEntity:T.entity,newEntity:E,changedFields:m||{}}),T.entity=E):c.push(g),delete u[_];continue e}}const h=[];for(const[_,y]of Object.entries(u)){const g=this.createStore([]);l.attrs=g.attrs,Kn(g,y);const T=wt(s,g);if(!T){this.log.error("No entity found after applying change",{sub:s,changes:y,store:g});continue}f.push({store:g,entity:T,serverCreatedAt:Nn(s,g,T.id)}),h.push(T)}const p=[];for(const _ of c.sort().reverse())p.push(f[_].entity),f.splice(_,1);const b=Hi(s,this.createStore);Ji(s,b,f),this.notifyCbs(r,{type:"SyncTransaction",data:$e(s,(o=s.values)==null?void 0:o.entities),added:h,removed:p,updated:d})}this.subs.updateInPlace(a=>{a[r]=s,a[r].updatedAt=Date.now()})}clearSubscriptionData(e,n){const r=this.idToHash[e];if(r){delete this.idToHash[e];const s=this.subs.currentValue[r];if(s.state&&this.sendRemove(s.state,n),n?this.subs.unloadKey(r):this.subs.updateInPlace(i=>{delete i[r]}),s)return s}}onStartSyncError(e){const n=O(e["original-event"].q),r={message:e.message||"Uh-oh, something went wrong. Ping Joe & Stopa.",status:e.status,type:e.type,hint:e.hint},s=Object.keys(e["original-event"].q)[0];this.notifyCbs(n,{type:"Error",data:{[s]:[]},error:r})}onResyncError(e){const n=e["original-event"]["subscription-id"],r=this.clearSubscriptionData(n,!1);r&&this.initSubscription(r.query,r.hash)}}const G={CONNECTING:"connecting",OPENED:"opened",AUTHENTICATED:"authenticated",CLOSED:"closed",ERRORED:"errored"},Zi=3e4,Xi=3e4,eo=200,to={apiURI:"https://api.instantdb.com",websocketURI:"wss://api.instantdb.com/runtime/session"},Tt="_instant_oauth_redirect",ge="currentUser";function no({transportType:t,appId:e,apiURI:n,wsURI:r,EventSourceImpl:s}){if(!s)return new Fn(`${r}?app_id=${e}`);switch(t){case"ws":return new Fn(`${r}?app_id=${e}`);case"sse":return new Vi(s,`${n}/runtime/sse?app_id=${e}`);default:throw new Error("Unknown transport type "+t)}}function ro(){return typeof window<"u"||typeof chrome<"u"}const zn={"set-presence":!0,"set-presence-ok":!0,"refresh-presence":!0,"patch-presence":!0};function so(t,e){var r;const n=typeof t=="string"?JSON.parse(t):t;if((r=n==null?void 0:n.result)!=null&&r.store){const s=n.result.store;n.result.store=Vt({...s,useDateObjects:e})}return n}function io(t,e){var r;const n={...e};return(r=e.result)!=null&&r.store&&(n.result={...e.result,store:zt(e.result.store)}),n}function oo(t,e){switch(t){case"pendingMutations":return new Map(typeof e=="string"?JSON.parse(e):e);default:return e}}function ao(t,e){switch(t){case"pendingMutations":return[...e.entries()];default:return e}}function co(t,e,n){const r=e==null?void 0:e.result,s=n==null?void 0:n.result;return r&&!s&&n&&(n.result=r),n||e}function Vn(t){return[...t].sort((e,n)=>{const[r,s]=e,[i,o]=n,a=s.order||0,c=o.order||0;return a==c?r<i?-1:r>i?1:0:a-c})}class uo{constructor(e,n=dt,r=ht,s,i){w(this,"attrs");w(this,"_isOnline",!0);w(this,"_isShutdown",!1);w(this,"status",G.CONNECTING);w(this,"querySubs");w(this,"kv");w(this,"_syncTable");w(this,"queryCbs",{});w(this,"queryOnceDfds",{});w(this,"authCbs",[]);w(this,"attrsCbs",[]);w(this,"mutationErrorCbs",[]);w(this,"connectionStatusCbs",[]);w(this,"config");w(this,"mutationDeferredStore",new Map);w(this,"_reconnectTimeoutId",null);w(this,"_reconnectTimeoutMs",0);w(this,"_transport");w(this,"_transportType","ws");w(this,"_EventSource");w(this,"_wsOk",null);w(this,"_localIdPromises",{});w(this,"_errorMessage",null);w(this,"_oauthCallbackResponse",null);w(this,"_linkIndex",null);w(this,"_broadcastChannel");w(this,"_rooms",{});w(this,"_roomsPendingLeave",{});w(this,"_presence",{});w(this,"_broadcastQueue",[]);w(this,"_broadcastSubs",{});w(this,"_currentUserCached",{isLoading:!0,error:void 0,user:void 0});w(this,"_beforeUnloadCbs",[]);w(this,"_dataForQueryCache",{});w(this,"_log");w(this,"_pendingTxCleanupTimeout");w(this,"_pendingMutationCleanupThreshold");w(this,"_inFlightMutationEventIds",new Set);w(this,"_onMergeKv",(e,n,r)=>{switch(e){case"pendingMutations":{const s=(n==null?void 0:n.entries())??[],i=(r==null?void 0:r.entries())??[],o=new Map([...s,...i]);return(n?this._rewriteMutationsSorted(this.attrs,n):[]).forEach(([c,u])=>{var l;!((l=r==null?void 0:r.pendingMutations)!=null&&l.has(c))&&!u["tx-id"]&&this._sendMutation(c,u)}),o}default:return r||n}});w(this,"getPreviousResult",e=>{var r;const n=O(e);return(r=this.dataForQuery(n))==null?void 0:r.data});w(this,"notifyOne",e=>{var i;const n=this.queryCbs[e]??[],r=(i=this._dataForQueryCache[e])==null?void 0:i.data,s=this.dataForQuery(e);s!=null&&s.data&&(this._dataForQueryCache[e]=s,!Oe(s.data,r)&&n.forEach(o=>o.cb(s.data)))});w(this,"notifyOneQueryOnce",e=>{var s;const n=this.queryOnceDfds[e]??[],r=(s=this.dataForQuery(e))==null?void 0:s.data;n.forEach(i=>{this._completeQueryOnce(i.q,e,i.dfd),i.dfd.resolve(r)})});w(this,"notifyQueryError",(e,n)=>{(this.queryCbs[e]||[]).forEach(s=>s.cb({error:n}))});w(this,"pushTx",e=>{this.config.disableValidation||Un(e,this.config.schema);try{const n=yi({attrs:this.optimisticAttrs(),schema:this.config.schema,stores:Object.values(this.querySubs.currentValue).map(r=>{var s;return(s=r==null?void 0:r.result)==null?void 0:s.store}),useDateObjects:this.config.useDateObjects},e);return this.pushOps(n)}catch(n){return this.pushOps([],n)}});w(this,"pushOps",(e,n)=>{const r=C(),s=[...this._pendingMutations().values()],i=Math.max(0,...s.map(c=>c.order||0))+1,o={op:"transact","tx-steps":e,created:Date.now(),error:n,order:i};this._updatePendingMutations(c=>{c.set(r,o)});const a=new An;return this.mutationDeferredStore.set(r,a),this._sendMutation(r,o),this.notifyAll(),a.promise});w(this,"_transportOnOpen",e=>{const n=e.target;if(this._transport!==n){this._log.info("[socket][open]",n.id,"skip; this is no longer the current transport");return}this._log.info("[socket][open]",this._transport.id),this._setStatus(G.OPENED),this.getCurrentUser().then(r=>{var s;this._trySend(C(),{op:"init","app-id":this.config.appId,"refresh-token":(s=r.user)==null?void 0:s.refresh_token,versions:this.versions,"__admin-token":this.config.__adminToken})}).catch(r=>{this._log.error("[socket][error]",n.id,r)})});w(this,"_transportOnMessage",e=>{const n=e.target,r=e.message;if(this._transport!==n){this._log.info("[socket][message]",n.id,r,"skip; this is no longer the current transport");return}if(!this._wsOk&&n.type==="ws"&&(this._wsOk=!0),this._transportType="ws",Array.isArray(e.message))for(const s of e.message)this._handleReceive(n.id,s);else this._handleReceive(n.id,e.message)});w(this,"_transportOnError",e=>{const n=e.target;if(this._transport!==n){this._log.info("[socket][error]",n.id,"skip; this is no longer the current transport");return}this._log.error("[socket][error]",n.id,e)});w(this,"_scheduleReconnect",()=>{!this._wsOk&&this._transportType!=="sse"&&(this._transportType="sse",this._reconnectTimeoutMs=0),setTimeout(()=>{if(this._reconnectTimeoutMs=Math.min(this._reconnectTimeoutMs+1e3,1e4),!this._isOnline){this._log.info("[socket][close]",this._transport.id,"we are offline, no need to start socket");return}this._startSocket()},this._reconnectTimeoutMs)});w(this,"_transportOnClose",e=>{const n=e.target;if(this._transport!==n){this._log.info("[socket][close]",n.id,"skip; this is no longer the current transport");return}this._setStatus(G.CLOSED);for(const r of Object.values(this._rooms))r.isConnected=!1;if(this._isShutdown){this._log.info("[socket][close]",n.id,"Reactor has been shut down and will not reconnect");return}this._log.info("[socket][close]",n.id,"schedule reconnect, ms =",this._reconnectTimeoutMs),this._scheduleReconnect()});if(this._EventSource=i,this.config={...to,...e},this.queryCacheLimit=this.config.queryCacheLimit??10,this._pendingTxCleanupTimeout=this.config.pendingTxCleanupTimeout??Xi,this._pendingMutationCleanupThreshold=this.config.pendingMutationCleanupThreshold??eo,this._log=Ri(e.verbose||pt||Sn,()=>this._reactorStats()),this.versions={...s||{},"@instantdb/core":yt},this.config.schema&&(this._linkIndex=Cn(this.config.schema)),!!ro()){if(!e.appId)throw new Error("Instant must be initialized with an appId.");if(!re(e.appId))throw new Error(`Instant must be initialized with a valid appId. \`${e.appId}\` is not a valid uuid.`);typeof BroadcastChannel=="function"&&(this._broadcastChannel=new BroadcastChannel("@instantdb"),this._broadcastChannel.addEventListener("message",async o=>{var a;try{if(((a=o.data)==null?void 0:a.type)==="auth"){const c=await this.getCurrentUser();this.updateUser(c.user)}}catch(c){this._log.error("[error] handle broadcast channel",c)}})),this._initStorage(n),this._syncTable=new Yi(this._trySendAuthed.bind(this),new n(this.config.appId,"syncSubs"),{useDateObjects:this.config.useDateObjects},this._log,o=>Ae(this.attrs,o,this.config.enableCardinalityInference,this._linkIndex,this.config.useDateObjects)),this._oauthCallbackResponse=this._oauthLoginInit(),this.getCurrentUser(),r.getIsOnline().then(o=>{this._isOnline=o,this._startSocket(),r.listen(a=>{a!==this._isOnline&&(this._log.info("[network] online =",a),this._isOnline=a,this._isOnline?this._startSocket():(this._log.info("Changing status from",this.status,"to",G.CLOSED),this._setStatus(G.CLOSED)))})}),typeof addEventListener<"u"&&(this._beforeUnload=this._beforeUnload.bind(this),addEventListener("beforeunload",this._beforeUnload))}}updateSchema(e){this.config={...this.config,schema:e,cardinalityInference:!!e},this._linkIndex=e?Cn(this.config.schema):null}_reactorStats(){return{inFlightMutationCount:this._inFlightMutationEventIds.size,storedMutationCount:this._pendingMutations().size,transportType:this._transportType}}_onQuerySubLoaded(e){this.kv.waitForKeyToLoad("pendingMutations").then(()=>this.notifyOne(e))}_initStorage(e){this.querySubs=new ft({persister:new e(this.config.appId,"querySubs"),merge:co,serialize:io,parse:(n,r)=>so(r,this.config.useDateObjects),objectSize:n=>{var r,s,i;return((i=(s=(r=n.result)==null?void 0:r.store)==null?void 0:s.triples)==null?void 0:i.length)??0},logger:this._log,preloadEntryCount:10,gc:{maxAgeMs:1e3*60*60*24*7*52,maxEntries:1e3,maxSize:1e6}}),this.querySubs.onKeyLoaded=n=>this._onQuerySubLoaded(n),this.kv=new ft({persister:new e(this.config.appId,"kv"),merge:this._onMergeKv,serialize:ao,parse:oo,objectSize:()=>0,logger:this._log,saveThrottleMs:100,idleCallbackMaxWaitMs:100,gc:null}),this.kv.onKeyLoaded=n=>{n==="pendingMutations"&&this.notifyAll()},this.kv.waitForKeyToLoad("pendingMutations"),this.kv.waitForKeyToLoad(ge),this._beforeUnloadCbs.push(()=>{this.kv.flush(),this.querySubs.flush()})}_beforeUnload(){for(const e of this._beforeUnloadCbs)e();this._syncTable.beforeUnload()}_finishTransaction(e,n,r){const s=this.mutationDeferredStore.get(n);this.mutationDeferredStore.delete(n);const i=e!=="error"&&e!=="timeout";if(!s&&!i&&console.error("Mutation failed",{status:e,eventId:n,...r}),!!s)if(i)s.resolve({status:e,eventId:n});else if(r!=null&&r.type){const{status:o,...a}=r;s.reject(new _e({body:a,status:o??0}))}else s.reject(new ie((r==null?void 0:r.message)||"Unknown error",r==null?void 0:r.hint))}_setStatus(e,n){this.status=e,this._errorMessage=n,this.notifyConnectionStatusSubs(e)}_flushEnqueuedRoomData(e){var s,i;const n=(i=(s=this._presence[e])==null?void 0:s.result)==null?void 0:i.user,r=this._broadcastQueue[e];if(this._broadcastQueue[e]=[],n&&this._trySetPresence(e,n),r)for(const o of r){const{topic:a,roomType:c,data:u}=o;this._tryBroadcast(e,c,a,u)}}_handleReceive(e,n){var s,i,o,a,c,u;const r=!!this.config.schema&&("cardinalityInference"in this.config?!!this.config.cardinalityInference:!0);switch(zn[n.op]||this._log.info("[receive]",e,n.op,n),n.op){case"init-ok":{this._setStatus(G.AUTHENTICATED),this._reconnectTimeoutMs=0,this._setAttrs(n.attrs),this._flushPendingMessages(),this._sessionId=n["session-id"];for(const d of Object.keys(this._rooms)){const h=(i=(s=this._presence[d])==null?void 0:s.result)==null?void 0:i.user;this._tryJoinRoom(d,h)}break}case"add-query-exists":{this.notifyOneQueryOnce(O(n.q));break}case"add-query-ok":{const{q:d,result:h}=n,p=O(d);if(!this._hasQueryListeners()&&!this.querySubs.currentValue[p])break;const b=(a=(o=h==null?void 0:h[0])==null?void 0:o.data)==null?void 0:a["page-info"],_=(u=(c=h==null?void 0:h[0])==null?void 0:c.data)==null?void 0:u.aggregate,y=En(h),g=Ae(this.attrs,y,r,this._linkIndex,this.config.useDateObjects);this.querySubs.updateInPlace(T=>{if(!T[p]){this._log.info("Missing value in querySubs",{hash:p,q:d});return}T[p].result={store:g,pageInfo:b,aggregate:_,processedTxId:n["processed-tx-id"]}}),this._cleanupPendingMutationsQueries(),this.notifyOne(p),this.notifyOneQueryOnce(p),this._cleanupPendingMutationsTimeout();break}case"start-sync-ok":{this._syncTable.onStartSyncOk(n);break}case"sync-load-batch":{this._syncTable.onSyncLoadBatch(n);break}case"sync-init-finish":{this._syncTable.onSyncInitFinish(n);break}case"sync-update-triples":{this._syncTable.onSyncUpdateTriples(n);break}case"refresh-ok":{const{computations:d,attrs:h}=n,p=n["processed-tx-id"];h&&this._setAttrs(h),this._cleanupPendingMutationsTimeout();const b=this._rewriteMutations(this.attrs,this._pendingMutations(),p);b!==this._pendingMutations()&&this.kv.updateInPlace(g=>{g.pendingMutations=b});const _=Vn(b.entries()),y=d.map(g=>{var Zn,Xn,er,tr;const T=g["instaql-query"],E=g["instaql-result"],m=O(T),P=En(E),j=Ae(this.attrs,P,r,this._linkIndex,this.config.useDateObjects),X=this._applyOptimisticUpdates(j,_,p),vt=(Xn=(Zn=E==null?void 0:E[0])==null?void 0:Zn.data)==null?void 0:Xn["page-info"],Ro=(tr=(er=E==null?void 0:E[0])==null?void 0:er.data)==null?void 0:tr.aggregate;return{q:T,hash:m,store:X,pageInfo:vt,aggregate:Ro}});y.forEach(({hash:g,q:T,store:E,pageInfo:m,aggregate:P})=>{this.querySubs.updateInPlace(j=>{if(!j[g]){this._log.error("Missing value in querySubs",{hash:g,q:T});return}j[g].result={store:E,pageInfo:m,aggregate:P,processedTxId:p}})}),this._cleanupPendingMutationsQueries(),y.forEach(({hash:g})=>{this.notifyOne(g)});break}case"transact-ok":{const{"client-event-id":d,"tx-id":h}=n;this._inFlightMutationEventIds.delete(d);const b=this._rewriteMutations(this.attrs,this._pendingMutations()).get(d);if(!b)break;this._updatePendingMutations(y=>{y.set(d,{...y.get(d),"tx-id":h,confirmed:Date.now()})});const _=b["tx-steps"].filter(([y,...g])=>y==="add-attr").map(([y,g])=>g).concat(Object.values(this.attrs));this._setAttrs(_),this._finishTransaction("synced",d),this._cleanupPendingMutationsTimeout();break}case"patch-presence":{const d=n["room-id"];this._trySetRoomConnected(d,!0),this._patchPresencePeers(d,n.edits),this._notifyPresenceSubs(d);break}case"refresh-presence":{const d=n["room-id"];this._trySetRoomConnected(d,!0),this._setPresencePeers(d,n.data),this._notifyPresenceSubs(d);break}case"server-broadcast":{const d=n["room-id"],h=n.topic;this._trySetRoomConnected(d,!0),this._notifyBroadcastSubs(d,h,n);break}case"join-room-ok":{const d=n["room-id"];if(!this._rooms[d]){this._roomsPendingLeave[d]&&(this._tryLeaveRoom(d),delete this._roomsPendingLeave[d]);break}this._trySetRoomConnected(d,!0),this._flushEnqueuedRoomData(d);break}case"leave-room-ok":{const d=n["room-id"];this._trySetRoomConnected(d,!1);break}case"join-room-error":const l=n["room-id"],f=this._rooms[l];f&&(f.error=n.error),this._notifyPresenceSubs(l);break;case"error":this._handleReceiveError(n);break;default:this._log.info("Uknown op",n.op,n);break}}_pendingMutations(){return this.kv.currentValue.pendingMutations??new Map}_updatePendingMutations(e){this.kv.updateInPlace(n=>{const r=n.pendingMutations??new Map;n.pendingMutations=r,e(r)})}_handleMutationError(e,n,r){const s=this._pendingMutations().get(n);if(s&&(e!=="timeout"||!s["tx-id"])){this._updatePendingMutations(o=>(o.delete(n),o)),this._inFlightMutationEventIds.delete(n);const i={message:r.message,hint:r.hint};this.notifyAll(),this.notifyAttrsSubs(),this.notifyMutationErrorSubs(i),this._finishTransaction(e,n,r)}}_handleReceiveError(e){var a,c,u,l,f,d,h;console.log("error",e);const n=e["client-event-id"];this._inFlightMutationEventIds.delete(n);const r=this._pendingMutations().get(n),s={message:e.message||"Uh-oh, something went wrong. Ping Joe & Stopa."};if(e.hint&&(s.hint=e.hint),r){this._handleMutationError("error",n,e);return}if((a=e["original-event"])!=null&&a.hasOwnProperty("q")&&((c=e["original-event"])==null?void 0:c.op)==="add-query"){const p=(u=e["original-event"])==null?void 0:u.q,b=O(p);this.notifyQueryError(O(p),s),this.notifyQueryOnceError(p,b,n,s);return}if(((l=e["original-event"])==null?void 0:l.op)==="init"){if(e.type==="record-not-found"&&((f=e.hint)==null?void 0:f["record-type"])==="app-user"){this.changeCurrentUser(null);return}this._setStatus(G.ERRORED,s),this.notifyAll();return}if(((d=e["original-event"])==null?void 0:d.op)==="resync-table"){this._syncTable.onResyncError(e);return}if(((h=e["original-event"])==null?void 0:h.op)==="start-sync"){this._syncTable.onStartSyncError(e);return}const o={...e};delete o.message,delete o.hint,console.error(e.message,o),e.hint&&console.error(`This error comes with some debugging information. Here it is:
2
- `,e.hint)}notifyQueryOnceError(e,n,r,s){var o;const i=(o=this.queryOnceDfds[n])==null?void 0:o.find(a=>a.eventId===r);i&&(i.dfd.reject(s),this._completeQueryOnce(e,n,i.dfd))}_setAttrs(e){this.attrs=e.reduce((n,r)=>(n[r.id]=r,n),{}),this.notifyAttrsSubs()}_startQuerySub(e,n){const r=C();return this.querySubs.updateInPlace(s=>{s[n]=s[n]||{q:e,result:null,eventId:r},s[n].lastAccessed=Date.now()}),this._trySendAuthed(r,{op:"add-query",q:e}),r}subscribeTable(e,n){return this._syncTable.subscribe(e,n)}subscribeQuery(e,n,r){this.config.disableValidation||bt(e,this.config.schema),r&&"ruleParams"in r&&(e={$$ruleParams:r.ruleParams,...e});const s=O(e),i=this.getPreviousResult(e);return i&&n(i),this.queryCbs[s]=this.queryCbs[s]??[],this.queryCbs[s].push({q:e,cb:n}),this._startQuerySub(e,s),()=>{this._unsubQuery(e,s,n)}}queryOnce(e,n){this.config.disableValidation||bt(e,this.config.schema),n&&"ruleParams"in n&&(e={$$ruleParams:n.ruleParams,...e});const r=new An;if(!this._isOnline)return r.reject(new Error("We can't run `queryOnce`, because the device is offline.")),r.promise;if(!this.querySubs)return r.reject(new Error("We can't run `queryOnce` on the backend. Use adminAPI.query instead: https://www.instantdb.com/docs/backend#query")),r.promise;const s=O(e),i=this._startQuerySub(e,s);return this.queryOnceDfds[s]=this.queryOnceDfds[s]??[],this.queryOnceDfds[s].push({q:e,dfd:r,eventId:i}),setTimeout(()=>r.reject(new Error("Query timed out")),Zi),r.promise}_completeQueryOnce(e,n,r){this.queryOnceDfds[n]&&(this.queryOnceDfds[n]=this.queryOnceDfds[n].filter(s=>s.dfd!==r),this._cleanupQuery(e,n))}_unsubQuery(e,n,r){this.queryCbs[n]&&(this.queryCbs[n]=this.queryCbs[n].filter(s=>s.cb!==r),this._cleanupQuery(e,n))}_hasQueryListeners(e){var n,r;return!!((n=this.queryCbs[e])!=null&&n.length||(r=this.queryOnceDfds[e])!=null&&r.length)}_cleanupQuery(e,n){this._hasQueryListeners(n)||(delete this.queryCbs[n],delete this.queryOnceDfds[n],delete this._dataForQueryCache[n],this.querySubs.unloadKey(n),this._trySendAuthed(C(),{op:"remove-query",q:e}))}_rewriteMutations(e,n,r){if(!e)return n;if(!n)return new Map;const s=l=>{const[f,d,h]=l["forward-identity"];return M(e,d,h)},i=l=>{const[f,d,h]=l["forward-identity"];return Z(e,d,h)},o={attrIdMap:{},refSwapAttrIds:new Set};let a=!1;const c=(l,f)=>{const d=[];for(const h of l){const[p]=h;if(p==="add-attr"){const[_,y]=h,g=s(y);if(g&&y.id!==g.id){o.attrIdMap[y.id]=g.id,a=!0;continue}if(y["value-type"]==="ref"){const T=i(y);if(T){o.attrIdMap[y.id]=T.id,o.refSwapAttrIds.add(y.id),a=!0;continue}}}if(r&&f&&r>=f&&p==="add-attr"||p==="update-attr"||p==="delete-attr"){a=!0;continue}const b=a?Ws(o,h):h;d.push(b)}return a?d:l},u=new Map;for(const[l,f]of n.entries())u.set(l,{...f,"tx-steps":c(f["tx-steps"],f["tx-id"])});return a?u:n}_rewriteMutationsSorted(e,n){return Vn(this._rewriteMutations(e,n).entries())}optimisticAttrs(){var o;const e=[...this._pendingMutations().values()].flatMap(a=>a["tx-steps"]),n=new Set(e.filter(([a,c])=>a==="delete-attr").map(([a,c])=>c)),r=[];for(const[a,c]of e)if(a==="add-attr")r.push(c);else if(a==="update-attr"&&c.id&&((o=this.attrs)!=null&&o[c.id])){const u={...this.attrs[c.id],...c};r.push(u)}const s=[...Object.values(this.attrs||{}),...r].filter(a=>!n.has(a.id));return Object.fromEntries(s.map(a=>[a.id,a]))}dataForQuery(e){const n=this._errorMessage;if(n)return{error:n};if(!this.querySubs||!this.kv.currentValue.pendingMutations)return;const r=this.querySubs.version(),s=this.querySubs.currentValue,i=this.kv.version(),o=this._pendingMutations(),{q:a,result:c}=s[e]||{};if(!c)return;const u=this._dataForQueryCache[e];if(u&&r===u.querySubVersion&&i===u.pendingMutationsVersion)return u;const{store:l,pageInfo:f,aggregate:d,processedTxId:h}=c,p=this._rewriteMutationsSorted(l.attrs,o),b=this._applyOptimisticUpdates(l,p,h);return{data:fn({store:b,pageInfo:f,aggregate:d},a),querySubVersion:r,pendingMutationsVersion:i}}_applyOptimisticUpdates(e,n,r){for(const[s,i]of n)(!i["tx-id"]||r&&i["tx-id"]>r)&&(e=Qr(e,i["tx-steps"]));return e}notifyAll(){Object.keys(this.queryCbs).forEach(e=>{this.querySubs.waitForKeyToLoad(e).then(()=>this.notifyOne(e)).catch(()=>this.notifyOne(e))})}loadedNotifyAll(){this.kv.waitForKeyToLoad("pendingMutations").then(()=>this.notifyAll()).catch(()=>this.notifyAll())}shutdown(){var e;this._log.info("[shutdown]",this.config.appId),this._isShutdown=!0,(e=this._transport)==null||e.close()}_sendMutation(e,n){if(n.error){this._handleMutationError("error",e,{message:n.error.message});return}if(this.status!==G.AUTHENTICATED){this._finishTransaction("enqueued",e);return}const r=Math.max(6e3,Math.min(this._inFlightMutationEventIds.size+1,this._pendingMutations().size+1)*6e3);this._isOnline?(this._trySend(e,n),setTimeout(()=>{this._isOnline&&this._handleMutationError("timeout",e,{message:"transaction timed out"})},r)):this._finishTransaction("enqueued",e)}_flushPendingMessages(){Object.keys(this.queryCbs).map(s=>this.querySubs.currentValue[s]).filter(s=>s).forEach(({eventId:s,q:i})=>{this._trySendAuthed(s,{op:"add-query",q:i})}),Object.values(this.queryOnceDfds).flat().forEach(({eventId:s,q:i})=>{this._trySendAuthed(s,{op:"add-query",q:i})}),this._rewriteMutationsSorted(this.attrs,this._pendingMutations()).forEach(([s,i])=>{i["tx-id"]||this._sendMutation(s,i)}),this._syncTable.flushPending()}_cleanupPendingMutationsQueries(){let e=Number.MAX_SAFE_INTEGER;for(const{result:n}of Object.values(this.querySubs.currentValue))n!=null&&n.processedTxId&&(e=Math.min(e,n==null?void 0:n.processedTxId));this._updatePendingMutations(n=>{for(const[r,s]of Array.from(n.entries()))s["tx-id"]&&s["tx-id"]<=e&&n.delete(r)})}_cleanupPendingMutationsTimeout(){if(this._pendingMutations().size<this._pendingMutationCleanupThreshold)return;const e=Date.now();this._updatePendingMutations(n=>{for(const[r,s]of Array.from(n.entries()))s.confirmed&&s.confirmed+this._pendingTxCleanupTimeout<e&&n.delete(r)})}_trySendAuthed(...e){this.status===G.AUTHENTICATED&&this._trySend(...e)}_trySend(e,n,r){if(this._transport.isOpen()){switch(zn[n.op]||this._log.info("[send]",this._transport.id,n.op,n),n.op){case"transact":{this._inFlightMutationEventIds.add(e);break}case"init":this._inFlightMutationEventIds.clear()}this._transport.send({"client-event-id":e,...n})}}_startSocket(){if(this._wsOk=null,this._isShutdown){this._log.info("[socket][start]",this.config.appId,"Reactor has been shut down and will not start a new socket");return}if(this._transport&&this._transport.isConnecting()){this._log.info("[socket][start]",this._transport.id,"maintained as current transport, we were still in a connecting state");return}const e=this._transport;this._transport=no({transportType:this._transportType,appId:this.config.appId,apiURI:this.config.apiURI,wsURI:this.config.websocketURI,EventSourceImpl:this._EventSource}),this._transport.onopen=this._transportOnOpen,this._transport.onmessage=this._transportOnMessage,this._transport.onclose=this._transportOnClose,this._transport.onerror=this._transportOnError,this._log.info("[socket][start]",this._transport.id),e!=null&&e.isOpen()&&(this._log.info("[socket][start]",this._transport.id,"close previous transport id = ",e.id),e.close())}async getLocalId(e){const n=`localToken_${e}`;if(this.kv.currentValue[n])return this.kv.currentValue[n];const r=await this.kv.waitForKeyToLoad(n);if(r)return r;const s=C();return this.kv.updateInPlace(i=>{i[n]||(i[n]=s)}),await this.kv.waitForKeyToLoad(n)}_replaceUrlAfterOAuth(){if(typeof URL>"u")return;const e=new URL(window.location.href);if(e.searchParams.get(Tt)){const n=e.toString();e.searchParams.delete(Tt),e.searchParams.delete("code"),e.searchParams.delete("error");const r=e.pathname+(e.searchParams.size?"?"+e.searchParams:"")+e.hash;if(history.replaceState(history.state,"",r),typeof navigation=="object"&&typeof navigation.addEventListener=="function"&&typeof navigation.removeEventListener=="function"){let s=!1;const i=o=>{var a;s||(s=!0,navigation.removeEventListener("navigate",i),!o.userInitiated&&o.navigationType==="replace"&&((a=o.destination)==null?void 0:a.url)===n&&history.replaceState(history.state,"",r))};navigation.addEventListener("navigate",i)}}}async _oauthLoginInit(){var s,i,o,a;if(typeof window>"u"||typeof window.location>"u"||typeof URLSearchParams>"u")return null;const e=new URLSearchParams(window.location.search);if(!e.get(Tt))return null;const n=e.get("error");if(n)return this._replaceUrlAfterOAuth(),{error:{message:n}};const r=e.get("code");if(!r)return null;this._replaceUrlAfterOAuth();try{const c=await this._getCurrentUser(),u=(c==null?void 0:c.type)==="guest",{user:l}=await mn({apiURI:this.config.apiURI,appId:this.config.appId,code:r,refreshToken:u?c.refresh_token:void 0});return this.setCurrentUser(l),null}catch(c){return((s=c==null?void 0:c.body)==null?void 0:s.type)==="record-not-found"&&((o=(i=c==null?void 0:c.body)==null?void 0:i.hint)==null?void 0:o["record-type"])==="app-oauth-code"&&await this._hasCurrentUser()?null:{error:{message:((a=c==null?void 0:c.body)==null?void 0:a.message)||"Error logging in."}}}}async _waitForOAuthCallbackResponse(){return await this._oauthCallbackResponse}__subscribeMutationErrors(e){return this.mutationErrorCbs.push(e),()=>{this.mutationErrorCbs=this.mutationErrorCbs.filter(n=>n!==e)}}subscribeAuth(e){this.authCbs.push(e);const n=this._currentUserCached;n.isLoading||e(this._currentUserCached);let r=!1;return this.getCurrentUser().then(s=>{r||Oe(s,n)||e(s)}),()=>{r=!0,this.authCbs=this.authCbs.filter(s=>s!==e)}}async getAuth(){const{user:e,error:n}=await this.getCurrentUser();if(n)throw new ie("Could not get current user: "+n.message);return e}subscribeConnectionStatus(e){return this.connectionStatusCbs.push(e),()=>{this.connectionStatusCbs=this.connectionStatusCbs.filter(n=>n!==e)}}subscribeAttrs(e){return this.attrsCbs.push(e),this.attrs&&e(this.attrs),()=>{this.attrsCbs=this.attrsCbs.filter(n=>n!==e)}}notifyAuthSubs(e){this.authCbs.forEach(n=>n(e))}notifyMutationErrorSubs(e){this.mutationErrorCbs.forEach(n=>n(e))}notifyAttrsSubs(){if(!this.attrs)return;const e=this.optimisticAttrs();this.attrsCbs.forEach(n=>n(e))}notifyConnectionStatusSubs(e){this.connectionStatusCbs.forEach(n=>n(e))}async setCurrentUser(e){this.kv.updateInPlace(n=>{n[ge]=e}),await this.kv.waitForKeyToLoad(ge)}getCurrentUserCached(){return this._currentUserCached}async _getCurrentUser(){const e=await this.kv.waitForKeyToLoad(ge);return typeof e=="string"?JSON.parse(e):e}async getCurrentUser(){const e=await this._waitForOAuthCallbackResponse();if(e!=null&&e.error){const n={error:e.error,user:void 0};return this._currentUserCached={isLoading:!1,...n},n}try{const r={user:await this._getCurrentUser(),error:void 0};return this._currentUserCached={isLoading:!1,...r},r}catch(n){return{user:void 0,isLoading:!1,error:{message:(n==null?void 0:n.message)||"Error loading user"}}}}async _hasCurrentUser(){const e=await this.kv.waitForKeyToLoad(ge);return typeof e=="string"?JSON.parse(e)!=null:e!=null}async changeCurrentUser(e){var r;const{user:n}=await this.getCurrentUser();if(!Oe(n,e)){await this.setCurrentUser(e),this.updateUser(e);try{(r=this._broadcastChannel)==null||r.postMessage({type:"auth"})}catch(s){console.error("Error posting message to broadcast channel",s)}}}updateUser(e){const n={error:void 0,user:e};this._currentUserCached={isLoading:!1,...n},this._dataForQueryCache={},this.querySubs.updateInPlace(r=>{Object.keys(r).forEach(s=>{delete r[s].result})}),this._reconnectTimeoutMs=0,this._transport.close(),this._oauthCallbackResponse=null,this.notifyAuthSubs(n)}sendMagicCode({email:e}){return Si({apiURI:this.config.apiURI,appId:this.config.appId,email:e})}async signInWithMagicCode({email:e,code:n}){var o;const r=await this.getCurrentUser(),s=((o=r==null?void 0:r.user)==null?void 0:o.type)==="guest",i=await vi({apiURI:this.config.apiURI,appId:this.config.appId,email:e,code:n,refreshToken:s?r.user.refresh_token:void 0});return await this.changeCurrentUser(i.user),i}async signInWithCustomToken(e){const n=await Oi({apiURI:this.config.apiURI,appId:this.config.appId,refreshToken:e});return await this.changeCurrentUser(n.user),n}async signInAsGuest(){const e=await Ai({apiURI:this.config.apiURI,appId:this.config.appId});return await this.changeCurrentUser(e.user),e}potentiallyInvalidateToken(e,n){var i;const r=(i=e==null?void 0:e.user)==null?void 0:i.refresh_token;if(!r)return;if(n.invalidateToken===!1){this._log.info("[auth-invalidate] skipped invalidateToken");return}Ei({apiURI:this.config.apiURI,appId:this.config.appId,refreshToken:r}).then(()=>{this._log.info("[auth-invalidate] completed invalidateToken")}).catch(o=>{})}async signOut(e){const n=await this.getCurrentUser();this.potentiallyInvalidateToken(n,e),await this.changeCurrentUser(null)}createAuthorizationURL({clientName:e,redirectURL:n}){const{apiURI:r,appId:s}=this.config;return`${r}/runtime/oauth/start?app_id=${s}&client_name=${e}&redirect_uri=${n}`}async exchangeCodeForToken({code:e,codeVerifier:n}){var o;const r=await this.getCurrentUser(),s=((o=r==null?void 0:r.user)==null?void 0:o.type)==="guest",i=await mn({apiURI:this.config.apiURI,appId:this.config.appId,code:e,codeVerifier:n,refreshToken:s?r.user.refresh_token:void 0});return await this.changeCurrentUser(i.user),i}issuerURI(){const{apiURI:e,appId:n}=this.config;return`${e}/runtime/${n}`}async signInWithIdToken({idToken:e,clientName:n,nonce:r}){var a;const s=await this.getCurrentUser(),i=(a=s==null?void 0:s.user)==null?void 0:a.refresh_token,o=await ki({apiURI:this.config.apiURI,appId:this.config.appId,idToken:e,clientName:n,nonce:r,refreshToken:i});return await this.changeCurrentUser(o.user),o}joinRoom(e,n){let r=!1;this._rooms[e]||(r=!0,this._rooms[e]={isConnected:!1,error:void 0}),this._presence[e]=this._presence[e]||{};const s=this._presence[e].result;return n&&!s&&(this._presence[e].result=this._presence[e].result||{},this._presence[e].result.user=n,this._notifyPresenceSubs(e)),r&&this._tryJoinRoom(e,n),()=>{this._cleanupRoom(e)}}_cleanupRoom(e){var n,r,s;if(!((r=(n=this._presence[e])==null?void 0:n.handlers)!=null&&r.length)&&!Object.keys(this._broadcastSubs[e]??{}).length){const i=(s=this._rooms[e])==null?void 0:s.isConnected;delete this._rooms[e],delete this._presence[e],delete this._broadcastSubs[e],i?this._tryLeaveRoom(e):this._roomsPendingLeave[e]=!0}}getPresence(e,n,r={}){const s=this._rooms[n],i=this._presence[n];return!s||!i||!i.result?null:{...$i(i.result,r,this._sessionId),isLoading:!s.isConnected,error:s.error}}publishPresence(e,n,r){const s=this._rooms[n],i=this._presence[n];if(!s||!i)return;i.result=i.result||{};const o={...i.result.user,...r};i.result.user=o,s.isConnected&&(this._trySetPresence(n,o),this._notifyPresenceSubs(n))}_trySetPresence(e,n){this._trySendAuthed(C(),{op:"set-presence","room-id":e,data:n})}_tryJoinRoom(e,n){this._trySendAuthed(C(),{op:"join-room","room-id":e,data:n}),delete this._roomsPendingLeave[e]}_tryLeaveRoom(e){this._trySendAuthed(C(),{op:"leave-room","room-id":e})}_trySetRoomConnected(e,n){const r=this._rooms[e];r&&(r.isConnected=n)}subscribePresence(e,n,r,s){const i=this.joinRoom(n,r.initialPresence||r.initialData),o={...r,roomId:n,cb:s,prev:null};return this._presence[n]=this._presence[n]||{},this._presence[n].handlers=this._presence[n].handlers||[],this._presence[n].handlers.push(o),this._notifyPresenceSub(n,o),()=>{var a,c;this._presence[n].handlers=((c=(a=this._presence[n])==null?void 0:a.handlers)==null?void 0:c.filter(u=>u!==o))??[],i()}}_notifyPresenceSubs(e){var n,r;(r=(n=this._presence[e])==null?void 0:n.handlers)==null||r.forEach(s=>{this._notifyPresenceSub(e,s)})}_notifyPresenceSub(e,n){const r=this.getPresence("",e,n);r&&(n.prev&&!Di(r,n.prev)||(n.prev=r,n.cb(r)))}_patchPresencePeers(e,n){var o,a,c;const r=((a=(o=this._presence[e])==null?void 0:o.result)==null?void 0:a.peers)||{};let s=Object.fromEntries(Object.entries(r).map(([u,l])=>[u,{data:l}]));(c=this._presence[e])==null||c.result;const i=ve(s,u=>{for(let[l,f,d]of n)switch(f){case"+":pr(u,l,d);break;case"r":Lt(u,l,d);break;case"-":Ft(u,l);break}delete u[this._sessionId]});this._setPresencePeers(e,i)}_setPresencePeers(e,n){const r={...n};delete r[this._sessionId];const s=Object.fromEntries(Object.entries(r).map(([i,o])=>[i,o.data]));this._presence=ve(this._presence,i=>{Lt(i,[e,"result","peers"],s)})}publishTopic({roomType:e,roomId:n,topic:r,data:s}){const i=this._rooms[n];if(i){if(!i.isConnected){this._broadcastQueue[n]=this._broadcastQueue[n]??[],this._broadcastQueue[n].push({topic:r,roomType:e,data:s});return}this._tryBroadcast(n,e,r,s)}}_tryBroadcast(e,n,r,s){this._trySendAuthed(C(),{op:"client-broadcast","room-id":e,roomType:n,topic:r,data:s})}subscribeTopic(e,n,r){const s=this.joinRoom(e);return this._broadcastSubs[e]=this._broadcastSubs[e]||{},this._broadcastSubs[e][n]=this._broadcastSubs[e][n]||[],this._broadcastSubs[e][n].push(r),this._presence[e]=this._presence[e]||{},()=>{this._broadcastSubs[e][n]=this._broadcastSubs[e][n].filter(i=>i!==r),this._broadcastSubs[e][n].length||delete this._broadcastSubs[e][n],s()}}_notifyBroadcastSubs(e,n,r){var s,i,o;(o=(i=(s=this._broadcastSubs)==null?void 0:s[e])==null?void 0:i[n])==null||o.forEach(a=>{var l,f,d,h,p,b;const c=(l=r.data)==null?void 0:l.data,u=r.data["peer-id"]===this._sessionId?(d=(f=this._presence[e])==null?void 0:f.result)==null?void 0:d.user:(b=(p=(h=this._presence[e])==null?void 0:h.result)==null?void 0:p.peers)==null?void 0:b[r.data["peer-id"]];return a(c,u)})}async uploadFile(e,n,r){var o;const s=await this.getCurrentUser(),i=(o=s==null?void 0:s.user)==null?void 0:o.refresh_token;return Ci({...r,apiURI:this.config.apiURI,appId:this.config.appId,path:e,file:n,refreshToken:i})}async deleteFile(e){var i;const n=await this.getCurrentUser(),r=(i=n==null?void 0:n.user)==null?void 0:i.refresh_token;return await Ii({apiURI:this.config.apiURI,appId:this.config.appId,path:e,refreshToken:r})}async upload(e,n){var c;const r=await this.getCurrentUser(),s=(c=r==null?void 0:r.user)==null?void 0:c.refresh_token,i=e||n.name,o=await Mi({apiURI:this.config.apiURI,appId:this.config.appId,fileName:i,refreshToken:s});return await Pi(o,n)}async getDownloadUrl(e){var i;const n=await this.getCurrentUser(),r=(i=n==null?void 0:n.user)==null?void 0:i.refresh_token;return await ji({apiURI:this.config.apiURI,appId:this.config.appId,path:e,refreshToken:r})}}function lo(t,e){return new je(Wn(t,e),e,void 0)}function fo(t){return new Pe(t,{})}function ho(){return new D("string",!0,!1)}function po(){return new D("number",!0,!1)}function yo(){return new D("boolean",!0,!1)}function bo(){return new D("date",!0,!1)}function _o(){return new D("json",!0,!1)}function go(){return new D("json",!0,!1)}function Wn(t,e){var s,i,o,a;const n={fwd:{},rev:{}};for(const c of Object.values(e))(s=n.fwd)[i=c.forward.on]||(s[i]={}),(o=n.rev)[a=c.reverse.on]||(o[a]={}),n.fwd[c.forward.on][c.forward.label]={entityName:c.reverse.on,cardinality:c.forward.has},n.rev[c.reverse.on][c.reverse.label]={entityName:c.forward.on,cardinality:c.reverse.has};return Object.fromEntries(Object.entries(t).map(([c,u])=>[c,new Pe(u.attrs,{...n.fwd[c],...n.rev[c]})]))}function wo({entities:t,links:e,rooms:n}){const r=e??{},s=n??{};return new je(Wn(t,r),r,s)}const To={graph:lo,schema:wo,entity:fo,string:ho,number:po,boolean:yo,date:bo,json:_o,any:go};let De;function mo(t,e){De==null||De.dispose();const n=Eo(e),r=Oo(e,a),s=vo(So(t));function i(l){var f;l.source===s.element.contentWindow&&((f=l.data)==null?void 0:f.type)==="close"&&n.isVisible()&&a()}function o(l){const f=l.shiftKey&&l.ctrlKey&&l.key==="0",d=l.key==="Escape"||l.key==="Esc";(f||d&&n.isVisible())&&a()}function a(){n.isVisible()?n.element.style.display="none":(n.element.style.display="block",n.element.contains(s.element)||n.element.appendChild(s.element))}function c(){n.element.remove(),r.element.remove(),removeEventListener("keydown",o),removeEventListener("message",i)}function u(){document.body.appendChild(n.element),document.body.appendChild(r.element),addEventListener("keydown",o),addEventListener("message",i),De={dispose:c}}return u()}function So(t){return`${pt||vn?"http://localhost:3000":"https://instantdb.com"}/_devtool?appId=${t}`}function vo(t){const e=document.createElement("iframe");return e.src=t,e.className="instant-devtool-iframe",Object.assign(e.style,{width:"100%",height:"100%",backgroundColor:"white",border:"none"}),{element:e}}function Oo(t,e){const n=`
1
+ (function(A,v){typeof exports=="object"&&typeof module<"u"?v(exports):typeof define=="function"&&define.amd?define(["exports"],v):(A=typeof globalThis<"u"?globalThis:A||self,v(A.instant={}))})(this,function(A){"use strict";var Fo=Object.defineProperty;var No=(A,v,I)=>v in A?Fo(A,v,{enumerable:!0,configurable:!0,writable:!0,value:I}):A[v]=I;var T=(A,v,I)=>No(A,typeof v!="symbol"?v+"":v,I);function v(n){if(typeof n=="number")return(Math.abs(n*2654435761)>>>0).toString(16);if(typeof n=="boolean")return n?"1":"0";if(n===null)return"null";if(n===void 0)return"undefined";if(typeof n=="string"){let e=2166136261;for(let t=0;t<n.length;t++)e^=n.charCodeAt(t),e+=(e<<1)+(e<<4)+(e<<7)+(e<<8)+(e<<24),e=e>>>0;return e.toString(16)}if(Array.isArray(n)){let e=2166136261;for(let t=0;t<n.length;t++){e^=(t+1)*2654435761;const r=v(n[t]);for(let s=0;s<r.length;s++)e^=r.charCodeAt(s),e*=16777619,e=e>>>0}return e.toString(16)}if(typeof n=="object"){let e=2166136261;const t=Object.keys(n).sort();for(let r=0;r<t.length;r++){const s=t[r],i=v(s);e^=parseInt(i,16),e*=16777619,e=e>>>0;const o=v(n[s]);e^=parseInt(o,16),e*=16777619,e=e>>>0}return e.toString(16)}return v(String(n))}const I={Remove:"remove",Replace:"replace",Add:"add"},Ot=Symbol.for("__MUTATIVE_PROXY_DRAFT__"),er=Symbol("__MUTATIVE_RAW_RETURN_SYMBOL__"),Te=Symbol.iterator,F={mutable:"mutable",immutable:"immutable"},Re={};function ce(n,e){return n instanceof Map?n.has(e):Object.prototype.hasOwnProperty.call(n,e)}function vt(n,e){if(e in n){let t=Reflect.getPrototypeOf(n);for(;t;){const r=Reflect.getOwnPropertyDescriptor(t,e);if(r)return r;t=Reflect.getPrototypeOf(t)}}}function xe(n){return Object.getPrototypeOf(n)===Set.prototype}function Ue(n){return Object.getPrototypeOf(n)===Map.prototype}function N(n){var e;return(e=n.copy)!==null&&e!==void 0?e:n.original}function Y(n){return!!O(n)}function O(n){return typeof n!="object"?null:n==null?void 0:n[Ot]}function Le(n){var e;const t=O(n);return t?(e=t.copy)!==null&&e!==void 0?e:t.original:n}function z(n,e){if(!n||typeof n!="object")return!1;let t;return Object.getPrototypeOf(n)===Object.prototype||Array.isArray(n)||n instanceof Map||n instanceof Set||!!(e!=null&&e.mark)&&((t=e.mark(n,F))===F.immutable||typeof t=="function")}function kt(n,e=[]){if(Object.hasOwnProperty.call(n,"key")){const t=n.parent.copy,r=O(G(t,n.key));if(r!==null&&(r==null?void 0:r.original)!==n.original)return null;const s=n.parent.type===3,i=s?Array.from(n.parent.setMap.keys()).indexOf(n.key):n.key;if(!(s&&t.size>i||ce(t,i)))return null;e.push(i)}if(n.parent)return kt(n.parent,e);e.reverse();try{tr(n.copy,e)}catch{return null}return e}function Z(n){return Array.isArray(n)?1:n instanceof Map?2:n instanceof Set?3:0}function G(n,e){return Z(n)===2?n.get(e):n[e]}function ue(n,e,t){Z(n)===2?n.set(e,t):n[e]=t}function Fe(n,e){const t=O(n);return(t?N(t):n)[e]}function B(n,e){return n===e?n!==0||1/n===1/e:n!==n&&e!==e}function Ne(n){if(n)for(;n.finalities.revoke.length>0;)n.finalities.revoke.pop()()}function X(n,e){return e?n:[""].concat(n).map(t=>{const r=`${t}`;return r.indexOf("/")===-1&&r.indexOf("~")===-1?r:r.replace(/~/g,"~0").replace(/\//g,"~1")}).join("/")}function tr(n,e){for(let t=0;t<e.length-1;t+=1){const r=e[t];if(n=G(Z(n)===3?Array.from(n):n,r),typeof n!="object")throw new Error(`Cannot resolve patch at '${e.join("/")}'.`)}return n}function nr(n){const e=Object.create(Object.getPrototypeOf(n));return Reflect.ownKeys(n).forEach(t=>{let r=Reflect.getOwnPropertyDescriptor(n,t);if(r.enumerable&&r.configurable&&r.writable){e[t]=n[t];return}r.writable||(r.writable=!0,r.configurable=!0),(r.get||r.set)&&(r={configurable:!0,writable:!0,enumerable:r.enumerable,value:n[t]}),Reflect.defineProperty(e,t,r)}),e}const rr=Object.prototype.propertyIsEnumerable;function Et(n,e){let t;if(Array.isArray(n))return Array.prototype.concat.call(n);if(n instanceof Set){if(!xe(n)){const r=Object.getPrototypeOf(n).constructor;return new r(n.values())}return Set.prototype.difference?Set.prototype.difference.call(n,new Set):new Set(n.values())}else if(n instanceof Map){if(!Ue(n)){const r=Object.getPrototypeOf(n).constructor;return new r(n)}return new Map(n)}else if(e!=null&&e.mark&&(t=e.mark(n,F),t!==void 0)&&t!==F.mutable){if(t===F.immutable)return nr(n);if(typeof t=="function"){if(e.enablePatches||e.enableAutoFreeze)throw new Error("You can't use mark and patches or auto freeze together.");return t()}throw new Error(`Unsupported mark result: ${t}`)}else if(typeof n=="object"&&Object.getPrototypeOf(n)===Object.prototype){const r={};return Object.keys(n).forEach(s=>{r[s]=n[s]}),Object.getOwnPropertySymbols(n).forEach(s=>{rr.call(n,s)&&(r[s]=n[s])}),r}else throw new Error("Please check mark() to ensure that it is a stable marker draftable function.")}function D(n){n.copy||(n.copy=Et(n.original,n.options))}function le(n){if(!z(n))return Le(n);if(Array.isArray(n))return n.map(le);if(n instanceof Map){const t=Array.from(n.entries()).map(([r,s])=>[r,le(s)]);if(!Ue(n)){const r=Object.getPrototypeOf(n).constructor;return new r(t)}return new Map(t)}if(n instanceof Set){const t=Array.from(n).map(le);if(!xe(n)){const r=Object.getPrototypeOf(n).constructor;return new r(t)}return new Set(t)}const e=Object.create(Object.getPrototypeOf(n));for(const t in n)e[t]=le(n[t]);return e}function me(n){return Y(n)?le(n):n}function W(n){var e;n.assignedMap=(e=n.assignedMap)!==null&&e!==void 0?e:new Map,n.operated||(n.operated=!0,n.parent&&W(n.parent))}function It(){throw new Error("Cannot modify frozen object")}function te(n,e,t,r,s){{t=t??new WeakMap,r=r??[],s=s??[];const o=t.has(n)?t.get(n):n;if(r.length>0){const a=r.indexOf(o);if(o&&typeof o=="object"&&a!==-1)throw r[0]===o?new Error("Forbids circular reference"):new Error(`Forbids circular reference: ~/${s.slice(0,a).map((c,u)=>{if(typeof c=="symbol")return`[${c.toString()}]`;const l=r[u];return typeof c=="object"&&(l instanceof Map||l instanceof Set)?Array.from(l.keys()).indexOf(c):c}).join("/")}`);r.push(o),s.push(e)}else r.push(o)}if(Object.isFrozen(n)||Y(n)){r.pop(),s.pop();return}switch(Z(n)){case 2:for(const[a,c]of n)te(a,a,t,r,s),te(c,a,t,r,s);n.set=n.clear=n.delete=It;break;case 3:for(const a of n)te(a,a,t,r,s);n.add=n.clear=n.delete=It;break;case 1:Object.freeze(n);let o=0;for(const a of n)te(a,o,t,r,s),o+=1;break;default:Object.freeze(n),Object.keys(n).forEach(a=>{const c=n[a];te(c,a,t,r,s)})}r.pop(),s.pop()}function qe(n,e){const t=Z(n);if(t===0)Reflect.ownKeys(n).forEach(r=>{e(r,n[r],n)});else if(t===1){let r=0;for(const s of n)e(r,s,n),r+=1}else n.forEach((r,s)=>e(s,r,n))}function Ct(n,e,t){if(Y(n)||!z(n,t)||e.has(n)||Object.isFrozen(n))return;const r=n instanceof Set,s=r?new Map:void 0;if(e.add(n),qe(n,(i,o)=>{var a;if(Y(o)){const c=O(o);D(c);const u=!((a=c.assignedMap)===null||a===void 0)&&a.size||c.operated?c.copy:c.original;ue(r?s:n,i,u)}else Ct(o,e,t)}),s){const i=n,o=Array.from(i);i.clear(),o.forEach(a=>{i.add(s.has(a)?s.get(a):a)})}}function sr(n,e){const t=n.type===3?n.setMap:n.copy;n.finalities.revoke.length>1&&n.assignedMap.get(e)&&t&&Ct(G(t,e),n.finalities.handledSet,n.options)}function Ke(n){n.type===3&&n.copy&&(n.copy.clear(),n.setMap.forEach(e=>{n.copy.add(Le(e))}))}function ze(n,e,t,r){if(n.operated&&n.assignedMap&&n.assignedMap.size>0&&!n.finalized){if(t&&r){const i=kt(n);i&&e(n,i,t,r)}n.finalized=!0}}function Ve(n,e,t,r){const s=O(t);s&&(s.callbacks||(s.callbacks=[]),s.callbacks.push((i,o)=>{var a;const c=n.type===3?n.setMap:n.copy;if(B(G(c,e),t)){let u=s.original;s.copy&&(u=s.copy),Ke(n),ze(n,r,i,o),n.options.enableAutoFreeze&&(n.options.updatedValues=(a=n.options.updatedValues)!==null&&a!==void 0?a:new WeakMap,n.options.updatedValues.set(u,s.original)),ue(c,e,u)}}),n.options.enableAutoFreeze&&s.finalities!==n.finalities&&(n.options.enableAutoFreeze=!1)),z(t,n.options)&&n.finalities.draft.push(()=>{const i=n.type===3?n.setMap:n.copy;B(G(i,e),t)&&sr(n,e)})}function ir(n,e,t,r,s){let{original:i,assignedMap:o,options:a}=n,c=n.copy;c.length<i.length&&([i,c]=[c,i],[t,r]=[r,t]);for(let u=0;u<i.length;u+=1)if(o.get(u.toString())&&c[u]!==i[u]){const l=e.concat([u]),d=X(l,s);t.push({op:I.Replace,path:d,value:me(c[u])}),r.push({op:I.Replace,path:d,value:me(i[u])})}for(let u=i.length;u<c.length;u+=1){const l=e.concat([u]),d=X(l,s);t.push({op:I.Add,path:d,value:me(c[u])})}if(i.length<c.length){const{arrayLengthAssignment:u=!0}=a.enablePatches;if(u){const l=e.concat(["length"]),d=X(l,s);r.push({op:I.Replace,path:d,value:i.length})}else for(let l=c.length;i.length<l;l-=1){const d=e.concat([l-1]),f=X(d,s);r.push({op:I.Remove,path:f})}}}function or({original:n,copy:e,assignedMap:t},r,s,i,o){t.forEach((a,c)=>{const u=G(n,c),l=me(G(e,c)),d=a?ce(n,c)?I.Replace:I.Add:I.Remove;if(B(u,l)&&d===I.Replace)return;const f=r.concat(c),h=X(f,o);s.push(d===I.Remove?{op:d,path:h}:{op:d,path:h,value:l}),i.push(d===I.Add?{op:I.Remove,path:h}:d===I.Remove?{op:I.Add,path:h,value:u}:{op:I.Replace,path:h,value:u})})}function ar({original:n,copy:e},t,r,s,i){let o=0;n.forEach(a=>{if(!e.has(a)){const c=t.concat([o]),u=X(c,i);r.push({op:I.Remove,path:u,value:a}),s.unshift({op:I.Add,path:u,value:a})}o+=1}),o=0,e.forEach(a=>{if(!n.has(a)){const c=t.concat([o]),u=X(c,i);r.push({op:I.Add,path:u,value:a}),s.unshift({op:I.Remove,path:u,value:a})}o+=1})}function de(n,e,t,r){const{pathAsArray:s=!0}=n.options.enablePatches;switch(n.type){case 0:case 2:return or(n,e,t,r,s);case 1:return ir(n,e,t,r,s);case 3:return ar(n,e,t,r,s)}}const Se=(n,e,t=!1)=>{if(typeof n=="object"&&n!==null&&(!z(n,e)||t))throw new Error("Strict mode: Mutable data cannot be accessed directly, please use 'unsafe(callback)' wrap.")},Qe={get size(){return N(O(this)).size},has(n){return N(O(this)).has(n)},set(n,e){const t=O(this),r=N(t);return(!r.has(n)||!B(r.get(n),e))&&(D(t),W(t),t.assignedMap.set(n,!0),t.copy.set(n,e),Ve(t,n,e,de)),this},delete(n){if(!this.has(n))return!1;const e=O(this);return D(e),W(e),e.original.has(n)?e.assignedMap.set(n,!1):e.assignedMap.delete(n),e.copy.delete(n),!0},clear(){const n=O(this);if(this.size){D(n),W(n),n.assignedMap=new Map;for(const[e]of n.original)n.assignedMap.set(e,!1);n.copy.clear()}},forEach(n,e){const t=O(this);N(t).forEach((r,s)=>{n.call(e,this.get(s),s,this)})},get(n){var e,t;const r=O(this),s=N(r).get(n),i=((t=(e=r.options).mark)===null||t===void 0?void 0:t.call(e,s,F))===F.mutable;if(r.options.strict&&Se(s,r.options,i),i||r.finalized||!z(s,r.options)||s!==r.original.get(n))return s;const o=Re.createDraft({original:s,parentDraft:r,key:n,finalities:r.finalities,options:r.options});return D(r),r.copy.set(n,o),o},keys(){return N(O(this)).keys()},values(){const n=this.keys();return{[Te]:()=>this.values(),next:()=>{const e=n.next();return e.done?e:{done:!1,value:this.get(e.value)}}}},entries(){const n=this.keys();return{[Te]:()=>this.entries(),next:()=>{const e=n.next();if(e.done)return e;const t=this.get(e.value);return{done:!1,value:[e.value,t]}}}},[Te](){return this.entries()}},cr=Reflect.ownKeys(Qe),Mt=(n,e,{isValuesIterator:t})=>()=>{var r,s;const i=e.next();if(i.done)return i;const o=i.value;let a=n.setMap.get(o);const c=O(a),u=((s=(r=n.options).mark)===null||s===void 0?void 0:s.call(r,a,F))===F.mutable;if(n.options.strict&&Se(o,n.options,u),!u&&!c&&z(o,n.options)&&!n.finalized&&n.original.has(o)){const l=Re.createDraft({original:o,parentDraft:n,key:o,finalities:n.finalities,options:n.options});n.setMap.set(o,l),a=l}else c&&(a=c.proxy);return{done:!1,value:t?a:[a,a]}},Ae={get size(){return O(this).setMap.size},has(n){const e=O(this);if(e.setMap.has(n))return!0;D(e);const t=O(n);return!!(t&&e.setMap.has(t.original))},add(n){const e=O(this);return this.has(n)||(D(e),W(e),e.assignedMap.set(n,!0),e.setMap.set(n,n),Ve(e,n,n,de)),this},delete(n){if(!this.has(n))return!1;const e=O(this);D(e),W(e);const t=O(n);return t&&e.setMap.has(t.original)?(e.assignedMap.set(t.original,!1),e.setMap.delete(t.original)):(!t&&e.setMap.has(n)?e.assignedMap.set(n,!1):e.assignedMap.delete(n),e.setMap.delete(n))},clear(){if(!this.size)return;const n=O(this);D(n),W(n);for(const e of n.original)n.assignedMap.set(e,!1);n.setMap.clear()},values(){const n=O(this);D(n);const e=n.setMap.keys();return{[Symbol.iterator]:()=>this.values(),next:Mt(n,e,{isValuesIterator:!0})}},entries(){const n=O(this);D(n);const e=n.setMap.keys();return{[Symbol.iterator]:()=>this.entries(),next:Mt(n,e,{isValuesIterator:!1})}},keys(){return this.values()},[Te](){return this.values()},forEach(n,e){const t=this.values();let r=t.next();for(;!r.done;)n.call(e,r.value,r.value,this),r=t.next()}};Set.prototype.difference&&Object.assign(Ae,{intersection(n){return Set.prototype.intersection.call(new Set(this.values()),n)},union(n){return Set.prototype.union.call(new Set(this.values()),n)},difference(n){return Set.prototype.difference.call(new Set(this.values()),n)},symmetricDifference(n){return Set.prototype.symmetricDifference.call(new Set(this.values()),n)},isSubsetOf(n){return Set.prototype.isSubsetOf.call(new Set(this.values()),n)},isSupersetOf(n){return Set.prototype.isSupersetOf.call(new Set(this.values()),n)},isDisjointFrom(n){return Set.prototype.isDisjointFrom.call(new Set(this.values()),n)}});const ur=Reflect.ownKeys(Ae),Pt=new WeakSet,jt={get(n,e,t){var r,s;const i=(r=n.copy)===null||r===void 0?void 0:r[e];if(i&&Pt.has(i))return i;if(e===Ot)return n;let o;if(n.options.mark){const u=e==="size"&&(n.original instanceof Map||n.original instanceof Set)?Reflect.get(n.original,e):Reflect.get(n.original,e,t);if(o=n.options.mark(u,F),o===F.mutable)return n.options.strict&&Se(u,n.options,!0),u}const a=N(n);if(a instanceof Map&&cr.includes(e)){if(e==="size")return Object.getOwnPropertyDescriptor(Qe,"size").get.call(n.proxy);const u=Qe[e];if(u)return u.bind(n.proxy)}if(a instanceof Set&&ur.includes(e)){if(e==="size")return Object.getOwnPropertyDescriptor(Ae,"size").get.call(n.proxy);const u=Ae[e];if(u)return u.bind(n.proxy)}if(!ce(a,e)){const u=vt(a,e);return u?"value"in u?u.value:(s=u.get)===null||s===void 0?void 0:s.call(n.proxy):void 0}const c=a[e];if(n.options.strict&&Se(c,n.options),n.finalized||!z(c,n.options))return c;if(c===Fe(n.original,e)){if(D(n),n.copy[e]=We({original:n.original[e],parentDraft:n,key:n.type===1?Number(e):e,finalities:n.finalities,options:n.options}),typeof o=="function"){const u=O(n.copy[e]);return D(u),W(u),u.copy}return n.copy[e]}return c},set(n,e,t){var r;if(n.type===3||n.type===2)throw new Error("Map/Set draft does not support any property assignment.");let s;if(n.type===1&&e!=="length"&&!(Number.isInteger(s=Number(e))&&s>=0&&(e===0||s===0||String(s)===String(e))))throw new Error("Only supports setting array indices and the 'length' property.");const i=vt(N(n),e);if(i!=null&&i.set)return i.set.call(n.proxy,t),!0;const o=Fe(N(n),e),a=O(o);return a&&B(a.original,t)?(n.copy[e]=t,n.assignedMap=(r=n.assignedMap)!==null&&r!==void 0?r:new Map,n.assignedMap.set(e,!1),!0):(B(t,o)&&(t!==void 0||ce(n.original,e))||(D(n),W(n),ce(n.original,e)&&B(t,n.original[e])?n.assignedMap.delete(e):n.assignedMap.set(e,!0),n.copy[e]=t,Ve(n,e,t,de)),!0)},has(n,e){return e in N(n)},ownKeys(n){return Reflect.ownKeys(N(n))},getOwnPropertyDescriptor(n,e){const t=N(n),r=Reflect.getOwnPropertyDescriptor(t,e);return r&&{writable:!0,configurable:n.type!==1||e!=="length",enumerable:r.enumerable,value:t[e]}},getPrototypeOf(n){return Reflect.getPrototypeOf(n.original)},setPrototypeOf(){throw new Error("Cannot call 'setPrototypeOf()' on drafts")},defineProperty(){throw new Error("Cannot call 'defineProperty()' on drafts")},deleteProperty(n,e){var t;return n.type===1?jt.set.call(this,n,e,void 0,n.proxy):(Fe(n.original,e)!==void 0||e in n.original?(D(n),W(n),n.assignedMap.set(e,!1)):(n.assignedMap=(t=n.assignedMap)!==null&&t!==void 0?t:new Map,n.assignedMap.delete(e)),n.copy&&delete n.copy[e],!0)}};function We(n){const{original:e,parentDraft:t,key:r,finalities:s,options:i}=n,o=Z(e),a={type:o,finalized:!1,parent:t,original:e,copy:null,proxy:null,finalities:s,options:i,setMap:o===3?new Map(e.entries()):void 0};(r||"key"in n)&&(a.key=r);const{proxy:c,revoke:u}=Proxy.revocable(o===1?Object.assign([],a):a,jt);if(s.revoke.push(u),Pt.add(c),a.proxy=c,t){const l=t;l.finalities.draft.push((d,f)=>{var h,p;const b=O(c);let _=l.type===3?l.setMap:l.copy;const g=G(_,r),y=O(g);if(y){let w=y.original;y.operated&&(w=Le(g)),Ke(y),ze(y,de,d,f),l.options.enableAutoFreeze&&(l.options.updatedValues=(h=l.options.updatedValues)!==null&&h!==void 0?h:new WeakMap,l.options.updatedValues.set(w,y.original)),ue(_,r,w)}(p=b.callbacks)===null||p===void 0||p.forEach(w=>{w(d,f)})})}else{const l=O(c);l.finalities.draft.push((d,f)=>{Ke(l),ze(l,de,d,f)})}return c}Re.createDraft=We;function lr(n,e,t,r,s){var i;const o=O(n),a=(i=o==null?void 0:o.original)!==null&&i!==void 0?i:n,c=!!e.length;if(o!=null&&o.operated)for(;o.finalities.draft.length>0;)o.finalities.draft.pop()(t,r);const u=c?e[0]:o?o.operated?o.copy:o.original:n;return o&&Ne(o),s&&te(u,u,o==null?void 0:o.options.updatedValues),[u,t&&c?[{op:I.Replace,path:[],value:e[0]}]:t,r&&c?[{op:I.Replace,path:[],value:a}]:r]}function dr(n,e){var t;const r={draft:[],revoke:[],handledSet:new WeakSet};let s,i;e.enablePatches&&(s=[],i=[]);const a=((t=e.mark)===null||t===void 0?void 0:t.call(e,n,F))===F.mutable||!z(n,e)?n:We({original:n,parentDraft:null,finalities:r,options:e});return[a,(c=[])=>{const[u,l,d]=lr(a,c,s,i,e.enableAutoFreeze);return e.enablePatches?[u,l,d]:u}]}function Ge(n){const{rootDraft:e,value:t,useRawReturn:r=!1,isRoot:s=!0}=n;qe(t,(i,o,a)=>{const c=O(o);if(c&&e&&c.finalities===e.finalities){n.isContainDraft=!0;const u=c.original;if(a instanceof Set){const l=Array.from(a);a.clear(),l.forEach(d=>a.add(i===d?u:d))}else ue(a,i,u)}else typeof o=="object"&&o!==null&&(n.value=o,n.isRoot=!1,Ge(n))}),s&&(n.isContainDraft||console.warn("The return value does not contain any draft, please use 'rawReturn()' to wrap the return value to improve performance."),r&&console.warn("The return value contains drafts, please don't use 'rawReturn()' to wrap the return value."))}function $t(n){var e;const t=O(n);if(!z(n,t==null?void 0:t.options))return n;const r=Z(n);if(t&&!t.operated)return t.original;let s;function i(){s=r===2?Ue(n)?new Map(n):new(Object.getPrototypeOf(n)).constructor(n):r===3?Array.from(t.setMap.values()):Et(n,t==null?void 0:t.options)}if(t){t.finalized=!0;try{i()}finally{t.finalized=!1}}else s=n;if(qe(s,(o,a)=>{if(t&&B(G(t.original,o),a))return;const c=$t(a);c!==a&&(s===n&&i(),ue(s,o,c))}),r===3){const o=(e=t==null?void 0:t.original)!==null&&e!==void 0?e:s;return xe(o)?new Set(s):new(Object.getPrototypeOf(o)).constructor(s)}return s}function Dt(n){if(!Y(n))throw new Error(`current() is only used for Draft, parameter: ${n}`);return $t(n)}const Oe=(n=>function e(t,r,s){var i,o,a;if(typeof t=="function"&&typeof r!="function")return function(m,...E){return e(m,k=>t.call(this,k,...E),r)};const c=t,u=r;let l=s;if(typeof r!="function"&&(l=r),l!==void 0&&Object.prototype.toString.call(l)!=="[object Object]")throw new Error(`Invalid options: ${l}, 'options' should be an object.`);l=Object.assign(Object.assign({},n),l);const d=Y(c)?Dt(c):c,f=Array.isArray(l.mark)?(m,E)=>{for(const k of l.mark){if(typeof k!="function")throw new Error(`Invalid mark: ${k}, 'mark' should be a function.`);const K=k(m,E);if(K)return K}}:l.mark,h=(i=l.enablePatches)!==null&&i!==void 0?i:!1,p=(o=l.strict)!==null&&o!==void 0?o:!1,_={enableAutoFreeze:(a=l.enableAutoFreeze)!==null&&a!==void 0?a:!1,mark:f,strict:p,enablePatches:h};if(!z(d,_)&&typeof d=="object"&&d!==null)throw new Error("Invalid base state: create() only supports plain objects, arrays, Set, Map or using mark() to mark the state as immutable.");const[g,y]=dr(d,_);if(typeof r!="function"){if(!z(d,_))throw new Error("Invalid base state: create() only supports plain objects, arrays, Set, Map or using mark() to mark the state as immutable.");return[g,y]}let w;try{w=u(g)}catch(m){throw Ne(O(g)),m}const S=m=>{const E=O(g);if(!Y(m)){if(m!==void 0&&!B(m,g)&&(E!=null&&E.operated))throw new Error("Either the value is returned as a new non-draft value, or only the draft is modified without returning any value.");const K=m==null?void 0:m[er];if(K){const At=K[0];return _.strict&&typeof m=="object"&&m!==null&&Ge({rootDraft:E,value:m,useRawReturn:!0}),y([At])}if(m!==void 0)return typeof m=="object"&&m!==null&&Ge({rootDraft:E,value:m}),y([m])}if(m===g||m===void 0)return y([]);const k=O(m);if(_===k.options){if(k.operated)throw new Error("Cannot return a modified child draft.");return y([Dt(m)])}return y([m])};return w instanceof Promise?w.then(S,m=>{throw Ne(O(g)),m}):S(w)})();Object.prototype.constructor.toString();function Rt(n,e){const t=Object.keys(n),r=Object.keys(e);return t.length===r.length&&Object.keys(n).every(s=>e.hasOwnProperty(s))}function xt(n,e){return Object.keys(n).length===Object.keys(e).length&&Object.keys(n).every(t=>e.hasOwnProperty(t)&&n[t]===e[t])}function ve(n,e){return typeof n!="object"||typeof e!="object"||n===null||e===null?n===e:Rt(n,e)?Object.keys(n).every(t=>ve(n[t],e[t])):!1}function Be(n){if(!fe(n))return n;const e={};for(const[t,r]of Object.entries(n))r!==void 0&&(e[t]=r);return e}function Ut(n,e){if(!fe(n)||!fe(e))return e;const t={...n};for(const r of Object.keys(e)){if(e[r]===void 0)continue;if(e[r]===null){delete t[r];continue}const s=fe(n[r])&&fe(e[r]);t[r]=s?Ut(n[r],e[r]):e[r]}return t}function fe(n){return typeof n=="object"&&n!==null&&!Array.isArray(n)}function fr(n,e,t){if(!n||e.length===0)return;let r=n||{};for(let i=0;i<e.length-1;i++){const o=e[i];(!(o in r)||typeof r[o]!="object")&&(r[o]=typeof e[i+1]=="number"?[]:{}),r=r[o]}const s=e[e.length-1];Array.isArray(r)&&typeof s=="number"?r.splice(s,0,t):r[s]=t}function Lt(n,e,t){if(!n||e.length===0)return;let r=n||{};for(let s=0;s<e.length-1;s++){const i=e[s];(!(i in r)||typeof r[i]!="object")&&(r[i]=typeof e[s+1]=="number"?[]:{}),r=r[i]}r[e[e.length-1]]=t}function Ft(n,e){if(!n||e.length===0)return;const[t,...r]=e;if(t in n){if(r.length===0){Array.isArray(n)?n.splice(t,1):delete n[t];return}Ft(n[t],r),hr(n[t])&&delete n[t]}}function hr(n){return n&&Object.keys(n).length===0}const Nt=/ZULU|YEKT|YEKST|YAPT|YAKT|YAKST|XJT|WGT|WGST|WFT|WETDST|WET|WDT|WAT|WAST|WAKT|WADT|VUT|VOLT|VLAT|VLAST|VET|UZT|UZST|UYT|UYST|UTC|UT|ULAT|ULAST|UCT|TVT|TRUT|TOT|TMT|TKT|TJT|TFT|TAHT|SGT|SCT|SAST|SADT|RET|PYT|PYST|PWT|PST|PONT|PMST|PMDT|PKT|PKST|PHT|PGT|PETT|PETST|PET|PDT|OMST|OMSST|NZT|NZST|NZDT|NUT|NST|NPT|NOVT|NOVST|NFT|NDT|MYT|MVT|MUT|MUST|MST|MSK|MSD|MPT|MMT|MHT|MEZ|METDST|MET|MESZ|MEST|MDT|MAWT|MART|MAGT|MAGST|LKT|LINT|LIGT|LHST|LHDT|KST|KRAT|KRAST|KOST|KGT|KGST|KDT|JST|JAYT|IST|IRT|IRKT|IRKST|IOT|IDT|ICT|HST|HKT|GYT|GMT|GILT|GFT|GET|GEST|GAMT|GALT|FNT|FNST|FKT|FKST|FJT|FJST|FET|EST|EGT|EGST|EETDST|EET|EEST|EDT|EAT|EAST|EASST|DDUT|DAVT|CXT|CST|COT|CLT|CLST|CKT|CHUT|CHAST|CHADT|CETDST|CET|CEST|CDT|CCT|CAST|CADT|BTT|BST|BRT|BRST|BRA|BOT|BORT|BNT|BDT|BDST|AZT|AZST|AZOT|AZOST|AWST|AWSST|AST|ART|ARST|ANAT|ANAST|AMT|AMST|ALMT|ALMST|AKST|AKDT|AFT|AEST|AESST|AEDT|ADT|ACWST|ACT|ACST|ACSST|ACDT$/,pr={ZULU:0,YEKT:18e3,YEKST:21600,YAPT:36e3,YAKT:32400,YAKST:32400,XJT:21600,WGT:-10800,WGST:-7200,WFT:43200,WETDST:3600,WET:0,WDT:32400,WAT:3600,WAST:25200,WAKT:43200,WADT:28800,VUT:39600,VOLT:10800,VLAT:36e3,VLAST:36e3,VET:-14400,UZT:18e3,UZST:21600,UYT:-10800,UYST:-7200,UTC:0,UT:0,ULAT:28800,ULAST:32400,UCT:0,TVT:43200,TRUT:36e3,TOT:46800,TMT:18e3,TKT:46800,TJT:18e3,TFT:18e3,TAHT:-36e3,SGT:28800,SCT:14400,SAST:7200,SADT:37800,RET:14400,PYT:-14400,PYST:-10800,PWT:32400,PST:-28800,PONT:39600,PMST:-10800,PMDT:-7200,PKT:18e3,PKST:21600,PHT:28800,PGT:36e3,PETT:43200,PETST:43200,PET:-18e3,PDT:-25200,OMST:21600,OMSST:21600,NZT:43200,NZST:43200,NZDT:46800,NUT:-39600,NST:-12600,NPT:20700,NOVT:25200,NOVST:25200,NFT:-12600,NDT:-9e3,MYT:28800,MVT:18e3,MUT:14400,MUST:18e3,MST:-25200,MSK:10800,MSD:14400,MPT:36e3,MMT:23400,MHT:43200,MEZ:3600,METDST:7200,MET:3600,MESZ:7200,MEST:7200,MDT:-21600,MAWT:18e3,MART:-34200,MAGT:39600,MAGST:39600,LKT:19800,LINT:50400,LIGT:36e3,LHST:37800,LHDT:37800,KST:32400,KRAT:25200,KRAST:25200,KOST:39600,KGT:21600,KGST:21600,KDT:36e3,JST:32400,JAYT:32400,IST:7200,IRT:12600,IRKT:28800,IRKST:28800,IOT:21600,IDT:10800,ICT:25200,HST:-36e3,HKT:28800,GYT:-14400,GMT:0,GILT:43200,GFT:-10800,GET:14400,GEST:14400,GAMT:-32400,GALT:-21600,FNT:-7200,FNST:-3600,FKT:-10800,FKST:-10800,FJT:43200,FJST:46800,FET:10800,EST:-18e3,EGT:-3600,EGST:0,EETDST:10800,EET:7200,EEST:10800,EDT:-14400,EAT:10800,EAST:-21600,EASST:-21600,DDUT:36e3,DAVT:25200,CXT:25200,CST:-21600,COT:-18e3,CLT:-14400,CLST:-10800,CKT:-36e3,CHUT:36e3,CHAST:45900,CHADT:49500,CETDST:7200,CET:3600,CEST:7200,CDT:-18e3,CCT:28800,CAST:34200,CADT:37800,BTT:21600,BST:3600,BRT:-10800,BRST:-7200,BRA:-10800,BOT:-14400,BORT:28800,BNT:28800,BDT:21600,BDST:7200,AZT:14400,AZST:14400,AZOT:-3600,AZOST:0,AWST:28800,AWSST:32400,AST:-14400,ART:-10800,ARST:-10800,ANAT:43200,ANAST:43200,AMT:-14400,AMST:14400,ALMT:21600,ALMST:25200,AKST:-32400,AKDT:-28800,AFT:16200,AEST:36e3,AESST:39600,AEDT:39600,ADT:-10800,ACWST:31500,ACT:-18e3,ACST:34200,ACSST:37800,ACDT:37800};function yr(n){return new Date(n)}function br(n){return new Date(n+"Z")}const gr=/^(\d+)[\./-](\d+)[\./-](\d+)$/;function _r(n){const e=n.match(gr);if(!e)return null;const[t,r,s,i]=e;return r<=0||s<=0||i<=0?null:r>999?new Date(Date.UTC(r,s-1,i,0,0,0,0)):new Date(Date.UTC(i,r-1,s,0,0,0,0))}function wr(n){const[e,t]=n.split(" ");return new Date(e+"T"+t+"Z")}function Tr(n){const[e,t]=n.split(" ");return new Date(e+"T"+t+"Z")}function mr(n){return new Date(n)}function Sr(n){const e=/^(\w{3}) (\w{3}) (\d{2}) (\d{4})$/;if(!n.match(e))throw new Error(`Unable to parse \`${n}\` as a date.`);const r=new Date(n+" UTC");return new Date(Date.UTC(r.getUTCFullYear(),r.getUTCMonth(),r.getUTCDate(),0,0,0,0))}function Ar(n){const e=/^(.+T.+)([+-])(\d{2})$/,t=n.match(e);if(t){const[,r,s,i]=t,o=`${r}${s}${i}:00`;return new Date(o)}return null}function Or(n){const e=/^(\d+)-(\d{1,2})-(\d{1,2})([ T])(.+)$/,t=n.match(e);if(t){const[,r,s,i,o,a]=t,c=s.padStart(2,"0"),u=i.padStart(2,"0"),l=`${r}-${c}-${u}T${a}`;return new Date(l)}return null}function vr(n){const[e,t]=n.split(", "),[r,s,i]=e.split("/").map(Number),o=t.match(/(\d{1,2}):(\d{2}):(\d{2}) (AM|PM)/);if(!o)throw new Error(`Unable to parse time from: ${n}`);let[,a,c,u,l]=o;return a=Number(a),c=Number(c),u=Number(u),l==="PM"&&a!==12?a+=12:l==="AM"&&a===12&&(a=0),new Date(Date.UTC(i,r-1,s,a,c,u))}function kr(n){switch(n){case"epoch":return new Date(0);case"infinity":case"-infinity":case"today":case"tomorrow":case"yesterday":return null}}function Er(n){const e=n.match(Nt);if(!e)return null;const[t]=e,r=pr[t],s=new Date(n.replace(Nt,"Z"));return new Date(s.getTime()-r*1e3)}const Ir=[_r,Tr,Sr,vr,mr,br,Ar,wr,yr,kr,Er,Or];function Cr(n,e){try{const t=n(e);return t instanceof Date&&!isNaN(t.getTime())?t:null}catch{return null}}function He(n){for(const e of Ir){const t=Cr(e,n);if(t)return t}return null}function Mr(n){try{const e=JSON.parse(n);return typeof e=="string"?He(e):null}catch{return null}}function he(n){if(n!==void 0){if(n===null)return null;if(n instanceof Date)return n;if(typeof n=="string"){const e=He(n)||Mr(n)||He(n.trim());if(!e)throw new Error(`Unable to parse \`${n}\` as a date.`);return e}else if(typeof n=="number")return new Date(n);throw new Error(`Invalid date value \`${n}\`. Expected a date, number, or string, got type ${typeof n}.`)}}class J{constructor(e,t){this._blobAttrs=null,this._primaryKeys=null,this._forwardIdents=null,this._revIdents=null,this.attrs=e,this.linkIndex=t}resetAttrIndexes(){this._blobAttrs=null,this._primaryKeys=null,this._forwardIdents=null,this._revIdents=null}addAttr(e){this.attrs[e.id]=e,this.resetAttrIndexes()}deleteAttr(e){delete this.attrs[e],this.resetAttrIndexes()}updateAttr(e){const t=this.attrs[e.id];t&&(this.attrs[e.id]={...t,...e},this.resetAttrIndexes())}getAttr(e){return this.attrs[e]}get blobAttrs(){if(this._blobAttrs)return this._blobAttrs;this._blobAttrs=new Map;for(const e of Object.values(this.attrs))if(Ye(e)){const[t,r,s]=e["forward-identity"];x(this.blobAttrs,[r,s],e)}return this._blobAttrs}get primaryKeys(){if(this._primaryKeys)return this._primaryKeys;this._primaryKeys=new Map;for(const e of Object.values(this.attrs))if(e["primary?"]){const[t,r]=e["forward-identity"];x(this._primaryKeys,[r],e)}return this._primaryKeys}get forwardIdents(){if(this._forwardIdents)return this._forwardIdents;this._forwardIdents=new Map;for(const e of Object.values(this.attrs)){const t=e["forward-identity"],[r,s,i]=t;x(this._forwardIdents,[s,i],e)}return this._forwardIdents}get revIdents(){if(this._revIdents)return this._revIdents;this._revIdents=new Map;for(const e of Object.values(this.attrs)){const t=e["reverse-identity"];if(t){const[r,s,i]=t;x(this._revIdents,[s,i],e)}}return this._revIdents}toJSON(){return{attrs:this.attrs,linkIndex:this.linkIndex}}}function Pr(n){return n.cardinality==="one"}function Je(n){return n["value-type"]==="ref"}function Ye(n){return n["value-type"]==="blob"}function ne(n,e){return e.reduce((t,r)=>t&&t.get(r),n)}function V(n,e){if(e.length===0)throw new Error("path must have at least one element");if(e.length===1){n.delete(e[0]);return}const[t,...r]=e;n.has(t)&&V(n.get(t),r)}function x(n,e,t){let r=n;const s=e.length-1;for(let i=0;i<s;i++){const o=e[i];let a=r.get(o);a===void 0&&(a=new Map,r.set(o,a)),r=a}s>-1&&r.set(e[s],t)}function qt(n,e,t){const r=new Map,s=new Map,i=new Map;for(const o of e){let[a,c,u]=o;const l=n.getAttr(c);if(!l){console.warn("no such attr",c,a);continue}l["checked-data-type"]==="date"&&t&&(u=he(u),o[2]=u),Je(l)&&x(i,[u,c,a],o),x(r,[a,c,u],o),x(s,[c,a,u],o)}return{eav:r,aev:s,vae:i}}function Kt(n){return{triples:U(n.eav,3),cardinalityInference:n.cardinalityInference,useDateObjects:n.useDateObjects,version:1}}function zt(n,e){return re(n,e.triples,e.cardinalityInference,e.useDateObjects)}function Vt(n,e){if(n)return new J(n.attrs,n.linkIndex);if(e&&"__type"in e)return new J(e.attrs,e.linkIndex)}function jr(n,e){return ne(n.eav,[e])!==void 0}function re(n,e,t,r){const s=qt(n,e,r);return s.cardinalityInference=t,s.useDateObjects=r,s}function pe(n,e){var s,i;let t;if(Array.isArray(e[0])){const[o,a]=e[0],c=n.aev.get(o);if(!c)return null;t=(s=U(c,2).find(l=>l[2]===a))==null?void 0:s[0]}else t=e[0];if(!t)return null;const r=e[2];if(Array.isArray(r)&&r.length===2&&n.aev.get(r[0])){const[o,a]=r,c=n.aev.get(o);if(!c)return null;const l=(i=U(c,2).find(b=>b[2]===a))==null?void 0:i[0];if(!l)return null;const[d,f,h,...p]=e;return[t,f,l,...p]}else{const[o,...a]=e;return[t,...a]}}function Qt(n,e,t){const r=pe(n,t);if(!r)return;const[s,i,o]=r,a=e.getAttr(i);a&&(V(n.eav,[s,i,o]),V(n.aev,[i,s,o]),Je(a)&&V(n.vae,[o,i,s]))}let $r=0;function Wt(n,e,t){const[r,s,i]=t;let o;const a=ne(n.eav,[r,s,i]);return a&&(o=a[3]),o||Date.now()*10+$r++}function Gt(n,e,t){const r=pe(n,t);if(!r)return;let[s,i,o]=r;const a=e.getAttr(i);if(!a)return;a["checked-data-type"]==="date"&&n.useDateObjects&&(o=he(o));const c=ne(n.eav,[s,i,o]),u=(c==null?void 0:c[3])??Wt(n,a,r),l=[s,i,o,u];Pr(a)?(x(n.eav,[s,i],new Map([[o,l]])),x(n.aev,[i,s],new Map([[o,l]]))):(x(n.eav,[s,i,o],l),x(n.aev,[i,s,o],l)),Je(a)&&x(n.vae,[o,i,s],l)}function Dr(n,e,t){var h;const r=pe(n,t);if(!r)return;const[s,i,o]=r,a=e.getAttr(i);if(!a)return;if(!Ye(a))throw new Error("merge operation is not supported for links");const c=ne(n.eav,[s,i]);if(!c)return;const u=(h=c.values().next())==null?void 0:h.value;if(!u)return;const l=u[2],d=Ut(l,o),f=[s,i,d,Wt(n,a,u)];x(n.eav,[s,i],new Map([[d,f]])),x(n.aev,[i,s],new Map([[d,f]]))}function Ze(n,e,t){var u,l;const[r,s]=t,i=pe(n,[r]);if(!i)return;const[o]=i,a=n.eav.get(o);if(a){for(const d of a.keys()){const f=e.getAttr(d);f&&f["on-delete-reverse"]==="cascade"&&U(a.get(d),1).forEach(([h,p,b])=>{var _;return Ze(n,e,[b,(_=f["reverse-identity"])==null?void 0:_[1]])}),(!s||!f||((u=f["forward-identity"])==null?void 0:u[1])===s)&&(V(n.aev,[d,o]),V(n.eav,[o,d]))}a.size===0&&V(n.eav,[o])}const c=n.vae.get(o)&&U(n.vae.get(o),2);c&&c.forEach(d=>{var _,g,y;const[f,h,p]=d,b=e.getAttr(h);(!s||!b||((_=b["reverse-identity"])==null?void 0:_[1])===s)&&(V(n.eav,[f,h,p]),V(n.aev,[h,f,p]),V(n.vae,[p,h,f])),b&&b["on-delete"]==="cascade"&&((g=b["reverse-identity"])==null?void 0:g[1])===s&&Ze(n,e,[f,(y=b["forward-identity"])==null?void 0:y[1]])}),((l=n.vae.get(o))==null?void 0:l.size)===0&&V(n.vae,[o])}function Bt(n,e,t){const r=qt(e,t,n.useDateObjects);Object.keys(r).forEach(s=>{n[s]=r[s]})}function Rr(n,[e]){n.addAttr(e)}function Ht(n){return U(n.eav,3)}function xr(n,e,[t]){if(!e.getAttr(t))return;const r=Ht(n).filter(([s,i])=>i!==t);e.deleteAttr(t),Bt(n,e,r)}function Ur(n,e,[t]){e.getAttr(t.id)&&(e.updateAttr(t),Bt(n,e,Ht(n)))}function Lr(n,e,t){const[r,...s]=t;switch(r){case"add-triple":Gt(n,e,s);break;case"deep-merge-triple":Dr(n,e,s);break;case"retract-triple":Qt(n,e,s);break;case"delete-entity":Ze(n,e,s);break;case"add-attr":Rr(e,s);break;case"delete-attr":xr(n,e,s);break;case"update-attr":Ur(n,e,s);break;case"restore-attr":break;case"rule-params":break;default:throw new Error(`unhandled transaction action: ${r}`)}}function U(n,e,t=[]){if(!n||e===0)return t;if(e===1){for(const r of n.values())t.push(r);return t}for(const r of n.values())U(r,e-1,t);return t}function ke(n,e,t){var i;const r=[];if(t!=null&&t.hasOwnProperty("$not")){for(const o of e.keys())t.$not!==o&&r.push(e.get(o));return r}if(t!=null&&t.hasOwnProperty("$isNull")){const{attrId:o,isNull:a,reverse:c}=t.$isNull;if(c)for(const u of e.keys()){const l=n.vae.get(u),d=!l||!l.get(o);(a?d:!d)&&r.push(e.get(u))}else{const u=n.aev.get(o);for(const l of e.keys()){const d=!u||((i=u.get(l))==null?void 0:i.get(null))||!u.get(l);(a?d:!d)&&r.push(e.get(l))}}return r}if(t!=null&&t.$comparator)return U(e,1).filter(t.$op);const s=t.in||t.$in||[t];for(const o of s){const a=e.get(o);a&&r.push(a)}return r}function Fr(n,e,t){let r="";return n!==void 0&&(r+="e"),e!==void 0&&(r+="a"),t!==void 0&&(r+="v"),r}function Nr(n,[e,t,r]){var i,o;switch(Fr(e,t,r)){case"e":{const a=n.eav.get(e);return U(a,2)}case"ea":{const a=(i=n.eav.get(e))==null?void 0:i.get(t);return U(a,1)}case"eav":{const a=(o=n.eav.get(e))==null?void 0:o.get(t);return a?ke(n,a,r):[]}case"ev":{const a=n.eav.get(e);if(!a)return[];const c=[];for(const u of a.values())c.push(...ke(n,u,r));return c}case"a":{const a=n.aev.get(t);return U(a,2)}case"av":{const a=n.aev.get(t);if(!a)return[];const c=[];for(const u of a.values())c.push(...ke(n,u,r));return c}case"v":{const a=[];for(const c of n.eav.values())for(const u of c.values())a.push(...ke(n,u,r));return a}default:return U(n.eav,3)}}function qr(n,e,t){var s;const r={};if(!e)return r;for(const[i,o]of e.entries()){const a=(s=n.eav.get(t))==null?void 0:s.get(o.id),c=U(a,1);for(const u of c)r[i]=u[2]}return r}function P(n,e,t){var r;return(r=n.forwardIdents.get(e))==null?void 0:r.get(t)}function ee(n,e,t){var r;return(r=n.revIdents.get(e))==null?void 0:r.get(t)}function Kr(n,e){return n.blobAttrs.get(e)}function Jt(n,e){var r;const t=n.primaryKeys.get(e);return t||((r=n.forwardIdents.get(e))==null?void 0:r.get("id"))}function zr(n,e,t){const r=pe(n,t);if(!r)return;const[s,i,o]=r;if(e.getAttr(i))return ne(n.eav,[s,i])}function Vr(n,e,t){const r=t.filter(([s,i,o,a,c])=>{if(s!=="add-triple"&&s!=="deep-merge-triple")return!0;const u=c==null?void 0:c.mode;if(u!=="create"&&u!=="update")return!0;let l=!1;const d=e.getAttr(o);if(d){const f=Jt(e,d["forward-identity"][1]);l=!!zr(n,e,[i,f==null?void 0:f.id,i])}return!(u==="create"&&l||u==="update"&&!l)});return Oe({store:n,attrsStore:e},s=>{r.forEach(i=>{Lr(s.store,s.attrsStore,i)})},{mark:s=>{if(s instanceof J)return"immutable"}})}function Qr(n){return typeof n=="string"&&n.startsWith("?")}function Wr(n,e,t){if(t.hasOwnProperty(n)){const r=t[n];return Zt(r,e,t)}return{...t,[n]:e}}function Yt(n,e,t){return n===e?t:null}function Gr(n){switch(typeof n){case"string":return n.startsWith("?")?Wr:Yt;default:return Yt}}const Br=["in","$in","$not","$isNull","$comparator"];function Hr(n){for(const e of Br)if(n.hasOwnProperty(e))return!0;return!1}function Zt(n,e,t){return t?typeof n=="object"?Hr(n)?t:null:Gr(n)(n,e,t):null}function Jr(n,e,t){return n.reduce((r,s,i)=>{const o=e[i];return Zt(s,o,r)},t)}function Yr(n,e,t){return es(n,e,t).map(r=>Jr(e,r,t)).filter(r=>r)}function Zr(n,e,t){return e.or?e.or.patterns.flatMap(r=>Xe(n,r,t)):e.and?e.and.patterns.reduce((r,s)=>Xe(n,s,r),t):t.flatMap(r=>Yr(n,e,r))}function Xe(n,e,t=[{}]){return e.reduce((r,s)=>Zr(n,s,r),t)}function et(n,e){return Array.isArray(e)?e.map(t=>et(n,t)):Qr(e)?n[e]:e}function Xr(n,{find:e,where:t}){return Xe(n,t).map(s=>et(s,e))}function es(n,e,t){return Nr(n,et(t,e))}const ts=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i;function se(n){return typeof n=="string"&&ts.test(n)}const $=[];for(let n=0;n<256;++n)$.push((n+256).toString(16).slice(1));function ns(n,e=0){return($[n[e+0]]+$[n[e+1]]+$[n[e+2]]+$[n[e+3]]+"-"+$[n[e+4]]+$[n[e+5]]+"-"+$[n[e+6]]+$[n[e+7]]+"-"+$[n[e+8]]+$[n[e+9]]+"-"+$[n[e+10]]+$[n[e+11]]+$[n[e+12]]+$[n[e+13]]+$[n[e+14]]+$[n[e+15]]).toLowerCase()}let tt;const rs=new Uint8Array(16);function ss(){if(!tt){if(typeof crypto>"u"||!crypto.getRandomValues)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");tt=crypto.getRandomValues.bind(crypto)}return tt(rs)}const Xt={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function is(n,e,t){var s;if(Xt.randomUUID&&!n)return Xt.randomUUID();n=n||{};const r=n.random??((s=n.rng)==null?void 0:s.call(n))??ss();if(r.length<16)throw new Error("Random bytes length must be >= 16");return r[6]=r[6]&15|64,r[8]=r[8]&63|128,ns(r)}function en(n){const e=n.replace(/-/g,""),t=[];for(let r=0;r<e.length;r+=2)t.push(parseInt(e.substring(r,r+2),16));return t}function os(n,e){for(let t=0;t<n.length;t++){if(n[t]<e[t])return-1;if(n[t]>e[t])return 1}return 0}function as(n,e){return os(en(n),en(e))}function j(){return is()}function cs(n,e){return n.localeCompare(e)}function us(){let n=cs;if(typeof Intl=="object"&&Intl.hasOwnProperty("Collator"))try{n=Intl.Collator("en-US").compare}catch{}return n}const ls=us();let ds=0;function ye(n){return Ee(`_${n}`,ds++)}function Ee(n,e){return`?${n}-${e}`}class ie extends Error{constructor(e){super(e),this.name="AttrNotFoundError"}}function fs(n,e){const t=Jt(n,e);if(!t)throw new ie(`Could not find id attr for ${e}`);return t}function tn(n,e,t,r){return[hs(n,e,t,r)]}function hs(n,e,t,r){return[n(t,r),fs(e,t).id,n(t,r),n("time",r)]}function ps(n,e,t){return n.map(r=>r===e?t:r)}function nn(n,e,t,r,s){const i=P(e,t,s),o=ee(e,t,s),a=i||o;if(!a)throw new ie(`Could not find attr for ${[t,s]}`);if(a["value-type"]!=="ref")throw new Error(`Attr ${a.id} is not a ref`);const[c,u]=a["forward-identity"],[l,d]=a["reverse-identity"],f=r+1,h=i?[n(u,r),a.id,n(d,f),ye("time")]:[n(u,f),a.id,n(d,r),ye("time")];return[i?d:u,f,h,a,!!i]}function rn(n,e){if(typeof e!="string")return function(o){return!1};const r=e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/%/g,".*").replace(/_/g,"."),s=new RegExp(`^${r}$`,n?void 0:"i");return function(o){return typeof o!="string"?!1:s.test(o)}}function ys(n,e){if(typeof e!="object"||e.hasOwnProperty("$in")||e.hasOwnProperty("in"))return e;const t=n["checked-data-type"]==="date";if(e.hasOwnProperty("$gt"))return{$comparator:!0,$op:t?function(s){return new Date(s[2])>new Date(e.$gt)}:function(s){return s[2]>e.$gt}};if(e.hasOwnProperty("$gte"))return{$comparator:!0,$op:t?function(s){return new Date(s[2])>=new Date(e.$gte)}:function(s){return s[2]>=e.$gte}};if(e.hasOwnProperty("$lt"))return{$comparator:!0,$op:t?function(s){return new Date(s[2])<new Date(e.$lt)}:function(s){return s[2]<e.$lt}};if(e.hasOwnProperty("$lte"))return{$comparator:!0,$op:t?function(s){return new Date(s[2])<=new Date(e.$lte)}:function(s){return s[2]<=e.$lte}};if(e.hasOwnProperty("$like")){const r=rn(!0,e.$like);return{$comparator:!0,$op:function(i){return r(i[2])}}}if(e.hasOwnProperty("$ilike")){const r=rn(!1,e.$ilike);return{$comparator:!0,$op:function(i){return r(i[2])}}}return e}function bs(n,e,t,r,s,i){const o=P(e,t,s),a=ee(e,t,s),c=o||a;if(!c)throw new ie(`No attr for etype = ${t} label = ${s}`);if(i!=null&&i.hasOwnProperty("$isNull")){const u=P(e,t,"id");if(!u)throw new ie(`No attr for etype = ${t} label = id`);return[n(t,r),u.id,{$isNull:{attrId:c.id,isNull:i.$isNull,reverse:!o}},ye("time")]}return o?[n(t,r),c.id,ys(c,i),ye("time")]:[i,c.id,n(t,r),ye("time")]}function gs(n,e,t,r,s){const[i,o,a]=s.reduce((c,u)=>{const[l,d,f]=c,[h,p,b]=nn(n,e,l,d,u);return[h,p,[...f,b]]},[t,r,[]]);return[i,o,a]}function nt(n,e,t,r,s,i){const o=s.slice(0,s.length-1),a=s[s.length-1],[c,u,l]=gs(n,e,t,r,o),d=bs(n,e,c,u,a,i);return l.concat([d])}function _s(n,e){return e?[e].concat(n):n}function ws([n,e]){return n==="or"&&Array.isArray(e)}function Ts([n,e]){return n==="and"&&Array.isArray(e)}function ms(n,e,t){return(r,s)=>{const i=n(r,s);return e==i?i:`${i}-${t}`}}function sn(n,e,t,r,s,i){const o=n(r,s),a=i.map((c,u)=>{const l=ms(n,o,u);return an(l,t,r,s,c)});return{[e]:{patterns:a,joinSym:o}}}function Ss(n){const e=[];for(let t=1;t<=n.length;t++)e.push(n.slice(0,t));return e}function on(n,e,t,r,s){return Ss(s).map(i=>nt(n,e,t,r,i,{$isNull:!0}))}function an(n,e,t,r,s){return Object.entries(s).flatMap(([i,o])=>{if(ws([i,o]))return sn(n,"or",e,t,r,o);if(Ts([i,o]))return sn(n,"and",e,t,r,o);if(i==="$entityIdStartsWith")return[];const a=i.split(".");if(o!=null&&o.hasOwnProperty("$ne")&&(o={...o,$not:o.$ne},delete o.$ne),o!=null&&o.hasOwnProperty("$not")){const c=nt(n,e,t,r,a,o),u=on(n,e,t,r,a);return[{or:{patterns:[c,...u],joinSym:n(t,r)}}]}return o!=null&&o.hasOwnProperty("$isNull")&&o.$isNull===!0&&a.length>1?[{or:{patterns:on(n,e,t,r,a),joinSym:n(t,r)}}]:nt(n,e,t,r,a,o)})}function As(n,e,t,r){const s=Ee;return r?an(s,n,e,t,r).concat(tn(s,n,e,t)):tn(s,n,e,t)}function Os(n,e,t){return[n(e,t),n("time",t)]}function vs(n,e,t,r,s,i){const[o,a,c,u,l]=nn(n,e,t,r,s),d=ps(c,n(t,r),i);return[o,a,d,u,l]}function ks(n,e,t,{etype:r,level:s,form:i},o){const a=Object.keys(i).filter(c=>c!=="$");return a.length?Object.entries(o).map(function([u,l]){return a.map(function(h){var b,_,g;const p=!!(e.cardinalityInference&&((g=(_=(b=t.linkIndex)==null?void 0:b[r])==null?void 0:_[h])!=null&&g.isSingular));try{const[y,w,S]=vs(n,t,r,s,h,u),m=un(e,t,{etype:y,level:w,form:i[h],join:S}),E=p?m[0]:m;return{[h]:E}}catch(y){if(y instanceof ie)return{[h]:p?void 0:[]};throw y}}).reduce(function(h,p){return{...h,...p}},l)}):Object.values(o)}function Es(n,e,t){return t==="string"?ls(n,e):n>e?1:-1}function be(n,e,t,r,s){return e===r||e==null&&r==null?as(n,t):r==null?1:e==null?-1:Es(e,r,s)}function Ie([n,e],[t,r],s){return be(n,e,t,r,s)}function rt(n){return n==null?n:new Date(n).getTime()}function Is(n,e,t,r){var p;const[s,i,o,a]=n,c=t==="desc"?1:-1;if(((p=e["forward-identity"])==null?void 0:p[2])==="id")return Ie(r,[s,a],null)===c;const[u,l]=r,d=e["checked-data-type"],f=d==="date"?rt(l):l,h=d==="date"?rt(o):o;return Ie([u,f],[s,h],d)===c}function Cs(n,e){const t=e[1];return n.getAttr(t)}function Ms(n,e,t){const r=Object.keys(t)[0];return P(n,e,r)}function Ps(n,e,t,r){if(t)return Cs(n,t);if(r)return Ms(n,e,r)}function js(n,e,t){var s,i;if(!Array.isArray(t.fields))return Kr(n,e);const r=new Map;for(const o of t.fields){const a=P(n,e,o),c=(s=a==null?void 0:a["forward-identity"])==null?void 0:s[2];c&&Ye(a)&&r.set(c,a)}if(!r.has("id")){const o=P(n,e,"id"),a=(i=o==null?void 0:o["forward-identity"])==null?void 0:i[2];a&&r.set(a,o)}return r}function $s(n,e,{etype:t,pageInfo:r,dq:s,form:i}){var p,b;const o=(p=i==null?void 0:i.$)==null?void 0:p.order,a=cn(i),c=Ds(i);let u=Xr(n,s);const l=r==null?void 0:r["start-cursor"],d=Ps(e,t,l,o);if(d&&((b=d==null?void 0:d["forward-identity"])==null?void 0:b[2])!=="id"){const _=d["checked-data-type"]==="date",g=d.id;u=u.map(([y])=>{var S,m,E,k,K;let w=(K=(k=(E=(m=(S=n.eav.get(y))==null?void 0:S.get(g))==null?void 0:m.values())==null?void 0:E.next())==null?void 0:k.value)==null?void 0:K[2];return _&&(w=rt(w)),[y,w]})}u.sort(c==="asc"?function(g,y){return Ie(g,y,d==null?void 0:d["checked-data-type"])}:function(g,y){return Ie(y,g,d==null?void 0:d["checked-data-type"])});let f={};const h=js(e,t,s);for(const _ of u){const[g]=_;if(f[g]||!a&&l&&d&&Is(l,d,c,_))continue;const y=qr(n,h,g);y&&(f[g]=y)}return f}function Ds(n){var t;const e=(t=n.$)==null?void 0:t.order;return e&&e[Object.keys(e)[0]]||"asc"}function cn(n){var s,i,o;const e=(s=n.$)==null?void 0:s.offset,t=(i=n.$)==null?void 0:i.before,r=(o=n.$)==null?void 0:o.after;return!e&&!t&&!r}function Rs(n,e,{etype:t,level:r,form:s,join:i,pageInfo:o}){var f,h,p,b,_;if(!cn(s)&&(!o||!o["start-cursor"]))return[];const a=_s(As(e,t,r,(f=s.$)==null?void 0:f.where),i),c=Os(Ee,t,r),u=(h=s.$)==null?void 0:h.fields,l=$s(n,e,{etype:t,pageInfo:o,form:s,dq:{where:a,find:c,fields:u}}),d=((p=s.$)==null?void 0:p.limit)||((b=s.$)==null?void 0:b.first)||((_=s.$)==null?void 0:_.last);if(d!=null){r>0&&console.warn("WARNING: Limits in child queries are only run client-side. Data returned from the server will not have a limit.");const g=Object.entries(l);return g.length<=d?l:Object.fromEntries(g.slice(0,d))}return l}function xs(n,e,t){try{return Rs(n,e,t)}catch(r){if(r instanceof ie)return{};throw r}}function un(n,e,t){const r=xs(n,e,t);return ks(Ee,n,e,t,r)}function Us(n){const e={};for(const[t,r]of Object.entries(n))e[t]={startCursor:r["start-cursor"],endCursor:r["end-cursor"],hasNextPage:r["has-next-page?"],hasPreviousPage:r["has-previous-page?"]};return e}function st({store:n,attrsStore:e,pageInfo:t,aggregate:r},s){const o={data:Object.keys(s).reduce(function(c,u){return r!=null&&r[u]||u==="$$ruleParams"||(c[u]=un(n,e,{etype:u,form:s[u],level:0,pageInfo:t==null?void 0:t[u]})),c},{})};return t&&(o.pageInfo=Us(t)),r&&(o.aggregate=r),o}function Ls(){const e={__etype:1,__ops:1,create:1,update:1,link:1,unlink:1,delete:1,merge:1,ruleParams:1};return new Set(Object.keys(e))}const Fs=Ls();function it(n,e,t){const r={__etype:n,__ops:t};return new Proxy(r,{get:(s,i)=>{if(i==="__ops")return t;if(i==="__etype")return n;if(Fs.has(i))return(o,a)=>it(n,e,[...t,a?[i,n,e,o,a]:[i,n,e,o]])}})}function Ns(n,e){return`lookup__${n}__${JSON.stringify(e)}`}function Ce(n){return n.startsWith("lookup__")}function ln(n){const[e,t,...r]=n.split("__");return[t,JSON.parse(r.join("__"))]}function qs(n){return new Proxy({__etype:n},{get(e,t){if(t==="__etype")return n;const r=t;return Ce(r)?it(n,ln(r),[]):it(n,r,[])}})}function ot(){return new Proxy({},{get(n,e){return qs(e)}})}const Ks=ot();function dn(n){return n.__ops}function zs(n,e){const{attrIdMap:t,refSwapAttrIds:r}=n,s=[];for(const o of e){const a=t[o];if(a)s.push(a);else if(Array.isArray(o)&&o.length==2&&t[o[0]]){const[c,u]=o;s.push([t[c],u])}else s.push(o)}const[i]=e;if((i==="add-triple"||i==="retract-triple")&&r.has(e[2])){const o=s[1];s[1]=s[3],s[3]=o}return s}function Vs(n){if(Array.isArray(n))return n;const e=Object.entries(n);if(e.length!==1)throw new Error("lookup must be an object with a single unique attr and value.");return e[0]}function Qs(n,e,t){return t.indexOf(".")!==-1&&!P(n,e,t)}function at(n){const[e,t,...r]=n.split(".");if(r.length>0||t!=="id")throw new Error(`${n} is not a valid lookup attribute.`);return e}function Ws(n,e,t){if(!Qs(n,e,t))return P(n,e,t);const r=at(t),s=P(n,e,r)||ee(n,e,r);if(s&&s["value-type"]!=="ref")throw new Error(`${t} does not reference a valid link attribute.`);return s}function ct(n){return typeof n=="string"&&!Ce(n)?null:typeof n=="string"&&Ce(n)?ln(n):Vs(n)}function L(n,e,t){const r=ct(t);if(r===null)return t;const[s,i]=r,o=Ws(n,e,s);if(!o||!o["unique?"])throw new Error(`${s} is not a unique attribute.`);return[o.id,i]}function fn(n,e,t,r){var o;const s=L(n,e,t);return Array.isArray(s)?[["add-triple",s,(o=P(n,e,"id"))==null?void 0:o.id,s]].concat(r):r}function Gs({attrsStore:n},[e,t,r]){const s=Object.entries(r).flatMap(([i,o])=>{const a=Array.isArray(o)?o:[o],c=P(n,e,i),u=ee(n,e,i);return a.map(l=>c?["add-triple",L(n,e,t),c.id,L(n,c["reverse-identity"][1],l)]:["add-triple",L(n,u["forward-identity"][1],l),u==null?void 0:u.id,L(n,e,t)])});return fn(n,e,t,s)}function Bs({attrsStore:n},[e,t,r]){const s=Object.entries(r).flatMap(([i,o])=>{const a=Array.isArray(o)?o:[o],c=P(n,e,i),u=ee(n,e,i);return a.map(l=>c?["retract-triple",L(n,e,t),c.id,L(n,c["reverse-identity"][1],l)]:["retract-triple",L(n,u["forward-identity"][1],l),u.id,L(n,e,t)])});return fn(n,e,t,s)}function Hs(n,e,t,r){var s;if(Array.isArray(r)){const[i,o]=r;for(const a of n||[]){const c=a==null?void 0:a.aev.get(i);if(c){for(const[u,l,d]of U(c,2))if(d===o)return!0}}}else for(const i of n||[]){const o=i==null?void 0:i.eav.get(r);if(o){for(const a of o.keys())if(((s=e.getAttr(a))==null?void 0:s["forward-identity"][1])==t)return!0}}return!1}function hn({stores:n,attrsStore:e},[t,r,s,i]){return(i==null?void 0:i.upsert)===!1?{mode:"update"}:(i==null?void 0:i.upsert)===!0?null:Hs(n,e,t,r)?{mode:"update"}:null}function Js(n,e){const{attrsStore:t}=n,[r,s,i,o]=e,a=Be(i),c=L(t,r,s);return[["id",c]].concat(Object.entries(a)).map(([l,d])=>{const f=P(t,r,l);return f["checked-data-type"]==="date"&&n.useDateObjects&&(d=he(d)),["add-triple",c,f.id,d,{mode:"create"}]})}function Ys(n,e){const{attrsStore:t}=n,[r,s,i,o]=e,a=Be(i),c=L(t,r,s),u=hn(n,[r,c,i,o]);return[["id",c]].concat(Object.entries(a)).map(([d,f])=>{const h=P(t,r,d);return h["checked-data-type"]==="date"&&n.useDateObjects&&(f=he(f)),["add-triple",c,h.id,f,...u?[u]:[]]})}function Zs({attrsStore:n},[e,t]){return[["delete-entity",L(n,e,t),e]]}function Xs(n,e){const{attrsStore:t}=n,[r,s,i,o]=e,a=Be(i),c=L(t,r,s),u=hn(n,[r,c,i,o]),l=Object.entries(a).map(([f,h])=>{const p=P(t,r,f);return["deep-merge-triple",c,p.id,h,...u?[u]:[]]});return[["add-triple",c,P(t,r,"id").id,c,...u?[u]:[]]].concat(l)}function ei({attrsStore:n},[e,t,r]){return[["rule-params",L(n,e,t),e,r]]}function ti(n){const[e,t,r,s,i]=n;if(!s)return n;const o={...s};return delete o.id,[e,t,r,o,...i?[i]:[]]}function ni(n,e){const[t,...r]=ti(e);switch(t){case"merge":return Xs(n,r);case"create":return Js(n,r);case"update":return Ys(n,r);case"link":return Gs(n,r);case"unlink":return Bs(n,r);case"delete":return Zs(n,r);case"ruleParams":return ei(n,r);default:throw new Error(`unsupported action ${t}`)}}function ri(n){switch(n){case"string":case"date":case"boolean":case"number":return n;default:return}}function si(n,e,t){var a,c;const r=(c=(a=n.entities[e])==null?void 0:a.attrs)==null?void 0:c[t];if(t==="id")return null;if(!r)throw new Error(`${e}.${t} does not exist in your schema`);const{unique:s,indexed:i}=r==null?void 0:r.config,o=ri(r==null?void 0:r.valueType);return{"index?":i,"unique?":s,"checked-data-type":o}}function Me(n,e,t,r){const s=n?si(n,e,t):null,i=j(),a=[j(),e,t];return{id:i,"forward-identity":a,"value-type":"blob",cardinality:"one","unique?":!1,"index?":!1,isUnsynced:!0,...s||{},...r||{}}}function ii(n,e,t){return Object.values(n.links).find(i=>i.forward.on===e&&i.forward.label===t||i.reverse.on===e&&i.reverse.label===t)}function oi(n,e,t){const r=ii(n,e,t);if(!r)throw new Error(`Couldn't find the link ${e}.${t} in your schema`);const{forward:s,reverse:i}=r;return{"forward-identity":[j(),s.on,s.label],"reverse-identity":[j(),i.on,i.label],cardinality:s.has==="one"?"one":"many","unique?":i.has==="one","on-delete":s.onDelete,"on-delete-reverse":i.onDelete}}function pn(n,e,t,r){const s=n?oi(n,e,t):null,i=j(),o=[j(),e,t],a=[j(),t,e];return{id:i,"forward-identity":o,"reverse-identity":a,"value-type":"ref",cardinality:"many","unique?":!1,"index?":!1,isUnsynced:!0,...s||{},...r||{}}}const ai=new Set(["create","update","merge","link","unlink"]),ci=new Set(["link","unlink"]),ui=new Set(["create","update","merge"]),li=new Set(["link","unlink","create","update","merge","delete","ruleParams"]),ut={"unique?":!0,"index?":!0},di={...ut,cardinality:"one"};function fi(n){const e=[],[t,r,s,i]=n;if(!li.has(t))return e;const o=ct(s);if(o&&e.push({etype:r,lookupPair:o}),t==="link")for(const[a,c]of Object.entries(i)){const u=Array.isArray(c)?c:[c];for(const l of u){const d=ct(l);d&&e.push({etype:r,lookupPair:d,linkLabel:a})}}return e}function hi({attrsStore:n,schema:e},t){var f,h;const r=new Set,s=[],i=[];function o(p,b){return P(n,p,b)||s.find(_=>_["forward-identity"][1]===p&&_["forward-identity"][2]===b)}function a(p,b){return ee(n,p,b)||s.find(_=>{var g,y;return((g=_["reverse-identity"])==null?void 0:g[1])===p&&((y=_["reverse-identity"])==null?void 0:y[2])===b})}function c(p){s.push(p),i.push(["add-attr",p]),r.add(p.id)}function u(p){p&&"isUnsynced"in p&&p.isUnsynced&&!r.has(p.id)&&(s.push(p),i.push(["add-attr",p]),r.add(p.id))}function l(p,b){return b.indexOf(".")!==-1&&!o(p,b)}function d(p,b){const _=o(p,b),g=a(p,b);u(_),u(g),!_&&!g&&c(pn(e,p,b,di))}for(const p of t)for(const{etype:b,lookupPair:_,linkLabel:g}of fi(p)){const y=_[0];if(g){d(b,g);const w=o(b,g),S=a(b,g);u(w),u(S);const m=((f=w==null?void 0:w["reverse-identity"])==null?void 0:f[1])||((h=S==null?void 0:S["forward-identity"])==null?void 0:h[1])||g;if(l(m,y))d(m,at(y));else{const E=o(m,y);E||c(Me(e,m,y,ut)),u(E)}}else if(l(b,y))d(b,at(y));else{const w=o(b,y);w||c(Me(e,b,y,ut)),u(w)}}for(const p of t){const[b,_,g,y]=p;if(ai.has(b)){const w=o(_,"id");u(w),w||c(Me(e,_,"id",{"unique?":!0}));for(const S of Object.keys(y)){const m=o(_,S);if(u(m),ui.has(b)&&(m||c(Me(e,_,S,S==="id"?{"unique?":!0}:null))),ci.has(b)){const E=a(_,S);!m&&!E&&c(pn(e,_,S)),u(E)}}}}if(s.length){const p={...n.attrs};for(const b of s)p[b.id]=b;return[new J(p,n.linkIndex),i]}return[n,i]}function pi(n,e){const r=(Array.isArray(e)?e:[e]).flatMap(c=>dn(c)),[s,i]=hi(n,r),o={...n,attrsStore:s},a=r.flatMap(c=>ni(o,c));return[...i,...a]}function yn(n,e){typeof requestIdleCallback>"u"?n():requestIdleCallback(n,{timeout:e})}const ge="__meta";class bn{constructor(e,t){}}class lt{constructor(e){this._subs=[],this._nextSave=null,this._nextGc=null,this._pendingSaveKeys=new Set,this._loadedKeys=new Set,this._version=0,this._meta={isLoading:!0,onLoadCbs:[],value:null,error:null,attempts:0},this._persister=e.persister,this._merge=e.merge,this.serialize=e.serialize,this.parse=e.parse,this._objectSize=e.objectSize,this._log=e.logger,this._saveThrottleMs=e.saveThrottleMs??100,this._idleCallbackMaxWaitMs=e.idleCallbackMaxWaitMs??1e3,this._gcOpts=e.gc,this.currentValue={},this._loadedKeys=new Set,this._loadingKeys={},this._initMeta(),e.preloadEntryCount&&this._preloadEntries(e.preloadEntryCount)}async _initMeta(){var e;this._meta.loadingPromise&&await this._meta.loadingPromise;try{const t=this._persister.getItem(ge);this._meta.loadingPromise=t;const r=await t;this._meta.isLoading=!1,this._meta.error=null,this._meta.loadingPromise=null,this._meta.attempts=0;const s=((e=this._meta.value)==null?void 0:e.objects)??{},i=r??{},o=i.objects??{};this._meta.value={...i,objects:{...s,...o}}}catch(t){this._meta.error=t,this._meta.attempts++,this._meta.loadingPromise=null}}async _getMeta(){return this._meta.value?this._meta.value:this._meta.loadingPromise?(await this._meta.loadingPromise,this._meta.value):(this._initMeta(),await this._meta.loadingPromise,this._meta.value)}async _refreshMeta(){return await this._initMeta(),this._meta.value}async _preloadEntries(e){const t=await this.waitForMetaToLoad();if(!t)return;const r=Object.entries(t.objects);r.sort(([s,i],[o,a])=>a.updatedAt-i.updatedAt);for(const[s]of r.slice(0,e))this._loadKey(s)}async _getFromStorage(e){try{const t=await this._persister.getItem(e);return t&&this.parse(e,t)}catch(t){return console.error(`Unable to read from storage for key=${e}`,t),null}}async waitForKeyToLoad(e){return this._loadedKeys.has(e)?this.currentValue[e]:(await(this._loadingKeys[e]||this._loadKey(e)),this.currentValue[e])}async waitForMetaToLoad(){return this._getMeta()}unloadKey(e){this._loadedKeys.delete(e),delete this._loadingKeys[e],delete this.currentValue[e]}async _loadKey(e){if(this._loadedKeys.has(e)||e in this._loadingKeys)return;const t=this._getFromStorage(e);this._loadingKeys[e]=t;const r=await t;if(delete this._loadingKeys[e],this._loadedKeys.add(e),r){const s=this._merge(e,r,this.currentValue[e]);s&&(this.currentValue[e]=s)}this.onKeyLoaded&&this.onKeyLoaded(e)}_writeToStorage(e){const t=[],r=e==null?void 0:e.skipGc;if(this._meta.isLoading){const d=new Promise((f,h)=>{setTimeout(()=>this._enqueuePersist(e?{...e,attempts:(e.attempts||0)+1}:{attempts:1}).then(f).catch(h),10+((e==null?void 0:e.attempts)??0)*1e3)});return t.push(d),Promise.all(t).then(f=>f.reduce((h,p)=>h+p,0))}const s=this._meta.value;if(!s)return Promise.resolve(0);const i=[],o=[];for(const d of this._pendingSaveKeys)d in this.currentValue?o.push(d):(i.push(d),delete s.objects[d]);for(const d of i){const f=this._persister.removeItem(d);t.push(f.then(()=>1)),this._loadedKeys.delete(d),this._pendingSaveKeys.delete(d)}const a=[],c=[[ge,s]],u=s.objects??{};s.objects=u;for(const d of o)if(this._loadedKeys.has(d)){const f=this.serialize(d,this.currentValue[d]);c.push([d,f]);const h=this._objectSize(f),p=u[d]??{createdAt:Date.now(),updatedAt:Date.now(),size:h};p.updatedAt=Date.now(),p.size=h,u[d]=p,this._pendingSaveKeys.delete(d)}else a.push(d);const l=this._persister.multiSet(c);t.push(l.then(()=>1));for(const d of a){const f=this._loadKey(d).then(()=>this._enqueuePersist(e));t.push(f)}return r||this.gc(),Promise.all(t).then(d=>d.reduce((f,h)=>f+h,0))}async flush(){return this._nextSave?(clearTimeout(this._nextSave),this._nextSave=null,this._writeToStorage()):void 0}async _gc(){if(!this._gcOpts)return;const e=new Set(await this._persister.getAllKeys());e.delete(ge);const t=new Set(Object.keys(this.currentValue));for(const f of Object.keys(this._loadingKeys))t.add(f);for(const f of this._loadedKeys)t.add(f);const r=await this._refreshMeta();if(!r){this._log.info("Could not gc because we were not able to load meta");return}const s=[],i={gcOpts:this._gcOpts,keys:e,sacredKeys:t,removed:[],metaRemoved:[],removedMissingCount:0,removedOldCount:0,removedThresholdCount:0,removedSizeCount:0};for(const f of e)t.has(f)||f in r.objects||(this._log.info("Lost track of key in meta",f),s.push(this._persister.removeItem(f)),i.removed.push(f),i.removedMissingCount++);const o=Date.now();for(const[f,h]of Object.entries(r.objects))!t.has(f)&&h.updatedAt<o-this._gcOpts.maxAgeMs&&(s.push(this._persister.removeItem(f)),delete r.objects[f],i.removed.push(f),i.removedOldCount++);const a=Object.entries(r.objects);a.sort(([f,h],[p,b])=>h.updatedAt-b.updatedAt);const c=a.filter(([f])=>!t.has(f));if(a.length>this._gcOpts.maxEntries)for(const[f]of c.slice(0,a.length-this._gcOpts.maxEntries))s.push(this._persister.removeItem(f)),delete r.objects[f],i.removed.push(f),i.removedThresholdCount++;const u=Object.entries(r.objects);u.sort(([f,h],[p,b])=>h.updatedAt-b.updatedAt);const l=u.filter(([f])=>!t.has(f));let d=u.reduce((f,[h,p])=>f+p.size,0);for(;d>0&&d>this._gcOpts.maxSize&&l.length;){const[[f,h]]=l.splice(0,1);d-=h.size,s.push(this._persister.removeItem(f)),delete r.objects[f],i.removed.push(f),i.removedSizeCount++}for(const f of Object.keys(r.objects))!e.has(f)&&!t.has(f)&&delete r.objects[f];return(i.removed.length||i.metaRemoved.length)&&s.push(this._enqueuePersist({skipGc:!0})),this._log.info("Completed GC",i),await Promise.all(s),i}gc(){this._nextGc||(this._nextGc=setTimeout(()=>{yn(()=>{this._nextGc=null,this._gc()},30*1e3)},1e3*60+Math.random()*500))}_enqueuePersist(e){return new Promise((t,r)=>{if(this._nextSave){t(0);return}this._nextSave=setTimeout(()=>{yn(()=>{this._nextSave=null,this._writeToStorage(e).then(t).catch(r)},this._idleCallbackMaxWaitMs)},this._saveThrottleMs)})}version(){return this._version}updateInPlace(e){this._version++;const[t,r]=Oe(this.currentValue,e,{enablePatches:!0});for(const s of r){const i=s.path[0];i&&typeof i=="string"&&(this._pendingSaveKeys.add(i),this._loadedKeys.has(i)||this._loadKey(i))}this.currentValue=t,this._enqueuePersist();for(const s of this._subs)s(this.currentValue);return t}subscribe(e){return this._subs.push(e),e(this.currentValue),()=>{this._subs=this._subs.filter(t=>t!==e)}}}const yi=6,bi=["kv","querySubs","syncSubs"];function gi(n){return function(t){console.error("Error in IndexedDB event",{source:n,event:t})}}async function _i(n){return new Promise(e=>{const t=indexedDB.open(n);t.onerror=r=>{e(null)},t.onsuccess=r=>{const i=r.target.result;e(i)},t.onupgradeneeded=r=>{var i;(i=r.target.transaction)==null||i.abort(),e(null)}})}async function wi(n,e,t){const r=typeof e=="string"?JSON.parse(e):e;if(!r)return;const s=new Set;return new Promise((i,o)=>{var l,d,f;const a={};for(const[h,p]of Object.entries(r)){const b=typeof p=="string"?JSON.parse(p):p;if(b.lastAccessed){const g={createdAt:b.lastAccessed,updatedAt:b.lastAccessed,size:((f=(d=(l=b.result)==null?void 0:l.store)==null?void 0:d.triples)==null?void 0:f.length)??0};a[h]=g}const _=t.put(b,h);s.add(_)}const c={objects:a},u=t.put(c,ge);s.add(u);for(const h of s)h.onsuccess=()=>{s.delete(h),s.size===0&&i()},h.onerror=p=>{o(p)}})}async function gn(n,e,t){const r=t.put(e,n);return new Promise((s,i)=>{r.onsuccess=()=>s(),r.onerror=o=>i(o)})}async function Ti(n,e){const t=await _i(`instant_${n}_5`);if(!t)return;const r=await new Promise((l,d)=>{const p=t.transaction(["kv"],"readonly").objectStore("kv").openCursor();p.onerror=_=>{d(_)};const b=[];p.onsuccess=()=>{const _=p.result;if(_){const g=_.key,y=_.value;b.push([g,y]),_.continue()}else l(b)},p.onerror=_=>{d(_)}}),s=e.transaction(["kv","querySubs"],"readwrite"),i=s.objectStore("kv"),o=s.objectStore("querySubs"),a=[],c={objects:{}};for(const[l,d]of r)switch(l){case"querySubs":{const f=wi(l,d,o);a.push(f);break}default:{const f=gn(l,d,i);a.push(f);const h={createdAt:Date.now(),updatedAt:Date.now(),size:0};c.objects[l]=h;break}}const u=gn(ge,c,i);a.push(u),await Promise.all(a),await new Promise((l,d)=>{s.oncomplete=f=>l(f),s.onerror=f=>d(f),s.onabort=f=>d(f)})}const _n=new Map;class dt extends bn{constructor(e,t){super(e,t),this.dbName=`instant_${e}_${yi}`,this._storeName=t,this._appId=e,this._dbPromise=this._init()}_init(){return new Promise((e,t)=>{let r=!1;const s=indexedDB.open(this.dbName,1);s.onerror=i=>{t(i)},s.onsuccess=i=>{const a=i.target.result;if(r){const c=Ti(this._appId,a).catch(u=>{gi("Error upgrading store from version 5 to 6.")(u)});_n.set(this.dbName,c),c.then(()=>e(a)).catch(()=>e(a))}else{const c=_n.get(this.dbName);c?c.then(()=>e(a)).catch(()=>e(a)):e(a)}},s.onupgradeneeded=i=>{r=!0,this._upgradeStore(i)}})}_upgradeStore(e){const r=e.target.result;for(const s of bi)r.objectStoreNames.contains(s)||r.createObjectStore(s)}async getItem(e){const t=await this._dbPromise;return new Promise((r,s)=>{const a=t.transaction([this._storeName],"readonly").objectStore(this._storeName).get(e);a.onerror=c=>{s(c)},a.onsuccess=c=>{a.result?r(a.result):r(null)}})}async setItem(e,t){const r=await this._dbPromise;return new Promise((s,i)=>{const c=r.transaction([this._storeName],"readwrite").objectStore(this._storeName).put(t,e);c.onerror=u=>{i(u)},c.onsuccess=u=>{s()}})}async multiSet(e){const t=await this._dbPromise;return new Promise((r,s)=>{const i=t.transaction([this._storeName],"readwrite"),o=i.objectStore(this._storeName),a=new Set;for(const[c,u]of e){const l=o.put(u,c);a.add(l)}for(const c of a)c.onerror=u=>{i.abort(),s(u)},c.onsuccess=u=>{a.delete(c),a.size===0&&r()}})}async removeItem(e){const t=await this._dbPromise;return new Promise((r,s)=>{const a=t.transaction([this._storeName],"readwrite").objectStore(this._storeName).delete(e);a.onerror=c=>{s(c)},a.onsuccess=c=>{r()}})}async getAllKeys(){const e=await this._dbPromise;return new Promise((t,r)=>{const o=e.transaction([this._storeName],"readonly").objectStore(this._storeName).getAllKeys();o.onerror=a=>{r(a)},o.onsuccess=a=>{t(o.result.filter(c=>typeof c=="string"))}})}}class ft{static async getIsOnline(){return navigator.onLine}static listen(e){const t=()=>{e(!0)},r=()=>{e(!1)};return addEventListener("online",t),addEventListener("offline",r),()=>{removeEventListener("online",t),removeEventListener("offline",r)}}}class oe extends Error{constructor(e,t){super(e),this.hint=t;const r=new.target.prototype;Object.setPrototypeOf&&Object.setPrototypeOf(this,r),Error.captureStackTrace&&Error.captureStackTrace(this,oe),this.name="InstantError"}get[Symbol.toStringTag](){return"InstantError"}}class _e extends oe{constructor(e){var s;const t=((s=e.body)==null?void 0:s.message)||`API Error (${e.status})`;super(t,e.body.hint);const r=new.target.prototype;Object.setPrototypeOf&&Object.setPrototypeOf(this,r),Error.captureStackTrace&&Error.captureStackTrace(this,_e),this.name="InstantAPIError",this.status=e.status,this.body=e.body}get[Symbol.toStringTag](){return"InstantAPIError"}}async function Q(n,e){const t=await fetch(n,e),r=await t.json();return t.status===200?Promise.resolve(r):Promise.reject(new _e({status:t.status,body:r}))}function mi({apiURI:n,appId:e,email:t}){return Q(`${n}/runtime/auth/send_magic_code`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({"app-id":e,email:t})})}async function Si({apiURI:n,appId:e,email:t,code:r,refreshToken:s}){return await Q(`${n}/runtime/auth/verify_magic_code`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({"app-id":e,email:t,code:r,...s?{"refresh-token":s}:{}})})}async function Ai({apiURI:n,appId:e,refreshToken:t}){return await Q(`${n}/runtime/auth/verify_refresh_token`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({"app-id":e,"refresh-token":t})})}async function Oi({apiURI:n,appId:e}){return await Q(`${n}/runtime/auth/sign_in_guest`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({"app-id":e})})}async function wn({apiURI:n,appId:e,code:t,codeVerifier:r,refreshToken:s}){return await Q(`${n}/runtime/oauth/token`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({app_id:e,code:t,code_verifier:r,refresh_token:s})})}async function vi({apiURI:n,appId:e,nonce:t,idToken:r,clientName:s,refreshToken:i}){return await Q(`${n}/runtime/oauth/id_token`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({app_id:e,nonce:t,id_token:r,client_name:s,refresh_token:i})})}async function ki({apiURI:n,appId:e,refreshToken:t}){return await Q(`${n}/runtime/signout`,{method:"POST",headers:{"content-type":"application/json"},body:JSON.stringify({app_id:e,refresh_token:t})})}async function Ei({apiURI:n,appId:e,path:t,file:r,refreshToken:s,contentType:i,contentDisposition:o}){const a={app_id:e,path:t,authorization:`Bearer ${s}`,"content-type":i||r.type};return o&&(a["content-disposition"]=o),await Q(`${n}/storage/upload`,{method:"PUT",headers:a,body:r})}async function Ii({apiURI:n,appId:e,path:t,refreshToken:r}){const{data:s}=await Q(`${n}/storage/files?app_id=${e}&filename=${encodeURIComponent(t)}`,{method:"DELETE",headers:{"content-type":"application/json",authorization:`Bearer ${r}`}});return s}async function Ci({apiURI:n,appId:e,fileName:t,refreshToken:r,metadata:s={}}){const{data:i}=await Q(`${n}/storage/signed-upload-url`,{method:"POST",headers:{"content-type":"application/json",authorization:`Bearer ${r}`},body:JSON.stringify({app_id:e,filename:t})});return i}async function Mi(n,e){return(await fetch(n,{method:"PUT",body:e,headers:{"Content-Type":e.type}})).ok}async function Pi({apiURI:n,appId:e,path:t,refreshToken:r}){const{data:s}=await Q(`${n}/storage/signed-download-url?app_id=${e}&filename=${encodeURIComponent(t)}`,{method:"GET",headers:{"content-type":"application/json",authorization:`Bearer ${r}`}});return s}let ht=!1,Tn=!1,mn=!1;typeof window<"u"&&typeof window.localStorage<"u"&&(ht=!!window.localStorage.getItem("devBackend"),Tn=!!window.localStorage.getItem("__instantLogging"),mn=!!window.localStorage.getItem("__devtoolLocalDash"));function Sn(n,e){if(!e)return n;const t={};return e.forEach(r=>{t[r]=n[r]}),t}function ji(n,e,t){const r={peers:{}};if(e&&"user"in e?e.user:!0){const i=Sn(n.user??{},e==null?void 0:e.keys);r.user={...i,peerId:t}}for(const i of Object.keys(n.peers??{})){const o=(e==null?void 0:e.peers)===void 0,a=Array.isArray(e==null?void 0:e.peers)&&(e==null?void 0:e.peers.includes(i));if(o||a){const c=Sn(n.peers[i],e==null?void 0:e.keys);r.peers[i]={...c,peerId:i}}}return r}function $i(n,e){if(n.isLoading!==e.isLoading||n.error!==e.error||(n.user||e.user)&&(!n.user||!e.user||!xt(n.user,e.user))||!Rt(n.peers,e.peers))return!0;for(const r of Object.keys(n.peers))if(!xt(n.peers[r],e.peers[r]))return!0;return!1}class An{constructor(){T(this,"promise");T(this,"_resolve");T(this,"_reject");this.promise=new Promise((e,t)=>{this._resolve=e,this._reject=t})}resolve(e){this._resolve(e)}reject(e){this._reject(e)}}function On(n,e=[]){n.forEach(t=>{const{data:r}=t,{"datalog-result":s}=r,{"join-rows":i}=s;for(const o of i)for(const a of o)e.push(a);On(t["child-nodes"],e)})}function vn(n){const e=[];return On(n,e),e}function pt(n){return Object.values(n.links).reduce((e,t)=>{var r,s;return e[r=t.forward.on]??(e[r]={}),e[t.forward.on][t.forward.label]={isForward:!0,isSingular:t.forward.has==="one",link:t},e[s=t.reverse.on]??(e[s]={}),e[t.reverse.on][t.reverse.label]={isForward:!1,isSingular:t.reverse.has==="one",link:t},e},{})}const yt="v0.22.89-experimental.drewh-ssr.20277611943.1";function Di(n,e){return{info:n?(...t)=>console.info(...t,e()):()=>{},debug:n?(...t)=>console.debug(...t,e()):()=>{},error:n?(...t)=>console.error(...t,e()):()=>{}}}class R{constructor(e,t,r,s={indexed:!1,unique:!1}){this.valueType=e,this.required=t,this.isIndexed=r,this.config=s,this.metadata={}}clientRequired(){return new R(this.valueType,!1,this.isIndexed,this.config)}optional(){return new R(this.valueType,!1,this.isIndexed,this.config)}unique(){return new R(this.valueType,this.required,this.isIndexed,{...this.config,unique:!0})}indexed(){return new R(this.valueType,this.required,!0,{...this.config,indexed:!0})}}class Pe{constructor(e,t){this.attrs=e,this.links=t}asType(){return new Pe(this.attrs,this.links)}}class je{constructor(e,t,r){this.entities=e,this.links=t,this.rooms=r}withRoomSchema(){return new je(this.entities,this.links,{})}}class C extends Error{constructor(e,t){const r=t?`At path '${t}': ${e}`:e;super(r),this.name="QueryValidationError"}}const kn=["where","order","limit","last","first","offset","after","before","fields","aggregate"],Ri=n=>n.valueType||"unknown",En=(n,e,t=!1)=>{if(t||n==null)return!0;switch(e){case"string":return typeof n=="string";case"number":return typeof n=="number"&&!isNaN(n);case"boolean":return typeof n=="boolean";case"date":return n instanceof Date||typeof n=="string"||typeof n=="number";default:return!0}},xi=(n,e,t,r,s,i,o)=>{const a=i.valueType==="json",c=(u,l,d)=>{if(!En(d,l,a))throw new C(`Invalid value for operator '${u}' on attribute '${r}' in entity '${s}'. Expected ${l}, but received: ${typeof d}`,o)};switch(n){case"in":case"$in":if(!Array.isArray(e))throw new C(`Operator '${n}' for attribute '${r}' in entity '${s}' must be an array, but received: ${typeof e}`,o);for(const u of e)c(n,t,u);break;case"$not":case"$ne":case"$gt":case"$lt":case"$gte":case"$lte":c(n,t,e);break;case"$like":case"$ilike":if(c(n,"string",e),n==="$ilike"&&!i.isIndexed)throw new C(`Operator '${n}' can only be used with indexed attributes, but '${r}' in entity '${s}' is not indexed`,o);break;case"$isNull":c(n,"boolean",e);break;default:throw new C(`Unknown operator '${n}' for attribute '${r}' in entity '${s}'`,o)}},ae=(n,e,t,r,s)=>{const i=Ri(t),o=t.valueType==="json";if(typeof n=="object"&&n!==null&&!Array.isArray(n)){if(o)return;const c=n;for(const[u,l]of Object.entries(c))xi(u,l,i,e,r,t,`${s}.${u}`)}else if(!En(n,i,o))throw new C(`Invalid value for attribute '${e}' in entity '${r}'. Expected ${i}, but received: ${typeof n}`,s)},Ui=(n,e,t,r,s)=>{const i=n.split(".");if(i.length<2)throw new C(`Invalid dot notation path '${n}'. Must contain at least one dot.`,s);let o=t;for(let l=0;l<i.length-1;l++){const d=i[l],f=r.entities[o];if(!f)throw new C(`Entity '${o}' does not exist in schema while traversing dot notation path '${n}'.`,s);const h=f.links[d];if(!h){const p=Object.keys(f.links);throw new C(`Link '${d}' does not exist on entity '${o}' in dot notation path '${n}'. Available links: ${p.length>0?p.join(", "):"none"}`,s)}o=h.entityName}const a=i[i.length-1],c=r.entities[o];if(!c)throw new C(`Target entity '${o}' does not exist in schema for dot notation path '${n}'.`,s);if(a==="id"){if(typeof e=="string"&&!se(e))throw new C(`Invalid value for id field in entity '${o}'. Expected a UUID, but received: ${e}`,s);ae(e,n,new R("string",!1,!0),t,s);return}const u=c.attrs[a];if(Object.keys(c.links).includes(a)){if(typeof e=="string"&&!se(e))throw new C(`Invalid value for link '${a}' in entity '${o}'. Expected a UUID, but received: ${e}`,s);ae(e,n,new R("string",!1,!0),t,s);return}if(!u){const l=Object.keys(c.attrs);throw new C(`Attribute '${a}' does not exist on entity '${o}' in dot notation path '${n}'. Available attributes: ${l.length>0?l.join(", ")+", id":"id"}`,s)}ae(e,n,u,t,s)},In=(n,e,t,r)=>{for(const[s,i]of Object.entries(n)){if(s==="or"||s==="and"){if(Array.isArray(i))for(const u of i)typeof u=="object"&&u!==null&&In(u,e,t,`${r}.${s}[${u}]`);continue}if(s==="id"){ae(i,"id",new R("string",!1,!0),e,`${r}.id`);continue}if(s.includes(".")){Ui(s,i,e,t,`${r}.${s}`);continue}const o=t.entities[e];if(!o)continue;const a=o.attrs[s],c=o.links[s];if(!a&&!c){const u=Object.keys(o.attrs),l=Object.keys(o.links);throw new C(`Attribute or link '${s}' does not exist on entity '${e}'. Available attributes: ${u.length>0?u.join(", "):"none"}. Available links: ${l.length>0?l.join(", "):"none"}`,`${r}.${s}`)}if(a)ae(i,s,a,e,`${r}.${s}`);else if(c){if(typeof i=="string"&&!se(i))throw new C(`Invalid value for link '${s}' in entity '${e}'. Expected a UUID, but received: ${i}`,`${r}.${s}`);const u=new R("string",!1,!0);ae(i,s,u,e,`${r}.${s}`)}}},Li=(n,e,t,r,s=0)=>{for(const o of Object.keys(n))if(!kn.includes(o))throw new C(`Invalid query parameter '${o}' in $ object. Valid parameters are: ${kn.join(", ")}. Found: ${o}`,r);const i=["offset","before","after","first","last"];for(const o of i)if(n[o]!==void 0&&s>0)throw new C(`'${o}' can only be used on top-level namespaces. It cannot be used in nested queries.`,r);if(n.where&&t){if(typeof n.where!="object"||n.where===null)throw new C(`'where' clause must be an object in entity '${e}', but received: ${typeof n.where}`,r?`${r}.where`:void 0);In(n.where,e,t,r?`${r}.where`:"where")}},Cn=(n,e,t,r,s=0)=>{var i;if(!n||typeof n!="object")throw new C(`Query part for entity '${e}' must be an object, but received: ${typeof n}`,r);for(const o of Object.keys(n))if(o!=="$"){if(t&&!(o in t.entities[e].links)){const c=Object.keys(t.entities[e].links);throw new C(`Link '${o}' does not exist on entity '${e}'. Available links: ${c.length>0?c.join(", "):"none"}`,`${r}.${o}`)}const a=n[o];if(typeof a=="object"&&a!==null){const c=(i=t==null?void 0:t.entities[e].links[o])==null?void 0:i.entityName;c&&Cn(a,c,t,`${r}.${o}`,s+1)}}else{const a=n[o];if(typeof a!="object"||a===null)throw new C(`Query parameter '$' must be an object in entity '${e}', but received: ${typeof a}`,`${r}.$`);Li(a,e,t,`${r}.$`,s)}},bt=(n,e)=>{if(typeof n!="object"||n===null)throw new C(`Query must be an object, but received: ${typeof n}${n===null?" (null)":""}`);if(Array.isArray(n))throw new C(`Query must be an object, but received: ${typeof n}`);const t=n;for(const r of Object.keys(t)){if(Array.isArray(n[r]))throw new C(`Query keys must be strings, but found key of type: ${typeof r}`,r);if(typeof r!="string")throw new C(`Query keys must be strings, but found key of type: ${typeof r}`,r);if(r!=="$$ruleParams"){if(e&&!e.entities[r]){const s=Object.keys(e.entities);throw new C(`Entity '${r}' does not exist in schema. Available entities: ${s.length>0?s.join(", "):"none"}`,r)}Cn(t[r],r,e,r,0)}}},Mn=n=>typeof n!="string"?!1:Ce(n)?!0:se(n);class q extends Error{constructor(e){super(e),this.name="TransactionValidationError"}}const Pn=n=>n.length>0?n.join(", "):"none",Fi=(n,e)=>new q(`Entity '${n}' does not exist in schema. Available entities: ${Pn(e)}`),gt={string:n=>typeof n=="string",number:n=>typeof n=="number"&&!isNaN(n),boolean:n=>typeof n=="boolean",date:n=>n instanceof Date||typeof n=="string"||typeof n=="number",json:()=>!0},Ni=(n,e)=>{var t;return n==null?!0:((t=gt[e.valueType])==null?void 0:t.call(gt,n))??!1},jn=(n,e)=>{const t=e.entities[n];if(!t)throw Fi(n,Object.keys(e.entities));return t},_t=(n,e,t)=>{const r=jn(n,t);if(typeof e!="object"||e===null)throw new q(`Arguments for data operation on entity '${n}' must be an object, but received: ${typeof e}`);for(const[s,i]of Object.entries(e)){if(s==="id")continue;const o=r.attrs[s];if(o&&!Ni(i,o))throw new q(`Invalid value for attribute '${s}' in entity '${n}'. Expected ${o.valueType}, but received: ${typeof i}`)}},$n=(n,e,t)=>{const r=jn(n,t);if(typeof e!="object"||e===null)throw new q(`Arguments for link operation on entity '${n}' must be an object, but received: ${typeof e}`);for(const[s,i]of Object.entries(e)){if(!r.links[s]){const a=Object.keys(r.links);throw new q(`Link '${s}' does not exist on entity '${n}'. Available links: ${Pn(a)}`)}if(i!=null){if(Array.isArray(i)){for(const a of i)if(!Mn(a))throw new q(`Invalid entity ID in link '${s}' for entity '${n}'. Expected a UUID or a lookup, but received: ${a}`)}else if(!Mn(i))throw new q(`Invalid UUID in link '${s}' for entity '${n}'. Expected a UUID, but received: ${i}`)}}},qi={create:_t,update:_t,merge:_t,link:$n,unlink:$n,delete:()=>{}},Ki=(n,e)=>{if(!e)return;const[t,r,s,i]=n;if(!Array.isArray(s)&&!se(s))throw new q(`Invalid id for entity '${r}'. Expected a UUID, but received: ${s}`);if(typeof r!="string")throw new q(`Entity name must be a string, but received: ${typeof r}`);const o=qi[t];o&&i!==void 0&&o(r,i,e)},Dn=(n,e)=>{const t=Array.isArray(n)?n:[n];for(const r of t){if(!r||typeof r!="object")throw new q(`Transaction chunk must be an object, but received: ${typeof r}`);if(!Array.isArray(r.__ops))throw new q(`Transaction chunk must have __ops array, but received: ${typeof r.__ops}`);for(const s of r.__ops){if(!Array.isArray(s))throw new q(`Transaction operation must be an array, but received: ${typeof s}`);Ki(s,e)}}};let Rn=0;class xn{constructor(e){this.type="ws",this.id=`${this.type}_${Rn++}`,this.conn=new WebSocket(e),this.conn.onopen=t=>{this.onopen&&this.onopen({target:this})},this.conn.onmessage=t=>{this.onmessage&&this.onmessage({target:this,message:JSON.parse(t.data.toString())})},this.conn.onclose=t=>{this.onclose&&this.onclose({target:this})},this.conn.onerror=t=>{this.onerror&&this.onerror({target:this})}}close(){this.conn.close()}isOpen(){return this.conn.readyState===(WebSocket.OPEN??1)}isConnecting(){return this.conn.readyState===(WebSocket.CONNECTING??0)}send(e){return this.conn.send(JSON.stringify(e))}}class zi{constructor(e,t){this.type="sse",this.initParams=null,this.sendQueue=[],this.closeFired=!1,this.sseInitTimeout=void 0,this.id=`${this.type}_${Rn++}`,this.url=t,this.ES=e,this.conn=new e(t),this.sseInitTimeout=setTimeout(()=>{this.initParams||this.handleError()},1e4),this.conn.onmessage=r=>{const s=JSON.parse(r.data);if(Array.isArray(s))for(const i of s)this.handleMessage(i);else this.handleMessage(s)},this.conn.onerror=r=>{this.handleError()}}handleMessage(e){if(e.op==="sse-init"){this.initParams={machineId:e["machine-id"],sessionId:e["session-id"],sseToken:e["sse-token"]},this.onopen&&this.onopen({target:this}),clearTimeout(this.sseInitTimeout);return}this.onmessage&&this.onmessage({target:this,message:e})}handleError(){try{this.onerror&&this.onerror({target:this})}finally{this.handleClose()}}handleClose(){this.conn.close(),this.onclose&&!this.closeFired&&(this.closeFired=!0,this.onclose({target:this}))}async postMessages(e){var t,r,s;try{(await fetch(this.url,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({machine_id:(t=this.initParams)==null?void 0:t.machineId,session_id:(r=this.initParams)==null?void 0:r.sessionId,sse_token:(s=this.initParams)==null?void 0:s.sseToken,messages:e})})).ok||this.handleError()}catch{this.handleError()}}async flushQueue(){if(this.sendPromise||!this.sendQueue.length)return;const e=this.sendQueue;this.sendQueue=[];const t=this.postMessages(e);this.sendPromise=t,t.then(()=>{this.sendPromise=null,this.flushQueue()})}send(e){if(!this.isOpen()||!this.initParams)throw this.isConnecting()?new Error("Failed to execute 'send' on 'EventSource': Still in CONNECTING state."):this.conn.readyState===this.ES.CLOSED?new Error("EventSource is already in CLOSING or CLOSED state."):new Error("EventSource is in invalid state.");this.sendQueue.push(e),this.flushQueue()}isOpen(){return this.conn.readyState===this.ES.OPEN&&this.initParams!==null}isConnecting(){return this.conn.readyState===this.ES.CONNECTING||this.conn.readyState===this.ES.OPEN&&this.initParams===null}close(){this.handleClose()}}function Vi(n,e){const t=n.values;if(t){const r=Vt(t.attrsStore,null);if(r){for(const s of t.entities||[])s.store.useDateObjects=e,s.store=zt(r,s.store);t.attrsStore=r}}return n}function Qi(n,e){var t;if(e.values){const r=[];for(const s of(t=e.values)==null?void 0:t.entities){const i=Kt(s.store);r.push({...s,store:i})}return{...e,values:{attrsStore:e.values.attrsStore.toJSON(),entities:r}}}else return e}function Wi(n,e,t){var i,o;const r=(i=e==null?void 0:e.state)==null?void 0:i.txId,s=(o=t==null?void 0:t.state)==null?void 0:o.txId;return r&&(!s||r>s)?e:s&&(!r||s>r)?t:e||t}function wt(n,e,t){return st({store:e,attrsStore:t,pageInfo:null,aggregate:null},n.query).data[n.table][0]}function Un(n,e,t,r){var o;const s=(o=P(t,n.table,"id"))==null?void 0:o.id;if(!s)return-1;const i=ne(e.eav,[r,s,r]);return i?i[3]:-1}function Ln(n,e,t){for(const{action:r,triple:s}of t)switch(r){case"added":Gt(n,e,s);break;case"removed":Qt(n,e,s);break}}function Gi(n,e,t){var s,i;const r={};for(const{action:o,triple:a}of t){const[c,u,l]=a,d=(i=(s=e.getAttr(u))==null?void 0:s["forward-identity"])==null?void 0:i[2];if(!d)continue;const f=r[c]??{};r[c]=f;const h=f[d]??{};switch(f[d]=h,o){case"added":h.newValue=l;break;case"removed":h.oldValue===void 0&&(h.oldValue=l);break}}for(const o of Object.keys(r)){const{oldValue:a,newValue:c}=r[o];a===c&&delete r[o]}return r}function $e(n,e){return{[n.table]:e.map(t=>t.entity)}}function Bi(n,e){var r;if(n.orderFieldType)return n.orderFieldType;const t=n.orderField==="serverCreatedAt"?"number":(r=P(e(),n.table,n.orderField))==null?void 0:r["checked-data-type"];return n.orderFieldType=t,t}function Hi(n,e,t){const r=e;if(n.orderField==="serverCreatedAt"){t.sort(n.orderDirection==="asc"?function(o,a){return be(o.entity.id,o.serverCreatedAt,a.entity.id,a.serverCreatedAt,r)}:function(o,a){return be(a.entity.id,a.serverCreatedAt,o.entity.id,o.serverCreatedAt,r)});return}const s=n.orderField;t.sort(n.orderDirection==="asc"?function(o,a){return be(o.entity.id,o.entity[s],a.entity.id,a.entity[s],r)}:function(o,a){return be(a.entity.id,a.entity[s],o.entity.id,o.entity[s],r)})}var Fn=(n=>(n.InitialSyncBatch="InitialSyncBatch",n.InitialSyncComplete="InitialSyncComplete",n.LoadFromStorage="LoadFromStorage",n.SyncTransaction="SyncTransaction",n.Error="Error",n))(Fn||{});class Ji{constructor(e,t,r,s,i,o){this.callbacks={},this.idToHash={},this.trySend=e,this.config=r,this.log=s,this.createStore=i,this.getAttrs=o,this.subs=new lt({persister:t,merge:Wi,serialize:Qi,parse:(a,c)=>Vi(c,this.config.useDateObjects),objectSize:a=>{var c;return((c=a.values)==null?void 0:c.entities.length)||0},logger:s,gc:{maxAgeMs:1e3*60*60*24*7*52,maxEntries:1e3,maxSize:1e6}})}beforeUnload(){this.subs.flush()}subscribe(e,t){const r=v(e);return this.callbacks[r]=this.callbacks[r]||[],this.callbacks[r].push(t),this.initSubscription(e,r,t),s=>{this.unsubscribe(r,t,s==null?void 0:s.keepSubscription)}}unsubscribe(e,t,r){const s=(this.callbacks[e]||[]).filter(i=>i!==t);if(this.callbacks[e]=s,!s.length){delete this.callbacks[e];const i=this.subs.currentValue[e];i!=null&&i.state&&this.clearSubscriptionData(i.state.subscriptionId,!!r),r||this.subs.updateInPlace(o=>{delete o[e]})}}sendStart(e){this.trySend(j(),{op:"start-sync",q:e})}sendResync(e,t,r){this.idToHash[t.subscriptionId]=e.hash,this.trySend(t.subscriptionId,{op:"resync-table","subscription-id":t.subscriptionId,"tx-id":r,token:t.token})}sendRemove(e,t){this.trySend(j(),{op:"remove-sync","subscription-id":e.subscriptionId,"keep-subscription":t})}async initSubscription(e,t,r){var u,l,d,f;await this.subs.waitForKeyToLoad(t);const s=this.subs.currentValue[t];if(s&&s.state&&s.state.txId){this.sendResync(s,s.state,s.state.txId),(u=s.values)!=null&&u.entities&&r&&r({type:"LoadFromStorage",data:$e(s,(l=s.values)==null?void 0:l.entities)});return}const i=Object.keys(e)[0],o=((f=(d=e[i])==null?void 0:d.$)==null?void 0:f.order)||{serverCreatedAt:"asc"},[a,c]=Object.entries(o)[0];this.subs.updateInPlace(h=>{h[t]={query:e,hash:t,table:i,orderDirection:c,orderField:a,createdAt:Date.now(),updatedAt:Date.now()}}),this.sendStart(e)}async flushPending(){for(const e of Object.keys(this.callbacks)){await this.subs.waitForKeyToLoad(e);const t=this.subs.currentValue[e];t?await this.initSubscription(t.query,t.hash):this.log.error("Missing sub for hash in flushPending",e)}}onStartSyncOk(e){const t=e["subscription-id"],r=e.q,s=v(r);this.idToHash[t]=s,this.subs.updateInPlace(i=>{const o=i[s];if(!o)return this.log.error("Missing sub for hash",s,"subscription-id",t,"query",r),i;o.state={subscriptionId:t,token:e.token}})}notifyCbs(e,t){for(const r of this.callbacks[e]||[])r(t)}onSyncLoadBatch(e){const t=e["subscription-id"],r=e["join-rows"],s=this.idToHash[t];if(!s){this.log.error("Missing hash for subscription",e);return}const i=[],o=this.subs.currentValue[s];if(!o){this.log.error("Missing sub for hash",s,e);return}const a=o.values??{entities:[],attrsStore:this.getAttrs()};o.values=a;const c=a.entities;for(const u of r){const l=this.createStore(u),d=wt(o,l,a.attrsStore);c.push({store:l,entity:d,serverCreatedAt:Un(o,l,a.attrsStore,d.id)}),i.push(d)}this.subs.updateInPlace(u=>{u[s]=o,u[s].updatedAt=Date.now()}),o.values&&this.notifyCbs(s,{type:"InitialSyncBatch",data:$e(o,o.values.entities),batch:i})}onSyncInitFinish(e){var i;const t=e["subscription-id"],r=this.idToHash[t];if(!r){this.log.error("Missing hash for subscription",e);return}this.subs.updateInPlace(o=>{const a=o[r];if(!a){this.log.error("Missing sub for hash",r,e);return}const c=a.state;if(!c)return this.log.error("Sub never set init, missing result",a,e),o;c.txId=e["tx-id"],a.updatedAt=Date.now()});const s=this.subs.currentValue[r];s&&this.notifyCbs(r,{type:"InitialSyncComplete",data:$e(s,((i=s.values)==null?void 0:i.entities)||[])})}onSyncUpdateTriples(e){var o;const t=e["subscription-id"],r=this.idToHash[t];if(!r){this.log.error("Missing hash for subscription",e);return}const s=this.subs.currentValue[r];if(!s){this.log.error("Missing sub for hash",r,e);return}const i=s.state;if(!i){this.log.error("Missing state for sub",s,e);return}for(const a of e.txes){if(i.txId&&i.txId>=a["tx-id"])continue;i.txId=a["tx-id"];const c=[],u={};for(const _ of a.changes){const g=u[_.triple[0]]??[];u[_.triple[0]]=g,g.push(_)}const l=s.values??{entities:[],attrsStore:this.getAttrs()},d=l.entities;s.values=l;const f=[];e:for(const[_,g]of Object.entries(u))for(let y=0;y<d.length;y++){const w=d[y];if(jr(w.store,_)){Ln(w.store,l.attrsStore,g);const S=wt(s,w.store,l.attrsStore),m=Gi(w.store,l.attrsStore,g)[_];S?(f.push({oldEntity:w.entity,newEntity:S,changedFields:m||{}}),w.entity=S):c.push(y),delete u[_];continue e}}const h=[];for(const[_,g]of Object.entries(u)){const y=this.createStore([]);Ln(y,l.attrsStore,g);const w=wt(s,y,l.attrsStore);if(!w){this.log.error("No entity found after applying change",{sub:s,changes:g,store:y});continue}d.push({store:y,entity:w,serverCreatedAt:Un(s,y,l.attrsStore,w.id)}),h.push(w)}const p=[];for(const _ of c.sort().reverse())p.push(d[_].entity),d.splice(_,1);const b=Bi(s,this.getAttrs);Hi(s,b,d),this.notifyCbs(r,{type:"SyncTransaction",data:$e(s,(o=s.values)==null?void 0:o.entities),added:h,removed:p,updated:f})}this.subs.updateInPlace(a=>{a[r]=s,a[r].updatedAt=Date.now()})}clearSubscriptionData(e,t){const r=this.idToHash[e];if(r){delete this.idToHash[e];const s=this.subs.currentValue[r];if(s.state&&this.sendRemove(s.state,t),t?this.subs.unloadKey(r):this.subs.updateInPlace(i=>{delete i[r]}),s)return s}}onStartSyncError(e){const t=v(e["original-event"].q),r={message:e.message||"Uh-oh, something went wrong. Ping Joe & Stopa.",status:e.status,type:e.type,hint:e.hint},s=Object.keys(e["original-event"].q)[0];this.notifyCbs(t,{type:"Error",data:{[s]:[]},error:r})}onResyncError(e){const t=e["original-event"]["subscription-id"],r=this.clearSubscriptionData(t,!1);r&&this.initSubscription(r.query,r.hash)}}const H={CONNECTING:"connecting",OPENED:"opened",AUTHENTICATED:"authenticated",CLOSED:"closed",ERRORED:"errored"},Yi=3e4,Zi=3e4,Xi=200,eo={apiURI:"https://api.instantdb.com",websocketURI:"wss://api.instantdb.com/runtime/session"},Tt="_instant_oauth_redirect",we="currentUser";function to({transportType:n,appId:e,apiURI:t,wsURI:r,EventSourceImpl:s}){if(!s)return new xn(`${r}?app_id=${e}`);switch(n){case"ws":return new xn(`${r}?app_id=${e}`);case"sse":return new zi(s,`${t}/runtime/sse?app_id=${e}`);default:throw new Error("Unknown transport type "+n)}}function no(){return typeof window<"u"||typeof chrome<"u"}const Nn={"set-presence":!0,"set-presence-ok":!0,"refresh-presence":!0,"patch-presence":!0};function ro(n,e){var r;const t=typeof n=="string"?JSON.parse(n):n;if((r=t==null?void 0:t.result)!=null&&r.store){const s=Vt(t.result.attrsStore,t.result.store);if(s){const i=t.result.store;t.result.store=zt(s,{...i,useDateObjects:e}),t.result.attrsStore=s}}return t}function so(n,e){const{result:t,...r}=e,s=r;if(t){const i={...t,store:Kt(t.store),attrsStore:t.attrsStore.toJSON()};s.result=i}return s}function io(n,e){switch(n){case"pendingMutations":return new Map(typeof e=="string"?JSON.parse(e):e);default:return e}}function oo(n,e){switch(n){case"pendingMutations":return[...e.entries()];default:return e}}function ao(n,e,t){const r=e==null?void 0:e.result,s=t==null?void 0:t.result;return r&&!s&&t&&(t.result=r),t||e}function qn(n){return[...n].sort((e,t)=>{const[r,s]=e,[i,o]=t,a=s.order||0,c=o.order||0;return a==c?r<i?-1:r>i?1:0:a-c})}class co{constructor(e,t=dt,r=ft,s,i){T(this,"attrs");T(this,"_isOnline",!0);T(this,"_isShutdown",!1);T(this,"status",H.CONNECTING);T(this,"querySubs");T(this,"kv");T(this,"_syncTable");T(this,"queryCbs",{});T(this,"queryOnceDfds",{});T(this,"authCbs",[]);T(this,"attrsCbs",[]);T(this,"mutationErrorCbs",[]);T(this,"connectionStatusCbs",[]);T(this,"config");T(this,"mutationDeferredStore",new Map);T(this,"_reconnectTimeoutId",null);T(this,"_reconnectTimeoutMs",0);T(this,"_transport");T(this,"_transportType","ws");T(this,"_EventSource");T(this,"_wsOk",null);T(this,"_localIdPromises",{});T(this,"_errorMessage",null);T(this,"_oauthCallbackResponse",null);T(this,"_linkIndex",null);T(this,"_broadcastChannel");T(this,"_rooms",{});T(this,"_roomsPendingLeave",{});T(this,"_presence",{});T(this,"_broadcastQueue",[]);T(this,"_broadcastSubs",{});T(this,"_currentUserCached",{isLoading:!0,error:void 0,user:void 0});T(this,"_beforeUnloadCbs",[]);T(this,"_dataForQueryCache",{});T(this,"_log");T(this,"_pendingTxCleanupTimeout");T(this,"_pendingMutationCleanupThreshold");T(this,"_inFlightMutationEventIds",new Set);T(this,"_onMergeKv",(e,t,r)=>{switch(e){case"pendingMutations":{const s=(t==null?void 0:t.entries())??[],i=(r==null?void 0:r.entries())??[],o=new Map([...s,...i]);return(t?this._rewriteMutationsSorted(this.attrs,t):[]).forEach(([c,u])=>{var l;!((l=r==null?void 0:r.pendingMutations)!=null&&l.has(c))&&!u["tx-id"]&&this._sendMutation(c,u)}),o}default:return r||t}});T(this,"getPreviousResult",e=>{var r;const t=v(e);return(r=this.dataForQuery(t))==null?void 0:r.data});T(this,"notifyOne",e=>{var i;const t=this.queryCbs[e]??[],r=(i=this._dataForQueryCache[e])==null?void 0:i.data,s=this.dataForQuery(e);s!=null&&s.data&&(this._dataForQueryCache[e]=s,!ve(s.data,r)&&t.forEach(o=>o.cb(s.data)))});T(this,"notifyOneQueryOnce",e=>{var s;const t=this.queryOnceDfds[e]??[],r=(s=this.dataForQuery(e))==null?void 0:s.data;t.forEach(i=>{this._completeQueryOnce(i.q,e,i.dfd),i.dfd.resolve(r)})});T(this,"notifyQueryError",(e,t)=>{(this.queryCbs[e]||[]).forEach(s=>s.cb({error:t}))});T(this,"pushTx",e=>{this.config.disableValidation||Dn(e,this.config.schema);try{const t=pi({attrsStore:this.optimisticAttrs(),schema:this.config.schema,stores:Object.values(this.querySubs.currentValue).map(r=>{var s;return(s=r==null?void 0:r.result)==null?void 0:s.store}),useDateObjects:this.config.useDateObjects},e);return this.pushOps(t)}catch(t){return this.pushOps([],t)}});T(this,"pushOps",(e,t)=>{const r=j(),s=[...this._pendingMutations().values()],i=Math.max(0,...s.map(c=>c.order||0))+1,o={op:"transact","tx-steps":e,created:Date.now(),error:t,order:i};this._updatePendingMutations(c=>{c.set(r,o)});const a=new An;return this.mutationDeferredStore.set(r,a),this._sendMutation(r,o),this.notifyAll(),a.promise});T(this,"_transportOnOpen",e=>{const t=e.target;if(this._transport!==t){this._log.info("[socket][open]",t.id,"skip; this is no longer the current transport");return}this._log.info("[socket][open]",this._transport.id),this._setStatus(H.OPENED),this.getCurrentUser().then(r=>{var s;this._trySend(j(),{op:"init","app-id":this.config.appId,"refresh-token":(s=r.user)==null?void 0:s.refresh_token,versions:this.versions,"__admin-token":this.config.__adminToken})}).catch(r=>{this._log.error("[socket][error]",t.id,r)})});T(this,"_transportOnMessage",e=>{const t=e.target,r=e.message;if(this._transport!==t){this._log.info("[socket][message]",t.id,r,"skip; this is no longer the current transport");return}if(!this._wsOk&&t.type==="ws"&&(this._wsOk=!0),this._transportType="ws",Array.isArray(e.message))for(const s of e.message)this._handleReceive(t.id,s);else this._handleReceive(t.id,e.message)});T(this,"_transportOnError",e=>{const t=e.target;if(this._transport!==t){this._log.info("[socket][error]",t.id,"skip; this is no longer the current transport");return}this._log.error("[socket][error]",t.id,e)});T(this,"_scheduleReconnect",()=>{!this._wsOk&&this._transportType!=="sse"&&(this._transportType="sse",this._reconnectTimeoutMs=0),setTimeout(()=>{if(this._reconnectTimeoutMs=Math.min(this._reconnectTimeoutMs+1e3,1e4),!this._isOnline){this._log.info("[socket][close]",this._transport.id,"we are offline, no need to start socket");return}this._startSocket()},this._reconnectTimeoutMs)});T(this,"_transportOnClose",e=>{const t=e.target;if(this._transport!==t){this._log.info("[socket][close]",t.id,"skip; this is no longer the current transport");return}this._setStatus(H.CLOSED);for(const r of Object.values(this._rooms))r.isConnected=!1;if(this._isShutdown){this._log.info("[socket][close]",t.id,"Reactor has been shut down and will not reconnect");return}this._log.info("[socket][close]",t.id,"schedule reconnect, ms =",this._reconnectTimeoutMs),this._scheduleReconnect()});if(this._EventSource=i,this.config={...eo,...e},this.queryCacheLimit=this.config.queryCacheLimit??10,this._pendingTxCleanupTimeout=this.config.pendingTxCleanupTimeout??Zi,this._pendingMutationCleanupThreshold=this.config.pendingMutationCleanupThreshold??Xi,this._log=Di(e.verbose||ht||Tn,()=>this._reactorStats()),this.versions={...s||{},"@instantdb/core":yt},this.config.schema&&(this._linkIndex=pt(this.config.schema)),!!no()){if(!e.appId)throw new Error("Instant must be initialized with an appId.");if(!se(e.appId))throw new Error(`Instant must be initialized with a valid appId. \`${e.appId}\` is not a valid uuid.`);typeof BroadcastChannel=="function"&&(this._broadcastChannel=new BroadcastChannel("@instantdb"),this._broadcastChannel.addEventListener("message",async o=>{var a;try{if(((a=o.data)==null?void 0:a.type)==="auth"){const c=await this.getCurrentUser();this.updateUser(c.user)}}catch(c){this._log.error("[error] handle broadcast channel",c)}})),this._initStorage(t),this._syncTable=new Ji(this._trySendAuthed.bind(this),new t(this.config.appId,"syncSubs"),{useDateObjects:this.config.useDateObjects},this._log,o=>re(this.ensureAttrs(),o,this.config.enableCardinalityInference,this.config.useDateObjects),()=>this.ensureAttrs()),this._oauthCallbackResponse=this._oauthLoginInit(),this.getCurrentUser().then(o=>{this.syncUserToEndpoint(o.user)}),setInterval(async()=>{const o=await this.getCurrentUser();this.syncUserToEndpoint(o.user)},1e3*60*20),r.getIsOnline().then(o=>{this._isOnline=o,this._startSocket(),r.listen(a=>{a!==this._isOnline&&(this._log.info("[network] online =",a),this._isOnline=a,this._isOnline?this._startSocket():(this._log.info("Changing status from",this.status,"to",H.CLOSED),this._setStatus(H.CLOSED)))})}),typeof addEventListener<"u"&&(this._beforeUnload=this._beforeUnload.bind(this),addEventListener("beforeunload",this._beforeUnload))}}ensureAttrs(){if(!this.attrs)throw new Error("attrs have not loaded.");return this.attrs}updateSchema(e){this.config={...this.config,schema:e,cardinalityInference:!!e},this._linkIndex=e?pt(this.config.schema):null}_reactorStats(){return{inFlightMutationCount:this._inFlightMutationEventIds.size,storedMutationCount:this._pendingMutations().size,transportType:this._transportType}}_onQuerySubLoaded(e){this.kv.waitForKeyToLoad("pendingMutations").then(()=>this.notifyOne(e))}_initStorage(e){this.querySubs=new lt({persister:new e(this.config.appId,"querySubs"),merge:ao,serialize:so,parse:(t,r)=>ro(r,this.config.useDateObjects),objectSize:t=>{var r,s,i;return((i=(s=(r=t==null?void 0:t.result)==null?void 0:r.store)==null?void 0:s.triples)==null?void 0:i.length)??0},logger:this._log,preloadEntryCount:10,gc:{maxAgeMs:1e3*60*60*24*7*52,maxEntries:1e3,maxSize:1e6}}),this.querySubs.onKeyLoaded=t=>this._onQuerySubLoaded(t),this.kv=new lt({persister:new e(this.config.appId,"kv"),merge:this._onMergeKv,serialize:oo,parse:io,objectSize:()=>0,logger:this._log,saveThrottleMs:100,idleCallbackMaxWaitMs:100,gc:null}),this.kv.onKeyLoaded=t=>{t==="pendingMutations"&&this.notifyAll()},this.kv.waitForKeyToLoad("pendingMutations"),this.kv.waitForKeyToLoad(we),this._beforeUnloadCbs.push(()=>{this.kv.flush(),this.querySubs.flush()})}_beforeUnload(){for(const e of this._beforeUnloadCbs)e();this._syncTable.beforeUnload()}_finishTransaction(e,t,r){const s=this.mutationDeferredStore.get(t);this.mutationDeferredStore.delete(t);const i=e!=="error"&&e!=="timeout";if(!s&&!i&&console.error("Mutation failed",{status:e,eventId:t,...r}),!!s)if(i)s.resolve({status:e,eventId:t});else if(r!=null&&r.type){const{status:o,...a}=r;s.reject(new _e({body:a,status:o??0}))}else s.reject(new oe((r==null?void 0:r.message)||"Unknown error",r==null?void 0:r.hint))}_setStatus(e,t){this.status=e,this._errorMessage=t,this.notifyConnectionStatusSubs(e)}_flushEnqueuedRoomData(e){var s,i;const t=(i=(s=this._presence[e])==null?void 0:s.result)==null?void 0:i.user,r=this._broadcastQueue[e];if(this._broadcastQueue[e]=[],t&&this._trySetPresence(e,t),r)for(const o of r){const{topic:a,roomType:c,data:u}=o;this._tryBroadcast(e,c,a,u)}}_addQueryData(e,t,r){if(!this.attrs)throw new Error("Attrs in reactor have not been set");const s=v(e),i=this.ensureAttrs(),o=re(this.attrs,t.triples,r,this.config.useDateObjects);this.querySubs.updateInPlace(a=>{a[s]={result:{store:o,attrsStore:i,pageInfo:t.pageInfo,processedTxId:void 0,isExternal:!0},q:e}}),this._cleanupPendingMutationsQueries(),this.notifyOne(s),this.notifyOneQueryOnce(s),this._cleanupPendingMutationsTimeout()}_handleReceive(e,t){var s,i,o,a,c,u;const r=!!this.config.schema&&("cardinalityInference"in this.config?!!this.config.cardinalityInference:!0);switch(Nn[t.op]||this._log.info("[receive]",e,t.op,t),t.op){case"init-ok":{this._setStatus(H.AUTHENTICATED),this._reconnectTimeoutMs=0,this._setAttrs(t.attrs),this._flushPendingMessages(),this._sessionId=t["session-id"];for(const f of Object.keys(this._rooms)){const h=(i=(s=this._presence[f])==null?void 0:s.result)==null?void 0:i.user;this._tryJoinRoom(f,h)}break}case"add-query-exists":{this.notifyOneQueryOnce(v(t.q));break}case"add-query-ok":{const{q:f,result:h}=t,p=v(f);if(!this._hasQueryListeners()&&!this.querySubs.currentValue[p])break;const b=(a=(o=h==null?void 0:h[0])==null?void 0:o.data)==null?void 0:a["page-info"],_=(u=(c=h==null?void 0:h[0])==null?void 0:c.data)==null?void 0:u.aggregate,g=vn(h),y=this.ensureAttrs(),w=re(y,g,r,this.config.useDateObjects);this.querySubs.updateInPlace(S=>{if(!S[p]){this._log.info("Missing value in querySubs",{hash:p,q:f});return}S[p].result={store:w,attrsStore:y,pageInfo:b,aggregate:_,processedTxId:t["processed-tx-id"]}}),this._cleanupPendingMutationsQueries(),this.notifyOne(p),this.notifyOneQueryOnce(p),this._cleanupPendingMutationsTimeout();break}case"start-sync-ok":{this._syncTable.onStartSyncOk(t);break}case"sync-load-batch":{this._syncTable.onSyncLoadBatch(t);break}case"sync-init-finish":{this._syncTable.onSyncInitFinish(t);break}case"sync-update-triples":{this._syncTable.onSyncUpdateTriples(t);break}case"refresh-ok":{const{computations:f,attrs:h}=t,p=t["processed-tx-id"];h&&this._setAttrs(h),this._cleanupPendingMutationsTimeout();const b=this._rewriteMutations(this.ensureAttrs(),this._pendingMutations(),p);b!==this._pendingMutations()&&this.kv.updateInPlace(y=>{y.pendingMutations=b});const _=qn(b.entries()),g=f.map(y=>{var Jn,Yn,Zn,Xn;const w=y["instaql-query"],S=y["instaql-result"],m=v(w),E=vn(S),k=this.ensureAttrs(),K=re(k,E,r,this.config.useDateObjects),{store:At,attrsStore:xo}=this._applyOptimisticUpdates(K,k,_,p),Uo=(Yn=(Jn=S==null?void 0:S[0])==null?void 0:Jn.data)==null?void 0:Yn["page-info"],Lo=(Xn=(Zn=S==null?void 0:S[0])==null?void 0:Zn.data)==null?void 0:Xn.aggregate;return{q:w,hash:m,store:At,attrsStore:xo,pageInfo:Uo,aggregate:Lo}});g.forEach(({hash:y,q:w,store:S,attrsStore:m,pageInfo:E,aggregate:k})=>{this.querySubs.updateInPlace(K=>{if(!K[y]){this._log.error("Missing value in querySubs",{hash:y,q:w});return}K[y].result={store:S,attrsStore:m,pageInfo:E,aggregate:k,processedTxId:p}})}),this._cleanupPendingMutationsQueries(),g.forEach(({hash:y})=>{this.notifyOne(y)});break}case"transact-ok":{const{"client-event-id":f,"tx-id":h}=t;this._inFlightMutationEventIds.delete(f);const b=this._rewriteMutations(this.ensureAttrs(),this._pendingMutations()).get(f);if(!b)break;this._updatePendingMutations(g=>{g.set(f,{...g.get(f),"tx-id":h,confirmed:Date.now()})});const _=[];for(const g of b["tx-steps"])if(g[0]==="add-attr"){const y=g[1];_.push(y)}if(_.length){const g=Object.values(this.ensureAttrs().attrs);this._setAttrs([...g,..._])}this._finishTransaction("synced",f),this._cleanupPendingMutationsTimeout();break}case"patch-presence":{const f=t["room-id"];this._trySetRoomConnected(f,!0),this._patchPresencePeers(f,t.edits),this._notifyPresenceSubs(f);break}case"refresh-presence":{const f=t["room-id"];this._trySetRoomConnected(f,!0),this._setPresencePeers(f,t.data),this._notifyPresenceSubs(f);break}case"server-broadcast":{const f=t["room-id"],h=t.topic;this._trySetRoomConnected(f,!0),this._notifyBroadcastSubs(f,h,t);break}case"join-room-ok":{const f=t["room-id"];if(!this._rooms[f]){this._roomsPendingLeave[f]&&(this._tryLeaveRoom(f),delete this._roomsPendingLeave[f]);break}this._trySetRoomConnected(f,!0),this._flushEnqueuedRoomData(f);break}case"leave-room-ok":{const f=t["room-id"];this._trySetRoomConnected(f,!1);break}case"join-room-error":const l=t["room-id"],d=this._rooms[l];d&&(d.error=t.error),this._notifyPresenceSubs(l);break;case"error":this._handleReceiveError(t);break;default:this._log.info("Uknown op",t.op,t);break}}_pendingMutations(){return this.kv.currentValue.pendingMutations??new Map}_updatePendingMutations(e){this.kv.updateInPlace(t=>{const r=t.pendingMutations??new Map;t.pendingMutations=r,e(r)})}_handleMutationError(e,t,r){const s=this._pendingMutations().get(t);if(s&&(e!=="timeout"||!s["tx-id"])){this._updatePendingMutations(o=>(o.delete(t),o)),this._inFlightMutationEventIds.delete(t);const i={message:r.message,hint:r.hint};this.notifyAll(),this.notifyAttrsSubs(),this.notifyMutationErrorSubs(i),this._finishTransaction(e,t,r)}}_handleReceiveError(e){var a,c,u,l,d,f,h;console.log("error",e);const t=e["client-event-id"];this._inFlightMutationEventIds.delete(t);const r=this._pendingMutations().get(t),s={message:e.message||"Uh-oh, something went wrong. Ping Joe & Stopa."};if(e.hint&&(s.hint=e.hint),r){this._handleMutationError("error",t,e);return}if((a=e["original-event"])!=null&&a.hasOwnProperty("q")&&((c=e["original-event"])==null?void 0:c.op)==="add-query"){const p=(u=e["original-event"])==null?void 0:u.q,b=v(p);this.notifyQueryError(v(p),s),this.notifyQueryOnceError(p,b,t,s);return}if(((l=e["original-event"])==null?void 0:l.op)==="init"){if(e.type==="record-not-found"&&((d=e.hint)==null?void 0:d["record-type"])==="app-user"){this.changeCurrentUser(null);return}this._setStatus(H.ERRORED,s),this.notifyAll();return}if(((f=e["original-event"])==null?void 0:f.op)==="resync-table"){this._syncTable.onResyncError(e);return}if(((h=e["original-event"])==null?void 0:h.op)==="start-sync"){this._syncTable.onStartSyncError(e);return}const o={...e};delete o.message,delete o.hint,console.error(e.message,o),e.hint&&console.error(`This error comes with some debugging information. Here it is:
2
+ `,e.hint)}notifyQueryOnceError(e,t,r,s){var o;const i=(o=this.queryOnceDfds[t])==null?void 0:o.find(a=>a.eventId===r);i&&(i.dfd.reject(s),this._completeQueryOnce(e,t,i.dfd))}_setAttrs(e){this.attrs=new J(e.reduce((t,r)=>(t[r.id]=r,t),{}),this._linkIndex),this.notifyAttrsSubs()}_startQuerySub(e,t){const r=j();return this.querySubs.updateInPlace(s=>{s[t]=s[t]||{q:e,result:null,eventId:r},s[t].lastAccessed=Date.now()}),this._trySendAuthed(r,{op:"add-query",q:e}),r}subscribeTable(e,t){return this._syncTable.subscribe(e,t)}subscribeQuery(e,t,r){this.config.disableValidation||bt(e,this.config.schema),r&&"ruleParams"in r&&(e={$$ruleParams:r.ruleParams,...e});const s=v(e),i=this.getPreviousResult(e);return i&&t(i),this.queryCbs[s]=this.queryCbs[s]??[],this.queryCbs[s].push({q:e,cb:t}),this._startQuerySub(e,s),()=>{this._unsubQuery(e,s,t)}}queryOnce(e,t){this.config.disableValidation||bt(e,this.config.schema),t&&"ruleParams"in t&&(e={$$ruleParams:t.ruleParams,...e});const r=new An;if(!this._isOnline)return r.reject(new Error("We can't run `queryOnce`, because the device is offline.")),r.promise;if(!this.querySubs)return r.reject(new Error("We can't run `queryOnce` on the backend. Use adminAPI.query instead: https://www.instantdb.com/docs/backend#query")),r.promise;const s=v(e),i=this._startQuerySub(e,s);return this.queryOnceDfds[s]=this.queryOnceDfds[s]??[],this.queryOnceDfds[s].push({q:e,dfd:r,eventId:i}),setTimeout(()=>r.reject(new Error("Query timed out")),Yi),r.promise}_completeQueryOnce(e,t,r){this.queryOnceDfds[t]&&(this.queryOnceDfds[t]=this.queryOnceDfds[t].filter(s=>s.dfd!==r),this._cleanupQuery(e,t))}_unsubQuery(e,t,r){this.queryCbs[t]&&(this.queryCbs[t]=this.queryCbs[t].filter(s=>s.cb!==r),this._cleanupQuery(e,t))}_hasQueryListeners(e){var t,r;return!!((t=this.queryCbs[e])!=null&&t.length||(r=this.queryOnceDfds[e])!=null&&r.length)}_cleanupQuery(e,t){this._hasQueryListeners(t)||(delete this.queryCbs[t],delete this.queryOnceDfds[t],delete this._dataForQueryCache[t],this.querySubs.unloadKey(t),this._trySendAuthed(j(),{op:"remove-query",q:e}))}_rewriteMutations(e,t,r){if(!e)return t;if(!t)return new Map;const s=l=>{const[d,f,h]=l["forward-identity"];return P(e,f,h)},i=l=>{const[d,f,h]=l["forward-identity"];return ee(e,f,h)},o={attrIdMap:{},refSwapAttrIds:new Set};let a=!1;const c=(l,d)=>{const f=[];for(const h of l){const[p]=h;if(p==="add-attr"){const[_,g]=h,y=s(g);if(y&&g.id!==y.id){o.attrIdMap[g.id]=y.id,a=!0;continue}if(g["value-type"]==="ref"){const w=i(g);if(w){o.attrIdMap[g.id]=w.id,o.refSwapAttrIds.add(g.id),a=!0;continue}}}if(r&&d&&r>=d&&p==="add-attr"||p==="update-attr"||p==="delete-attr"){a=!0;continue}const b=a?zs(o,h):h;f.push(b)}return a?f:l},u=new Map;for(const[l,d]of t.entries())u.set(l,{...d,"tx-steps":c(d["tx-steps"],d["tx-id"])});return a?u:t}_rewriteMutationsSorted(e,t){return qn(this._rewriteMutations(e,t).entries())}optimisticAttrs(){var i,o;const e=[...this._pendingMutations().values()].flatMap(a=>a["tx-steps"]),t=new Set(e.filter(([a,c])=>a==="delete-attr").map(([a,c])=>c)),r=[];for(const[a,c]of e)if(a==="add-attr")r.push(c);else if(a==="update-attr"&&c.id&&((i=this.attrs)!=null&&i.getAttr(c.id))){const u={...this.attrs.getAttr(c.id),...c};r.push(u)}if(!t.size&&!r.length)return this.attrs||new J({},this._linkIndex);const s={...((o=this.attrs)==null?void 0:o.attrs)||{}};for(const a of r)s[a.id]=a;for(const a of t)delete s[a];return new J(s,this._linkIndex)}dataForQuery(e,t=!0){const r=this._errorMessage;if(r)return{error:r};if(!this.querySubs||!this.kv.currentValue.pendingMutations)return;const s=this.querySubs.version(),i=this.querySubs.currentValue,o=this.kv.version(),a=this._pendingMutations(),{q:c,result:u}=i[e]||{};if(!u)return;const l=this._dataForQueryCache[e];if(l&&s===l.querySubVersion&&o===l.pendingMutationsVersion)return l;let d=u.store,f=u.attrsStore;const{pageInfo:h,aggregate:p,processedTxId:b}=u,_=this._rewriteMutationsSorted(f,a);if(t){const y=this._applyOptimisticUpdates(d,f,_,b);d=y.store,f=y.attrsStore}return{data:st({store:d,attrsStore:f,pageInfo:h,aggregate:p},c),querySubVersion:s,pendingMutationsVersion:o}}_applyOptimisticUpdates(e,t,r,s){for(const[i,o]of r)if(!o["tx-id"]||s&&o["tx-id"]>s){const a=Vr(e,t,o["tx-steps"]);e=a.store,t=a.attrsStore}return{store:e,attrsStore:t}}notifyAll(){Object.keys(this.queryCbs).forEach(e=>{this.querySubs.waitForKeyToLoad(e).then(()=>this.notifyOne(e)).catch(()=>this.notifyOne(e))})}loadedNotifyAll(){this.kv.waitForKeyToLoad("pendingMutations").then(()=>this.notifyAll()).catch(()=>this.notifyAll())}shutdown(){var e;this._log.info("[shutdown]",this.config.appId),this._isShutdown=!0,(e=this._transport)==null||e.close()}_sendMutation(e,t){if(t.error){this._handleMutationError("error",e,{message:t.error.message});return}if(this.status!==H.AUTHENTICATED){this._finishTransaction("enqueued",e);return}const r=Math.max(6e3,Math.min(this._inFlightMutationEventIds.size+1,this._pendingMutations().size+1)*6e3);this._isOnline?(this._trySend(e,t),setTimeout(()=>{this._isOnline&&this._handleMutationError("timeout",e,{message:"transaction timed out"})},r)):this._finishTransaction("enqueued",e)}_flushPendingMessages(){Object.keys(this.queryCbs).map(s=>this.querySubs.currentValue[s]).filter(s=>s).forEach(({eventId:s,q:i})=>{this._trySendAuthed(s,{op:"add-query",q:i})}),Object.values(this.queryOnceDfds).flat().forEach(({eventId:s,q:i})=>{this._trySendAuthed(s,{op:"add-query",q:i})}),this._rewriteMutationsSorted(this.ensureAttrs(),this._pendingMutations()).forEach(([s,i])=>{i["tx-id"]||this._sendMutation(s,i)}),this._syncTable.flushPending()}_cleanupPendingMutationsQueries(){let e=Number.MAX_SAFE_INTEGER;for(const{result:t}of Object.values(this.querySubs.currentValue))t!=null&&t.processedTxId&&(e=Math.min(e,t==null?void 0:t.processedTxId));this._updatePendingMutations(t=>{for(const[r,s]of Array.from(t.entries()))s["tx-id"]&&s["tx-id"]<=e&&t.delete(r)})}_cleanupPendingMutationsTimeout(){if(this._pendingMutations().size<this._pendingMutationCleanupThreshold)return;const e=Date.now();this._updatePendingMutations(t=>{for(const[r,s]of Array.from(t.entries()))s.confirmed&&s.confirmed+this._pendingTxCleanupTimeout<e&&t.delete(r)})}_trySendAuthed(...e){this.status===H.AUTHENTICATED&&this._trySend(...e)}_trySend(e,t,r){if(this._transport.isOpen()){switch(Nn[t.op]||this._log.info("[send]",this._transport.id,t.op,t),t.op){case"transact":{this._inFlightMutationEventIds.add(e);break}case"init":this._inFlightMutationEventIds.clear()}this._transport.send({"client-event-id":e,...t})}}_startSocket(){if(this._wsOk=null,this._isShutdown){this._log.info("[socket][start]",this.config.appId,"Reactor has been shut down and will not start a new socket");return}if(this._transport&&this._transport.isConnecting()){this._log.info("[socket][start]",this._transport.id,"maintained as current transport, we were still in a connecting state");return}const e=this._transport;this._transport=to({transportType:this._transportType,appId:this.config.appId,apiURI:this.config.apiURI,wsURI:this.config.websocketURI,EventSourceImpl:this._EventSource}),this._transport.onopen=this._transportOnOpen,this._transport.onmessage=this._transportOnMessage,this._transport.onclose=this._transportOnClose,this._transport.onerror=this._transportOnError,this._log.info("[socket][start]",this._transport.id),e!=null&&e.isOpen()&&(this._log.info("[socket][start]",this._transport.id,"close previous transport id = ",e.id),e.close())}async getLocalId(e){const t=`localToken_${e}`;if(this.kv.currentValue[t])return this.kv.currentValue[t];const r=await this.kv.waitForKeyToLoad(t);if(r)return r;const s=j();return this.kv.updateInPlace(i=>{i[t]||(i[t]=s)}),await this.kv.waitForKeyToLoad(t)}_replaceUrlAfterOAuth(){if(typeof URL>"u")return;const e=new URL(window.location.href);if(e.searchParams.get(Tt)){const t=e.toString();e.searchParams.delete(Tt),e.searchParams.delete("code"),e.searchParams.delete("error");const r=e.pathname+(e.searchParams.size?"?"+e.searchParams:"")+e.hash;if(history.replaceState(history.state,"",r),typeof navigation=="object"&&typeof navigation.addEventListener=="function"&&typeof navigation.removeEventListener=="function"){let s=!1;const i=o=>{var a;s||(s=!0,navigation.removeEventListener("navigate",i),!o.userInitiated&&o.navigationType==="replace"&&((a=o.destination)==null?void 0:a.url)===t&&history.replaceState(history.state,"",r))};navigation.addEventListener("navigate",i)}}}async _oauthLoginInit(){var s,i,o,a;if(typeof window>"u"||typeof window.location>"u"||typeof URLSearchParams>"u")return null;const e=new URLSearchParams(window.location.search);if(!e.get(Tt))return null;const t=e.get("error");if(t)return this._replaceUrlAfterOAuth(),{error:{message:t}};const r=e.get("code");if(!r)return null;this._replaceUrlAfterOAuth();try{const c=await this._getCurrentUser(),u=(c==null?void 0:c.type)==="guest",{user:l}=await wn({apiURI:this.config.apiURI,appId:this.config.appId,code:r,refreshToken:u?c.refresh_token:void 0});return this.setCurrentUser(l),null}catch(c){return((s=c==null?void 0:c.body)==null?void 0:s.type)==="record-not-found"&&((o=(i=c==null?void 0:c.body)==null?void 0:i.hint)==null?void 0:o["record-type"])==="app-oauth-code"&&await this._hasCurrentUser()?null:{error:{message:((a=c==null?void 0:c.body)==null?void 0:a.message)||"Error logging in."}}}}async _waitForOAuthCallbackResponse(){return await this._oauthCallbackResponse}__subscribeMutationErrors(e){return this.mutationErrorCbs.push(e),()=>{this.mutationErrorCbs=this.mutationErrorCbs.filter(t=>t!==e)}}subscribeAuth(e){this.authCbs.push(e);const t=this._currentUserCached;t.isLoading||e(this._currentUserCached);let r=!1;return this.getCurrentUser().then(s=>{r||ve(s,t)||e(s)}),()=>{r=!0,this.authCbs=this.authCbs.filter(s=>s!==e)}}async getAuth(){const{user:e,error:t}=await this.getCurrentUser();if(t)throw new oe("Could not get current user: "+t.message);return e}subscribeConnectionStatus(e){return this.connectionStatusCbs.push(e),()=>{this.connectionStatusCbs=this.connectionStatusCbs.filter(t=>t!==e)}}subscribeAttrs(e){return this.attrsCbs.push(e),this.attrs&&e(this.attrs.attrs),()=>{this.attrsCbs=this.attrsCbs.filter(t=>t!==e)}}notifyAuthSubs(e){this.authCbs.forEach(t=>t(e))}notifyMutationErrorSubs(e){this.mutationErrorCbs.forEach(t=>t(e))}notifyAttrsSubs(){if(!this.attrs)return;const e=this.optimisticAttrs();this.attrsCbs.forEach(t=>t(e.attrs))}notifyConnectionStatusSubs(e){this.connectionStatusCbs.forEach(t=>t(e))}async setCurrentUser(e){this.kv.updateInPlace(t=>{t[we]=e}),await this.kv.waitForKeyToLoad(we)}getCurrentUserCached(){return this._currentUserCached}async _getCurrentUser(){const e=await this.kv.waitForKeyToLoad(we);return typeof e=="string"?JSON.parse(e):e}async getCurrentUser(){const e=await this._waitForOAuthCallbackResponse();if(e!=null&&e.error){const t={error:e.error,user:void 0};return this._currentUserCached={isLoading:!1,...t},t}try{const r={user:await this._getCurrentUser(),error:void 0};return this._currentUserCached={isLoading:!1,...r},r}catch(t){return{user:void 0,isLoading:!1,error:{message:(t==null?void 0:t.message)||"Error loading user"}}}}async _hasCurrentUser(){const e=await this.kv.waitForKeyToLoad(we);return typeof e=="string"?JSON.parse(e)!=null:e!=null}async changeCurrentUser(e){var r;const{user:t}=await this.getCurrentUser();if(!ve(t,e)){await this.setCurrentUser(e),this.updateUser(e);try{(r=this._broadcastChannel)==null||r.postMessage({type:"auth"})}catch(s){console.error("Error posting message to broadcast channel",s)}}}async syncUserToEndpoint(e){if(this.config.cookieEndpoint)try{fetch(this.config.cookieEndpoint+"/sync-auth",{method:"POST",body:JSON.stringify({user:e}),headers:{"Content-Type":"application/json"}})}catch(t){console.error("Error syncing user with external endpoint",t)}}updateUser(e){this.syncUserToEndpoint(e);const t={error:void 0,user:e};this._currentUserCached={isLoading:!1,...t},this._dataForQueryCache={},this.querySubs.updateInPlace(r=>{Object.keys(r).forEach(s=>{delete r[s].result})}),this._reconnectTimeoutMs=0,this._transport.close(),this._oauthCallbackResponse=null,this.notifyAuthSubs(t)}sendMagicCode({email:e}){return mi({apiURI:this.config.apiURI,appId:this.config.appId,email:e})}async signInWithMagicCode({email:e,code:t}){var o;const r=await this.getCurrentUser(),s=((o=r==null?void 0:r.user)==null?void 0:o.type)==="guest",i=await Si({apiURI:this.config.apiURI,appId:this.config.appId,email:e,code:t,refreshToken:s?r.user.refresh_token:void 0});return await this.changeCurrentUser(i.user),i}async signInWithCustomToken(e){const t=await Ai({apiURI:this.config.apiURI,appId:this.config.appId,refreshToken:e});return await this.changeCurrentUser(t.user),t}async signInAsGuest(){const e=await Oi({apiURI:this.config.apiURI,appId:this.config.appId});return await this.changeCurrentUser(e.user),e}potentiallyInvalidateToken(e,t){var i;const r=(i=e==null?void 0:e.user)==null?void 0:i.refresh_token;if(!r)return;if(t.invalidateToken===!1){this._log.info("[auth-invalidate] skipped invalidateToken");return}ki({apiURI:this.config.apiURI,appId:this.config.appId,refreshToken:r}).then(()=>{this._log.info("[auth-invalidate] completed invalidateToken")}).catch(o=>{})}async signOut(e){const t=await this.getCurrentUser();this.potentiallyInvalidateToken(t,e),await this.changeCurrentUser(null)}createAuthorizationURL({clientName:e,redirectURL:t}){const{apiURI:r,appId:s}=this.config;return`${r}/runtime/oauth/start?app_id=${s}&client_name=${e}&redirect_uri=${t}`}async exchangeCodeForToken({code:e,codeVerifier:t}){var o;const r=await this.getCurrentUser(),s=((o=r==null?void 0:r.user)==null?void 0:o.type)==="guest",i=await wn({apiURI:this.config.apiURI,appId:this.config.appId,code:e,codeVerifier:t,refreshToken:s?r.user.refresh_token:void 0});return await this.changeCurrentUser(i.user),i}issuerURI(){const{apiURI:e,appId:t}=this.config;return`${e}/runtime/${t}`}async signInWithIdToken({idToken:e,clientName:t,nonce:r}){var a;const s=await this.getCurrentUser(),i=(a=s==null?void 0:s.user)==null?void 0:a.refresh_token,o=await vi({apiURI:this.config.apiURI,appId:this.config.appId,idToken:e,clientName:t,nonce:r,refreshToken:i});return await this.changeCurrentUser(o.user),o}joinRoom(e,t){let r=!1;this._rooms[e]||(r=!0,this._rooms[e]={isConnected:!1,error:void 0}),this._presence[e]=this._presence[e]||{};const s=this._presence[e].result;return t&&!s&&(this._presence[e].result=this._presence[e].result||{},this._presence[e].result.user=t,this._notifyPresenceSubs(e)),r&&this._tryJoinRoom(e,t),()=>{this._cleanupRoom(e)}}_cleanupRoom(e){var t,r,s;if(!((r=(t=this._presence[e])==null?void 0:t.handlers)!=null&&r.length)&&!Object.keys(this._broadcastSubs[e]??{}).length){const i=(s=this._rooms[e])==null?void 0:s.isConnected;delete this._rooms[e],delete this._presence[e],delete this._broadcastSubs[e],i?this._tryLeaveRoom(e):this._roomsPendingLeave[e]=!0}}getPresence(e,t,r={}){const s=this._rooms[t],i=this._presence[t];return!s||!i||!i.result?null:{...ji(i.result,r,this._sessionId),isLoading:!s.isConnected,error:s.error}}publishPresence(e,t,r){const s=this._rooms[t],i=this._presence[t];if(!s||!i)return;i.result=i.result||{};const o={...i.result.user,...r};i.result.user=o,s.isConnected&&(this._trySetPresence(t,o),this._notifyPresenceSubs(t))}_trySetPresence(e,t){this._trySendAuthed(j(),{op:"set-presence","room-id":e,data:t})}_tryJoinRoom(e,t){this._trySendAuthed(j(),{op:"join-room","room-id":e,data:t}),delete this._roomsPendingLeave[e]}_tryLeaveRoom(e){this._trySendAuthed(j(),{op:"leave-room","room-id":e})}_trySetRoomConnected(e,t){const r=this._rooms[e];r&&(r.isConnected=t)}subscribePresence(e,t,r,s){const i=this.joinRoom(t,r.initialPresence||r.initialData),o={...r,roomId:t,cb:s,prev:null};return this._presence[t]=this._presence[t]||{},this._presence[t].handlers=this._presence[t].handlers||[],this._presence[t].handlers.push(o),this._notifyPresenceSub(t,o),()=>{var a,c;this._presence[t].handlers=((c=(a=this._presence[t])==null?void 0:a.handlers)==null?void 0:c.filter(u=>u!==o))??[],i()}}_notifyPresenceSubs(e){var t,r;(r=(t=this._presence[e])==null?void 0:t.handlers)==null||r.forEach(s=>{this._notifyPresenceSub(e,s)})}_notifyPresenceSub(e,t){const r=this.getPresence("",e,t);r&&(t.prev&&!$i(r,t.prev)||(t.prev=r,t.cb(r)))}_patchPresencePeers(e,t){var o,a,c;const r=((a=(o=this._presence[e])==null?void 0:o.result)==null?void 0:a.peers)||{};let s=Object.fromEntries(Object.entries(r).map(([u,l])=>[u,{data:l}]));(c=this._presence[e])==null||c.result;const i=Oe(s,u=>{for(let[l,d,f]of t)switch(d){case"+":fr(u,l,f);break;case"r":Lt(u,l,f);break;case"-":Ft(u,l);break}delete u[this._sessionId]});this._setPresencePeers(e,i)}_setPresencePeers(e,t){const r={...t};delete r[this._sessionId];const s=Object.fromEntries(Object.entries(r).map(([i,o])=>[i,o.data]));this._presence=Oe(this._presence,i=>{Lt(i,[e,"result","peers"],s)})}publishTopic({roomType:e,roomId:t,topic:r,data:s}){const i=this._rooms[t];if(i){if(!i.isConnected){this._broadcastQueue[t]=this._broadcastQueue[t]??[],this._broadcastQueue[t].push({topic:r,roomType:e,data:s});return}this._tryBroadcast(t,e,r,s)}}_tryBroadcast(e,t,r,s){this._trySendAuthed(j(),{op:"client-broadcast","room-id":e,roomType:t,topic:r,data:s})}subscribeTopic(e,t,r){const s=this.joinRoom(e);return this._broadcastSubs[e]=this._broadcastSubs[e]||{},this._broadcastSubs[e][t]=this._broadcastSubs[e][t]||[],this._broadcastSubs[e][t].push(r),this._presence[e]=this._presence[e]||{},()=>{this._broadcastSubs[e][t]=this._broadcastSubs[e][t].filter(i=>i!==r),this._broadcastSubs[e][t].length||delete this._broadcastSubs[e][t],s()}}_notifyBroadcastSubs(e,t,r){var s,i,o;(o=(i=(s=this._broadcastSubs)==null?void 0:s[e])==null?void 0:i[t])==null||o.forEach(a=>{var l,d,f,h,p,b;const c=(l=r.data)==null?void 0:l.data,u=r.data["peer-id"]===this._sessionId?(f=(d=this._presence[e])==null?void 0:d.result)==null?void 0:f.user:(b=(p=(h=this._presence[e])==null?void 0:h.result)==null?void 0:p.peers)==null?void 0:b[r.data["peer-id"]];return a(c,u)})}async uploadFile(e,t,r){var o;const s=await this.getCurrentUser(),i=(o=s==null?void 0:s.user)==null?void 0:o.refresh_token;return Ei({...r,apiURI:this.config.apiURI,appId:this.config.appId,path:e,file:t,refreshToken:i})}async deleteFile(e){var i;const t=await this.getCurrentUser(),r=(i=t==null?void 0:t.user)==null?void 0:i.refresh_token;return await Ii({apiURI:this.config.apiURI,appId:this.config.appId,path:e,refreshToken:r})}async upload(e,t){var c;const r=await this.getCurrentUser(),s=(c=r==null?void 0:r.user)==null?void 0:c.refresh_token,i=e||t.name,o=await Ci({apiURI:this.config.apiURI,appId:this.config.appId,fileName:i,refreshToken:s});return await Mi(o,t)}async getDownloadUrl(e){var i;const t=await this.getCurrentUser(),r=(i=t==null?void 0:t.user)==null?void 0:i.refresh_token;return await Pi({apiURI:this.config.apiURI,appId:this.config.appId,path:e,refreshToken:r})}}function uo(n,e){return new je(Kn(n,e),e,void 0)}function lo(n){return new Pe(n,{})}function fo(){return new R("string",!0,!1)}function ho(){return new R("number",!0,!1)}function po(){return new R("boolean",!0,!1)}function yo(){return new R("date",!0,!1)}function bo(){return new R("json",!0,!1)}function go(){return new R("json",!0,!1)}function Kn(n,e){var s,i,o,a;const t={fwd:{},rev:{}};for(const c of Object.values(e))(s=t.fwd)[i=c.forward.on]||(s[i]={}),(o=t.rev)[a=c.reverse.on]||(o[a]={}),t.fwd[c.forward.on][c.forward.label]={entityName:c.reverse.on,cardinality:c.forward.has},t.rev[c.reverse.on][c.reverse.label]={entityName:c.forward.on,cardinality:c.reverse.has};return Object.fromEntries(Object.entries(n).map(([c,u])=>[c,new Pe(u.attrs,{...t.fwd[c],...t.rev[c]})]))}function _o({entities:n,links:e,rooms:t}){const r=e??{},s=t??{};return new je(Kn(n,r),r,s)}const M={graph:uo,schema:_o,entity:lo,string:fo,number:ho,boolean:po,date:yo,json:bo,any:go};let De;function wo(n,e){De==null||De.dispose();const t=vo(e),r=So(e,a),s=mo(To(n));function i(l){var d;l.source===s.element.contentWindow&&((d=l.data)==null?void 0:d.type)==="close"&&t.isVisible()&&a()}function o(l){const d=l.shiftKey&&l.ctrlKey&&l.key==="0",f=l.key==="Escape"||l.key==="Esc";(d||f&&t.isVisible())&&a()}function a(){t.isVisible()?t.element.style.display="none":(t.element.style.display="block",t.element.contains(s.element)||t.element.appendChild(s.element))}function c(){t.element.remove(),r.element.remove(),removeEventListener("keydown",o),removeEventListener("message",i)}function u(){document.body.appendChild(t.element),document.body.appendChild(r.element),addEventListener("keydown",o),addEventListener("message",i),De={dispose:c}}return u()}function To(n){return`${ht||mn?"http://localhost:3000":"https://instantdb.com"}/_devtool?appId=${n}`}function mo(n){const e=document.createElement("iframe");return e.src=n,e.className="instant-devtool-iframe",Object.assign(e.style,{width:"100%",height:"100%",backgroundColor:"white",border:"none"}),{element:e}}function So(n,e){const t=`
3
3
  <svg width="32" height="32" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
4
4
  <rect width="512" height="512" fill="black"/>
5
5
  <rect x="97.0973" y="91.3297" width="140" height="330" fill="white"/>
6
6
  </svg>
7
- `,r=document.createElement("button");return r.innerHTML=n,r.className="instant-devtool-toggler",Object.assign(r.style,{position:"fixed",...Ao(t.position),height:"32px",width:"32px",display:"flex",alignItems:"center",justifyContent:"center",zIndex:"9010",padding:"0",margin:"0",border:"none",cursor:"pointer"}),r.addEventListener("click",e),{element:r}}function Ao(t){switch(t){case"bottom-left":return{bottom:"24px",left:"24px"};case"bottom-right":return{bottom:"24px",right:"24px"};case"top-right":return{top:"24px",right:"24px"};case"top-left":return{top:"24px",left:"24px"}}}function ko(t){switch(t){case"bottom-left":return{bottom:"24px",right:"24px",left:"60px",top:"72px"};case"bottom-right":return{bottom:"24px",left:"24px",right:"60px",top:"72px"};case"top-right":return{top:"24px",left:"24px",right:"60px",bottom:"72px"};case"top-left":return{top:"24px",right:"24px",left:"60px",bottom:"72px"}}}function Eo(t){const e=document.createElement("div");Object.assign(e.style,{position:"fixed",...ko(t.position),display:"block",borderRadius:"4px",border:"1px #ccc solid",boxShadow:"0px 0px 8px #00000044",backgroundColor:"#eee",zIndex:"999990"}),e.style.display="none",e.className="instant-devtool-container";function n(){return e.style.display!=="none"}return{element:e,isVisible:n}}const Co={apiURI:"https://api.instantdb.com",websocketURI:"wss://api.instantdb.com/runtime/session"};function Io(){return globalThis.__instantDbSchemaHashStore=globalThis.__instantDbSchemaHashStore??new WeakMap,globalThis.__instantDbSchemaHashStore}function Mo(){return globalThis.__instantDbStore=globalThis.__instantDbStore??{},globalThis.__instantDbStore}function mt(t){const e=t.__adminToken;return t.appId+"_"+(t.websocketURI||"default_ws_uri")+"_"+(t.apiURI||"default_api_uri")+"_"+(e||"client_only")+"_"+t.useDateObjects}const St=Mo(),Qn=Io();class Gn{constructor(e){this.db=e,this.sendMagicCode=n=>this.db.sendMagicCode(n),this.signInWithMagicCode=n=>this.db.signInWithMagicCode(n),this.signInWithToken=n=>this.db.signInWithCustomToken(n),this.signInAsGuest=()=>this.db.signInAsGuest(),this.createAuthorizationURL=n=>this.db.createAuthorizationURL(n),this.signInWithIdToken=n=>this.db.signInWithIdToken(n),this.exchangeOAuthCode=n=>this.db.exchangeCodeForToken(n),this.issuerURI=()=>this.db.issuerURI(),this.signOut=(n={invalidateToken:!0})=>this.db.signOut(n)}}class Bn{constructor(e){this.db=e,this.uploadFile=(n,r,s={})=>this.db.uploadFile(n,r,s),this.delete=n=>this.db.deleteFile(n),this.upload=(n,r)=>this.db.upload(n,r),this.put=this.upload,this.getDownloadUrl=n=>this.db.getDownloadUrl(n)}}function Po(t){return JSON.parse(JSON.stringify(t))}class Hn{constructor(e){this.tx=ot(),this._reactor=e,this.auth=new Gn(this._reactor),this.storage=new Bn(this._reactor)}transact(e){return this._reactor.pushTx(e)}getLocalId(e){return this._reactor.getLocalId(e)}subscribeQuery(e,n,r){return this._reactor.subscribeQuery(e,n,r)}subscribeAuth(e){return this._reactor.subscribeAuth(e)}getAuth(){return this._reactor.getAuth()}subscribeConnectionStatus(e){return this._reactor.subscribeConnectionStatus(e)}joinRoom(e="_defaultRoomType",n="_defaultRoomId",r){return{leaveRoom:this._reactor.joinRoom(n,r==null?void 0:r.initialPresence),subscribeTopic:(i,o)=>this._reactor.subscribeTopic(n,i,o),subscribePresence:(i,o)=>this._reactor.subscribePresence(e,n,i,o),publishTopic:(i,o)=>this._reactor.publishTopic({roomType:e,roomId:n,topic:i,data:o}),publishPresence:i=>this._reactor.publishPresence(e,n,i),getPresence:i=>this._reactor.getPresence(e,n,i)}}shutdown(){delete St[mt(this._reactor.config)],this._reactor.shutdown()}queryOnce(e,n){return this._reactor.queryOnce(e,n)}_syncTableExperimental(e,n){return this._reactor.subscribeTable(e,n)}}function Jn(t){if(!t)return"0";const e=Qn.get(t);if(e)return e;const n=O(t);return Qn.set(t,n),n}function jo(t,e){return Jn(t._reactor.config.schema)!==Jn(e)}function Yn(t,e,n,r,s){const i={...t,useDateObjects:t.useDateObjects??!1},o=St[mt(i)];if(o)return jo(o,i.schema)&&o._reactor.updateSchema(i.schema),o;const a=new uo({...Co,...i,cardinalityInference:!!i.schema},e||dt,n||ht,{...r||{},"@instantdb/core":yt},s),c=new Hn(a);return St[mt(i)]=c,$o(i.appId,i.devtool),c}function $o(t,e){if(typeof window>"u"||typeof window.location>"u"||typeof document>"u"||typeof e=="boolean"&&!e)return;const n={position:"bottom-right",allowedHosts:["localhost"],...typeof e=="object"?e:{}};n.allowedHosts.includes(window.location.hostname)&&mo(t,n)}const Do=Yn;S.Auth=Gn,S.IndexedDBStorage=dt,S.InstantAPIError=_e,S.InstantCoreDatabase=Hn,S.InstantError=ie,S.QueryValidationError=k,S.Storage=Bn,S.StorageInterface=gn,S.SyncTableCallbackEventType=qn,S.TransactionValidationError=N,S.WindowNetworkListener=ht,S.coerceQuery=Po,S.coerceToDate=de,S.getOps=hn,S.i=To,S.id=C,S.init=Yn,S.init_experimental=Do,S.lookup=qs,S.tx=Vs,S.txInit=ot,S.validateQuery=bt,S.validateTransactions=Un,S.version=yt,S.weakHash=O,Object.defineProperty(S,Symbol.toStringTag,{value:"Module"})});
7
+ `,r=document.createElement("button");return r.innerHTML=t,r.className="instant-devtool-toggler",Object.assign(r.style,{position:"fixed",...Ao(n.position),height:"32px",width:"32px",display:"flex",alignItems:"center",justifyContent:"center",zIndex:"9010",padding:"0",margin:"0",border:"none",cursor:"pointer"}),r.addEventListener("click",e),{element:r}}function Ao(n){switch(n){case"bottom-left":return{bottom:"24px",left:"24px"};case"bottom-right":return{bottom:"24px",right:"24px"};case"top-right":return{top:"24px",right:"24px"};case"top-left":return{top:"24px",left:"24px"}}}function Oo(n){switch(n){case"bottom-left":return{bottom:"24px",right:"24px",left:"60px",top:"72px"};case"bottom-right":return{bottom:"24px",left:"24px",right:"60px",top:"72px"};case"top-right":return{top:"24px",left:"24px",right:"60px",bottom:"72px"};case"top-left":return{top:"24px",right:"24px",left:"60px",bottom:"72px"}}}function vo(n){const e=document.createElement("div");Object.assign(e.style,{position:"fixed",...Oo(n.position),display:"block",borderRadius:"4px",border:"1px #ccc solid",boxShadow:"0px 0px 8px #00000044",backgroundColor:"#eee",zIndex:"999990"}),e.style.display="none",e.className="instant-devtool-container";function t(){return e.style.display!=="none"}return{element:e,isVisible:t}}const ko=n=>{async function e(t){const r=await t.json();return r.user&&r.user.refresh_token?new Response("sync",{headers:{"Set-Cookie":`instant_user=${JSON.stringify(r.user)}; Path=/; HttpOnly; Secure; SameSite=Strict; Max-Age=604800`}}):new Response("sync",{headers:{"Set-Cookie":"instant_user=; Path=/; HttpOnly; Secure; SameSite=Strict; Max-Age=-1"}})}return{GET:async t=>new Response("Method not allowed",{status:405,statusText:"Method Not Allowed"}),POST:async t=>{const s=new URL(t.url).pathname;switch(s.split("/")[s.split("/").length-1]){case"sync-auth":return await e(t)}return new Response("Route not found",{status:404})}}},Eo=n=>{var i,o,a,c,u,l;const e={};for(const[d,f]of Object.entries(n.entities)){const h=f,p={};for(const[b,_]of Object.entries(h.attrs)){const g=_;let y;switch(g.valueType){case"string":y=M.string();break;case"number":y=M.number();break;case"boolean":y=M.boolean();break;case"date":y=M.date();break;case"json":y=M.json();break;default:y=M.json()}g.required||(y=y.optional()),(i=g.config)!=null&&i.indexed&&(y=y.indexed()),(o=g.config)!=null&&o.unique&&(y=y.unique()),p[b]=y}e[d]=M.entity(p)}const t=n.links||{},r={};if(n.rooms)for(const[d,f]of Object.entries(n.rooms)){const h=f,p={};for(const[_,g]of Object.entries(h.presence.attrs)){const y=g;let w;switch(y.valueType){case"string":w=M.string();break;case"number":w=M.number();break;case"boolean":w=M.boolean();break;case"date":w=M.date();break;case"json":w=M.json();break;default:w=M.json()}y.required||(w=w.optional()),(a=y.config)!=null&&a.indexed&&(w=w.indexed()),(c=y.config)!=null&&c.unique&&(w=w.unique()),p[_]=w}const b={};if(h.topics)for(const[_,g]of Object.entries(h.topics)){const y=g,w={};for(const[S,m]of Object.entries(y.attrs)){const E=m;let k;switch(E.valueType){case"string":k=M.string();break;case"number":k=M.number();break;case"boolean":k=M.boolean();break;case"date":k=M.date();break;case"json":k=M.json();break;default:k=M.json()}E.required||(k=k.optional()),(u=E.config)!=null&&u.indexed&&(k=k.indexed()),(l=E.config)!=null&&l.unique&&(k=k.unique()),w[S]=k}b[_]=M.entity(w)}r[d]={presence:M.entity(p),topics:b}}return M.schema({entities:e,links:t,rooms:r})},Io=typeof window>"u"||"Deno"in globalThis;class Co{constructor(e){this.resultMap=new Map,this.queryResolvedCallbacks=[],this.subscribe=t=>{this.queryResolvedCallbacks.push(t)},this.addQueryResult=(t,r)=>{this.resultMap.set(t,{type:r.type,status:"success",data:r,promise:null,error:null}),Io||(this.db._reactor.attrs||this.db._reactor._setAttrs(r.attrs),this.db._reactor._addQueryData(r.query,r,!!this.db._reactor.config.schema))},this.query=(t,r)=>{const{hash:s,query:i}=this.hashQuery(t,r);if(this.db._reactor.status==="authenticated"){const c=this.db.queryOnce(t,r);let u={status:"pending",type:"session",data:void 0,error:void 0,promise:c};return c.then(l=>{u.status="success",u.data=l,u.promise=null}),c.catch(l=>{u.status="error",u.error=l,u.promise=null}),u}const o=this.getTriplesAndAttrsForQuery(i);let a={status:"pending",type:"http",data:void 0,error:void 0,promise:o};return o.then(c=>{a.status="success",a.data=c,a.promise=null}),o.catch(c=>{a.status="error",a.error=c,a.promise=null}),o.then(c=>{this.queryResolvedCallbacks.forEach(u=>{u({queryHash:s,query:i,attrs:c.attrs,triples:c.triples,pageInfo:c.pageInfo})})}),this.resultMap.set(s,a),a},this.getExistingResultForQuery=(t,r)=>{const{hash:s}=this.hashQuery(t,r);return this.resultMap.get(s)},this.completeIsomorphic=(t,r,s,i)=>{var d,f,h,p,b,_,g,y;const o={};s.forEach(w=>{o[w.id]=w});const a=!!((h=(f=(d=this.db)==null?void 0:d._reactor)==null?void 0:f.config)!=null&&h.schema)&&("cardinalityInference"in((b=(p=this.db)==null?void 0:p._reactor)==null?void 0:b.config)?!!((g=(_=this.db)==null?void 0:_._reactor.config)!=null&&g.cardinalityInference):!0),c=new J(s.reduce((w,S)=>(w[S.id]=S,w),{}),pt((y=this.db)==null?void 0:y._reactor.config.schema)),u=re(c,r,a,this.params.db._reactor.config.useDateObjects||!1);return st({store:u,attrsStore:c,pageInfo:i,aggregate:void 0},t)},this.hashQuery=(t,r)=>{t&&r&&"ruleParams"in r&&(t={$$ruleParams:r.ruleParams,...t});const s=t?Wn(t):null;return{hash:v(s),query:s}},this.getTriplesAndAttrsForQuery=async t=>{var c,u,l,d,f,h;const r=await fetch(`${this.db._reactor.config.apiURI}/runtime/framework/query`,{method:"POST",headers:{"app-id":this.params.db._reactor.config.appId,"Content-Type":"application/json",Authorization:this.params.token?`Bearer ${this.params.token}`:void 0},body:JSON.stringify({query:t})});if(!r.ok)throw new Error("Error getting triples from server");const s=await r.json(),i=s==null?void 0:s.attrs;if(!i)throw new Error("No attrs");const o=(l=(u=(c=s.result)==null?void 0:c[0].data)==null?void 0:u["datalog-result"])==null?void 0:l["join-rows"][0],a=(h=(f=(d=s.result)==null?void 0:d[0])==null?void 0:f.data)==null?void 0:h["page-info"];return{attrs:i,triples:o,type:"http",queryHash:this.hashQuery(t).hash,query:t,pageInfo:a}},this.params=e,this.db=e.db,this.resultMap=new Map}}const Mo={apiURI:"https://api.instantdb.com",websocketURI:"wss://api.instantdb.com/runtime/session"};function Po(){return globalThis.__instantDbSchemaHashStore=globalThis.__instantDbSchemaHashStore??new WeakMap,globalThis.__instantDbSchemaHashStore}function jo(){return globalThis.__instantDbStore=globalThis.__instantDbStore??{},globalThis.__instantDbStore}function mt(n){const e=n.__adminToken;return n.appId+"_"+(n.websocketURI||"default_ws_uri")+"_"+(n.apiURI||"default_api_uri")+"_"+(e||"client_only")+"_"+n.useDateObjects}const St=jo(),zn=Po();class Vn{constructor(e){this.db=e,this.sendMagicCode=t=>this.db.sendMagicCode(t),this.signInWithMagicCode=t=>this.db.signInWithMagicCode(t),this.signInWithToken=t=>this.db.signInWithCustomToken(t),this.signInAsGuest=()=>this.db.signInAsGuest(),this.createAuthorizationURL=t=>this.db.createAuthorizationURL(t),this.signInWithIdToken=t=>this.db.signInWithIdToken(t),this.exchangeOAuthCode=t=>this.db.exchangeCodeForToken(t),this.issuerURI=()=>this.db.issuerURI(),this.signOut=(t={invalidateToken:!0})=>this.db.signOut(t)}}class Qn{constructor(e){this.db=e,this.uploadFile=(t,r,s={})=>this.db.uploadFile(t,r,s),this.delete=t=>this.db.deleteFile(t),this.upload=(t,r)=>this.db.upload(t,r),this.put=this.upload,this.getDownloadUrl=t=>this.db.getDownloadUrl(t)}}function Wn(n){return JSON.parse(JSON.stringify(n))}class Gn{constructor(e){this.tx=ot(),this._reactor=e,this.auth=new Vn(this._reactor),this.storage=new Qn(this._reactor)}transact(e){return this._reactor.pushTx(e)}getLocalId(e){return this._reactor.getLocalId(e)}subscribeQuery(e,t,r){return this._reactor.subscribeQuery(e,t,r)}subscribeAuth(e){return this._reactor.subscribeAuth(e)}getAuth(){return this._reactor.getAuth()}subscribeConnectionStatus(e){return this._reactor.subscribeConnectionStatus(e)}joinRoom(e="_defaultRoomType",t="_defaultRoomId",r){return{leaveRoom:this._reactor.joinRoom(t,r==null?void 0:r.initialPresence),subscribeTopic:(i,o)=>this._reactor.subscribeTopic(t,i,o),subscribePresence:(i,o)=>this._reactor.subscribePresence(e,t,i,o),publishTopic:(i,o)=>this._reactor.publishTopic({roomType:e,roomId:t,topic:i,data:o}),publishPresence:i=>this._reactor.publishPresence(e,t,i),getPresence:i=>this._reactor.getPresence(e,t,i)}}shutdown(){delete St[mt(this._reactor.config)],this._reactor.shutdown()}queryOnce(e,t){return this._reactor.queryOnce(e,t)}_syncTableExperimental(e,t){return this._reactor.subscribeTable(e,t)}}function Bn(n){if(!n)return"0";const e=zn.get(n);if(e)return e;const t=v(n);return zn.set(n,t),t}function $o(n,e){return Bn(n._reactor.config.schema)!==Bn(e)}function Hn(n,e,t,r,s){const i={...n,useDateObjects:n.useDateObjects??!1},o=St[mt(i)];if(o)return $o(o,i.schema)&&o._reactor.updateSchema(i.schema),o;const a=new co({...Mo,...i,cardinalityInference:!!i.schema},e||dt,t||ft,{...r||{},"@instantdb/core":yt},s),c=new Gn(a);return St[mt(i)]=c,Do(i.appId,i.devtool),c}function Do(n,e){if(typeof window>"u"||typeof window.location>"u"||typeof document>"u"||typeof e=="boolean"&&!e)return;const t={position:"bottom-right",allowedHosts:["localhost"],...typeof e=="object"?e:{}};t.allowedHosts.includes(window.location.hostname)&&wo(n,t)}const Ro=Hn;A.Auth=Vn,A.FrameworkClient=Co,A.IndexedDBStorage=dt,A.InstantAPIError=_e,A.InstantCoreDatabase=Gn,A.InstantError=oe,A.QueryValidationError=C,A.Storage=Qn,A.StorageInterface=bn,A.SyncTableCallbackEventType=Fn,A.TransactionValidationError=q,A.WindowNetworkListener=ft,A.coerceQuery=Wn,A.coerceToDate=he,A.createInstantRouteHandler=ko,A.getOps=dn,A.i=M,A.id=j,A.init=Hn,A.init_experimental=Ro,A.lookup=Ns,A.parseSchemaFromJSON=Eo,A.tx=Ks,A.txInit=ot,A.validateQuery=bt,A.validateTransactions=Dn,A.version=yt,A.weakHash=v,Object.defineProperty(A,Symbol.toStringTag,{value:"Module"})});