@synnaxlabs/client 0.26.7 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +7 -7
- package/README.md +36 -10
- package/api/client.api.md +3121 -0
- package/api-extractor.json +7 -0
- package/dist/access/client.d.ts +0 -1
- package/dist/access/payload.d.ts +0 -1
- package/dist/auth/auth.d.ts +0 -1
- package/dist/channel/client.d.ts +6 -2
- package/dist/channel/client.d.ts.map +1 -1
- package/dist/channel/creator.d.ts +0 -1
- package/dist/channel/payload.d.ts +4 -1
- package/dist/channel/payload.d.ts.map +1 -1
- package/dist/channel/retriever.d.ts +0 -1
- package/dist/channel/writer.d.ts +0 -1
- package/dist/client.cjs +23 -19
- package/dist/client.d.ts +10 -7
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +2326 -1904
- package/dist/connection/checker.d.ts +21 -2
- package/dist/connection/checker.d.ts.map +1 -1
- package/dist/control/client.d.ts +0 -1
- package/dist/control/client.d.ts.map +1 -1
- package/dist/control/state.d.ts +0 -1
- package/dist/errors.d.ts +0 -1
- package/dist/framer/adapter.d.ts +0 -1
- package/dist/framer/client.d.ts +0 -1
- package/dist/framer/client.d.ts.map +1 -1
- package/dist/framer/deleter.d.ts +0 -1
- package/dist/framer/frame.d.ts +11 -12
- package/dist/framer/iterator.d.ts +0 -1
- package/dist/framer/streamProxy.d.ts +0 -1
- package/dist/framer/streamer.d.ts +0 -1
- package/dist/framer/writer.d.ts +0 -1
- package/dist/framer/writer.d.ts.map +1 -1
- package/dist/hardware/client.d.ts +0 -1
- package/dist/hardware/device/client.d.ts +0 -1
- package/dist/hardware/device/payload.d.ts +0 -1
- package/dist/hardware/device/payload.d.ts.map +1 -1
- package/dist/hardware/rack/client.d.ts +0 -1
- package/dist/hardware/rack/payload.d.ts +0 -1
- package/dist/hardware/rack/payload.d.ts.map +1 -1
- package/dist/hardware/task/client.d.ts +12 -3
- package/dist/hardware/task/client.d.ts.map +1 -1
- package/dist/hardware/task/ni/types.d.ts +14495 -0
- package/dist/hardware/task/ni/types.d.ts.map +1 -0
- package/dist/hardware/task/payload.d.ts +6 -1
- package/dist/hardware/task/payload.d.ts.map +1 -1
- package/dist/label/client.d.ts +8 -6
- package/dist/label/client.d.ts.map +1 -1
- package/dist/label/payload.d.ts +0 -1
- package/dist/label/retriever.d.ts +0 -1
- package/dist/label/retriever.d.ts.map +1 -1
- package/dist/label/writer.d.ts +32 -2
- package/dist/label/writer.d.ts.map +1 -1
- package/dist/ontology/client.d.ts +136 -12
- package/dist/ontology/client.d.ts.map +1 -1
- package/dist/ontology/group/client.d.ts +0 -1
- package/dist/ontology/group/group.d.ts +0 -1
- package/dist/ontology/group/payload.d.ts +0 -1
- package/dist/ontology/group/writer.d.ts +0 -1
- package/dist/ontology/group/writer.d.ts.map +1 -1
- package/dist/ontology/payload.d.ts +6 -3
- package/dist/ontology/payload.d.ts.map +1 -1
- package/dist/ontology/writer.d.ts +4 -5
- package/dist/ontology/writer.d.ts.map +1 -1
- package/dist/ranger/alias.d.ts +0 -1
- package/dist/ranger/client.d.ts +57 -14
- package/dist/ranger/client.d.ts.map +1 -1
- package/dist/ranger/external.d.ts +1 -1
- package/dist/ranger/external.d.ts.map +1 -1
- package/dist/ranger/kv.d.ts +42 -5
- package/dist/ranger/kv.d.ts.map +1 -1
- package/dist/ranger/payload.d.ts +5 -2
- package/dist/ranger/payload.d.ts.map +1 -1
- package/dist/ranger/writer.d.ts +107 -2
- package/dist/ranger/writer.d.ts.map +1 -1
- package/dist/setupspecs.d.ts +0 -1
- package/dist/signals/observable.d.ts +0 -1
- package/dist/transport.d.ts +0 -1
- package/dist/user/client.d.ts +0 -1
- package/dist/user/payload.d.ts +0 -1
- package/dist/util/retrieve.d.ts +0 -1
- package/dist/util/telem.d.ts +0 -1
- package/dist/util/zod.d.ts +0 -1
- package/dist/workspace/client.d.ts +0 -1
- package/dist/workspace/lineplot/client.d.ts +0 -1
- package/dist/workspace/lineplot/payload.d.ts +0 -1
- package/dist/workspace/lineplot/retriever.d.ts +0 -1
- package/dist/workspace/lineplot/writer.d.ts +0 -1
- package/dist/workspace/payload.d.ts +0 -1
- package/dist/workspace/retriever.d.ts +0 -1
- package/dist/workspace/schematic/client.d.ts +0 -1
- package/dist/workspace/schematic/payload.d.ts +0 -1
- package/dist/workspace/schematic/retriever.d.ts +0 -1
- package/dist/workspace/schematic/writer.d.ts +0 -1
- package/dist/workspace/writer.d.ts +0 -1
- package/package.json +14 -12
- package/src/access/access.spec.ts +11 -11
- package/src/channel/batchRetriever.spec.ts +2 -0
- package/src/channel/channel.spec.ts +51 -31
- package/src/channel/client.ts +7 -0
- package/src/channel/payload.ts +1 -0
- package/src/client.ts +17 -8
- package/src/connection/checker.ts +58 -1
- package/src/connection/connection.spec.ts +43 -3
- package/src/control/client.ts +9 -0
- package/src/errors.spec.ts +9 -0
- package/src/framer/client.ts +0 -1
- package/src/framer/frame.spec.ts +2 -2
- package/src/framer/frame.ts +22 -22
- package/src/framer/writer.ts +2 -1
- package/src/hardware/device/payload.ts +9 -0
- package/src/hardware/rack/payload.ts +9 -0
- package/src/hardware/task/client.ts +82 -6
- package/src/hardware/task/ni/types.ts +1716 -0
- package/src/hardware/task/payload.ts +10 -0
- package/src/hardware/task/task.spec.ts +45 -30
- package/src/label/client.ts +49 -19
- package/src/label/label.spec.ts +9 -0
- package/src/label/retriever.ts +2 -1
- package/src/label/writer.ts +11 -3
- package/src/ontology/client.ts +227 -14
- package/src/ontology/group/writer.ts +10 -12
- package/src/ontology/ontology.spec.ts +3 -5
- package/src/ontology/payload.ts +5 -1
- package/src/ontology/writer.ts +26 -12
- package/src/ranger/client.ts +223 -41
- package/src/ranger/external.ts +1 -1
- package/src/ranger/kv.ts +50 -11
- package/src/ranger/payload.ts +9 -5
- package/src/ranger/ranger.spec.ts +114 -49
- package/src/ranger/writer.ts +7 -2
- package/src/vite-env.d.ts +1 -1
- package/vite.config.ts +6 -1
- package/dist/ranger/active.d.ts +0 -11
- package/dist/ranger/active.d.ts.map +0 -1
- package/dist/ranger/range.d.ts +0 -32
- package/dist/ranger/range.d.ts.map +0 -1
- package/src/ranger/active.ts +0 -74
- package/src/ranger/range.ts +0 -98
package/dist/client.cjs
CHANGED
|
@@ -1,37 +1,41 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var Vi=Object.defineProperty;var Fi=(r,e,t)=>e in r?Vi(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t;var o=(r,e,t)=>Fi(r,typeof e!="symbol"?e+"":e,t);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("zod");var Ki=Object.defineProperty,Gi=(r,e,t)=>e in r?Ki(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,k=(r,e,t)=>Gi(r,typeof e!="symbol"?e+"":e,t);const Ji=r=>{const e=r.replace(/_[a-z]/g,t=>t[1].toUpperCase());return e.length>1&&e[0]===e[0].toUpperCase()&&e[1]===e[1].toUpperCase()?e:e[0].toLowerCase()+e.slice(1)},Hn=r=>{const e=(t,n=$r)=>{if(typeof t=="string")return r(t);if(Array.isArray(t))return t.map(c=>e(c,n));if(!hr(t))return t;n=ea(n);const i={},a=t;return Object.keys(a).forEach(c=>{let l=a[c];const u=r(c);n.recursive&&(hr(l)?hn(l,n.keepTypesOnRecursion)||(l=e(l,n)):n.recursiveInArray&&un(l)&&(l=[...l].map(h=>{let p=h;return hr(h)?hn(p,n.keepTypesOnRecursion)||(p=e(h,n)):un(h)&&(p=e({key:h},n).key),p}))),i[u]=l}),i};return e},Hi=Hn(Ji),Xi=r=>r.replace(/([a-z0-9])([A-Z])/g,(e,t,n)=>`${t}_${n.toLowerCase()}`),Qi=Hn(Xi),$r={recursive:!0,recursiveInArray:!0,keepTypesOnRecursion:[Number,String,Uint8Array]},ea=(r=$r)=>(r.recursive==null?r=$r:r.recursiveInArray==null&&(r.recursiveInArray=!1),r),un=r=>r!=null&&Array.isArray(r),hr=r=>r!=null&&typeof r=="object"&&!Array.isArray(r),hn=(r,e)=>(e||[]).some(t=>r instanceof t),Xn=r=>r!=null&&typeof r=="object"&&!Array.isArray(r);var ta=Object.defineProperty,ra=(r,e,t)=>e in r?ta(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,lt=(r,e,t)=>ra(r,typeof e!="symbol"?e+"":e,t);let na=class{constructor(){lt(this,"contentType","application/json"),lt(this,"decoder"),lt(this,"encoder"),this.decoder=new TextDecoder,this.encoder=new TextEncoder}encode(e){return this.encoder.encode(this.encodeString(e)).buffer}decode(e,t){return this.decodeString(this.decoder.decode(e),t)}decodeString(e,t){const n=JSON.parse(e),i=Hi(n);return t!=null?t.parse(i):i}encodeString(e){const t=Qi(e);return JSON.stringify(t,(n,i)=>ArrayBuffer.isView(i)?Array.from(i):Xn(i)&&"encode_value"in i?typeof i.value=="bigint"?i.value.toString():i.value:typeof i=="bigint"?i.toString():i)}static registerCustomType(){}},sa=class{constructor(){lt(this,"contentType","text/csv")}encode(e){const t=this.encodeString(e);return new TextEncoder().encode(t).buffer}decode(e,t){const n=new TextDecoder().decode(e);return this.decodeString(n,t)}encodeString(e){if(!Array.isArray(e)||e.length===0||!Xn(e[0]))throw new Error("Payload must be an array of objects");const t=Object.keys(e[0]),n=[t.join(",")];return e.forEach(i=>{const a=t.map(c=>JSON.stringify(i[c]??""));n.push(a.join(","))}),n.join(`
|
|
2
2
|
`)}decodeString(e,t){const[n,...i]=e.trim().split(`
|
|
3
|
-
`).map(l=>l.trim());if(n.length===0)return t!=null?t.parse({}):{};const a=n.split(",").map(l=>l.trim()),c={};return a.forEach(l=>{c[l]=[]}),i.forEach(l=>{const u=l.split(",").map(f=>f.trim());a.forEach((f,p)=>{const g=this.parseValue(u[p]);g!=null&&c[f].push(g)})}),t!=null?t.parse(c):c}parseValue(e){if(e==null||e.length===0)return null;const t=Number(e);return isNaN(t)?e.startsWith('"')&&e.endsWith('"')?e.slice(1,-1):e:t}static registerCustomType(){}},Vi=class{constructor(){lt(this,"contentType","text/plain")}encode(e){return new TextEncoder().encode(e).buffer}decode(e,t){const n=new TextDecoder().decode(e);return t!=null?t.parse(n):n}};new Gi;new Ki;new Vi;const Wt=s.z.tuple([s.z.number(),s.z.number()]);s.z.tuple([s.z.bigint(),s.z.bigint()]);const Yn=s.z.object({width:s.z.number(),height:s.z.number()}),Ji=s.z.object({signedWidth:s.z.number(),signedHeight:s.z.number()}),Hi=["width","height"];s.z.enum(Hi);const Xi=["start","center","end"],Qi=["signedWidth","signedHeight"];s.z.enum(Qi);const Zt=s.z.object({x:s.z.number(),y:s.z.number()}),ea=s.z.object({clientX:s.z.number(),clientY:s.z.number()}),ta=["x","y"],Wn=s.z.enum(ta),Fn=["top","right","bottom","left"];s.z.enum(Fn);const ra=["left","right"],_n=s.z.enum(ra),na=["top","bottom"],Gn=s.z.enum(na),Kn=["center"],sn=s.z.enum(Kn),sa=[...Fn,...Kn],Vn=s.z.enum(sa);s.z.enum(Xi);const ia=["first","last"];s.z.enum(ia);const aa=s.z.object({lower:s.z.number(),upper:s.z.number()}),oa=s.z.object({lower:s.z.bigint(),upper:s.z.bigint()});s.z.union([aa,Wt]);s.z.union([oa,Wt]);s.z.union([Wn,Vn]);s.z.union([Wn,Vn,s.z.instanceof(String)]);const ir=(r,e)=>{const t={};if(typeof r=="number"||typeof r=="bigint")e!=null?(t.lower=r,t.upper=e):(t.lower=typeof r=="bigint"?0n:0,t.upper=r);else if(Array.isArray(r)){if(r.length!==2)throw new Error("bounds: expected array of length 2");[t.lower,t.upper]=r}else return an(r);return an(t)},an=r=>r.lower>r.upper?{lower:r.upper,upper:r.lower}:r;s.z.object({x:_n.or(sn),y:Gn.or(sn)});const ca=s.z.object({x:_n,y:Gn}),la=Object.freeze({x:"left",y:"top"}),ua=(r,e)=>r.x===e.x&&r.y===e.y,on=s.z.union([s.z.number(),Zt,Wt,Yn,Ji,ea]),ha=(r,e)=>{if(typeof r=="string"){if(e===void 0)throw new Error("The y coordinate must be given.");return r==="x"?{x:e,y:0}:{x:0,y:e}}return typeof r=="number"?{x:r,y:e??r}:Array.isArray(r)?{x:r[0],y:r[1]}:"signedWidth"in r?{x:r.signedWidth,y:r.signedHeight}:"clientX"in r?{x:r.clientX,y:r.clientY}:"width"in r?{x:r.width,y:r.height}:{x:r.x,y:r.y}},cn=Object.freeze({x:0,y:0}),Nt=s.z.union([s.z.number(),s.z.string()]);s.z.object({top:Nt,left:Nt,width:Nt,height:Nt});s.z.object({left:s.z.number(),top:s.z.number(),right:s.z.number(),bottom:s.z.number()});s.z.object({one:Zt,two:Zt,root:ca});const Mr=(r,e,t=0,n=0,i)=>{const a={one:{...cn},two:{...cn},root:i??la};if(typeof r=="number"){if(typeof e!="number")throw new Error("Box constructor called with invalid arguments");return a.one={x:r,y:e},a.two={x:a.one.x+t,y:a.one.y+n},a}return"one"in r&&"two"in r&&"root"in r?{...r,root:i??r.root}:("getBoundingClientRect"in r&&(r=r.getBoundingClientRect()),"left"in r?(a.one={x:r.left,y:r.top},a.two={x:r.right,y:r.bottom},a):(a.one=r,e==null?a.two={x:a.one.x+t,y:a.one.y+n}:typeof e=="number"?a.two={x:a.one.x+e,y:a.one.y+t}:"width"in e?a.two={x:a.one.x+e.width,y:a.one.y+e.height}:"signedWidth"in e?a.two={x:a.one.x+e.signedWidth,y:a.one.y+e.signedHeight}:a.two=e,a))},ar=r=>{const e=Mr(r);return{lower:e.one.x,upper:e.two.x}},or=r=>{const e=Mr(r);return{lower:e.one.y,upper:e.two.y}},ya=r=>typeof r!="object"||r==null?!1:"one"in r&&"two"in r&&"root"in r;var da=Object.defineProperty,fa=(r,e,t)=>e in r?da(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,ue=(r,e,t)=>fa(r,typeof e!="symbol"?e+"":e,t);const pa=(r,e,t)=>e!==void 0&&r<e?e:t!==void 0&&r>t?t:r;s.z.object({offset:on,scale:on});const ga=r=>(e,t,n,i)=>t==="dimension"?[e,n]:[e,i?n-r:n+r],ma=r=>(e,t,n,i)=>[e,i?n/r:n*r],wa=r=>(e,t,n)=>{if(e===null)return[r,n];const{lower:i,upper:a}=e,{lower:c,upper:l}=r,u=a-i,f=l-c;if(t==="dimension")return[r,n*(f/u)];const p=(n-i)*(f/u)+c;return[r,p]},ba=r=>(e,t,n)=>[r,n],va=()=>(r,e,t)=>{if(r===null)throw new Error("cannot invert without bounds");if(e==="dimension")return[r,t];const{lower:n,upper:i}=r;return[r,i-(t-n)]},Ta=r=>(e,t,n)=>{const{lower:i,upper:a}=r;return n=pa(n,i,a),[e,n]},zr=class tt{constructor(){ue(this,"ops",[]),ue(this,"currBounds",null),ue(this,"currType",null),ue(this,"reversed",!1),this.ops=[]}static translate(e){return new tt().translate(e)}static magnify(e){return new tt().magnify(e)}static scale(e,t){return new tt().scale(e,t)}translate(e){const t=this.new(),n=ga(e);return n.type="translate",t.ops.push(n),t}magnify(e){const t=this.new(),n=ma(e);return n.type="magnify",t.ops.push(n),t}scale(e,t){const n=ir(e,t),i=this.new(),a=wa(n);return a.type="scale",i.ops.push(a),i}clamp(e,t){const n=ir(e,t),i=this.new(),a=Ta(n);return a.type="clamp",i.ops.push(a),i}reBound(e,t){const n=ir(e,t),i=this.new(),a=ba(n);return a.type="re-bound",i.ops.push(a),i}invert(){const e=va();e.type="invert";const t=this.new();return t.ops.push(e),t}pos(e){return this.exec("position",e)}dim(e){return this.exec("dimension",e)}new(){const e=new tt;return e.ops=this.ops.slice(),e.reversed=this.reversed,e}exec(e,t){return this.currBounds=null,this.ops.reduce(([n,i],a)=>a(n,e,i,this.reversed),[null,t])[1]}reverse(){const e=this.new();e.ops.reverse();const t=[];return e.ops.forEach((n,i)=>{if(n.type==="scale"||t.some(([c,l])=>i>=c&&i<=l))return;const a=e.ops.findIndex((c,l)=>c.type==="scale"&&l>i);a!==-1&&t.push([i,a])}),t.forEach(([n,i])=>{const a=e.ops.slice(n,i);a.unshift(e.ops[i]),e.ops.splice(n,i-n+1,...a)}),e.reversed=!e.reversed,e}};ue(zr,"IDENTITY",new zr);let ln=zr;const un=class oe{constructor(e=new ln,t=new ln,n=null){ue(this,"x"),ue(this,"y"),ue(this,"currRoot"),this.x=e,this.y=t,this.currRoot=n}static translate(e,t){return new oe().translate(e,t)}static translateX(e){return new oe().translateX(e)}static translateY(e){return new oe().translateY(e)}static clamp(e){return new oe().clamp(e)}static magnify(e){return new oe().magnify(e)}static scale(e){return new oe().scale(e)}static reBound(e){return new oe().reBound(e)}translate(e,t){const n=ha(e,t),i=this.copy();return i.x=this.x.translate(n.x),i.y=this.y.translate(n.y),i}translateX(e){const t=this.copy();return t.x=this.x.translate(e),t}translateY(e){const t=this.copy();return t.y=this.y.translate(e),t}magnify(e){const t=this.copy();return t.x=this.x.magnify(e.x),t.y=this.y.magnify(e.y),t}scale(e){const t=this.copy();if(ya(e)){const n=this.currRoot;return t.currRoot=e.root,n!=null&&!ua(n,e.root)&&(n.x!==e.root.x&&(t.x=t.x.invert()),n.y!==e.root.y&&(t.y=t.y.invert())),t.x=t.x.scale(ar(e)),t.y=t.y.scale(or(e)),t}return t.x=t.x.scale(e.width),t.y=t.y.scale(e.height),t}reBound(e){const t=this.copy();return t.x=this.x.reBound(ar(e)),t.y=this.y.reBound(or(e)),t}clamp(e){const t=this.copy();return t.x=this.x.clamp(ar(e)),t.y=this.y.clamp(or(e)),t}copy(){const e=new oe;return e.currRoot=this.currRoot,e.x=this.x,e.y=this.y,e}reverse(){const e=this.copy();return e.x=this.x.reverse(),e.y=this.y.reverse(),e}pos(e){return{x:this.x.pos(e.x),y:this.y.pos(e.y)}}box(e){return Mr(this.pos(e.one),this.pos(e.two),0,0,this.currRoot??e.root)}};ue(un,"IDENTITY",new un);const Oa=s.z.object({signedWidth:s.z.number(),signedHeight:s.z.number()});s.z.union([Yn,Oa,Zt,Wt]);var za=Object.defineProperty,Ea=(r,e,t)=>e in r?za(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,m=(r,e,t)=>Ea(r,typeof e!="symbol"?e+"":e,t);const Jn=(r,e)=>{const t=new q(e);if(![Y.DAY,Y.HOUR,Y.MINUTE,Y.SECOND,Y.MILLISECOND,Y.MICROSECOND,Y.NANOSECOND].some(i=>i.equals(t)))throw new Error("Invalid argument for remainder. Must be an even TimeSpan or Timestamp");const n=r.valueOf()%t.valueOf();return r instanceof q?new q(n):new Y(n)},k=class b{constructor(e,t="UTC"){if(m(this,"value"),m(this,"encodeValue",!0),e==null)this.value=b.now().valueOf();else if(e instanceof Date)this.value=BigInt(e.getTime())*b.MILLISECOND.valueOf();else if(typeof e=="string")this.value=b.parseDateTimeString(e,t).valueOf();else if(Array.isArray(e))this.value=b.parseDate(e);else{let n=BigInt(0);e instanceof Number&&(e=e.valueOf()),t==="local"&&(n=b.utcOffset.valueOf()),typeof e=="number"&&(isFinite(e)?e=Math.trunc(e):(isNaN(e)&&(e=0),e===1/0?e=b.MAX:e=b.MIN)),this.value=BigInt(e.valueOf())+n}}static parseDate([e=1970,t=1,n=1]){const i=new Date(e,t-1,n,0,0,0,0);return new b(BigInt(i.getTime())*b.MILLISECOND.valueOf()).truncate(b.DAY).valueOf()}encode(){return this.value.toString()}valueOf(){return this.value}static parseTimeString(e,t="UTC"){const[n,i,a]=e.split(":");let c="00",l="00";a!=null&&([c,l]=a.split("."));let u=b.hours(parseInt(n??"00",10)).add(b.minutes(parseInt(i??"00",10))).add(b.seconds(parseInt(c??"00",10))).add(b.milliseconds(parseInt(l??"00",10)));return t==="local"&&(u=u.add(b.utcOffset)),u.valueOf()}static parseDateTimeString(e,t="UTC"){if(!e.includes("/")&&!e.includes("-"))return b.parseTimeString(e,t);const n=new Date(e);return e.includes(":")||n.setUTCHours(0,0,0,0),new b(BigInt(n.getTime())*b.MILLISECOND.valueOf(),t).valueOf()}fString(e="ISO",t="UTC"){switch(e){case"ISODate":return this.toISOString(t).slice(0,10);case"ISOTime":return this.toISOString(t).slice(11,23);case"time":return this.timeString(!1,t);case"preciseTime":return this.timeString(!0,t);case"date":return this.dateString();case"preciseDate":return`${this.dateString()} ${this.timeString(!0,t)}`;case"dateTime":return`${this.dateString()} ${this.timeString(!1,t)}`;default:return this.toISOString(t)}}toISOString(e="UTC"){return e==="UTC"?this.date().toISOString():this.sub(b.utcOffset).date().toISOString()}timeString(e=!1,t="UTC"){const n=this.toISOString(t);return e?n.slice(11,23):n.slice(11,19)}dateString(){const e=this.date(),t=e.toLocaleString("default",{month:"short"}),n=e.toLocaleString("default",{day:"numeric"});return`${t} ${n}`}static get utcOffset(){return new Y(BigInt(new Date().getTimezoneOffset())*b.MINUTE.valueOf())}static since(e){return new b().span(e)}date(){return new Date(this.milliseconds())}equals(e){return this.valueOf()===new b(e).valueOf()}span(e){return this.range(e).span}range(e){return new Sa(this,e).makeValid()}spanRange(e){return this.range(this.add(e)).makeValid()}get isZero(){return this.valueOf()===BigInt(0)}after(e){return this.valueOf()>new b(e).valueOf()}afterEq(e){return this.valueOf()>=new b(e).valueOf()}before(e){return this.valueOf()<new b(e).valueOf()}beforeEq(e){return this.valueOf()<=new b(e).valueOf()}add(e){return new b(this.valueOf()+BigInt(e.valueOf()))}sub(e){return new b(this.valueOf()-BigInt(e.valueOf()))}milliseconds(){return Number(this.valueOf())/Number(b.MILLISECOND.valueOf())}toString(){return this.date().toISOString()}remainder(e){return Jn(this,e)}get isToday(){return this.truncate(Y.DAY).equals(b.now().truncate(Y.DAY))}truncate(e){return this.sub(this.remainder(e))}static now(){return new b(new Date)}static max(...e){let t=b.MIN;for(const n of e){const i=new b(n);i.after(t)&&(t=i)}return t}static min(...e){let t=b.MAX;for(const n of e){const i=new b(n);i.before(t)&&(t=i)}return t}static nanoseconds(e){return new b(e)}static microseconds(e){return b.nanoseconds(e*1e3)}static milliseconds(e){return b.microseconds(e*1e3)}static seconds(e){return b.milliseconds(e*1e3)}static minutes(e){return b.seconds(e*60)}static hours(e){return b.minutes(e*60)}static days(e){return b.hours(e*24)}};m(k,"NANOSECOND",k.nanoseconds(1)),m(k,"MICROSECOND",k.microseconds(1)),m(k,"MILLISECOND",k.milliseconds(1)),m(k,"SECOND",k.seconds(1)),m(k,"MINUTE",k.minutes(1)),m(k,"HOUR",k.hours(1)),m(k,"DAY",k.days(1)),m(k,"MAX",new k((1n<<63n)-1n)),m(k,"MIN",new k(0)),m(k,"ZERO",new k(0)),m(k,"z",s.z.union([s.z.object({value:s.z.bigint()}).transform(r=>new k(r.value)),s.z.string().transform(r=>new k(BigInt(r))),s.z.instanceof(Number).transform(r=>new k(r)),s.z.number().transform(r=>new k(r)),s.z.instanceof(k)]));let q=k;const A=class S{constructor(e){m(this,"value"),m(this,"encodeValue",!0),typeof e=="number"&&(e=Math.trunc(e.valueOf())),this.value=BigInt(e.valueOf())}encode(){return this.value.toString()}valueOf(){return this.value}lessThan(e){return this.valueOf()<new S(e).valueOf()}greaterThan(e){return this.valueOf()>new S(e).valueOf()}lessThanOrEqual(e){return this.valueOf()<=new S(e).valueOf()}greaterThanOrEqual(e){return this.valueOf()>=new S(e).valueOf()}remainder(e){return Jn(this,e)}truncate(e){return new S(BigInt(Math.trunc(Number(this.valueOf()/e.valueOf())))*e.valueOf())}toString(){const e=this.truncate(S.DAY),t=this.truncate(S.HOUR),n=this.truncate(S.MINUTE),i=this.truncate(S.SECOND),a=this.truncate(S.MILLISECOND),c=this.truncate(S.MICROSECOND),l=this.truncate(S.NANOSECOND),u=e,f=t.sub(e),p=n.sub(t),g=i.sub(n),P=a.sub(i),j=c.sub(a),Q=l.sub(c);let D="";return u.isZero||(D+=`${u.days}d `),f.isZero||(D+=`${f.hours}h `),p.isZero||(D+=`${p.minutes}m `),g.isZero||(D+=`${g.seconds}s `),P.isZero||(D+=`${P.milliseconds}ms `),j.isZero||(D+=`${j.microseconds}µs `),Q.isZero||(D+=`${Q.nanoseconds}ns`),D.trim()}get days(){return Number(this.valueOf())/Number(S.DAY.valueOf())}get hours(){return Number(this.valueOf())/Number(S.HOUR.valueOf())}get minutes(){return Number(this.valueOf())/Number(S.MINUTE.valueOf())}get seconds(){return Number(this.valueOf())/Number(S.SECOND.valueOf())}get milliseconds(){return Number(this.valueOf())/Number(S.MILLISECOND.valueOf())}get microseconds(){return Number(this.valueOf())/Number(S.MICROSECOND.valueOf())}get nanoseconds(){return Number(this.valueOf())}get isZero(){return this.valueOf()===BigInt(0)}equals(e){return this.valueOf()===new S(e).valueOf()}add(e){return new S(this.valueOf()+new S(e).valueOf())}sub(e){return new S(this.valueOf()-new S(e).valueOf())}static nanoseconds(e=1){return new S(e)}static microseconds(e=1){return S.nanoseconds(e*1e3)}static milliseconds(e=1){return S.microseconds(e*1e3)}static seconds(e=1){return S.milliseconds(e*1e3)}static minutes(e){return S.seconds(e.valueOf()*60)}static hours(e){return S.minutes(e*60)}static days(e){return S.hours(e*24)}};m(A,"NANOSECOND",A.nanoseconds(1)),m(A,"MICROSECOND",A.microseconds(1)),m(A,"MILLISECOND",A.milliseconds(1)),m(A,"SECOND",A.seconds(1)),m(A,"MINUTE",A.minutes(1)),m(A,"HOUR",A.hours(1)),m(A,"DAY",A.days(1)),m(A,"MAX",new A((1n<<63n)-1n)),m(A,"MIN",new A(0)),m(A,"ZERO",new A(0)),m(A,"z",s.z.union([s.z.object({value:s.z.bigint()}).transform(r=>new A(r.value)),s.z.string().transform(r=>new A(BigInt(r))),s.z.instanceof(Number).transform(r=>new A(r)),s.z.number().transform(r=>new A(r)),s.z.instanceof(A)]));let Y=A;const It=class At extends Number{constructor(e){e instanceof Number?super(e.valueOf()):super(e)}toString(){return`${this.valueOf()} Hz`}equals(e){return this.valueOf()===new At(e).valueOf()}get period(){return Y.seconds(1/this.valueOf())}sampleCount(e){return new Y(e).seconds*this.valueOf()}byteCount(e,t){return this.sampleCount(e)*new V(t).valueOf()}span(e){return Y.seconds(e/this.valueOf())}byteSpan(e,t){return this.span(e.valueOf()/t.valueOf())}static hz(e){return new At(e)}static khz(e){return At.hz(e*1e3)}};m(It,"z",s.z.union([s.z.number().transform(r=>new It(r)),s.z.instanceof(Number).transform(r=>new It(r)),s.z.instanceof(It)]));const B=class extends Number{constructor(e){e instanceof Number?super(e.valueOf()):super(e)}length(e){return e.valueOf()/this.valueOf()}size(e){return new Na(e*this.valueOf())}};m(B,"UNKNOWN",new B(0)),m(B,"BIT128",new B(16)),m(B,"BIT64",new B(8)),m(B,"BIT32",new B(4)),m(B,"BIT16",new B(2)),m(B,"BIT8",new B(1)),m(B,"z",s.z.union([s.z.number().transform(r=>new B(r)),s.z.instanceof(Number).transform(r=>new B(r)),s.z.instanceof(B)]));let V=B;const re=class $t{constructor(e,t){m(this,"start"),m(this,"end"),typeof e=="object"&&"start"in e?(this.start=new q(e.start),this.end=new q(e.end)):(this.start=new q(e),this.end=new q(t))}get span(){return new Y(this.end.valueOf()-this.start.valueOf())}get isValid(){return this.start.valueOf()<=this.end.valueOf()}makeValid(){return this.isValid?this:this.swap()}get isZero(){return this.span.isZero}swap(){return new $t(this.end,this.start)}equals(e){return this.start.equals(e.start)&&this.end.equals(e.end)}toString(){return`${this.start.toString()} - ${this.end.toString()}`}toPrettyString(){return`${this.start.fString("preciseDate")} - ${this.span.toString()}`}overlapsWith(e,t=Y.ZERO){e=e.makeValid();const n=this.makeValid();if(this.equals(e))return!0;if(e.end.equals(n.start)||n.end.equals(e.start))return!1;const i=q.max(n.start,e.start),a=q.min(n.end,e.end);return a.before(i)?!1:new Y(a.sub(i)).greaterThanOrEqual(t)}roughlyEquals(e,t){let n=this.start.sub(e.start).valueOf(),i=this.end.sub(e.end).valueOf();return n<0&&(n=-n),i<0&&(i=-i),n<=t.valueOf()&&i<=t.valueOf()}contains(e){return e instanceof $t?this.contains(e.start)&&this.contains(e.end):this.start.beforeEq(e)&&this.end.after(e)}boundBy(e){const t=new $t(this.start,this.end);return e.start.after(this.start)&&(t.start=e.start),e.start.after(this.end)&&(t.end=e.start),e.end.before(this.end)&&(t.end=e.end),e.end.before(this.start)&&(t.start=e.end),t}};m(re,"MAX",new re(q.MIN,q.MAX)),m(re,"MIN",new re(q.MAX,q.MIN)),m(re,"ZERO",new re(q.ZERO,q.ZERO)),m(re,"z",s.z.union([s.z.object({start:q.z,end:q.z}).transform(r=>new re(r.start,r.end)),s.z.instanceof(re)]));let Sa=re;const y=class ne extends String{constructor(e){if(e instanceof ne||typeof e=="string"||typeof e.valueOf()=="string"){super(e.valueOf());return}else{const t=ne.ARRAY_CONSTRUCTOR_DATA_TYPES.get(e.constructor.name);if(t!=null){super(t.valueOf());return}}throw super(ne.UNKNOWN.valueOf()),new Error(`unable to find data type for ${e.toString()}`)}get Array(){const e=ne.ARRAY_CONSTRUCTORS.get(this.toString());if(e==null)throw new Error(`unable to find array constructor for ${this.valueOf()}`);return e}equals(e){return this.valueOf()===e.valueOf()}toString(){return this.valueOf()}get isVariable(){return this.equals(ne.JSON)||this.equals(ne.STRING)}get isNumeric(){return!this.isVariable&&!this.equals(ne.UUID)}get isInteger(){return this.toString().startsWith("int")}get isFloat(){return this.toString().startsWith("float")}get density(){const e=ne.DENSITIES.get(this.toString());if(e==null)throw new Error(`unable to find density for ${this.valueOf()}`);return e}canSafelyCastTo(e){return this.equals(e)?!0:this.isVariable&&!e.isVariable||!this.isVariable&&e.isVariable?!1:this.isFloat&&e.isInteger||this.isInteger&&e.isFloat?this.density.valueOf()<e.density.valueOf():this.isFloat&&e.isFloat||this.isInteger&&e.isInteger?this.density.valueOf()<=e.density.valueOf():!1}canCastTo(e){return this.isNumeric&&e.isNumeric?!0:this.equals(e)}checkArray(e){return e.constructor===this.Array}toJSON(){return this.toString()}get usesBigInt(){return ne.BIG_INT_TYPES.some(e=>e.equals(this))}};m(y,"UNKNOWN",new y("unknown")),m(y,"FLOAT64",new y("float64")),m(y,"FLOAT32",new y("float32")),m(y,"INT64",new y("int64")),m(y,"INT32",new y("int32")),m(y,"INT16",new y("int16")),m(y,"INT8",new y("int8")),m(y,"UINT64",new y("uint64")),m(y,"UINT32",new y("uint32")),m(y,"UINT16",new y("uint16")),m(y,"UINT8",new y("uint8")),m(y,"BOOLEAN",y.UINT8),m(y,"TIMESTAMP",new y("timestamp")),m(y,"UUID",new y("uuid")),m(y,"STRING",new y("string")),m(y,"JSON",new y("json")),m(y,"ARRAY_CONSTRUCTORS",new Map([[y.UINT8.toString(),Uint8Array],[y.UINT16.toString(),Uint16Array],[y.UINT32.toString(),Uint32Array],[y.UINT64.toString(),BigUint64Array],[y.FLOAT32.toString(),Float32Array],[y.FLOAT64.toString(),Float64Array],[y.INT8.toString(),Int8Array],[y.INT16.toString(),Int16Array],[y.INT32.toString(),Int32Array],[y.INT64.toString(),BigInt64Array],[y.TIMESTAMP.toString(),BigInt64Array],[y.STRING.toString(),Uint8Array],[y.JSON.toString(),Uint8Array],[y.UUID.toString(),Uint8Array]])),m(y,"ARRAY_CONSTRUCTOR_DATA_TYPES",new Map([[Uint8Array.name,y.UINT8],[Uint16Array.name,y.UINT16],[Uint32Array.name,y.UINT32],[BigUint64Array.name,y.UINT64],[Float32Array.name,y.FLOAT32],[Float64Array.name,y.FLOAT64],[Int8Array.name,y.INT8],[Int16Array.name,y.INT16],[Int32Array.name,y.INT32],[BigInt64Array.name,y.INT64]])),m(y,"DENSITIES",new Map([[y.UINT8.toString(),V.BIT8],[y.UINT16.toString(),V.BIT16],[y.UINT32.toString(),V.BIT32],[y.UINT64.toString(),V.BIT64],[y.FLOAT32.toString(),V.BIT32],[y.FLOAT64.toString(),V.BIT64],[y.INT8.toString(),V.BIT8],[y.INT16.toString(),V.BIT16],[y.INT32.toString(),V.BIT32],[y.INT64.toString(),V.BIT64],[y.TIMESTAMP.toString(),V.BIT64],[y.STRING.toString(),V.UNKNOWN],[y.JSON.toString(),V.UNKNOWN],[y.UUID.toString(),V.BIT128]])),m(y,"ALL",[y.UNKNOWN,y.FLOAT64,y.FLOAT32,y.INT64,y.INT32,y.INT16,y.INT8,y.UINT64,y.UINT32,y.UINT16,y.UINT8,y.TIMESTAMP,y.UUID,y.STRING,y.JSON]),m(y,"BIG_INT_TYPES",[y.INT64,y.UINT64,y.TIMESTAMP]),m(y,"z",s.z.union([s.z.string().transform(r=>new y(r)),s.z.instanceof(y)]));const W=class M extends Number{constructor(e){super(e.valueOf())}largerThan(e){return this.valueOf()>e.valueOf()}smallerThan(e){return this.valueOf()<e.valueOf()}add(e){return M.bytes(this.valueOf()+e.valueOf())}sub(e){return M.bytes(this.valueOf()-e.valueOf())}truncate(e){return new M(Math.trunc(this.valueOf()/e.valueOf())*e.valueOf())}remainder(e){return M.bytes(this.valueOf()%e.valueOf())}get gigabytes(){return this.valueOf()/M.GIGABYTE.valueOf()}get megabytes(){return this.valueOf()/M.MEGABYTE.valueOf()}get kilobytes(){return this.valueOf()/M.KILOBYTE.valueOf()}get terabytes(){return this.valueOf()/M.TERABYTE.valueOf()}toString(){const e=this.truncate(M.TERABYTE),t=this.truncate(M.GIGABYTE),n=this.truncate(M.MEGABYTE),i=this.truncate(M.KILOBYTE),a=this.truncate(M.BYTE),c=e,l=t.sub(e),u=n.sub(t),f=i.sub(n),p=a.sub(i);let g="";return c.isZero||(g+=`${c.terabytes}TB `),l.isZero||(g+=`${l.gigabytes}GB `),u.isZero||(g+=`${u.megabytes}MB `),f.isZero||(g+=`${f.kilobytes}KB `),(!p.isZero||g==="")&&(g+=`${p.valueOf()}B`),g.trim()}static bytes(e=1){return new M(e)}static kilobytes(e=1){return M.bytes(e.valueOf()*1e3)}static megabytes(e=1){return M.kilobytes(e.valueOf()*1e3)}static gigabytes(e=1){return M.megabytes(e.valueOf()*1e3)}static terabytes(e){return M.gigabytes(e.valueOf()*1e3)}get isZero(){return this.valueOf()===0}};m(W,"BYTE",new W(1)),m(W,"KILOBYTE",W.kilobytes(1)),m(W,"MEGABYTE",W.megabytes(1)),m(W,"GIGABYTE",W.gigabytes(1)),m(W,"TERABYTE",W.terabytes(1)),m(W,"ZERO",new W(0)),m(W,"z",s.z.union([s.z.number().transform(r=>new W(r)),s.z.instanceof(W)]));let Na=W;s.z.union([s.z.instanceof(Uint8Array),s.z.instanceof(Uint16Array),s.z.instanceof(Uint32Array),s.z.instanceof(BigUint64Array),s.z.instanceof(Float32Array),s.z.instanceof(Float64Array),s.z.instanceof(Int8Array),s.z.instanceof(Int16Array),s.z.instanceof(Int32Array),s.z.instanceof(BigInt64Array)]);s.z.record(s.z.union([s.z.number(),s.z.string(),s.z.symbol()]),s.z.unknown());const Hn=()=>typeof process<"u"&&process.versions!=null&&process.versions.node!=null?"node":typeof window>"u"||window.document===void 0?"webworker":"browser",Ia=Hn(),Xn=["MacOS","Windows","Linux","Docker"],ka=s.z.enum(Xn);let cr;const Aa=()=>{if(typeof window>"u")return;const r=window.navigator.userAgent.toLowerCase();if(r.includes("mac"))return"MacOS";if(r.includes("win"))return"Windows";if(r.includes("linux"))return"Linux"},$a=(r={})=>{const{force:e,default:t}=r;return e??cr??(cr=Aa(),cr??t)},Qn=Object.freeze(Object.defineProperty({__proto__:null,OPERATING_SYSTEMS:Xn,RUNTIME:Ia,detect:Hn,getOS:$a,osZ:ka},Symbol.toStringTag,{value:"Module"}));var Ra=Object.defineProperty,xa=(r,e,t)=>e in r?Ra(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,rt=(r,e,t)=>xa(r,typeof e!="symbol"?e+"":e,t);const Ca=(...r)=>r.map(es).join(""),es=r=>(r.endsWith("/")||(r+="/"),r.startsWith("/")&&(r=r.slice(1)),r),ja=r=>r.endsWith("/")?r.slice(0,-1):r,Pa=(r,e="")=>r===null?"":"?"+Object.entries(r).filter(([,t])=>t==null?!1:Array.isArray(t)?t.length>0:!0).map(([t,n])=>`${e}${t}=${n}`).join("&"),Er=class Sr{constructor({host:e,port:t,protocol:n="",pathPrefix:i=""}){rt(this,"protocol"),rt(this,"host"),rt(this,"port"),rt(this,"path"),this.protocol=n,this.host=e,this.port=t,this.path=es(i)}replace(e){return new Sr({host:e.host??this.host,port:e.port??this.port,protocol:e.protocol??this.protocol,pathPrefix:e.pathPrefix??this.path})}child(e){return new Sr({...this,pathPrefix:Ca(this.path,e)})}toString(){return ja(`${this.protocol}://${this.host}:${this.port}/${this.path}`)}};rt(Er,"UNKNOWN",new Er({host:"unknown",port:0}));let Da=Er;var Ma=Object.defineProperty,Za=(r,e,t)=>e in r?Ma(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,Rt=(r,e,t)=>Za(r,typeof e!="symbol"?e+"":e,t);const Ae=class extends Number{};Rt(Ae,"Absolute",255),Rt(Ae,"Default",1),Rt(Ae,"z",s.z.union([s.z.instanceof(Ae),s.z.number().int().min(0).max(255).transform(r=>new Ae(r)),s.z.instanceof(Number).transform(r=>new Ae(r))]));s.z.object({name:s.z.string(),key:s.z.string()});const ts=class nt extends Error{constructor(){super(nt.MESSAGE)}matches(e){return typeof e=="string"?e.includes(nt.MESSAGE):e instanceof nt||e.message.includes(nt.MESSAGE)}};Rt(ts,"MESSAGE","canceled");let Ua=ts;new Ua;s.z.string().regex(/^\d+\.\d+\.\d+$/);const J=r=>e=>e!=null&&typeof e=="object"&&"type"in e&&typeof e.type=="string"?e.type.includes(r):e instanceof Error?e.message.includes(r):typeof e!="string"?!1:e.includes(r);let te=class extends Error{constructor(e){super(e),I(this,"discriminator","FreighterError"),I(this,"type","")}};const Ba=r=>{if(r==null||typeof r!="object")return!1;const e=r;if(e.discriminator!=="FreighterError")return!1;if(!("type"in e))throw new Error(`Freighter error is missing its type property: ${JSON.stringify(e)}`);return!0},hn="unknown",yn="nil",La="freighter",Tt=s.z.object({type:s.z.string(),data:s.z.string()});class qa{constructor(){I(this,"providers",[])}register(e){this.providers.push(e)}encode(e){if(e==null)return{type:yn,data:""};if(Ba(e))for(const t of this.providers){const n=t.encode(e);if(n!=null)return n}return{type:hn,data:JSON.stringify(e)}}decode(e){if(e==null||e.type===yn)return null;if(e.type===hn)return new dn(e.data);for(const t of this.providers){const n=t.decode(e);if(n!=null)return n}return new dn(e.data)}}const rs=new qa,ns=({encode:r,decode:e})=>rs.register({encode:r,decode:e}),Zr=r=>rs.decode(r);class dn extends te{constructor(e){super(e),I(this,"type","unknown")}}const Ft="freighter.",xt=class ss extends te{constructor(){super("EOF"),I(this,"type",ss.TYPE)}};I(xt,"TYPE",Ft+"eof"),I(xt,"matches",J(xt.TYPE));let ge=xt;const Ct=class is extends te{constructor(){super("StreamClosed"),I(this,"type",is.TYPE)}};I(Ct,"TYPE",Ft+"stream_closed"),I(Ct,"matches",J(Ct.TYPE));let Fe=Ct;const jt=class as extends te{constructor(e={}){const{message:t="Unreachable",url:n=Da.UNKNOWN}=e;super(t),I(this,"type",as.TYPE),I(this,"url"),this.url=n}};I(jt,"TYPE",Ft+"unreachable"),I(jt,"matches",J(jt.TYPE));let Se=jt;const Ya=r=>{if(!r.type.startsWith(La))return null;if(ge.matches(r))return{type:ge.TYPE,data:"EOF"};if(Fe.matches(r))return{type:Fe.TYPE,data:"StreamClosed"};if(Se.matches(r))return{type:Se.TYPE,data:"Unreachable"};throw new Error(`Unknown error type: ${r.type}: ${r.message}`)},Wa=r=>{if(!r.type.startsWith(Ft))return null;switch(r.type){case ge.TYPE:return new ge;case Fe.TYPE:return new Fe;case Se.TYPE:return new Se;default:throw new Error(`Unknown error type: ${r.data}`)}};ns({encode:Ya,decode:Wa});class os{constructor(){I(this,"middleware",[])}use(...e){this.middleware.push(...e)}async executeMiddleware(e,t){let n=0;const i=async a=>{if(n===this.middleware.length)return await t(a);const c=this.middleware[n];return n++,await c(a,i)};return await i(e)}}const cs="Content-Type",fn=r=>{if(Qn.RUNTIME!=="node")return fetch;const e=require("node-fetch");if(r==="http")return e;const t=require("https"),n=new t.Agent({rejectUnauthorized:!1});return async(i,a)=>await e(i,{...a,agent:n})};class Fa extends os{constructor(e,t,n=!1){return super(),I(this,"endpoint"),I(this,"encoder"),I(this,"fetch"),this.endpoint=e.replace({protocol:n?"https":"http"}),this.encoder=t,this.fetch=fn(this.endpoint.protocol),new Proxy(this,{get:(i,a,c)=>a==="endpoint"?this.endpoint:Reflect.get(i,a,c)})}get headers(){return{[cs]:this.encoder.contentType}}async send(e,t,n,i){t=n==null?void 0:n.parse(t);let a=null;const c=this.endpoint.child(e),l={};l.method="POST",l.body=this.encoder.encode(t??{});const[,u]=await this.executeMiddleware({target:c.toString(),protocol:this.endpoint.protocol,params:{},role:"client"},async f=>{const p={...f,params:{}};l.headers={...this.headers,...f.params};let g;try{g=await fn(f.protocol)(f.target,l)}catch(j){let Q=j;return Q.message==="Load failed"&&(Q=new Se({url:c})),[p,Q]}const P=await g.arrayBuffer();if(g!=null&&g.ok)return i!=null&&(a=this.encoder.decode(P,i)),[p,null];try{if(g.status!==400)return[p,new Error(g.statusText)];const j=this.encoder.decode(P,Tt),Q=Zr(j);return[p,Q]}catch(j){return[p,new Error(`[freighter] - failed to decode error: ${g.statusText}: ${j.message}`)]}});return[a,u]}}const w=async(r,e,t,n,i)=>{const[a,c]=await r.send(e,t,n,i);if(c!=null)throw c;return a},_a=()=>Qn.RUNTIME!=="node"?r=>new WebSocket(r):r=>new(require("ws")).WebSocket(r,{rejectUnauthorized:!1}),Ga=s.z.object({type:s.z.union([s.z.literal("data"),s.z.literal("close")]),payload:s.z.unknown().optional(),error:s.z.optional(Tt)});class Ka{constructor(e,t,n,i){I(this,"encoder"),I(this,"reqSchema"),I(this,"resSchema"),I(this,"ws"),I(this,"serverClosed"),I(this,"sendClosed"),I(this,"receiveDataQueue",[]),I(this,"receiveCallbacksQueue",[]),this.encoder=t,this.reqSchema=n,this.resSchema=i,this.ws=e,this.sendClosed=!1,this.serverClosed=null,this.listenForMessages()}send(e){if(this.serverClosed!=null)return new ge;if(this.sendClosed)throw new Fe;return this.ws.send(this.encoder.encode({type:"data",payload:e})),null}async receive(){if(this.serverClosed!=null)return[null,this.serverClosed];const e=await this.receiveMsg();if(e.type==="close"){if(e.error==null)throw new Error("Message error must be defined");return this.serverClosed=Zr(e.error),[null,this.serverClosed]}return[this.resSchema.parse(e.payload),null]}received(){return this.receiveDataQueue.length!==0}closeSend(){if(this.sendClosed||this.serverClosed!=null)return;const e={type:"close"};try{this.ws.send(this.encoder.encode(e))}finally{this.sendClosed=!0}}async receiveMsg(){return this.receiveDataQueue.shift()??await new Promise((t,n)=>this.receiveCallbacksQueue.push({resolve:t,reject:n}))}addMessage(e){const t=this.receiveCallbacksQueue.shift();t!=null?t.resolve(e):this.receiveDataQueue.push(e)}listenForMessages(){this.ws.onmessage=e=>this.addMessage(this.encoder.decode(e.data,Ga)),this.ws.onclose=e=>this.addMessage({type:"close",error:{type:Qa(e)?ge.TYPE:Fe.TYPE,data:""}})}}const Va="freighterctx",Ja=1e3,Ha=1001,Xa=[Ja,Ha],Qa=r=>Xa.includes(r.code),ls=class us extends os{constructor(e,t,n=!1){super(),I(this,"baseUrl"),I(this,"encoder"),this.baseUrl=e.replace({protocol:n?"wss":"ws"}),this.encoder=t}async stream(e,t,n){const i=_a();let a;const[,c]=await this.executeMiddleware({target:e,protocol:"websocket",params:{},role:"client"},async l=>{const u=i(this.buildURL(e,l)),f={...l,params:{}};u.binaryType=us.MESSAGE_TYPE;const p=await this.wrapSocket(u,t,n);return p instanceof Error?[f,p]:(a=p,[f,null])});if(c!=null)throw c;return a}buildURL(e,t){const n=Pa({[cs]:this.encoder.contentType,...t.params},Va);return this.baseUrl.child(e).toString()+n}async wrapSocket(e,t,n){return await new Promise(i=>{e.onopen=()=>{i(new Ka(e,this.encoder,t,n))},e.onerror=a=>{const c=a;i(new Error(c.message))}})}};I(ls,"MESSAGE_TYPE","arraybuffer");let eo=ls;const to=r=>{const e=r.replace(/_[a-z]/g,t=>t[1].toUpperCase());return e.length>1&&e[0]===e[0].toUpperCase()&&e[1]===e[1].toUpperCase()?e:e[0].toLowerCase()+e.slice(1)},hs=r=>{const e=(t,n=Nr)=>{if(typeof t=="string")return r(t);if(Array.isArray(t))return t.map(c=>e(c,n));if(!lr(t))return t;n=so(n);const i={},a=t;return Object.keys(a).forEach(c=>{let l=a[c];const u=r(c);n.recursive&&(lr(l)?gn(l,n.keepTypesOnRecursion)||(l=e(l,n)):n.recursiveInArray&&pn(l)&&(l=[...l].map(f=>{let p=f;return lr(f)?gn(p,n.keepTypesOnRecursion)||(p=e(f,n)):pn(f)&&(p=e({key:f},n).key),p}))),i[u]=l}),i};return e},ys=hs(to),ro=r=>r.replace(/([a-z0-9])([A-Z])/g,(e,t,n)=>`${t}_${n.toLowerCase()}`),no=hs(ro),Nr={recursive:!0,recursiveInArray:!0,keepTypesOnRecursion:[Number,String,Uint8Array]},so=(r=Nr)=>(r.recursive==null?r=Nr:r.recursiveInArray==null&&(r.recursiveInArray=!1),r),pn=r=>r!=null&&Array.isArray(r),lr=r=>r!=null&&typeof r=="object"&&!Array.isArray(r),gn=(r,e)=>(e||[]).some(t=>r instanceof t),Ur=r=>r!=null&&typeof r=="object"&&!Array.isArray(r);var io=Object.defineProperty,ao=(r,e,t)=>e in r?io(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,ut=(r,e,t)=>ao(r,typeof e!="symbol"?e+"":e,t);let ds=class{constructor(){ut(this,"contentType","application/json"),ut(this,"decoder"),ut(this,"encoder"),this.decoder=new TextDecoder,this.encoder=new TextEncoder}encode(e){return this.encoder.encode(this.encodeString(e)).buffer}decode(e,t){return this.decodeString(this.decoder.decode(e),t)}decodeString(e,t){const n=JSON.parse(e),i=ys(n);return t!=null?t.parse(i):i}encodeString(e){const t=no(e);return JSON.stringify(t,(n,i)=>ArrayBuffer.isView(i)?Array.from(i):Ur(i)&&"encode_value"in i?typeof i.value=="bigint"?i.value.toString():i.value:typeof i=="bigint"?i.toString():i)}static registerCustomType(){}},fs=class{constructor(){ut(this,"contentType","text/csv")}encode(e){const t=this.encodeString(e);return new TextEncoder().encode(t).buffer}decode(e,t){const n=new TextDecoder().decode(e);return this.decodeString(n,t)}encodeString(e){if(!Array.isArray(e)||e.length===0||!Ur(e[0]))throw new Error("Payload must be an array of objects");const t=Object.keys(e[0]),n=[t.join(",")];return e.forEach(i=>{const a=t.map(c=>JSON.stringify(i[c]??""));n.push(a.join(","))}),n.join(`
|
|
3
|
+
`).map(l=>l.trim());if(n.length===0)return t!=null?t.parse({}):{};const a=n.split(",").map(l=>l.trim()),c={};return a.forEach(l=>{c[l]=[]}),i.forEach(l=>{const u=l.split(",").map(h=>h.trim());a.forEach((h,p)=>{const g=this.parseValue(u[p]);g!=null&&c[h].push(g)})}),t!=null?t.parse(c):c}parseValue(e){if(e==null||e.length===0)return null;const t=Number(e);return isNaN(t)?e.startsWith('"')&&e.endsWith('"')?e.slice(1,-1):e:t}static registerCustomType(){}},ia=class{constructor(){lt(this,"contentType","text/plain")}encode(e){return new TextEncoder().encode(e).buffer}decode(e,t){const n=new TextDecoder().decode(e);return t!=null?t.parse(n):n}};new na;new sa;new ia;const Ht=s.z.tuple([s.z.number(),s.z.number()]);s.z.tuple([s.z.bigint(),s.z.bigint()]);const Qn=s.z.object({width:s.z.number(),height:s.z.number()}),aa=s.z.object({signedWidth:s.z.number(),signedHeight:s.z.number()}),oa=["width","height"];s.z.enum(oa);const ca=["start","center","end"],la=["signedWidth","signedHeight"];s.z.enum(la);const _t=s.z.object({x:s.z.number(),y:s.z.number()}),ua=s.z.object({clientX:s.z.number(),clientY:s.z.number()}),ha=["x","y"],es=s.z.enum(ha),ts=["top","right","bottom","left"];s.z.enum(ts);const ya=["left","right"],rs=s.z.enum(ya),da=["top","bottom"],ns=s.z.enum(da),ss=["center"],yn=s.z.enum(ss),fa=[...ts,...ss],is=s.z.enum(fa);s.z.enum(ca);const pa=["first","last"];s.z.enum(pa);const ga=s.z.object({lower:s.z.number(),upper:s.z.number()}),ma=s.z.object({lower:s.z.bigint(),upper:s.z.bigint()});s.z.union([ga,Ht]);s.z.union([ma,Ht]);s.z.union([es,is]);s.z.union([es,is,s.z.instanceof(String)]);const yr=(r,e)=>{const t={};if(typeof r=="number"||typeof r=="bigint")e!=null?(t.lower=r,t.upper=e):(t.lower=typeof r=="bigint"?0n:0,t.upper=r);else if(Array.isArray(r)){if(r.length!==2)throw new Error("bounds: expected array of length 2");[t.lower,t.upper]=r}else return dn(r);return dn(t)},dn=r=>r.lower>r.upper?{lower:r.upper,upper:r.lower}:r;s.z.object({x:rs.or(yn),y:ns.or(yn)});const wa=s.z.object({x:rs,y:ns}),ba=Object.freeze({x:"left",y:"top"}),va=(r,e)=>r.x===e.x&&r.y===e.y,fn=s.z.union([s.z.number(),_t,Ht,Qn,aa,ua]),Ta=(r,e)=>{if(typeof r=="string"){if(e===void 0)throw new Error("The y coordinate must be given.");return r==="x"?{x:e,y:0}:{x:0,y:e}}return typeof r=="number"?{x:r,y:e??r}:Array.isArray(r)?{x:r[0],y:r[1]}:"signedWidth"in r?{x:r.signedWidth,y:r.signedHeight}:"clientX"in r?{x:r.clientX,y:r.clientY}:"width"in r?{x:r.width,y:r.height}:{x:r.x,y:r.y}},pn=Object.freeze({x:0,y:0}),$t=s.z.union([s.z.number(),s.z.string()]);s.z.object({top:$t,left:$t,width:$t,height:$t});s.z.object({left:s.z.number(),top:s.z.number(),right:s.z.number(),bottom:s.z.number()});s.z.object({one:_t,two:_t,root:wa});const Yr=(r,e,t=0,n=0,i)=>{const a={one:{...pn},two:{...pn},root:i??ba};if(typeof r=="number"){if(typeof e!="number")throw new Error("Box constructor called with invalid arguments");return a.one={x:r,y:e},a.two={x:a.one.x+t,y:a.one.y+n},a}return"one"in r&&"two"in r&&"root"in r?{...r,root:i??r.root}:("getBoundingClientRect"in r&&(r=r.getBoundingClientRect()),"left"in r?(a.one={x:r.left,y:r.top},a.two={x:r.right,y:r.bottom},a):(a.one=r,e==null?a.two={x:a.one.x+t,y:a.one.y+n}:typeof e=="number"?a.two={x:a.one.x+e,y:a.one.y+t}:"width"in e?a.two={x:a.one.x+e.width,y:a.one.y+e.height}:"signedWidth"in e?a.two={x:a.one.x+e.signedWidth,y:a.one.y+e.signedHeight}:a.two=e,a))},dr=r=>{const e=Yr(r);return{lower:e.one.x,upper:e.two.x}},fr=r=>{const e=Yr(r);return{lower:e.one.y,upper:e.two.y}},Oa=r=>typeof r!="object"||r==null?!1:"one"in r&&"two"in r&&"root"in r;var za=Object.defineProperty,Ea=(r,e,t)=>e in r?za(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,ue=(r,e,t)=>Ea(r,typeof e!="symbol"?e+"":e,t);const Sa=(r,e,t)=>e!==void 0&&r<e?e:t!==void 0&&r>t?t:r;s.z.object({offset:fn,scale:fn});const Na=r=>(e,t,n,i)=>t==="dimension"?[e,n]:[e,i?n-r:n+r],Ia=r=>(e,t,n,i)=>[e,i?n/r:n*r],ka=r=>(e,t,n)=>{if(e===null)return[r,n];const{lower:i,upper:a}=e,{lower:c,upper:l}=r,u=a-i,h=l-c;if(t==="dimension")return[r,n*(h/u)];const p=(n-i)*(h/u)+c;return[r,p]},Aa=r=>(e,t,n)=>[r,n],$a=()=>(r,e,t)=>{if(r===null)throw new Error("cannot invert without bounds");if(e==="dimension")return[r,t];const{lower:n,upper:i}=r;return[r,i-(t-n)]},Ra=r=>(e,t,n)=>{const{lower:i,upper:a}=r;return n=Sa(n,i,a),[e,n]},Rr=class tt{constructor(){ue(this,"ops",[]),ue(this,"currBounds",null),ue(this,"currType",null),ue(this,"reversed",!1),this.ops=[]}static translate(e){return new tt().translate(e)}static magnify(e){return new tt().magnify(e)}static scale(e,t){return new tt().scale(e,t)}translate(e){const t=this.new(),n=Na(e);return n.type="translate",t.ops.push(n),t}magnify(e){const t=this.new(),n=Ia(e);return n.type="magnify",t.ops.push(n),t}scale(e,t){const n=yr(e,t),i=this.new(),a=ka(n);return a.type="scale",i.ops.push(a),i}clamp(e,t){const n=yr(e,t),i=this.new(),a=Ra(n);return a.type="clamp",i.ops.push(a),i}reBound(e,t){const n=yr(e,t),i=this.new(),a=Aa(n);return a.type="re-bound",i.ops.push(a),i}invert(){const e=$a();e.type="invert";const t=this.new();return t.ops.push(e),t}pos(e){return this.exec("position",e)}dim(e){return this.exec("dimension",e)}new(){const e=new tt;return e.ops=this.ops.slice(),e.reversed=this.reversed,e}exec(e,t){return this.currBounds=null,this.ops.reduce(([n,i],a)=>a(n,e,i,this.reversed),[null,t])[1]}reverse(){const e=this.new();e.ops.reverse();const t=[];return e.ops.forEach((n,i)=>{if(n.type==="scale"||t.some(([c,l])=>i>=c&&i<=l))return;const a=e.ops.findIndex((c,l)=>c.type==="scale"&&l>i);a!==-1&&t.push([i,a])}),t.forEach(([n,i])=>{const a=e.ops.slice(n,i);a.unshift(e.ops[i]),e.ops.splice(n,i-n+1,...a)}),e.reversed=!e.reversed,e}};ue(Rr,"IDENTITY",new Rr);let gn=Rr;const mn=class ce{constructor(e=new gn,t=new gn,n=null){ue(this,"x"),ue(this,"y"),ue(this,"currRoot"),this.x=e,this.y=t,this.currRoot=n}static translate(e,t){return new ce().translate(e,t)}static translateX(e){return new ce().translateX(e)}static translateY(e){return new ce().translateY(e)}static clamp(e){return new ce().clamp(e)}static magnify(e){return new ce().magnify(e)}static scale(e){return new ce().scale(e)}static reBound(e){return new ce().reBound(e)}translate(e,t){const n=Ta(e,t),i=this.copy();return i.x=this.x.translate(n.x),i.y=this.y.translate(n.y),i}translateX(e){const t=this.copy();return t.x=this.x.translate(e),t}translateY(e){const t=this.copy();return t.y=this.y.translate(e),t}magnify(e){const t=this.copy();return t.x=this.x.magnify(e.x),t.y=this.y.magnify(e.y),t}scale(e){const t=this.copy();if(Oa(e)){const n=this.currRoot;return t.currRoot=e.root,n!=null&&!va(n,e.root)&&(n.x!==e.root.x&&(t.x=t.x.invert()),n.y!==e.root.y&&(t.y=t.y.invert())),t.x=t.x.scale(dr(e)),t.y=t.y.scale(fr(e)),t}return t.x=t.x.scale(e.width),t.y=t.y.scale(e.height),t}reBound(e){const t=this.copy();return t.x=this.x.reBound(dr(e)),t.y=this.y.reBound(fr(e)),t}clamp(e){const t=this.copy();return t.x=this.x.clamp(dr(e)),t.y=this.y.clamp(fr(e)),t}copy(){const e=new ce;return e.currRoot=this.currRoot,e.x=this.x,e.y=this.y,e}reverse(){const e=this.copy();return e.x=this.x.reverse(),e.y=this.y.reverse(),e}pos(e){return{x:this.x.pos(e.x),y:this.y.pos(e.y)}}box(e){return Yr(this.pos(e.one),this.pos(e.two),0,0,this.currRoot??e.root)}};ue(mn,"IDENTITY",new mn);const Ca=s.z.object({signedWidth:s.z.number(),signedHeight:s.z.number()});s.z.union([Qn,Ca,_t,Ht]);var xa=Object.defineProperty,Pa=(r,e,t)=>e in r?xa(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,m=(r,e,t)=>Pa(r,typeof e!="symbol"?e+"":e,t);const as=(r,e)=>{const t=new q(e);if(![Y.DAY,Y.HOUR,Y.MINUTE,Y.SECOND,Y.MILLISECOND,Y.MICROSECOND,Y.NANOSECOND].some(i=>i.equals(t)))throw new Error("Invalid argument for remainder. Must be an even TimeSpan or Timestamp");const n=r.valueOf()%t.valueOf();return r instanceof q?new q(n):new Y(n)},A=class b{constructor(e,t="UTC"){if(m(this,"value"),m(this,"encodeValue",!0),e==null)this.value=b.now().valueOf();else if(e instanceof Date)this.value=BigInt(e.getTime())*b.MILLISECOND.valueOf();else if(typeof e=="string")this.value=b.parseDateTimeString(e,t).valueOf();else if(Array.isArray(e))this.value=b.parseDate(e);else{let n=BigInt(0);e instanceof Number&&(e=e.valueOf()),t==="local"&&(n=b.utcOffset.valueOf()),typeof e=="number"&&(isFinite(e)?e=Math.trunc(e):(isNaN(e)&&(e=0),e===1/0?e=b.MAX:e=b.MIN)),this.value=BigInt(e.valueOf())+n}}static parseDate([e=1970,t=1,n=1]){const i=new Date(e,t-1,n,0,0,0,0);return new b(BigInt(i.getTime())*b.MILLISECOND.valueOf()).truncate(b.DAY).valueOf()}encode(){return this.value.toString()}valueOf(){return this.value}static parseTimeString(e,t="UTC"){const[n,i,a]=e.split(":");let c="00",l="00";a!=null&&([c,l]=a.split("."));let u=b.hours(parseInt(n??"00",10)).add(b.minutes(parseInt(i??"00",10))).add(b.seconds(parseInt(c??"00",10))).add(b.milliseconds(parseInt(l??"00",10)));return t==="local"&&(u=u.add(b.utcOffset)),u.valueOf()}static parseDateTimeString(e,t="UTC"){if(!e.includes("/")&&!e.includes("-"))return b.parseTimeString(e,t);const n=new Date(e);return e.includes(":")||n.setUTCHours(0,0,0,0),new b(BigInt(n.getTime())*b.MILLISECOND.valueOf(),t).valueOf()}fString(e="ISO",t="UTC"){switch(e){case"ISODate":return this.toISOString(t).slice(0,10);case"ISOTime":return this.toISOString(t).slice(11,23);case"time":return this.timeString(!1,t);case"preciseTime":return this.timeString(!0,t);case"date":return this.dateString();case"preciseDate":return`${this.dateString()} ${this.timeString(!0,t)}`;case"dateTime":return`${this.dateString()} ${this.timeString(!1,t)}`;default:return this.toISOString(t)}}toISOString(e="UTC"){return e==="UTC"?this.date().toISOString():this.sub(b.utcOffset).date().toISOString()}timeString(e=!1,t="UTC"){const n=this.toISOString(t);return e?n.slice(11,23):n.slice(11,19)}dateString(){const e=this.date(),t=e.toLocaleString("default",{month:"short"}),n=e.toLocaleString("default",{day:"numeric"});return`${t} ${n}`}static get utcOffset(){return new Y(BigInt(new Date().getTimezoneOffset())*b.MINUTE.valueOf())}static since(e){return new b().span(e)}date(){return new Date(this.milliseconds())}equals(e){return this.valueOf()===new b(e).valueOf()}span(e){return this.range(e).span}range(e){return new Da(this,e).makeValid()}spanRange(e){return this.range(this.add(e)).makeValid()}get isZero(){return this.valueOf()===BigInt(0)}after(e){return this.valueOf()>new b(e).valueOf()}afterEq(e){return this.valueOf()>=new b(e).valueOf()}before(e){return this.valueOf()<new b(e).valueOf()}beforeEq(e){return this.valueOf()<=new b(e).valueOf()}add(e){return new b(this.valueOf()+BigInt(e.valueOf()))}sub(e){return new b(this.valueOf()-BigInt(e.valueOf()))}milliseconds(){return Number(this.valueOf())/Number(b.MILLISECOND.valueOf())}toString(){return this.date().toISOString()}remainder(e){return as(this,e)}get isToday(){return this.truncate(Y.DAY).equals(b.now().truncate(Y.DAY))}truncate(e){return this.sub(this.remainder(e))}static now(){return new b(new Date)}static max(...e){let t=b.MIN;for(const n of e){const i=new b(n);i.after(t)&&(t=i)}return t}static min(...e){let t=b.MAX;for(const n of e){const i=new b(n);i.before(t)&&(t=i)}return t}static nanoseconds(e){return new b(e)}static microseconds(e){return b.nanoseconds(e*1e3)}static milliseconds(e){return b.microseconds(e*1e3)}static seconds(e){return b.milliseconds(e*1e3)}static minutes(e){return b.seconds(e*60)}static hours(e){return b.minutes(e*60)}static days(e){return b.hours(e*24)}};m(A,"NANOSECOND",A.nanoseconds(1)),m(A,"MICROSECOND",A.microseconds(1)),m(A,"MILLISECOND",A.milliseconds(1)),m(A,"SECOND",A.seconds(1)),m(A,"MINUTE",A.minutes(1)),m(A,"HOUR",A.hours(1)),m(A,"DAY",A.days(1)),m(A,"MAX",new A((1n<<63n)-1n)),m(A,"MIN",new A(0)),m(A,"ZERO",new A(0)),m(A,"z",s.z.union([s.z.object({value:s.z.bigint()}).transform(r=>new A(r.value)),s.z.string().transform(r=>new A(BigInt(r))),s.z.instanceof(Number).transform(r=>new A(r)),s.z.number().transform(r=>new A(r)),s.z.instanceof(A)]));let q=A;const $=class N{constructor(e){m(this,"value"),m(this,"encodeValue",!0),typeof e=="number"&&(e=Math.trunc(e.valueOf())),this.value=BigInt(e.valueOf())}encode(){return this.value.toString()}valueOf(){return this.value}lessThan(e){return this.valueOf()<new N(e).valueOf()}greaterThan(e){return this.valueOf()>new N(e).valueOf()}lessThanOrEqual(e){return this.valueOf()<=new N(e).valueOf()}greaterThanOrEqual(e){return this.valueOf()>=new N(e).valueOf()}remainder(e){return as(this,e)}truncate(e){return new N(BigInt(Math.trunc(Number(this.valueOf()/e.valueOf())))*e.valueOf())}toString(){const e=this.truncate(N.DAY),t=this.truncate(N.HOUR),n=this.truncate(N.MINUTE),i=this.truncate(N.SECOND),a=this.truncate(N.MILLISECOND),c=this.truncate(N.MICROSECOND),l=this.truncate(N.NANOSECOND),u=e,h=t.sub(e),p=n.sub(t),g=i.sub(n),D=a.sub(i),P=c.sub(a),Q=l.sub(c);let j="";return u.isZero||(j+=`${u.days}d `),h.isZero||(j+=`${h.hours}h `),p.isZero||(j+=`${p.minutes}m `),g.isZero||(j+=`${g.seconds}s `),D.isZero||(j+=`${D.milliseconds}ms `),P.isZero||(j+=`${P.microseconds}µs `),Q.isZero||(j+=`${Q.nanoseconds}ns`),j.trim()}get days(){return Number(this.valueOf())/Number(N.DAY.valueOf())}get hours(){return Number(this.valueOf())/Number(N.HOUR.valueOf())}get minutes(){return Number(this.valueOf())/Number(N.MINUTE.valueOf())}get seconds(){return Number(this.valueOf())/Number(N.SECOND.valueOf())}get milliseconds(){return Number(this.valueOf())/Number(N.MILLISECOND.valueOf())}get microseconds(){return Number(this.valueOf())/Number(N.MICROSECOND.valueOf())}get nanoseconds(){return Number(this.valueOf())}get isZero(){return this.valueOf()===BigInt(0)}equals(e){return this.valueOf()===new N(e).valueOf()}add(e){return new N(this.valueOf()+new N(e).valueOf())}sub(e){return new N(this.valueOf()-new N(e).valueOf())}static nanoseconds(e=1){return new N(e)}static microseconds(e=1){return N.nanoseconds(e*1e3)}static milliseconds(e=1){return N.microseconds(e*1e3)}static seconds(e=1){return N.milliseconds(e*1e3)}static minutes(e){return N.seconds(e.valueOf()*60)}static hours(e){return N.minutes(e*60)}static days(e){return N.hours(e*24)}};m($,"NANOSECOND",$.nanoseconds(1)),m($,"MICROSECOND",$.microseconds(1)),m($,"MILLISECOND",$.milliseconds(1)),m($,"SECOND",$.seconds(1)),m($,"MINUTE",$.minutes(1)),m($,"HOUR",$.hours(1)),m($,"DAY",$.days(1)),m($,"MAX",new $((1n<<63n)-1n)),m($,"MIN",new $(0)),m($,"ZERO",new $(0)),m($,"z",s.z.union([s.z.object({value:s.z.bigint()}).transform(r=>new $(r.value)),s.z.string().transform(r=>new $(BigInt(r))),s.z.instanceof(Number).transform(r=>new $(r)),s.z.number().transform(r=>new $(r)),s.z.instanceof($)]));let Y=$;const Rt=class Pt extends Number{constructor(e){e instanceof Number?super(e.valueOf()):super(e)}toString(){return`${this.valueOf()} Hz`}equals(e){return this.valueOf()===new Pt(e).valueOf()}get period(){return Y.seconds(1/this.valueOf())}sampleCount(e){return new Y(e).seconds*this.valueOf()}byteCount(e,t){return this.sampleCount(e)*new G(t).valueOf()}span(e){return Y.seconds(e/this.valueOf())}byteSpan(e,t){return this.span(e.valueOf()/t.valueOf())}static hz(e){return new Pt(e)}static khz(e){return Pt.hz(e*1e3)}};m(Rt,"z",s.z.union([s.z.number().transform(r=>new Rt(r)),s.z.instanceof(Number).transform(r=>new Rt(r)),s.z.instanceof(Rt)]));const B=class extends Number{constructor(e){e instanceof Number?super(e.valueOf()):super(e)}length(e){return e.valueOf()/this.valueOf()}size(e){return new ja(e*this.valueOf())}};m(B,"UNKNOWN",new B(0)),m(B,"BIT128",new B(16)),m(B,"BIT64",new B(8)),m(B,"BIT32",new B(4)),m(B,"BIT16",new B(2)),m(B,"BIT8",new B(1)),m(B,"z",s.z.union([s.z.number().transform(r=>new B(r)),s.z.instanceof(Number).transform(r=>new B(r)),s.z.instanceof(B)]));let G=B;const ne=class Dt{constructor(e,t){m(this,"start"),m(this,"end"),typeof e=="object"&&"start"in e?(this.start=new q(e.start),this.end=new q(e.end)):(this.start=new q(e),this.end=new q(t))}get span(){return new Y(this.end.valueOf()-this.start.valueOf())}get isValid(){return this.start.valueOf()<=this.end.valueOf()}makeValid(){return this.isValid?this:this.swap()}get isZero(){return this.span.isZero}get numeric(){return{start:Number(this.start.valueOf()),end:Number(this.end.valueOf())}}swap(){return new Dt(this.end,this.start)}equals(e){return this.start.equals(e.start)&&this.end.equals(e.end)}toString(){return`${this.start.toString()} - ${this.end.toString()}`}toPrettyString(){return`${this.start.fString("preciseDate")} - ${this.span.toString()}`}overlapsWith(e,t=Y.ZERO){e=e.makeValid();const n=this.makeValid();if(this.equals(e))return!0;if(e.end.equals(n.start)||n.end.equals(e.start))return!1;const i=q.max(n.start,e.start),a=q.min(n.end,e.end);return a.before(i)?!1:new Y(a.sub(i)).greaterThanOrEqual(t)}roughlyEquals(e,t){let n=this.start.sub(e.start).valueOf(),i=this.end.sub(e.end).valueOf();return n<0&&(n=-n),i<0&&(i=-i),n<=t.valueOf()&&i<=t.valueOf()}contains(e){return e instanceof Dt?this.contains(e.start)&&this.contains(e.end):this.start.beforeEq(e)&&this.end.after(e)}boundBy(e){const t=new Dt(this.start,this.end);return e.start.after(this.start)&&(t.start=e.start),e.start.after(this.end)&&(t.end=e.start),e.end.before(this.end)&&(t.end=e.end),e.end.before(this.start)&&(t.start=e.end),t}};m(ne,"MAX",new ne(q.MIN,q.MAX)),m(ne,"MIN",new ne(q.MAX,q.MIN)),m(ne,"ZERO",new ne(q.ZERO,q.ZERO)),m(ne,"z",s.z.union([s.z.object({start:q.z,end:q.z}).transform(r=>new ne(r.start,r.end)),s.z.instanceof(ne)]));let Da=ne;const d=class se extends String{constructor(e){if(e instanceof se||typeof e=="string"||typeof e.valueOf()=="string"){super(e.valueOf());return}else{const t=se.ARRAY_CONSTRUCTOR_DATA_TYPES.get(e.constructor.name);if(t!=null){super(t.valueOf());return}}throw super(se.UNKNOWN.valueOf()),new Error(`unable to find data type for ${e.toString()}`)}get Array(){const e=se.ARRAY_CONSTRUCTORS.get(this.toString());if(e==null)throw new Error(`unable to find array constructor for ${this.valueOf()}`);return e}equals(e){return this.valueOf()===e.valueOf()}matches(...e){return e.some(t=>this.equals(t))}toString(){return this.valueOf()}get isVariable(){return this.equals(se.JSON)||this.equals(se.STRING)}get isNumeric(){return!this.isVariable&&!this.equals(se.UUID)}get isInteger(){return this.toString().startsWith("int")}get isFloat(){return this.toString().startsWith("float")}get density(){const e=se.DENSITIES.get(this.toString());if(e==null)throw new Error(`unable to find density for ${this.valueOf()}`);return e}canSafelyCastTo(e){return this.equals(e)?!0:this.isVariable&&!e.isVariable||!this.isVariable&&e.isVariable?!1:this.isFloat&&e.isInteger||this.isInteger&&e.isFloat?this.density.valueOf()<e.density.valueOf():this.isFloat&&e.isFloat||this.isInteger&&e.isInteger?this.density.valueOf()<=e.density.valueOf():!1}canCastTo(e){return this.isNumeric&&e.isNumeric?!0:this.equals(e)}checkArray(e){return e.constructor===this.Array}toJSON(){return this.toString()}get usesBigInt(){return se.BIG_INT_TYPES.some(e=>e.equals(this))}};m(d,"UNKNOWN",new d("unknown")),m(d,"FLOAT64",new d("float64")),m(d,"FLOAT32",new d("float32")),m(d,"INT64",new d("int64")),m(d,"INT32",new d("int32")),m(d,"INT16",new d("int16")),m(d,"INT8",new d("int8")),m(d,"UINT64",new d("uint64")),m(d,"UINT32",new d("uint32")),m(d,"UINT16",new d("uint16")),m(d,"UINT8",new d("uint8")),m(d,"BOOLEAN",d.UINT8),m(d,"TIMESTAMP",new d("timestamp")),m(d,"UUID",new d("uuid")),m(d,"STRING",new d("string")),m(d,"JSON",new d("json")),m(d,"ARRAY_CONSTRUCTORS",new Map([[d.UINT8.toString(),Uint8Array],[d.UINT16.toString(),Uint16Array],[d.UINT32.toString(),Uint32Array],[d.UINT64.toString(),BigUint64Array],[d.FLOAT32.toString(),Float32Array],[d.FLOAT64.toString(),Float64Array],[d.INT8.toString(),Int8Array],[d.INT16.toString(),Int16Array],[d.INT32.toString(),Int32Array],[d.INT64.toString(),BigInt64Array],[d.TIMESTAMP.toString(),BigInt64Array],[d.STRING.toString(),Uint8Array],[d.JSON.toString(),Uint8Array],[d.UUID.toString(),Uint8Array]])),m(d,"ARRAY_CONSTRUCTOR_DATA_TYPES",new Map([[Uint8Array.name,d.UINT8],[Uint16Array.name,d.UINT16],[Uint32Array.name,d.UINT32],[BigUint64Array.name,d.UINT64],[Float32Array.name,d.FLOAT32],[Float64Array.name,d.FLOAT64],[Int8Array.name,d.INT8],[Int16Array.name,d.INT16],[Int32Array.name,d.INT32],[BigInt64Array.name,d.INT64]])),m(d,"DENSITIES",new Map([[d.UINT8.toString(),G.BIT8],[d.UINT16.toString(),G.BIT16],[d.UINT32.toString(),G.BIT32],[d.UINT64.toString(),G.BIT64],[d.FLOAT32.toString(),G.BIT32],[d.FLOAT64.toString(),G.BIT64],[d.INT8.toString(),G.BIT8],[d.INT16.toString(),G.BIT16],[d.INT32.toString(),G.BIT32],[d.INT64.toString(),G.BIT64],[d.TIMESTAMP.toString(),G.BIT64],[d.STRING.toString(),G.UNKNOWN],[d.JSON.toString(),G.UNKNOWN],[d.UUID.toString(),G.BIT128]])),m(d,"ALL",[d.UNKNOWN,d.FLOAT64,d.FLOAT32,d.INT64,d.INT32,d.INT16,d.INT8,d.UINT64,d.UINT32,d.UINT16,d.UINT8,d.TIMESTAMP,d.UUID,d.STRING,d.JSON]),m(d,"BIG_INT_TYPES",[d.INT64,d.UINT64,d.TIMESTAMP]),m(d,"z",s.z.union([s.z.string().transform(r=>new d(r)),s.z.instanceof(d)]));const _=class M extends Number{constructor(e){super(e.valueOf())}largerThan(e){return this.valueOf()>e.valueOf()}smallerThan(e){return this.valueOf()<e.valueOf()}add(e){return M.bytes(this.valueOf()+e.valueOf())}sub(e){return M.bytes(this.valueOf()-e.valueOf())}truncate(e){return new M(Math.trunc(this.valueOf()/e.valueOf())*e.valueOf())}remainder(e){return M.bytes(this.valueOf()%e.valueOf())}get gigabytes(){return this.valueOf()/M.GIGABYTE.valueOf()}get megabytes(){return this.valueOf()/M.MEGABYTE.valueOf()}get kilobytes(){return this.valueOf()/M.KILOBYTE.valueOf()}get terabytes(){return this.valueOf()/M.TERABYTE.valueOf()}toString(){const e=this.truncate(M.TERABYTE),t=this.truncate(M.GIGABYTE),n=this.truncate(M.MEGABYTE),i=this.truncate(M.KILOBYTE),a=this.truncate(M.BYTE),c=e,l=t.sub(e),u=n.sub(t),h=i.sub(n),p=a.sub(i);let g="";return c.isZero||(g+=`${c.terabytes}TB `),l.isZero||(g+=`${l.gigabytes}GB `),u.isZero||(g+=`${u.megabytes}MB `),h.isZero||(g+=`${h.kilobytes}KB `),(!p.isZero||g==="")&&(g+=`${p.valueOf()}B`),g.trim()}static bytes(e=1){return new M(e)}static kilobytes(e=1){return M.bytes(e.valueOf()*1e3)}static megabytes(e=1){return M.kilobytes(e.valueOf()*1e3)}static gigabytes(e=1){return M.megabytes(e.valueOf()*1e3)}static terabytes(e){return M.gigabytes(e.valueOf()*1e3)}get isZero(){return this.valueOf()===0}};m(_,"BYTE",new _(1)),m(_,"KILOBYTE",_.kilobytes(1)),m(_,"MEGABYTE",_.megabytes(1)),m(_,"GIGABYTE",_.gigabytes(1)),m(_,"TERABYTE",_.terabytes(1)),m(_,"ZERO",new _(0)),m(_,"z",s.z.union([s.z.number().transform(r=>new _(r)),s.z.instanceof(_)]));let ja=_;s.z.union([s.z.instanceof(Uint8Array),s.z.instanceof(Uint16Array),s.z.instanceof(Uint32Array),s.z.instanceof(BigUint64Array),s.z.instanceof(Float32Array),s.z.instanceof(Float64Array),s.z.instanceof(Int8Array),s.z.instanceof(Int16Array),s.z.instanceof(Int32Array),s.z.instanceof(BigInt64Array)]);s.z.object({key:s.z.string(),value:s.z.string()});s.z.record(s.z.union([s.z.number(),s.z.string(),s.z.symbol()]),s.z.unknown());const os=()=>typeof process<"u"&&process.versions!=null&&process.versions.node!=null?"node":typeof window>"u"||window.document===void 0?"webworker":"browser",Ma=os(),cs=["MacOS","Windows","Linux","Docker"],Za=s.z.enum(cs);let pr;const Ua=()=>{if(typeof window>"u")return;const r=window.navigator.userAgent.toLowerCase();if(r.includes("mac"))return"MacOS";if(r.includes("win"))return"Windows";if(r.includes("linux"))return"Linux"},Ba=(r={})=>{const{force:e,default:t}=r;return e??pr??(pr=Ua(),pr??t)},ls=Object.freeze(Object.defineProperty({__proto__:null,OPERATING_SYSTEMS:cs,RUNTIME:Ma,detect:os,getOS:Ba,osZ:Za},Symbol.toStringTag,{value:"Module"}));var La=Object.defineProperty,qa=(r,e,t)=>e in r?La(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,rt=(r,e,t)=>qa(r,typeof e!="symbol"?e+"":e,t);const Ya=(...r)=>r.map(us).join(""),us=r=>(r.endsWith("/")||(r+="/"),r.startsWith("/")&&(r=r.slice(1)),r),Wa=r=>r.endsWith("/")?r.slice(0,-1):r,_a=(r,e="")=>r===null?"":"?"+Object.entries(r).filter(([,t])=>t==null?!1:Array.isArray(t)?t.length>0:!0).map(([t,n])=>`${e}${t}=${n}`).join("&"),Cr=class xr{constructor({host:e,port:t,protocol:n="",pathPrefix:i=""}){rt(this,"protocol"),rt(this,"host"),rt(this,"port"),rt(this,"path"),this.protocol=n,this.host=e,this.port=t,this.path=us(i)}replace(e){return new xr({host:e.host??this.host,port:e.port??this.port,protocol:e.protocol??this.protocol,pathPrefix:e.pathPrefix??this.path})}child(e){return new xr({...this,pathPrefix:Ya(this.path,e)})}toString(){return Wa(`${this.protocol}://${this.host}:${this.port}/${this.path}`)}};rt(Cr,"UNKNOWN",new Cr({host:"unknown",port:0}));let Va=Cr;var Fa=Object.defineProperty,Ka=(r,e,t)=>e in r?Fa(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,jt=(r,e,t)=>Ka(r,typeof e!="symbol"?e+"":e,t);const Ce=class extends Number{};jt(Ce,"Absolute",255),jt(Ce,"Default",1),jt(Ce,"z",s.z.union([s.z.instanceof(Ce),s.z.number().int().min(0).max(255).transform(r=>new Ce(r)),s.z.instanceof(Number).transform(r=>new Ce(r))]));s.z.object({name:s.z.string(),key:s.z.string()});const hs=class nt extends Error{constructor(){super(nt.MESSAGE)}matches(e){return typeof e=="string"?e.includes(nt.MESSAGE):e instanceof nt||e.message.includes(nt.MESSAGE)}};jt(hs,"MESSAGE","canceled");let Ga=hs;new Ga;s.z.string().regex(/^\d+\.\d+\.\d+$/);const H=r=>e=>e!=null&&typeof e=="object"&&"type"in e&&typeof e.type=="string"?e.type.includes(r):e instanceof Error?e.message.includes(r):typeof e!="string"?!1:e.includes(r);let re=class extends Error{constructor(e){super(e),k(this,"discriminator","FreighterError"),k(this,"type","")}};const Ja=r=>{if(r==null||typeof r!="object")return!1;const e=r;if(e.discriminator!=="FreighterError")return!1;if(!("type"in e))throw new Error(`Freighter error is missing its type property: ${JSON.stringify(e)}`);return!0},wn="unknown",bn="nil",Ha="freighter",Tt=s.z.object({type:s.z.string(),data:s.z.string()});class Xa{constructor(){k(this,"providers",[])}register(e){this.providers.push(e)}encode(e){if(e==null)return{type:bn,data:""};if(Ja(e))for(const t of this.providers){const n=t.encode(e);if(n!=null)return n}return{type:wn,data:JSON.stringify(e)}}decode(e){if(e==null||e.type===bn)return null;if(e.type===wn)return new vn(e.data);for(const t of this.providers){const n=t.decode(e);if(n!=null)return n}return new vn(e.data)}}const ys=new Xa,ds=({encode:r,decode:e})=>ys.register({encode:r,decode:e}),Wr=r=>ys.decode(r);class vn extends re{constructor(e){super(e),k(this,"type","unknown")}}const Xt="freighter.",Mt=class fs extends re{constructor(){super("EOF"),k(this,"type",fs.TYPE)}};k(Mt,"TYPE",Xt+"eof"),k(Mt,"matches",H(Mt.TYPE));let ge=Mt;const Zt=class ps extends re{constructor(){super("StreamClosed"),k(this,"type",ps.TYPE)}};k(Zt,"TYPE",Xt+"stream_closed"),k(Zt,"matches",H(Zt.TYPE));let Ke=Zt;const Ut=class gs extends re{constructor(e={}){const{message:t="Unreachable",url:n=Va.UNKNOWN}=e;super(t),k(this,"type",gs.TYPE),k(this,"url"),this.url=n}};k(Ut,"TYPE",Xt+"unreachable"),k(Ut,"matches",H(Ut.TYPE));let Se=Ut;const Qa=r=>{if(!r.type.startsWith(Ha))return null;if(ge.matches(r))return{type:ge.TYPE,data:"EOF"};if(Ke.matches(r))return{type:Ke.TYPE,data:"StreamClosed"};if(Se.matches(r))return{type:Se.TYPE,data:"Unreachable"};throw new Error(`Unknown error type: ${r.type}: ${r.message}`)},eo=r=>{if(!r.type.startsWith(Xt))return null;switch(r.type){case ge.TYPE:return new ge;case Ke.TYPE:return new Ke;case Se.TYPE:return new Se;default:throw new Error(`Unknown error type: ${r.data}`)}};ds({encode:Qa,decode:eo});class ms{constructor(){k(this,"middleware",[])}use(...e){this.middleware.push(...e)}async executeMiddleware(e,t){let n=0;const i=async a=>{if(n===this.middleware.length)return await t(a);const c=this.middleware[n];return n++,await c(a,i)};return await i(e)}}const ws="Content-Type",Tn=r=>{if(ls.RUNTIME!=="node")return fetch;const e=require("node-fetch");if(r==="http")return e;const t=require("https"),n=new t.Agent({rejectUnauthorized:!1});return async(i,a)=>await e(i,{...a,agent:n})};class to extends ms{constructor(e,t,n=!1){return super(),k(this,"endpoint"),k(this,"encoder"),k(this,"fetch"),this.endpoint=e.replace({protocol:n?"https":"http"}),this.encoder=t,this.fetch=Tn(this.endpoint.protocol),new Proxy(this,{get:(i,a,c)=>a==="endpoint"?this.endpoint:Reflect.get(i,a,c)})}get headers(){return{[ws]:this.encoder.contentType}}async send(e,t,n,i){t=n==null?void 0:n.parse(t);let a=null;const c=this.endpoint.child(e),l={};l.method="POST",l.body=this.encoder.encode(t??{});const[,u]=await this.executeMiddleware({target:c.toString(),protocol:this.endpoint.protocol,params:{},role:"client"},async h=>{const p={...h,params:{}};l.headers={...this.headers,...h.params};let g;try{g=await Tn(h.protocol)(h.target,l)}catch(P){let Q=P;return Q.message==="Load failed"&&(Q=new Se({url:c})),[p,Q]}const D=await g.arrayBuffer();if(g!=null&&g.ok)return i!=null&&(a=this.encoder.decode(D,i)),[p,null];try{if(g.status!==400)return[p,new Error(g.statusText)];const P=this.encoder.decode(D,Tt),Q=Wr(P);return[p,Q]}catch(P){return[p,new Error(`[freighter] - failed to decode error: ${g.statusText}: ${P.message}`)]}});return[a,u]}}const w=async(r,e,t,n,i)=>{const[a,c]=await r.send(e,t,n,i);if(c!=null)throw c;return a},ro=()=>ls.RUNTIME!=="node"?r=>new WebSocket(r):r=>new(require("ws")).WebSocket(r,{rejectUnauthorized:!1}),no=s.z.object({type:s.z.union([s.z.literal("data"),s.z.literal("close")]),payload:s.z.unknown().optional(),error:s.z.optional(Tt)});class so{constructor(e,t,n,i){k(this,"encoder"),k(this,"reqSchema"),k(this,"resSchema"),k(this,"ws"),k(this,"serverClosed"),k(this,"sendClosed"),k(this,"receiveDataQueue",[]),k(this,"receiveCallbacksQueue",[]),this.encoder=t,this.reqSchema=n,this.resSchema=i,this.ws=e,this.sendClosed=!1,this.serverClosed=null,this.listenForMessages()}send(e){if(this.serverClosed!=null)return new ge;if(this.sendClosed)throw new Ke;return this.ws.send(this.encoder.encode({type:"data",payload:e})),null}async receive(){if(this.serverClosed!=null)return[null,this.serverClosed];const e=await this.receiveMsg();if(e.type==="close"){if(e.error==null)throw new Error("Message error must be defined");return this.serverClosed=Wr(e.error),[null,this.serverClosed]}return[this.resSchema.parse(e.payload),null]}received(){return this.receiveDataQueue.length!==0}closeSend(){if(this.sendClosed||this.serverClosed!=null)return;const e={type:"close"};try{this.ws.send(this.encoder.encode(e))}finally{this.sendClosed=!0}}async receiveMsg(){return this.receiveDataQueue.shift()??await new Promise((t,n)=>this.receiveCallbacksQueue.push({resolve:t,reject:n}))}addMessage(e){const t=this.receiveCallbacksQueue.shift();t!=null?t.resolve(e):this.receiveDataQueue.push(e)}listenForMessages(){this.ws.onmessage=e=>this.addMessage(this.encoder.decode(e.data,no)),this.ws.onclose=e=>this.addMessage({type:"close",error:{type:lo(e)?ge.TYPE:Ke.TYPE,data:""}})}}const io="freighterctx",ao=1e3,oo=1001,co=[ao,oo],lo=r=>co.includes(r.code),bs=class vs extends ms{constructor(e,t,n=!1){super(),k(this,"baseUrl"),k(this,"encoder"),this.baseUrl=e.replace({protocol:n?"wss":"ws"}),this.encoder=t}async stream(e,t,n){const i=ro();let a;const[,c]=await this.executeMiddleware({target:e,protocol:"websocket",params:{},role:"client"},async l=>{const u=i(this.buildURL(e,l)),h={...l,params:{}};u.binaryType=vs.MESSAGE_TYPE;const p=await this.wrapSocket(u,t,n);return p instanceof Error?[h,p]:(a=p,[h,null])});if(c!=null)throw c;return a}buildURL(e,t){const n=_a({[ws]:this.encoder.contentType,...t.params},io);return this.baseUrl.child(e).toString()+n}async wrapSocket(e,t,n){return await new Promise(i=>{e.onopen=()=>{i(new so(e,this.encoder,t,n))},e.onerror=a=>{const c=a;i(new Error(c.message))}})}};k(bs,"MESSAGE_TYPE","arraybuffer");let uo=bs;const ho=r=>{const e=r.replace(/_[a-z]/g,t=>t[1].toUpperCase());return e.length>1&&e[0]===e[0].toUpperCase()&&e[1]===e[1].toUpperCase()?e:e[0].toLowerCase()+e.slice(1)},Ts=r=>{const e=(t,n=Pr)=>{if(typeof t=="string")return r(t);if(Array.isArray(t))return t.map(c=>e(c,n));if(!gr(t))return t;n=po(n);const i={},a=t;return Object.keys(a).forEach(c=>{let l=a[c];const u=r(c);n.recursive&&(gr(l)?zn(l,n.keepTypesOnRecursion)||(l=e(l,n)):n.recursiveInArray&&On(l)&&(l=[...l].map(h=>{let p=h;return gr(h)?zn(p,n.keepTypesOnRecursion)||(p=e(h,n)):On(h)&&(p=e({key:h},n).key),p}))),i[u]=l}),i};return e},Os=Ts(ho),yo=r=>r.replace(/([a-z0-9])([A-Z])/g,(e,t,n)=>`${t}_${n.toLowerCase()}`),fo=Ts(yo),Pr={recursive:!0,recursiveInArray:!0,keepTypesOnRecursion:[Number,String,Uint8Array]},po=(r=Pr)=>(r.recursive==null?r=Pr:r.recursiveInArray==null&&(r.recursiveInArray=!1),r),On=r=>r!=null&&Array.isArray(r),gr=r=>r!=null&&typeof r=="object"&&!Array.isArray(r),zn=(r,e)=>(e||[]).some(t=>r instanceof t),_r=r=>r!=null&&typeof r=="object"&&!Array.isArray(r);var go=Object.defineProperty,mo=(r,e,t)=>e in r?go(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,ut=(r,e,t)=>mo(r,typeof e!="symbol"?e+"":e,t);let zs=class{constructor(){ut(this,"contentType","application/json"),ut(this,"decoder"),ut(this,"encoder"),this.decoder=new TextDecoder,this.encoder=new TextEncoder}encode(e){return this.encoder.encode(this.encodeString(e)).buffer}decode(e,t){return this.decodeString(this.decoder.decode(e),t)}decodeString(e,t){const n=JSON.parse(e),i=Os(n);return t!=null?t.parse(i):i}encodeString(e){const t=fo(e);return JSON.stringify(t,(n,i)=>ArrayBuffer.isView(i)?Array.from(i):_r(i)&&"encode_value"in i?typeof i.value=="bigint"?i.value.toString():i.value:typeof i=="bigint"?i.toString():i)}static registerCustomType(){}},Es=class{constructor(){ut(this,"contentType","text/csv")}encode(e){const t=this.encodeString(e);return new TextEncoder().encode(t).buffer}decode(e,t){const n=new TextDecoder().decode(e);return this.decodeString(n,t)}encodeString(e){if(!Array.isArray(e)||e.length===0||!_r(e[0]))throw new Error("Payload must be an array of objects");const t=Object.keys(e[0]),n=[t.join(",")];return e.forEach(i=>{const a=t.map(c=>JSON.stringify(i[c]??""));n.push(a.join(","))}),n.join(`
|
|
4
4
|
`)}decodeString(e,t){const[n,...i]=e.trim().split(`
|
|
5
|
-
`).map(l=>l.trim());if(n.length===0)return t!=null?t.parse({}):{};const a=n.split(",").map(l=>l.trim()),c={};return a.forEach(l=>{c[l]=[]}),i.forEach(l=>{const u=l.split(",").map(f=>f.trim());a.forEach((f,p)=>{const g=this.parseValue(u[p]);g!=null&&c[f].push(g)})}),t!=null?t.parse(c):c}parseValue(e){if(e==null||e.length===0)return null;const t=Number(e);return isNaN(t)?e.startsWith('"')&&e.endsWith('"')?e.slice(1,-1):e:t}static registerCustomType(){}},ps=class{constructor(){ut(this,"contentType","text/plain")}encode(e){return new TextEncoder().encode(e).buffer}decode(e,t){const n=new TextDecoder().decode(e);return t!=null?t.parse(n):n}};const We=new ds,oo=new fs,co=new ps,lo=[We],Ke=Object.freeze(Object.defineProperty({__proto__:null,CSVCodec:fs,CSV_CODEC:oo,ENCODERS:lo,JSONCodec:ds,JSON_CODEC:We,TEXT_CODEC:co,TextCodec:ps},Symbol.toStringTag,{value:"Module"})),uo=r=>r!=null&&typeof r=="object"&&"toString"in r,ho=(r,e=!1)=>{const t=uo(r)?"stringer":typeof r;let n;switch(t){case"string":n=(i,a)=>i.localeCompare(a);break;case"stringer":n=(i,a)=>i.toString().localeCompare(a.toString());break;case"number":n=(i,a)=>Number(i)-Number(a);break;case"bigint":n=(i,a)=>BigInt(i)-BigInt(a)>0n?1:-1;break;case"boolean":n=(i,a)=>Number(i)-Number(a);break;case"undefined":n=()=>0;break;default:return console.warn(`sortFunc: unknown type ${t}`),()=>-1}return e?yo(n):n},yo=r=>(e,t)=>r(t,e),_t=s.z.tuple([s.z.number(),s.z.number()]);s.z.tuple([s.z.bigint(),s.z.bigint()]);const gs=s.z.object({width:s.z.number(),height:s.z.number()}),fo=s.z.object({signedWidth:s.z.number(),signedHeight:s.z.number()}),po=["width","height"];s.z.enum(po);const go=["start","center","end"],mo=["signedWidth","signedHeight"];s.z.enum(mo);const Ut=s.z.object({x:s.z.number(),y:s.z.number()}),wo=s.z.object({clientX:s.z.number(),clientY:s.z.number()}),bo=["x","y"],ms=s.z.enum(bo),ws=["top","right","bottom","left"];s.z.enum(ws);const vo=["left","right"],bs=s.z.enum(vo),To=["top","bottom"],vs=s.z.enum(To),Ts=["center"],mn=s.z.enum(Ts),Oo=[...ws,...Ts],Os=s.z.enum(Oo);s.z.enum(go);const zo=["first","last"];s.z.enum(zo);const Eo=s.z.object({lower:s.z.number(),upper:s.z.number()}),So=s.z.object({lower:s.z.bigint(),upper:s.z.bigint()});s.z.union([Eo,_t]);s.z.union([So,_t]);s.z.union([ms,Os]);s.z.union([ms,Os,s.z.instanceof(String)]);const ht=(r,e)=>{const t={};if(typeof r=="number"||typeof r=="bigint")e!=null?(t.lower=r,t.upper=e):(t.lower=typeof r=="bigint"?0n:0,t.upper=r);else if(Array.isArray(r)){if(r.length!==2)throw new Error("bounds: expected array of length 2");[t.lower,t.upper]=r}else return wn(r);return wn(t)},wn=r=>r.lower>r.upper?{lower:r.upper,upper:r.lower}:r;s.z.object({x:bs.or(mn),y:vs.or(mn)});const No=s.z.object({x:bs,y:vs}),Io=Object.freeze({x:"left",y:"top"}),ko=(r,e)=>r.x===e.x&&r.y===e.y,bn=s.z.union([s.z.number(),Ut,_t,gs,fo,wo]),Ao=(r,e)=>{if(typeof r=="string"){if(e===void 0)throw new Error("The y coordinate must be given.");return r==="x"?{x:e,y:0}:{x:0,y:e}}return typeof r=="number"?{x:r,y:e??r}:Array.isArray(r)?{x:r[0],y:r[1]}:"signedWidth"in r?{x:r.signedWidth,y:r.signedHeight}:"clientX"in r?{x:r.clientX,y:r.clientY}:"width"in r?{x:r.width,y:r.height}:{x:r.x,y:r.y}},vn=Object.freeze({x:0,y:0}),kt=s.z.union([s.z.number(),s.z.string()]);s.z.object({top:kt,left:kt,width:kt,height:kt});s.z.object({left:s.z.number(),top:s.z.number(),right:s.z.number(),bottom:s.z.number()});s.z.object({one:Ut,two:Ut,root:No});const Br=(r,e,t=0,n=0,i)=>{const a={one:{...vn},two:{...vn},root:i??Io};if(typeof r=="number"){if(typeof e!="number")throw new Error("Box constructor called with invalid arguments");return a.one={x:r,y:e},a.two={x:a.one.x+t,y:a.one.y+n},a}return"one"in r&&"two"in r&&"root"in r?{...r,root:i??r.root}:("getBoundingClientRect"in r&&(r=r.getBoundingClientRect()),"left"in r?(a.one={x:r.left,y:r.top},a.two={x:r.right,y:r.bottom},a):(a.one=r,e==null?a.two={x:a.one.x+t,y:a.one.y+n}:typeof e=="number"?a.two={x:a.one.x+e,y:a.one.y+t}:"width"in e?a.two={x:a.one.x+e.width,y:a.one.y+e.height}:"signedWidth"in e?a.two={x:a.one.x+e.signedWidth,y:a.one.y+e.signedHeight}:a.two=e,a))},ur=r=>{const e=Br(r);return{lower:e.one.x,upper:e.two.x}},hr=r=>{const e=Br(r);return{lower:e.one.y,upper:e.two.y}},$o=r=>typeof r!="object"||r==null?!1:"one"in r&&"two"in r&&"root"in r,Ro=s.z.object({signedWidth:s.z.number(),signedHeight:s.z.number()});s.z.union([gs,Ro,Ut,_t]);var xo=Object.defineProperty,Co=(r,e,t)=>e in r?xo(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,he=(r,e,t)=>Co(r,typeof e!="symbol"?e+"":e,t);const jo=(r,e,t)=>e!==void 0&&r<e?e:t!==void 0&&r>t?t:r;s.z.object({offset:bn,scale:bn});const Po=r=>(e,t,n,i)=>t==="dimension"?[e,n]:[e,i?n-r:n+r],Do=r=>(e,t,n,i)=>[e,i?n/r:n*r],Mo=r=>(e,t,n)=>{if(e===null)return[r,n];const{lower:i,upper:a}=e,{lower:c,upper:l}=r,u=a-i,f=l-c;if(t==="dimension")return[r,n*(f/u)];const p=(n-i)*(f/u)+c;return[r,p]},Zo=r=>(e,t,n)=>[r,n],Uo=()=>(r,e,t)=>{if(r===null)throw new Error("cannot invert without bounds");if(e==="dimension")return[r,t];const{lower:n,upper:i}=r;return[r,i-(t-n)]},Bo=r=>(e,t,n)=>{const{lower:i,upper:a}=r;return n=jo(n,i,a),[e,n]},Ir=class st{constructor(){he(this,"ops",[]),he(this,"currBounds",null),he(this,"currType",null),he(this,"reversed",!1),this.ops=[]}static translate(e){return new st().translate(e)}static magnify(e){return new st().magnify(e)}static scale(e,t){return new st().scale(e,t)}translate(e){const t=this.new(),n=Po(e);return n.type="translate",t.ops.push(n),t}magnify(e){const t=this.new(),n=Do(e);return n.type="magnify",t.ops.push(n),t}scale(e,t){const n=ht(e,t),i=this.new(),a=Mo(n);return a.type="scale",i.ops.push(a),i}clamp(e,t){const n=ht(e,t),i=this.new(),a=Bo(n);return a.type="clamp",i.ops.push(a),i}reBound(e,t){const n=ht(e,t),i=this.new(),a=Zo(n);return a.type="re-bound",i.ops.push(a),i}invert(){const e=Uo();e.type="invert";const t=this.new();return t.ops.push(e),t}pos(e){return this.exec("position",e)}dim(e){return this.exec("dimension",e)}new(){const e=new st;return e.ops=this.ops.slice(),e.reversed=this.reversed,e}exec(e,t){return this.currBounds=null,this.ops.reduce(([n,i],a)=>a(n,e,i,this.reversed),[null,t])[1]}reverse(){const e=this.new();e.ops.reverse();const t=[];return e.ops.forEach((n,i)=>{if(n.type==="scale"||t.some(([c,l])=>i>=c&&i<=l))return;const a=e.ops.findIndex((c,l)=>c.type==="scale"&&l>i);a!==-1&&t.push([i,a])}),t.forEach(([n,i])=>{const a=e.ops.slice(n,i);a.unshift(e.ops[i]),e.ops.splice(n,i-n+1,...a)}),e.reversed=!e.reversed,e}};he(Ir,"IDENTITY",new Ir);let Tn=Ir;const On=class ce{constructor(e=new Tn,t=new Tn,n=null){he(this,"x"),he(this,"y"),he(this,"currRoot"),this.x=e,this.y=t,this.currRoot=n}static translate(e,t){return new ce().translate(e,t)}static translateX(e){return new ce().translateX(e)}static translateY(e){return new ce().translateY(e)}static clamp(e){return new ce().clamp(e)}static magnify(e){return new ce().magnify(e)}static scale(e){return new ce().scale(e)}static reBound(e){return new ce().reBound(e)}translate(e,t){const n=Ao(e,t),i=this.copy();return i.x=this.x.translate(n.x),i.y=this.y.translate(n.y),i}translateX(e){const t=this.copy();return t.x=this.x.translate(e),t}translateY(e){const t=this.copy();return t.y=this.y.translate(e),t}magnify(e){const t=this.copy();return t.x=this.x.magnify(e.x),t.y=this.y.magnify(e.y),t}scale(e){const t=this.copy();if($o(e)){const n=this.currRoot;return t.currRoot=e.root,n!=null&&!ko(n,e.root)&&(n.x!==e.root.x&&(t.x=t.x.invert()),n.y!==e.root.y&&(t.y=t.y.invert())),t.x=t.x.scale(ur(e)),t.y=t.y.scale(hr(e)),t}return t.x=t.x.scale(e.width),t.y=t.y.scale(e.height),t}reBound(e){const t=this.copy();return t.x=this.x.reBound(ur(e)),t.y=this.y.reBound(hr(e)),t}clamp(e){const t=this.copy();return t.x=this.x.clamp(ur(e)),t.y=this.y.clamp(hr(e)),t}copy(){const e=new ce;return e.currRoot=this.currRoot,e.x=this.x,e.y=this.y,e}reverse(){const e=this.copy();return e.x=this.x.reverse(),e.y=this.y.reverse(),e}pos(e){return{x:this.x.pos(e.x),y:this.y.pos(e.y)}}box(e){return Br(this.pos(e.one),this.pos(e.two),0,0,this.currRoot??e.root)}};he(On,"IDENTITY",new On);var Lo=Object.defineProperty,qo=(r,e,t)=>e in r?Lo(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,d=(r,e,t)=>qo(r,typeof e!="symbol"?e+"":e,t);let Yo=(r,e=21)=>(t=e)=>{let n="",i=t;for(;i--;)n+=r[Math.random()*r.length|0];return n};const Wo="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",zs=Yo(Wo,11),Fo=Object.freeze(Object.defineProperty({__proto__:null,id:zs},Symbol.toStringTag,{value:"Module"})),Es=(r,e)=>{const t=new O(e);if(![E.DAY,E.HOUR,E.MINUTE,E.SECOND,E.MILLISECOND,E.MICROSECOND,E.NANOSECOND].some(i=>i.equals(t)))throw new Error("Invalid argument for remainder. Must be an even TimeSpan or Timestamp");const n=r.valueOf()%t.valueOf();return r instanceof O?new O(n):new E(n)},$=class v{constructor(e,t="UTC"){if(d(this,"value"),d(this,"encodeValue",!0),e==null)this.value=v.now().valueOf();else if(e instanceof Date)this.value=BigInt(e.getTime())*v.MILLISECOND.valueOf();else if(typeof e=="string")this.value=v.parseDateTimeString(e,t).valueOf();else if(Array.isArray(e))this.value=v.parseDate(e);else{let n=BigInt(0);e instanceof Number&&(e=e.valueOf()),t==="local"&&(n=v.utcOffset.valueOf()),typeof e=="number"&&(isFinite(e)?e=Math.trunc(e):(isNaN(e)&&(e=0),e===1/0?e=v.MAX:e=v.MIN)),this.value=BigInt(e.valueOf())+n}}static parseDate([e=1970,t=1,n=1]){const i=new Date(e,t-1,n,0,0,0,0);return new v(BigInt(i.getTime())*v.MILLISECOND.valueOf()).truncate(v.DAY).valueOf()}encode(){return this.value.toString()}valueOf(){return this.value}static parseTimeString(e,t="UTC"){const[n,i,a]=e.split(":");let c="00",l="00";a!=null&&([c,l]=a.split("."));let u=v.hours(parseInt(n??"00",10)).add(v.minutes(parseInt(i??"00",10))).add(v.seconds(parseInt(c??"00",10))).add(v.milliseconds(parseInt(l??"00",10)));return t==="local"&&(u=u.add(v.utcOffset)),u.valueOf()}static parseDateTimeString(e,t="UTC"){if(!e.includes("/")&&!e.includes("-"))return v.parseTimeString(e,t);const n=new Date(e);return e.includes(":")||n.setUTCHours(0,0,0,0),new v(BigInt(n.getTime())*v.MILLISECOND.valueOf(),t).valueOf()}fString(e="ISO",t="UTC"){switch(e){case"ISODate":return this.toISOString(t).slice(0,10);case"ISOTime":return this.toISOString(t).slice(11,23);case"time":return this.timeString(!1,t);case"preciseTime":return this.timeString(!0,t);case"date":return this.dateString();case"preciseDate":return`${this.dateString()} ${this.timeString(!0,t)}`;case"dateTime":return`${this.dateString()} ${this.timeString(!1,t)}`;default:return this.toISOString(t)}}toISOString(e="UTC"){return e==="UTC"?this.date().toISOString():this.sub(v.utcOffset).date().toISOString()}timeString(e=!1,t="UTC"){const n=this.toISOString(t);return e?n.slice(11,23):n.slice(11,19)}dateString(){const e=this.date(),t=e.toLocaleString("default",{month:"short"}),n=e.toLocaleString("default",{day:"numeric"});return`${t} ${n}`}static get utcOffset(){return new E(BigInt(new Date().getTimezoneOffset())*v.MINUTE.valueOf())}static since(e){return new v().span(e)}date(){return new Date(this.milliseconds())}equals(e){return this.valueOf()===new v(e).valueOf()}span(e){return this.range(e).span}range(e){return new G(this,e).makeValid()}spanRange(e){return this.range(this.add(e)).makeValid()}get isZero(){return this.valueOf()===BigInt(0)}after(e){return this.valueOf()>new v(e).valueOf()}afterEq(e){return this.valueOf()>=new v(e).valueOf()}before(e){return this.valueOf()<new v(e).valueOf()}beforeEq(e){return this.valueOf()<=new v(e).valueOf()}add(e){return new v(this.valueOf()+BigInt(e.valueOf()))}sub(e){return new v(this.valueOf()-BigInt(e.valueOf()))}milliseconds(){return Number(this.valueOf())/Number(v.MILLISECOND.valueOf())}toString(){return this.date().toISOString()}remainder(e){return Es(this,e)}get isToday(){return this.truncate(E.DAY).equals(v.now().truncate(E.DAY))}truncate(e){return this.sub(this.remainder(e))}static now(){return new v(new Date)}static max(...e){let t=v.MIN;for(const n of e){const i=new v(n);i.after(t)&&(t=i)}return t}static min(...e){let t=v.MAX;for(const n of e){const i=new v(n);i.before(t)&&(t=i)}return t}static nanoseconds(e){return new v(e)}static microseconds(e){return v.nanoseconds(e*1e3)}static milliseconds(e){return v.microseconds(e*1e3)}static seconds(e){return v.milliseconds(e*1e3)}static minutes(e){return v.seconds(e*60)}static hours(e){return v.minutes(e*60)}static days(e){return v.hours(e*24)}};d($,"NANOSECOND",$.nanoseconds(1)),d($,"MICROSECOND",$.microseconds(1)),d($,"MILLISECOND",$.milliseconds(1)),d($,"SECOND",$.seconds(1)),d($,"MINUTE",$.minutes(1)),d($,"HOUR",$.hours(1)),d($,"DAY",$.days(1)),d($,"MAX",new $((1n<<63n)-1n)),d($,"MIN",new $(0)),d($,"ZERO",new $(0)),d($,"z",s.z.union([s.z.object({value:s.z.bigint()}).transform(r=>new $(r.value)),s.z.string().transform(r=>new $(BigInt(r))),s.z.instanceof(Number).transform(r=>new $(r)),s.z.number().transform(r=>new $(r)),s.z.instanceof($)]));let O=$;const R=class N{constructor(e){d(this,"value"),d(this,"encodeValue",!0),typeof e=="number"&&(e=Math.trunc(e.valueOf())),this.value=BigInt(e.valueOf())}encode(){return this.value.toString()}valueOf(){return this.value}lessThan(e){return this.valueOf()<new N(e).valueOf()}greaterThan(e){return this.valueOf()>new N(e).valueOf()}lessThanOrEqual(e){return this.valueOf()<=new N(e).valueOf()}greaterThanOrEqual(e){return this.valueOf()>=new N(e).valueOf()}remainder(e){return Es(this,e)}truncate(e){return new N(BigInt(Math.trunc(Number(this.valueOf()/e.valueOf())))*e.valueOf())}toString(){const e=this.truncate(N.DAY),t=this.truncate(N.HOUR),n=this.truncate(N.MINUTE),i=this.truncate(N.SECOND),a=this.truncate(N.MILLISECOND),c=this.truncate(N.MICROSECOND),l=this.truncate(N.NANOSECOND),u=e,f=t.sub(e),p=n.sub(t),g=i.sub(n),P=a.sub(i),j=c.sub(a),Q=l.sub(c);let D="";return u.isZero||(D+=`${u.days}d `),f.isZero||(D+=`${f.hours}h `),p.isZero||(D+=`${p.minutes}m `),g.isZero||(D+=`${g.seconds}s `),P.isZero||(D+=`${P.milliseconds}ms `),j.isZero||(D+=`${j.microseconds}µs `),Q.isZero||(D+=`${Q.nanoseconds}ns`),D.trim()}get days(){return Number(this.valueOf())/Number(N.DAY.valueOf())}get hours(){return Number(this.valueOf())/Number(N.HOUR.valueOf())}get minutes(){return Number(this.valueOf())/Number(N.MINUTE.valueOf())}get seconds(){return Number(this.valueOf())/Number(N.SECOND.valueOf())}get milliseconds(){return Number(this.valueOf())/Number(N.MILLISECOND.valueOf())}get microseconds(){return Number(this.valueOf())/Number(N.MICROSECOND.valueOf())}get nanoseconds(){return Number(this.valueOf())}get isZero(){return this.valueOf()===BigInt(0)}equals(e){return this.valueOf()===new N(e).valueOf()}add(e){return new N(this.valueOf()+new N(e).valueOf())}sub(e){return new N(this.valueOf()-new N(e).valueOf())}static nanoseconds(e=1){return new N(e)}static microseconds(e=1){return N.nanoseconds(e*1e3)}static milliseconds(e=1){return N.microseconds(e*1e3)}static seconds(e=1){return N.milliseconds(e*1e3)}static minutes(e){return N.seconds(e.valueOf()*60)}static hours(e){return N.minutes(e*60)}static days(e){return N.hours(e*24)}};d(R,"NANOSECOND",R.nanoseconds(1)),d(R,"MICROSECOND",R.microseconds(1)),d(R,"MILLISECOND",R.milliseconds(1)),d(R,"SECOND",R.seconds(1)),d(R,"MINUTE",R.minutes(1)),d(R,"HOUR",R.hours(1)),d(R,"DAY",R.days(1)),d(R,"MAX",new R((1n<<63n)-1n)),d(R,"MIN",new R(0)),d(R,"ZERO",new R(0)),d(R,"z",s.z.union([s.z.object({value:s.z.bigint()}).transform(r=>new R(r.value)),s.z.string().transform(r=>new R(BigInt(r))),s.z.instanceof(Number).transform(r=>new R(r)),s.z.number().transform(r=>new R(r)),s.z.instanceof(R)]));let E=R;const it=class Pt extends Number{constructor(e){e instanceof Number?super(e.valueOf()):super(e)}toString(){return`${this.valueOf()} Hz`}equals(e){return this.valueOf()===new Pt(e).valueOf()}get period(){return E.seconds(1/this.valueOf())}sampleCount(e){return new E(e).seconds*this.valueOf()}byteCount(e,t){return this.sampleCount(e)*new _(t).valueOf()}span(e){return E.seconds(e/this.valueOf())}byteSpan(e,t){return this.span(e.valueOf()/t.valueOf())}static hz(e){return new Pt(e)}static khz(e){return Pt.hz(e*1e3)}};d(it,"z",s.z.union([s.z.number().transform(r=>new it(r)),s.z.instanceof(Number).transform(r=>new it(r)),s.z.instanceof(it)]));let Gt=it;const L=class extends Number{constructor(e){e instanceof Number?super(e.valueOf()):super(e)}length(e){return e.valueOf()/this.valueOf()}size(e){return new ft(e*this.valueOf())}};d(L,"UNKNOWN",new L(0)),d(L,"BIT128",new L(16)),d(L,"BIT64",new L(8)),d(L,"BIT32",new L(4)),d(L,"BIT16",new L(2)),d(L,"BIT8",new L(1)),d(L,"z",s.z.union([s.z.number().transform(r=>new L(r)),s.z.instanceof(Number).transform(r=>new L(r)),s.z.instanceof(L)]));let _=L;const se=class Dt{constructor(e,t){d(this,"start"),d(this,"end"),typeof e=="object"&&"start"in e?(this.start=new O(e.start),this.end=new O(e.end)):(this.start=new O(e),this.end=new O(t))}get span(){return new E(this.end.valueOf()-this.start.valueOf())}get isValid(){return this.start.valueOf()<=this.end.valueOf()}makeValid(){return this.isValid?this:this.swap()}get isZero(){return this.span.isZero}swap(){return new Dt(this.end,this.start)}equals(e){return this.start.equals(e.start)&&this.end.equals(e.end)}toString(){return`${this.start.toString()} - ${this.end.toString()}`}toPrettyString(){return`${this.start.fString("preciseDate")} - ${this.span.toString()}`}overlapsWith(e,t=E.ZERO){e=e.makeValid();const n=this.makeValid();if(this.equals(e))return!0;if(e.end.equals(n.start)||n.end.equals(e.start))return!1;const i=O.max(n.start,e.start),a=O.min(n.end,e.end);return a.before(i)?!1:new E(a.sub(i)).greaterThanOrEqual(t)}roughlyEquals(e,t){let n=this.start.sub(e.start).valueOf(),i=this.end.sub(e.end).valueOf();return n<0&&(n=-n),i<0&&(i=-i),n<=t.valueOf()&&i<=t.valueOf()}contains(e){return e instanceof Dt?this.contains(e.start)&&this.contains(e.end):this.start.beforeEq(e)&&this.end.after(e)}boundBy(e){const t=new Dt(this.start,this.end);return e.start.after(this.start)&&(t.start=e.start),e.start.after(this.end)&&(t.end=e.start),e.end.before(this.end)&&(t.end=e.end),e.end.before(this.start)&&(t.start=e.end),t}};d(se,"MAX",new se(O.MIN,O.MAX)),d(se,"MIN",new se(O.MAX,O.MIN)),d(se,"ZERO",new se(O.ZERO,O.ZERO)),d(se,"z",s.z.union([s.z.object({start:O.z,end:O.z}).transform(r=>new se(r.start,r.end)),s.z.instanceof(se)]));let G=se;const h=class ie extends String{constructor(e){if(e instanceof ie||typeof e=="string"||typeof e.valueOf()=="string"){super(e.valueOf());return}else{const t=ie.ARRAY_CONSTRUCTOR_DATA_TYPES.get(e.constructor.name);if(t!=null){super(t.valueOf());return}}throw super(ie.UNKNOWN.valueOf()),new Error(`unable to find data type for ${e.toString()}`)}get Array(){const e=ie.ARRAY_CONSTRUCTORS.get(this.toString());if(e==null)throw new Error(`unable to find array constructor for ${this.valueOf()}`);return e}equals(e){return this.valueOf()===e.valueOf()}toString(){return this.valueOf()}get isVariable(){return this.equals(ie.JSON)||this.equals(ie.STRING)}get isNumeric(){return!this.isVariable&&!this.equals(ie.UUID)}get isInteger(){return this.toString().startsWith("int")}get isFloat(){return this.toString().startsWith("float")}get density(){const e=ie.DENSITIES.get(this.toString());if(e==null)throw new Error(`unable to find density for ${this.valueOf()}`);return e}canSafelyCastTo(e){return this.equals(e)?!0:this.isVariable&&!e.isVariable||!this.isVariable&&e.isVariable?!1:this.isFloat&&e.isInteger||this.isInteger&&e.isFloat?this.density.valueOf()<e.density.valueOf():this.isFloat&&e.isFloat||this.isInteger&&e.isInteger?this.density.valueOf()<=e.density.valueOf():!1}canCastTo(e){return this.isNumeric&&e.isNumeric?!0:this.equals(e)}checkArray(e){return e.constructor===this.Array}toJSON(){return this.toString()}get usesBigInt(){return ie.BIG_INT_TYPES.some(e=>e.equals(this))}};d(h,"UNKNOWN",new h("unknown")),d(h,"FLOAT64",new h("float64")),d(h,"FLOAT32",new h("float32")),d(h,"INT64",new h("int64")),d(h,"INT32",new h("int32")),d(h,"INT16",new h("int16")),d(h,"INT8",new h("int8")),d(h,"UINT64",new h("uint64")),d(h,"UINT32",new h("uint32")),d(h,"UINT16",new h("uint16")),d(h,"UINT8",new h("uint8")),d(h,"BOOLEAN",h.UINT8),d(h,"TIMESTAMP",new h("timestamp")),d(h,"UUID",new h("uuid")),d(h,"STRING",new h("string")),d(h,"JSON",new h("json")),d(h,"ARRAY_CONSTRUCTORS",new Map([[h.UINT8.toString(),Uint8Array],[h.UINT16.toString(),Uint16Array],[h.UINT32.toString(),Uint32Array],[h.UINT64.toString(),BigUint64Array],[h.FLOAT32.toString(),Float32Array],[h.FLOAT64.toString(),Float64Array],[h.INT8.toString(),Int8Array],[h.INT16.toString(),Int16Array],[h.INT32.toString(),Int32Array],[h.INT64.toString(),BigInt64Array],[h.TIMESTAMP.toString(),BigInt64Array],[h.STRING.toString(),Uint8Array],[h.JSON.toString(),Uint8Array],[h.UUID.toString(),Uint8Array]])),d(h,"ARRAY_CONSTRUCTOR_DATA_TYPES",new Map([[Uint8Array.name,h.UINT8],[Uint16Array.name,h.UINT16],[Uint32Array.name,h.UINT32],[BigUint64Array.name,h.UINT64],[Float32Array.name,h.FLOAT32],[Float64Array.name,h.FLOAT64],[Int8Array.name,h.INT8],[Int16Array.name,h.INT16],[Int32Array.name,h.INT32],[BigInt64Array.name,h.INT64]])),d(h,"DENSITIES",new Map([[h.UINT8.toString(),_.BIT8],[h.UINT16.toString(),_.BIT16],[h.UINT32.toString(),_.BIT32],[h.UINT64.toString(),_.BIT64],[h.FLOAT32.toString(),_.BIT32],[h.FLOAT64.toString(),_.BIT64],[h.INT8.toString(),_.BIT8],[h.INT16.toString(),_.BIT16],[h.INT32.toString(),_.BIT32],[h.INT64.toString(),_.BIT64],[h.TIMESTAMP.toString(),_.BIT64],[h.STRING.toString(),_.UNKNOWN],[h.JSON.toString(),_.UNKNOWN],[h.UUID.toString(),_.BIT128]])),d(h,"ALL",[h.UNKNOWN,h.FLOAT64,h.FLOAT32,h.INT64,h.INT32,h.INT16,h.INT8,h.UINT64,h.UINT32,h.UINT16,h.UINT8,h.TIMESTAMP,h.UUID,h.STRING,h.JSON]),d(h,"BIG_INT_TYPES",[h.INT64,h.UINT64,h.TIMESTAMP]),d(h,"z",s.z.union([s.z.string().transform(r=>new h(r)),s.z.instanceof(h)]));let z=h;const F=class Z extends Number{constructor(e){super(e.valueOf())}largerThan(e){return this.valueOf()>e.valueOf()}smallerThan(e){return this.valueOf()<e.valueOf()}add(e){return Z.bytes(this.valueOf()+e.valueOf())}sub(e){return Z.bytes(this.valueOf()-e.valueOf())}truncate(e){return new Z(Math.trunc(this.valueOf()/e.valueOf())*e.valueOf())}remainder(e){return Z.bytes(this.valueOf()%e.valueOf())}get gigabytes(){return this.valueOf()/Z.GIGABYTE.valueOf()}get megabytes(){return this.valueOf()/Z.MEGABYTE.valueOf()}get kilobytes(){return this.valueOf()/Z.KILOBYTE.valueOf()}get terabytes(){return this.valueOf()/Z.TERABYTE.valueOf()}toString(){const e=this.truncate(Z.TERABYTE),t=this.truncate(Z.GIGABYTE),n=this.truncate(Z.MEGABYTE),i=this.truncate(Z.KILOBYTE),a=this.truncate(Z.BYTE),c=e,l=t.sub(e),u=n.sub(t),f=i.sub(n),p=a.sub(i);let g="";return c.isZero||(g+=`${c.terabytes}TB `),l.isZero||(g+=`${l.gigabytes}GB `),u.isZero||(g+=`${u.megabytes}MB `),f.isZero||(g+=`${f.kilobytes}KB `),(!p.isZero||g==="")&&(g+=`${p.valueOf()}B`),g.trim()}static bytes(e=1){return new Z(e)}static kilobytes(e=1){return Z.bytes(e.valueOf()*1e3)}static megabytes(e=1){return Z.kilobytes(e.valueOf()*1e3)}static gigabytes(e=1){return Z.megabytes(e.valueOf()*1e3)}static terabytes(e){return Z.gigabytes(e.valueOf()*1e3)}get isZero(){return this.valueOf()===0}};d(F,"BYTE",new F(1)),d(F,"KILOBYTE",F.kilobytes(1)),d(F,"MEGABYTE",F.megabytes(1)),d(F,"GIGABYTE",F.gigabytes(1)),d(F,"TERABYTE",F.terabytes(1)),d(F,"ZERO",new F(0)),d(F,"z",s.z.union([s.z.number().transform(r=>new F(r)),s.z.instanceof(F)]));let ft=F;s.z.union([s.z.instanceof(Uint8Array),s.z.instanceof(Uint16Array),s.z.instanceof(Uint32Array),s.z.instanceof(BigUint64Array),s.z.instanceof(Float32Array),s.z.instanceof(Float64Array),s.z.instanceof(Int8Array),s.z.instanceof(Int16Array),s.z.instanceof(Int32Array),s.z.instanceof(BigInt64Array)]);const Ss=r=>{const e=typeof r;return e==="string"||e==="number"||e==="boolean"||e==="bigint"||r instanceof O||r instanceof E||r instanceof Date},_o=(r,e,t,n=0)=>r.usesBigInt&&!e.usesBigInt?Number(t)-Number(n):!r.usesBigInt&&e.usesBigInt?BigInt(t)-BigInt(n):at(t,-n),Go=r=>r==null?!1:Array.isArray(r)||r instanceof ArrayBuffer||ArrayBuffer.isView(r)&&!(r instanceof DataView)||r instanceof Oe?!0:Ss(r),ve=-1;let Oe=class le{constructor(e){d(this,"key",""),d(this,"isSynnaxSeries",!0),d(this,"dataType"),d(this,"sampleOffset"),d(this,"gl"),d(this,"_data"),d(this,"_timeRange"),d(this,"alignment",0n),d(this,"_cachedMin"),d(this,"_cachedMax"),d(this,"writePos",ve),d(this,"_refCount",0),d(this,"_cachedLength"),Go(e)&&(e={data:e});const{dataType:t,timeRange:n,sampleOffset:i=0,glBufferUsage:a="static",alignment:c=0n,key:l=zs()}=e,{data:u}=e;if(u instanceof le||typeof u=="object"&&"isSynnaxSeries"in u&&u.isSynnaxSeries===!0){const g=u;this.key=g.key,this.dataType=g.dataType,this.sampleOffset=g.sampleOffset,this.gl=g.gl,this._data=g._data,this._timeRange=g._timeRange,this.alignment=g.alignment,this._cachedMin=g._cachedMin,this._cachedMax=g._cachedMax,this.writePos=g.writePos,this._refCount=g._refCount,this._cachedLength=g._cachedLength;return}const f=Ss(u),p=Array.isArray(u);if(t!=null)this.dataType=new z(t);else{if(u instanceof ArrayBuffer)throw new Error("cannot infer data type from an ArrayBuffer instance when constructing a Series. Please provide a data type.");if(p||f){let g=u;if(!f){if(u.length===0)throw new Error("cannot infer data type from a zero length JS array when constructing a Series. Please provide a data type.");g=u[0]}if(typeof g=="string")this.dataType=z.STRING;else if(typeof g=="number")this.dataType=z.FLOAT64;else if(typeof g=="bigint")this.dataType=z.INT64;else if(typeof g=="boolean")this.dataType=z.BOOLEAN;else if(g instanceof O||g instanceof Date||g instanceof O)this.dataType=z.TIMESTAMP;else if(typeof g=="object")this.dataType=z.JSON;else throw new Error(`cannot infer data type of ${typeof g} when constructing a Series from a JS array`)}else this.dataType=new z(u)}if(!p&&!f)this._data=u;else{let g=f?[u]:u;const P=g[0];(P instanceof O||P instanceof Date||P instanceof E)&&(g=g.map(j=>new O(j).valueOf())),this.dataType.equals(z.STRING)?(this._cachedLength=g.length,this._data=new TextEncoder().encode(g.join(`
|
|
5
|
+
`).map(l=>l.trim());if(n.length===0)return t!=null?t.parse({}):{};const a=n.split(",").map(l=>l.trim()),c={};return a.forEach(l=>{c[l]=[]}),i.forEach(l=>{const u=l.split(",").map(h=>h.trim());a.forEach((h,p)=>{const g=this.parseValue(u[p]);g!=null&&c[h].push(g)})}),t!=null?t.parse(c):c}parseValue(e){if(e==null||e.length===0)return null;const t=Number(e);return isNaN(t)?e.startsWith('"')&&e.endsWith('"')?e.slice(1,-1):e:t}static registerCustomType(){}},Ss=class{constructor(){ut(this,"contentType","text/plain")}encode(e){return new TextEncoder().encode(e).buffer}decode(e,t){const n=new TextDecoder().decode(e);return t!=null?t.parse(n):n}};const Fe=new zs,wo=new Es,bo=new Ss,vo=[Fe],Xe=Object.freeze(Object.defineProperty({__proto__:null,CSVCodec:Es,CSV_CODEC:wo,ENCODERS:vo,JSONCodec:zs,JSON_CODEC:Fe,TEXT_CODEC:bo,TextCodec:Ss},Symbol.toStringTag,{value:"Module"})),To=r=>r!=null&&typeof r=="object"&&"toString"in r,Oo=(r,e=!1)=>{const t=To(r)?"stringer":typeof r;let n;switch(t){case"string":n=(i,a)=>i.localeCompare(a);break;case"stringer":n=(i,a)=>i.toString().localeCompare(a.toString());break;case"number":n=(i,a)=>Number(i)-Number(a);break;case"bigint":n=(i,a)=>BigInt(i)-BigInt(a)>0n?1:-1;break;case"boolean":n=(i,a)=>Number(i)-Number(a);break;case"undefined":n=()=>0;break;default:return console.warn(`sortFunc: unknown type ${t}`),()=>-1}return e?zo(n):n},zo=r=>(e,t)=>r(t,e),Eo=0,mr=-1,wr=1,So=r=>r<0,No=r=>r>0,Io=r=>r===0,Qt=s.z.tuple([s.z.number(),s.z.number()]);s.z.tuple([s.z.bigint(),s.z.bigint()]);const Ns=s.z.object({width:s.z.number(),height:s.z.number()}),ko=s.z.object({signedWidth:s.z.number(),signedHeight:s.z.number()}),Ao=["width","height"];s.z.enum(Ao);const $o=["start","center","end"],Ro=["signedWidth","signedHeight"];s.z.enum(Ro);const Vt=s.z.object({x:s.z.number(),y:s.z.number()}),Co=s.z.object({clientX:s.z.number(),clientY:s.z.number()}),xo=["x","y"],Is=s.z.enum(xo),ks=["top","right","bottom","left"];s.z.enum(ks);const Po=["left","right"],As=s.z.enum(Po),Do=["top","bottom"],$s=s.z.enum(Do),Rs=["center"],En=s.z.enum(Rs),jo=[...ks,...Rs],Cs=s.z.enum(jo);s.z.enum($o);const Mo=["first","last"];s.z.enum(Mo);const Zo=s.z.object({lower:s.z.number(),upper:s.z.number()}),Uo=s.z.object({lower:s.z.bigint(),upper:s.z.bigint()});s.z.union([Zo,Qt]);s.z.union([Uo,Qt]);s.z.union([Is,Cs]);s.z.union([Is,Cs,s.z.instanceof(String)]);const ht=(r,e)=>{const t={};if(typeof r=="number"||typeof r=="bigint")e!=null?(t.lower=r,t.upper=e):(t.lower=typeof r=="bigint"?0n:0,t.upper=r);else if(Array.isArray(r)){if(r.length!==2)throw new Error("bounds: expected array of length 2");[t.lower,t.upper]=r}else return Sn(r);return Sn(t)},Sn=r=>r.lower>r.upper?{lower:r.upper,upper:r.lower}:r;s.z.object({x:As.or(En),y:$s.or(En)});const Bo=s.z.object({x:As,y:$s}),Lo=Object.freeze({x:"left",y:"top"}),qo=(r,e)=>r.x===e.x&&r.y===e.y,Nn=s.z.union([s.z.number(),Vt,Qt,Ns,ko,Co]),Yo=(r,e)=>{if(typeof r=="string"){if(e===void 0)throw new Error("The y coordinate must be given.");return r==="x"?{x:e,y:0}:{x:0,y:e}}return typeof r=="number"?{x:r,y:e??r}:Array.isArray(r)?{x:r[0],y:r[1]}:"signedWidth"in r?{x:r.signedWidth,y:r.signedHeight}:"clientX"in r?{x:r.clientX,y:r.clientY}:"width"in r?{x:r.width,y:r.height}:{x:r.x,y:r.y}},In=Object.freeze({x:0,y:0}),Ct=s.z.union([s.z.number(),s.z.string()]);s.z.object({top:Ct,left:Ct,width:Ct,height:Ct});s.z.object({left:s.z.number(),top:s.z.number(),right:s.z.number(),bottom:s.z.number()});s.z.object({one:Vt,two:Vt,root:Bo});const Vr=(r,e,t=0,n=0,i)=>{const a={one:{...In},two:{...In},root:i??Lo};if(typeof r=="number"){if(typeof e!="number")throw new Error("Box constructor called with invalid arguments");return a.one={x:r,y:e},a.two={x:a.one.x+t,y:a.one.y+n},a}return"one"in r&&"two"in r&&"root"in r?{...r,root:i??r.root}:("getBoundingClientRect"in r&&(r=r.getBoundingClientRect()),"left"in r?(a.one={x:r.left,y:r.top},a.two={x:r.right,y:r.bottom},a):(a.one=r,e==null?a.two={x:a.one.x+t,y:a.one.y+n}:typeof e=="number"?a.two={x:a.one.x+e,y:a.one.y+t}:"width"in e?a.two={x:a.one.x+e.width,y:a.one.y+e.height}:"signedWidth"in e?a.two={x:a.one.x+e.signedWidth,y:a.one.y+e.signedHeight}:a.two=e,a))},br=r=>{const e=Vr(r);return{lower:e.one.x,upper:e.two.x}},vr=r=>{const e=Vr(r);return{lower:e.one.y,upper:e.two.y}},Wo=r=>typeof r!="object"||r==null?!1:"one"in r&&"two"in r&&"root"in r,_o=s.z.object({signedWidth:s.z.number(),signedHeight:s.z.number()});s.z.union([Ns,_o,Vt,Qt]);var Vo=Object.defineProperty,Fo=(r,e,t)=>e in r?Vo(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,he=(r,e,t)=>Fo(r,typeof e!="symbol"?e+"":e,t);const Ko=(r,e,t)=>e!==void 0&&r<e?e:t!==void 0&&r>t?t:r;s.z.object({offset:Nn,scale:Nn});const Go=r=>(e,t,n,i)=>t==="dimension"?[e,n]:[e,i?n-r:n+r],Jo=r=>(e,t,n,i)=>[e,i?n/r:n*r],Ho=r=>(e,t,n)=>{if(e===null)return[r,n];const{lower:i,upper:a}=e,{lower:c,upper:l}=r,u=a-i,h=l-c;if(t==="dimension")return[r,n*(h/u)];const p=(n-i)*(h/u)+c;return[r,p]},Xo=r=>(e,t,n)=>[r,n],Qo=()=>(r,e,t)=>{if(r===null)throw new Error("cannot invert without bounds");if(e==="dimension")return[r,t];const{lower:n,upper:i}=r;return[r,i-(t-n)]},ec=r=>(e,t,n)=>{const{lower:i,upper:a}=r;return n=Ko(n,i,a),[e,n]},Dr=class st{constructor(){he(this,"ops",[]),he(this,"currBounds",null),he(this,"currType",null),he(this,"reversed",!1),this.ops=[]}static translate(e){return new st().translate(e)}static magnify(e){return new st().magnify(e)}static scale(e,t){return new st().scale(e,t)}translate(e){const t=this.new(),n=Go(e);return n.type="translate",t.ops.push(n),t}magnify(e){const t=this.new(),n=Jo(e);return n.type="magnify",t.ops.push(n),t}scale(e,t){const n=ht(e,t),i=this.new(),a=Ho(n);return a.type="scale",i.ops.push(a),i}clamp(e,t){const n=ht(e,t),i=this.new(),a=ec(n);return a.type="clamp",i.ops.push(a),i}reBound(e,t){const n=ht(e,t),i=this.new(),a=Xo(n);return a.type="re-bound",i.ops.push(a),i}invert(){const e=Qo();e.type="invert";const t=this.new();return t.ops.push(e),t}pos(e){return this.exec("position",e)}dim(e){return this.exec("dimension",e)}new(){const e=new st;return e.ops=this.ops.slice(),e.reversed=this.reversed,e}exec(e,t){return this.currBounds=null,this.ops.reduce(([n,i],a)=>a(n,e,i,this.reversed),[null,t])[1]}reverse(){const e=this.new();e.ops.reverse();const t=[];return e.ops.forEach((n,i)=>{if(n.type==="scale"||t.some(([c,l])=>i>=c&&i<=l))return;const a=e.ops.findIndex((c,l)=>c.type==="scale"&&l>i);a!==-1&&t.push([i,a])}),t.forEach(([n,i])=>{const a=e.ops.slice(n,i);a.unshift(e.ops[i]),e.ops.splice(n,i-n+1,...a)}),e.reversed=!e.reversed,e}};he(Dr,"IDENTITY",new Dr);let kn=Dr;const An=class le{constructor(e=new kn,t=new kn,n=null){he(this,"x"),he(this,"y"),he(this,"currRoot"),this.x=e,this.y=t,this.currRoot=n}static translate(e,t){return new le().translate(e,t)}static translateX(e){return new le().translateX(e)}static translateY(e){return new le().translateY(e)}static clamp(e){return new le().clamp(e)}static magnify(e){return new le().magnify(e)}static scale(e){return new le().scale(e)}static reBound(e){return new le().reBound(e)}translate(e,t){const n=Yo(e,t),i=this.copy();return i.x=this.x.translate(n.x),i.y=this.y.translate(n.y),i}translateX(e){const t=this.copy();return t.x=this.x.translate(e),t}translateY(e){const t=this.copy();return t.y=this.y.translate(e),t}magnify(e){const t=this.copy();return t.x=this.x.magnify(e.x),t.y=this.y.magnify(e.y),t}scale(e){const t=this.copy();if(Wo(e)){const n=this.currRoot;return t.currRoot=e.root,n!=null&&!qo(n,e.root)&&(n.x!==e.root.x&&(t.x=t.x.invert()),n.y!==e.root.y&&(t.y=t.y.invert())),t.x=t.x.scale(br(e)),t.y=t.y.scale(vr(e)),t}return t.x=t.x.scale(e.width),t.y=t.y.scale(e.height),t}reBound(e){const t=this.copy();return t.x=this.x.reBound(br(e)),t.y=this.y.reBound(vr(e)),t}clamp(e){const t=this.copy();return t.x=this.x.clamp(br(e)),t.y=this.y.clamp(vr(e)),t}copy(){const e=new le;return e.currRoot=this.currRoot,e.x=this.x,e.y=this.y,e}reverse(){const e=this.copy();return e.x=this.x.reverse(),e.y=this.y.reverse(),e}pos(e){return{x:this.x.pos(e.x),y:this.y.pos(e.y)}}box(e){return Vr(this.pos(e.one),this.pos(e.two),0,0,this.currRoot??e.root)}};he(An,"IDENTITY",new An);var tc=Object.defineProperty,rc=(r,e,t)=>e in r?tc(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,f=(r,e,t)=>rc(r,typeof e!="symbol"?e+"":e,t);let nc=(r,e=21)=>(t=e)=>{let n="",i=t;for(;i--;)n+=r[Math.random()*r.length|0];return n};const sc="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",xs=nc(sc,11),ic=Object.freeze(Object.defineProperty({__proto__:null,id:xs},Symbol.toStringTag,{value:"Module"})),Ps=(r,e)=>{const t=new E(e);if(![S.DAY,S.HOUR,S.MINUTE,S.SECOND,S.MILLISECOND,S.MICROSECOND,S.NANOSECOND].some(i=>i.equals(t)))throw new Error("Invalid argument for remainder. Must be an even TimeSpan or Timestamp");const n=r.valueOf()%t.valueOf();return r instanceof E?new E(n):new S(n)},R=class v{constructor(e,t="UTC"){if(f(this,"value"),f(this,"encodeValue",!0),e==null)this.value=v.now().valueOf();else if(e instanceof Date)this.value=BigInt(e.getTime())*v.MILLISECOND.valueOf();else if(typeof e=="string")this.value=v.parseDateTimeString(e,t).valueOf();else if(Array.isArray(e))this.value=v.parseDate(e);else{let n=BigInt(0);e instanceof Number&&(e=e.valueOf()),t==="local"&&(n=v.utcOffset.valueOf()),typeof e=="number"&&(isFinite(e)?e=Math.trunc(e):(isNaN(e)&&(e=0),e===1/0?e=v.MAX:e=v.MIN)),this.value=BigInt(e.valueOf())+n}}static parseDate([e=1970,t=1,n=1]){const i=new Date(e,t-1,n,0,0,0,0);return new v(BigInt(i.getTime())*v.MILLISECOND.valueOf()).truncate(v.DAY).valueOf()}encode(){return this.value.toString()}valueOf(){return this.value}static parseTimeString(e,t="UTC"){const[n,i,a]=e.split(":");let c="00",l="00";a!=null&&([c,l]=a.split("."));let u=v.hours(parseInt(n??"00",10)).add(v.minutes(parseInt(i??"00",10))).add(v.seconds(parseInt(c??"00",10))).add(v.milliseconds(parseInt(l??"00",10)));return t==="local"&&(u=u.add(v.utcOffset)),u.valueOf()}static parseDateTimeString(e,t="UTC"){if(!e.includes("/")&&!e.includes("-"))return v.parseTimeString(e,t);const n=new Date(e);return e.includes(":")||n.setUTCHours(0,0,0,0),new v(BigInt(n.getTime())*v.MILLISECOND.valueOf(),t).valueOf()}fString(e="ISO",t="UTC"){switch(e){case"ISODate":return this.toISOString(t).slice(0,10);case"ISOTime":return this.toISOString(t).slice(11,23);case"time":return this.timeString(!1,t);case"preciseTime":return this.timeString(!0,t);case"date":return this.dateString();case"preciseDate":return`${this.dateString()} ${this.timeString(!0,t)}`;case"dateTime":return`${this.dateString()} ${this.timeString(!1,t)}`;default:return this.toISOString(t)}}toISOString(e="UTC"){return e==="UTC"?this.date().toISOString():this.sub(v.utcOffset).date().toISOString()}timeString(e=!1,t="UTC"){const n=this.toISOString(t);return e?n.slice(11,23):n.slice(11,19)}dateString(){const e=this.date(),t=e.toLocaleString("default",{month:"short"}),n=e.toLocaleString("default",{day:"numeric"});return`${t} ${n}`}static get utcOffset(){return new S(BigInt(new Date().getTimezoneOffset())*v.MINUTE.valueOf())}static since(e){return new v().span(e)}date(){return new Date(this.milliseconds())}equals(e){return this.valueOf()===new v(e).valueOf()}span(e){return this.range(e).span}range(e){return new W(this,e).makeValid()}spanRange(e){return this.range(this.add(e)).makeValid()}get isZero(){return this.valueOf()===BigInt(0)}after(e){return this.valueOf()>new v(e).valueOf()}afterEq(e){return this.valueOf()>=new v(e).valueOf()}before(e){return this.valueOf()<new v(e).valueOf()}beforeEq(e){return this.valueOf()<=new v(e).valueOf()}add(e){return new v(this.valueOf()+BigInt(e.valueOf()))}sub(e){return new v(this.valueOf()-BigInt(e.valueOf()))}milliseconds(){return Number(this.valueOf())/Number(v.MILLISECOND.valueOf())}toString(){return this.date().toISOString()}remainder(e){return Ps(this,e)}get isToday(){return this.truncate(S.DAY).equals(v.now().truncate(S.DAY))}truncate(e){return this.sub(this.remainder(e))}static now(){return new v(new Date)}static max(...e){let t=v.MIN;for(const n of e){const i=new v(n);i.after(t)&&(t=i)}return t}static min(...e){let t=v.MAX;for(const n of e){const i=new v(n);i.before(t)&&(t=i)}return t}static nanoseconds(e){return new v(e)}static microseconds(e){return v.nanoseconds(e*1e3)}static milliseconds(e){return v.microseconds(e*1e3)}static seconds(e){return v.milliseconds(e*1e3)}static minutes(e){return v.seconds(e*60)}static hours(e){return v.minutes(e*60)}static days(e){return v.hours(e*24)}};f(R,"NANOSECOND",R.nanoseconds(1)),f(R,"MICROSECOND",R.microseconds(1)),f(R,"MILLISECOND",R.milliseconds(1)),f(R,"SECOND",R.seconds(1)),f(R,"MINUTE",R.minutes(1)),f(R,"HOUR",R.hours(1)),f(R,"DAY",R.days(1)),f(R,"MAX",new R((1n<<63n)-1n)),f(R,"MIN",new R(0)),f(R,"ZERO",new R(0)),f(R,"z",s.z.union([s.z.object({value:s.z.bigint()}).transform(r=>new R(r.value)),s.z.string().transform(r=>new R(BigInt(r))),s.z.instanceof(Number).transform(r=>new R(r)),s.z.number().transform(r=>new R(r)),s.z.instanceof(R)]));let E=R;const C=class I{constructor(e){f(this,"value"),f(this,"encodeValue",!0),typeof e=="number"&&(e=Math.trunc(e.valueOf())),this.value=BigInt(e.valueOf())}encode(){return this.value.toString()}valueOf(){return this.value}lessThan(e){return this.valueOf()<new I(e).valueOf()}greaterThan(e){return this.valueOf()>new I(e).valueOf()}lessThanOrEqual(e){return this.valueOf()<=new I(e).valueOf()}greaterThanOrEqual(e){return this.valueOf()>=new I(e).valueOf()}remainder(e){return Ps(this,e)}truncate(e){return new I(BigInt(Math.trunc(Number(this.valueOf()/e.valueOf())))*e.valueOf())}toString(){const e=this.truncate(I.DAY),t=this.truncate(I.HOUR),n=this.truncate(I.MINUTE),i=this.truncate(I.SECOND),a=this.truncate(I.MILLISECOND),c=this.truncate(I.MICROSECOND),l=this.truncate(I.NANOSECOND),u=e,h=t.sub(e),p=n.sub(t),g=i.sub(n),D=a.sub(i),P=c.sub(a),Q=l.sub(c);let j="";return u.isZero||(j+=`${u.days}d `),h.isZero||(j+=`${h.hours}h `),p.isZero||(j+=`${p.minutes}m `),g.isZero||(j+=`${g.seconds}s `),D.isZero||(j+=`${D.milliseconds}ms `),P.isZero||(j+=`${P.microseconds}µs `),Q.isZero||(j+=`${Q.nanoseconds}ns`),j.trim()}get days(){return Number(this.valueOf())/Number(I.DAY.valueOf())}get hours(){return Number(this.valueOf())/Number(I.HOUR.valueOf())}get minutes(){return Number(this.valueOf())/Number(I.MINUTE.valueOf())}get seconds(){return Number(this.valueOf())/Number(I.SECOND.valueOf())}get milliseconds(){return Number(this.valueOf())/Number(I.MILLISECOND.valueOf())}get microseconds(){return Number(this.valueOf())/Number(I.MICROSECOND.valueOf())}get nanoseconds(){return Number(this.valueOf())}get isZero(){return this.valueOf()===BigInt(0)}equals(e){return this.valueOf()===new I(e).valueOf()}add(e){return new I(this.valueOf()+new I(e).valueOf())}sub(e){return new I(this.valueOf()-new I(e).valueOf())}static nanoseconds(e=1){return new I(e)}static microseconds(e=1){return I.nanoseconds(e*1e3)}static milliseconds(e=1){return I.microseconds(e*1e3)}static seconds(e=1){return I.milliseconds(e*1e3)}static minutes(e){return I.seconds(e.valueOf()*60)}static hours(e){return I.minutes(e*60)}static days(e){return I.hours(e*24)}};f(C,"NANOSECOND",C.nanoseconds(1)),f(C,"MICROSECOND",C.microseconds(1)),f(C,"MILLISECOND",C.milliseconds(1)),f(C,"SECOND",C.seconds(1)),f(C,"MINUTE",C.minutes(1)),f(C,"HOUR",C.hours(1)),f(C,"DAY",C.days(1)),f(C,"MAX",new C((1n<<63n)-1n)),f(C,"MIN",new C(0)),f(C,"ZERO",new C(0)),f(C,"z",s.z.union([s.z.object({value:s.z.bigint()}).transform(r=>new C(r.value)),s.z.string().transform(r=>new C(BigInt(r))),s.z.instanceof(Number).transform(r=>new C(r)),s.z.number().transform(r=>new C(r)),s.z.instanceof(C)]));let S=C;const it=class Bt extends Number{constructor(e){e instanceof Number?super(e.valueOf()):super(e)}toString(){return`${this.valueOf()} Hz`}equals(e){return this.valueOf()===new Bt(e).valueOf()}get period(){return S.seconds(1/this.valueOf())}sampleCount(e){return new S(e).seconds*this.valueOf()}byteCount(e,t){return this.sampleCount(e)*new F(t).valueOf()}span(e){return S.seconds(e/this.valueOf())}byteSpan(e,t){return this.span(e.valueOf()/t.valueOf())}static hz(e){return new Bt(e)}static khz(e){return Bt.hz(e*1e3)}};f(it,"z",s.z.union([s.z.number().transform(r=>new it(r)),s.z.instanceof(Number).transform(r=>new it(r)),s.z.instanceof(it)]));let er=it;const L=class extends Number{constructor(e){e instanceof Number?super(e.valueOf()):super(e)}length(e){return e.valueOf()/this.valueOf()}size(e){return new ft(e*this.valueOf())}};f(L,"UNKNOWN",new L(0)),f(L,"BIT128",new L(16)),f(L,"BIT64",new L(8)),f(L,"BIT32",new L(4)),f(L,"BIT16",new L(2)),f(L,"BIT8",new L(1)),f(L,"z",s.z.union([s.z.number().transform(r=>new L(r)),s.z.instanceof(Number).transform(r=>new L(r)),s.z.instanceof(L)]));let F=L;const ie=class Lt{constructor(e,t){f(this,"start"),f(this,"end"),typeof e=="object"&&"start"in e?(this.start=new E(e.start),this.end=new E(e.end)):(this.start=new E(e),this.end=new E(t))}get span(){return new S(this.end.valueOf()-this.start.valueOf())}get isValid(){return this.start.valueOf()<=this.end.valueOf()}makeValid(){return this.isValid?this:this.swap()}get isZero(){return this.span.isZero}get numeric(){return{start:Number(this.start.valueOf()),end:Number(this.end.valueOf())}}swap(){return new Lt(this.end,this.start)}equals(e){return this.start.equals(e.start)&&this.end.equals(e.end)}toString(){return`${this.start.toString()} - ${this.end.toString()}`}toPrettyString(){return`${this.start.fString("preciseDate")} - ${this.span.toString()}`}overlapsWith(e,t=S.ZERO){e=e.makeValid();const n=this.makeValid();if(this.equals(e))return!0;if(e.end.equals(n.start)||n.end.equals(e.start))return!1;const i=E.max(n.start,e.start),a=E.min(n.end,e.end);return a.before(i)?!1:new S(a.sub(i)).greaterThanOrEqual(t)}roughlyEquals(e,t){let n=this.start.sub(e.start).valueOf(),i=this.end.sub(e.end).valueOf();return n<0&&(n=-n),i<0&&(i=-i),n<=t.valueOf()&&i<=t.valueOf()}contains(e){return e instanceof Lt?this.contains(e.start)&&this.contains(e.end):this.start.beforeEq(e)&&this.end.after(e)}boundBy(e){const t=new Lt(this.start,this.end);return e.start.after(this.start)&&(t.start=e.start),e.start.after(this.end)&&(t.end=e.start),e.end.before(this.end)&&(t.end=e.end),e.end.before(this.start)&&(t.start=e.end),t}};f(ie,"MAX",new ie(E.MIN,E.MAX)),f(ie,"MIN",new ie(E.MAX,E.MIN)),f(ie,"ZERO",new ie(E.ZERO,E.ZERO)),f(ie,"z",s.z.union([s.z.object({start:E.z,end:E.z}).transform(r=>new ie(r.start,r.end)),s.z.instanceof(ie)]));let W=ie;const y=class ae extends String{constructor(e){if(e instanceof ae||typeof e=="string"||typeof e.valueOf()=="string"){super(e.valueOf());return}else{const t=ae.ARRAY_CONSTRUCTOR_DATA_TYPES.get(e.constructor.name);if(t!=null){super(t.valueOf());return}}throw super(ae.UNKNOWN.valueOf()),new Error(`unable to find data type for ${e.toString()}`)}get Array(){const e=ae.ARRAY_CONSTRUCTORS.get(this.toString());if(e==null)throw new Error(`unable to find array constructor for ${this.valueOf()}`);return e}equals(e){return this.valueOf()===e.valueOf()}matches(...e){return e.some(t=>this.equals(t))}toString(){return this.valueOf()}get isVariable(){return this.equals(ae.JSON)||this.equals(ae.STRING)}get isNumeric(){return!this.isVariable&&!this.equals(ae.UUID)}get isInteger(){return this.toString().startsWith("int")}get isFloat(){return this.toString().startsWith("float")}get density(){const e=ae.DENSITIES.get(this.toString());if(e==null)throw new Error(`unable to find density for ${this.valueOf()}`);return e}canSafelyCastTo(e){return this.equals(e)?!0:this.isVariable&&!e.isVariable||!this.isVariable&&e.isVariable?!1:this.isFloat&&e.isInteger||this.isInteger&&e.isFloat?this.density.valueOf()<e.density.valueOf():this.isFloat&&e.isFloat||this.isInteger&&e.isInteger?this.density.valueOf()<=e.density.valueOf():!1}canCastTo(e){return this.isNumeric&&e.isNumeric?!0:this.equals(e)}checkArray(e){return e.constructor===this.Array}toJSON(){return this.toString()}get usesBigInt(){return ae.BIG_INT_TYPES.some(e=>e.equals(this))}};f(y,"UNKNOWN",new y("unknown")),f(y,"FLOAT64",new y("float64")),f(y,"FLOAT32",new y("float32")),f(y,"INT64",new y("int64")),f(y,"INT32",new y("int32")),f(y,"INT16",new y("int16")),f(y,"INT8",new y("int8")),f(y,"UINT64",new y("uint64")),f(y,"UINT32",new y("uint32")),f(y,"UINT16",new y("uint16")),f(y,"UINT8",new y("uint8")),f(y,"BOOLEAN",y.UINT8),f(y,"TIMESTAMP",new y("timestamp")),f(y,"UUID",new y("uuid")),f(y,"STRING",new y("string")),f(y,"JSON",new y("json")),f(y,"ARRAY_CONSTRUCTORS",new Map([[y.UINT8.toString(),Uint8Array],[y.UINT16.toString(),Uint16Array],[y.UINT32.toString(),Uint32Array],[y.UINT64.toString(),BigUint64Array],[y.FLOAT32.toString(),Float32Array],[y.FLOAT64.toString(),Float64Array],[y.INT8.toString(),Int8Array],[y.INT16.toString(),Int16Array],[y.INT32.toString(),Int32Array],[y.INT64.toString(),BigInt64Array],[y.TIMESTAMP.toString(),BigInt64Array],[y.STRING.toString(),Uint8Array],[y.JSON.toString(),Uint8Array],[y.UUID.toString(),Uint8Array]])),f(y,"ARRAY_CONSTRUCTOR_DATA_TYPES",new Map([[Uint8Array.name,y.UINT8],[Uint16Array.name,y.UINT16],[Uint32Array.name,y.UINT32],[BigUint64Array.name,y.UINT64],[Float32Array.name,y.FLOAT32],[Float64Array.name,y.FLOAT64],[Int8Array.name,y.INT8],[Int16Array.name,y.INT16],[Int32Array.name,y.INT32],[BigInt64Array.name,y.INT64]])),f(y,"DENSITIES",new Map([[y.UINT8.toString(),F.BIT8],[y.UINT16.toString(),F.BIT16],[y.UINT32.toString(),F.BIT32],[y.UINT64.toString(),F.BIT64],[y.FLOAT32.toString(),F.BIT32],[y.FLOAT64.toString(),F.BIT64],[y.INT8.toString(),F.BIT8],[y.INT16.toString(),F.BIT16],[y.INT32.toString(),F.BIT32],[y.INT64.toString(),F.BIT64],[y.TIMESTAMP.toString(),F.BIT64],[y.STRING.toString(),F.UNKNOWN],[y.JSON.toString(),F.UNKNOWN],[y.UUID.toString(),F.BIT128]])),f(y,"ALL",[y.UNKNOWN,y.FLOAT64,y.FLOAT32,y.INT64,y.INT32,y.INT16,y.INT8,y.UINT64,y.UINT32,y.UINT16,y.UINT8,y.TIMESTAMP,y.UUID,y.STRING,y.JSON]),f(y,"BIG_INT_TYPES",[y.INT64,y.UINT64,y.TIMESTAMP]),f(y,"z",s.z.union([s.z.string().transform(r=>new y(r)),s.z.instanceof(y)]));let z=y;const V=class Z extends Number{constructor(e){super(e.valueOf())}largerThan(e){return this.valueOf()>e.valueOf()}smallerThan(e){return this.valueOf()<e.valueOf()}add(e){return Z.bytes(this.valueOf()+e.valueOf())}sub(e){return Z.bytes(this.valueOf()-e.valueOf())}truncate(e){return new Z(Math.trunc(this.valueOf()/e.valueOf())*e.valueOf())}remainder(e){return Z.bytes(this.valueOf()%e.valueOf())}get gigabytes(){return this.valueOf()/Z.GIGABYTE.valueOf()}get megabytes(){return this.valueOf()/Z.MEGABYTE.valueOf()}get kilobytes(){return this.valueOf()/Z.KILOBYTE.valueOf()}get terabytes(){return this.valueOf()/Z.TERABYTE.valueOf()}toString(){const e=this.truncate(Z.TERABYTE),t=this.truncate(Z.GIGABYTE),n=this.truncate(Z.MEGABYTE),i=this.truncate(Z.KILOBYTE),a=this.truncate(Z.BYTE),c=e,l=t.sub(e),u=n.sub(t),h=i.sub(n),p=a.sub(i);let g="";return c.isZero||(g+=`${c.terabytes}TB `),l.isZero||(g+=`${l.gigabytes}GB `),u.isZero||(g+=`${u.megabytes}MB `),h.isZero||(g+=`${h.kilobytes}KB `),(!p.isZero||g==="")&&(g+=`${p.valueOf()}B`),g.trim()}static bytes(e=1){return new Z(e)}static kilobytes(e=1){return Z.bytes(e.valueOf()*1e3)}static megabytes(e=1){return Z.kilobytes(e.valueOf()*1e3)}static gigabytes(e=1){return Z.megabytes(e.valueOf()*1e3)}static terabytes(e){return Z.gigabytes(e.valueOf()*1e3)}get isZero(){return this.valueOf()===0}};f(V,"BYTE",new V(1)),f(V,"KILOBYTE",V.kilobytes(1)),f(V,"MEGABYTE",V.megabytes(1)),f(V,"GIGABYTE",V.gigabytes(1)),f(V,"TERABYTE",V.terabytes(1)),f(V,"ZERO",new V(0)),f(V,"z",s.z.union([s.z.number().transform(r=>new V(r)),s.z.instanceof(V)]));let ft=V;s.z.union([s.z.instanceof(Uint8Array),s.z.instanceof(Uint16Array),s.z.instanceof(Uint32Array),s.z.instanceof(BigUint64Array),s.z.instanceof(Float32Array),s.z.instanceof(Float64Array),s.z.instanceof(Int8Array),s.z.instanceof(Int16Array),s.z.instanceof(Int32Array),s.z.instanceof(BigInt64Array)]);const Ds=r=>{const e=typeof r;return e==="string"||e==="number"||e==="boolean"||e==="bigint"||r instanceof E||r instanceof S||r instanceof Date},ac=(r,e,t,n=0)=>r.usesBigInt&&!e.usesBigInt?Number(t)-Number(n):!r.usesBigInt&&e.usesBigInt?BigInt(t)-BigInt(n):at(t,-n),oc=r=>r==null?!1:Array.isArray(r)||r instanceof ArrayBuffer||ArrayBuffer.isView(r)&&!(r instanceof DataView)||r instanceof K?!0:Ds(r),Te=-1;class K{constructor(e){f(this,"key",""),f(this,"isSynnaxSeries",!0),f(this,"dataType"),f(this,"sampleOffset"),f(this,"gl"),f(this,"_data"),f(this,"_timeRange"),f(this,"alignment",0n),f(this,"_cachedMin"),f(this,"_cachedMax"),f(this,"writePos",Te),f(this,"_refCount",0),f(this,"_cachedLength"),oc(e)&&(e={data:e});const{dataType:t,timeRange:n,sampleOffset:i=0,glBufferUsage:a="static",alignment:c=0n,key:l=xs()}=e,{data:u}=e;if(u instanceof K||typeof u=="object"&&"isSynnaxSeries"in u&&u.isSynnaxSeries===!0){const g=u;this.key=g.key,this.dataType=g.dataType,this.sampleOffset=g.sampleOffset,this.gl=g.gl,this._data=g._data,this._timeRange=g._timeRange,this.alignment=g.alignment,this._cachedMin=g._cachedMin,this._cachedMax=g._cachedMax,this.writePos=g.writePos,this._refCount=g._refCount,this._cachedLength=g._cachedLength;return}const h=Ds(u),p=Array.isArray(u);if(t!=null)this.dataType=new z(t);else{if(u instanceof ArrayBuffer)throw new Error("cannot infer data type from an ArrayBuffer instance when constructing a Series. Please provide a data type.");if(p||h){let g=u;if(!h){if(u.length===0)throw new Error("cannot infer data type from a zero length JS array when constructing a Series. Please provide a data type.");g=u[0]}if(typeof g=="string")this.dataType=z.STRING;else if(typeof g=="number")this.dataType=z.FLOAT64;else if(typeof g=="bigint")this.dataType=z.INT64;else if(typeof g=="boolean")this.dataType=z.BOOLEAN;else if(g instanceof E||g instanceof Date||g instanceof E)this.dataType=z.TIMESTAMP;else if(typeof g=="object")this.dataType=z.JSON;else throw new Error(`cannot infer data type of ${typeof g} when constructing a Series from a JS array`)}else this.dataType=new z(u)}if(!p&&!h)this._data=u;else{let g=h?[u]:u;const D=g[0];(D instanceof E||D instanceof Date||D instanceof S)&&(g=g.map(P=>new E(P).valueOf())),this.dataType.equals(z.STRING)?(this._cachedLength=g.length,this._data=new TextEncoder().encode(g.join(`
|
|
6
6
|
`)+`
|
|
7
|
-
`)):this.dataType.equals(z.JSON)?(this._cachedLength=g.length,this._data=new TextEncoder().encode(g.map(
|
|
7
|
+
`)):this.dataType.equals(z.JSON)?(this._cachedLength=g.length,this._data=new TextEncoder().encode(g.map(P=>Fe.encodeString(P)).join(`
|
|
8
8
|
`)+`
|
|
9
|
-
`)):this._data=new this.dataType.Array(g).buffer}this.key=l,this.alignment=c,this.sampleOffset=i??0,this._timeRange=n,this.gl={control:null,buffer:null,prevBuffer:0,bufferUsage:a}}static alloc({capacity:e,dataType:t,...n}){if(e===0)throw new Error("[Series] - cannot allocate an array of length 0");const i=new new z(t).Array(e),a=new
|
|
9
|
+
`)):this._data=new this.dataType.Array(g).buffer}this.key=l,this.alignment=c,this.sampleOffset=i??0,this._timeRange=n,this.gl={control:null,buffer:null,prevBuffer:0,bufferUsage:a}}static alloc({capacity:e,dataType:t,...n}){if(e===0)throw new Error("[Series] - cannot allocate an array of length 0");const i=new new z(t).Array(e),a=new K({data:i.buffer,dataType:t,...n});return a.writePos=0,a}static generateTimestamps(e,t,n){const i=n.spanRange(t.span(e)),a=new BigInt64Array(e);for(let c=0;c<e;c++)a[c]=BigInt(n.add(t.span(c)).valueOf());return new K({data:a,dataType:z.TIMESTAMP,timeRange:i})}get refCount(){return this._refCount}static fromStrings(e,t){const n=new TextEncoder().encode(e.join(`
|
|
10
10
|
`)+`
|
|
11
|
-
`);return new
|
|
11
|
+
`);return new K({data:n,dataType:z.STRING,timeRange:t})}static fromJSON(e,t){const n=new TextEncoder().encode(e.map(i=>Fe.encodeString(i)).join(`
|
|
12
12
|
`)+`
|
|
13
|
-
`);return new
|
|
13
|
+
`);return new K({data:n,dataType:z.JSON,timeRange:t})}acquire(e){this._refCount++,e!=null&&this.updateGLBuffer(e)}release(){if(this._refCount--,this._refCount===0&&this.gl.control!=null)this.maybeGarbageCollectGLBuffer(this.gl.control);else if(this._refCount<0)throw new Error("cannot release an array with a negative reference count")}write(e){if(!e.dataType.equals(this.dataType))throw new Error("buffer must be of the same type as this array");if(this.writePos===Te)return 0;const t=this.capacity-this.writePos,n=t<e.length?e.slice(0,t):e;return this.underlyingData.set(n.data,this.writePos),this.maybeRecomputeMinMax(n),this._cachedLength=void 0,this.writePos+=n.length,n.length}get buffer(){return this._data}get underlyingData(){return new this.dataType.Array(this._data)}get data(){return this.writePos===Te?this.underlyingData:new this.dataType.Array(this._data,0,this.writePos)}toStrings(){if(!this.dataType.matches(z.STRING,z.UUID))throw new Error("cannot convert non-string series to strings");return new TextDecoder().decode(this.buffer).split(`
|
|
14
14
|
`).slice(0,-1)}toUUIDs(){if(!this.dataType.equals(z.UUID))throw new Error("cannot convert non-uuid series to uuids");const e=z.UUID.density.valueOf(),t=Array(this.length);for(let n=0;n<this.length;n++){const i=this.buffer.slice(n*e,(n+1)*e),a=Array.from(new Uint8Array(i),c=>c.toString(16).padStart(2,"0")).join("").replace(/(.{8})(.{4})(.{4})(.{4})(.{12})/,"$1-$2-$3-$4-$5");t[n]=a}return t}parseJSON(e){if(!this.dataType.equals(z.JSON))throw new Error("cannot convert non-string series to strings");return new TextDecoder().decode(this.buffer).split(`
|
|
15
|
-
`).slice(0,-1).map(t=>e.parse(We.decodeString(t)))}get timeRange(){if(this._timeRange==null)throw new Error("time range not set on series");return this._timeRange}get byteCapacity(){return new ft(this.buffer.byteLength)}get capacity(){return this.dataType.density.length(this.byteCapacity)}get byteLength(){return this.writePos===ve?this.byteCapacity:this.dataType.density.size(this.writePos)}get length(){return this._cachedLength!=null?this._cachedLength:this.dataType.isVariable?this.calculateCachedLength():this.writePos===ve?this.data.length:this.writePos}calculateCachedLength(){if(!this.dataType.isVariable)throw new Error("cannot calculate length of a non-variable length data type");let e=0;return this.data.forEach(t=>{t===10&&e++}),this._cachedLength=e,e}convert(e,t=0){if(this.dataType.equals(e))return this;const n=new e.Array(this.length);for(let i=0;i<this.length;i++)n[i]=_o(this.dataType,e,this.data[i],t);return new le({data:n.buffer,dataType:e,timeRange:this._timeRange,sampleOffset:t,glBufferUsage:this.gl.bufferUsage,alignment:this.alignment})}calcRawMax(){if(this.length===0)return-1/0;if(this.dataType.equals(z.TIMESTAMP))this._cachedMax=this.data[this.data.length-1];else if(this.dataType.usesBigInt){const e=this.data;this._cachedMax=e.reduce((t,n)=>t>n?t:n)}else{const e=this.data;this._cachedMax=e.reduce((t,n)=>t>n?t:n)}return this._cachedMax}get max(){if(this.dataType.isVariable)throw new Error("cannot calculate maximum on a variable length data type");return this.writePos===0?-1/0:(this._cachedMax==null&&(this._cachedMax=this.calcRawMax()),at(this._cachedMax,this.sampleOffset))}calcRawMin(){if(this.length===0)return 1/0;if(this.dataType.equals(z.TIMESTAMP))this._cachedMin=this.data[0];else if(this.dataType.usesBigInt){const e=this.data;this._cachedMin=e.reduce((t,n)=>t<n?t:n)}else{const e=this.data;this._cachedMin=e.reduce((t,n)=>t<n?t:n)}return this._cachedMin}get min(){if(this.dataType.isVariable)throw new Error("cannot calculate minimum on a variable length data type");return this.writePos===0?1/0:(this._cachedMin==null&&(this._cachedMin=this.calcRawMin()),at(this._cachedMin,this.sampleOffset))}get bounds(){return ht(Number(this.min),Number(this.max))}maybeRecomputeMinMax(e){if(this._cachedMin!=null){const t=e._cachedMin??e.calcRawMin();t<this._cachedMin&&(this._cachedMin=t)}if(this._cachedMax!=null){const t=e._cachedMax??e.calcRawMax();t>this._cachedMax&&(this._cachedMax=t)}}enrich(){this.max,this.min}get range(){return at(this.max,-this.min)}at(e,t){if(this.dataType.isVariable)return this.atVariable(e,t??!1);e<0&&(e=this.length+e);const n=this.data[e];if(n==null){if(t===!0)throw new Error(`[series] - no value at index ${e}`);return}return at(n,this.sampleOffset)}atVariable(e,t){e<0&&(e=this.length+e);let n=0,i=0;for(let c=0;c<this.data.length;c++)if(this.data[c]===10){if(e===0){i=c;break}n=c+1,e--}if(i===0&&(i=this.data.length),n>=i||e>0){if(t)throw new Error(`[series] - no value at index ${e}`);return}const a=this.data.slice(n,i);return this.dataType.equals(z.STRING)?new TextDecoder().decode(a):ys(JSON.parse(new TextDecoder().decode(a)))}binarySearch(e){let t=0,n=this.length-1;const i=ho(e);for(;t<=n;){const a=Math.floor((t+n)/2),c=i(this.at(a,!0),e);if(c===0)return a;c<0?t=a+1:n=a-1}return t}updateGLBuffer(e){if(this.gl.control=e,!this.dataType.equals(z.FLOAT32))throw new Error("Only FLOAT32 arrays can be used in WebGL");const{buffer:t,bufferUsage:n,prevBuffer:i}=this.gl;if(t==null&&(this.gl.buffer=e.createBuffer()),this.writePos!==i)if(e.bindBuffer(e.ARRAY_BUFFER,this.gl.buffer),this.writePos!==ve){i===0&&e.bufferData(e.ARRAY_BUFFER,this.byteCapacity.valueOf(),e.STATIC_DRAW);const a=this.dataType.density.size(i).valueOf(),c=this.underlyingData.slice(this.gl.prevBuffer,this.writePos);e.bufferSubData(e.ARRAY_BUFFER,a,c.buffer),this.gl.prevBuffer=this.writePos}else e.bufferData(e.ARRAY_BUFFER,this.buffer,n==="static"?e.STATIC_DRAW:e.DYNAMIC_DRAW),this.gl.prevBuffer=ve}as(e){if(e==="string"){if(!this.dataType.equals(z.STRING))throw new Error(`cannot convert series of type ${this.dataType.toString()} to string`);return this}if(e==="number"){if(!this.dataType.isNumeric)throw new Error(`cannot convert series of type ${this.dataType.toString()} to number`);return this}if(e==="bigint"){if(!this.dataType.equals(z.INT64))throw new Error(`cannot convert series of type ${this.dataType.toString()} to bigint`);return this}throw new Error(`cannot convert series to ${e}`)}get digest(){var e;return{key:this.key,dataType:this.dataType.toString(),sampleOffset:this.sampleOffset,alignment:this.alignmentBounds,timeRange:(e=this._timeRange)==null?void 0:e.toString(),length:this.length,capacity:this.capacity}}get memInfo(){return{key:this.key,length:this.length,byteLength:this.byteLength,glBuffer:this.gl.buffer!=null}}get alignmentBounds(){return ht(this.alignment,this.alignment+BigInt(this.length))}maybeGarbageCollectGLBuffer(e){this.gl.buffer!=null&&(e.deleteBuffer(this.gl.buffer),this.gl.buffer=null,this.gl.prevBuffer=0,this.gl.control=null)}get glBuffer(){if(this.gl.buffer==null)throw new Error("gl buffer not initialized");return this.gl.prevBuffer!==this.writePos&&console.warn("buffer not updated"),this.gl.buffer}[Symbol.iterator](){if(this.dataType.isVariable){const e=new Ko(this);return this.dataType.equals(z.JSON)?new Vo(e):e}return new Jo(this)}slice(e,t){if(e<=0&&(t==null||t>=this.length))return this;const n=this.data.slice(e,t);return new le({data:n,dataType:this.dataType,timeRange:this._timeRange,sampleOffset:this.sampleOffset,glBufferUsage:this.gl.bufferUsage,alignment:this.alignment+BigInt(e)})}reAlign(e){return new le({data:this.buffer,dataType:this.dataType,timeRange:G.ZERO,sampleOffset:this.sampleOffset,glBufferUsage:"static",alignment:e})}};class Ko{constructor(e){if(d(this,"series"),d(this,"index"),d(this,"decoder"),!e.dataType.isVariable)throw new Error("cannot create a variable series iterator for a non-variable series");this.series=e,this.index=0,this.decoder=new TextDecoder}next(){const e=this.index,t=this.series.data;for(;this.index<t.length&&t[this.index]!==10;)this.index++;const n=this.index;return e===n?{done:!0,value:void 0}:(this.index++,{done:!1,value:this.decoder.decode(this.series.buffer.slice(e,n))})}[Symbol.iterator](){return this}}var zn,En;class Vo{constructor(e){d(this,"wrapped"),d(this,zn,"JSONSeriesIterator"),this.wrapped=e}next(){const e=this.wrapped.next();return e.done===!0?{done:!0,value:void 0}:{done:!1,value:We.decodeString(e.value)}}[(En=Symbol.iterator,zn=Symbol.toStringTag,En)](){return this}}var Sn,Nn;class Jo{constructor(e){d(this,"series"),d(this,"index"),d(this,Sn,"SeriesIterator"),this.series=e,this.index=0}next(){return this.index>=this.series.length?{done:!0,value:void 0}:{done:!1,value:this.series.at(this.index++,!0)}}[(Nn=Symbol.iterator,Sn=Symbol.toStringTag,Nn)](){return this}}const at=(r,e)=>typeof r=="bigint"&&typeof e=="bigint"||typeof r=="number"&&typeof e=="number"?r+e:e===0?r:r===0?e:Number(r)+Number(e);class Ns{constructor(e){if(d(this,"series"),e.length!==0){const t=e[0].dataType;for(let n=1;n<e.length;n++)if(!e[n].dataType.equals(t))throw new Error("[multi-series] - series must have the same data type")}this.series=e}as(e){if(!new z(e).equals(this.dataType))throw new Error(`cannot convert series of type ${this.dataType.toString()} to ${e.toString()}`);return this}get dataType(){return this.series.length===0?z.UNKNOWN:this.series[0].dataType}get timeRange(){return this.series.length===0?G.ZERO:new G(this.series[0].timeRange.start,this.series[this.series.length-1].timeRange.end)}push(e){this.series.push(e)}get length(){return this.series.reduce((e,t)=>e+t.length,0)}at(e,t=!1){e<0&&(e=this.length+e);for(const n of this.series){if(e<n.length)return n.at(e,t);e-=n.length}if(t)throw new Error(`[series] - no value at index ${e}`)}get byteLength(){return new ft(this.series.reduce((e,t)=>e+t.byteLength.valueOf(),0))}get data(){const e=new this.dataType.Array(this.length);let t=0;for(const n of this.series)e.set(n.data,t),t+=n.length;return new this.dataType.Array(e)}[Symbol.iterator](){return this.series.length===0?{next(){return{done:!0,value:void 0}}}:new Ho(this.series)}}var In,kn;class Ho{constructor(e){d(this,"series"),d(this,"seriesIndex"),d(this,"internal"),d(this,In,"MultiSeriesIterator"),this.series=e,this.seriesIndex=0,this.internal=e[0][Symbol.iterator]()}next(){const e=this.internal.next();return e.done===!1?e:this.seriesIndex===this.series.length-1?{done:!0,value:void 0}:(this.internal=this.series[++this.seriesIndex][Symbol.iterator](),this.next())}[(kn=Symbol.iterator,In=Symbol.toStringTag,kn)](){return this}}const T=r=>Array.isArray(r)?r:[r],Xo=(r,e)=>{let t=null;return e===0?r:(...n)=>{t!==null&&(clearTimeout(t),t=null),t=setTimeout(()=>r(...n),e)}};var Qo=Object.defineProperty,ec=(r,e,t)=>e in r?Qo(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,kr=(r,e,t)=>ec(r,typeof e!="symbol"?e+"":e,t);class tc{constructor(e,t){kr(this,"handlers"),kr(this,"transform"),this.transform=e,this.handlers=t??new Map}onChange(e){return this.handlers.set(e,null),()=>this.handlers.delete(e)}notify(e){let t=e;if(this.transform!=null){const[n,i]=this.transform(e);if(!i)return;t=n}this.handlers.forEach((n,i)=>i(t))}}let rc=class{constructor(e){kr(this,"handlers"),this.handlers=e??new Map}onChange(e){return this.handlers.set(e,null),()=>this.handlers.delete(e)}notify(e){this.handlers.forEach((t,n)=>n(e))}};const Ar=Object.freeze(Object.defineProperty({__proto__:null,BaseObserver:rc,Observer:tc},Symbol.toStringTag,{value:"Module"})),Lr=s.z.record(s.z.union([s.z.number(),s.z.string(),s.z.symbol()]),s.z.unknown()),nc=()=>typeof process<"u"&&process.versions!=null&&process.versions.node!=null?"node":typeof window>"u"||window.document===void 0?"webworker":"browser";nc();const sc=["MacOS","Windows","Linux","Docker"];s.z.enum(sc);const An=r=>[...new Set(r)];var ic=Object.defineProperty,ac=(r,e,t)=>e in r?ic(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,ot=(r,e,t)=>ac(r,typeof e!="symbol"?e+"":e,t);const oc=(...r)=>r.map(Is).join(""),Is=r=>(r.endsWith("/")||(r+="/"),r.startsWith("/")&&(r=r.slice(1)),r),cc=r=>r.endsWith("/")?r.slice(0,-1):r,$r=class Rr{constructor({host:e,port:t,protocol:n="",pathPrefix:i=""}){ot(this,"protocol"),ot(this,"host"),ot(this,"port"),ot(this,"path"),this.protocol=n,this.host=e,this.port=t,this.path=Is(i)}replace(e){return new Rr({host:e.host??this.host,port:e.port??this.port,protocol:e.protocol??this.protocol,pathPrefix:e.pathPrefix??this.path})}child(e){return new Rr({...this,pathPrefix:oc(this.path,e)})}toString(){return cc(`${this.protocol}://${this.host}:${this.port}/${this.path}`)}};ot($r,"UNKNOWN",new $r({host:"unknown",port:0}));let lc=$r;var uc=Object.defineProperty,hc=(r,e,t)=>e in r?uc(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,Mt=(r,e,t)=>hc(r,typeof e!="symbol"?e+"":e,t);const Te=class extends Number{};Mt(Te,"Absolute",255),Mt(Te,"Default",1),Mt(Te,"z",s.z.union([s.z.instanceof(Te),s.z.number().int().min(0).max(255).transform(r=>new Te(r)),s.z.instanceof(Number).transform(r=>new Te(r))]));let ks=Te;const As=s.z.object({name:s.z.string(),key:s.z.string()}),yc=r=>s.z.object({subject:As,resource:r,authority:ks.z}),dc=(...r)=>e=>e.filter(t=>{let n=!1;return t.to!=null&&(n=r.includes(t.to.resource)),t.from!=null&&!n&&(n=r.includes(t.from.resource)),n}),_e=Object.freeze(Object.defineProperty({__proto__:null,Authority:ks,filterTransfersByChannelKey:dc,stateZ:yc,subjectZ:As},Symbol.toStringTag,{value:"Module"})),$s=class ct extends Error{constructor(){super(ct.MESSAGE)}matches(e){return typeof e=="string"?e.includes(ct.MESSAGE):e instanceof ct||e.message.includes(ct.MESSAGE)}};Mt($s,"MESSAGE","canceled");let fc=$s;new fc;s.z.string().regex(/^\d+\.\d+\.\d+$/);const me="sy.",$e=class $e extends te{constructor(){super(...arguments);o(this,"type",$e.TYPE)}};o($e,"TYPE",me+"validation"),o($e,"matches",J($e.TYPE));let C=$e;const Re=class Re extends C{constructor(t,n){super(t+": "+n);o(this,"type",Re.TYPE);o(this,"field");o(this,"message");this.field=t,this.message=n}};o(Re,"TYPE",C.TYPE+".field"),o(Re,"matches",J(Re.TYPE));let Bt=Re;const xe=class xe extends te{constructor(){super(...arguments);o(this,"type",xe.TYPE)}};o(xe,"TYPE",me+"auth"),o(xe,"matches",J(xe.TYPE));let Ne=xe;const Ce=class Ce extends Ne{constructor(){super(...arguments);o(this,"type",Ce.TYPE)}};o(Ce,"TYPE",Ne.TYPE+".invalid-token"),o(Ce,"matches",J(Ce.TYPE));let pt=Ce;const je=class je extends te{constructor(t){super(`
|
|
15
|
+
`).slice(0,-1).map(t=>e.parse(Fe.decodeString(t)))}get timeRange(){if(this._timeRange==null)throw new Error("time range not set on series");return this._timeRange}get byteCapacity(){return new ft(this.buffer.byteLength)}get capacity(){return this.dataType.density.length(this.byteCapacity)}get byteLength(){return this.writePos===Te?this.byteCapacity:this.dataType.density.size(this.writePos)}get length(){return this._cachedLength!=null?this._cachedLength:this.dataType.isVariable?this.calculateCachedLength():this.writePos===Te?this.data.length:this.writePos}calculateCachedLength(){if(!this.dataType.isVariable)throw new Error("cannot calculate length of a non-variable length data type");let e=0;return this.data.forEach(t=>{t===10&&e++}),this._cachedLength=e,e}convert(e,t=0){if(this.dataType.equals(e))return this;const n=new e.Array(this.length);for(let i=0;i<this.length;i++)n[i]=ac(this.dataType,e,this.data[i],t);return new K({data:n.buffer,dataType:e,timeRange:this._timeRange,sampleOffset:t,glBufferUsage:this.gl.bufferUsage,alignment:this.alignment})}calcRawMax(){if(this.length===0)return-1/0;if(this.dataType.equals(z.TIMESTAMP))this._cachedMax=this.data[this.data.length-1];else if(this.dataType.usesBigInt){const e=this.data;this._cachedMax=e.reduce((t,n)=>t>n?t:n)}else{const e=this.data;this._cachedMax=e.reduce((t,n)=>t>n?t:n)}return this._cachedMax}get max(){if(this.dataType.isVariable)throw new Error("cannot calculate maximum on a variable length data type");return this.writePos===0?-1/0:(this._cachedMax==null&&(this._cachedMax=this.calcRawMax()),at(this._cachedMax,this.sampleOffset))}calcRawMin(){if(this.length===0)return 1/0;if(this.dataType.equals(z.TIMESTAMP))this._cachedMin=this.data[0];else if(this.dataType.usesBigInt){const e=this.data;this._cachedMin=e.reduce((t,n)=>t<n?t:n)}else{const e=this.data;this._cachedMin=e.reduce((t,n)=>t<n?t:n)}return this._cachedMin}get min(){if(this.dataType.isVariable)throw new Error("cannot calculate minimum on a variable length data type");return this.writePos===0?1/0:(this._cachedMin==null&&(this._cachedMin=this.calcRawMin()),at(this._cachedMin,this.sampleOffset))}get bounds(){return ht(Number(this.min),Number(this.max))}maybeRecomputeMinMax(e){if(this._cachedMin!=null){const t=e._cachedMin??e.calcRawMin();t<this._cachedMin&&(this._cachedMin=t)}if(this._cachedMax!=null){const t=e._cachedMax??e.calcRawMax();t>this._cachedMax&&(this._cachedMax=t)}}enrich(){this.max,this.min}get range(){return at(this.max,-this.min)}at(e,t){if(this.dataType.isVariable)return this.atVariable(e,t??!1);e<0&&(e=this.length+e);const n=this.data[e];if(n==null){if(t===!0)throw new Error(`[series] - no value at index ${e}`);return}return at(n,this.sampleOffset)}atVariable(e,t){e<0&&(e=this.length+e);let n=0,i=0;for(let c=0;c<this.data.length;c++)if(this.data[c]===10){if(e===0){i=c;break}n=c+1,e--}if(i===0&&(i=this.data.length),n>=i||e>0){if(t)throw new Error(`[series] - no value at index ${e}`);return}const a=this.data.slice(n,i);return this.dataType.equals(z.STRING)?new TextDecoder().decode(a):Os(JSON.parse(new TextDecoder().decode(a)))}binarySearch(e){let t=0,n=this.length-1;const i=Oo(e);for(;t<=n;){const a=Math.floor((t+n)/2),c=i(this.at(a,!0),e);if(c===0)return a;c<0?t=a+1:n=a-1}return t}updateGLBuffer(e){if(this.gl.control=e,!this.dataType.equals(z.FLOAT32))throw new Error("Only FLOAT32 arrays can be used in WebGL");const{buffer:t,bufferUsage:n,prevBuffer:i}=this.gl;if(t==null&&(this.gl.buffer=e.createBuffer()),this.writePos!==i)if(e.bindBuffer(e.ARRAY_BUFFER,this.gl.buffer),this.writePos!==Te){i===0&&e.bufferData(e.ARRAY_BUFFER,this.byteCapacity.valueOf(),e.STATIC_DRAW);const a=this.dataType.density.size(i).valueOf(),c=this.underlyingData.slice(this.gl.prevBuffer,this.writePos);e.bufferSubData(e.ARRAY_BUFFER,a,c.buffer),this.gl.prevBuffer=this.writePos}else e.bufferData(e.ARRAY_BUFFER,this.buffer,n==="static"?e.STATIC_DRAW:e.DYNAMIC_DRAW),this.gl.prevBuffer=Te}as(e){if(e==="string"){if(!this.dataType.equals(z.STRING))throw new Error(`cannot convert series of type ${this.dataType.toString()} to string`);return this}if(e==="number"){if(!this.dataType.isNumeric)throw new Error(`cannot convert series of type ${this.dataType.toString()} to number`);return this}if(e==="bigint"){if(!this.dataType.equals(z.INT64))throw new Error(`cannot convert series of type ${this.dataType.toString()} to bigint`);return this}throw new Error(`cannot convert series to ${e}`)}get digest(){var e;return{key:this.key,dataType:this.dataType.toString(),sampleOffset:this.sampleOffset,alignment:this.alignmentBounds,timeRange:(e=this._timeRange)==null?void 0:e.toString(),length:this.length,capacity:this.capacity}}get memInfo(){return{key:this.key,length:this.length,byteLength:this.byteLength,glBuffer:this.gl.buffer!=null}}get alignmentBounds(){return ht(this.alignment,this.alignment+BigInt(this.length))}maybeGarbageCollectGLBuffer(e){this.gl.buffer!=null&&(e.deleteBuffer(this.gl.buffer),this.gl.buffer=null,this.gl.prevBuffer=0,this.gl.control=null)}get glBuffer(){if(this.gl.buffer==null)throw new Error("gl buffer not initialized");return this.gl.prevBuffer!==this.writePos&&console.warn("buffer not updated"),this.gl.buffer}[Symbol.iterator](){if(this.dataType.isVariable){const e=new cc(this);return this.dataType.equals(z.JSON)?new lc(e):e}return new uc(this)}slice(e,t){if(e<=0&&(t==null||t>=this.length))return this;const n=this.data.slice(e,t);return new K({data:n,dataType:this.dataType,timeRange:this._timeRange,sampleOffset:this.sampleOffset,glBufferUsage:this.gl.bufferUsage,alignment:this.alignment+BigInt(e)})}reAlign(e){return new K({data:this.buffer,dataType:this.dataType,timeRange:W.ZERO,sampleOffset:this.sampleOffset,glBufferUsage:"static",alignment:e})}}class cc{constructor(e){if(f(this,"series"),f(this,"index"),f(this,"decoder"),!e.dataType.isVariable)throw new Error("cannot create a variable series iterator for a non-variable series");this.series=e,this.index=0,this.decoder=new TextDecoder}next(){const e=this.index,t=this.series.data;for(;this.index<t.length&&t[this.index]!==10;)this.index++;const n=this.index;return e===n?{done:!0,value:void 0}:(this.index++,{done:!1,value:this.decoder.decode(this.series.buffer.slice(e,n))})}[Symbol.iterator](){return this}}var $n,Rn;class lc{constructor(e){f(this,"wrapped"),f(this,$n,"JSONSeriesIterator"),this.wrapped=e}next(){const e=this.wrapped.next();return e.done===!0?{done:!0,value:void 0}:{done:!1,value:Fe.decodeString(e.value)}}[(Rn=Symbol.iterator,$n=Symbol.toStringTag,Rn)](){return this}}var Cn,xn;class uc{constructor(e){f(this,"series"),f(this,"index"),f(this,Cn,"SeriesIterator"),this.series=e,this.index=0}next(){return this.index>=this.series.length?{done:!0,value:void 0}:{done:!1,value:this.series.at(this.index++,!0)}}[(xn=Symbol.iterator,Cn=Symbol.toStringTag,xn)](){return this}}const at=(r,e)=>typeof r=="bigint"&&typeof e=="bigint"||typeof r=="number"&&typeof e=="number"?r+e:e===0?r:r===0?e:Number(r)+Number(e);class js{constructor(e){if(f(this,"series"),e.length!==0){const t=e[0].dataType;for(let n=1;n<e.length;n++)if(!e[n].dataType.equals(t))throw new Error("[multi-series] - series must have the same data type")}this.series=e}as(e){if(!new z(e).equals(this.dataType))throw new Error(`cannot convert series of type ${this.dataType.toString()} to ${e.toString()}`);return this}get dataType(){return this.series.length===0?z.UNKNOWN:this.series[0].dataType}get timeRange(){return this.series.length===0?W.ZERO:new W(this.series[0].timeRange.start,this.series[this.series.length-1].timeRange.end)}push(e){this.series.push(e)}get length(){return this.series.reduce((e,t)=>e+t.length,0)}at(e,t=!1){e<0&&(e=this.length+e);for(const n of this.series){if(e<n.length)return n.at(e,t);e-=n.length}if(t)throw new Error(`[series] - no value at index ${e}`)}get byteLength(){return new ft(this.series.reduce((e,t)=>e+t.byteLength.valueOf(),0))}get data(){const e=new this.dataType.Array(this.length);let t=0;for(const n of this.series)e.set(n.data,t),t+=n.length;return new this.dataType.Array(e)}[Symbol.iterator](){return this.series.length===0?{next(){return{done:!0,value:void 0}}}:new hc(this.series)}}var Pn,Dn;class hc{constructor(e){f(this,"series"),f(this,"seriesIndex"),f(this,"internal"),f(this,Pn,"MultiSeriesIterator"),this.series=e,this.seriesIndex=0,this.internal=e[0][Symbol.iterator]()}next(){const e=this.internal.next();return e.done===!1?e:this.seriesIndex===this.series.length-1?{done:!0,value:void 0}:(this.internal=this.series[++this.seriesIndex][Symbol.iterator](),this.next())}[(Dn=Symbol.iterator,Pn=Symbol.toStringTag,Dn)](){return this}}const O=r=>Array.isArray(r)?r:[r],yc=(r,e)=>{let t=null;return e===0?r:(...n)=>{t!==null&&(clearTimeout(t),t=null),t=setTimeout(()=>r(...n),e)}};s.z.object({key:s.z.string(),value:s.z.string()});var dc=Object.defineProperty,fc=(r,e,t)=>e in r?dc(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,qt=(r,e,t)=>fc(r,typeof e!="symbol"?e+"":e,t);let pc=class{constructor(e,t){qt(this,"handlers"),qt(this,"transform"),qt(this,"closer"),this.transform=e,this.handlers=t??new Map}onChange(e){return this.handlers.set(e,null),()=>this.handlers.delete(e)}notify(e){let t=e;if(this.transform!=null){const[n,i]=this.transform(e);if(!i)return;t=n}this.handlers.forEach((n,i)=>i(t))}setCloser(e){this.closer=e}async close(){var e;return await((e=this.closer)==null?void 0:e.call(this))}},gc=class{constructor(e){qt(this,"handlers"),this.handlers=e??new Map}onChange(e){return this.handlers.set(e,null),()=>this.handlers.delete(e)}notify(e){this.handlers.forEach((t,n)=>n(e))}};const Ne=Object.freeze(Object.defineProperty({__proto__:null,BaseObserver:gc,Observer:pc},Symbol.toStringTag,{value:"Module"})),Fr=s.z.record(s.z.union([s.z.number(),s.z.string(),s.z.symbol()]),s.z.unknown()),mc=()=>typeof process<"u"&&process.versions!=null&&process.versions.node!=null?"node":typeof window>"u"||window.document===void 0?"webworker":"browser";mc();const wc=["MacOS","Windows","Linux","Docker"];s.z.enum(wc);const jn=r=>[...new Set(r)];var bc=Object.defineProperty,vc=(r,e,t)=>e in r?bc(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,ot=(r,e,t)=>vc(r,typeof e!="symbol"?e+"":e,t);const Tc=(...r)=>r.map(Ms).join(""),Ms=r=>(r.endsWith("/")||(r+="/"),r.startsWith("/")&&(r=r.slice(1)),r),Oc=r=>r.endsWith("/")?r.slice(0,-1):r,jr=class Mr{constructor({host:e,port:t,protocol:n="",pathPrefix:i=""}){ot(this,"protocol"),ot(this,"host"),ot(this,"port"),ot(this,"path"),this.protocol=n,this.host=e,this.port=t,this.path=Ms(i)}replace(e){return new Mr({host:e.host??this.host,port:e.port??this.port,protocol:e.protocol??this.protocol,pathPrefix:e.pathPrefix??this.path})}child(e){return new Mr({...this,pathPrefix:Tc(this.path,e)})}toString(){return Oc(`${this.protocol}://${this.host}:${this.port}/${this.path}`)}};ot(jr,"UNKNOWN",new jr({host:"unknown",port:0}));let zc=jr;var Ec=Object.defineProperty,Sc=(r,e,t)=>e in r?Ec(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,Yt=(r,e,t)=>Sc(r,typeof e!="symbol"?e+"":e,t);const Oe=class extends Number{};Yt(Oe,"Absolute",255),Yt(Oe,"Default",1),Yt(Oe,"z",s.z.union([s.z.instanceof(Oe),s.z.number().int().min(0).max(255).transform(r=>new Oe(r)),s.z.instanceof(Number).transform(r=>new Oe(r))]));let Zs=Oe;const Us=s.z.object({name:s.z.string(),key:s.z.string()}),Nc=r=>s.z.object({subject:Us,resource:r,authority:Zs.z}),Ic=(...r)=>e=>e.filter(t=>{let n=!1;return t.to!=null&&(n=r.includes(t.to.resource)),t.from!=null&&!n&&(n=r.includes(t.from.resource)),n}),Ge=Object.freeze(Object.defineProperty({__proto__:null,Authority:Zs,filterTransfersByChannelKey:Ic,stateZ:Nc,subjectZ:Us},Symbol.toStringTag,{value:"Module"})),Bs=class ct extends Error{constructor(){super(ct.MESSAGE)}matches(e){return typeof e=="string"?e.includes(ct.MESSAGE):e instanceof ct||e.message.includes(ct.MESSAGE)}};Yt(Bs,"MESSAGE","canceled");let kc=Bs;new kc;const Zr=s.z.string().regex(/^\d+\.\d+\.\d+$/),Ot=(r,e,t={})=>{t.checkMajor??(t.checkMajor=!0),t.checkMinor??(t.checkMinor=!0),t.checkPatch??(t.checkPatch=!0);const n=Zr.parse(r),i=Zr.parse(e),[a,c,l]=n.split(".").map(Number),[u,h,p]=i.split(".").map(Number);if(t.checkMajor){if(a<u)return mr;if(a>u)return wr}if(t.checkMinor){if(c<h)return mr;if(c>h)return wr}if(t.checkPatch){if(l<p)return mr;if(l>p)return wr}return Eo},Ac=(r,e,t={})=>Io(Ot(r,e,t)),Ls=(r,e,t={})=>No(Ot(r,e,t)),$c=(r,e,t={})=>So(Ot(r,e,t)),Rc=({name:r,migrate:e})=>t=>{try{const n=e(t);return console.log(`${r} migrated: ${t.version} -> ${n.version}`),n}catch(n){throw console.log(`${r} failed to migrate from ${t.version}`),console.error(n),n}},Cc=({name:r,migrations:e,targetSchema:t,def:n})=>{const i=Object.keys(e).sort(Ot).pop();if(i==null)return u=>{if(u.version!==n.version)return console.log(`${r} version ${u.version} is newer than latest version of ${n.version}.
|
|
16
|
+
Returning default instead.
|
|
17
|
+
`),n;try{return t!=null?t.parse(u):u}catch(h){return console.log(`${r} failed to parse default. Exiting with default`),console.error(h),n}};const a=Object.keys(e).length;let c=!1;const l=u=>{try{if(a===0||Ls(u.version,i))return console.log(c?`${r} ${u.version} now up to date`:`${r} version ${u.version} is up to date with target version ${n.version}`),u;const h=u.version,p=e[h],g=p(u);return c=!0,l(g)}catch(h){return console.log(`${r} failed to migrate from ${u.version} to ${i}`),console.error(h),n}};return u=>{try{return l(u)}catch(h){return console.log(`${r} failed to parse final result. Exiting with default`),console.error(h),n}}},Mn=Object.freeze(Object.defineProperty({__proto__:null,compareSemVer:Ot,createMigration:Rc,migrator:Cc,semVerNewer:Ls,semVerOlder:$c,semVerZ:Zr,versionsEqual:Ac},Symbol.toStringTag,{value:"Module"})),me="sy.",xe=class xe extends re{constructor(){super(...arguments);o(this,"type",xe.TYPE)}};o(xe,"TYPE",me+"validation"),o(xe,"matches",H(xe.TYPE));let x=xe;const Pe=class Pe extends x{constructor(t,n){super(t+": "+n);o(this,"type",Pe.TYPE);o(this,"field");o(this,"message");this.field=t,this.message=n}};o(Pe,"TYPE",x.TYPE+".field"),o(Pe,"matches",H(Pe.TYPE));let Ft=Pe;const De=class De extends re{constructor(){super(...arguments);o(this,"type",De.TYPE)}};o(De,"TYPE",me+"auth"),o(De,"matches",H(De.TYPE));let Ie=De;const je=class je extends Ie{constructor(){super(...arguments);o(this,"type",je.TYPE)}};o(je,"TYPE",Ie.TYPE+".invalid-token"),o(je,"matches",H(je.TYPE));let pt=je;const Me=class Me extends re{constructor(t){super(`
|
|
16
18
|
Unexpected error encountered:
|
|
17
19
|
|
|
18
20
|
${t}
|
|
19
21
|
|
|
20
22
|
Please report this to the Synnax team.
|
|
21
|
-
`);o(this,"type",je.TYPE)}};o(je,"TYPE",me+"unexpected"),o(je,"matches",J(je.TYPE));let pe=je;const Pe=class Pe extends te{constructor(){super(...arguments);o(this,"type",Pe.TYPE)}};o(Pe,"TYPE",me+"query"),o(Pe,"matches",J(Pe.TYPE));let X=Pe;const De=class De extends X{constructor(){super(...arguments);o(this,"type",De.TYPE)}};o(De,"TYPE",X.TYPE+".not_found"),o(De,"matches",J(De.TYPE));let Ie=De;const Me=class Me extends X{constructor(){super(...arguments);o(this,"type",Me.TYPE)}};o(Me,"TYPE",X.TYPE+".multiple_results"),o(Me,"matches",J(Me.TYPE));let ke=Me;const Ze=class Ze extends te{constructor(t,n){super(t);o(this,"type",Ze.TYPE);o(this,"path");this.path=n}};o(Ze,"TYPE",me+"route"),o(Ze,"matches",J(Ze.TYPE));let gt=Ze;const Ue=class Ue extends te{constructor(){super(...arguments);o(this,"type",Ue.TYPE)}};o(Ue,"TYPE",me+"control"),o(Ue,"matches",J(Ue.TYPE));let Ge=Ue;const Be=class Be extends Ge{constructor(){super(...arguments);o(this,"type",Be.TYPE)}};o(Be,"TYPE",Ge.TYPE+".unauthorized"),o(Be,"matches",J(Be.TYPE));let Lt=Be;const Le=class Le extends te{constructor(){super(...arguments);o(this,"type",Le.TYPE)}};o(Le,"TYPE",me+"contiguity"),o(Le,"matches",J(Le.TYPE));let xr=Le;const pc=r=>{if(!r.type.startsWith(me))return null;if(r.type.startsWith(C.TYPE)){if(r.type===Bt.TYPE){const e=r.data.split(": ");return e.length<2?new C(r.data):new Bt(e[0],e[1])}return new C(r.data)}return r.type.startsWith(Ne.TYPE)?r.type.startsWith(pt.TYPE)?new pt(r.data):new Ne(r.data):r.type.startsWith(pe.TYPE)?new pe(r.data):r.type.startsWith(X.TYPE)?r.type.startsWith(Ie.TYPE)?new Ie(r.data):r.type.startsWith(ke.TYPE)?new ke(r.data):new X(r.data):r.type.startsWith(Ge.TYPE)?r.type.startsWith(Lt.TYPE)?new Lt(r.data):new Ge(r.data):r.type.startsWith(gt.TYPE)?new gt(r.data,r.data):new pe(r.data)},gc=()=>{throw new Error("Not implemented")};ns({encode:gc,decode:pc});const mc=async(r,e)=>{const[t,n]=await e(r);return n==null?[t,n]:n instanceof Se?[t,new Se({message:`Cannot reach cluster at ${n.url.host}:${n.url.port}`,url:n.url})]:[t,n]};class Rs{constructor(e,t){o(this,"key");o(this,"name");this.key=t,this.name=e}get ontologyID(){return new x({type:"group",key:this.key})}}const wc=s.z.string().uuid(),xs=s.z.object({key:wc,name:s.z.string()}),Cs=s.z.union([s.z.literal("label"),s.z.literal("builtin"),s.z.literal("cluster"),s.z.literal("channel"),s.z.literal("node"),s.z.literal("group"),s.z.literal("range"),s.z.literal("range-alias"),s.z.literal("user"),s.z.literal("workspace"),s.z.literal("schematic"),s.z.literal("lineplot"),s.z.literal("rack"),s.z.literal("device"),s.z.literal("task"),s.z.literal("policy")]),bc="builtin",vc="cluster",Tc="node",H=s.z.object({type:Cs,key:s.z.string()}),js=s.z.string().transform(r=>{const[e,t]=r.split(":");return{type:e,key:t}}),Ps=s.z.union([js,H]),qe=class qe{constructor(e){o(this,"type");o(this,"key");if(e instanceof qe)this.type=e.type,this.key=e.key;else if(typeof e=="string"){const[t,n]=e.split(":");this.type=t,this.key=n}else this.type=e.type,this.key=e.key}toString(){return`${this.type}:${this.key}`}get payload(){return{type:this.type,key:this.key}}};o(qe,"z",s.z.union([Ps,s.z.instanceof(qe)]).transform(e=>new qe(e)));let x=qe;const Oc=new x({type:"builtin",key:"root"}),Ds=s.z.object({type:s.z.number()}),Ms=s.z.object({type:Cs,fields:s.z.record(Ds)}),Zs=s.z.object({id:x.z,name:s.z.string(),schema:Ms.optional().nullable(),data:s.z.record(s.z.unknown()).optional().nullable()}).transform(r=>({key:r.id.toString(),...r})),zc=s.z.object({from:x.z,type:s.z.string(),to:x.z}),Cr=r=>{const[e,t,n]=r.split("->");return{from:new x(e),type:t,to:new x(n)}},Ec=s.z.object({group:xs}),Sc=s.z.object({parent:H,key:s.z.string().uuid().optional(),name:s.z.string()}),Nc=s.z.object({key:s.z.string(),name:s.z.string()}),Ic=s.z.object({keys:s.z.array(s.z.string())});var ee;let kc=(ee=class{constructor(e){o(this,"client");this.client=e}async create(e,t,n){const[i,a]=await this.client.send(ee.ENDPOINT,{parent:e,name:t,key:n},Sc,Ec);if(a!=null)throw a;return i.group}async rename(e,t){const n={key:e,name:t},[,i]=await this.client.send(ee.ENDPOINT_RENAME,n,Nc,s.z.object({}));if(i!=null)throw i}async delete(e){const t={keys:e},[,n]=await this.client.send(ee.ENDPOINT_DELETE,t,Ic,s.z.object({}));if(n!=null)throw n}},o(ee,"ENDPOINT","/ontology/create-group"),o(ee,"ENDPOINT_RENAME","/ontology/rename-group"),o(ee,"ENDPOINT_DELETE","/ontology/delete-group"),ee),Ac=class{constructor(e){o(this,"creator");this.creator=new kc(e)}async create(e,t,n){return this.sugar(await this.creator.create(e,t,n))}async rename(e,t){return await this.creator.rename(e,t)}async delete(...e){return await this.creator.delete(e)}sugar(e){return new Rs(e.name,e.key)}};const yr={ADD_CHILDREN:"/ontology/add-children",REMOVE_CHILDREN:"/ontology/remove-children",MOVE_CHILDREN:"/ontology/move-children"},$n=s.z.object({id:H,children:H.array()}),$c=s.z.object({from:H,to:H,children:H.array()});let Rc=class{constructor(e){o(this,"client");this.client=e}async addChildren(e,...t){await w(this.client,yr.ADD_CHILDREN,{id:e,children:t},$n,s.z.object({}))}async removeChildren(e,...t){await w(this.client,yr.REMOVE_CHILDREN,{id:e,children:t},$n,s.z.object({}))}async moveChildren(e,t,...n){const i={from:e,to:t,children:n};await w(this.client,yr.MOVE_CHILDREN,i,$c,s.z.object({}))}};const xc="/ontology/retrieve",Cc=s.z.object({ids:H.array().optional(),children:s.z.boolean().optional(),parents:s.z.boolean().optional(),includeSchema:s.z.boolean().optional(),excludeFieldData:s.z.boolean().optional(),term:s.z.string().optional(),limit:s.z.number().optional(),offset:s.z.number().optional()}),jc=s.z.object({resources:Zs.array()}),dr=r=>T(r).map(e=>new x(e).payload);let Us=class{constructor(e,t){o(this,"type","ontology");o(this,"groups");o(this,"client");o(this,"writer");o(this,"framer");this.client=e,this.writer=new Rc(e),this.groups=new Ac(e),this.framer=t}async search(e,t){return await this.execRetrieve({term:e,...t})}async retrieve(e,t){const n=await this.execRetrieve({ids:dr(e),...t});if(Array.isArray(e))return n;if(n.length===0)throw new X(`No resource found with ID ${e.toString()}`);return n[0]}async page(e,t,n){return await this.execRetrieve({offset:e,limit:t,...n})}async retrieveChildren(e,t){return await this.execRetrieve({ids:dr(e),children:!0,...t})}async retrieveParents(e,t){return await this.execRetrieve({ids:dr(e),parents:!0,...t})}async addChildren(e,...t){return await this.writer.addChildren(e,...t)}async removeChildren(e,...t){return await this.writer.removeChildren(e,...t)}async moveChildren(e,t,...n){return await this.writer.moveChildren(e,t,...n)}async openChangeTracker(){return await Kt.open(this.framer,this)}newSearcherWithOptions(e){return{type:this.type,search:t=>this.search(t,e),retrieve:t=>this.retrieve(t,e),page:(t,n)=>this.page(t,n,e)}}async execRetrieve(e){const{resources:t}=await w(this.client,xc,e,Cc,jc);return t}};const Rn="sy_ontology_resource_set",xn="sy_ontology_resource_delete",Cn="sy_ontology_relationship_set",jn="sy_ontology_relationship_delete";class Kt{constructor(e,t){o(this,"resourceObs");o(this,"relationshipObs");o(this,"relationships");o(this,"resources");o(this,"streamer");o(this,"client");o(this,"closePromise");this.relationshipObs=new Ar.Observer,this.relationships=this.relationshipObs,this.resourceObs=new Ar.Observer,this.resources=this.resourceObs,this.client=t,this.streamer=e,this.closePromise=this.start()}async close(){this.streamer.close(),await this.closePromise}async start(){for await(const e of this.streamer)await this.update(e)}async update(e){const t=await this.parseResourceSets(e),n=this.parseResourceDeletes(e);t.concat(n).length>0&&this.resourceObs.notify(t.concat(n));const a=this.parseRelationshipSets(e),c=this.parseRelationshipDeletes(e);a.concat(c).length>0&&this.relationshipObs.notify(a.concat(c))}parseRelationshipSets(e){const t=e.get(Cn);return t.length===0?[]:Array.from(t.as("string")).map(n=>({variant:"set",key:Cr(n),value:void 0}))}parseRelationshipDeletes(e){const t=e.get(jn);return t.length===0?[]:Array.from(t.as("string")).map(n=>({variant:"delete",key:Cr(n)}))}async parseResourceSets(e){const t=e.get(Rn);if(t.length===0)return[];const n=Array.from(t.as("string")).map(i=>new x(i));try{return(await this.client.retrieve(n)).map(a=>({variant:"set",key:a.id,value:a}))}catch(i){if(i instanceof X)return[];throw i}}parseResourceDeletes(e){const t=e.get(xn);return t.length===0?[]:Array.from(t.as("string")).map(n=>({variant:"delete",key:new x(n)}))}static async open(e,t){const n=await e.openStreamer([Rn,xn,Cn,jn]);return new Kt(n,t)}}const Pc=Object.freeze(Object.defineProperty({__proto__:null,BuiltinOntologyType:bc,ChangeTracker:Kt,Client:Us,ClusterOntologyType:vc,ID:x,NodeOntologyType:Tc,Root:Oc,crudeIDZ:Ps,idZ:H,parseRelationship:Cr,relationshipSchemaZ:zc,resourceSchemaZ:Zs,schemaFieldZ:Ds,schemaZ:Ms,stringIDZ:js},Symbol.toStringTag,{value:"Module"})),we=s.z.number(),Ot=s.z.object({name:s.z.string(),key:s.z.number(),rate:Gt.z,dataType:z.z,leaseholder:s.z.number(),index:s.z.number(),isIndex:s.z.boolean(),internal:s.z.boolean(),alias:s.z.string().optional()}),Bs=Ot.extend({key:s.z.number().optional(),leaseholder:s.z.number().optional(),index:s.z.number().optional(),rate:Gt.z.optional().default(0),isIndex:s.z.boolean().optional(),internal:s.z.boolean().optional().default(!1),virtual:s.z.boolean().optional().default(!1)}),Ls="channel",Dc=r=>new x({type:Ls,key:r.toString()}),Mc=new Error("request for lock canceled");var Zc=function(r,e,t,n){function i(a){return a instanceof t?a:new t(function(c){c(a)})}return new(t||(t=Promise))(function(a,c){function l(p){try{f(n.next(p))}catch(g){c(g)}}function u(p){try{f(n.throw(p))}catch(g){c(g)}}function f(p){p.done?a(p.value):i(p.value).then(l,u)}f((n=n.apply(r,e||[])).next())})};class Uc{constructor(e,t=Mc){this._value=e,this._cancelError=t,this._queue=[],this._weightedWaiters=[]}acquire(e=1,t=0){if(e<=0)throw new Error(`invalid weight ${e}: must be positive`);return new Promise((n,i)=>{const a={resolve:n,reject:i,weight:e,priority:t},c=qs(this._queue,l=>t<=l.priority);c===-1&&e<=this._value?this._dispatchItem(a):this._queue.splice(c+1,0,a)})}runExclusive(e){return Zc(this,arguments,void 0,function*(t,n=1,i=0){const[a,c]=yield this.acquire(n,i);try{return yield t(a)}finally{c()}})}waitForUnlock(e=1,t=0){if(e<=0)throw new Error(`invalid weight ${e}: must be positive`);return this._couldLockImmediately(e,t)?Promise.resolve():new Promise(n=>{this._weightedWaiters[e-1]||(this._weightedWaiters[e-1]=[]),Bc(this._weightedWaiters[e-1],{resolve:n,priority:t})})}isLocked(){return this._value<=0}getValue(){return this._value}setValue(e){this._value=e,this._dispatchQueue()}release(e=1){if(e<=0)throw new Error(`invalid weight ${e}: must be positive`);this._value+=e,this._dispatchQueue()}cancel(){this._queue.forEach(e=>e.reject(this._cancelError)),this._queue=[]}_dispatchQueue(){for(this._drainUnlockWaiters();this._queue.length>0&&this._queue[0].weight<=this._value;)this._dispatchItem(this._queue.shift()),this._drainUnlockWaiters()}_dispatchItem(e){const t=this._value;this._value-=e.weight,e.resolve([t,this._newReleaser(e.weight)])}_newReleaser(e){let t=!1;return()=>{t||(t=!0,this.release(e))}}_drainUnlockWaiters(){if(this._queue.length===0)for(let e=this._value;e>0;e--){const t=this._weightedWaiters[e-1];t&&(t.forEach(n=>n.resolve()),this._weightedWaiters[e-1]=[])}else{const e=this._queue[0].priority;for(let t=this._value;t>0;t--){const n=this._weightedWaiters[t-1];if(!n)continue;const i=n.findIndex(a=>a.priority<=e);(i===-1?n:n.splice(0,i)).forEach(a=>a.resolve())}}}_couldLockImmediately(e,t){return(this._queue.length===0||this._queue[0].priority<t)&&e<=this._value}}function Bc(r,e){const t=qs(r,n=>e.priority<=n.priority);r.splice(t+1,0,e)}function qs(r,e){for(let t=r.length-1;t>=0;t--)if(e(r[t]))return t;return-1}var Lc=function(r,e,t,n){function i(a){return a instanceof t?a:new t(function(c){c(a)})}return new(t||(t=Promise))(function(a,c){function l(p){try{f(n.next(p))}catch(g){c(g)}}function u(p){try{f(n.throw(p))}catch(g){c(g)}}function f(p){p.done?a(p.value):i(p.value).then(l,u)}f((n=n.apply(r,e||[])).next())})};class qc{constructor(e){this._semaphore=new Uc(1,e)}acquire(){return Lc(this,arguments,void 0,function*(e=0){const[,t]=yield this._semaphore.acquire(1,e);return t})}runExclusive(e,t=0){return this._semaphore.runExclusive(()=>e(),1,t)}isLocked(){return this._semaphore.isLocked()}waitForUnlock(e=0){return this._semaphore.waitForUnlock(1,e)}release(){this._semaphore.isLocked()&&this._semaphore.release()}cancel(){return this._semaphore.cancel()}}const Vt=(r,e,{convertNumericStrings:t=!0}={})=>{const n=!Array.isArray(r);let i=T(r);const a=i[0],c=typeof a;let l;return c==="string"&&t&&!isNaN(parseInt(a))&&"number"in e?(l=e.number,i=i.map(u=>parseInt(u))):l=e[c],{single:n,variant:l,normalized:i,actual:r}},Jt=(r,e,t,n)=>{if(n){if(t.length===0)throw new Ie(`${r} not found matching ${JSON.stringify(e)}`);if(t.length>1)throw new ke(`Expected one ${r} matching ${JSON.stringify(e)}, but found ${t.length}`)}},Ve=r=>s.z.union([s.z.null().transform(()=>[]),r.array()]),Yc=s.z.object({leaseholder:s.z.number().optional(),keys:s.z.number().array().optional(),names:s.z.string().array().optional(),search:s.z.string().optional(),rangeKey:s.z.string().optional(),limit:s.z.number().optional(),offset:s.z.number().optional(),dataTypes:z.z.array().optional(),notDataTypes:z.z.array().optional(),virtual:s.z.boolean().optional(),isIndex:s.z.boolean().optional(),internal:s.z.boolean().optional()}),Wc=s.z.object({channels:Ve(Ot)}),ye=r=>Vt(r,{number:"keys",string:"names"}),Yt=class Yt{constructor(e){o(this,"client");this.client=e}async search(e,t){return await this.execute({search:e,...t})}async retrieve(e,t){const n=ye(e),{variant:i}=n;let{normalized:a}=n;return i==="keys"&&a.indexOf(0)!==-1&&(a=a.filter(c=>c!==0)),a.length===0?[]:await this.execute({[i]:a,...t})}async page(e,t,n){return await this.execute({offset:e,limit:t,...n})}async execute(e){const[t,n]=await this.client.send(Yt.ENDPOINT,e,Yc,Wc);if(n!=null)throw n;return t.channels}};o(Yt,"ENDPOINT","/channel/retrieve");let mt=Yt;class qr{constructor(e){o(this,"cache");o(this,"namesToKeys");o(this,"wrapped");this.cache=new Map,this.namesToKeys=new Map,this.wrapped=e}async search(e,t){return await this.wrapped.search(e,t)}async page(e,t,n){return await this.wrapped.page(e,t,n)}async retrieve(e,t){const{normalized:n}=Vt(e,{string:"names",number:"keys"}),i=[],a=[];if(n.forEach(l=>{const u=this.get(l);u!=null?i.push(...u):a.push(l)}),a.length===0)return i;const c=await this.wrapped.retrieve(a,t);return this.set(c),i.concat(c)}delete(e){const{variant:t,normalized:n}=ye(e);t==="names"?n.forEach(i=>{const a=this.namesToKeys.get(i);a!=null&&(a.forEach(c=>this.cache.delete(c)),this.namesToKeys.delete(i))}):n.forEach(i=>{const a=this.cache.get(i);a!=null&&(this.cache.delete(i),this.namesToKeys.delete(a.name))})}rename(e,t){e.forEach((n,i)=>{const a=t[i],c=this.cache.get(n);if(c==null)return;this.cache.delete(n);const l=this.namesToKeys.get(c.name);l!=null&&(l.delete(n),l.size===0&&this.namesToKeys.delete(c.name)),c.name=a,this.cache.set(n,c);const u=this.namesToKeys.get(a);u==null?this.namesToKeys.set(a,new Set([n])):u.add(n)})}set(e){e.forEach(t=>{this.cache.set(t.key,t);const n=this.namesToKeys.get(t.name);n==null?this.namesToKeys.set(t.name,new Set([t.key])):n.add(t.key)})}get(e){if(typeof e=="number"){const i=this.cache.get(e);return i==null?void 0:[i]}const t=this.namesToKeys.get(e);if(t==null)return;const n=[];if(t.forEach(i=>{const a=this.cache.get(i);a!=null&&n.push(a)}),n.length!==0)return n}}class Ys{constructor(e,t){o(this,"mu",new qc);o(this,"requests",new Map);o(this,"wrapped");o(this,"debouncedRun");this.wrapped=e,this.debouncedRun=Xo(()=>{this.run()},t)}async search(e,t){return await this.wrapped.search(e,t)}async page(e,t,n){return await this.wrapped.page(e,t,n)}async retrieve(e){const{normalized:t,variant:n}=ye(e);return n==="names"?await this.wrapped.retrieve(t):await new Promise((a,c)=>{this.mu.runExclusive(()=>{this.requests.set(t,{resolve:a,reject:c}),this.debouncedRun()})})}async run(){await this.mu.runExclusive(async()=>{const e=new Set;this.requests.forEach((t,n)=>n.forEach(i=>e.add(i)));try{const t=await this.wrapped.retrieve(Array.from(e));this.requests.forEach((n,i)=>n.resolve(t.filter(a=>i.includes(a.key))))}catch(t){this.requests.forEach(n=>n.reject(t))}finally{this.requests.clear()}})}}const Ws=async(r,e)=>{const{normalized:t}=ye(e),n=await r.retrieve(t),i=[];if(t.forEach(a=>{n.find(c=>c.name===a||c.key===a)==null&&i.push(a)}),i.length>0)throw new X(`Could not find channels: ${JSON.stringify(i)}`);return n};class Yr{constructor({dataType:e,rate:t,name:n,leaseholder:i=0,key:a=0,isIndex:c=!1,index:l=0,internal:u=!1,frameClient:f,alias:p}){o(this,"_frameClient");o(this,"key");o(this,"name");o(this,"rate");o(this,"dataType");o(this,"leaseholder");o(this,"index");o(this,"isIndex");o(this,"internal");o(this,"alias");this.key=a,this.name=n,this.rate=new Gt(t??0),this.dataType=new z(e),this.leaseholder=i,this.index=l,this.isIndex=c,this.internal=u,this.alias=p,this._frameClient=f??null}get framer(){if(this._frameClient==null)throw new C("cannot read from a channel that has not been created");return this._frameClient}get payload(){return Ot.parse({key:this.key,name:this.name,rate:this.rate.valueOf(),dataType:this.dataType.valueOf(),leaseholder:this.leaseholder,index:this.index,isIndex:this.isIndex,internal:this.internal})}get ontologyID(){return new x({type:"channel",key:this.key.toString()})}async read(e){return await this.framer.read(e,this.key)}async write(e,t){return await this.framer.write(e,this.key,t)}}const Fc="/channel/retrieve-group",_c=s.z.object({}),Gc=s.z.object({group:xs});let Fs=class{constructor(e,t,n,i){o(this,"type","channel");o(this,"frameClient");o(this,"client");o(this,"retriever");o(this,"writer");this.frameClient=e,this.retriever=t,this.client=n,this.writer=i}async create(e,t={}){const{retrieveIfNameExists:n=!1}=t,i=!Array.isArray(e);let a=T(e),c=[];if(n){const l=await this.retriever.retrieve(a.map(f=>f.name)),u=new Set(l.map(f=>f.name));a=a.filter(f=>!u.has(f.name)),c=this.sugar(l)}return c=c.concat(this.sugar(await this.writer.create(a))),i?c[0]:c}async retrieve(e,t){const n=!Array.isArray(e),i=this.sugar(await this.retriever.retrieve(e,t));return Jt("channel",e,i,n),n?i[0]:i}async search(e,t){return this.sugar(await this.retriever.search(e,t))}async delete(e){const{normalized:t,variant:n}=ye(e);return n==="keys"?await this.writer.delete({keys:t}):await this.writer.delete({names:t})}async rename(e,t){return await this.writer.rename(T(e),T(t))}newSearcherWithOptions(e){return{type:this.type,search:async t=>await this.search(t,e),retrieve:async t=>await this.retrieve(t,e),page:async(t,n)=>await this.page(t,n,e)}}async page(e,t,n){return this.sugar(await this.retriever.page(e,t,n))}createDebouncedBatchRetriever(e=10){return new qr(new Ys(new mt(this.client),e))}sugar(e){const{frameClient:t}=this;return e.map(n=>new Yr({...n,frameClient:t}))}async retrieveGroup(){const e=await w(this.client,Fc,{},_c,Gc);return new Rs(e.group.name,e.group.key)}};const Kc=s.z.object({channels:Bs.array()}),Vc=s.z.object({channels:Ot.array()}),Jc=s.z.object({keys:we.array().optional(),names:s.z.string().array().optional()}),Hc=s.z.object({}),Xc=s.z.object({keys:we.array(),names:s.z.string().array()}),Qc=s.z.object({}),el="/channel/create",tl="/channel/delete",rl="/channel/rename";let _s=class{constructor(e,t){o(this,"client");o(this,"cache");this.client=e,this.cache=t}async create(e){const{channels:t}=await w(this.client,el,{channels:e},Kc,Vc);return this.cache.set(t),t}async delete(e){await w(this.client,tl,e,Jc,Hc),e.keys!=null&&this.cache.delete(e.keys),e.names!=null&&this.cache.delete(e.names)}async rename(e,t){await w(this.client,rl,{keys:e,names:t},Xc,Qc),this.cache.rename(e,t)}};const nl=Object.freeze(Object.defineProperty({__proto__:null,CacheRetriever:qr,Channel:Yr,ChannelOntologyType:Ls,Client:Fs,ClusterRetriever:mt,DebouncedBatchRetriever:Ys,Writer:_s,analyzeChannelParams:ye,keyZ:we,newPayload:Bs,ontologyID:Dc,payload:Ot,retrieveRequired:Ws},Symbol.toStringTag,{value:"Module"})),Wr=s.z.string().uuid(),Fr=s.z.object({key:Wr,subjects:H.array(),objects:H.array(),actions:s.z.string().array()}),sl=Fr.extend({key:Wr.optional()}),il="/access/policy/create",al="/access/policy/delete",ol="/access/policy/retrieve",cl=s.z.object({policies:sl.array()}),ll=s.z.object({policies:Fr.array()}),ul=s.z.object({keys:Wr.array()}),hl=s.z.object({}),yl=s.z.object({subject:H}),dl=s.z.object({policies:Fr.array().optional().default([])});let fl=class{constructor(e){o(this,"client");this.client=e}async create(e){const t=!Array.isArray(e),{policies:n}=await w(this.client,il,{policies:T(e)},cl,ll);return t?n[0]:n}async retrieve(e){const{policies:t}=await w(this.client,ol,{subject:e},yl,dl);return t}async delete(e){await w(this.client,al,{keys:T(e)},ul,hl)}};const pl="/user/register";let gl=class{constructor(e){o(this,"client");this.client=e}async register(e,t){const{user:n}=await w(this.client,pl,{username:e,password:t},Gs,Ks);return n}};s.z.string().uuid();const ml=s.z.object({key:s.z.string(),username:s.z.string()}),Gs=s.z.object({username:s.z.string(),password:s.z.string()}),Ks=s.z.object({token:s.z.string(),user:ml}),Pn="/auth/login",wl=3;let bl=class{constructor(e,t){o(this,"token");o(this,"client");o(this,"credentials");o(this,"authenticating");o(this,"authenticated");o(this,"user");o(this,"retryCount");this.client=e,this.authenticated=!1,this.credentials=t,this.retryCount=0}middleware(){const e=async(t,n)=>{if(!this.authenticated&&!t.target.endsWith(Pn)){this.authenticating==null&&(this.authenticating=new Promise((l,u)=>{this.client.send(Pn,this.credentials,Gs,Ks).then(([f,p])=>{if(p!=null)return l(p);this.token=f==null?void 0:f.token,this.user=f==null?void 0:f.user,this.authenticated=!0,l(null)}).catch(u)}));const c=await this.authenticating;if(c!=null)return[t,c]}t.params.Authorization=`Bearer ${this.token}`;const[i,a]=await n(t);return pt.matches(a)&&this.retryCount<wl?(this.authenticated=!1,this.authenticating=void 0,this.retryCount+=1,e(t,n)):(this.retryCount=0,[i,a])};return e}};const vl=["disconnected","connecting","connected","failed"],Vs=s.z.enum(vl),Js=s.z.object({status:Vs,error:s.z.instanceof(Error).optional(),message:s.z.string().optional(),clusterKey:s.z.string()}),Tl=s.z.object({clusterKey:s.z.string()}),Dn={clusterKey:"",status:"disconnected",error:void 0,message:"Disconnected"},Ye=class Ye{constructor(e,t=E.seconds(30),n){o(this,"_state");o(this,"pollFrequency",E.seconds(30));o(this,"client");o(this,"name");o(this,"interval");o(this,"onChangeHandlers",[]);this._state={...Dn},this.client=e,this.pollFrequency=t,this.name=n,this.check(),this.startChecking()}stopChecking(){this.interval!=null&&clearInterval(this.interval)}async check(){var t;const e=this._state.status;try{const[n,i]=await this.client.send(Ye.ENDPOINT,{},s.z.object({}),Tl);if(i!=null)throw i;this._state.status="connected",this._state.message=`Connected to ${this.name??"cluster"}`,this._state.clusterKey=n.clusterKey}catch(n){this._state.status="failed",this._state.error=n,this._state.message=(t=this.state.error)==null?void 0:t.message}return this.onChangeHandlers.length>0&&e!==this._state.status&&this.onChangeHandlers.forEach(n=>n(this.state)),this.state}get state(){return{...this._state}}onChange(e){this.onChangeHandlers.push(e)}startChecking(){this.interval=setInterval(()=>{this.check()},this.pollFrequency.milliseconds)}};o(Ye,"ENDPOINT","/connectivity/check"),o(Ye,"DEFAULT",Dn),o(Ye,"connectionStateZ",Js);let wt=Ye;const Ol=Object.freeze(Object.defineProperty({__proto__:null,Checker:wt,state:Js,status:Vs},Symbol.toStringTag,{value:"Module"})),zl=s.z.object({keys:we.array().optional(),bounds:G.z,names:s.z.string().array().optional()}),El=s.z.object({}),Sl="/frame/delete";class Nl{constructor(e){o(this,"client");this.client=e}async delete(e){await w(this.client,Sl,e,zl,El)}}const Mn=r=>{const e=T(r);return e.length===0?null:typeof e[0]=="number"||!isNaN(parseInt(e[0]))?"key":"name"},Zn=(r,e)=>{const t=T(r);if(t.length===e.length)return;const n=Mn(r);throw Mn===null?new C("[Frame] - channel keys or names must be provided when constructing a frame."):new C(`[Frame] - ${n}s and arrays must be the same length.
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
`);o(this,"type",Me.TYPE)}};o(Me,"TYPE",me+"unexpected"),o(Me,"matches",H(Me.TYPE));let pe=Me;const Ze=class Ze extends re{constructor(){super(...arguments);o(this,"type",Ze.TYPE)}};o(Ze,"TYPE",me+"query"),o(Ze,"matches",H(Ze.TYPE));let ee=Ze;const Ue=class Ue extends ee{constructor(){super(...arguments);o(this,"type",Ue.TYPE)}};o(Ue,"TYPE",ee.TYPE+".not_found"),o(Ue,"matches",H(Ue.TYPE));let ke=Ue;const Be=class Be extends ee{constructor(){super(...arguments);o(this,"type",Be.TYPE)}};o(Be,"TYPE",ee.TYPE+".multiple_results"),o(Be,"matches",H(Be.TYPE));let Ae=Be;const Le=class Le extends re{constructor(t,n){super(t);o(this,"type",Le.TYPE);o(this,"path");this.path=n}};o(Le,"TYPE",me+"route"),o(Le,"matches",H(Le.TYPE));let gt=Le;const qe=class qe extends re{constructor(){super(...arguments);o(this,"type",qe.TYPE)}};o(qe,"TYPE",me+"control"),o(qe,"matches",H(qe.TYPE));let Je=qe;const Ye=class Ye extends Je{constructor(){super(...arguments);o(this,"type",Ye.TYPE)}};o(Ye,"TYPE",Je.TYPE+".unauthorized"),o(Ye,"matches",H(Ye.TYPE));let Kt=Ye;const We=class We extends re{constructor(){super(...arguments);o(this,"type",We.TYPE)}};o(We,"TYPE",me+"contiguity"),o(We,"matches",H(We.TYPE));let Ur=We;const xc=r=>{if(!r.type.startsWith(me))return null;if(r.type.startsWith(x.TYPE)){if(r.type===Ft.TYPE){const e=r.data.split(": ");return e.length<2?new x(r.data):new Ft(e[0],e[1])}return new x(r.data)}return r.type.startsWith(Ie.TYPE)?r.type.startsWith(pt.TYPE)?new pt(r.data):new Ie(r.data):r.type.startsWith(pe.TYPE)?new pe(r.data):r.type.startsWith(ee.TYPE)?r.type.startsWith(ke.TYPE)?new ke(r.data):r.type.startsWith(Ae.TYPE)?new Ae(r.data):new ee(r.data):r.type.startsWith(Je.TYPE)?r.type.startsWith(Kt.TYPE)?new Kt(r.data):new Je(r.data):r.type.startsWith(gt.TYPE)?new gt(r.data,r.data):new pe(r.data)},Pc=()=>{throw new Error("Not implemented")};ds({encode:Pc,decode:xc});const Dc=async(r,e)=>{const[t,n]=await e(r);return n==null?[t,n]:n instanceof Se?[t,new Se({message:`Cannot reach cluster at ${n.url.host}:${n.url.port}`,url:n.url})]:[t,n]};class qs{constructor(e,t){o(this,"key");o(this,"name");this.key=t,this.name=e}get ontologyID(){return new T({type:"group",key:this.key})}}const jc=s.z.string().uuid(),Ys=s.z.object({key:jc,name:s.z.string()}),tr=s.z.union([s.z.literal("label"),s.z.literal("builtin"),s.z.literal("cluster"),s.z.literal("channel"),s.z.literal("node"),s.z.literal("group"),s.z.literal("range"),s.z.literal("range-alias"),s.z.literal("user"),s.z.literal("workspace"),s.z.literal("schematic"),s.z.literal("lineplot"),s.z.literal("rack"),s.z.literal("device"),s.z.literal("task"),s.z.literal("policy")]),Mc="builtin",Zc="cluster",Uc="node",J=s.z.object({type:tr,key:s.z.string()}),Ws=s.z.string().transform(r=>{const[e,t]=r.split(":");return{type:e,key:t}}),_s=s.z.union([Ws,J]),_e=class _e{constructor(e){o(this,"type");o(this,"key");if(e instanceof _e)this.type=e.type,this.key=e.key;else if(typeof e=="string"){const[t,n]=e.split(":");this.type=t,this.key=n}else this.type=e.type,this.key=e.key}toString(){return`${this.type}:${this.key}`}get payload(){return{type:this.type,key:this.key}}};o(_e,"z",s.z.union([_s,s.z.instanceof(_e)]).transform(e=>new _e(e)));let T=_e;const Bc=new T({type:"builtin",key:"root"}),Vs=s.z.object({type:s.z.number()}),Fs=s.z.object({type:tr,fields:s.z.record(Vs)}),Ks=s.z.object({id:T.z,name:s.z.string(),schema:Fs.optional().nullable(),data:s.z.record(s.z.unknown()).optional().nullable()}).transform(r=>({key:r.id.toString(),...r})),Lc=s.z.object({from:T.z,type:s.z.string(),to:T.z}),Br=r=>{const[e,t,n]=r.split("->");return{from:new T(e),type:t,to:new T(n)}},qc=s.z.object({group:Ys}),Yc=s.z.object({parent:J,key:s.z.string().uuid().optional(),name:s.z.string()}),Wc=s.z.object({key:s.z.string(),name:s.z.string()}),_c=s.z.object({keys:s.z.array(s.z.string())});var te;let Vc=(te=class{constructor(e){o(this,"client");this.client=e}async create(e,t,n){return(await w(this.client,te.ENDPOINT,{parent:e,name:t,key:n},Yc,qc)).group}async rename(e,t){await w(this.client,te.ENDPOINT_RENAME,{key:e,name:t},Wc,s.z.object({}))}async delete(e){await w(this.client,te.ENDPOINT_DELETE,{keys:e},_c,s.z.object({}))}},o(te,"ENDPOINT","/ontology/create-group"),o(te,"ENDPOINT_RENAME","/ontology/rename-group"),o(te,"ENDPOINT_DELETE","/ontology/delete-group"),te),Fc=class{constructor(e){o(this,"creator");this.creator=new Vc(e)}async create(e,t,n){return this.sugar(await this.creator.create(e,t,n))}async rename(e,t){return await this.creator.rename(e,t)}async delete(...e){return await this.creator.delete(e)}sugar(e){return new qs(e.name,e.key)}};const Tr={ADD_CHILDREN:"/ontology/add-children",REMOVE_CHILDREN:"/ontology/remove-children",MOVE_CHILDREN:"/ontology/move-children"},Zn=s.z.object({id:J,children:J.array()}),Kc=s.z.object({from:J,to:J,children:J.array()});let Gc=class{constructor(e){o(this,"client");this.client=e}async addChildren(e,...t){await w(this.client,Tr.ADD_CHILDREN,{id:new T(e).payload,children:t.map(n=>new T(n).payload)},Zn,s.z.object({}))}async removeChildren(e,...t){await w(this.client,Tr.REMOVE_CHILDREN,{id:new T(e).payload,children:t.map(n=>new T(n).payload)},Zn,s.z.object({}))}async moveChildren(e,t,...n){const i={from:new T(e).payload,to:new T(t).payload,children:n.map(a=>new T(a).payload)};await w(this.client,Tr.MOVE_CHILDREN,i,Kc,s.z.object({}))}};const Jc="/ontology/retrieve",Hc=s.z.object({ids:J.array().optional(),children:s.z.boolean().optional(),parents:s.z.boolean().optional(),includeSchema:s.z.boolean().optional(),excludeFieldData:s.z.boolean().optional(),term:s.z.string().optional(),limit:s.z.number().optional(),offset:s.z.number().optional(),types:tr.array().optional()}),Xc=s.z.object({resources:Ks.array()}),Wt=r=>O(r).map(e=>new T(e).payload);let Gs=class{constructor(e,t){o(this,"type","ontology");o(this,"groups");o(this,"client");o(this,"writer");o(this,"framer");this.client=e,this.writer=new Gc(e),this.groups=new Fc(e),this.framer=t}async search(e,t){return await this.execRetrieve({term:e,...t})}async retrieve(e,t){const n=await this.execRetrieve({ids:Wt(e),...t});if(Array.isArray(e))return n;if(n.length===0)throw new ee(`No resource found with ID ${e.toString()}`);return n[0]}async page(e,t,n){return await this.execRetrieve({offset:e,limit:t,...n})}async retrieveChildren(e,t){return await this.execRetrieve({ids:Wt(e),children:!0,...t})}async retrieveParents(e,t){return await this.execRetrieve({ids:Wt(e),parents:!0,...t})}async addChildren(e,...t){return await this.writer.addChildren(e,...t)}async removeChildren(e,...t){return await this.writer.removeChildren(e,...t)}async moveChildren(e,t,...n){return await this.writer.moveChildren(e,t,...n)}async openChangeTracker(){return await zt.open(this.framer,this)}async openDependentTracker(e){return await rr.open(e,this.framer,this)}newSearcherWithOptions(e){return{type:this.type,search:t=>this.search(t,e),retrieve:t=>this.retrieve(t,e),page:(t,n)=>this.page(t,n,e)}}async execRetrieve(e){const{resources:t}=await w(this.client,Jc,e,Hc,Xc);return t}};const Un="sy_ontology_resource_set",Bn="sy_ontology_resource_delete",Ln="sy_ontology_relationship_set",qn="sy_ontology_relationship_delete";class zt{constructor(e,t){o(this,"relationships");o(this,"resources");o(this,"resourceObs");o(this,"relationshipObs");o(this,"streamer");o(this,"client");o(this,"closePromise");this.relationshipObs=new Ne.Observer,this.relationships=this.relationshipObs,this.resourceObs=new Ne.Observer,this.resources=this.resourceObs,this.client=t,this.streamer=e,this.closePromise=this.start()}async close(){this.streamer.close(),await this.closePromise}async start(){for await(const e of this.streamer)await this.update(e)}async update(e){const t=await this.parseResourceSets(e),n=this.parseResourceDeletes(e);t.concat(n).length>0&&this.resourceObs.notify(t.concat(n));const a=this.parseRelationshipSets(e),c=this.parseRelationshipDeletes(e);a.concat(c).length>0&&this.relationshipObs.notify(a.concat(c))}parseRelationshipSets(e){const t=e.get(Ln);return t.length===0?[]:Array.from(t.as("string")).map(n=>({variant:"set",key:Br(n),value:void 0}))}parseRelationshipDeletes(e){const t=e.get(qn);return t.length===0?[]:Array.from(t.as("string")).map(n=>({variant:"delete",key:Br(n)}))}async parseResourceSets(e){const t=e.get(Un);if(t.length===0)return[];const n=Array.from(t.as("string")).map(i=>new T(i));try{return(await this.client.retrieve(n)).map(a=>({variant:"set",key:a.id,value:a}))}catch(i){if(i instanceof ee)return[];throw i}}parseResourceDeletes(e){const t=e.get(Bn);return t.length===0?[]:Array.from(t.as("string")).map(n=>({variant:"delete",key:new T(n)}))}static async open(e,t){const n=await e.openStreamer([Un,Bn,Ln,qn]);return new zt(n,t)}}const Yn=r=>r==="from"?"to":"from";class rr extends Ne.Observer{constructor({target:t,dependents:n,relationshipType:i="parent",relationshipDirection:a="from",resourceType:c},l,u){super();o(this,"internal");o(this,"target");o(this,"relDir");o(this,"resourceType");o(this,"dependents");o(this,"client");o(this,"relType");o(this,"handleResourceChange",t=>{this.dependents=this.dependents.map(n=>{const i=t.find(a=>a.key.toString()==n.id.toString());return i==null||i.variant==="delete"?n:i.value}),this.notify(this.dependents)});o(this,"handleRelationshipChange",t=>{const n=t.filter(a=>a.variant==="delete"&&a.key[this.relDir].toString()===this.target.toString()&&(this.resourceType==null||a.key[Yn(this.relDir)].type===this.resourceType));this.dependents=this.dependents.filter(a=>!n.some(c=>c.key.to.toString()===a.id.toString()&&c.key.type===this.relType));const i=t.filter(a=>a.variant==="set"&&a.key.type===this.relType&&a.key[this.relDir].toString()===this.target.toString()&&(this.resourceType==null||a.key[Yn(this.relDir)].type===this.resourceType));if(i.length===0)return this.notify(this.dependents);this.client.retrieve(i.map(a=>a.key.to)).then(a=>{this.dependents=this.dependents.concat(a),this.notify(this.dependents)})});this.resourceType=c,this.internal=l,this.target=t,this.dependents=n,this.resourceType!=null&&(this.dependents=this.dependents.filter(h=>h.id.type===this.resourceType)),this.client=u,this.relType=i,this.relDir=a,this.internal.resources.onChange(this.handleResourceChange),this.internal.relationships.onChange(this.handleRelationshipChange)}static async open(t,n,i){const a=await zt.open(n,i);return new rr(t,a,i)}async close(){await this.internal.close()}}const Qc=Object.freeze(Object.defineProperty({__proto__:null,BuiltinOntologyType:Mc,ChangeTracker:zt,Client:Gs,ClusterOntologyType:Zc,DependentTracker:rr,ID:T,NodeOntologyType:Uc,Root:Bc,crudeIDZ:_s,idZ:J,parseIDs:Wt,parseRelationship:Br,relationshipSchemaZ:Lc,resourceSchemaZ:Ks,resourceTypeZ:tr,schemaFieldZ:Vs,schemaZ:Fs,stringIDZ:Ws},Symbol.toStringTag,{value:"Module"})),we=s.z.number(),Et=s.z.object({name:s.z.string(),key:s.z.number(),rate:er.z,dataType:z.z,leaseholder:s.z.number(),index:s.z.number(),isIndex:s.z.boolean(),internal:s.z.boolean(),virtual:s.z.boolean(),alias:s.z.string().optional()}),Js=Et.extend({key:s.z.number().optional(),leaseholder:s.z.number().optional(),index:s.z.number().optional(),rate:er.z.optional().default(0),isIndex:s.z.boolean().optional(),internal:s.z.boolean().optional().default(!1),virtual:s.z.boolean().optional().default(!1)}),Hs="channel",el=r=>new T({type:Hs,key:r.toString()}),tl=new Error("request for lock canceled");var rl=function(r,e,t,n){function i(a){return a instanceof t?a:new t(function(c){c(a)})}return new(t||(t=Promise))(function(a,c){function l(p){try{h(n.next(p))}catch(g){c(g)}}function u(p){try{h(n.throw(p))}catch(g){c(g)}}function h(p){p.done?a(p.value):i(p.value).then(l,u)}h((n=n.apply(r,e||[])).next())})};class nl{constructor(e,t=tl){this._value=e,this._cancelError=t,this._queue=[],this._weightedWaiters=[]}acquire(e=1,t=0){if(e<=0)throw new Error(`invalid weight ${e}: must be positive`);return new Promise((n,i)=>{const a={resolve:n,reject:i,weight:e,priority:t},c=Xs(this._queue,l=>t<=l.priority);c===-1&&e<=this._value?this._dispatchItem(a):this._queue.splice(c+1,0,a)})}runExclusive(e){return rl(this,arguments,void 0,function*(t,n=1,i=0){const[a,c]=yield this.acquire(n,i);try{return yield t(a)}finally{c()}})}waitForUnlock(e=1,t=0){if(e<=0)throw new Error(`invalid weight ${e}: must be positive`);return this._couldLockImmediately(e,t)?Promise.resolve():new Promise(n=>{this._weightedWaiters[e-1]||(this._weightedWaiters[e-1]=[]),sl(this._weightedWaiters[e-1],{resolve:n,priority:t})})}isLocked(){return this._value<=0}getValue(){return this._value}setValue(e){this._value=e,this._dispatchQueue()}release(e=1){if(e<=0)throw new Error(`invalid weight ${e}: must be positive`);this._value+=e,this._dispatchQueue()}cancel(){this._queue.forEach(e=>e.reject(this._cancelError)),this._queue=[]}_dispatchQueue(){for(this._drainUnlockWaiters();this._queue.length>0&&this._queue[0].weight<=this._value;)this._dispatchItem(this._queue.shift()),this._drainUnlockWaiters()}_dispatchItem(e){const t=this._value;this._value-=e.weight,e.resolve([t,this._newReleaser(e.weight)])}_newReleaser(e){let t=!1;return()=>{t||(t=!0,this.release(e))}}_drainUnlockWaiters(){if(this._queue.length===0)for(let e=this._value;e>0;e--){const t=this._weightedWaiters[e-1];t&&(t.forEach(n=>n.resolve()),this._weightedWaiters[e-1]=[])}else{const e=this._queue[0].priority;for(let t=this._value;t>0;t--){const n=this._weightedWaiters[t-1];if(!n)continue;const i=n.findIndex(a=>a.priority<=e);(i===-1?n:n.splice(0,i)).forEach(a=>a.resolve())}}}_couldLockImmediately(e,t){return(this._queue.length===0||this._queue[0].priority<t)&&e<=this._value}}function sl(r,e){const t=Xs(r,n=>e.priority<=n.priority);r.splice(t+1,0,e)}function Xs(r,e){for(let t=r.length-1;t>=0;t--)if(e(r[t]))return t;return-1}var il=function(r,e,t,n){function i(a){return a instanceof t?a:new t(function(c){c(a)})}return new(t||(t=Promise))(function(a,c){function l(p){try{h(n.next(p))}catch(g){c(g)}}function u(p){try{h(n.throw(p))}catch(g){c(g)}}function h(p){p.done?a(p.value):i(p.value).then(l,u)}h((n=n.apply(r,e||[])).next())})};class al{constructor(e){this._semaphore=new nl(1,e)}acquire(){return il(this,arguments,void 0,function*(e=0){const[,t]=yield this._semaphore.acquire(1,e);return t})}runExclusive(e,t=0){return this._semaphore.runExclusive(()=>e(),1,t)}isLocked(){return this._semaphore.isLocked()}waitForUnlock(e=0){return this._semaphore.waitForUnlock(1,e)}release(){this._semaphore.isLocked()&&this._semaphore.release()}cancel(){return this._semaphore.cancel()}}const nr=(r,e,{convertNumericStrings:t=!0}={})=>{const n=!Array.isArray(r);let i=O(r);const a=i[0],c=typeof a;let l;return c==="string"&&t&&!isNaN(parseInt(a))&&"number"in e?(l=e.number,i=i.map(u=>parseInt(u))):l=e[c],{single:n,variant:l,normalized:i,actual:r}},sr=(r,e,t,n)=>{if(n){if(t.length===0)throw new ke(`${r} not found matching ${JSON.stringify(e)}`);if(t.length>1)throw new Ae(`Expected one ${r} matching ${JSON.stringify(e)}, but found ${t.length}`)}},be=r=>s.z.union([s.z.null().transform(()=>[]),r.array()]),ol=s.z.object({leaseholder:s.z.number().optional(),keys:s.z.number().array().optional(),names:s.z.string().array().optional(),search:s.z.string().optional(),rangeKey:s.z.string().optional(),limit:s.z.number().optional(),offset:s.z.number().optional(),dataTypes:z.z.array().optional(),notDataTypes:z.z.array().optional(),virtual:s.z.boolean().optional(),isIndex:s.z.boolean().optional(),internal:s.z.boolean().optional()}),cl=s.z.object({channels:be(Et)}),ye=r=>nr(r,{number:"keys",string:"names"}),Jt=class Jt{constructor(e){o(this,"client");this.client=e}async search(e,t){return await this.execute({search:e,...t})}async retrieve(e,t){const n=ye(e),{variant:i}=n;let{normalized:a}=n;return i==="keys"&&a.indexOf(0)!==-1&&(a=a.filter(c=>c!==0)),a.length===0?[]:await this.execute({[i]:a,...t})}async page(e,t,n){return await this.execute({offset:e,limit:t,...n})}async execute(e){const[t,n]=await this.client.send(Jt.ENDPOINT,e,ol,cl);if(n!=null)throw n;return t.channels}};o(Jt,"ENDPOINT","/channel/retrieve");let mt=Jt;class Kr{constructor(e){o(this,"cache");o(this,"namesToKeys");o(this,"wrapped");this.cache=new Map,this.namesToKeys=new Map,this.wrapped=e}async search(e,t){return await this.wrapped.search(e,t)}async page(e,t,n){return await this.wrapped.page(e,t,n)}async retrieve(e,t){const{normalized:n}=nr(e,{string:"names",number:"keys"}),i=[],a=[];if(n.forEach(l=>{const u=this.get(l);u!=null?i.push(...u):a.push(l)}),a.length===0)return i;const c=await this.wrapped.retrieve(a,t);return this.set(c),i.concat(c)}delete(e){const{variant:t,normalized:n}=ye(e);t==="names"?n.forEach(i=>{const a=this.namesToKeys.get(i);a!=null&&(a.forEach(c=>this.cache.delete(c)),this.namesToKeys.delete(i))}):n.forEach(i=>{const a=this.cache.get(i);a!=null&&(this.cache.delete(i),this.namesToKeys.delete(a.name))})}rename(e,t){e.forEach((n,i)=>{const a=t[i],c=this.cache.get(n);if(c==null)return;this.cache.delete(n);const l=this.namesToKeys.get(c.name);l!=null&&(l.delete(n),l.size===0&&this.namesToKeys.delete(c.name)),c.name=a,this.cache.set(n,c);const u=this.namesToKeys.get(a);u==null?this.namesToKeys.set(a,new Set([n])):u.add(n)})}set(e){e.forEach(t=>{this.cache.set(t.key,t);const n=this.namesToKeys.get(t.name);n==null?this.namesToKeys.set(t.name,new Set([t.key])):n.add(t.key)})}get(e){if(typeof e=="number"){const i=this.cache.get(e);return i==null?void 0:[i]}const t=this.namesToKeys.get(e);if(t==null)return;const n=[];if(t.forEach(i=>{const a=this.cache.get(i);a!=null&&n.push(a)}),n.length!==0)return n}}class Qs{constructor(e,t){o(this,"mu",new al);o(this,"requests",new Map);o(this,"wrapped");o(this,"debouncedRun");this.wrapped=e,this.debouncedRun=yc(()=>{this.run()},t)}async search(e,t){return await this.wrapped.search(e,t)}async page(e,t,n){return await this.wrapped.page(e,t,n)}async retrieve(e){const{normalized:t,variant:n}=ye(e);return n==="names"?await this.wrapped.retrieve(t):await new Promise((a,c)=>{this.mu.runExclusive(()=>{this.requests.set(t,{resolve:a,reject:c}),this.debouncedRun()})})}async run(){await this.mu.runExclusive(async()=>{const e=new Set;this.requests.forEach((t,n)=>n.forEach(i=>e.add(i)));try{const t=await this.wrapped.retrieve(Array.from(e));this.requests.forEach((n,i)=>n.resolve(t.filter(a=>i.includes(a.key))))}catch(t){this.requests.forEach(n=>n.reject(t))}finally{this.requests.clear()}})}}const ei=async(r,e)=>{const{normalized:t}=ye(e),n=await r.retrieve(t),i=[];if(t.forEach(a=>{n.find(c=>c.name===a||c.key===a)==null&&i.push(a)}),i.length>0)throw new ee(`Could not find channels: ${JSON.stringify(i)}`);return n};class Gr{constructor({dataType:e,rate:t,name:n,leaseholder:i=0,key:a=0,isIndex:c=!1,index:l=0,internal:u=!1,virtual:h=!1,frameClient:p,alias:g}){o(this,"_frameClient");o(this,"key");o(this,"name");o(this,"rate");o(this,"dataType");o(this,"leaseholder");o(this,"index");o(this,"isIndex");o(this,"internal");o(this,"alias");o(this,"virtual");this.key=a,this.name=n,this.rate=new er(t??0),this.dataType=new z(e),this.leaseholder=i,this.index=l,this.isIndex=c,this.internal=u,this.alias=g,this.virtual=h,this._frameClient=p??null}get framer(){if(this._frameClient==null)throw new x("cannot read from a channel that has not been created");return this._frameClient}get payload(){return Et.parse({key:this.key,name:this.name,rate:this.rate.valueOf(),dataType:this.dataType.valueOf(),leaseholder:this.leaseholder,index:this.index,isIndex:this.isIndex,internal:this.internal})}get ontologyID(){return new T({type:"channel",key:this.key.toString()})}async read(e){return await this.framer.read(e,this.key)}async write(e,t){return await this.framer.write(e,this.key,t)}}const ll="/channel/retrieve-group",ul=s.z.object({}),hl=s.z.object({group:Ys});let ti=class{constructor(e,t,n,i){o(this,"type","channel");o(this,"frameClient");o(this,"client");o(this,"retriever");o(this,"writer");this.frameClient=e,this.retriever=t,this.client=n,this.writer=i}async create(e,t={}){const{retrieveIfNameExists:n=!1}=t,i=!Array.isArray(e);let a=O(e),c=[];if(n){const l=await this.retriever.retrieve(a.map(h=>h.name)),u=new Set(l.map(h=>h.name));a=a.filter(h=>!u.has(h.name)),c=this.sugar(l)}return c=c.concat(this.sugar(await this.writer.create(a))),i?c[0]:c}async retrieve(e,t){const n=!Array.isArray(e),i=this.sugar(await this.retriever.retrieve(e,t));return sr("channel",e,i,n),n?i[0]:i}async search(e,t){return this.sugar(await this.retriever.search(e,t))}async delete(e){const{normalized:t,variant:n}=ye(e);return n==="keys"?await this.writer.delete({keys:t}):await this.writer.delete({names:t})}async rename(e,t){return await this.writer.rename(O(e),O(t))}newSearcherWithOptions(e){return{type:this.type,search:async t=>await this.search(t,e),retrieve:async t=>await this.retrieve(t,e),page:async(t,n)=>await this.page(t,n,e)}}async page(e,t,n){return this.sugar(await this.retriever.page(e,t,n))}createDebouncedBatchRetriever(e=10){return new Kr(new Qs(new mt(this.client),e))}sugar(e){const{frameClient:t}=this;return e.map(n=>new Gr({...n,frameClient:t}))}async retrieveGroup(){const e=await w(this.client,ll,{},ul,hl);return new qs(e.group.name,e.group.key)}};const yl=s.z.object({channels:Js.array()}),dl=s.z.object({channels:Et.array()}),fl=s.z.object({keys:we.array().optional(),names:s.z.string().array().optional()}),pl=s.z.object({}),gl=s.z.object({keys:we.array(),names:s.z.string().array()}),ml=s.z.object({}),wl="/channel/create",bl="/channel/delete",vl="/channel/rename";let ri=class{constructor(e,t){o(this,"client");o(this,"cache");this.client=e,this.cache=t}async create(e){const{channels:t}=await w(this.client,wl,{channels:e},yl,dl);return this.cache.set(t),t}async delete(e){await w(this.client,bl,e,fl,pl),e.keys!=null&&this.cache.delete(e.keys),e.names!=null&&this.cache.delete(e.names)}async rename(e,t){await w(this.client,vl,{keys:e,names:t},gl,ml),this.cache.rename(e,t)}};const Tl=Object.freeze(Object.defineProperty({__proto__:null,CacheRetriever:Kr,Channel:Gr,ChannelOntologyType:Hs,Client:ti,ClusterRetriever:mt,DebouncedBatchRetriever:Qs,Writer:ri,analyzeChannelParams:ye,keyZ:we,newPayload:Js,ontologyID:el,payload:Et,retrieveRequired:ei},Symbol.toStringTag,{value:"Module"})),Jr=s.z.string().uuid(),Hr=s.z.object({key:Jr,subjects:J.array(),objects:J.array(),actions:s.z.string().array()}),Ol=Hr.extend({key:Jr.optional()}),zl="/access/policy/create",El="/access/policy/delete",Sl="/access/policy/retrieve",Nl=s.z.object({policies:Ol.array()}),Il=s.z.object({policies:Hr.array()}),kl=s.z.object({keys:Jr.array()}),Al=s.z.object({}),$l=s.z.object({subject:J}),Rl=s.z.object({policies:Hr.array().optional().default([])});let Cl=class{constructor(e){o(this,"client");this.client=e}async create(e){const t=!Array.isArray(e),{policies:n}=await w(this.client,zl,{policies:O(e)},Nl,Il);return t?n[0]:n}async retrieve(e){const{policies:t}=await w(this.client,Sl,{subject:e},$l,Rl);return t}async delete(e){await w(this.client,El,{keys:O(e)},kl,Al)}};const xl="/user/register";let Pl=class{constructor(e){o(this,"client");this.client=e}async register(e,t){const{user:n}=await w(this.client,xl,{username:e,password:t},ni,si);return n}};s.z.string().uuid();const Dl=s.z.object({key:s.z.string(),username:s.z.string()}),ni=s.z.object({username:s.z.string(),password:s.z.string()}),si=s.z.object({token:s.z.string(),user:Dl}),Wn="/auth/login",jl=3;let Ml=class{constructor(e,t){o(this,"token");o(this,"client");o(this,"credentials");o(this,"authenticating");o(this,"authenticated");o(this,"user");o(this,"retryCount");this.client=e,this.authenticated=!1,this.credentials=t,this.retryCount=0}middleware(){const e=async(t,n)=>{if(!this.authenticated&&!t.target.endsWith(Wn)){this.authenticating==null&&(this.authenticating=new Promise((l,u)=>{this.client.send(Wn,this.credentials,ni,si).then(([h,p])=>{if(p!=null)return l(p);this.token=h==null?void 0:h.token,this.user=h==null?void 0:h.user,this.authenticated=!0,l(null)}).catch(u)}));const c=await this.authenticating;if(c!=null)return[t,c]}t.params.Authorization=`Bearer ${this.token}`;const[i,a]=await n(t);return pt.matches(a)&&this.retryCount<jl?(this.authenticated=!1,this.authenticating=void 0,this.retryCount+=1,e(t,n)):(this.retryCount=0,[i,a])};return e}};const Zl=["disconnected","connecting","connected","failed"],ii=s.z.enum(Zl),ai=s.z.object({status:ii,error:s.z.instanceof(Error).optional(),message:s.z.string().optional(),clusterKey:s.z.string(),clientVersion:s.z.string(),clientServerCompatible:s.z.boolean(),nodeVersion:s.z.string().optional()}),Ul=s.z.object({clusterKey:s.z.string(),nodeVersion:s.z.string().optional()}),_n={clusterKey:"",status:"disconnected",error:void 0,message:"Disconnected",clientServerCompatible:!1,clientVersion:"0.28.0"},Vn=(r,e,t)=>{const n=t?"cluster":"client";return`Synnax cluster node version ${r!=null?r+" ":""}is too ${t?"old":"new"} for client version ${e}.
|
|
24
|
+
This may cause compatibility issues. We recommend updating the ${n}. For more information, see
|
|
25
|
+
https://docs.synnaxlabs.com/reference/typescript-client/troubleshooting#old-${n}-version`},Ve=class Ve{constructor(e,t=S.seconds(30),n,i){o(this,"_state");o(this,"pollFrequency",S.seconds(30));o(this,"client");o(this,"name");o(this,"interval");o(this,"clientVersion");o(this,"onChangeHandlers",[]);o(this,"versionWarned",!1);this._state={..._n},this.client=e,this.pollFrequency=t,this.clientVersion=n,this.name=i,this.check(),this.startChecking()}stopChecking(){this.interval!=null&&clearInterval(this.interval)}async check(){var t;const e=this._state.status;try{const[n,i]=await this.client.send(Ve.ENDPOINT,{},s.z.object({}),Ul);if(i!=null)throw i;const a=n.nodeVersion,c=this.clientVersion,l=this.versionWarned;a==null?(this._state.clientServerCompatible=!1,l||(console.warn(Vn(null,c,!0)),this.versionWarned=!0)):Mn.versionsEqual(c,a,{checkMajor:!0,checkMinor:!0,checkPatch:!1})?this._state.clientServerCompatible=!0:(this._state.clientServerCompatible=!1,l||(console.warn(Vn(a,c,Mn.semVerNewer(c,a))),this.versionWarned=!0)),this._state.status="connected",this._state.message=`Connected to ${this.name??"cluster"}`,this._state.clusterKey=n.clusterKey,this._state.nodeVersion=n.nodeVersion,this._state.clientVersion=this.clientVersion}catch(n){this._state.status="failed",this._state.error=n,this._state.message=(t=this.state.error)==null?void 0:t.message}return this.onChangeHandlers.length>0&&e!==this._state.status&&this.onChangeHandlers.forEach(n=>n(this.state)),this.state}get state(){return{...this._state}}onChange(e){this.onChangeHandlers.push(e)}startChecking(){this.interval=setInterval(()=>{this.check()},this.pollFrequency.milliseconds)}};o(Ve,"ENDPOINT","/connectivity/check"),o(Ve,"DEFAULT",_n),o(Ve,"connectionStateZ",ai);let wt=Ve;const Bl=Object.freeze(Object.defineProperty({__proto__:null,Checker:wt,state:ai,status:ii},Symbol.toStringTag,{value:"Module"})),Ll=s.z.object({keys:we.array().optional(),bounds:W.z,names:s.z.string().array().optional()}),ql=s.z.object({}),Yl="/frame/delete";class Wl{constructor(e){o(this,"client");this.client=e}async delete(e){await w(this.client,Yl,e,Ll,ql)}}const Fn=r=>{const e=O(r);return e.length===0?null:typeof e[0]=="number"||!isNaN(parseInt(e[0]))?"key":"name"},Kn=(r,e)=>{const t=O(r);if(t.length===e.length)return;const n=Fn(r);throw Fn===null?new x("[Frame] - channel keys or names must be provided when constructing a frame."):new x(`[Frame] - ${n}s and series must be the same length.
|
|
26
|
+
Got ${t.length} ${n}s and ${e.length} series.`)};class U{constructor(e=[],t=[]){o(this,"columns",[]);o(this,"series",[]);if(e instanceof U){this.columns=e.columns,this.series=e.series;return}if(e instanceof Map){e.forEach((i,a)=>this.push(a,...O(i)));return}if(typeof e=="object"&&!Array.isArray(e)){if("keys"in e&&"series"in e){const i=e,a=i.series.map(c=>ci(c));Kn(i.keys,a),i.keys.forEach((c,l)=>this.push(c,a[l]))}else Object.entries(e).forEach(([i,a])=>{const c=parseInt(i);if(isNaN(c))this.push(i,...O(a));else return this.push(c,...O(a))});return}if(Array.isArray(e)||["string","number"].includes(typeof e)){const i=O(t),a=O(e);Kn(a,i),i.forEach((c,l)=>this.push(a[l],c));return}throw new x(`[Frame] - invalid frame construction parameters. data parameter ust be a frame
|
|
27
|
+
payload, a list of lazy series, a lazy array, a map, or a record keyed by channel
|
|
28
|
+
name. keys parameter must be a set of channel keys or channel names.`)}get colType(){return this.columns.length===0?null:typeof this.columns[0]=="string"?"name":"key"}get keys(){if(this.colType==="name")throw new pe("colType is not key");return this.columns??[]}get uniqueKeys(){return jn(this.keys)}get names(){if(this.colType==="key")throw new pe("colType is not name");return this.columns??[]}get uniqueNames(){return jn(this.names)}get uniqueColumns(){return this.colType==="key"?this.uniqueKeys:this.uniqueNames}toPayload(){return{series:this.series.map(e=>li(e)),keys:this.keys}}get isVertical(){return this.uniqueColumns.length===this.columns.length}get isHorizontal(){return this.uniqueColumns.length===1}get isSquare(){return this.isHorizontal&&this.isVertical}get isWeaklyAligned(){if(this.columns.length<=1)return!0;const e=this.timeRanges;return e.every(t=>t.equals(e[0]))}timeRange(e){if(e==null){if(this.columns.length===0)return W.ZERO;const n=E.min(...this.series.map(a=>a.timeRange.start)),i=E.max(...this.series.map(a=>a.timeRange.end));return new W(n,i)}const t=this.get(e);return t==null?W.ZERO:t.timeRange}latest(){return this.at(-1)}get timeRanges(){return this.uniqueColumns.map(e=>this.timeRange(e))}get(e){return Array.isArray(e)?this.filter(t=>e.includes(t)):new js(this.series.filter((t,n)=>this.columns[n]===e))}push(e,...t){if(e instanceof U){if(this.colType!==null&&e.colType!==this.colType)throw new x("keyVariant must match");this.series.push(...e.series),this.columns.push(...e.columns)}else{if(this.series.push(...t),typeof e=="string"&&this.colType==="key")throw new x("keyVariant must match");if(typeof e!="string"&&this.colType==="name")throw new x("keyVariant must match");this.columns.push(...Array.from({length:t.length},()=>e))}}concat(e){return new U([...this.columns,...e.columns],[...this.series,...e.series])}has(e){return typeof e=="string"&&this.colType==="key"||typeof e=="number"&&this.colType==="name"?!1:this.columns.includes(e)}map(e){const t=new U;return this.forEach((n,i,a)=>t.push(...e(n,i,a))),t}forEach(e){this.columns.forEach((t,n)=>{const i=this.series[n];e(t,i,n)})}at(e,t=!1){const n={};return this.uniqueColumns.forEach(i=>{n[i]=this.get(i).at(e,t)}),n}filter(e){const t=new U;return this.columns.forEach((n,i)=>{const a=this.series[i];e(n,a,i)&&t.push(n,a)}),t}get byteLength(){return new ft(this.series.reduce((e,t)=>e.add(t.byteLength),ft.ZERO))}get length(){return this.series.reduce((e,t)=>e+t.length,0)}}const oi=s.z.object({timeRange:W.z.optional(),alignment:s.z.bigint().or(s.z.string().transform(r=>BigInt(r))).optional(),dataType:z.z,data:s.z.string().transform(r=>new Uint8Array(atob(r).split("").map(e=>e.charCodeAt(0))).buffer)}),ir=s.z.object({keys:s.z.union([s.z.null().transform(()=>[]),s.z.number().array().optional().default([])]),series:s.z.union([s.z.null().transform(()=>[]),oi.array().optional().default([])])}),ci=r=>{const{dataType:e,data:t,timeRange:n,alignment:i}=r;return new K({data:t,dataType:e,timeRange:n,glBufferUsage:"static",alignment:i})},li=r=>({timeRange:r._timeRange,dataType:r.dataType,data:new Uint8Array(r.data.buffer),alignment:r.alignment});class ar{constructor(e){o(this,"adapter");o(this,"retriever");o(this,"keys");this.retriever=e,this.adapter=null,this.keys=[]}static async open(e,t){const n=new ar(e);return await n.update(t),n}async update(e){const{variant:t,normalized:n}=ye(e);if(t==="keys"){this.adapter=null,this.keys=n;return}const i=await this.retriever.retrieve(n),a=new Map;this.adapter=a,n.forEach(c=>{const l=i.find(u=>u.name===c);if(l==null)throw new Error(`Channel ${c} not found`);a.set(l.key,l.name)}),this.keys=Array.from(this.adapter.keys())}adapt(e){if(this.adapter==null)return e;const t=this.adapter;return e.map((n,i)=>{if(typeof n=="number"){const a=t.get(n);if(a==null)throw new Error(`Channel ${n} not found`);return[a,i]}return[n,i]})}}class Xr{constructor(e){o(this,"adapter");o(this,"retriever");o(this,"keys");this.retriever=e,this.adapter=null,this.keys=[]}static async open(e,t){const n=new Xr(e);return await n.update(t),n}async adaptObjectKeys(e){const t={};for(const[n,i]of Object.entries(e))t[await this.adaptToKey(n)]=i;return t}async update(e){const t=await ei(this.retriever,e);this.adapter=new Map(t.map(n=>[n.name,n.key])),this.keys=t.map(n=>n.key)}async fetchChannel(e){const t=await this.retriever.retrieve(e);if(t.length===0)throw new Error(`Channel ${e} not found`);return t[0]}async adaptToKey(e){return typeof e=="number"?e:(await this.fetchChannel(e)).key}async adapt(e,t){if(typeof e=="string"||typeof e=="number"){if(t==null)throw new x(`
|
|
25
29
|
Received a single channel name or key but no series.
|
|
26
|
-
`);if(Array.isArray(t)){if(t.some(u=>u instanceof
|
|
30
|
+
`);if(Array.isArray(t)){if(t.some(u=>u instanceof K||Array.isArray(u)))throw new x(`
|
|
27
31
|
Received a single channel name or key but multiple series.
|
|
28
|
-
`);t=t}const c=await this.fetchChannel(e),l=new
|
|
32
|
+
`);t=t}const c=await this.fetchChannel(e),l=new K({data:t,dataType:c.dataType});return new U(c.key,l)}if(Array.isArray(e)){if(t==null)throw new x(`
|
|
29
33
|
Received an array of channel names or keys but no series.
|
|
30
|
-
`);if(!Array.isArray(t))throw new
|
|
34
|
+
`);if(!Array.isArray(t))throw new x(`
|
|
31
35
|
Received an array of channel names or keys but no array of series.
|
|
32
|
-
`);const c=[],l=[];for(let u=0;u<e.length;u++){const
|
|
36
|
+
`);const c=[],l=[];for(let u=0;u<e.length;u++){const h=await this.fetchChannel(e[u]);if(u>=t.length)throw new x(`
|
|
33
37
|
Received an array of channel names or keys but not enough series.
|
|
34
|
-
`);const p=new
|
|
38
|
+
`);const p=new K({data:t[u],dataType:h.dataType});c.push(h.key),l.push(p)}return new U(c,l)}if(e instanceof U||e instanceof Map){const c=new U(e);if(this.adapter==null)return c;let l=[];return l=c.columns.map(u=>{var p;const h=typeof u=="string"?(p=this.adapter)==null?void 0:p.get(u):u;if(h==null)throw new x(`
|
|
35
39
|
Channel ${u} was not provided in the list of channels when opening the writer
|
|
36
|
-
`);return
|
|
37
|
-
Please report this error to the Synnax team. ${JSON.stringify(e)}`),t!=null){if(ge.matches(t))return;throw t}}}closeSend(){this.stream.closeSend()}send(e){const t=this.stream.send(e);if(t!=null)throw t}}const jr=new E(-1);var Kr=(r=>(r[r.Open=0]="Open",r[r.Next=1]="Next",r[r.Prev=2]="Prev",r[r.SeekFirst=3]="SeekFirst",r[r.SeekLast=4]="SeekLast",r[r.SeekLE=5]="SeekLE",r[r.SeekGE=6]="SeekGE",r[r.Valid=7]="Valid",r[r.Error=8]="Error",r))(Kr||{}),ei=(r=>(r[r.None=0]="None",r[r.Ack=1]="Ack",r[r.Data=2]="Data",r))(ei||{});const Il=s.z.object({command:s.z.nativeEnum(Kr),span:E.z.optional(),bounds:G.z.optional(),stamp:O.z.optional(),keys:s.z.number().array().optional(),chunkSize:s.z.number().optional()}),kl=s.z.object({variant:s.z.nativeEnum(ei),ack:s.z.boolean(),command:s.z.nativeEnum(Kr),error:Tt.optional().nullable(),frame:Ht.optional()}),dt=class dt{constructor(e,t){o(this,"stream");o(this,"adapter");o(this,"value");this.stream=new Gr("Iterator",e),this.value=new U,this.adapter=t}static async _open(e,t,n,i,a={}){const c=await Xt.open(n,t),l=await i.stream(dt.ENDPOINT,Il,kl),u=new dt(l,c);return await u.execute({command:0,keys:c.keys,bounds:new G(e),chunkSize:a.chunkSize??1e5}),u}async next(e=jr){return await this.execute({command:1,span:new E(e)})}async prev(e=jr){return await this.execute({command:2,span:new E(e)})}async seekFirst(){return await this.execute({command:3})}async seekLast(){return await this.execute({command:4})}async seekLE(e){return await this.execute({command:5,stamp:new O(e)})}async seekGE(e){return await this.execute({command:6,stamp:new O(e)})}async valid(){return await this.execute({command:7})}async close(){await this.stream.closeAndAck()}[Symbol.asyncIterator](){return new Al(this)}async execute(e){for(this.stream.send(e),this.value=new U;;){const t=await this.stream.receive();if(t.variant===1)return t.ack;this.value.push(this.adapter.adapt(new U(t.frame)))}}};o(dt,"ENDPOINT","/frame/iterate");let qt=dt;class Al{constructor(e){o(this,"iter");o(this,"open",!1);this.iter=e}async next(){try{let e=!0;return this.open||(await this.iter.seekFirst()||(e=!1),this.open=!0),await this.iter.next()||(e=!1),e||await this.iter.close(),{done:!e,value:this.iter.value}}catch(e){throw await this.iter.close(),e}}}const $l=s.z.object({start:O.z.optional(),keys:s.z.number().array()}),Rl=s.z.object({frame:Ht,error:Tt.optional().nullable()}),xl="/frame/stream";class Qt{constructor(e,t){o(this,"stream");o(this,"adapter");this.stream=new Gr("Streamer",e),this.adapter=t}get keys(){return this.adapter.keys}static async _open(e,t,{channels:n,from:i}){const a=await Xt.open(e,n),c=await t.stream(xl,$l,Rl),l=new Qt(c,a);return c.send({start:new O(i),keys:a.keys}),l}async next(){try{return{done:!1,value:await this.read()}}catch(e){if(ge.matches(e))return{done:!0,value:void 0};throw e}}async read(){return this.adapter.adapt(new U((await this.stream.receive()).frame))}async update(e){await this.adapter.update(e),this.stream.send({keys:this.adapter.keys})}close(){this.stream.closeSend()}[Symbol.asyncIterator](){return this}}class zt extends Ar.Observer{constructor(t,n){super(n);o(this,"streamer");o(this,"closePromise");this.streamer=t,this.closePromise=this.stream()}async close(){this.streamer.close(),await this.closePromise}async stream(){for await(const t of this.streamer)this.notify(t)}}var Vr=(r=>(r[r.Open=0]="Open",r[r.Write=1]="Write",r[r.Commit=2]="Commit",r[r.Error=3]="Error",r[r.SetAuthority=4]="SetAuthority",r))(Vr||{}),bt=(r=>(r[r.PersistStream=1]="PersistStream",r[r.Persist=2]="Persist",r[r.Stream=3]="Stream",r))(bt||{});const Cl=r=>{switch(r){case"persist":return 2;case"stream":return 3;case"persistStream":return 1;default:return r}},jl=new E(-1),Pl=s.z.object({start:O.z.optional(),controlSubject:_e.subjectZ.optional(),keys:s.z.number().array().optional(),authorities:_e.Authority.z.array().optional(),mode:s.z.nativeEnum(bt).optional(),errOnUnauthorized:s.z.boolean().optional(),enableAutoCommit:s.z.boolean().optional(),autoIndexPersistInterval:E.z.optional()}),Dl=s.z.object({command:s.z.nativeEnum(Vr),config:Pl.optional(),frame:Ht.optional()}),Ml=s.z.object({ack:s.z.boolean(),command:s.z.nativeEnum(Vr),error:Tt.optional().nullable()});var fe;let ti=(fe=class{constructor(e,t){o(this,"stream");o(this,"adapter");this.stream=new Gr("Writer",e),this.adapter=t}static async _open(e,t,{channels:n,start:i=O.now(),authorities:a=_e.Authority.Absolute,controlSubject:c,mode:l=1,errOnUnauthorized:u=!1,enableAutoCommit:f=!1,autoIndexPersistInterval:p=E.SECOND}){const g=await _r.open(e,n),P=await t.stream(fe.ENDPOINT,Dl,Ml),j=new fe(P,g);return await j.execute({command:0,config:{start:new O(i),keys:g.keys,controlSubject:c,authorities:T(a),mode:Cl(l),errOnUnauthorized:u,enableAutoCommit:f,autoIndexPersistInterval:p}}),j}async write(e,t){const n=await this.adapter.adapt(e,t);return this.stream.send({command:1,frame:n.toPayload()}),!0}async setAuthority(e,t){let n={keys:[],authorities:[]};if(typeof e=="number"&&t==null)n={keys:[],authorities:[e]};else{let a;typeof e=="string"||typeof e=="number"?a={[e]:t}:a=e,a=await this.adapter.adaptObjectKeys(a),n={keys:Object.keys(a).map(c=>Number(c)),authorities:Object.values(a)}}return(await this.execute({command:4,config:n})).ack}async commit(){return this.errorAccumulated?!1:(await this.execute({command:2})).ack}async error(){this.stream.send({command:3});const e=await this.execute({command:3});return e.error!=null?Zr(e.error):null}async close(){await this.stream.closeAndAck()}async execute(e){for(this.stream.send(e);;){const t=await this.stream.receive();if(t.command===e.command)return t;console.warn("writer received unexpected response",t)}}get errorAccumulated(){return this.stream.received()}},o(fe,"ENDPOINT","/frame/write"),fe),ri=class{constructor(e,t,n){o(this,"streamClient");o(this,"retriever");o(this,"deleter");this.streamClient=e,this.retriever=n,this.deleter=new Nl(t)}async openIterator(e,t,n){return await qt._open(e,t,this.retriever,this.streamClient,n)}async openWriter(e){return(Array.isArray(e)||typeof e!="object")&&(e={channels:e}),await ti._open(this.retriever,this.streamClient,e)}async openStreamer(e){return(Array.isArray(e)||typeof e!="object")&&(e={channels:e}),await Qt._open(this.retriever,this.streamClient,e)}async write(e,t,n){if(n==null){const a=t,c=await this.openWriter({start:e,channels:Object.keys(a),mode:bt.Persist});try{await c.write(a),await c.commit()}finally{await c.close()}return}const i=await this.openWriter({start:e,channels:t,mode:bt.Persist,errOnUnauthorized:!0,enableAutoCommit:!0,autoIndexPersistInterval:E.MAX});try{await i.write(t,n)}finally{await i.close()}}async read(e,t){const{single:n}=ye(t),i=await this.readFrame(e,t);return n?i.get(t):i}async readFrame(e,t){const n=await this.openIterator(e,t),i=new U;try{for await(const a of n)i.push(a)}finally{await n.close()}return i}async delete(e,t){const{normalized:n,variant:i}=ye(e);return i==="keys"?await this.deleter.delete({keys:n,bounds:t}):await this.deleter.delete({names:n,bounds:t})}};const Zl=Object.freeze(Object.defineProperty({__proto__:null,ALWAYS_INDEX_PERSIST_ON_AUTO_COMMIT:jl,AUTO_SPAN:jr,Client:ri,Frame:U,Iterator:qt,ObservableStreamer:zt,Streamer:Qt,Writer:ti,WriterMode:bt,frameZ:Ht,series:Hs,seriesFromPayload:Xs,seriesToPayload:Qs},Symbol.toStringTag,{value:"Module"})),Ul=_e.Authority,Bl=_e.stateZ(s.z.number()),Ll=r=>{var e,t;return r.to==null?`${(e=r.from)==null?void 0:e.resource} - ${(t=r.from)==null?void 0:t.subject.name} -> released`:r.from==null?`${r.to.resource} - released -> ${r.to.subject.name} (${r.to.authority.toString()})`:`${r.to.resource} - ${r.from.subject.name} -> ${r.to.subject.name} (${r.to.authority.toString()})`};class ni extends zt{constructor(t){super(t,n=>{const i=this.codec.decode(n.series[0].buffer);return this.merge(i),[i.transfers,!0]});o(this,"states");o(this,"codec");this.states=new Map,this.codec=new Ke.JSONCodec}subjects(){const t=new Map;return this.states.forEach(n=>t.set(n.subject.key,n.subject)),Array.from(t.values())}merge(t){t.transfers.forEach(n=>{n.from==null&&n.to==null&&console.warn("Invalid transfer: ",n),n.to==null?this.states.delete(n.from.resource):this.states.set(n.to.resource,n.to)})}}const ql="sy_node_1_control";let si=class{constructor(e){o(this,"framer");this.framer=e}async openStateTracker(){const e=await this.framer.openStreamer(ql);return new ni(e)}};const Yl=Object.freeze(Object.defineProperty({__proto__:null,Authority:Ul,Client:si,StateTracker:ni,stateZ:Bl,transferString:Ll},Symbol.toStringTag,{value:"Module"}));let ii=class{constructor(e,t,n){o(this,"tasks");o(this,"racks");o(this,"devices");this.tasks=e,this.racks=t,this.devices=n}};const Wl=Object.freeze(Object.defineProperty({__proto__:null,Client:ii},Symbol.toStringTag,{value:"Module"})),Je=s.z.number(),er=s.z.object({key:Je,name:s.z.string()}),ai=er.partial({key:!0}),oi="rack",Fl=r=>new x({type:oi,key:r.toString()}),tr=s.z.string(),Et=s.z.object({key:tr,rack:Je,name:s.z.string(),make:s.z.string(),model:s.z.string(),location:s.z.string(),configured:s.z.boolean().optional(),properties:s.z.record(s.z.unknown()).or(s.z.string().transform(r=>r===""?{}:Ke.JSON_CODEC.decodeString(r)))}),ci=Et.extend({properties:s.z.unknown().transform(r=>Ke.JSON_CODEC.encodeString(r))}),li="device",_l=r=>new x({type:li,key:r.toString()}),He=async(r,e,t,n)=>{const i=await r.openStreamer([e,t]),a=c=>{const l=[];return t!=null&&l.push(...c.get(t).series.flatMap(u=>n("delete",u))),e!=null&&l.push(...c.get(e).series.flatMap(u=>n("set",u))),[l,l.length>0]};return new zt(i,a)},Gl=Object.freeze(Object.defineProperty({__proto__:null,openObservable:He},Symbol.toStringTag,{value:"Module"})),Kl="sy_device_set",Vl="sy_device_delete",fr="/hardware/device/retrieve",Jl="/hardware/device/create",Hl="/hardware/device/delete",Xl=s.z.object({devices:ci.array()}),Ql=s.z.object({devices:Et.array()}),eu=s.z.object({keys:tr.array()}),tu=s.z.object({}),pr=s.z.object({search:s.z.string().optional(),limit:s.z.number().optional(),offset:s.z.number().optional(),keys:tr.array().optional(),names:s.z.string().array().optional(),makes:s.z.string().array().optional()}),gr=s.z.object({devices:Ve(Et)});let ui=class{constructor(e,t){o(this,"type","device");o(this,"client");o(this,"frameClient");this.client=e,this.frameClient=t}async retrieve(e,t){const n=!Array.isArray(e),i=await w(this.client,fr,{keys:T(e),...t},pr,gr);return Jt("Device",e,i.devices,n),n?i.devices[0]:i.devices}async search(e,t){return(await w(this.client,fr,{search:e,...t},pr,gr)).devices}async page(e,t,n){return(await w(this.client,fr,{offset:e,limit:t,...n},pr,gr)).devices}async create(e){const t=!Array.isArray(e),n=await w(this.client,Jl,{devices:T(e)},Xl,Ql);return t?n.devices[0]:n.devices}async delete(e){await w(this.client,Hl,{keys:T(e)},eu,tu)}async openDeviceTracker(){return await He(this.frameClient,Kl,Vl,ru)}newSearcherWithOptions(e){return{type:this.type,search:async t=>await this.search(t,e),retrieve:async t=>await this.retrieve(t,e),page:async(t,n)=>await this.page(t,n,e)}}};const ru=(r,e)=>r==="delete"?e.toStrings().map(t=>({variant:r,key:t,value:void 0})):e.parseJSON(Et).map(t=>({variant:r,key:t.key,value:t})),nu=Object.freeze(Object.defineProperty({__proto__:null,Client:ui,DeviceOntologyType:li,deviceKeyZ:tr,deviceZ:Et,newDeviceZ:ci,ontologyID:_l},Symbol.toStringTag,{value:"Module"})),mr="/hardware/rack/retrieve",su="/hardware/rack/create",iu="/hardware/rack/delete",wr=s.z.object({keys:Je.array().optional(),names:s.z.string().array().optional(),search:s.z.string().optional(),offset:s.z.number().optional(),limit:s.z.number().optional()}),br=s.z.object({racks:Ve(er)}),au=s.z.object({racks:ai.array()}),ou=s.z.object({racks:er.array()}),cu=s.z.object({keys:Je.array()}),lu=s.z.object({});let hi=class{constructor(e,t,n){o(this,"type","rack");o(this,"client");o(this,"frameClient");o(this,"tasks");this.client=e,this.frameClient=t,this.tasks=n}async delete(e){await w(this.client,iu,{keys:T(e)},cu,lu)}async create(e){const t=!Array.isArray(e),n=await w(this.client,su,{racks:T(e)},au,ou),i=this.sugar(n.racks);return t?i[0]:i}async search(e){const t=await w(this.client,mr,{search:e},wr,br);return this.sugar(t.racks)}async page(e,t){const n=await w(this.client,mr,{offset:e,limit:t},wr,br);return this.sugar(n.racks)}async retrieve(e){const{variant:t,normalized:n,single:i}=Vt(e,{string:"names",number:"keys"}),a=await w(this.client,mr,{[t]:n},wr,br),c=this.sugar(a.racks);return Jt("Rack",e,c,i),i?c[0]:c}sugar(e){return e.map(({key:t,name:n})=>new yi(t,n,this.tasks))}};class yi{constructor(e,t,n){o(this,"key");o(this,"name");o(this,"tasks");this.key=e,this.name=t,this.tasks=n}async listTasks(){return await this.tasks.retrieve(this.key)}async retrieveTaskByName(e){return await this.tasks.retrieveByName(e,this.key)}async createTask(e){return e.key=((BigInt(this.key)<<32n)+(BigInt(e.key??0)&0xffffffffn)).toString(),await this.tasks.create(e)}async deleteTask(e){await this.tasks.delete([e])}}const uu=Object.freeze(Object.defineProperty({__proto__:null,Client:hi,Rack:yi,RackOntologyType:oi,newRackZ:ai,ontologyID:Fl,rackKeyZ:Je,rackZ:er},Symbol.toStringTag,{value:"Module"})),Xe=s.z.union([s.z.string(),s.z.bigint().transform(r=>r.toString()),s.z.number().transform(r=>r.toString())]),vt=s.z.object({task:Xe,variant:s.z.string(),key:s.z.string().optional(),details:s.z.record(s.z.unknown()).or(s.z.string().transform(r=>r===""?{}:JSON.parse(r))).or(s.z.array(s.z.unknown())).or(s.z.null())}),rr=s.z.object({key:Xe,name:s.z.string(),type:s.z.string(),internal:s.z.boolean().optional(),config:s.z.record(s.z.unknown()).or(s.z.string().transform(r=>r===""?{}:Ke.JSON_CODEC.decodeString(r))),state:vt.optional().nullable()}),di=rr.omit({key:!0}).extend({key:Xe.transform(r=>r.toString()).optional(),config:s.z.unknown().transform(r=>Ke.JSON_CODEC.encodeString(r))}),hu=s.z.object({task:Xe,type:s.z.string(),key:s.z.string(),args:s.z.record(s.z.unknown()).or(s.z.string().transform(r=>r===""?{}:JSON.parse(r)))}),fi="task",yu=r=>new x({type:fi,key:r.toString()}),yt="sy_task_state",Un="sy_task_cmd";class pi{constructor(e,t,n,i,a,c=!1,l){o(this,"key");o(this,"name");o(this,"internal");o(this,"type");o(this,"config");o(this,"state");o(this,"frameClient");this.key=e,this.name=t,this.type=n,this.config=i,this.internal=c,l!==null&&(this.state=l),this.frameClient=a}get payload(){return{key:this.key,name:this.name,type:this.type,config:this.config,state:this.state,internal:this.internal}}async executeCommand(e,t){const n=await this.frameClient.openWriter(Un),i=Fo.id();return await n.write(Un,[{task:this.key,type:e,key:i,args:t}]),await n.close(),i}async executeCommandSync(e,t,n){const i=await this.frameClient.openStreamer(yt),a=await this.executeCommand(e,t);let c;const l=new Promise(u=>setTimeout(()=>u(!1),new E(n).milliseconds));for(;;){const u=await Promise.any([i.read(),l]);if(u===!1)throw new Error("Command timed out");const f=vt.safeParse(u.at(-1).sy_task_state);if(f.success){if(c=f.data,c.key===a)break}else console.error(f.error)}return i.close(),c}async openStateObserver(){return new zt(await this.frameClient.openStreamer(yt),e=>{const t=e.get(yt);if(t.length===0)return[null,!1];const n=vt.safeParse(t.at(-1));if(!n.success)return[null,!1];const i=n.data;return i.task!==this.key?[null,!1]:[i,!0]})}}const du=s.z.object({rack:Je.optional(),keys:s.z.string().array().optional(),names:s.z.string().array().optional(),offset:s.z.number().optional(),limit:s.z.number().optional(),includeState:s.z.boolean().optional()}),fu=s.z.object({tasks:Ve(rr)}),pu="/hardware/task/retrieve",gu="/hardware/task/create",mu="/hardware/task/delete",wu=s.z.object({tasks:di.array()}),bu=s.z.object({tasks:rr.array()}),vu=s.z.object({keys:Xe.array()}),Tu=s.z.object({});let gi=class{constructor(e,t){o(this,"type","task");o(this,"client");o(this,"frameClient");this.client=e,this.frameClient=t}async create(e){const t=!Array.isArray(e),n=await w(this.client,gu,{tasks:T(e)},wu,bu),i=this.sugar(n.tasks);return t?i[0]:i}async delete(e){await w(this.client,mu,{keys:T(e)},vu,Tu)}async search(e){return await this.execRetrieve({keys:[e]})}async page(e,t){return await this.execRetrieve({offset:e,limit:t})}async list(e={}){return this.sugar(await this.execRetrieve(e))}async retrieve(e,t){const{single:n,normalized:i,variant:a}=Vt(e,{number:"rack",string:"keys"},{convertNumericStrings:!1}),c={...t};a==="rack"?c.rack=e:c.keys=i;const l=await this.execRetrieve(c),u=this.sugar(l);return n&&a!=="rack"?u[0]:u}async retrieveByName(e,t){const n=await this.execRetrieve({names:[e],rack:t});return Jt("Task",e,n,!0),this.sugar(n)[0]}async execRetrieve(e){return(await w(this.client,pu,e,du,fu)).tasks}sugar(e){return e.map(({key:t,name:n,type:i,config:a,state:c,internal:l})=>new pi(t,n,i,a,this.frameClient,l,c))}async openTracker(){return await He(this.frameClient,"sy_task_set","sy_task_delete",(e,t)=>Array.from(t).map(n=>({variant:e,key:n.toString(),value:n.toString()})))}async openStateObserver(){return new zt(await this.frameClient.openStreamer(yt),e=>{const t=e.get(yt);if(t.length===0)return[null,!1];const n=vt.safeParse(t.at(-1));return n.success?[n.data,!0]:[null,!1]})}};const Ou=Object.freeze(Object.defineProperty({__proto__:null,Client:gi,DeviceOntologyType:fi,Task:pi,commandZ:hu,newTaskZ:di,ontologyID:yu,stateZ:vt,taskKeyZ:Xe,taskZ:rr},Symbol.toStringTag,{value:"Module"})),Qe=s.z.string().uuid(),St=s.z.object({key:Qe,name:s.z.string().min(1),color:s.z.string()}),mi="label",zu=r=>new x({type:mi,key:r}),Eu=s.z.object({keys:Qe.array().optional(),for:H.optional(),search:s.z.string().optional(),offset:s.z.number().optional(),limit:s.z.number().optional()}),Su=s.z.object({labels:St.array().optional().default([])});var ze;let wi=(ze=class{constructor(e){o(this,"client");this.client=e}async retrieve(e){const t=T(e);return await this.execute({keys:t})}async retrieveFor(e){return await this.execute({for:e})}async search(e){return await this.execute({search:e})}async page(e,t){return await this.execute({offset:e,limit:t})}async execute(e){const[t,n]=await this.client.send(ze.ENDPOINT,e,Eu,Su);if(n!=null)throw n;return t.labels}},o(ze,"ENDPOINT","/label/retrieve"),ze);const bi=St.extend({key:Qe.optional()}),Nu=s.z.object({labels:bi.array()}),Iu=s.z.object({labels:St.array()}),ku=s.z.object({keys:Qe.array()}),vi=s.z.object({id:H,labels:Qe.array()}),Au=vi,vr=s.z.object({}),$u="/label/create",Ru="/label/delete",xu="/label/set",Cu="/label/remove";let Ti=class{constructor(e){o(this,"client");this.client=e}async create(e){return(await w(this.client,$u,{labels:T(e)},Nu,Iu)).labels}async delete(e){await w(this.client,Ru,{keys:T(e)},ku,vr)}async set(e,t){await w(this.client,xu,{id:e,labels:t},vi,vr)}async remove(e,t){await w(this.client,Cu,{id:e,labels:t},Au,vr)}};const ju="sy_label_set",Pu="sy_label_delete";let Oi=class{constructor(e,t){o(this,"type","label");o(this,"retriever");o(this,"writer");o(this,"frameClient");this.writer=new Ti(e),this.retriever=new wi(e),this.frameClient=t}async search(e){return await this.retriever.search(e)}async retrieve(e){const t=Array.isArray(e),n=await this.retriever.retrieve(e);return t?n:n[0]}async retrieveFor(e){return await this.retriever.retrieveFor(e)}async label(e,t){await this.writer.set(e,t)}async removeLabels(e,t){await this.writer.remove(e,t)}async page(e,t){return await this.retriever.page(e,t)}async create(e){const t=Array.isArray(e),n=await this.writer.create(e);return t?n:n[0]}async delete(e){await this.writer.delete(e)}async openChangeTracker(){return await He(this.frameClient,ju,Pu,Du)}};const Du=(r,e)=>r==="delete"?e.toUUIDs().map(t=>({variant:r,key:t})):e.parseJSON(St).map(t=>({variant:r,key:t.key,value:t})),Mu=Object.freeze(Object.defineProperty({__proto__:null,Client:Oi,LabelOntologyType:mi,Retriever:wi,Writer:Ti,keyZ:Qe,labelZ:St,newLabelPayloadZ:bi,ontologyID:zu},Symbol.toStringTag,{value:"Module"})),K=s.z.string().uuid(),et=s.z.object({key:K,name:s.z.string().min(1),timeRange:G.z,color:s.z.string().optional()}),zi=et.extend({key:s.z.string().uuid().optional()}),Ei=r=>{const e=T(r);if(e.length===0)throw new Error("Range params must not be empty");const t=K.safeParse(e[0]).success;return{single:!Array.isArray(r),variant:t?"keys":"names",normalized:e,actual:r}},Si="range",Ni="range-alias",Zu=r=>new x({type:Si,key:r}),Uu=r=>new x({type:Ni,key:r}),Bu=s.z.object({}),Lu=s.z.object({range:et}),qu=s.z.object({range:K}),Yu=s.z.object({range:K}),Wu=s.z.object({}),Fu="/range/set-active",_u="/range/retrieve-active",Gu="/range/clear-active";class Ku{constructor(e){o(this,"client");this.client=e}async setActive(e){await w(this.client,Fu,{range:e},qu,Bu)}async retrieveActive(){const[e,t]=await this.client.send(_u,{},s.z.object({}),Lu);if(X.matches(t))return null;if(t!=null)throw t;return e.range}async clearActive(e){await w(this.client,Gu,{range:e},Yu,Wu)}}const Vu="sy_range_alias_set",Ju="sy_range_alias_delete",Hu=s.z.object({range:K,aliases:s.z.string().array()}),Xu=s.z.object({aliases:s.z.record(s.z.string(),we)}),Qu=s.z.object({range:K,aliases:s.z.record(we.or(s.z.string()),s.z.string())}),eh=s.z.unknown(),th=s.z.object({range:K,channels:we.array()}),rh=s.z.unknown(),nh=s.z.object({range:K}),sh=s.z.object({aliases:s.z.record(s.z.string(),s.z.string())}),ae=class ae{constructor(e,t,n){o(this,"frameClient");o(this,"cache",new Map);o(this,"client");o(this,"rangeKey");this.rangeKey=e,this.cache=new Map,this.client=n,this.frameClient=t}async resolve(e){const t=[],n=typeof e=="string",i={};if(n){const c=this.cache.get(e);if(c!=null)return c;t.push(e)}else e.forEach(c=>{const l=this.cache.get(c);l!=null?i[c]=l:t.push(c)});if(t.length===0)return i;const a=await w(this.client,ae.RESOLVE_ENDPOINT,{range:this.rangeKey,aliases:t},Hu,Xu);return Object.entries(a.aliases).forEach(([c,l])=>this.cache.set(c,l)),n?a.aliases[t[0]]:{...i,...a.aliases}}async set(e){await w(this.client,ae.SET_ENDPOINT,{range:this.rangeKey,aliases:e},Qu,eh)}async list(){return(await w(this.client,ae.LIST_ENDPOINT,{range:this.rangeKey},nh,sh)).aliases}async delete(e){await w(this.client,ae.DELETE_ENDPOINT,{range:this.rangeKey,channels:e},th,rh)}async openChangeTracker(){return await He(this.frameClient,Vu,Ju,oh(this.rangeKey))}};o(ae,"SET_ENDPOINT","/range/alias/set"),o(ae,"RESOLVE_ENDPOINT","/range/alias/resolve"),o(ae,"LIST_ENDPOINT","/range/alias/list"),o(ae,"DELETE_ENDPOINT","/range/alias/delete");let Pr=ae;const ih=s.z.object({range:K,channel:we,alias:s.z.string()}),ah="---",oh=r=>(e,t)=>e==="delete"?t.toStrings().filter(n=>n.split(ah)[0]===r).map(n=>({variant:e,key:n,value:void 0})):t.parseJSON(ih).map(n=>({variant:e,key:n.alias,value:n})),ch=s.z.object({range:K,keys:s.z.string().array()}),lh=s.z.object({pairs:s.z.record(s.z.string(),s.z.string())}),uh=s.z.object({range:K,pairs:s.z.record(s.z.string(),s.z.string())}),hh=s.z.object({range:K,keys:s.z.string().array()}),de=class de{constructor(e,t){o(this,"rangeKey");o(this,"client");this.rangeKey=e,this.client=t}async get(e){const[t,n]=await this.client.send(de.GET_ENDPOINT,{range:this.rangeKey,keys:T(e)},ch,lh);if(n!=null)throw n;return Array.isArray(e)?t.pairs:t.pairs[e]}async list(){return this.get([])}async set(e,t=""){await w(this.client,de.SET_ENDPOINT,{range:this.rangeKey,pairs:Ur(e)?e:{[e]:t}},uh,s.z.unknown())}async delete(e){await w(this.client,de.DELETE_ENDPOINT,{range:this.rangeKey,keys:T(e)},hh,s.z.unknown())}};o(de,"GET_ENDPOINT","/range/kv/get"),o(de,"SET_ENDPOINT","/range/kv/set"),o(de,"DELETE_ENDPOINT","/range/kv/delete");let Dr=de;const Tr=r=>new x({type:"range",key:r});class Ii{constructor(e,t=G.ZERO,n,i,a,c,l,u,f){o(this,"key");o(this,"name");o(this,"kv");o(this,"timeRange");o(this,"color");o(this,"channels");o(this,"aliaser");o(this,"frameClient");o(this,"labelClient");this.key=n,this.name=e,this.timeRange=t,this.frameClient=a,this.color=i,this.kv=c,this.aliaser=l,this.channels=u,this.labelClient=f}async setAlias(e,t){const n=await this.channels.retrieve(e);if(n.length===0)throw new X(`Channel ${e} does not exist`);await this.aliaser.set({[n[0].key]:t})}async deleteAlias(...e){await this.aliaser.delete(e)}async listAliases(){return await this.aliaser.list()}async openAliasTracker(){return await this.aliaser.openChangeTracker()}async read(e){return await this.frameClient.read(this.timeRange,e)}async labels(){return await this.labelClient.retrieveFor(Tr(this.key))}async addLabel(...e){await this.labelClient.label(Tr(this.key),e)}async removeLabel(...e){await this.labelClient.removeLabels(Tr(this.key),e)}}const yh=s.z.object({keys:K.array().optional(),names:s.z.array(s.z.string()).optional(),term:s.z.string().optional(),overlapsWith:G.z.optional()}),dh="/range/retrieve",fh=s.z.object({ranges:Ve(et)});let ki=class{constructor(e,t,n,i,a){o(this,"type","range");o(this,"frameClient");o(this,"writer");o(this,"unaryClient");o(this,"channels");o(this,"active");o(this,"labelClient");this.frameClient=e,this.writer=t,this.unaryClient=n,this.channels=i,this.active=new Ku(n),this.labelClient=a}async create(e){const t=!Array.isArray(e),n=this.sugar(await this.writer.create(T(e)));return t?n[0]:n}async rename(e,t){await this.writer.rename(e,t)}async delete(e){await this.writer.delete(T(e))}async search(e){return this.sugar(await this.execRetrieve({term:e}))}async page(){return[]}async retrieve(e){if(typeof e=="object"&&"start"in e)return await this.execRetrieve({overlapsWith:new G(e)});const{single:t,actual:n,variant:i,normalized:a}=Ei(e),c=await this.execRetrieve({[i]:a});if(!t)return c;if(c.length===0)throw new Ie(`range matching ${n} not found`);if(c.length>1)throw new ke(`multiple ranges matching ${n} found`);return c[0]}async execRetrieve(e){const{ranges:t}=await w(this.unaryClient,dh,e,yh,fh);return this.sugar(t)}async setActive(e){await this.active.setActive(e)}async retrieveActive(){const e=await this.active.retrieveActive();return e==null?null:this.sugar([e])[0]}async clearActive(e){await this.active.clearActive(e)}sugar(e){return e.map(t=>new Ii(t.name,t.timeRange,t.key,t.color,this.frameClient,new Dr(t.key,this.unaryClient),new Pr(t.key,this.frameClient,this.unaryClient),this.channels,this.labelClient))}async openTracker(){return await He(this.frameClient,"sy_range_set","sy_range_delete",(e,t)=>e==="delete"?t.toStrings().map(i=>({variant:e,key:i,value:void 0})):this.sugar(t.parseJSON(et)).map(i=>({variant:e,key:i.key,value:i})))}};const ph=s.z.object({ranges:et.array()}),gh=s.z.object({ranges:zi.array()}),mh=s.z.object({keys:K.array()}),wh=s.z.object({}),bh=s.z.object({key:K,name:s.z.string()}),vh=s.z.object({}),Th="/range/create",Oh="/range/delete",zh="/range/rename";let Ai=class{constructor(e){o(this,"client");this.client=e}async rename(e,t){await w(this.client,zh,{key:e,name:t},bh,vh)}async create(e){return(await w(this.client,Th,{ranges:e},gh,ph)).ranges}async delete(e){await w(this.client,Oh,{keys:e},mh,wh)}};const Eh=Object.freeze(Object.defineProperty({__proto__:null,Client:ki,Range:Ii,RangeAliasOntologyType:Ni,RangeOntologyType:Si,Writer:Ai,analyzeParams:Ei,keyZ:K,newPayloadZ:zi,payloadZ:et,rangeAliasOntologyID:Uu,rangeOntologyID:Zu},Symbol.toStringTag,{value:"Module"})),Sh="/api/v1/";class Nh{constructor(e,t=!1){o(this,"url");o(this,"unary");o(this,"stream");o(this,"secure");this.secure=t,this.url=e.child(Sh);const n=new Ke.JSONCodec;this.unary=new Fa(this.url,n,this.secure),this.stream=new eo(this.url,n,this.secure)}use(...e){this.unary.use(...e),this.stream.use(...e)}}const Jr=s.z.string().uuid(),Hr=s.z.object({key:s.z.string(),name:s.z.string(),data:Lr.or(s.z.string().transform(r=>JSON.parse(r)))}),Ih=s.z.object({keys:s.z.string().array()}),kh=s.z.object({linePlots:Hr.array()});let Ah=class{constructor(e){o(this,"ENDPOINT","/workspace/lineplot/retrieve");o(this,"client");this.client=e}async retrieve(e){const t=T(e);return(await w(this.client,this.ENDPOINT,{keys:t},Ih,kh)).linePlots}};const be=s.z.string().uuid(),$i=r=>JSON.parse(r),Xr=s.z.object({name:s.z.string(),key:be,layout:Lr.or(s.z.string().transform(r=>$i(r)))}),Qr=Xr.omit({layout:!0}).extend({layout:s.z.string().transform(r=>$i(r))}),Ri="workspace",$h=r=>new x({type:Ri,key:r}),Rh=Hr.partial({key:!0}).transform(r=>({...r,data:JSON.stringify(r.data)})),xh=s.z.object({workspace:be,linePlots:Rh.array()}),Ch=s.z.object({linePlots:Hr.array()}),jh=s.z.object({keys:Jr.array()}),Ph=s.z.object({}),Dh=s.z.object({key:Jr,name:s.z.string()}),Mh=s.z.object({}),Zh=s.z.object({key:Jr,data:s.z.string()}),Uh=s.z.object({}),Bh="/workspace/lineplot/create",Lh="/workspace/lineplot/delete",qh="/workspace/lineplot/rename",Yh="/workspace/lineplot/set-data";let Wh=class{constructor(e){o(this,"client");this.client=e}async create(e,t){const n={...t,data:JSON.stringify(t.data)};return(await w(this.client,Bh,{workspace:e,linePlots:[n]},xh,Ch)).linePlots[0]}async delete(e){const t=T(e);await w(this.client,Lh,{keys:t},jh,Ph)}async rename(e,t){await w(this.client,qh,{key:e,name:t},Dh,Mh)}async setData(e,t){await w(this.client,Yh,{key:e,data:JSON.stringify(t)},Zh,Uh)}},Fh=class{constructor(e){o(this,"writer");o(this,"retriever");this.writer=new Wh(e),this.retriever=new Ah(e)}async create(e,t){return await this.writer.create(e,t)}async rename(e,t){await this.writer.rename(e,t)}async setData(e,t){await this.writer.setData(e,t)}async retrieve(e){const t=Array.isArray(e),n=await this.retriever.retrieve(e);return t?n:n[0]}async delete(e){await this.writer.delete(e)}};const _h=s.z.object({keys:be.array().optional(),search:s.z.string().optional(),author:s.z.string().uuid().optional(),offset:s.z.number().optional(),limit:s.z.number().optional()}),Gh=s.z.object({workspaces:Ve(Qr)});var Ee;let Kh=(Ee=class{constructor(e){o(this,"client");this.client=e}async retrieve(e){const t=T(e);return await this.execute({keys:t})}async retrieveByAuthor(e){return await this.execute({author:e})}async search(e){return await this.execute({search:e})}async page(e,t){return await this.execute({offset:e,limit:t})}async execute(e){return(await w(this.client,Ee.ENDPOINT,e,_h,Gh)).workspaces}},o(Ee,"ENDPOINT","/workspace/retrieve"),Ee);const nr=s.z.string().uuid(),Vh=s.z.object({key:s.z.string(),name:s.z.string(),data:Lr.or(s.z.string().transform(r=>JSON.parse(r))),snapshot:s.z.boolean()}),en=s.z.object({key:s.z.string(),name:s.z.string(),snapshot:s.z.boolean(),data:s.z.string().transform(r=>JSON.parse(r))}),Jh=s.z.object({keys:s.z.string().array()}),Hh=s.z.object({schematics:en.array()});class Xh{constructor(e){o(this,"ENDPOINT","/workspace/schematic/retrieve");o(this,"client");this.client=e}async retrieve(e){return(await w(this.client,this.ENDPOINT,{keys:T(e)},Jh,Hh)).schematics}}const Qh=Vh.partial({key:!0,snapshot:!0}).transform(r=>({...r,data:JSON.stringify(r.data)})),ey=s.z.object({workspace:be,schematics:Qh.array()}),ty=s.z.object({schematics:en.array()}),ry=s.z.object({keys:nr.array()}),ny=s.z.object({}),sy=s.z.object({key:nr,name:s.z.string()}),Bn=s.z.object({}),iy=s.z.object({key:nr,data:s.z.string()});s.z.object({});const ay=s.z.object({key:nr,name:s.z.string(),snapshot:s.z.boolean()}),oy=s.z.object({schematic:en}),cy="/workspace/schematic/create",ly="/workspace/schematic/delete",uy="/workspace/schematic/rename",hy="/workspace/schematic/set-data",yy="/workspace/schematic/copy";let dy=class{constructor(e){o(this,"client");this.client=e}async create(e,t){const n={...t,data:JSON.stringify(t.data)};return(await w(this.client,cy,{workspace:e,schematics:[n]},ey,ty)).schematics[0]}async copy(e,t,n){return(await w(this.client,yy,{key:e,name:t,snapshot:n},ay,oy)).schematic}async delete(e){const t=T(e);await w(this.client,ly,{keys:t},ry,ny)}async rename(e,t){await w(this.client,uy,{key:e,name:t},sy,Bn)}async setData(e,t){await w(this.client,hy,{key:e,data:JSON.stringify(t)},iy,Bn)}},fy=class{constructor(e){o(this,"writer");o(this,"retriever");this.writer=new dy(e),this.retriever=new Xh(e)}async create(e,t){return await this.writer.create(e,t)}async rename(e,t){await this.writer.rename(e,t)}async setData(e,t){await this.writer.setData(e,t)}async retrieve(e){const t=Array.isArray(e),n=await this.retriever.retrieve(e);return t?n:n[0]}async delete(e){await this.writer.delete(e)}async copy(e,t,n){return await this.writer.copy(e,t,n)}};const py=Xr.partial({key:!0}).transform(r=>({...r,layout:JSON.stringify(r.layout)})),gy=s.z.object({workspaces:py.array()}),my=s.z.object({workspaces:Qr.array()}),wy=s.z.object({keys:be.array()}),by=s.z.object({}),vy=s.z.object({key:be,name:s.z.string()}),Ty=s.z.object({}),Oy=s.z.object({key:be,layout:s.z.string()}),zy=s.z.object({}),Ey="/workspace/create",Sy="/workspace/delete",Ny="/workspace/rename",Iy="/workspace/set-layout";class ky{constructor(e){o(this,"client");this.client=e}async create(e){return(await w(this.client,Ey,{workspaces:T(e)},gy,my)).workspaces}async delete(e){await w(this.client,Sy,{keys:T(e)},wy,by)}async rename(e,t){await w(this.client,Ny,{key:e,name:t},vy,Ty)}async setLayout(e,t){await w(this.client,Iy,{key:e,layout:JSON.stringify(t)},Oy,zy)}}class xi{constructor(e){o(this,"type","workspace");o(this,"schematic");o(this,"linePlot");o(this,"retriever");o(this,"writer");this.schematic=new fy(e),this.linePlot=new Fh(e),this.retriever=new Kh(e),this.writer=new ky(e)}async search(e){return await this.retriever.search(e)}async retrieveByAuthor(e){return await this.retriever.retrieveByAuthor(e)}async retrieve(e){const t=Array.isArray(e),n=await this.retriever.retrieve(e);return t?n:n[0]}async page(e,t){return await this.retriever.page(e,t)}async create(e){const t=Array.isArray(e),n=await this.writer.create(e);return t?n:n[0]}async rename(e,t){await this.writer.rename(e,t)}async setLayout(e,t){await this.writer.setLayout(e,t)}async delete(...e){await this.writer.delete(e)}}const Ay=Object.freeze(Object.defineProperty({__proto__:null,Client:xi,WorkspaceOntologyType:Ri,keyZ:be,ontologyID:$h,workspaceRemoteZ:Qr,workspaceZ:Xr},Symbol.toStringTag,{value:"Module"})),Ci=s.z.object({host:s.z.string({required_error:"Host is required"}).min(1,"Host is required"),port:s.z.number({required_error:"Port is required"}).or(s.z.string({required_error:"Port is required"})),username:s.z.string().optional(),password:s.z.string().optional(),connectivityPollFrequency:E.z.default(E.seconds(30)),secure:s.z.boolean().optional().default(!1),name:s.z.string().optional()});class ji extends ri{constructor(t){const n=Ci.parse(t),{host:i,port:a,username:c,password:l,connectivityPollFrequency:u,secure:f}=n,p=new Nh(new lc({host:i,port:Number(a)}),f);p.use(mc);let g;c!=null&&l!=null&&(g=new bl(p.unary,{username:c,password:l}),p.use(g.middleware()));const P=new qr(new mt(p.unary)),j=new _s(p.unary,P);super(p.stream,p.unary,P);o(this,"createdAt");o(this,"props");o(this,"ranges");o(this,"channels");o(this,"auth");o(this,"user");o(this,"access");o(this,"connectivity");o(this,"ontology");o(this,"workspaces");o(this,"labels");o(this,"hardware");o(this,"control");o(this,"transport");this.createdAt=O.now(),this.props=n,this.auth=g,this.transport=p,this.channels=new Fs(this,P,p.unary,j),this.connectivity=new wt(p.unary,u,n.name),this.control=new si(this),this.ontology=new Us(p.unary,this);const Q=new Ai(this.transport.unary);this.labels=new Oi(this.transport.unary,this),this.ranges=new ki(this,Q,this.transport.unary,P,this.labels),this.access=new fl(this.transport.unary),this.user=new gl(this.transport.unary),this.workspaces=new xi(this.transport.unary);const D=new ui(this.transport.unary,this),tn=new gi(this.transport.unary,this),Pi=new hi(this.transport.unary,this,tn);this.hardware=new ii(tn,Pi,D)}get key(){return this.createdAt.valueOf().toString()}close(){this.connectivity.stopChecking()}}o(ji,"connectivity",wt);const $y=_e.Authority;exports.AuthError=Ne;exports.Authority=$y;exports.Channel=Yr;exports.ContiguityError=xr;exports.DataType=z;exports.Density=_;exports.Frame=U;exports.MultiSeries=Ns;exports.MultipleFoundError=ke;exports.NotFoundError=Ie;exports.QueryError=X;exports.Rate=Gt;exports.RouteError=gt;exports.Series=Oe;exports.Synnax=ji;exports.TimeRange=G;exports.TimeSpan=E;exports.TimeStamp=O;exports.UnexpectedError=pe;exports.ValidationError=C;exports.channel=nl;exports.connection=Ol;exports.control=Yl;exports.device=nu;exports.framer=Zl;exports.hardware=Wl;exports.label=Mu;exports.ontology=Pc;exports.rack=uu;exports.ranger=Eh;exports.signals=Gl;exports.synnaxPropsZ=Ci;exports.task=Ou;exports.workspace=Ay;
|
|
40
|
+
`);return h}),new U(l,c.series)}const n=[],i=[],a=Object.entries(e);for(let c=0;c<a.length;c++){const[l,u]=a[c],h=await this.fetchChannel(l),p=new K({data:u,dataType:h.dataType});n.push(h.key),i.push(p)}return new U(n,i)}}class Qr{constructor(e,t){o(this,"name");o(this,"stream");this.stream=t,this.name=e}async receive(){const[e,t]=await this.stream.receive();if(t!=null)throw t;return e}received(){return this.stream.received()}async closeAndAck(){for(this.stream.closeSend();;){const[e,t]=await this.stream.receive();if(e!=null&&console.warn(`${this.name} received unexpected response on closure.
|
|
41
|
+
Please report this error to the Synnax team. ${JSON.stringify(e)}`),t!=null){if(ge.matches(t))return;throw t}}}closeSend(){this.stream.closeSend()}send(e){const t=this.stream.send(e);if(t!=null)throw t}}const Lr=new S(-1);var en=(r=>(r[r.Open=0]="Open",r[r.Next=1]="Next",r[r.Prev=2]="Prev",r[r.SeekFirst=3]="SeekFirst",r[r.SeekLast=4]="SeekLast",r[r.SeekLE=5]="SeekLE",r[r.SeekGE=6]="SeekGE",r[r.Valid=7]="Valid",r[r.Error=8]="Error",r))(en||{}),ui=(r=>(r[r.None=0]="None",r[r.Ack=1]="Ack",r[r.Data=2]="Data",r))(ui||{});const _l=s.z.object({command:s.z.nativeEnum(en),span:S.z.optional(),bounds:W.z.optional(),stamp:E.z.optional(),keys:s.z.number().array().optional(),chunkSize:s.z.number().optional()}),Vl=s.z.object({variant:s.z.nativeEnum(ui),ack:s.z.boolean(),command:s.z.nativeEnum(en),error:Tt.optional().nullable(),frame:ir.optional()}),dt=class dt{constructor(e,t){o(this,"stream");o(this,"adapter");o(this,"value");this.stream=new Qr("Iterator",e),this.value=new U,this.adapter=t}static async _open(e,t,n,i,a={}){const c=await ar.open(n,t),l=await i.stream(dt.ENDPOINT,_l,Vl),u=new dt(l,c);return await u.execute({command:0,keys:c.keys,bounds:new W(e),chunkSize:a.chunkSize??1e5}),u}async next(e=Lr){return await this.execute({command:1,span:new S(e)})}async prev(e=Lr){return await this.execute({command:2,span:new S(e)})}async seekFirst(){return await this.execute({command:3})}async seekLast(){return await this.execute({command:4})}async seekLE(e){return await this.execute({command:5,stamp:new E(e)})}async seekGE(e){return await this.execute({command:6,stamp:new E(e)})}async valid(){return await this.execute({command:7})}async close(){await this.stream.closeAndAck()}[Symbol.asyncIterator](){return new Fl(this)}async execute(e){for(this.stream.send(e),this.value=new U;;){const t=await this.stream.receive();if(t.variant===1)return t.ack;this.value.push(this.adapter.adapt(new U(t.frame)))}}};o(dt,"ENDPOINT","/frame/iterate");let Gt=dt;class Fl{constructor(e){o(this,"iter");o(this,"open",!1);this.iter=e}async next(){try{let e=!0;return this.open||(await this.iter.seekFirst()||(e=!1),this.open=!0),await this.iter.next()||(e=!1),e||await this.iter.close(),{done:!e,value:this.iter.value}}catch(e){throw await this.iter.close(),e}}}const Kl=s.z.object({start:E.z.optional(),keys:s.z.number().array()}),Gl=s.z.object({frame:ir,error:Tt.optional().nullable()}),Jl="/frame/stream";class or{constructor(e,t){o(this,"stream");o(this,"adapter");this.stream=new Qr("Streamer",e),this.adapter=t}get keys(){return this.adapter.keys}static async _open(e,t,{channels:n,from:i}){const a=await ar.open(e,n),c=await t.stream(Jl,Kl,Gl),l=new or(c,a);return c.send({start:new E(i),keys:a.keys}),l}async next(){try{return{done:!1,value:await this.read()}}catch(e){if(ge.matches(e))return{done:!0,value:void 0};throw e}}async read(){return this.adapter.adapt(new U((await this.stream.receive()).frame))}async update(e){await this.adapter.update(e),this.stream.send({keys:this.adapter.keys})}close(){this.stream.closeSend()}[Symbol.asyncIterator](){return this}}class St extends Ne.Observer{constructor(t,n){super(n);o(this,"streamer");o(this,"closePromise");this.streamer=t,this.closePromise=this.stream()}async close(){this.streamer.close(),await this.closePromise}async stream(){for await(const t of this.streamer)this.notify(t)}}var tn=(r=>(r[r.Open=0]="Open",r[r.Write=1]="Write",r[r.Commit=2]="Commit",r[r.Error=3]="Error",r[r.SetAuthority=4]="SetAuthority",r))(tn||{}),He=(r=>(r[r.PersistStream=1]="PersistStream",r[r.Persist=2]="Persist",r[r.Stream=3]="Stream",r))(He||{});const Hl=r=>{switch(r){case"persist":return 2;case"stream":return 3;case"persistStream":return 1;default:if(typeof r=="number"&&r in He)return r;throw new Error(`invalid writer mode: ${r}`)}},Xl=new S(-1),Ql=s.z.object({start:E.z.optional(),controlSubject:Ge.subjectZ.optional(),keys:s.z.number().array().optional(),authorities:Ge.Authority.z.array().optional(),mode:s.z.nativeEnum(He).optional(),errOnUnauthorized:s.z.boolean().optional(),enableAutoCommit:s.z.boolean().optional(),autoIndexPersistInterval:S.z.optional()}),eu=s.z.object({command:s.z.nativeEnum(tn),config:Ql.optional(),frame:ir.optional()}),tu=s.z.object({ack:s.z.boolean(),command:s.z.nativeEnum(tn),error:Tt.optional().nullable()});var fe;let hi=(fe=class{constructor(e,t){o(this,"stream");o(this,"adapter");this.stream=new Qr("Writer",e),this.adapter=t}static async _open(e,t,{channels:n,start:i=E.now(),authorities:a=Ge.Authority.Absolute,controlSubject:c,mode:l=1,errOnUnauthorized:u=!1,enableAutoCommit:h=!1,autoIndexPersistInterval:p=S.SECOND}){const g=await Xr.open(e,n),D=await t.stream(fe.ENDPOINT,eu,tu),P=new fe(D,g);return await P.execute({command:0,config:{start:new E(i),keys:g.keys,controlSubject:c,authorities:O(a),mode:Hl(l),errOnUnauthorized:u,enableAutoCommit:h,autoIndexPersistInterval:p}}),P}async write(e,t){const n=await this.adapter.adapt(e,t);return this.stream.send({command:1,frame:n.toPayload()}),!0}async setAuthority(e,t){let n={keys:[],authorities:[]};if(typeof e=="number"&&t==null)n={keys:[],authorities:[e]};else{let a;typeof e=="string"||typeof e=="number"?a={[e]:t}:a=e,a=await this.adapter.adaptObjectKeys(a),n={keys:Object.keys(a).map(c=>Number(c)),authorities:Object.values(a)}}return(await this.execute({command:4,config:n})).ack}async commit(){return this.errorAccumulated?!1:(await this.execute({command:2})).ack}async error(){this.stream.send({command:3});const e=await this.execute({command:3});return e.error!=null?Wr(e.error):null}async close(){await this.stream.closeAndAck()}async execute(e){for(this.stream.send(e);;){const t=await this.stream.receive();if(t.command===e.command)return t;console.warn("writer received unexpected response",t)}}get errorAccumulated(){return this.stream.received()}},o(fe,"ENDPOINT","/frame/write"),fe),yi=class{constructor(e,t,n){o(this,"streamClient");o(this,"retriever");o(this,"deleter");this.streamClient=e,this.retriever=n,this.deleter=new Wl(t)}async openIterator(e,t,n){return await Gt._open(e,t,this.retriever,this.streamClient,n)}async openWriter(e){return(Array.isArray(e)||typeof e!="object")&&(e={channels:e}),await hi._open(this.retriever,this.streamClient,e)}async openStreamer(e){return(Array.isArray(e)||typeof e!="object")&&(e={channels:e}),await or._open(this.retriever,this.streamClient,e)}async write(e,t,n){if(n==null){const a=t,c=await this.openWriter({start:e,channels:Object.keys(a),mode:He.Persist});try{await c.write(a),await c.commit()}finally{await c.close()}return}const i=await this.openWriter({start:e,channels:t,mode:He.Persist,errOnUnauthorized:!0,enableAutoCommit:!0,autoIndexPersistInterval:S.MAX});try{await i.write(t,n)}finally{await i.close()}}async read(e,t){const{single:n}=ye(t),i=await this.readFrame(e,t);return n?i.get(t):i}async readFrame(e,t){const n=await this.openIterator(e,t),i=new U;try{for await(const a of n)i.push(a)}finally{await n.close()}return i}async delete(e,t){const{normalized:n,variant:i}=ye(e);return i==="keys"?await this.deleter.delete({keys:n,bounds:t}):await this.deleter.delete({names:n,bounds:t})}};const ru=Object.freeze(Object.defineProperty({__proto__:null,ALWAYS_INDEX_PERSIST_ON_AUTO_COMMIT:Xl,AUTO_SPAN:Lr,Client:yi,Frame:U,Iterator:Gt,ObservableStreamer:St,Streamer:or,Writer:hi,WriterMode:He,frameZ:ir,series:oi,seriesFromPayload:ci,seriesToPayload:li},Symbol.toStringTag,{value:"Module"})),nu=Ge.Authority,su=Ge.stateZ(s.z.number()),iu=r=>{var e,t;return r.to==null?`${(e=r.from)==null?void 0:e.resource} - ${(t=r.from)==null?void 0:t.subject.name} -> released`:r.from==null?`${r.to.resource} - released -> ${r.to.subject.name} (${r.to.authority.toString()})`:`${r.to.resource} - ${r.from.subject.name} -> ${r.to.subject.name} (${r.to.authority.toString()})`};class di extends St{constructor(t){super(t,n=>{const i=this.codec.decode(n.series[0].buffer);return this.merge(i),[i.transfers,!0]});o(this,"states");o(this,"codec");this.states=new Map,this.codec=new Xe.JSONCodec}subjects(){const t=new Map;return this.states.forEach(n=>t.set(n.subject.key,n.subject)),Array.from(t.values())}merge(t){t.transfers.forEach(n=>{n.from==null&&n.to==null&&console.warn("Invalid transfer: ",n),n.to==null?this.states.delete(n.from.resource):this.states.set(n.to.resource,n.to)})}}const au="sy_node_1_control";let fi=class{constructor(e){o(this,"framer");this.framer=e}async openStateTracker(){const e=await this.framer.openStreamer(au);return new di(e)}};const ou=Object.freeze(Object.defineProperty({__proto__:null,Authority:nu,Client:fi,StateTracker:di,stateZ:su,transferString:iu},Symbol.toStringTag,{value:"Module"}));let pi=class{constructor(e,t,n){o(this,"tasks");o(this,"racks");o(this,"devices");this.tasks=e,this.racks=t,this.devices=n}};const cu=Object.freeze(Object.defineProperty({__proto__:null,Client:pi},Symbol.toStringTag,{value:"Module"})),Qe=s.z.number(),cr=s.z.object({key:Qe,name:s.z.string()}),gi=cr.partial({key:!0}),mi="rack",lu=r=>new T({type:mi,key:r.toString()}),lr=s.z.string(),Nt=s.z.object({key:lr,rack:Qe,name:s.z.string(),make:s.z.string(),model:s.z.string(),location:s.z.string(),configured:s.z.boolean().optional(),properties:s.z.record(s.z.unknown()).or(s.z.string().transform(r=>r===""?{}:Xe.JSON_CODEC.decodeString(r)))}),wi=Nt.extend({properties:s.z.unknown().transform(r=>Xe.JSON_CODEC.encodeString(r))}),bi="device",uu=r=>new T({type:bi,key:r.toString()}),$e=async(r,e,t,n)=>{const i=await r.openStreamer([e,t]),a=c=>{const l=[];return t!=null&&l.push(...c.get(t).series.flatMap(u=>n("delete",u))),e!=null&&l.push(...c.get(e).series.flatMap(u=>n("set",u))),[l,l.length>0]};return new St(i,a)},hu=Object.freeze(Object.defineProperty({__proto__:null,openObservable:$e},Symbol.toStringTag,{value:"Module"})),yu="sy_device_set",du="sy_device_delete",Or="/hardware/device/retrieve",fu="/hardware/device/create",pu="/hardware/device/delete",gu=s.z.object({devices:wi.array()}),mu=s.z.object({devices:Nt.array()}),wu=s.z.object({keys:lr.array()}),bu=s.z.object({}),zr=s.z.object({search:s.z.string().optional(),limit:s.z.number().optional(),offset:s.z.number().optional(),keys:lr.array().optional(),names:s.z.string().array().optional(),makes:s.z.string().array().optional()}),Er=s.z.object({devices:be(Nt)});let vi=class{constructor(e,t){o(this,"type","device");o(this,"client");o(this,"frameClient");this.client=e,this.frameClient=t}async retrieve(e,t){const n=!Array.isArray(e),i=await w(this.client,Or,{keys:O(e),...t},zr,Er);return sr("Device",e,i.devices,n),n?i.devices[0]:i.devices}async search(e,t){return(await w(this.client,Or,{search:e,...t},zr,Er)).devices}async page(e,t,n){return(await w(this.client,Or,{offset:e,limit:t,...n},zr,Er)).devices}async create(e){const t=!Array.isArray(e),n=await w(this.client,fu,{devices:O(e)},gu,mu);return t?n.devices[0]:n.devices}async delete(e){await w(this.client,pu,{keys:O(e)},wu,bu)}async openDeviceTracker(){return await $e(this.frameClient,yu,du,vu)}newSearcherWithOptions(e){return{type:this.type,search:async t=>await this.search(t,e),retrieve:async t=>await this.retrieve(t,e),page:async(t,n)=>await this.page(t,n,e)}}};const vu=(r,e)=>r==="delete"?e.toStrings().map(t=>({variant:r,key:t,value:void 0})):e.parseJSON(Nt).map(t=>({variant:r,key:t.key,value:t})),Tu=Object.freeze(Object.defineProperty({__proto__:null,Client:vi,DeviceOntologyType:bi,deviceKeyZ:lr,deviceZ:Nt,newDeviceZ:wi,ontologyID:uu},Symbol.toStringTag,{value:"Module"})),Sr="/hardware/rack/retrieve",Ou="/hardware/rack/create",zu="/hardware/rack/delete",Nr=s.z.object({keys:Qe.array().optional(),names:s.z.string().array().optional(),search:s.z.string().optional(),offset:s.z.number().optional(),limit:s.z.number().optional()}),Ir=s.z.object({racks:be(cr)}),Eu=s.z.object({racks:gi.array()}),Su=s.z.object({racks:cr.array()}),Nu=s.z.object({keys:Qe.array()}),Iu=s.z.object({});let Ti=class{constructor(e,t,n){o(this,"type","rack");o(this,"client");o(this,"frameClient");o(this,"tasks");this.client=e,this.frameClient=t,this.tasks=n}async delete(e){await w(this.client,zu,{keys:O(e)},Nu,Iu)}async create(e){const t=!Array.isArray(e),n=await w(this.client,Ou,{racks:O(e)},Eu,Su),i=this.sugar(n.racks);return t?i[0]:i}async search(e){const t=await w(this.client,Sr,{search:e},Nr,Ir);return this.sugar(t.racks)}async page(e,t){const n=await w(this.client,Sr,{offset:e,limit:t},Nr,Ir);return this.sugar(n.racks)}async retrieve(e){const{variant:t,normalized:n,single:i}=nr(e,{string:"names",number:"keys"}),a=await w(this.client,Sr,{[t]:n},Nr,Ir),c=this.sugar(a.racks);return sr("Rack",e,c,i),i?c[0]:c}sugar(e){return e.map(({key:t,name:n})=>new Oi(t,n,this.tasks))}};class Oi{constructor(e,t,n){o(this,"key");o(this,"name");o(this,"tasks");this.key=e,this.name=t,this.tasks=n}async listTasks(){return await this.tasks.retrieve(this.key)}async retrieveTaskByName(e){return await this.tasks.retrieveByName(e,this.key)}async createTask(e){return e.key=((BigInt(this.key)<<32n)+(BigInt(e.key??0)&0xffffffffn)).toString(),await this.tasks.create(e)}async deleteTask(e){await this.tasks.delete([e])}}const ku=Object.freeze(Object.defineProperty({__proto__:null,Client:Ti,Rack:Oi,RackOntologyType:mi,newRackZ:gi,ontologyID:lu,rackKeyZ:Qe,rackZ:cr},Symbol.toStringTag,{value:"Module"})),Re=s.z.union([s.z.string(),s.z.bigint().transform(r=>r.toString()),s.z.number().transform(r=>r.toString())]),bt=s.z.object({task:Re,variant:s.z.string(),key:s.z.string().optional(),details:s.z.record(s.z.unknown()).or(s.z.string().transform(r=>r===""?{}:JSON.parse(r))).or(s.z.array(s.z.unknown())).or(s.z.null())}),It=s.z.object({key:Re,name:s.z.string(),type:s.z.string(),internal:s.z.boolean().optional(),config:s.z.record(s.z.unknown()).or(s.z.string().transform(r=>r===""?{}:Xe.JSON_CODEC.decodeString(r))),state:bt.optional().nullable(),snapshot:s.z.boolean().optional()}),zi=It.omit({key:!0}).extend({key:Re.transform(r=>r.toString()).optional(),config:s.z.unknown().transform(r=>Xe.JSON_CODEC.encodeString(r))}),Au=s.z.object({task:Re,type:s.z.string(),key:s.z.string(),args:s.z.record(s.z.unknown()).or(s.z.string().transform(r=>r===""?{}:JSON.parse(r)))}),Ei="task",$u=r=>new T({type:Ei,key:r.toString()}),yt="sy_task_state",Gn="sy_task_cmd",xt=new Error("Task not created");class Si{constructor(e,t,n,i,a=!1,c=!1,l,u=null,h=null,p=null){o(this,"key");o(this,"name");o(this,"internal");o(this,"type");o(this,"config");o(this,"snapshot");o(this,"state");o(this,"frameClient");o(this,"ontologyClient");o(this,"rangeClient");this.key=e,this.name=t,this.type=n,this.config=i,this.internal=a,this.snapshot=c,l!==null&&(this.state=l),this.frameClient=u,this.ontologyClient=h,this.rangeClient=p}get payload(){return{key:this.key,name:this.name,type:this.type,config:this.config,state:this.state,internal:this.internal}}get ontologyID(){return new T({type:"task",key:this.key})}async executeCommand(e,t){if(this.frameClient==null)throw xt;const n=await this.frameClient.openWriter(Gn),i=ic.id();return await n.write(Gn,[{task:this.key,type:e,key:i,args:t}]),await n.close(),i}async executeCommandSync(e,t,n){if(this.frameClient==null)throw xt;const i=await this.frameClient.openStreamer(yt),a=await this.executeCommand(e,t);let c;const l=new Promise(u=>setTimeout(()=>u(!1),new S(n).milliseconds));for(;;){const u=await Promise.any([i.read(),l]);if(u===!1)throw new Error("Command timed out");const h=bt.safeParse(u.at(-1).sy_task_state);if(h.success){if(c=h.data,c.key===a)break}else console.error(h.error)}return i.close(),c}async openStateObserver(){if(this.frameClient==null)throw xt;return new St(await this.frameClient.openStreamer(yt),e=>{const t=e.get(yt);if(t.length===0)return[null,!1];const n=bt.safeParse(t.at(-1));if(!n.success)return[null,!1];const i=n.data;return i.task!==this.key?[null,!1]:[i,!0]})}async snapshottedTo(){if(this.ontologyClient==null||this.rangeClient==null)throw xt;if(!this.snapshot)return null;const e=await this.ontologyClient.retrieveParents(this.ontologyID);return e.length==0?null:e[0]}}const Ru=s.z.object({rack:Qe.optional(),keys:s.z.string().array().optional(),names:s.z.string().array().optional(),offset:s.z.number().optional(),limit:s.z.number().optional(),includeState:s.z.boolean().optional()}),Cu=s.z.object({tasks:be(It)}),xu="/hardware/task/retrieve",Pu="/hardware/task/create",Du="/hardware/task/delete",ju="/hardware/task/copy",Mu=s.z.object({tasks:zi.array()}),Zu=s.z.object({tasks:It.array()}),Uu=s.z.object({keys:Re.array()}),Bu=s.z.object({}),Lu=s.z.object({key:Re,name:s.z.string(),snapshot:s.z.boolean()}),qu=s.z.object({task:It});let Ni=class{constructor(e,t,n,i){o(this,"type","task");o(this,"client");o(this,"frameClient");o(this,"ontologyClient");o(this,"rangeClient");this.client=e,this.frameClient=t,this.ontologyClient=n,this.rangeClient=i}async create(e){const t=!Array.isArray(e),n=await w(this.client,Pu,{tasks:O(e)},Mu,Zu),i=this.sugar(n.tasks);return t?i[0]:i}async delete(e){await w(this.client,Du,{keys:O(e)},Uu,Bu)}async search(e){return await this.execRetrieve({keys:[e]})}async page(e,t){return await this.execRetrieve({offset:e,limit:t})}async list(e={}){return this.sugar(await this.execRetrieve(e))}async retrieve(e,t){const{single:n,normalized:i,variant:a}=nr(e,{number:"rack",string:"keys"},{convertNumericStrings:!1}),c={...t};a==="rack"?c.rack=e:c.keys=i;const l=await this.execRetrieve(c),u=this.sugar(l);return n&&a!=="rack"?u[0]:u}async copy(e,t,n){const i=await w(this.client,ju,{key:e,name:t,snapshot:n},Lu,qu);return this.sugar([i.task])[0]}async retrieveByName(e,t){const n=await this.execRetrieve({names:[e],rack:t});return sr("Task",e,n,!0),this.sugar(n)[0]}async execRetrieve(e){return(await w(this.client,xu,e,Ru,Cu)).tasks}sugar(e){return e.map(({key:t,name:n,type:i,config:a,state:c,internal:l,snapshot:u})=>new Si(t,n,i,a,l,u,c,this.frameClient,this.ontologyClient,this.rangeClient))}async openTracker(){return await $e(this.frameClient,"sy_task_set","sy_task_delete",(e,t)=>Array.from(t).map(n=>({variant:e,key:n.toString(),value:n.toString()})))}async openStateObserver(){return new St(await this.frameClient.openStreamer(yt),e=>{const t=e.get(yt);if(t.length===0)return[null,!1];const n=bt.safeParse(t.at(-1));return n.success?[n.data,!0]:[null,!1]})}};const Yu=Object.freeze(Object.defineProperty({__proto__:null,Client:Ni,DeviceOntologyType:Ei,Task:Si,commandZ:Au,newTaskZ:zi,ontologyID:$u,stateZ:bt,taskKeyZ:Re,taskZ:It},Symbol.toStringTag,{value:"Module"})),et=s.z.string().uuid(),kt=s.z.object({key:et,name:s.z.string().min(1),color:s.z.string()}),Ii="label",Wu=r=>new T({type:Ii,key:r}),_u=s.z.object({keys:et.array().optional(),for:J.optional(),search:s.z.string().optional(),offset:s.z.number().optional(),limit:s.z.number().optional()}),Vu=s.z.object({labels:be(kt)});var ze;let ki=(ze=class{constructor(e){o(this,"client");this.client=e}async retrieve(e){const t=O(e);return await this.execute({keys:t})}async retrieveFor(e){return await this.execute({for:e})}async search(e){return await this.execute({search:e})}async page(e,t){return await this.execute({offset:e,limit:t})}async execute(e){const[t,n]=await this.client.send(ze.ENDPOINT,e,_u,Vu);if(n!=null)throw n;return t.labels}},o(ze,"ENDPOINT","/label/retrieve"),ze);const Ai=kt.extend({key:et.optional()}),Fu=s.z.object({labels:Ai.array()}),Ku=s.z.object({labels:kt.array()}),Gu=s.z.object({keys:et.array()}),$i=s.z.object({id:J,labels:et.array(),replace:s.z.boolean().optional()}),Ju=$i.omit({replace:!0}),kr=s.z.object({}),Hu="/label/create",Xu="/label/delete",Qu="/label/set",eh="/label/remove";let Ri=class{constructor(e){o(this,"client");this.client=e}async create(e){return(await w(this.client,Hu,{labels:O(e)},Fu,Ku)).labels}async delete(e){await w(this.client,Xu,{keys:O(e)},Gu,kr)}async set(e,t,{replace:n}={}){await w(this.client,Qu,{id:e,labels:t,replace:n},$i,kr)}async remove(e,t){await w(this.client,eh,{id:e,labels:t},Ju,kr)}};const th="sy_label_set",rh="sy_label_delete";let Ci=class{constructor(e,t,n){o(this,"type","label");o(this,"retriever");o(this,"writer");o(this,"frameClient");o(this,"ontology");this.writer=new Ri(e),this.retriever=new ki(e),this.frameClient=t,this.ontology=n}async search(e){return await this.retriever.search(e)}async retrieve(e){const t=Array.isArray(e),n=await this.retriever.retrieve(e);return t?n:n[0]}async retrieveFor(e){return await this.retriever.retrieveFor(new T(e))}async label(e,t,n={}){await this.writer.set(new T(e),t,n)}async removeLabels(e,t){await this.writer.remove(new T(e),t)}async page(e,t){return await this.retriever.page(e,t)}async create(e){const t=Array.isArray(e),n=await this.writer.create(e);return t?n:n[0]}async delete(e){await this.writer.delete(e)}async openChangeTracker(){return await $e(this.frameClient,th,rh,nh)}async trackLabelsOf(e){const t=new Ne.Observer,n=(await this.retrieveFor(e)).map(a=>({id:new T({key:a.key,type:"label"}),key:a.key,name:a.name,data:a}));return(await this.ontology.openDependentTracker({target:new T(e),dependents:n,relationshipType:"labeled_by"})).onChange(a=>t.notify(a.map(c=>{var l,u;return{key:c.id.key,color:(l=c.data)==null?void 0:l.color,name:(u=c.data)==null?void 0:u.name}}))),t}};const nh=(r,e)=>r==="delete"?e.toUUIDs().map(t=>({variant:r,key:t})):e.parseJSON(kt).map(t=>({variant:r,key:t.key,value:t})),sh=Object.freeze(Object.defineProperty({__proto__:null,Client:Ci,LabelOntologyType:Ii,Retriever:ki,Writer:Ri,keyZ:et,labelZ:kt,newLabelPayloadZ:Ai,ontologyID:Wu},Symbol.toStringTag,{value:"Module"})),X=s.z.string().uuid(),At=s.z.object({key:X,name:s.z.string().min(1),timeRange:W.z,color:s.z.string().optional()}),xi=At.extend({key:s.z.string().uuid().optional()}),Pi=r=>{const e=O(r),t=e.length===0;let n=!1;return t||(n=X.safeParse(e[0]).success),{single:!Array.isArray(r),variant:n?"keys":"names",normalized:e,actual:r,empty:t}},Di="range",ji="range-alias",ih=r=>new T({type:Di,key:r}),ah=r=>new T({type:ji,key:r}),oh="sy_range_alias_set",ch="sy_range_alias_delete",lh=s.z.object({range:X,aliases:s.z.string().array()}),uh=s.z.object({aliases:s.z.record(s.z.string(),we)}),hh=s.z.object({range:X,aliases:s.z.record(we.or(s.z.string()),s.z.string())}),yh=s.z.unknown(),dh=s.z.object({range:X,channels:we.array()}),fh=s.z.unknown(),ph=s.z.object({range:X}),gh=s.z.object({aliases:s.z.record(s.z.string(),s.z.string())}),oe=class oe{constructor(e,t,n){o(this,"frameClient");o(this,"cache",new Map);o(this,"client");o(this,"rangeKey");this.rangeKey=e,this.cache=new Map,this.client=n,this.frameClient=t}async resolve(e){const t=[],n=typeof e=="string",i={};if(n){const c=this.cache.get(e);if(c!=null)return c;t.push(e)}else e.forEach(c=>{const l=this.cache.get(c);l!=null?i[c]=l:t.push(c)});if(t.length===0)return i;const a=await w(this.client,oe.RESOLVE_ENDPOINT,{range:this.rangeKey,aliases:t},lh,uh);return Object.entries(a.aliases).forEach(([c,l])=>this.cache.set(c,l)),n?a.aliases[t[0]]:{...i,...a.aliases}}async set(e){await w(this.client,oe.SET_ENDPOINT,{range:this.rangeKey,aliases:e},hh,yh)}async list(){return(await w(this.client,oe.LIST_ENDPOINT,{range:this.rangeKey},ph,gh)).aliases}async delete(e){await w(this.client,oe.DELETE_ENDPOINT,{range:this.rangeKey,channels:e},dh,fh)}async openChangeTracker(){return await $e(this.frameClient,oh,ch,bh(this.rangeKey))}};o(oe,"SET_ENDPOINT","/range/alias/set"),o(oe,"RESOLVE_ENDPOINT","/range/alias/resolve"),o(oe,"LIST_ENDPOINT","/range/alias/list"),o(oe,"DELETE_ENDPOINT","/range/alias/delete");let qr=oe;const mh=s.z.object({range:X,channel:we,alias:s.z.string()}),wh="---",bh=r=>(e,t)=>e==="delete"?t.toStrings().filter(n=>n.split(wh)[0]===r).map(n=>({variant:e,key:n,value:void 0})):t.parseJSON(mh).map(n=>({variant:e,key:n.alias,value:n})),vh=s.z.object({range:X,keys:s.z.string().array()}),rn=s.z.object({range:X,key:s.z.string(),value:s.z.string()}),Th=s.z.object({pairs:be(rn)}),Oh=s.z.object({range:X,pairs:rn.array()}),zh=s.z.object({range:X,keys:s.z.string().array()}),de=class de{constructor(e,t,n){o(this,"rangeKey");o(this,"client");o(this,"frameClient");this.rangeKey=e,this.client=t,this.frameClient=n}async get(e){const t=await w(this.client,de.GET_ENDPOINT,{range:this.rangeKey,keys:O(e)},vh,Th);return typeof e=="string"?t.pairs[0].value:Object.fromEntries(t.pairs.map(n=>[n.key,n.value]))}async list(){return this.get([])}async set(e,t=""){let n;_r(e)?n=Object.entries(e).map(([i,a])=>({range:this.rangeKey,key:i,value:a})):n=[{range:this.rangeKey,key:e,value:t}],await w(this.client,de.SET_ENDPOINT,{range:this.rangeKey,pairs:n},Oh,s.z.unknown())}async delete(e){await w(this.client,de.DELETE_ENDPOINT,{range:this.rangeKey,keys:O(e)},zh,s.z.unknown())}async openTracker(){return await $e(this.frameClient,"sy_range_kv_set","sy_range_kv_delete",(e,t)=>e==="delete"?t.toStrings().map(n=>{const[i,a]=n.split("<--->",2);return{variant:e,key:n,value:{range:i,key:a,value:""}}}):t.parseJSON(rn).map(n=>({variant:e,key:`${n.range}${n.key}`,value:n})))}};o(de,"GET_ENDPOINT","/range/kv/get"),o(de,"SET_ENDPOINT","/range/kv/set"),o(de,"DELETE_ENDPOINT","/range/kv/delete");let vt=de;const Ar=r=>new T({type:"range",key:r});class Mi{constructor(e,t=W.ZERO,n,i,a,c,l,u,h,p,g){o(this,"key");o(this,"name");o(this,"kv");o(this,"timeRange");o(this,"color");o(this,"channels");o(this,"aliaser");o(this,"frameClient");o(this,"labelClient");o(this,"ontologyClient");o(this,"rangeClient");this.key=n,this.name=e,this.timeRange=t,this.frameClient=a,this.color=i,this.kv=c,this.aliaser=l,this.channels=u,this.labelClient=h,this.ontologyClient=p,this.rangeClient=g}get ontologyID(){return new T({key:this.key,type:"range"})}get payload(){return{key:this.key,name:this.name,timeRange:this.timeRange,color:this.color}}async setAlias(e,t){const n=await this.channels.retrieve(e);if(n.length===0)throw new ee(`Channel ${e} does not exist`);await this.aliaser.set({[n[0].key]:t})}async deleteAlias(...e){await this.aliaser.delete(e)}async listAliases(){return await this.aliaser.list()}async resolveAlias(e){return await this.aliaser.resolve(e)}async openAliasTracker(){return await this.aliaser.openChangeTracker()}async retrieveParent(){return this.rangeClient.retrieveParent(this.key)}async retrieveChildren(){const e=(await this.ontologyClient.retrieveChildren(this.ontologyID,{excludeFieldData:!0,types:["range"]})).map(t=>t.id.key);return await this.rangeClient.retrieve(e)}async read(e){return await this.frameClient.read(this.timeRange,e)}async labels(){return await this.labelClient.retrieveFor(Ar(this.key))}async addLabel(...e){await this.labelClient.label(Ar(this.key),e)}async removeLabel(...e){await this.labelClient.removeLabels(Ar(this.key),e)}async openChildRangeTracker(){const e=new Ne.Observer,t=(await this.retrieveChildren()).map(i=>{const a=new T({key:i.key,type:"range"});return{id:a,key:a.toString(),name:i.name,data:i.payload}}),n=await this.ontologyClient.openDependentTracker({target:this.ontologyID,dependents:t,resourceType:"range"});return n.onChange(i=>e.notify(this.rangeClient.resourcesToRanges(i))),e.setCloser(async()=>await n.close()),e}async openParentRangeTracker(){const e=new Ne.Observer,t=await this.retrieveParent();if(t==null)return null;const n=new T({key:t.key,type:"range"}),i={id:n,key:n.toString(),name:t.name,data:t.payload},a=await this.ontologyClient.openDependentTracker({target:this.ontologyID,dependents:[i],relationshipDirection:"to"});return a.onChange(c=>{const l=this.rangeClient.resourcesToRanges(c);if(l.length===0)return;const u=l[0];e.notify(u)}),e.setCloser(async()=>await a.close()),e}}const Eh=s.z.object({keys:X.array().optional(),names:s.z.array(s.z.string()).optional(),term:s.z.string().optional(),overlapsWith:W.z.optional(),limit:s.z.number().int().optional(),offset:s.z.number().int().optional()}),Sh="/range/retrieve",Nh=s.z.object({ranges:be(At)});let Zi=class{constructor(e,t,n,i,a,c){o(this,"type","range");o(this,"frameClient");o(this,"writer");o(this,"unaryClient");o(this,"channels");o(this,"labelClient");o(this,"ontologyClient");this.frameClient=e,this.writer=t,this.unaryClient=n,this.channels=i,this.labelClient=a,this.ontologyClient=c}async create(e,t){const n=!Array.isArray(e),i=this.sugarMany(await this.writer.create(O(e),t));return n?i[0]:i}async rename(e,t){await this.writer.rename(e,t)}async delete(e){await this.writer.delete(O(e))}async search(e){return this.sugarMany(await this.execRetrieve({term:e}))}async page(e,t){return this.sugarMany(await this.execRetrieve({offset:e,limit:t}))}async retrieve(e){if(typeof e=="object"&&"start"in e)return await this.execRetrieve({overlapsWith:new W(e)});const{single:t,actual:n,variant:i,normalized:a,empty:c}=Pi(e);if(c)return[];const l=await this.execRetrieve({[i]:a});if(!t)return l;if(l.length===0)throw new ke(`range matching ${n} not found`);if(l.length>1)throw new Ae(`multiple ranges matching ${n} found`);return l[0]}getKV(e){return new vt(e,this.unaryClient,this.frameClient)}async execRetrieve(e){const{ranges:t}=await w(this.unaryClient,Sh,e,Eh,Nh);return this.sugarMany(t)}async retrieveParent(e){const t=await this.ontologyClient.retrieveParents({key:e,type:"range"});if(t.length===0)return null;const n=t[0];return n.id.type!=="range"?null:await this.retrieve(n.id.key)}sugarOne(e){return new Mi(e.name,e.timeRange,e.key,e.color,this.frameClient,new vt(e.key,this.unaryClient,this.frameClient),new qr(e.key,this.frameClient,this.unaryClient),this.channels,this.labelClient,this.ontologyClient,this)}sugarMany(e){return e.map(t=>this.sugarOne(t))}async openTracker(){return await $e(this.frameClient,"sy_range_set","sy_range_delete",(e,t)=>e==="delete"?t.toStrings().map(i=>({variant:e,key:i,value:void 0})):this.sugarMany(t.parseJSON(At)).map(i=>({variant:e,key:i.key,value:i})))}resourcesToRanges(e){return e.map(t=>this.resourceToRange(t))}resourceToRange(e){var t,n,i;return this.sugarOne({key:e.id.key,name:(t=e.data)==null?void 0:t.name,timeRange:new W((n=e.data)==null?void 0:n.timeRange),color:(i=e.data)==null?void 0:i.color})}};const Ih=s.z.object({ranges:At.array()}),kh=s.z.object({parent:J.optional(),ranges:xi.array()}),Ah=s.z.object({keys:X.array()}),$h=s.z.object({}),Rh=s.z.object({key:X,name:s.z.string()}),Ch=s.z.object({}),xh="/range/create",Ph="/range/delete",Dh="/range/rename";let Ui=class{constructor(e){o(this,"client");this.client=e}async rename(e,t){await w(this.client,Dh,{key:e,name:t},Rh,Ch)}async create(e,t){return(await w(this.client,xh,{ranges:e,...t},kh,Ih)).ranges}async delete(e){await w(this.client,Ph,{keys:e},Ah,$h)}};const jh=Object.freeze(Object.defineProperty({__proto__:null,Client:Zi,KV:vt,Range:Mi,RangeAliasOntologyType:ji,RangeOntologyType:Di,Writer:Ui,analyzeParams:Pi,keyZ:X,newPayloadZ:xi,payloadZ:At,rangeAliasOntologyID:ah,rangeOntologyID:ih},Symbol.toStringTag,{value:"Module"})),Mh="/api/v1/";class Zh{constructor(e,t=!1){o(this,"url");o(this,"unary");o(this,"stream");o(this,"secure");this.secure=t,this.url=e.child(Mh);const n=new Xe.JSONCodec;this.unary=new to(this.url,n,this.secure),this.stream=new uo(this.url,n,this.secure)}use(...e){this.unary.use(...e),this.stream.use(...e)}}const nn=s.z.string().uuid(),sn=s.z.object({key:s.z.string(),name:s.z.string(),data:Fr.or(s.z.string().transform(r=>JSON.parse(r)))}),Uh=s.z.object({keys:s.z.string().array()}),Bh=s.z.object({linePlots:sn.array()});let Lh=class{constructor(e){o(this,"ENDPOINT","/workspace/lineplot/retrieve");o(this,"client");this.client=e}async retrieve(e){const t=O(e);return(await w(this.client,this.ENDPOINT,{keys:t},Uh,Bh)).linePlots}};const ve=s.z.string().uuid(),Bi=r=>JSON.parse(r),an=s.z.object({name:s.z.string(),key:ve,layout:Fr.or(s.z.string().transform(r=>Bi(r)))}),on=an.omit({layout:!0}).extend({layout:s.z.string().transform(r=>Bi(r))}),Li="workspace",qh=r=>new T({type:Li,key:r}),Yh=sn.partial({key:!0}).transform(r=>({...r,data:JSON.stringify(r.data)})),Wh=s.z.object({workspace:ve,linePlots:Yh.array()}),_h=s.z.object({linePlots:sn.array()}),Vh=s.z.object({keys:nn.array()}),Fh=s.z.object({}),Kh=s.z.object({key:nn,name:s.z.string()}),Gh=s.z.object({}),Jh=s.z.object({key:nn,data:s.z.string()}),Hh=s.z.object({}),Xh="/workspace/lineplot/create",Qh="/workspace/lineplot/delete",ey="/workspace/lineplot/rename",ty="/workspace/lineplot/set-data";let ry=class{constructor(e){o(this,"client");this.client=e}async create(e,t){const n={...t,data:JSON.stringify(t.data)};return(await w(this.client,Xh,{workspace:e,linePlots:[n]},Wh,_h)).linePlots[0]}async delete(e){const t=O(e);await w(this.client,Qh,{keys:t},Vh,Fh)}async rename(e,t){await w(this.client,ey,{key:e,name:t},Kh,Gh)}async setData(e,t){await w(this.client,ty,{key:e,data:JSON.stringify(t)},Jh,Hh)}},ny=class{constructor(e){o(this,"writer");o(this,"retriever");this.writer=new ry(e),this.retriever=new Lh(e)}async create(e,t){return await this.writer.create(e,t)}async rename(e,t){await this.writer.rename(e,t)}async setData(e,t){await this.writer.setData(e,t)}async retrieve(e){const t=Array.isArray(e),n=await this.retriever.retrieve(e);return t?n:n[0]}async delete(e){await this.writer.delete(e)}};const sy=s.z.object({keys:ve.array().optional(),search:s.z.string().optional(),author:s.z.string().uuid().optional(),offset:s.z.number().optional(),limit:s.z.number().optional()}),iy=s.z.object({workspaces:be(on)});var Ee;let ay=(Ee=class{constructor(e){o(this,"client");this.client=e}async retrieve(e){const t=O(e);return await this.execute({keys:t})}async retrieveByAuthor(e){return await this.execute({author:e})}async search(e){return await this.execute({search:e})}async page(e,t){return await this.execute({offset:e,limit:t})}async execute(e){return(await w(this.client,Ee.ENDPOINT,e,sy,iy)).workspaces}},o(Ee,"ENDPOINT","/workspace/retrieve"),Ee);const ur=s.z.string().uuid(),oy=s.z.object({key:s.z.string(),name:s.z.string(),data:Fr.or(s.z.string().transform(r=>JSON.parse(r))),snapshot:s.z.boolean()}),cn=s.z.object({key:s.z.string(),name:s.z.string(),snapshot:s.z.boolean(),data:s.z.string().transform(r=>JSON.parse(r))}),cy=s.z.object({keys:s.z.string().array()}),ly=s.z.object({schematics:cn.array()});class uy{constructor(e){o(this,"ENDPOINT","/workspace/schematic/retrieve");o(this,"client");this.client=e}async retrieve(e){return(await w(this.client,this.ENDPOINT,{keys:O(e)},cy,ly)).schematics}}const hy=oy.partial({key:!0,snapshot:!0}).transform(r=>({...r,data:JSON.stringify(r.data)})),yy=s.z.object({workspace:ve,schematics:hy.array()}),dy=s.z.object({schematics:cn.array()}),fy=s.z.object({keys:ur.array()}),py=s.z.object({}),gy=s.z.object({key:ur,name:s.z.string()}),Jn=s.z.object({}),my=s.z.object({key:ur,data:s.z.string()});s.z.object({});const wy=s.z.object({key:ur,name:s.z.string(),snapshot:s.z.boolean()}),by=s.z.object({schematic:cn}),vy="/workspace/schematic/create",Ty="/workspace/schematic/delete",Oy="/workspace/schematic/rename",zy="/workspace/schematic/set-data",Ey="/workspace/schematic/copy";let Sy=class{constructor(e){o(this,"client");this.client=e}async create(e,t){const n={...t,data:JSON.stringify(t.data)};return(await w(this.client,vy,{workspace:e,schematics:[n]},yy,dy)).schematics[0]}async copy(e,t,n){return(await w(this.client,Ey,{key:e,name:t,snapshot:n},wy,by)).schematic}async delete(e){const t=O(e);await w(this.client,Ty,{keys:t},fy,py)}async rename(e,t){await w(this.client,Oy,{key:e,name:t},gy,Jn)}async setData(e,t){await w(this.client,zy,{key:e,data:JSON.stringify(t)},my,Jn)}},Ny=class{constructor(e){o(this,"writer");o(this,"retriever");this.writer=new Sy(e),this.retriever=new uy(e)}async create(e,t){return await this.writer.create(e,t)}async rename(e,t){await this.writer.rename(e,t)}async setData(e,t){await this.writer.setData(e,t)}async retrieve(e){const t=Array.isArray(e),n=await this.retriever.retrieve(e);return t?n:n[0]}async delete(e){await this.writer.delete(e)}async copy(e,t,n){return await this.writer.copy(e,t,n)}};const Iy=an.partial({key:!0}).transform(r=>({...r,layout:JSON.stringify(r.layout)})),ky=s.z.object({workspaces:Iy.array()}),Ay=s.z.object({workspaces:on.array()}),$y=s.z.object({keys:ve.array()}),Ry=s.z.object({}),Cy=s.z.object({key:ve,name:s.z.string()}),xy=s.z.object({}),Py=s.z.object({key:ve,layout:s.z.string()}),Dy=s.z.object({}),jy="/workspace/create",My="/workspace/delete",Zy="/workspace/rename",Uy="/workspace/set-layout";class By{constructor(e){o(this,"client");this.client=e}async create(e){return(await w(this.client,jy,{workspaces:O(e)},ky,Ay)).workspaces}async delete(e){await w(this.client,My,{keys:O(e)},$y,Ry)}async rename(e,t){await w(this.client,Zy,{key:e,name:t},Cy,xy)}async setLayout(e,t){await w(this.client,Uy,{key:e,layout:JSON.stringify(t)},Py,Dy)}}class qi{constructor(e){o(this,"type","workspace");o(this,"schematic");o(this,"linePlot");o(this,"retriever");o(this,"writer");this.schematic=new Ny(e),this.linePlot=new ny(e),this.retriever=new ay(e),this.writer=new By(e)}async search(e){return await this.retriever.search(e)}async retrieveByAuthor(e){return await this.retriever.retrieveByAuthor(e)}async retrieve(e){const t=Array.isArray(e),n=await this.retriever.retrieve(e);return t?n:n[0]}async page(e,t){return await this.retriever.page(e,t)}async create(e){const t=Array.isArray(e),n=await this.writer.create(e);return t?n:n[0]}async rename(e,t){await this.writer.rename(e,t)}async setLayout(e,t){await this.writer.setLayout(e,t)}async delete(...e){await this.writer.delete(e)}}const Ly=Object.freeze(Object.defineProperty({__proto__:null,Client:qi,WorkspaceOntologyType:Li,keyZ:ve,ontologyID:qh,workspaceRemoteZ:on,workspaceZ:an},Symbol.toStringTag,{value:"Module"})),Yi=s.z.object({host:s.z.string({required_error:"Host is required"}).min(1,"Host is required"),port:s.z.number({required_error:"Port is required"}).or(s.z.string({required_error:"Port is required"})),username:s.z.string().min(1,"Username is required"),password:s.z.string().min(1,"Password is required"),connectivityPollFrequency:S.z.default(S.seconds(30)),secure:s.z.boolean().optional().default(!1),name:s.z.string().optional()});class Wi extends yi{constructor(t){const n=Yi.parse(t),{host:i,port:a,username:c,password:l,connectivityPollFrequency:u,secure:h}=n,p=new Zh(new zc({host:i,port:Number(a)}),h);p.use(Dc);let g;c!=null&&l!=null&&(g=new Ml(p.unary,{username:c,password:l}),p.use(g.middleware()));const D=new Kr(new mt(p.unary)),P=new ri(p.unary,D);super(p.stream,p.unary,D);o(this,"createdAt");o(this,"props");o(this,"ranges");o(this,"channels");o(this,"auth");o(this,"user");o(this,"access");o(this,"connectivity");o(this,"ontology");o(this,"workspaces");o(this,"labels");o(this,"hardware");o(this,"control");o(this,"transport");o(this,"clientVersion","0.28.0");this.createdAt=E.now(),this.props=n,this.auth=g,this.transport=p,this.channels=new ti(this,D,p.unary,P),this.connectivity=new wt(p.unary,u,this.clientVersion,n.name),this.control=new fi(this),this.ontology=new Gs(p.unary,this);const Q=new Ui(this.transport.unary);this.labels=new Ci(this.transport.unary,this,this.ontology),this.ranges=new Zi(this,Q,this.transport.unary,D,this.labels,this.ontology),this.access=new Cl(this.transport.unary),this.user=new Pl(this.transport.unary),this.workspaces=new qi(this.transport.unary);const j=new vi(this.transport.unary,this),ln=new Ni(this.transport.unary,this,this.ontology,this.ranges),_i=new Ti(this.transport.unary,this,ln);this.hardware=new pi(ln,_i,j)}get key(){return this.createdAt.valueOf().toString()}close(){this.connectivity.stopChecking()}}o(Wi,"connectivity",wt);const qy=Ge.Authority;exports.AuthError=Ie;exports.Authority=qy;exports.Channel=Gr;exports.ContiguityError=Ur;exports.DataType=z;exports.Density=F;exports.Frame=U;exports.MultiSeries=js;exports.MultipleFoundError=Ae;exports.NotFoundError=ke;exports.QueryError=ee;exports.Rate=er;exports.RouteError=gt;exports.Series=K;exports.Synnax=Wi;exports.TimeRange=W;exports.TimeSpan=S;exports.TimeStamp=E;exports.UnexpectedError=pe;exports.ValidationError=x;exports.channel=Tl;exports.connection=Bl;exports.control=ou;exports.device=Tu;exports.framer=ru;exports.hardware=cu;exports.label=sh;exports.ontology=Qc;exports.rack=ku;exports.ranger=jh;exports.signals=hu;exports.synnaxPropsZ=Yi;exports.task=Yu;exports.workspace=Ly;
|