oioxo-mcp 0.3.0 → 0.4.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/README.md +6 -6
- package/bundle/cli.js +112 -78
- package/package.json +4 -3
package/bundle/cli.js
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
var
|
|
2
|
+
var z_=Object.create;var Mi=Object.defineProperty;var T_=Object.getOwnPropertyDescriptor;var P_=Object.getOwnPropertyNames;var O_=Object.getPrototypeOf,E_=Object.prototype.hasOwnProperty;var Fd=(t,e)=>()=>(t&&(e=t(t=0)),e);var S=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),qo=(t,e)=>{for(var r in e)Mi(t,r,{get:e[r],enumerable:!0})},I_=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of P_(e))!E_.call(t,o)&&o!==r&&Mi(t,o,{get:()=>e[o],enumerable:!(n=T_(e,o))||n.enumerable});return t};var Vd=(t,e,r)=>(r=t!=null?z_(O_(t)):{},I_(e||!t||!t.__esModule?Mi(r,"default",{value:t,enumerable:!0}):r,t));var op={};qo(op,{DeviceCoderLocal:()=>Xi});import{homedir as Iv}from"node:os";import np from"node:path";import{mkdir as Rv}from"node:fs/promises";function Cv(t){let e=[`TASK:
|
|
3
3
|
${t.task}`,`
|
|
4
4
|
CONTEXT (OIOXO capsule):
|
|
5
5
|
${t.grounding}`];return t.error&&e.push(`
|
|
6
6
|
The previous attempt FAILED \u2014 fix with a minimal change:
|
|
7
7
|
${t.error}`),e.push(`
|
|
8
8
|
Return the changed files now.`),e.join(`
|
|
9
|
-
`)}var
|
|
9
|
+
`)}var jv,Nv,Xi,sp=Fd(()=>{"use strict";Gi();jv="hf:Qwen/Qwen2.5-Coder-1.5B-Instruct-GGUF/qwen2.5-coder-1.5b-instruct-q4_k_m.gguf",Nv=`You are OIOXO, a precise on-device coding agent. Given a TASK and a CONTEXT capsule
|
|
10
10
|
(the minimal relevant slice of the repo), make the SMALLEST change that satisfies the task.
|
|
11
11
|
Output ONLY the changed files, each as:
|
|
12
12
|
FILE: <relative/path>
|
|
13
13
|
\`\`\`
|
|
14
14
|
<the ENTIRE new content of that file>
|
|
15
15
|
\`\`\`
|
|
16
|
-
Emit complete file contents (never a diff). No prose outside FILE blocks.`;
|
|
17
|
-
(or run without --local to use a BYOK key). It ships prebuilt binaries \u2014 no compiler needed.`)}let{getLlama:r,LlamaChatSession:n,resolveModelFile:o}=e,s=
|
|
16
|
+
Emit complete file contents (never a diff). No prose outside FILE blocks.`;Xi=class{onNote;label="OIOXO on-device (private, local model)";session=null;modelLabel="";constructor(e=()=>{}){this.onNote=e}async ensureSession(){if(this.session)return this.session;let e;try{e=await import("node-llama-cpp")}catch{throw new Error(`On-device mode needs node-llama-cpp. Install it once: npm i -g node-llama-cpp
|
|
17
|
+
(or run without --local to use a BYOK key). It ships prebuilt binaries \u2014 no compiler needed.`)}let{getLlama:r,LlamaChatSession:n,resolveModelFile:o}=e,s=np.join(Iv(),".oioxo","models");await Rv(s,{recursive:!0});let i=process.env.OIOXO_LOCAL_MODEL||jv;this.onNote(`\xB7 preparing the on-device model (${i.split("/").pop()}) \u2014 first run downloads it once\u2026`);let a=await o(i,s),u=await(await r()).loadModel({modelPath:a}),l=await u.createContext({contextSize:Math.min(8192,u.trainContextSize)}),d=new n({contextSequence:l.getSequence(),systemPrompt:Nv});this.modelLabel=np.basename(a),this.onNote(`\xB7 on-device model ready: ${this.modelLabel} (private, no tokens leave your machine)`);let f={prompt:m=>d.prompt(m,{temperature:.2,maxTokens:4096})};return this.session=f,f}async generate(e){let n=await(await this.ensureSession()).prompt(Cv(e));return Ji(n)}}});function Zv(t){let e=[`TASK:
|
|
18
18
|
${t.task}`,`
|
|
19
19
|
CONTEXT (OIOXO capsule):
|
|
20
20
|
${t.grounding}`];return t.error&&e.push(`
|
|
21
21
|
The previous attempt FAILED with this error \u2014 fix it with a minimal change:
|
|
22
22
|
${t.error}`),e.push(`
|
|
23
23
|
Return the changed files now, each as a FILE: block.`),e.join(`
|
|
24
|
-
`)}function
|
|
24
|
+
`)}function Yi(t){let e=t.trim().replace(/^['"`]|['"`]$/g,"").replace(/\\/g,"/").replace(/^\.\/+/,"");return!e||e==="."||e.startsWith("/")||/^[a-zA-Z]:\//.test(e)||e.split("/").some(r=>r==="..")?null:e}function Ji(t){let e=[],r=/FILE:\s*([^\n`]+?)\s*\n```[a-zA-Z0-9+\-.]*\n([\s\S]*?)```/g,n;for(;n=r.exec(t);){let o=Yi(n[1]);o&&e.push({path:o,content:n[2].replace(/\n$/,"")})}return e}function cp(t={}){if(t.local||process.env.OIOXO_LOCAL==="1")return{coder:new Wi(t.onNote)};let e=t.config??{},r=process.env.OIOXO_PROVIDER||e.provider,n=process.env.OIOXO_MODEL||e.model,o=process.env.OIOXO_API_KEY||e.apiKey,s=process.env.OIOXO_BASE_URL||e.baseUrl;return r&&n?{coder:new Fr({provider:r,model:n,key:o,baseUrl:s})}:process.env.OPENAI_API_KEY?{coder:new Fr({provider:"openai",model:process.env.OIOXO_MODEL||"gpt-4.1",key:process.env.OPENAI_API_KEY})}:process.env.ANTHROPIC_API_KEY?{coder:new Fr({provider:"anthropic",model:process.env.OIOXO_MODEL||"claude-sonnet-4-6",key:process.env.ANTHROPIC_API_KEY})}:process.env.GROQ_API_KEY?{coder:new Fr({provider:"groq",model:process.env.OIOXO_MODEL||"llama-3.3-70b-versatile",key:process.env.GROQ_API_KEY})}:{error:`No coder configured. Either:
|
|
25
25
|
\u2022 set a key: OPENAI_API_KEY / ANTHROPIC_API_KEY / GROQ_API_KEY (optionally OIOXO_MODEL)
|
|
26
26
|
\u2022 or any OpenAI-compatible base: OIOXO_PROVIDER=custom OIOXO_BASE_URL=\u2026 OIOXO_MODEL=\u2026 OIOXO_API_KEY=\u2026
|
|
27
27
|
\u2022 or local Ollama: OIOXO_PROVIDER=ollama OIOXO_MODEL=qwen2.5-coder (no key)
|
|
28
|
-
On-device OIOXO (\`--local\`) is coming next.`}}var
|
|
28
|
+
On-device OIOXO (\`--local\`) is coming next.`}}var ip,ap,Fr,Wi,Gi=Fd(()=>{"use strict";ip=`You are OIOXO, a precise coding agent. You are given a TASK and a CONTEXT capsule
|
|
29
29
|
(the minimal relevant slice of the user's repository \u2014 full excerpts for the key files,
|
|
30
30
|
signatures only for their neighbors). Make the SMALLEST change that satisfies the task.
|
|
31
31
|
|
|
@@ -38,14 +38,15 @@ FILE: <relative/path>
|
|
|
38
38
|
Rules:
|
|
39
39
|
- Emit the COMPLETE file content, never a diff or "// unchanged" placeholder.
|
|
40
40
|
- Touch as few files as possible. Do not invent files you weren't shown unless the task needs a new one.
|
|
41
|
-
- No prose outside the FILE blocks.`;Fd={openai:"https://api.openai.com/v1",groq:"https://api.groq.com/openai/v1",mistral:"https://api.mistral.ai/v1",together:"https://api.together.xyz/v1",ollama:"http://localhost:11434/v1",anthropic:"https://api.anthropic.com",custom:""},Ar=class{cfg;label;constructor(e){this.cfg=e,this.label=`your ${e.provider} key (${e.model})`}async generate(e){let r=rv(e),n=this.cfg.provider==="anthropic"?await this.callAnthropic(r):await this.callOpenAICompatible(r);return Zi(n)}async callOpenAICompatible(e){let r=(this.cfg.baseUrl||Fd[this.cfg.provider]).replace(/\/$/,"");if(!r)throw new Error("a baseUrl is required for the custom provider");let n={"content-type":"application/json"};this.cfg.key&&(n.authorization=`Bearer ${this.cfg.key}`);let o=await fetch(`${r}/chat/completions`,{method:"POST",headers:n,body:JSON.stringify({model:this.cfg.model,temperature:.2,messages:[{role:"system",content:Ud},{role:"user",content:e}]})});if(!o.ok)throw new Error(`${this.cfg.provider} ${o.status}: ${(await o.text()).slice(0,300)}`);return(await o.json()).choices?.[0]?.message?.content??""}async callAnthropic(e){let r=(this.cfg.baseUrl||Fd.anthropic).replace(/\/$/,""),n=await fetch(`${r}/v1/messages`,{method:"POST",headers:{"content-type":"application/json","x-api-key":this.cfg.key??"","anthropic-version":"2023-06-01"},body:JSON.stringify({model:this.cfg.model,max_tokens:8192,temperature:.2,system:Ud,messages:[{role:"user",content:e}]})});if(!n.ok)throw new Error(`anthropic ${n.status}: ${(await n.text()).slice(0,300)}`);return((await n.json()).content??[]).map(s=>s.text??"").join("")}},Mi=class{onNote;label="OIOXO on-device (private)";impl=null;constructor(e=()=>{}){this.onNote=e}async generate(e){if(!this.impl){let{DeviceCoderLocal:r}=await Promise.resolve().then(()=>(qd(),Ld));this.impl=new r(this.onNote)}return this.impl.generate(e)}}});var oo=S(Y=>{"use strict";Object.defineProperty(Y,"__esModule",{value:!0});Y.regexpCode=Y.getEsmExportName=Y.getProperty=Y.safeStringify=Y.stringify=Y.strConcat=Y.addCodeArg=Y.str=Y._=Y.nil=Y._Code=Y.Name=Y.IDENTIFIER=Y._CodeOrName=void 0;var ro=class{};Y._CodeOrName=ro;Y.IDENTIFIER=/^[a-z$_][a-z$_0-9]*$/i;var kr=class extends ro{constructor(e){if(super(),!Y.IDENTIFIER.test(e))throw new Error("CodeGen: name must be a valid identifier");this.str=e}toString(){return this.str}emptyStr(){return!1}get names(){return{[this.str]:1}}};Y.Name=kr;var et=class extends ro{constructor(e){super(),this._items=typeof e=="string"?[e]:e}toString(){return this.str}emptyStr(){if(this._items.length>1)return!1;let e=this._items[0];return e===""||e==='""'}get str(){var e;return(e=this._str)!==null&&e!==void 0?e:this._str=this._items.reduce((r,n)=>`${r}${n}`,"")}get names(){var e;return(e=this._names)!==null&&e!==void 0?e:this._names=this._items.reduce((r,n)=>(n instanceof kr&&(r[n.str]=(r[n.str]||0)+1),r),{})}};Y._Code=et;Y.nil=new et("");function Um(t,...e){let r=[t[0]],n=0;for(;n<e.length;)bu(r,e[n]),r.push(t[++n]);return new et(r)}Y._=Um;var xu=new et("+");function Fm(t,...e){let r=[no(t[0])],n=0;for(;n<e.length;)r.push(xu),bu(r,e[n]),r.push(xu,no(t[++n]));return c0(r),new et(r)}Y.str=Fm;function bu(t,e){e instanceof et?t.push(...e._items):e instanceof kr?t.push(e):t.push(d0(e))}Y.addCodeArg=bu;function c0(t){let e=1;for(;e<t.length-1;){if(t[e]===xu){let r=u0(t[e-1],t[e+1]);if(r!==void 0){t.splice(e-1,3,r);continue}t[e++]="+"}e++}}function u0(t,e){if(e==='""')return t;if(t==='""')return e;if(typeof t=="string")return e instanceof kr||t[t.length-1]!=='"'?void 0:typeof e!="string"?`${t.slice(0,-1)}${e}"`:e[0]==='"'?t.slice(0,-1)+e.slice(1):void 0;if(typeof e=="string"&&e[0]==='"'&&!(t instanceof kr))return`"${t}${e.slice(1)}`}function l0(t,e){return e.emptyStr()?t:t.emptyStr()?e:Fm`${t}${e}`}Y.strConcat=l0;function d0(t){return typeof t=="number"||typeof t=="boolean"||t===null?t:no(Array.isArray(t)?t.join(","):t)}function p0(t){return new et(no(t))}Y.stringify=p0;function no(t){return JSON.stringify(t).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}Y.safeStringify=no;function f0(t){return typeof t=="string"&&Y.IDENTIFIER.test(t)?new et(`.${t}`):Um`[${t}]`}Y.getProperty=f0;function m0(t){if(typeof t=="string"&&Y.IDENTIFIER.test(t))return new et(`${t}`);throw new Error(`CodeGen: invalid export name: ${t}, use explicit $id name mapping`)}Y.getEsmExportName=m0;function h0(t){return new et(t.toString())}Y.regexpCode=h0});var ku=S(Le=>{"use strict";Object.defineProperty(Le,"__esModule",{value:!0});Le.ValueScope=Le.ValueScopeName=Le.Scope=Le.varKinds=Le.UsedValueState=void 0;var De=oo(),wu=class extends Error{constructor(e){super(`CodeGen: "code" for ${e} not defined`),this.value=e.value}},As;(function(t){t[t.Started=0]="Started",t[t.Completed=1]="Completed"})(As||(Le.UsedValueState=As={}));Le.varKinds={const:new De.Name("const"),let:new De.Name("let"),var:new De.Name("var")};var Ms=class{constructor({prefixes:e,parent:r}={}){this._names={},this._prefixes=e,this._parent=r}toName(e){return e instanceof De.Name?e:this.name(e)}name(e){return new De.Name(this._newName(e))}_newName(e){let r=this._names[e]||this._nameGroup(e);return`${e}${r.index++}`}_nameGroup(e){var r,n;if(!((n=(r=this._parent)===null||r===void 0?void 0:r._prefixes)===null||n===void 0)&&n.has(e)||this._prefixes&&!this._prefixes.has(e))throw new Error(`CodeGen: prefix "${e}" is not allowed in this scope`);return this._names[e]={prefix:e,index:0}}};Le.Scope=Ms;var Ds=class extends De.Name{constructor(e,r){super(r),this.prefix=e}setValue(e,{property:r,itemIndex:n}){this.value=e,this.scopePath=(0,De._)`.${new De.Name(r)}[${n}]`}};Le.ValueScopeName=Ds;var g0=(0,De._)`\n`,$u=class extends Ms{constructor(e){super(e),this._values={},this._scope=e.scope,this.opts={...e,_n:e.lines?g0:De.nil}}get(){return this._scope}name(e){return new Ds(e,this._newName(e))}value(e,r){var n;if(r.ref===void 0)throw new Error("CodeGen: ref must be passed in value");let o=this.toName(e),{prefix:s}=o,i=(n=r.key)!==null&&n!==void 0?n:r.ref,a=this._values[s];if(a){let l=a.get(i);if(l)return l}else a=this._values[s]=new Map;a.set(i,o);let c=this._scope[s]||(this._scope[s]=[]),u=c.length;return c[u]=r.ref,o.setValue(r,{property:s,itemIndex:u}),o}getValue(e,r){let n=this._values[e];if(n)return n.get(r)}scopeRefs(e,r=this._values){return this._reduceValues(r,n=>{if(n.scopePath===void 0)throw new Error(`CodeGen: name "${n}" has no value`);return(0,De._)`${e}${n.scopePath}`})}scopeCode(e=this._values,r,n){return this._reduceValues(e,o=>{if(o.value===void 0)throw new Error(`CodeGen: name "${o}" has no value`);return o.value.code},r,n)}_reduceValues(e,r,n={},o){let s=De.nil;for(let i in e){let a=e[i];if(!a)continue;let c=n[i]=n[i]||new Map;a.forEach(u=>{if(c.has(u))return;c.set(u,As.Started);let l=r(u);if(l){let d=this.opts.es5?Le.varKinds.var:Le.varKinds.const;s=(0,De._)`${s}${d} ${u} = ${l};${this.opts._n}`}else if(l=o?.(u))s=(0,De._)`${s}${l}${this.opts._n}`;else throw new wu(u);c.set(u,As.Completed)})}return s}};Le.ValueScope=$u});var U=S(F=>{"use strict";Object.defineProperty(F,"__esModule",{value:!0});F.or=F.and=F.not=F.CodeGen=F.operators=F.varKinds=F.ValueScopeName=F.ValueScope=F.Scope=F.Name=F.regexpCode=F.stringify=F.getProperty=F.nil=F.strConcat=F.str=F._=void 0;var X=oo(),ct=ku(),Vt=oo();Object.defineProperty(F,"_",{enumerable:!0,get:function(){return Vt._}});Object.defineProperty(F,"str",{enumerable:!0,get:function(){return Vt.str}});Object.defineProperty(F,"strConcat",{enumerable:!0,get:function(){return Vt.strConcat}});Object.defineProperty(F,"nil",{enumerable:!0,get:function(){return Vt.nil}});Object.defineProperty(F,"getProperty",{enumerable:!0,get:function(){return Vt.getProperty}});Object.defineProperty(F,"stringify",{enumerable:!0,get:function(){return Vt.stringify}});Object.defineProperty(F,"regexpCode",{enumerable:!0,get:function(){return Vt.regexpCode}});Object.defineProperty(F,"Name",{enumerable:!0,get:function(){return Vt.Name}});var Fs=ku();Object.defineProperty(F,"Scope",{enumerable:!0,get:function(){return Fs.Scope}});Object.defineProperty(F,"ValueScope",{enumerable:!0,get:function(){return Fs.ValueScope}});Object.defineProperty(F,"ValueScopeName",{enumerable:!0,get:function(){return Fs.ValueScopeName}});Object.defineProperty(F,"varKinds",{enumerable:!0,get:function(){return Fs.varKinds}});F.operators={GT:new X._Code(">"),GTE:new X._Code(">="),LT:new X._Code("<"),LTE:new X._Code("<="),EQ:new X._Code("==="),NEQ:new X._Code("!=="),NOT:new X._Code("!"),OR:new X._Code("||"),AND:new X._Code("&&"),ADD:new X._Code("+")};var Et=class{optimizeNodes(){return this}optimizeNames(e,r){return this}},Su=class extends Et{constructor(e,r,n){super(),this.varKind=e,this.name=r,this.rhs=n}render({es5:e,_n:r}){let n=e?ct.varKinds.var:this.varKind,o=this.rhs===void 0?"":` = ${this.rhs}`;return`${n} ${this.name}${o};`+r}optimizeNames(e,r){if(e[this.name.str])return this.rhs&&(this.rhs=rn(this.rhs,e,r)),this}get names(){return this.rhs instanceof X._CodeOrName?this.rhs.names:{}}},Ls=class extends Et{constructor(e,r,n){super(),this.lhs=e,this.rhs=r,this.sideEffects=n}render({_n:e}){return`${this.lhs} = ${this.rhs};`+e}optimizeNames(e,r){if(!(this.lhs instanceof X.Name&&!e[this.lhs.str]&&!this.sideEffects))return this.rhs=rn(this.rhs,e,r),this}get names(){let e=this.lhs instanceof X.Name?{}:{...this.lhs.names};return Us(e,this.rhs)}},zu=class extends Ls{constructor(e,r,n,o){super(e,n,o),this.op=r}render({_n:e}){return`${this.lhs} ${this.op}= ${this.rhs};`+e}},Tu=class extends Et{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){return`${this.label}:`+e}},Pu=class extends Et{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){return`break${this.label?` ${this.label}`:""};`+e}},Eu=class extends Et{constructor(e){super(),this.error=e}render({_n:e}){return`throw ${this.error};`+e}get names(){return this.error.names}},Ou=class extends Et{constructor(e){super(),this.code=e}render({_n:e}){return`${this.code};`+e}optimizeNodes(){return`${this.code}`?this:void 0}optimizeNames(e,r){return this.code=rn(this.code,e,r),this}get names(){return this.code instanceof X._CodeOrName?this.code.names:{}}},so=class extends Et{constructor(e=[]){super(),this.nodes=e}render(e){return this.nodes.reduce((r,n)=>r+n.render(e),"")}optimizeNodes(){let{nodes:e}=this,r=e.length;for(;r--;){let n=e[r].optimizeNodes();Array.isArray(n)?e.splice(r,1,...n):n?e[r]=n:e.splice(r,1)}return e.length>0?this:void 0}optimizeNames(e,r){let{nodes:n}=this,o=n.length;for(;o--;){let s=n[o];s.optimizeNames(e,r)||(y0(e,s.names),n.splice(o,1))}return n.length>0?this:void 0}get names(){return this.nodes.reduce((e,r)=>Tr(e,r.names),{})}},Ot=class extends so{render(e){return"{"+e._n+super.render(e)+"}"+e._n}},Iu=class extends so{},tn=class extends Ot{};tn.kind="else";var Sr=class t extends Ot{constructor(e,r){super(r),this.condition=e}render(e){let r=`if(${this.condition})`+super.render(e);return this.else&&(r+="else "+this.else.render(e)),r}optimizeNodes(){super.optimizeNodes();let e=this.condition;if(e===!0)return this.nodes;let r=this.else;if(r){let n=r.optimizeNodes();r=this.else=Array.isArray(n)?new tn(n):n}if(r)return e===!1?r instanceof t?r:r.nodes:this.nodes.length?this:new t(Vm(e),r instanceof t?[r]:r.nodes);if(!(e===!1||!this.nodes.length))return this}optimizeNames(e,r){var n;if(this.else=(n=this.else)===null||n===void 0?void 0:n.optimizeNames(e,r),!!(super.optimizeNames(e,r)||this.else))return this.condition=rn(this.condition,e,r),this}get names(){let e=super.names;return Us(e,this.condition),this.else&&Tr(e,this.else.names),e}};Sr.kind="if";var zr=class extends Ot{};zr.kind="for";var Ru=class extends zr{constructor(e){super(),this.iteration=e}render(e){return`for(${this.iteration})`+super.render(e)}optimizeNames(e,r){if(super.optimizeNames(e,r))return this.iteration=rn(this.iteration,e,r),this}get names(){return Tr(super.names,this.iteration.names)}},ju=class extends zr{constructor(e,r,n,o){super(),this.varKind=e,this.name=r,this.from=n,this.to=o}render(e){let r=e.es5?ct.varKinds.var:this.varKind,{name:n,from:o,to:s}=this;return`for(${r} ${n}=${o}; ${n}<${s}; ${n}++)`+super.render(e)}get names(){let e=Us(super.names,this.from);return Us(e,this.to)}},qs=class extends zr{constructor(e,r,n,o){super(),this.loop=e,this.varKind=r,this.name=n,this.iterable=o}render(e){return`for(${this.varKind} ${this.name} ${this.loop} ${this.iterable})`+super.render(e)}optimizeNames(e,r){if(super.optimizeNames(e,r))return this.iterable=rn(this.iterable,e,r),this}get names(){return Tr(super.names,this.iterable.names)}},io=class extends Ot{constructor(e,r,n){super(),this.name=e,this.args=r,this.async=n}render(e){return`${this.async?"async ":""}function ${this.name}(${this.args})`+super.render(e)}};io.kind="func";var ao=class extends so{render(e){return"return "+super.render(e)}};ao.kind="return";var Nu=class extends Ot{render(e){let r="try"+super.render(e);return this.catch&&(r+=this.catch.render(e)),this.finally&&(r+=this.finally.render(e)),r}optimizeNodes(){var e,r;return super.optimizeNodes(),(e=this.catch)===null||e===void 0||e.optimizeNodes(),(r=this.finally)===null||r===void 0||r.optimizeNodes(),this}optimizeNames(e,r){var n,o;return super.optimizeNames(e,r),(n=this.catch)===null||n===void 0||n.optimizeNames(e,r),(o=this.finally)===null||o===void 0||o.optimizeNames(e,r),this}get names(){let e=super.names;return this.catch&&Tr(e,this.catch.names),this.finally&&Tr(e,this.finally.names),e}},co=class extends Ot{constructor(e){super(),this.error=e}render(e){return`catch(${this.error})`+super.render(e)}};co.kind="catch";var uo=class extends Ot{render(e){return"finally"+super.render(e)}};uo.kind="finally";var Cu=class{constructor(e,r={}){this._values={},this._blockStarts=[],this._constants={},this.opts={...r,_n:r.lines?`
|
|
42
|
-
`:""},this._extScope=e,this._scope=new ct.Scope({parent:e}),this._nodes=[new Iu]}toString(){return this._root.render(this.opts)}name(e){return this._scope.name(e)}scopeName(e){return this._extScope.name(e)}scopeValue(e,r){let n=this._extScope.value(e,r);return(this._values[n.prefix]||(this._values[n.prefix]=new Set)).add(n),n}getScopeValue(e,r){return this._extScope.getValue(e,r)}scopeRefs(e){return this._extScope.scopeRefs(e,this._values)}scopeCode(){return this._extScope.scopeCode(this._values)}_def(e,r,n,o){let s=this._scope.toName(r);return n!==void 0&&o&&(this._constants[s.str]=n),this._leafNode(new Su(e,s,n)),s}const(e,r,n){return this._def(ct.varKinds.const,e,r,n)}let(e,r,n){return this._def(ct.varKinds.let,e,r,n)}var(e,r,n){return this._def(ct.varKinds.var,e,r,n)}assign(e,r,n){return this._leafNode(new Ls(e,r,n))}add(e,r){return this._leafNode(new zu(e,F.operators.ADD,r))}code(e){return typeof e=="function"?e():e!==X.nil&&this._leafNode(new Ou(e)),this}object(...e){let r=["{"];for(let[n,o]of e)r.length>1&&r.push(","),r.push(n),(n!==o||this.opts.es5)&&(r.push(":"),(0,X.addCodeArg)(r,o));return r.push("}"),new X._Code(r)}if(e,r,n){if(this._blockNode(new Sr(e)),r&&n)this.code(r).else().code(n).endIf();else if(r)this.code(r).endIf();else if(n)throw new Error('CodeGen: "else" body without "then" body');return this}elseIf(e){return this._elseNode(new Sr(e))}else(){return this._elseNode(new tn)}endIf(){return this._endBlockNode(Sr,tn)}_for(e,r){return this._blockNode(e),r&&this.code(r).endFor(),this}for(e,r){return this._for(new Ru(e),r)}forRange(e,r,n,o,s=this.opts.es5?ct.varKinds.var:ct.varKinds.let){let i=this._scope.toName(e);return this._for(new ju(s,i,r,n),()=>o(i))}forOf(e,r,n,o=ct.varKinds.const){let s=this._scope.toName(e);if(this.opts.es5){let i=r instanceof X.Name?r:this.var("_arr",r);return this.forRange("_i",0,(0,X._)`${i}.length`,a=>{this.var(s,(0,X._)`${i}[${a}]`),n(s)})}return this._for(new qs("of",o,s,r),()=>n(s))}forIn(e,r,n,o=this.opts.es5?ct.varKinds.var:ct.varKinds.const){if(this.opts.ownProperties)return this.forOf(e,(0,X._)`Object.keys(${r})`,n);let s=this._scope.toName(e);return this._for(new qs("in",o,s,r),()=>n(s))}endFor(){return this._endBlockNode(zr)}label(e){return this._leafNode(new Tu(e))}break(e){return this._leafNode(new Pu(e))}return(e){let r=new ao;if(this._blockNode(r),this.code(e),r.nodes.length!==1)throw new Error('CodeGen: "return" should have one node');return this._endBlockNode(ao)}try(e,r,n){if(!r&&!n)throw new Error('CodeGen: "try" without "catch" and "finally"');let o=new Nu;if(this._blockNode(o),this.code(e),r){let s=this.name("e");this._currNode=o.catch=new co(s),r(s)}return n&&(this._currNode=o.finally=new uo,this.code(n)),this._endBlockNode(co,uo)}throw(e){return this._leafNode(new Eu(e))}block(e,r){return this._blockStarts.push(this._nodes.length),e&&this.code(e).endBlock(r),this}endBlock(e){let r=this._blockStarts.pop();if(r===void 0)throw new Error("CodeGen: not in self-balancing block");let n=this._nodes.length-r;if(n<0||e!==void 0&&n!==e)throw new Error(`CodeGen: wrong number of nodes: ${n} vs ${e} expected`);return this._nodes.length=r,this}func(e,r=X.nil,n,o){return this._blockNode(new io(e,r,n)),o&&this.code(o).endFunc(),this}endFunc(){return this._endBlockNode(io)}optimize(e=1){for(;e-- >0;)this._root.optimizeNodes(),this._root.optimizeNames(this._root.names,this._constants)}_leafNode(e){return this._currNode.nodes.push(e),this}_blockNode(e){this._currNode.nodes.push(e),this._nodes.push(e)}_endBlockNode(e,r){let n=this._currNode;if(n instanceof e||r&&n instanceof r)return this._nodes.pop(),this;throw new Error(`CodeGen: not in block "${r?`${e.kind}/${r.kind}`:e.kind}"`)}_elseNode(e){let r=this._currNode;if(!(r instanceof Sr))throw new Error('CodeGen: "else" without "if"');return this._currNode=r.else=e,this}get _root(){return this._nodes[0]}get _currNode(){let e=this._nodes;return e[e.length-1]}set _currNode(e){let r=this._nodes;r[r.length-1]=e}};F.CodeGen=Cu;function Tr(t,e){for(let r in e)t[r]=(t[r]||0)+(e[r]||0);return t}function Us(t,e){return e instanceof X._CodeOrName?Tr(t,e.names):t}function rn(t,e,r){if(t instanceof X.Name)return n(t);if(!o(t))return t;return new X._Code(t._items.reduce((s,i)=>(i instanceof X.Name&&(i=n(i)),i instanceof X._Code?s.push(...i._items):s.push(i),s),[]));function n(s){let i=r[s.str];return i===void 0||e[s.str]!==1?s:(delete e[s.str],i)}function o(s){return s instanceof X._Code&&s._items.some(i=>i instanceof X.Name&&e[i.str]===1&&r[i.str]!==void 0)}}function y0(t,e){for(let r in e)t[r]=(t[r]||0)-(e[r]||0)}function Vm(t){return typeof t=="boolean"||typeof t=="number"||t===null?!t:(0,X._)`!${Zu(t)}`}F.not=Vm;var _0=Hm(F.operators.AND);function v0(...t){return t.reduce(_0)}F.and=v0;var x0=Hm(F.operators.OR);function b0(...t){return t.reduce(x0)}F.or=b0;function Hm(t){return(e,r)=>e===X.nil?r:r===X.nil?e:(0,X._)`${Zu(e)} ${t} ${Zu(r)}`}function Zu(t){return t instanceof X.Name?t:(0,X._)`(${t})`}});var G=S(V=>{"use strict";Object.defineProperty(V,"__esModule",{value:!0});V.checkStrictMode=V.getErrorPath=V.Type=V.useFunc=V.setEvaluated=V.evaluatedPropsToName=V.mergeEvaluated=V.eachItem=V.unescapeJsonPointer=V.escapeJsonPointer=V.escapeFragment=V.unescapeFragment=V.schemaRefOrVal=V.schemaHasRulesButRef=V.schemaHasRules=V.checkUnknownRules=V.alwaysValidSchema=V.toHash=void 0;var re=U(),w0=oo();function $0(t){let e={};for(let r of t)e[r]=!0;return e}V.toHash=$0;function k0(t,e){return typeof e=="boolean"?e:Object.keys(e).length===0?!0:(Jm(t,e),!Xm(e,t.self.RULES.all))}V.alwaysValidSchema=k0;function Jm(t,e=t.schema){let{opts:r,self:n}=t;if(!r.strictSchema||typeof e=="boolean")return;let o=n.RULES.keywords;for(let s in e)o[s]||Ym(t,`unknown keyword: "${s}"`)}V.checkUnknownRules=Jm;function Xm(t,e){if(typeof t=="boolean")return!t;for(let r in t)if(e[r])return!0;return!1}V.schemaHasRules=Xm;function S0(t,e){if(typeof t=="boolean")return!t;for(let r in t)if(r!=="$ref"&&e.all[r])return!0;return!1}V.schemaHasRulesButRef=S0;function z0({topSchemaRef:t,schemaPath:e},r,n,o){if(!o){if(typeof r=="number"||typeof r=="boolean")return r;if(typeof r=="string")return(0,re._)`${r}`}return(0,re._)`${t}${e}${(0,re.getProperty)(n)}`}V.schemaRefOrVal=z0;function T0(t){return Gm(decodeURIComponent(t))}V.unescapeFragment=T0;function P0(t){return encodeURIComponent(Mu(t))}V.escapeFragment=P0;function Mu(t){return typeof t=="number"?`${t}`:t.replace(/~/g,"~0").replace(/\//g,"~1")}V.escapeJsonPointer=Mu;function Gm(t){return t.replace(/~1/g,"/").replace(/~0/g,"~")}V.unescapeJsonPointer=Gm;function E0(t,e){if(Array.isArray(t))for(let r of t)e(r);else e(t)}V.eachItem=E0;function Bm({mergeNames:t,mergeToName:e,mergeValues:r,resultToName:n}){return(o,s,i,a)=>{let c=i===void 0?s:i instanceof re.Name?(s instanceof re.Name?t(o,s,i):e(o,s,i),i):s instanceof re.Name?(e(o,i,s),s):r(s,i);return a===re.Name&&!(c instanceof re.Name)?n(o,c):c}}V.mergeEvaluated={props:Bm({mergeNames:(t,e,r)=>t.if((0,re._)`${r} !== true && ${e} !== undefined`,()=>{t.if((0,re._)`${e} === true`,()=>t.assign(r,!0),()=>t.assign(r,(0,re._)`${r} || {}`).code((0,re._)`Object.assign(${r}, ${e})`))}),mergeToName:(t,e,r)=>t.if((0,re._)`${r} !== true`,()=>{e===!0?t.assign(r,!0):(t.assign(r,(0,re._)`${r} || {}`),Du(t,r,e))}),mergeValues:(t,e)=>t===!0?!0:{...t,...e},resultToName:Wm}),items:Bm({mergeNames:(t,e,r)=>t.if((0,re._)`${r} !== true && ${e} !== undefined`,()=>t.assign(r,(0,re._)`${e} === true ? true : ${r} > ${e} ? ${r} : ${e}`)),mergeToName:(t,e,r)=>t.if((0,re._)`${r} !== true`,()=>t.assign(r,e===!0?!0:(0,re._)`${r} > ${e} ? ${r} : ${e}`)),mergeValues:(t,e)=>t===!0?!0:Math.max(t,e),resultToName:(t,e)=>t.var("items",e)})};function Wm(t,e){if(e===!0)return t.var("props",!0);let r=t.var("props",(0,re._)`{}`);return e!==void 0&&Du(t,r,e),r}V.evaluatedPropsToName=Wm;function Du(t,e,r){Object.keys(r).forEach(n=>t.assign((0,re._)`${e}${(0,re.getProperty)(n)}`,!0))}V.setEvaluated=Du;var Km={};function O0(t,e){return t.scopeValue("func",{ref:e,code:Km[e.code]||(Km[e.code]=new w0._Code(e.code))})}V.useFunc=O0;var Au;(function(t){t[t.Num=0]="Num",t[t.Str=1]="Str"})(Au||(V.Type=Au={}));function I0(t,e,r){if(t instanceof re.Name){let n=e===Au.Num;return r?n?(0,re._)`"[" + ${t} + "]"`:(0,re._)`"['" + ${t} + "']"`:n?(0,re._)`"/" + ${t}`:(0,re._)`"/" + ${t}.replace(/~/g, "~0").replace(/\\//g, "~1")`}return r?(0,re.getProperty)(t).toString():"/"+Mu(t)}V.getErrorPath=I0;function Ym(t,e,r=t.opts.strictSchema){if(r){if(e=`strict mode: ${e}`,r===!0)throw new Error(e);t.self.logger.warn(e)}}V.checkStrictMode=Ym});var It=S(Lu=>{"use strict";Object.defineProperty(Lu,"__esModule",{value:!0});var Pe=U(),R0={data:new Pe.Name("data"),valCxt:new Pe.Name("valCxt"),instancePath:new Pe.Name("instancePath"),parentData:new Pe.Name("parentData"),parentDataProperty:new Pe.Name("parentDataProperty"),rootData:new Pe.Name("rootData"),dynamicAnchors:new Pe.Name("dynamicAnchors"),vErrors:new Pe.Name("vErrors"),errors:new Pe.Name("errors"),this:new Pe.Name("this"),self:new Pe.Name("self"),scope:new Pe.Name("scope"),json:new Pe.Name("json"),jsonPos:new Pe.Name("jsonPos"),jsonLen:new Pe.Name("jsonLen"),jsonPart:new Pe.Name("jsonPart")};Lu.default=R0});var lo=S(Ee=>{"use strict";Object.defineProperty(Ee,"__esModule",{value:!0});Ee.extendErrors=Ee.resetErrorsCount=Ee.reportExtraError=Ee.reportError=Ee.keyword$DataError=Ee.keywordError=void 0;var W=U(),Vs=G(),je=It();Ee.keywordError={message:({keyword:t})=>(0,W.str)`must pass "${t}" keyword validation`};Ee.keyword$DataError={message:({keyword:t,schemaType:e})=>e?(0,W.str)`"${t}" keyword must be ${e} ($data)`:(0,W.str)`"${t}" keyword is invalid ($data)`};function j0(t,e=Ee.keywordError,r,n){let{it:o}=t,{gen:s,compositeRule:i,allErrors:a}=o,c=th(t,e,r);n??(i||a)?Qm(s,c):eh(o,(0,W._)`[${c}]`)}Ee.reportError=j0;function N0(t,e=Ee.keywordError,r){let{it:n}=t,{gen:o,compositeRule:s,allErrors:i}=n,a=th(t,e,r);Qm(o,a),s||i||eh(n,je.default.vErrors)}Ee.reportExtraError=N0;function C0(t,e){t.assign(je.default.errors,e),t.if((0,W._)`${je.default.vErrors} !== null`,()=>t.if(e,()=>t.assign((0,W._)`${je.default.vErrors}.length`,e),()=>t.assign(je.default.vErrors,null)))}Ee.resetErrorsCount=C0;function Z0({gen:t,keyword:e,schemaValue:r,data:n,errsCount:o,it:s}){if(o===void 0)throw new Error("ajv implementation error");let i=t.name("err");t.forRange("i",o,je.default.errors,a=>{t.const(i,(0,W._)`${je.default.vErrors}[${a}]`),t.if((0,W._)`${i}.instancePath === undefined`,()=>t.assign((0,W._)`${i}.instancePath`,(0,W.strConcat)(je.default.instancePath,s.errorPath))),t.assign((0,W._)`${i}.schemaPath`,(0,W.str)`${s.errSchemaPath}/${e}`),s.opts.verbose&&(t.assign((0,W._)`${i}.schema`,r),t.assign((0,W._)`${i}.data`,n))})}Ee.extendErrors=Z0;function Qm(t,e){let r=t.const("err",e);t.if((0,W._)`${je.default.vErrors} === null`,()=>t.assign(je.default.vErrors,(0,W._)`[${r}]`),(0,W._)`${je.default.vErrors}.push(${r})`),t.code((0,W._)`${je.default.errors}++`)}function eh(t,e){let{gen:r,validateName:n,schemaEnv:o}=t;o.$async?r.throw((0,W._)`new ${t.ValidationError}(${e})`):(r.assign((0,W._)`${n}.errors`,e),r.return(!1))}var Pr={keyword:new W.Name("keyword"),schemaPath:new W.Name("schemaPath"),params:new W.Name("params"),propertyName:new W.Name("propertyName"),message:new W.Name("message"),schema:new W.Name("schema"),parentSchema:new W.Name("parentSchema")};function th(t,e,r){let{createErrors:n}=t.it;return n===!1?(0,W._)`{}`:A0(t,e,r)}function A0(t,e,r={}){let{gen:n,it:o}=t,s=[M0(o,r),D0(t,r)];return L0(t,e,s),n.object(...s)}function M0({errorPath:t},{instancePath:e}){let r=e?(0,W.str)`${t}${(0,Vs.getErrorPath)(e,Vs.Type.Str)}`:t;return[je.default.instancePath,(0,W.strConcat)(je.default.instancePath,r)]}function D0({keyword:t,it:{errSchemaPath:e}},{schemaPath:r,parentSchema:n}){let o=n?e:(0,W.str)`${e}/${t}`;return r&&(o=(0,W.str)`${o}${(0,Vs.getErrorPath)(r,Vs.Type.Str)}`),[Pr.schemaPath,o]}function L0(t,{params:e,message:r},n){let{keyword:o,data:s,schemaValue:i,it:a}=t,{opts:c,propertyName:u,topSchemaRef:l,schemaPath:d}=a;n.push([Pr.keyword,o],[Pr.params,typeof e=="function"?e(t):e||(0,W._)`{}`]),c.messages&&n.push([Pr.message,typeof r=="function"?r(t):r]),c.verbose&&n.push([Pr.schema,i],[Pr.parentSchema,(0,W._)`${l}${d}`],[je.default.data,s]),u&&n.push([Pr.propertyName,u])}});var nh=S(nn=>{"use strict";Object.defineProperty(nn,"__esModule",{value:!0});nn.boolOrEmptySchema=nn.topBoolOrEmptySchema=void 0;var q0=lo(),U0=U(),F0=It(),V0={message:"boolean schema is false"};function H0(t){let{gen:e,schema:r,validateName:n}=t;r===!1?rh(t,!1):typeof r=="object"&&r.$async===!0?e.return(F0.default.data):(e.assign((0,U0._)`${n}.errors`,null),e.return(!0))}nn.topBoolOrEmptySchema=H0;function B0(t,e){let{gen:r,schema:n}=t;n===!1?(r.var(e,!1),rh(t)):r.var(e,!0)}nn.boolOrEmptySchema=B0;function rh(t,e){let{gen:r,data:n}=t,o={gen:r,keyword:"false schema",data:n,schema:!1,schemaCode:!1,schemaValue:!1,params:{},it:t};(0,q0.reportError)(o,V0,void 0,e)}});var qu=S(on=>{"use strict";Object.defineProperty(on,"__esModule",{value:!0});on.getRules=on.isJSONType=void 0;var K0=["string","number","integer","boolean","null","object","array"],J0=new Set(K0);function X0(t){return typeof t=="string"&&J0.has(t)}on.isJSONType=X0;function G0(){let t={number:{type:"number",rules:[]},string:{type:"string",rules:[]},array:{type:"array",rules:[]},object:{type:"object",rules:[]}};return{types:{...t,integer:!0,boolean:!0,null:!0},rules:[{rules:[]},t.number,t.string,t.array,t.object],post:{rules:[]},all:{},keywords:{}}}on.getRules=G0});var Uu=S(Ht=>{"use strict";Object.defineProperty(Ht,"__esModule",{value:!0});Ht.shouldUseRule=Ht.shouldUseGroup=Ht.schemaHasRulesForType=void 0;function W0({schema:t,self:e},r){let n=e.RULES.types[r];return n&&n!==!0&&oh(t,n)}Ht.schemaHasRulesForType=W0;function oh(t,e){return e.rules.some(r=>sh(t,r))}Ht.shouldUseGroup=oh;function sh(t,e){var r;return t[e.keyword]!==void 0||((r=e.definition.implements)===null||r===void 0?void 0:r.some(n=>t[n]!==void 0))}Ht.shouldUseRule=sh});var po=S(Oe=>{"use strict";Object.defineProperty(Oe,"__esModule",{value:!0});Oe.reportTypeError=Oe.checkDataTypes=Oe.checkDataType=Oe.coerceAndCheckDataType=Oe.getJSONTypes=Oe.getSchemaTypes=Oe.DataType=void 0;var Y0=qu(),Q0=Uu(),ek=lo(),L=U(),ih=G(),sn;(function(t){t[t.Correct=0]="Correct",t[t.Wrong=1]="Wrong"})(sn||(Oe.DataType=sn={}));function tk(t){let e=ah(t.type);if(e.includes("null")){if(t.nullable===!1)throw new Error("type: null contradicts nullable: false")}else{if(!e.length&&t.nullable!==void 0)throw new Error('"nullable" cannot be used without "type"');t.nullable===!0&&e.push("null")}return e}Oe.getSchemaTypes=tk;function ah(t){let e=Array.isArray(t)?t:t?[t]:[];if(e.every(Y0.isJSONType))return e;throw new Error("type must be JSONType or JSONType[]: "+e.join(","))}Oe.getJSONTypes=ah;function rk(t,e){let{gen:r,data:n,opts:o}=t,s=nk(e,o.coerceTypes),i=e.length>0&&!(s.length===0&&e.length===1&&(0,Q0.schemaHasRulesForType)(t,e[0]));if(i){let a=Vu(e,n,o.strictNumbers,sn.Wrong);r.if(a,()=>{s.length?ok(t,e,s):Hu(t)})}return i}Oe.coerceAndCheckDataType=rk;var ch=new Set(["string","number","integer","boolean","null"]);function nk(t,e){return e?t.filter(r=>ch.has(r)||e==="array"&&r==="array"):[]}function ok(t,e,r){let{gen:n,data:o,opts:s}=t,i=n.let("dataType",(0,L._)`typeof ${o}`),a=n.let("coerced",(0,L._)`undefined`);s.coerceTypes==="array"&&n.if((0,L._)`${i} == 'object' && Array.isArray(${o}) && ${o}.length == 1`,()=>n.assign(o,(0,L._)`${o}[0]`).assign(i,(0,L._)`typeof ${o}`).if(Vu(e,o,s.strictNumbers),()=>n.assign(a,o))),n.if((0,L._)`${a} !== undefined`);for(let u of r)(ch.has(u)||u==="array"&&s.coerceTypes==="array")&&c(u);n.else(),Hu(t),n.endIf(),n.if((0,L._)`${a} !== undefined`,()=>{n.assign(o,a),sk(t,a)});function c(u){switch(u){case"string":n.elseIf((0,L._)`${i} == "number" || ${i} == "boolean"`).assign(a,(0,L._)`"" + ${o}`).elseIf((0,L._)`${o} === null`).assign(a,(0,L._)`""`);return;case"number":n.elseIf((0,L._)`${i} == "boolean" || ${o} === null
|
|
41
|
+
- No prose outside the FILE blocks.`;ap={openai:"https://api.openai.com/v1",groq:"https://api.groq.com/openai/v1",mistral:"https://api.mistral.ai/v1",together:"https://api.together.xyz/v1",ollama:"http://localhost:11434/v1",anthropic:"https://api.anthropic.com",custom:""},Fr=class{cfg;label;constructor(e){this.cfg=e,this.label=`your ${e.provider} key (${e.model})`}async generate(e){let r=Zv(e),n=this.cfg.provider==="anthropic"?await this.callAnthropic(r):await this.callOpenAICompatible(r);return Ji(n)}async callOpenAICompatible(e){let r=(this.cfg.baseUrl||ap[this.cfg.provider]).replace(/\/$/,"");if(!r)throw new Error("a baseUrl is required for the custom provider");let n={"content-type":"application/json"};this.cfg.key&&(n.authorization=`Bearer ${this.cfg.key}`);let o=await fetch(`${r}/chat/completions`,{method:"POST",headers:n,body:JSON.stringify({model:this.cfg.model,temperature:.2,messages:[{role:"system",content:ip},{role:"user",content:e}]})});if(!o.ok)throw new Error(`${this.cfg.provider} ${o.status}: ${(await o.text()).slice(0,300)}`);return(await o.json()).choices?.[0]?.message?.content??""}async callAnthropic(e){let r=(this.cfg.baseUrl||ap.anthropic).replace(/\/$/,""),n=await fetch(`${r}/v1/messages`,{method:"POST",headers:{"content-type":"application/json","x-api-key":this.cfg.key??"","anthropic-version":"2023-06-01"},body:JSON.stringify({model:this.cfg.model,max_tokens:8192,temperature:.2,system:ip,messages:[{role:"user",content:e}]})});if(!n.ok)throw new Error(`anthropic ${n.status}: ${(await n.text()).slice(0,300)}`);return((await n.json()).content??[]).map(s=>s.text??"").join("")}},Wi=class{onNote;label="OIOXO on-device (private)";impl=null;constructor(e=()=>{}){this.onNote=e}async generate(e){if(!this.impl){let{DeviceCoderLocal:r}=await Promise.resolve().then(()=>(sp(),op));this.impl=new r(this.onNote)}return this.impl.generate(e)}}});var fo=S(Y=>{"use strict";Object.defineProperty(Y,"__esModule",{value:!0});Y.regexpCode=Y.getEsmExportName=Y.getProperty=Y.safeStringify=Y.stringify=Y.strConcat=Y.addCodeArg=Y.str=Y._=Y.nil=Y._Code=Y.Name=Y.IDENTIFIER=Y._CodeOrName=void 0;var lo=class{};Y._CodeOrName=lo;Y.IDENTIFIER=/^[a-z$_][a-z$_0-9]*$/i;var Ir=class extends lo{constructor(e){if(super(),!Y.IDENTIFIER.test(e))throw new Error("CodeGen: name must be a valid identifier");this.str=e}toString(){return this.str}emptyStr(){return!1}get names(){return{[this.str]:1}}};Y.Name=Ir;var tt=class extends lo{constructor(e){super(),this._items=typeof e=="string"?[e]:e}toString(){return this.str}emptyStr(){if(this._items.length>1)return!1;let e=this._items[0];return e===""||e==='""'}get str(){var e;return(e=this._str)!==null&&e!==void 0?e:this._str=this._items.reduce((r,n)=>`${r}${n}`,"")}get names(){var e;return(e=this._names)!==null&&e!==void 0?e:this._names=this._items.reduce((r,n)=>(n instanceof Ir&&(r[n.str]=(r[n.str]||0)+1),r),{})}};Y._Code=tt;Y.nil=new tt("");function yh(t,...e){let r=[t[0]],n=0;for(;n<e.length;)Lu(r,e[n]),r.push(t[++n]);return new tt(r)}Y._=yh;var Du=new tt("+");function _h(t,...e){let r=[po(t[0])],n=0;for(;n<e.length;)r.push(Du),Lu(r,e[n]),r.push(Du,po(t[++n]));return q0(r),new tt(r)}Y.str=_h;function Lu(t,e){e instanceof tt?t.push(...e._items):e instanceof Ir?t.push(e):t.push(V0(e))}Y.addCodeArg=Lu;function q0(t){let e=1;for(;e<t.length-1;){if(t[e]===Du){let r=U0(t[e-1],t[e+1]);if(r!==void 0){t.splice(e-1,3,r);continue}t[e++]="+"}e++}}function U0(t,e){if(e==='""')return t;if(t==='""')return e;if(typeof t=="string")return e instanceof Ir||t[t.length-1]!=='"'?void 0:typeof e!="string"?`${t.slice(0,-1)}${e}"`:e[0]==='"'?t.slice(0,-1)+e.slice(1):void 0;if(typeof e=="string"&&e[0]==='"'&&!(t instanceof Ir))return`"${t}${e.slice(1)}`}function F0(t,e){return e.emptyStr()?t:t.emptyStr()?e:_h`${t}${e}`}Y.strConcat=F0;function V0(t){return typeof t=="number"||typeof t=="boolean"||t===null?t:po(Array.isArray(t)?t.join(","):t)}function H0(t){return new tt(po(t))}Y.stringify=H0;function po(t){return JSON.stringify(t).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}Y.safeStringify=po;function K0(t){return typeof t=="string"&&Y.IDENTIFIER.test(t)?new tt(`.${t}`):yh`[${t}]`}Y.getProperty=K0;function B0(t){if(typeof t=="string"&&Y.IDENTIFIER.test(t))return new tt(`${t}`);throw new Error(`CodeGen: invalid export name: ${t}, use explicit $id name mapping`)}Y.getEsmExportName=B0;function X0(t){return new tt(t.toString())}Y.regexpCode=X0});var Fu=S(Ue=>{"use strict";Object.defineProperty(Ue,"__esModule",{value:!0});Ue.ValueScope=Ue.ValueScopeName=Ue.Scope=Ue.varKinds=Ue.UsedValueState=void 0;var qe=fo(),qu=class extends Error{constructor(e){super(`CodeGen: "code" for ${e} not defined`),this.value=e.value}},Gs;(function(t){t[t.Started=0]="Started",t[t.Completed=1]="Completed"})(Gs||(Ue.UsedValueState=Gs={}));Ue.varKinds={const:new qe.Name("const"),let:new qe.Name("let"),var:new qe.Name("var")};var Ws=class{constructor({prefixes:e,parent:r}={}){this._names={},this._prefixes=e,this._parent=r}toName(e){return e instanceof qe.Name?e:this.name(e)}name(e){return new qe.Name(this._newName(e))}_newName(e){let r=this._names[e]||this._nameGroup(e);return`${e}${r.index++}`}_nameGroup(e){var r,n;if(!((n=(r=this._parent)===null||r===void 0?void 0:r._prefixes)===null||n===void 0)&&n.has(e)||this._prefixes&&!this._prefixes.has(e))throw new Error(`CodeGen: prefix "${e}" is not allowed in this scope`);return this._names[e]={prefix:e,index:0}}};Ue.Scope=Ws;var Ys=class extends qe.Name{constructor(e,r){super(r),this.prefix=e}setValue(e,{property:r,itemIndex:n}){this.value=e,this.scopePath=(0,qe._)`.${new qe.Name(r)}[${n}]`}};Ue.ValueScopeName=Ys;var J0=(0,qe._)`\n`,Uu=class extends Ws{constructor(e){super(e),this._values={},this._scope=e.scope,this.opts={...e,_n:e.lines?J0:qe.nil}}get(){return this._scope}name(e){return new Ys(e,this._newName(e))}value(e,r){var n;if(r.ref===void 0)throw new Error("CodeGen: ref must be passed in value");let o=this.toName(e),{prefix:s}=o,i=(n=r.key)!==null&&n!==void 0?n:r.ref,a=this._values[s];if(a){let l=a.get(i);if(l)return l}else a=this._values[s]=new Map;a.set(i,o);let c=this._scope[s]||(this._scope[s]=[]),u=c.length;return c[u]=r.ref,o.setValue(r,{property:s,itemIndex:u}),o}getValue(e,r){let n=this._values[e];if(n)return n.get(r)}scopeRefs(e,r=this._values){return this._reduceValues(r,n=>{if(n.scopePath===void 0)throw new Error(`CodeGen: name "${n}" has no value`);return(0,qe._)`${e}${n.scopePath}`})}scopeCode(e=this._values,r,n){return this._reduceValues(e,o=>{if(o.value===void 0)throw new Error(`CodeGen: name "${o}" has no value`);return o.value.code},r,n)}_reduceValues(e,r,n={},o){let s=qe.nil;for(let i in e){let a=e[i];if(!a)continue;let c=n[i]=n[i]||new Map;a.forEach(u=>{if(c.has(u))return;c.set(u,Gs.Started);let l=r(u);if(l){let d=this.opts.es5?Ue.varKinds.var:Ue.varKinds.const;s=(0,qe._)`${s}${d} ${u} = ${l};${this.opts._n}`}else if(l=o?.(u))s=(0,qe._)`${s}${l}${this.opts._n}`;else throw new qu(u);c.set(u,Gs.Completed)})}return s}};Ue.ValueScope=Uu});var U=S(F=>{"use strict";Object.defineProperty(F,"__esModule",{value:!0});F.or=F.and=F.not=F.CodeGen=F.operators=F.varKinds=F.ValueScopeName=F.ValueScope=F.Scope=F.Name=F.regexpCode=F.stringify=F.getProperty=F.nil=F.strConcat=F.str=F._=void 0;var J=fo(),ut=Fu(),Bt=fo();Object.defineProperty(F,"_",{enumerable:!0,get:function(){return Bt._}});Object.defineProperty(F,"str",{enumerable:!0,get:function(){return Bt.str}});Object.defineProperty(F,"strConcat",{enumerable:!0,get:function(){return Bt.strConcat}});Object.defineProperty(F,"nil",{enumerable:!0,get:function(){return Bt.nil}});Object.defineProperty(F,"getProperty",{enumerable:!0,get:function(){return Bt.getProperty}});Object.defineProperty(F,"stringify",{enumerable:!0,get:function(){return Bt.stringify}});Object.defineProperty(F,"regexpCode",{enumerable:!0,get:function(){return Bt.regexpCode}});Object.defineProperty(F,"Name",{enumerable:!0,get:function(){return Bt.Name}});var ri=Fu();Object.defineProperty(F,"Scope",{enumerable:!0,get:function(){return ri.Scope}});Object.defineProperty(F,"ValueScope",{enumerable:!0,get:function(){return ri.ValueScope}});Object.defineProperty(F,"ValueScopeName",{enumerable:!0,get:function(){return ri.ValueScopeName}});Object.defineProperty(F,"varKinds",{enumerable:!0,get:function(){return ri.varKinds}});F.operators={GT:new J._Code(">"),GTE:new J._Code(">="),LT:new J._Code("<"),LTE:new J._Code("<="),EQ:new J._Code("==="),NEQ:new J._Code("!=="),NOT:new J._Code("!"),OR:new J._Code("||"),AND:new J._Code("&&"),ADD:new J._Code("+")};var Et=class{optimizeNodes(){return this}optimizeNames(e,r){return this}},Vu=class extends Et{constructor(e,r,n){super(),this.varKind=e,this.name=r,this.rhs=n}render({es5:e,_n:r}){let n=e?ut.varKinds.var:this.varKind,o=this.rhs===void 0?"":` = ${this.rhs}`;return`${n} ${this.name}${o};`+r}optimizeNames(e,r){if(e[this.name.str])return this.rhs&&(this.rhs=un(this.rhs,e,r)),this}get names(){return this.rhs instanceof J._CodeOrName?this.rhs.names:{}}},Qs=class extends Et{constructor(e,r,n){super(),this.lhs=e,this.rhs=r,this.sideEffects=n}render({_n:e}){return`${this.lhs} = ${this.rhs};`+e}optimizeNames(e,r){if(!(this.lhs instanceof J.Name&&!e[this.lhs.str]&&!this.sideEffects))return this.rhs=un(this.rhs,e,r),this}get names(){let e=this.lhs instanceof J.Name?{}:{...this.lhs.names};return ti(e,this.rhs)}},Hu=class extends Qs{constructor(e,r,n,o){super(e,n,o),this.op=r}render({_n:e}){return`${this.lhs} ${this.op}= ${this.rhs};`+e}},Ku=class extends Et{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){return`${this.label}:`+e}},Bu=class extends Et{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){return`break${this.label?` ${this.label}`:""};`+e}},Xu=class extends Et{constructor(e){super(),this.error=e}render({_n:e}){return`throw ${this.error};`+e}get names(){return this.error.names}},Ju=class extends Et{constructor(e){super(),this.code=e}render({_n:e}){return`${this.code};`+e}optimizeNodes(){return`${this.code}`?this:void 0}optimizeNames(e,r){return this.code=un(this.code,e,r),this}get names(){return this.code instanceof J._CodeOrName?this.code.names:{}}},mo=class extends Et{constructor(e=[]){super(),this.nodes=e}render(e){return this.nodes.reduce((r,n)=>r+n.render(e),"")}optimizeNodes(){let{nodes:e}=this,r=e.length;for(;r--;){let n=e[r].optimizeNodes();Array.isArray(n)?e.splice(r,1,...n):n?e[r]=n:e.splice(r,1)}return e.length>0?this:void 0}optimizeNames(e,r){let{nodes:n}=this,o=n.length;for(;o--;){let s=n[o];s.optimizeNames(e,r)||(G0(e,s.names),n.splice(o,1))}return n.length>0?this:void 0}get names(){return this.nodes.reduce((e,r)=>Nr(e,r.names),{})}},It=class extends mo{render(e){return"{"+e._n+super.render(e)+"}"+e._n}},Gu=class extends mo{},cn=class extends It{};cn.kind="else";var Rr=class t extends It{constructor(e,r){super(r),this.condition=e}render(e){let r=`if(${this.condition})`+super.render(e);return this.else&&(r+="else "+this.else.render(e)),r}optimizeNodes(){super.optimizeNodes();let e=this.condition;if(e===!0)return this.nodes;let r=this.else;if(r){let n=r.optimizeNodes();r=this.else=Array.isArray(n)?new cn(n):n}if(r)return e===!1?r instanceof t?r:r.nodes:this.nodes.length?this:new t(vh(e),r instanceof t?[r]:r.nodes);if(!(e===!1||!this.nodes.length))return this}optimizeNames(e,r){var n;if(this.else=(n=this.else)===null||n===void 0?void 0:n.optimizeNames(e,r),!!(super.optimizeNames(e,r)||this.else))return this.condition=un(this.condition,e,r),this}get names(){let e=super.names;return ti(e,this.condition),this.else&&Nr(e,this.else.names),e}};Rr.kind="if";var jr=class extends It{};jr.kind="for";var Wu=class extends jr{constructor(e){super(),this.iteration=e}render(e){return`for(${this.iteration})`+super.render(e)}optimizeNames(e,r){if(super.optimizeNames(e,r))return this.iteration=un(this.iteration,e,r),this}get names(){return Nr(super.names,this.iteration.names)}},Yu=class extends jr{constructor(e,r,n,o){super(),this.varKind=e,this.name=r,this.from=n,this.to=o}render(e){let r=e.es5?ut.varKinds.var:this.varKind,{name:n,from:o,to:s}=this;return`for(${r} ${n}=${o}; ${n}<${s}; ${n}++)`+super.render(e)}get names(){let e=ti(super.names,this.from);return ti(e,this.to)}},ei=class extends jr{constructor(e,r,n,o){super(),this.loop=e,this.varKind=r,this.name=n,this.iterable=o}render(e){return`for(${this.varKind} ${this.name} ${this.loop} ${this.iterable})`+super.render(e)}optimizeNames(e,r){if(super.optimizeNames(e,r))return this.iterable=un(this.iterable,e,r),this}get names(){return Nr(super.names,this.iterable.names)}},ho=class extends It{constructor(e,r,n){super(),this.name=e,this.args=r,this.async=n}render(e){return`${this.async?"async ":""}function ${this.name}(${this.args})`+super.render(e)}};ho.kind="func";var go=class extends mo{render(e){return"return "+super.render(e)}};go.kind="return";var Qu=class extends It{render(e){let r="try"+super.render(e);return this.catch&&(r+=this.catch.render(e)),this.finally&&(r+=this.finally.render(e)),r}optimizeNodes(){var e,r;return super.optimizeNodes(),(e=this.catch)===null||e===void 0||e.optimizeNodes(),(r=this.finally)===null||r===void 0||r.optimizeNodes(),this}optimizeNames(e,r){var n,o;return super.optimizeNames(e,r),(n=this.catch)===null||n===void 0||n.optimizeNames(e,r),(o=this.finally)===null||o===void 0||o.optimizeNames(e,r),this}get names(){let e=super.names;return this.catch&&Nr(e,this.catch.names),this.finally&&Nr(e,this.finally.names),e}},yo=class extends It{constructor(e){super(),this.error=e}render(e){return`catch(${this.error})`+super.render(e)}};yo.kind="catch";var _o=class extends It{render(e){return"finally"+super.render(e)}};_o.kind="finally";var el=class{constructor(e,r={}){this._values={},this._blockStarts=[],this._constants={},this.opts={...r,_n:r.lines?`
|
|
42
|
+
`:""},this._extScope=e,this._scope=new ut.Scope({parent:e}),this._nodes=[new Gu]}toString(){return this._root.render(this.opts)}name(e){return this._scope.name(e)}scopeName(e){return this._extScope.name(e)}scopeValue(e,r){let n=this._extScope.value(e,r);return(this._values[n.prefix]||(this._values[n.prefix]=new Set)).add(n),n}getScopeValue(e,r){return this._extScope.getValue(e,r)}scopeRefs(e){return this._extScope.scopeRefs(e,this._values)}scopeCode(){return this._extScope.scopeCode(this._values)}_def(e,r,n,o){let s=this._scope.toName(r);return n!==void 0&&o&&(this._constants[s.str]=n),this._leafNode(new Vu(e,s,n)),s}const(e,r,n){return this._def(ut.varKinds.const,e,r,n)}let(e,r,n){return this._def(ut.varKinds.let,e,r,n)}var(e,r,n){return this._def(ut.varKinds.var,e,r,n)}assign(e,r,n){return this._leafNode(new Qs(e,r,n))}add(e,r){return this._leafNode(new Hu(e,F.operators.ADD,r))}code(e){return typeof e=="function"?e():e!==J.nil&&this._leafNode(new Ju(e)),this}object(...e){let r=["{"];for(let[n,o]of e)r.length>1&&r.push(","),r.push(n),(n!==o||this.opts.es5)&&(r.push(":"),(0,J.addCodeArg)(r,o));return r.push("}"),new J._Code(r)}if(e,r,n){if(this._blockNode(new Rr(e)),r&&n)this.code(r).else().code(n).endIf();else if(r)this.code(r).endIf();else if(n)throw new Error('CodeGen: "else" body without "then" body');return this}elseIf(e){return this._elseNode(new Rr(e))}else(){return this._elseNode(new cn)}endIf(){return this._endBlockNode(Rr,cn)}_for(e,r){return this._blockNode(e),r&&this.code(r).endFor(),this}for(e,r){return this._for(new Wu(e),r)}forRange(e,r,n,o,s=this.opts.es5?ut.varKinds.var:ut.varKinds.let){let i=this._scope.toName(e);return this._for(new Yu(s,i,r,n),()=>o(i))}forOf(e,r,n,o=ut.varKinds.const){let s=this._scope.toName(e);if(this.opts.es5){let i=r instanceof J.Name?r:this.var("_arr",r);return this.forRange("_i",0,(0,J._)`${i}.length`,a=>{this.var(s,(0,J._)`${i}[${a}]`),n(s)})}return this._for(new ei("of",o,s,r),()=>n(s))}forIn(e,r,n,o=this.opts.es5?ut.varKinds.var:ut.varKinds.const){if(this.opts.ownProperties)return this.forOf(e,(0,J._)`Object.keys(${r})`,n);let s=this._scope.toName(e);return this._for(new ei("in",o,s,r),()=>n(s))}endFor(){return this._endBlockNode(jr)}label(e){return this._leafNode(new Ku(e))}break(e){return this._leafNode(new Bu(e))}return(e){let r=new go;if(this._blockNode(r),this.code(e),r.nodes.length!==1)throw new Error('CodeGen: "return" should have one node');return this._endBlockNode(go)}try(e,r,n){if(!r&&!n)throw new Error('CodeGen: "try" without "catch" and "finally"');let o=new Qu;if(this._blockNode(o),this.code(e),r){let s=this.name("e");this._currNode=o.catch=new yo(s),r(s)}return n&&(this._currNode=o.finally=new _o,this.code(n)),this._endBlockNode(yo,_o)}throw(e){return this._leafNode(new Xu(e))}block(e,r){return this._blockStarts.push(this._nodes.length),e&&this.code(e).endBlock(r),this}endBlock(e){let r=this._blockStarts.pop();if(r===void 0)throw new Error("CodeGen: not in self-balancing block");let n=this._nodes.length-r;if(n<0||e!==void 0&&n!==e)throw new Error(`CodeGen: wrong number of nodes: ${n} vs ${e} expected`);return this._nodes.length=r,this}func(e,r=J.nil,n,o){return this._blockNode(new ho(e,r,n)),o&&this.code(o).endFunc(),this}endFunc(){return this._endBlockNode(ho)}optimize(e=1){for(;e-- >0;)this._root.optimizeNodes(),this._root.optimizeNames(this._root.names,this._constants)}_leafNode(e){return this._currNode.nodes.push(e),this}_blockNode(e){this._currNode.nodes.push(e),this._nodes.push(e)}_endBlockNode(e,r){let n=this._currNode;if(n instanceof e||r&&n instanceof r)return this._nodes.pop(),this;throw new Error(`CodeGen: not in block "${r?`${e.kind}/${r.kind}`:e.kind}"`)}_elseNode(e){let r=this._currNode;if(!(r instanceof Rr))throw new Error('CodeGen: "else" without "if"');return this._currNode=r.else=e,this}get _root(){return this._nodes[0]}get _currNode(){let e=this._nodes;return e[e.length-1]}set _currNode(e){let r=this._nodes;r[r.length-1]=e}};F.CodeGen=el;function Nr(t,e){for(let r in e)t[r]=(t[r]||0)+(e[r]||0);return t}function ti(t,e){return e instanceof J._CodeOrName?Nr(t,e.names):t}function un(t,e,r){if(t instanceof J.Name)return n(t);if(!o(t))return t;return new J._Code(t._items.reduce((s,i)=>(i instanceof J.Name&&(i=n(i)),i instanceof J._Code?s.push(...i._items):s.push(i),s),[]));function n(s){let i=r[s.str];return i===void 0||e[s.str]!==1?s:(delete e[s.str],i)}function o(s){return s instanceof J._Code&&s._items.some(i=>i instanceof J.Name&&e[i.str]===1&&r[i.str]!==void 0)}}function G0(t,e){for(let r in e)t[r]=(t[r]||0)-(e[r]||0)}function vh(t){return typeof t=="boolean"||typeof t=="number"||t===null?!t:(0,J._)`!${tl(t)}`}F.not=vh;var W0=xh(F.operators.AND);function Y0(...t){return t.reduce(W0)}F.and=Y0;var Q0=xh(F.operators.OR);function ek(...t){return t.reduce(Q0)}F.or=ek;function xh(t){return(e,r)=>e===J.nil?r:r===J.nil?e:(0,J._)`${tl(e)} ${t} ${tl(r)}`}function tl(t){return t instanceof J.Name?t:(0,J._)`(${t})`}});var G=S(V=>{"use strict";Object.defineProperty(V,"__esModule",{value:!0});V.checkStrictMode=V.getErrorPath=V.Type=V.useFunc=V.setEvaluated=V.evaluatedPropsToName=V.mergeEvaluated=V.eachItem=V.unescapeJsonPointer=V.escapeJsonPointer=V.escapeFragment=V.unescapeFragment=V.schemaRefOrVal=V.schemaHasRulesButRef=V.schemaHasRules=V.checkUnknownRules=V.alwaysValidSchema=V.toHash=void 0;var re=U(),tk=fo();function rk(t){let e={};for(let r of t)e[r]=!0;return e}V.toHash=rk;function nk(t,e){return typeof e=="boolean"?e:Object.keys(e).length===0?!0:($h(t,e),!kh(e,t.self.RULES.all))}V.alwaysValidSchema=nk;function $h(t,e=t.schema){let{opts:r,self:n}=t;if(!r.strictSchema||typeof e=="boolean")return;let o=n.RULES.keywords;for(let s in e)o[s]||Th(t,`unknown keyword: "${s}"`)}V.checkUnknownRules=$h;function kh(t,e){if(typeof t=="boolean")return!t;for(let r in t)if(e[r])return!0;return!1}V.schemaHasRules=kh;function ok(t,e){if(typeof t=="boolean")return!t;for(let r in t)if(r!=="$ref"&&e.all[r])return!0;return!1}V.schemaHasRulesButRef=ok;function sk({topSchemaRef:t,schemaPath:e},r,n,o){if(!o){if(typeof r=="number"||typeof r=="boolean")return r;if(typeof r=="string")return(0,re._)`${r}`}return(0,re._)`${t}${e}${(0,re.getProperty)(n)}`}V.schemaRefOrVal=sk;function ik(t){return Sh(decodeURIComponent(t))}V.unescapeFragment=ik;function ak(t){return encodeURIComponent(nl(t))}V.escapeFragment=ak;function nl(t){return typeof t=="number"?`${t}`:t.replace(/~/g,"~0").replace(/\//g,"~1")}V.escapeJsonPointer=nl;function Sh(t){return t.replace(/~1/g,"/").replace(/~0/g,"~")}V.unescapeJsonPointer=Sh;function ck(t,e){if(Array.isArray(t))for(let r of t)e(r);else e(t)}V.eachItem=ck;function wh({mergeNames:t,mergeToName:e,mergeValues:r,resultToName:n}){return(o,s,i,a)=>{let c=i===void 0?s:i instanceof re.Name?(s instanceof re.Name?t(o,s,i):e(o,s,i),i):s instanceof re.Name?(e(o,i,s),s):r(s,i);return a===re.Name&&!(c instanceof re.Name)?n(o,c):c}}V.mergeEvaluated={props:wh({mergeNames:(t,e,r)=>t.if((0,re._)`${r} !== true && ${e} !== undefined`,()=>{t.if((0,re._)`${e} === true`,()=>t.assign(r,!0),()=>t.assign(r,(0,re._)`${r} || {}`).code((0,re._)`Object.assign(${r}, ${e})`))}),mergeToName:(t,e,r)=>t.if((0,re._)`${r} !== true`,()=>{e===!0?t.assign(r,!0):(t.assign(r,(0,re._)`${r} || {}`),ol(t,r,e))}),mergeValues:(t,e)=>t===!0?!0:{...t,...e},resultToName:zh}),items:wh({mergeNames:(t,e,r)=>t.if((0,re._)`${r} !== true && ${e} !== undefined`,()=>t.assign(r,(0,re._)`${e} === true ? true : ${r} > ${e} ? ${r} : ${e}`)),mergeToName:(t,e,r)=>t.if((0,re._)`${r} !== true`,()=>t.assign(r,e===!0?!0:(0,re._)`${r} > ${e} ? ${r} : ${e}`)),mergeValues:(t,e)=>t===!0?!0:Math.max(t,e),resultToName:(t,e)=>t.var("items",e)})};function zh(t,e){if(e===!0)return t.var("props",!0);let r=t.var("props",(0,re._)`{}`);return e!==void 0&&ol(t,r,e),r}V.evaluatedPropsToName=zh;function ol(t,e,r){Object.keys(r).forEach(n=>t.assign((0,re._)`${e}${(0,re.getProperty)(n)}`,!0))}V.setEvaluated=ol;var bh={};function uk(t,e){return t.scopeValue("func",{ref:e,code:bh[e.code]||(bh[e.code]=new tk._Code(e.code))})}V.useFunc=uk;var rl;(function(t){t[t.Num=0]="Num",t[t.Str=1]="Str"})(rl||(V.Type=rl={}));function lk(t,e,r){if(t instanceof re.Name){let n=e===rl.Num;return r?n?(0,re._)`"[" + ${t} + "]"`:(0,re._)`"['" + ${t} + "']"`:n?(0,re._)`"/" + ${t}`:(0,re._)`"/" + ${t}.replace(/~/g, "~0").replace(/\\//g, "~1")`}return r?(0,re.getProperty)(t).toString():"/"+nl(t)}V.getErrorPath=lk;function Th(t,e,r=t.opts.strictSchema){if(r){if(e=`strict mode: ${e}`,r===!0)throw new Error(e);t.self.logger.warn(e)}}V.checkStrictMode=Th});var Rt=S(sl=>{"use strict";Object.defineProperty(sl,"__esModule",{value:!0});var Pe=U(),dk={data:new Pe.Name("data"),valCxt:new Pe.Name("valCxt"),instancePath:new Pe.Name("instancePath"),parentData:new Pe.Name("parentData"),parentDataProperty:new Pe.Name("parentDataProperty"),rootData:new Pe.Name("rootData"),dynamicAnchors:new Pe.Name("dynamicAnchors"),vErrors:new Pe.Name("vErrors"),errors:new Pe.Name("errors"),this:new Pe.Name("this"),self:new Pe.Name("self"),scope:new Pe.Name("scope"),json:new Pe.Name("json"),jsonPos:new Pe.Name("jsonPos"),jsonLen:new Pe.Name("jsonLen"),jsonPart:new Pe.Name("jsonPart")};sl.default=dk});var vo=S(Oe=>{"use strict";Object.defineProperty(Oe,"__esModule",{value:!0});Oe.extendErrors=Oe.resetErrorsCount=Oe.reportExtraError=Oe.reportError=Oe.keyword$DataError=Oe.keywordError=void 0;var W=U(),ni=G(),Ne=Rt();Oe.keywordError={message:({keyword:t})=>(0,W.str)`must pass "${t}" keyword validation`};Oe.keyword$DataError={message:({keyword:t,schemaType:e})=>e?(0,W.str)`"${t}" keyword must be ${e} ($data)`:(0,W.str)`"${t}" keyword is invalid ($data)`};function pk(t,e=Oe.keywordError,r,n){let{it:o}=t,{gen:s,compositeRule:i,allErrors:a}=o,c=Eh(t,e,r);n??(i||a)?Ph(s,c):Oh(o,(0,W._)`[${c}]`)}Oe.reportError=pk;function fk(t,e=Oe.keywordError,r){let{it:n}=t,{gen:o,compositeRule:s,allErrors:i}=n,a=Eh(t,e,r);Ph(o,a),s||i||Oh(n,Ne.default.vErrors)}Oe.reportExtraError=fk;function mk(t,e){t.assign(Ne.default.errors,e),t.if((0,W._)`${Ne.default.vErrors} !== null`,()=>t.if(e,()=>t.assign((0,W._)`${Ne.default.vErrors}.length`,e),()=>t.assign(Ne.default.vErrors,null)))}Oe.resetErrorsCount=mk;function hk({gen:t,keyword:e,schemaValue:r,data:n,errsCount:o,it:s}){if(o===void 0)throw new Error("ajv implementation error");let i=t.name("err");t.forRange("i",o,Ne.default.errors,a=>{t.const(i,(0,W._)`${Ne.default.vErrors}[${a}]`),t.if((0,W._)`${i}.instancePath === undefined`,()=>t.assign((0,W._)`${i}.instancePath`,(0,W.strConcat)(Ne.default.instancePath,s.errorPath))),t.assign((0,W._)`${i}.schemaPath`,(0,W.str)`${s.errSchemaPath}/${e}`),s.opts.verbose&&(t.assign((0,W._)`${i}.schema`,r),t.assign((0,W._)`${i}.data`,n))})}Oe.extendErrors=hk;function Ph(t,e){let r=t.const("err",e);t.if((0,W._)`${Ne.default.vErrors} === null`,()=>t.assign(Ne.default.vErrors,(0,W._)`[${r}]`),(0,W._)`${Ne.default.vErrors}.push(${r})`),t.code((0,W._)`${Ne.default.errors}++`)}function Oh(t,e){let{gen:r,validateName:n,schemaEnv:o}=t;o.$async?r.throw((0,W._)`new ${t.ValidationError}(${e})`):(r.assign((0,W._)`${n}.errors`,e),r.return(!1))}var Cr={keyword:new W.Name("keyword"),schemaPath:new W.Name("schemaPath"),params:new W.Name("params"),propertyName:new W.Name("propertyName"),message:new W.Name("message"),schema:new W.Name("schema"),parentSchema:new W.Name("parentSchema")};function Eh(t,e,r){let{createErrors:n}=t.it;return n===!1?(0,W._)`{}`:gk(t,e,r)}function gk(t,e,r={}){let{gen:n,it:o}=t,s=[yk(o,r),_k(t,r)];return vk(t,e,s),n.object(...s)}function yk({errorPath:t},{instancePath:e}){let r=e?(0,W.str)`${t}${(0,ni.getErrorPath)(e,ni.Type.Str)}`:t;return[Ne.default.instancePath,(0,W.strConcat)(Ne.default.instancePath,r)]}function _k({keyword:t,it:{errSchemaPath:e}},{schemaPath:r,parentSchema:n}){let o=n?e:(0,W.str)`${e}/${t}`;return r&&(o=(0,W.str)`${o}${(0,ni.getErrorPath)(r,ni.Type.Str)}`),[Cr.schemaPath,o]}function vk(t,{params:e,message:r},n){let{keyword:o,data:s,schemaValue:i,it:a}=t,{opts:c,propertyName:u,topSchemaRef:l,schemaPath:d}=a;n.push([Cr.keyword,o],[Cr.params,typeof e=="function"?e(t):e||(0,W._)`{}`]),c.messages&&n.push([Cr.message,typeof r=="function"?r(t):r]),c.verbose&&n.push([Cr.schema,i],[Cr.parentSchema,(0,W._)`${l}${d}`],[Ne.default.data,s]),u&&n.push([Cr.propertyName,u])}});var Rh=S(ln=>{"use strict";Object.defineProperty(ln,"__esModule",{value:!0});ln.boolOrEmptySchema=ln.topBoolOrEmptySchema=void 0;var xk=vo(),wk=U(),bk=Rt(),$k={message:"boolean schema is false"};function kk(t){let{gen:e,schema:r,validateName:n}=t;r===!1?Ih(t,!1):typeof r=="object"&&r.$async===!0?e.return(bk.default.data):(e.assign((0,wk._)`${n}.errors`,null),e.return(!0))}ln.topBoolOrEmptySchema=kk;function Sk(t,e){let{gen:r,schema:n}=t;n===!1?(r.var(e,!1),Ih(t)):r.var(e,!0)}ln.boolOrEmptySchema=Sk;function Ih(t,e){let{gen:r,data:n}=t,o={gen:r,keyword:"false schema",data:n,schema:!1,schemaCode:!1,schemaValue:!1,params:{},it:t};(0,xk.reportError)(o,$k,void 0,e)}});var il=S(dn=>{"use strict";Object.defineProperty(dn,"__esModule",{value:!0});dn.getRules=dn.isJSONType=void 0;var zk=["string","number","integer","boolean","null","object","array"],Tk=new Set(zk);function Pk(t){return typeof t=="string"&&Tk.has(t)}dn.isJSONType=Pk;function Ok(){let t={number:{type:"number",rules:[]},string:{type:"string",rules:[]},array:{type:"array",rules:[]},object:{type:"object",rules:[]}};return{types:{...t,integer:!0,boolean:!0,null:!0},rules:[{rules:[]},t.number,t.string,t.array,t.object],post:{rules:[]},all:{},keywords:{}}}dn.getRules=Ok});var al=S(Xt=>{"use strict";Object.defineProperty(Xt,"__esModule",{value:!0});Xt.shouldUseRule=Xt.shouldUseGroup=Xt.schemaHasRulesForType=void 0;function Ek({schema:t,self:e},r){let n=e.RULES.types[r];return n&&n!==!0&&jh(t,n)}Xt.schemaHasRulesForType=Ek;function jh(t,e){return e.rules.some(r=>Nh(t,r))}Xt.shouldUseGroup=jh;function Nh(t,e){var r;return t[e.keyword]!==void 0||((r=e.definition.implements)===null||r===void 0?void 0:r.some(n=>t[n]!==void 0))}Xt.shouldUseRule=Nh});var xo=S(Ee=>{"use strict";Object.defineProperty(Ee,"__esModule",{value:!0});Ee.reportTypeError=Ee.checkDataTypes=Ee.checkDataType=Ee.coerceAndCheckDataType=Ee.getJSONTypes=Ee.getSchemaTypes=Ee.DataType=void 0;var Ik=il(),Rk=al(),jk=vo(),L=U(),Ch=G(),pn;(function(t){t[t.Correct=0]="Correct",t[t.Wrong=1]="Wrong"})(pn||(Ee.DataType=pn={}));function Nk(t){let e=Zh(t.type);if(e.includes("null")){if(t.nullable===!1)throw new Error("type: null contradicts nullable: false")}else{if(!e.length&&t.nullable!==void 0)throw new Error('"nullable" cannot be used without "type"');t.nullable===!0&&e.push("null")}return e}Ee.getSchemaTypes=Nk;function Zh(t){let e=Array.isArray(t)?t:t?[t]:[];if(e.every(Ik.isJSONType))return e;throw new Error("type must be JSONType or JSONType[]: "+e.join(","))}Ee.getJSONTypes=Zh;function Ck(t,e){let{gen:r,data:n,opts:o}=t,s=Zk(e,o.coerceTypes),i=e.length>0&&!(s.length===0&&e.length===1&&(0,Rk.schemaHasRulesForType)(t,e[0]));if(i){let a=ul(e,n,o.strictNumbers,pn.Wrong);r.if(a,()=>{s.length?Ak(t,e,s):ll(t)})}return i}Ee.coerceAndCheckDataType=Ck;var Ah=new Set(["string","number","integer","boolean","null"]);function Zk(t,e){return e?t.filter(r=>Ah.has(r)||e==="array"&&r==="array"):[]}function Ak(t,e,r){let{gen:n,data:o,opts:s}=t,i=n.let("dataType",(0,L._)`typeof ${o}`),a=n.let("coerced",(0,L._)`undefined`);s.coerceTypes==="array"&&n.if((0,L._)`${i} == 'object' && Array.isArray(${o}) && ${o}.length == 1`,()=>n.assign(o,(0,L._)`${o}[0]`).assign(i,(0,L._)`typeof ${o}`).if(ul(e,o,s.strictNumbers),()=>n.assign(a,o))),n.if((0,L._)`${a} !== undefined`);for(let u of r)(Ah.has(u)||u==="array"&&s.coerceTypes==="array")&&c(u);n.else(),ll(t),n.endIf(),n.if((0,L._)`${a} !== undefined`,()=>{n.assign(o,a),Mk(t,a)});function c(u){switch(u){case"string":n.elseIf((0,L._)`${i} == "number" || ${i} == "boolean"`).assign(a,(0,L._)`"" + ${o}`).elseIf((0,L._)`${o} === null`).assign(a,(0,L._)`""`);return;case"number":n.elseIf((0,L._)`${i} == "boolean" || ${o} === null
|
|
43
43
|
|| (${i} == "string" && ${o} && ${o} == +${o})`).assign(a,(0,L._)`+${o}`);return;case"integer":n.elseIf((0,L._)`${i} === "boolean" || ${o} === null
|
|
44
44
|
|| (${i} === "string" && ${o} && ${o} == +${o} && !(${o} % 1))`).assign(a,(0,L._)`+${o}`);return;case"boolean":n.elseIf((0,L._)`${o} === "false" || ${o} === 0 || ${o} === null`).assign(a,!1).elseIf((0,L._)`${o} === "true" || ${o} === 1`).assign(a,!0);return;case"null":n.elseIf((0,L._)`${o} === "" || ${o} === 0 || ${o} === false`),n.assign(a,null);return;case"array":n.elseIf((0,L._)`${i} === "string" || ${i} === "number"
|
|
45
|
-
|| ${i} === "boolean" || ${o} === null`).assign(a,(0,L._)`[${o}]`)}}}function sk({gen:t,parentData:e,parentDataProperty:r},n){t.if((0,L._)`${e} !== undefined`,()=>t.assign((0,L._)`${e}[${r}]`,n))}function Fu(t,e,r,n=sn.Correct){let o=n===sn.Correct?L.operators.EQ:L.operators.NEQ,s;switch(t){case"null":return(0,L._)`${e} ${o} null`;case"array":s=(0,L._)`Array.isArray(${e})`;break;case"object":s=(0,L._)`${e} && typeof ${e} == "object" && !Array.isArray(${e})`;break;case"integer":s=i((0,L._)`!(${e} % 1) && !isNaN(${e})`);break;case"number":s=i();break;default:return(0,L._)`typeof ${e} ${o} ${t}`}return n===sn.Correct?s:(0,L.not)(s);function i(a=L.nil){return(0,L.and)((0,L._)`typeof ${e} == "number"`,a,r?(0,L._)`isFinite(${e})`:L.nil)}}Oe.checkDataType=Fu;function Vu(t,e,r,n){if(t.length===1)return Fu(t[0],e,r,n);let o,s=(0,ih.toHash)(t);if(s.array&&s.object){let i=(0,L._)`typeof ${e} != "object"`;o=s.null?i:(0,L._)`!${e} || ${i}`,delete s.null,delete s.array,delete s.object}else o=L.nil;s.number&&delete s.integer;for(let i in s)o=(0,L.and)(o,Fu(i,e,r,n));return o}Oe.checkDataTypes=Vu;var ik={message:({schema:t})=>`must be ${t}`,params:({schema:t,schemaValue:e})=>typeof t=="string"?(0,L._)`{type: ${t}}`:(0,L._)`{type: ${e}}`};function Hu(t){let e=ak(t);(0,ek.reportError)(e,ik)}Oe.reportTypeError=Hu;function ak(t){let{gen:e,data:r,schema:n}=t,o=(0,ih.schemaRefOrVal)(t,n,"type");return{gen:e,keyword:"type",data:r,schema:n.type,schemaCode:o,schemaValue:o,parentSchema:n,params:{},it:t}}});var lh=S(Hs=>{"use strict";Object.defineProperty(Hs,"__esModule",{value:!0});Hs.assignDefaults=void 0;var an=U(),ck=G();function uk(t,e){let{properties:r,items:n}=t.schema;if(e==="object"&&r)for(let o in r)uh(t,o,r[o].default);else e==="array"&&Array.isArray(n)&&n.forEach((o,s)=>uh(t,s,o.default))}Hs.assignDefaults=uk;function uh(t,e,r){let{gen:n,compositeRule:o,data:s,opts:i}=t;if(r===void 0)return;let a=(0,an._)`${s}${(0,an.getProperty)(e)}`;if(o){(0,ck.checkStrictMode)(t,`default is ignored for: ${a}`);return}let c=(0,an._)`${a} === undefined`;i.useDefaults==="empty"&&(c=(0,an._)`${c} || ${a} === null || ${a} === ""`),n.if(c,(0,an._)`${a} = ${(0,an.stringify)(r)}`)}});var tt=S(te=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});te.validateUnion=te.validateArray=te.usePattern=te.callValidateCode=te.schemaProperties=te.allSchemaProperties=te.noPropertyInData=te.propertyInData=te.isOwnProperty=te.hasPropFunc=te.reportMissingProp=te.checkMissingProp=te.checkReportMissingProp=void 0;var ae=U(),Bu=G(),Bt=It(),lk=G();function dk(t,e){let{gen:r,data:n,it:o}=t;r.if(Ju(r,n,e,o.opts.ownProperties),()=>{t.setParams({missingProperty:(0,ae._)`${e}`},!0),t.error()})}te.checkReportMissingProp=dk;function pk({gen:t,data:e,it:{opts:r}},n,o){return(0,ae.or)(...n.map(s=>(0,ae.and)(Ju(t,e,s,r.ownProperties),(0,ae._)`${o} = ${s}`)))}te.checkMissingProp=pk;function fk(t,e){t.setParams({missingProperty:e},!0),t.error()}te.reportMissingProp=fk;function dh(t){return t.scopeValue("func",{ref:Object.prototype.hasOwnProperty,code:(0,ae._)`Object.prototype.hasOwnProperty`})}te.hasPropFunc=dh;function Ku(t,e,r){return(0,ae._)`${dh(t)}.call(${e}, ${r})`}te.isOwnProperty=Ku;function mk(t,e,r,n){let o=(0,ae._)`${e}${(0,ae.getProperty)(r)} !== undefined`;return n?(0,ae._)`${o} && ${Ku(t,e,r)}`:o}te.propertyInData=mk;function Ju(t,e,r,n){let o=(0,ae._)`${e}${(0,ae.getProperty)(r)} === undefined`;return n?(0,ae.or)(o,(0,ae.not)(Ku(t,e,r))):o}te.noPropertyInData=Ju;function ph(t){return t?Object.keys(t).filter(e=>e!=="__proto__"):[]}te.allSchemaProperties=ph;function hk(t,e){return ph(e).filter(r=>!(0,Bu.alwaysValidSchema)(t,e[r]))}te.schemaProperties=hk;function gk({schemaCode:t,data:e,it:{gen:r,topSchemaRef:n,schemaPath:o,errorPath:s},it:i},a,c,u){let l=u?(0,ae._)`${t}, ${e}, ${n}${o}`:e,d=[[Bt.default.instancePath,(0,ae.strConcat)(Bt.default.instancePath,s)],[Bt.default.parentData,i.parentData],[Bt.default.parentDataProperty,i.parentDataProperty],[Bt.default.rootData,Bt.default.rootData]];i.opts.dynamicRef&&d.push([Bt.default.dynamicAnchors,Bt.default.dynamicAnchors]);let m=(0,ae._)`${l}, ${r.object(...d)}`;return c!==ae.nil?(0,ae._)`${a}.call(${c}, ${m})`:(0,ae._)`${a}(${m})`}te.callValidateCode=gk;var yk=(0,ae._)`new RegExp`;function _k({gen:t,it:{opts:e}},r){let n=e.unicodeRegExp?"u":"",{regExp:o}=e.code,s=o(r,n);return t.scopeValue("pattern",{key:s.toString(),ref:s,code:(0,ae._)`${o.code==="new RegExp"?yk:(0,lk.useFunc)(t,o)}(${r}, ${n})`})}te.usePattern=_k;function vk(t){let{gen:e,data:r,keyword:n,it:o}=t,s=e.name("valid");if(o.allErrors){let a=e.let("valid",!0);return i(()=>e.assign(a,!1)),a}return e.var(s,!0),i(()=>e.break()),s;function i(a){let c=e.const("len",(0,ae._)`${r}.length`);e.forRange("i",0,c,u=>{t.subschema({keyword:n,dataProp:u,dataPropType:Bu.Type.Num},s),e.if((0,ae.not)(s),a)})}}te.validateArray=vk;function xk(t){let{gen:e,schema:r,keyword:n,it:o}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");if(r.some(c=>(0,Bu.alwaysValidSchema)(o,c))&&!o.opts.unevaluated)return;let i=e.let("valid",!1),a=e.name("_valid");e.block(()=>r.forEach((c,u)=>{let l=t.subschema({keyword:n,schemaProp:u,compositeRule:!0},a);e.assign(i,(0,ae._)`${i} || ${a}`),t.mergeValidEvaluated(l,a)||e.if((0,ae.not)(i))})),t.result(i,()=>t.reset(),()=>t.error(!0))}te.validateUnion=xk});var hh=S(_t=>{"use strict";Object.defineProperty(_t,"__esModule",{value:!0});_t.validateKeywordUsage=_t.validSchemaType=_t.funcKeywordCode=_t.macroKeywordCode=void 0;var Ne=U(),Er=It(),bk=tt(),wk=lo();function $k(t,e){let{gen:r,keyword:n,schema:o,parentSchema:s,it:i}=t,a=e.macro.call(i.self,o,s,i),c=mh(r,n,a);i.opts.validateSchema!==!1&&i.self.validateSchema(a,!0);let u=r.name("valid");t.subschema({schema:a,schemaPath:Ne.nil,errSchemaPath:`${i.errSchemaPath}/${n}`,topSchemaRef:c,compositeRule:!0},u),t.pass(u,()=>t.error(!0))}_t.macroKeywordCode=$k;function kk(t,e){var r;let{gen:n,keyword:o,schema:s,parentSchema:i,$data:a,it:c}=t;zk(c,e);let u=!a&&e.compile?e.compile.call(c.self,s,i,c):e.validate,l=mh(n,o,u),d=n.let("valid");t.block$data(d,m),t.ok((r=e.valid)!==null&&r!==void 0?r:d);function m(){if(e.errors===!1)h(),e.modifying&&fh(t),g(()=>t.error());else{let b=e.async?f():p();e.modifying&&fh(t),g(()=>Sk(t,b))}}function f(){let b=n.let("ruleErrs",null);return n.try(()=>h((0,Ne._)`await `),v=>n.assign(d,!1).if((0,Ne._)`${v} instanceof ${c.ValidationError}`,()=>n.assign(b,(0,Ne._)`${v}.errors`),()=>n.throw(v))),b}function p(){let b=(0,Ne._)`${l}.errors`;return n.assign(b,null),h(Ne.nil),b}function h(b=e.async?(0,Ne._)`await `:Ne.nil){let v=c.opts.passContext?Er.default.this:Er.default.self,x=!("compile"in e&&!a||e.schema===!1);n.assign(d,(0,Ne._)`${b}${(0,bk.callValidateCode)(t,l,v,x)}`,e.modifying)}function g(b){var v;n.if((0,Ne.not)((v=e.valid)!==null&&v!==void 0?v:d),b)}}_t.funcKeywordCode=kk;function fh(t){let{gen:e,data:r,it:n}=t;e.if(n.parentData,()=>e.assign(r,(0,Ne._)`${n.parentData}[${n.parentDataProperty}]`))}function Sk(t,e){let{gen:r}=t;r.if((0,Ne._)`Array.isArray(${e})`,()=>{r.assign(Er.default.vErrors,(0,Ne._)`${Er.default.vErrors} === null ? ${e} : ${Er.default.vErrors}.concat(${e})`).assign(Er.default.errors,(0,Ne._)`${Er.default.vErrors}.length`),(0,wk.extendErrors)(t)},()=>t.error())}function zk({schemaEnv:t},e){if(e.async&&!t.$async)throw new Error("async keyword in sync schema")}function mh(t,e,r){if(r===void 0)throw new Error(`keyword "${e}" failed to compile`);return t.scopeValue("keyword",typeof r=="function"?{ref:r}:{ref:r,code:(0,Ne.stringify)(r)})}function Tk(t,e,r=!1){return!e.length||e.some(n=>n==="array"?Array.isArray(t):n==="object"?t&&typeof t=="object"&&!Array.isArray(t):typeof t==n||r&&typeof t>"u")}_t.validSchemaType=Tk;function Pk({schema:t,opts:e,self:r,errSchemaPath:n},o,s){if(Array.isArray(o.keyword)?!o.keyword.includes(s):o.keyword!==s)throw new Error("ajv implementation error");let i=o.dependencies;if(i?.some(a=>!Object.prototype.hasOwnProperty.call(t,a)))throw new Error(`parent schema must have dependencies of ${s}: ${i.join(",")}`);if(o.validateSchema&&!o.validateSchema(t[s])){let c=`keyword "${s}" value is invalid at path "${n}": `+r.errorsText(o.validateSchema.errors);if(e.validateSchema==="log")r.logger.error(c);else throw new Error(c)}}_t.validateKeywordUsage=Pk});var yh=S(Kt=>{"use strict";Object.defineProperty(Kt,"__esModule",{value:!0});Kt.extendSubschemaMode=Kt.extendSubschemaData=Kt.getSubschema=void 0;var vt=U(),gh=G();function Ek(t,{keyword:e,schemaProp:r,schema:n,schemaPath:o,errSchemaPath:s,topSchemaRef:i}){if(e!==void 0&&n!==void 0)throw new Error('both "keyword" and "schema" passed, only one allowed');if(e!==void 0){let a=t.schema[e];return r===void 0?{schema:a,schemaPath:(0,vt._)`${t.schemaPath}${(0,vt.getProperty)(e)}`,errSchemaPath:`${t.errSchemaPath}/${e}`}:{schema:a[r],schemaPath:(0,vt._)`${t.schemaPath}${(0,vt.getProperty)(e)}${(0,vt.getProperty)(r)}`,errSchemaPath:`${t.errSchemaPath}/${e}/${(0,gh.escapeFragment)(r)}`}}if(n!==void 0){if(o===void 0||s===void 0||i===void 0)throw new Error('"schemaPath", "errSchemaPath" and "topSchemaRef" are required with "schema"');return{schema:n,schemaPath:o,topSchemaRef:i,errSchemaPath:s}}throw new Error('either "keyword" or "schema" must be passed')}Kt.getSubschema=Ek;function Ok(t,e,{dataProp:r,dataPropType:n,data:o,dataTypes:s,propertyName:i}){if(o!==void 0&&r!==void 0)throw new Error('both "data" and "dataProp" passed, only one allowed');let{gen:a}=e;if(r!==void 0){let{errorPath:u,dataPathArr:l,opts:d}=e,m=a.let("data",(0,vt._)`${e.data}${(0,vt.getProperty)(r)}`,!0);c(m),t.errorPath=(0,vt.str)`${u}${(0,gh.getErrorPath)(r,n,d.jsPropertySyntax)}`,t.parentDataProperty=(0,vt._)`${r}`,t.dataPathArr=[...l,t.parentDataProperty]}if(o!==void 0){let u=o instanceof vt.Name?o:a.let("data",o,!0);c(u),i!==void 0&&(t.propertyName=i)}s&&(t.dataTypes=s);function c(u){t.data=u,t.dataLevel=e.dataLevel+1,t.dataTypes=[],e.definedProperties=new Set,t.parentData=e.data,t.dataNames=[...e.dataNames,u]}}Kt.extendSubschemaData=Ok;function Ik(t,{jtdDiscriminator:e,jtdMetadata:r,compositeRule:n,createErrors:o,allErrors:s}){n!==void 0&&(t.compositeRule=n),o!==void 0&&(t.createErrors=o),s!==void 0&&(t.allErrors=s),t.jtdDiscriminator=e,t.jtdMetadata=r}Kt.extendSubschemaMode=Ik});var Xu=S((TN,_h)=>{"use strict";_h.exports=function t(e,r){if(e===r)return!0;if(e&&r&&typeof e=="object"&&typeof r=="object"){if(e.constructor!==r.constructor)return!1;var n,o,s;if(Array.isArray(e)){if(n=e.length,n!=r.length)return!1;for(o=n;o--!==0;)if(!t(e[o],r[o]))return!1;return!0}if(e.constructor===RegExp)return e.source===r.source&&e.flags===r.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===r.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===r.toString();if(s=Object.keys(e),n=s.length,n!==Object.keys(r).length)return!1;for(o=n;o--!==0;)if(!Object.prototype.hasOwnProperty.call(r,s[o]))return!1;for(o=n;o--!==0;){var i=s[o];if(!t(e[i],r[i]))return!1}return!0}return e!==e&&r!==r}});var xh=S((PN,vh)=>{"use strict";var Jt=vh.exports=function(t,e,r){typeof e=="function"&&(r=e,e={}),r=e.cb||r;var n=typeof r=="function"?r:r.pre||function(){},o=r.post||function(){};Bs(e,n,o,t,"",t)};Jt.keywords={additionalItems:!0,items:!0,contains:!0,additionalProperties:!0,propertyNames:!0,not:!0,if:!0,then:!0,else:!0};Jt.arrayKeywords={items:!0,allOf:!0,anyOf:!0,oneOf:!0};Jt.propsKeywords={$defs:!0,definitions:!0,properties:!0,patternProperties:!0,dependencies:!0};Jt.skipKeywords={default:!0,enum:!0,const:!0,required:!0,maximum:!0,minimum:!0,exclusiveMaximum:!0,exclusiveMinimum:!0,multipleOf:!0,maxLength:!0,minLength:!0,pattern:!0,format:!0,maxItems:!0,minItems:!0,uniqueItems:!0,maxProperties:!0,minProperties:!0};function Bs(t,e,r,n,o,s,i,a,c,u){if(n&&typeof n=="object"&&!Array.isArray(n)){e(n,o,s,i,a,c,u);for(var l in n){var d=n[l];if(Array.isArray(d)){if(l in Jt.arrayKeywords)for(var m=0;m<d.length;m++)Bs(t,e,r,d[m],o+"/"+l+"/"+m,s,o,l,n,m)}else if(l in Jt.propsKeywords){if(d&&typeof d=="object")for(var f in d)Bs(t,e,r,d[f],o+"/"+l+"/"+Rk(f),s,o,l,n,f)}else(l in Jt.keywords||t.allKeys&&!(l in Jt.skipKeywords))&&Bs(t,e,r,d,o+"/"+l,s,o,l,n)}r(n,o,s,i,a,c,u)}}function Rk(t){return t.replace(/~/g,"~0").replace(/\//g,"~1")}});var fo=S(qe=>{"use strict";Object.defineProperty(qe,"__esModule",{value:!0});qe.getSchemaRefs=qe.resolveUrl=qe.normalizeId=qe._getFullPath=qe.getFullPath=qe.inlineRef=void 0;var jk=G(),Nk=Xu(),Ck=xh(),Zk=new Set(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum","const"]);function Ak(t,e=!0){return typeof t=="boolean"?!0:e===!0?!Gu(t):e?bh(t)<=e:!1}qe.inlineRef=Ak;var Mk=new Set(["$ref","$recursiveRef","$recursiveAnchor","$dynamicRef","$dynamicAnchor"]);function Gu(t){for(let e in t){if(Mk.has(e))return!0;let r=t[e];if(Array.isArray(r)&&r.some(Gu)||typeof r=="object"&&Gu(r))return!0}return!1}function bh(t){let e=0;for(let r in t){if(r==="$ref")return 1/0;if(e++,!Zk.has(r)&&(typeof t[r]=="object"&&(0,jk.eachItem)(t[r],n=>e+=bh(n)),e===1/0))return 1/0}return e}function wh(t,e="",r){r!==!1&&(e=cn(e));let n=t.parse(e);return $h(t,n)}qe.getFullPath=wh;function $h(t,e){return t.serialize(e).split("#")[0]+"#"}qe._getFullPath=$h;var Dk=/#\/?$/;function cn(t){return t?t.replace(Dk,""):""}qe.normalizeId=cn;function Lk(t,e,r){return r=cn(r),t.resolve(e,r)}qe.resolveUrl=Lk;var qk=/^[a-z_][-a-z0-9._]*$/i;function Uk(t,e){if(typeof t=="boolean")return{};let{schemaId:r,uriResolver:n}=this.opts,o=cn(t[r]||e),s={"":o},i=wh(n,o,!1),a={},c=new Set;return Ck(t,{allKeys:!0},(d,m,f,p)=>{if(p===void 0)return;let h=i+m,g=s[p];typeof d[r]=="string"&&(g=b.call(this,d[r])),v.call(this,d.$anchor),v.call(this,d.$dynamicAnchor),s[m]=g;function b(x){let T=this.opts.uriResolver.resolve;if(x=cn(g?T(g,x):x),c.has(x))throw l(x);c.add(x);let N=this.refs[x];return typeof N=="string"&&(N=this.refs[N]),typeof N=="object"?u(d,N.schema,x):x!==cn(h)&&(x[0]==="#"?(u(d,a[x],x),a[x]=d):this.refs[x]=h),x}function v(x){if(typeof x=="string"){if(!qk.test(x))throw new Error(`invalid anchor "${x}"`);b.call(this,`#${x}`)}}}),a;function u(d,m,f){if(m!==void 0&&!Nk(d,m))throw l(f)}function l(d){return new Error(`reference "${d}" resolves to more than one schema`)}}qe.getSchemaRefs=Uk});var go=S(Xt=>{"use strict";Object.defineProperty(Xt,"__esModule",{value:!0});Xt.getData=Xt.KeywordCxt=Xt.validateFunctionCode=void 0;var Ph=nh(),kh=po(),Yu=Uu(),Ks=po(),Fk=lh(),ho=hh(),Wu=yh(),R=U(),M=It(),Vk=fo(),Rt=G(),mo=lo();function Hk(t){if(Ih(t)&&(Rh(t),Oh(t))){Jk(t);return}Eh(t,()=>(0,Ph.topBoolOrEmptySchema)(t))}Xt.validateFunctionCode=Hk;function Eh({gen:t,validateName:e,schema:r,schemaEnv:n,opts:o},s){o.code.es5?t.func(e,(0,R._)`${M.default.data}, ${M.default.valCxt}`,n.$async,()=>{t.code((0,R._)`"use strict"; ${Sh(r,o)}`),Kk(t,o),t.code(s)}):t.func(e,(0,R._)`${M.default.data}, ${Bk(o)}`,n.$async,()=>t.code(Sh(r,o)).code(s))}function Bk(t){return(0,R._)`{${M.default.instancePath}="", ${M.default.parentData}, ${M.default.parentDataProperty}, ${M.default.rootData}=${M.default.data}${t.dynamicRef?(0,R._)`, ${M.default.dynamicAnchors}={}`:R.nil}}={}`}function Kk(t,e){t.if(M.default.valCxt,()=>{t.var(M.default.instancePath,(0,R._)`${M.default.valCxt}.${M.default.instancePath}`),t.var(M.default.parentData,(0,R._)`${M.default.valCxt}.${M.default.parentData}`),t.var(M.default.parentDataProperty,(0,R._)`${M.default.valCxt}.${M.default.parentDataProperty}`),t.var(M.default.rootData,(0,R._)`${M.default.valCxt}.${M.default.rootData}`),e.dynamicRef&&t.var(M.default.dynamicAnchors,(0,R._)`${M.default.valCxt}.${M.default.dynamicAnchors}`)},()=>{t.var(M.default.instancePath,(0,R._)`""`),t.var(M.default.parentData,(0,R._)`undefined`),t.var(M.default.parentDataProperty,(0,R._)`undefined`),t.var(M.default.rootData,M.default.data),e.dynamicRef&&t.var(M.default.dynamicAnchors,(0,R._)`{}`)})}function Jk(t){let{schema:e,opts:r,gen:n}=t;Eh(t,()=>{r.$comment&&e.$comment&&Nh(t),Qk(t),n.let(M.default.vErrors,null),n.let(M.default.errors,0),r.unevaluated&&Xk(t),jh(t),rS(t)})}function Xk(t){let{gen:e,validateName:r}=t;t.evaluated=e.const("evaluated",(0,R._)`${r}.evaluated`),e.if((0,R._)`${t.evaluated}.dynamicProps`,()=>e.assign((0,R._)`${t.evaluated}.props`,(0,R._)`undefined`)),e.if((0,R._)`${t.evaluated}.dynamicItems`,()=>e.assign((0,R._)`${t.evaluated}.items`,(0,R._)`undefined`))}function Sh(t,e){let r=typeof t=="object"&&t[e.schemaId];return r&&(e.code.source||e.code.process)?(0,R._)`/*# sourceURL=${r} */`:R.nil}function Gk(t,e){if(Ih(t)&&(Rh(t),Oh(t))){Wk(t,e);return}(0,Ph.boolOrEmptySchema)(t,e)}function Oh({schema:t,self:e}){if(typeof t=="boolean")return!t;for(let r in t)if(e.RULES.all[r])return!0;return!1}function Ih(t){return typeof t.schema!="boolean"}function Wk(t,e){let{schema:r,gen:n,opts:o}=t;o.$comment&&r.$comment&&Nh(t),eS(t),tS(t);let s=n.const("_errs",M.default.errors);jh(t,s),n.var(e,(0,R._)`${s} === ${M.default.errors}`)}function Rh(t){(0,Rt.checkUnknownRules)(t),Yk(t)}function jh(t,e){if(t.opts.jtd)return zh(t,[],!1,e);let r=(0,kh.getSchemaTypes)(t.schema),n=(0,kh.coerceAndCheckDataType)(t,r);zh(t,r,!n,e)}function Yk(t){let{schema:e,errSchemaPath:r,opts:n,self:o}=t;e.$ref&&n.ignoreKeywordsWithRef&&(0,Rt.schemaHasRulesButRef)(e,o.RULES)&&o.logger.warn(`$ref: keywords ignored in schema at path "${r}"`)}function Qk(t){let{schema:e,opts:r}=t;e.default!==void 0&&r.useDefaults&&r.strictSchema&&(0,Rt.checkStrictMode)(t,"default is ignored in the schema root")}function eS(t){let e=t.schema[t.opts.schemaId];e&&(t.baseId=(0,Vk.resolveUrl)(t.opts.uriResolver,t.baseId,e))}function tS(t){if(t.schema.$async&&!t.schemaEnv.$async)throw new Error("async schema in sync schema")}function Nh({gen:t,schemaEnv:e,schema:r,errSchemaPath:n,opts:o}){let s=r.$comment;if(o.$comment===!0)t.code((0,R._)`${M.default.self}.logger.log(${s})`);else if(typeof o.$comment=="function"){let i=(0,R.str)`${n}/$comment`,a=t.scopeValue("root",{ref:e.root});t.code((0,R._)`${M.default.self}.opts.$comment(${s}, ${i}, ${a}.schema)`)}}function rS(t){let{gen:e,schemaEnv:r,validateName:n,ValidationError:o,opts:s}=t;r.$async?e.if((0,R._)`${M.default.errors} === 0`,()=>e.return(M.default.data),()=>e.throw((0,R._)`new ${o}(${M.default.vErrors})`)):(e.assign((0,R._)`${n}.errors`,M.default.vErrors),s.unevaluated&&nS(t),e.return((0,R._)`${M.default.errors} === 0`))}function nS({gen:t,evaluated:e,props:r,items:n}){r instanceof R.Name&&t.assign((0,R._)`${e}.props`,r),n instanceof R.Name&&t.assign((0,R._)`${e}.items`,n)}function zh(t,e,r,n){let{gen:o,schema:s,data:i,allErrors:a,opts:c,self:u}=t,{RULES:l}=u;if(s.$ref&&(c.ignoreKeywordsWithRef||!(0,Rt.schemaHasRulesButRef)(s,l))){o.block(()=>Zh(t,"$ref",l.all.$ref.definition));return}c.jtd||oS(t,e),o.block(()=>{for(let m of l.rules)d(m);d(l.post)});function d(m){(0,Yu.shouldUseGroup)(s,m)&&(m.type?(o.if((0,Ks.checkDataType)(m.type,i,c.strictNumbers)),Th(t,m),e.length===1&&e[0]===m.type&&r&&(o.else(),(0,Ks.reportTypeError)(t)),o.endIf()):Th(t,m),a||o.if((0,R._)`${M.default.errors} === ${n||0}`))}}function Th(t,e){let{gen:r,schema:n,opts:{useDefaults:o}}=t;o&&(0,Fk.assignDefaults)(t,e.type),r.block(()=>{for(let s of e.rules)(0,Yu.shouldUseRule)(n,s)&&Zh(t,s.keyword,s.definition,e.type)})}function oS(t,e){t.schemaEnv.meta||!t.opts.strictTypes||(sS(t,e),t.opts.allowUnionTypes||iS(t,e),aS(t,t.dataTypes))}function sS(t,e){if(e.length){if(!t.dataTypes.length){t.dataTypes=e;return}e.forEach(r=>{Ch(t.dataTypes,r)||Qu(t,`type "${r}" not allowed by context "${t.dataTypes.join(",")}"`)}),uS(t,e)}}function iS(t,e){e.length>1&&!(e.length===2&&e.includes("null"))&&Qu(t,"use allowUnionTypes to allow union type keyword")}function aS(t,e){let r=t.self.RULES.all;for(let n in r){let o=r[n];if(typeof o=="object"&&(0,Yu.shouldUseRule)(t.schema,o)){let{type:s}=o.definition;s.length&&!s.some(i=>cS(e,i))&&Qu(t,`missing type "${s.join(",")}" for keyword "${n}"`)}}}function cS(t,e){return t.includes(e)||e==="number"&&t.includes("integer")}function Ch(t,e){return t.includes(e)||e==="integer"&&t.includes("number")}function uS(t,e){let r=[];for(let n of t.dataTypes)Ch(e,n)?r.push(n):e.includes("integer")&&n==="number"&&r.push("integer");t.dataTypes=r}function Qu(t,e){let r=t.schemaEnv.baseId+t.errSchemaPath;e+=` at "${r}" (strictTypes)`,(0,Rt.checkStrictMode)(t,e,t.opts.strictTypes)}var Js=class{constructor(e,r,n){if((0,ho.validateKeywordUsage)(e,r,n),this.gen=e.gen,this.allErrors=e.allErrors,this.keyword=n,this.data=e.data,this.schema=e.schema[n],this.$data=r.$data&&e.opts.$data&&this.schema&&this.schema.$data,this.schemaValue=(0,Rt.schemaRefOrVal)(e,this.schema,n,this.$data),this.schemaType=r.schemaType,this.parentSchema=e.schema,this.params={},this.it=e,this.def=r,this.$data)this.schemaCode=e.gen.const("vSchema",Ah(this.$data,e));else if(this.schemaCode=this.schemaValue,!(0,ho.validSchemaType)(this.schema,r.schemaType,r.allowUndefined))throw new Error(`${n} value must be ${JSON.stringify(r.schemaType)}`);("code"in r?r.trackErrors:r.errors!==!1)&&(this.errsCount=e.gen.const("_errs",M.default.errors))}result(e,r,n){this.failResult((0,R.not)(e),r,n)}failResult(e,r,n){this.gen.if(e),n?n():this.error(),r?(this.gen.else(),r(),this.allErrors&&this.gen.endIf()):this.allErrors?this.gen.endIf():this.gen.else()}pass(e,r){this.failResult((0,R.not)(e),void 0,r)}fail(e){if(e===void 0){this.error(),this.allErrors||this.gen.if(!1);return}this.gen.if(e),this.error(),this.allErrors?this.gen.endIf():this.gen.else()}fail$data(e){if(!this.$data)return this.fail(e);let{schemaCode:r}=this;this.fail((0,R._)`${r} !== undefined && (${(0,R.or)(this.invalid$data(),e)})`)}error(e,r,n){if(r){this.setParams(r),this._error(e,n),this.setParams({});return}this._error(e,n)}_error(e,r){(e?mo.reportExtraError:mo.reportError)(this,this.def.error,r)}$dataError(){(0,mo.reportError)(this,this.def.$dataError||mo.keyword$DataError)}reset(){if(this.errsCount===void 0)throw new Error('add "trackErrors" to keyword definition');(0,mo.resetErrorsCount)(this.gen,this.errsCount)}ok(e){this.allErrors||this.gen.if(e)}setParams(e,r){r?Object.assign(this.params,e):this.params=e}block$data(e,r,n=R.nil){this.gen.block(()=>{this.check$data(e,n),r()})}check$data(e=R.nil,r=R.nil){if(!this.$data)return;let{gen:n,schemaCode:o,schemaType:s,def:i}=this;n.if((0,R.or)((0,R._)`${o} === undefined`,r)),e!==R.nil&&n.assign(e,!0),(s.length||i.validateSchema)&&(n.elseIf(this.invalid$data()),this.$dataError(),e!==R.nil&&n.assign(e,!1)),n.else()}invalid$data(){let{gen:e,schemaCode:r,schemaType:n,def:o,it:s}=this;return(0,R.or)(i(),a());function i(){if(n.length){if(!(r instanceof R.Name))throw new Error("ajv implementation error");let c=Array.isArray(n)?n:[n];return(0,R._)`${(0,Ks.checkDataTypes)(c,r,s.opts.strictNumbers,Ks.DataType.Wrong)}`}return R.nil}function a(){if(o.validateSchema){let c=e.scopeValue("validate$data",{ref:o.validateSchema});return(0,R._)`!${c}(${r})`}return R.nil}}subschema(e,r){let n=(0,Wu.getSubschema)(this.it,e);(0,Wu.extendSubschemaData)(n,this.it,e),(0,Wu.extendSubschemaMode)(n,e);let o={...this.it,...n,items:void 0,props:void 0};return Gk(o,r),o}mergeEvaluated(e,r){let{it:n,gen:o}=this;n.opts.unevaluated&&(n.props!==!0&&e.props!==void 0&&(n.props=Rt.mergeEvaluated.props(o,e.props,n.props,r)),n.items!==!0&&e.items!==void 0&&(n.items=Rt.mergeEvaluated.items(o,e.items,n.items,r)))}mergeValidEvaluated(e,r){let{it:n,gen:o}=this;if(n.opts.unevaluated&&(n.props!==!0||n.items!==!0))return o.if(r,()=>this.mergeEvaluated(e,R.Name)),!0}};Xt.KeywordCxt=Js;function Zh(t,e,r,n){let o=new Js(t,r,e);"code"in r?r.code(o,n):o.$data&&r.validate?(0,ho.funcKeywordCode)(o,r):"macro"in r?(0,ho.macroKeywordCode)(o,r):(r.compile||r.validate)&&(0,ho.funcKeywordCode)(o,r)}var lS=/^\/(?:[^~]|~0|~1)*$/,dS=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function Ah(t,{dataLevel:e,dataNames:r,dataPathArr:n}){let o,s;if(t==="")return M.default.rootData;if(t[0]==="/"){if(!lS.test(t))throw new Error(`Invalid JSON-pointer: ${t}`);o=t,s=M.default.rootData}else{let u=dS.exec(t);if(!u)throw new Error(`Invalid JSON-pointer: ${t}`);let l=+u[1];if(o=u[2],o==="#"){if(l>=e)throw new Error(c("property/index",l));return n[e-l]}if(l>e)throw new Error(c("data",l));if(s=r[e-l],!o)return s}let i=s,a=o.split("/");for(let u of a)u&&(s=(0,R._)`${s}${(0,R.getProperty)((0,Rt.unescapeJsonPointer)(u))}`,i=(0,R._)`${i} && ${s}`);return i;function c(u,l){return`Cannot access ${u} ${l} levels up, current level is ${e}`}}Xt.getData=Ah});var Xs=S(tl=>{"use strict";Object.defineProperty(tl,"__esModule",{value:!0});var el=class extends Error{constructor(e){super("validation failed"),this.errors=e,this.ajv=this.validation=!0}};tl.default=el});var yo=S(ol=>{"use strict";Object.defineProperty(ol,"__esModule",{value:!0});var rl=fo(),nl=class extends Error{constructor(e,r,n,o){super(o||`can't resolve reference ${n} from id ${r}`),this.missingRef=(0,rl.resolveUrl)(e,r,n),this.missingSchema=(0,rl.normalizeId)((0,rl.getFullPath)(e,this.missingRef))}};ol.default=nl});var Ws=S(rt=>{"use strict";Object.defineProperty(rt,"__esModule",{value:!0});rt.resolveSchema=rt.getCompilingSchema=rt.resolveRef=rt.compileSchema=rt.SchemaEnv=void 0;var ut=U(),pS=Xs(),Or=It(),lt=fo(),Mh=G(),fS=go(),un=class{constructor(e){var r;this.refs={},this.dynamicAnchors={};let n;typeof e.schema=="object"&&(n=e.schema),this.schema=e.schema,this.schemaId=e.schemaId,this.root=e.root||this,this.baseId=(r=e.baseId)!==null&&r!==void 0?r:(0,lt.normalizeId)(n?.[e.schemaId||"$id"]),this.schemaPath=e.schemaPath,this.localRefs=e.localRefs,this.meta=e.meta,this.$async=n?.$async,this.refs={}}};rt.SchemaEnv=un;function il(t){let e=Dh.call(this,t);if(e)return e;let r=(0,lt.getFullPath)(this.opts.uriResolver,t.root.baseId),{es5:n,lines:o}=this.opts.code,{ownProperties:s}=this.opts,i=new ut.CodeGen(this.scope,{es5:n,lines:o,ownProperties:s}),a;t.$async&&(a=i.scopeValue("Error",{ref:pS.default,code:(0,ut._)`require("ajv/dist/runtime/validation_error").default`}));let c=i.scopeName("validate");t.validateName=c;let u={gen:i,allErrors:this.opts.allErrors,data:Or.default.data,parentData:Or.default.parentData,parentDataProperty:Or.default.parentDataProperty,dataNames:[Or.default.data],dataPathArr:[ut.nil],dataLevel:0,dataTypes:[],definedProperties:new Set,topSchemaRef:i.scopeValue("schema",this.opts.code.source===!0?{ref:t.schema,code:(0,ut.stringify)(t.schema)}:{ref:t.schema}),validateName:c,ValidationError:a,schema:t.schema,schemaEnv:t,rootId:r,baseId:t.baseId||r,schemaPath:ut.nil,errSchemaPath:t.schemaPath||(this.opts.jtd?"":"#"),errorPath:(0,ut._)`""`,opts:this.opts,self:this},l;try{this._compilations.add(t),(0,fS.validateFunctionCode)(u),i.optimize(this.opts.code.optimize);let d=i.toString();l=`${i.scopeRefs(Or.default.scope)}return ${d}`,this.opts.code.process&&(l=this.opts.code.process(l,t));let f=new Function(`${Or.default.self}`,`${Or.default.scope}`,l)(this,this.scope.get());if(this.scope.value(c,{ref:f}),f.errors=null,f.schema=t.schema,f.schemaEnv=t,t.$async&&(f.$async=!0),this.opts.code.source===!0&&(f.source={validateName:c,validateCode:d,scopeValues:i._values}),this.opts.unevaluated){let{props:p,items:h}=u;f.evaluated={props:p instanceof ut.Name?void 0:p,items:h instanceof ut.Name?void 0:h,dynamicProps:p instanceof ut.Name,dynamicItems:h instanceof ut.Name},f.source&&(f.source.evaluated=(0,ut.stringify)(f.evaluated))}return t.validate=f,t}catch(d){throw delete t.validate,delete t.validateName,l&&this.logger.error("Error compiling schema, function code:",l),d}finally{this._compilations.delete(t)}}rt.compileSchema=il;function mS(t,e,r){var n;r=(0,lt.resolveUrl)(this.opts.uriResolver,e,r);let o=t.refs[r];if(o)return o;let s=yS.call(this,t,r);if(s===void 0){let i=(n=t.localRefs)===null||n===void 0?void 0:n[r],{schemaId:a}=this.opts;i&&(s=new un({schema:i,schemaId:a,root:t,baseId:e}))}if(s!==void 0)return t.refs[r]=hS.call(this,s)}rt.resolveRef=mS;function hS(t){return(0,lt.inlineRef)(t.schema,this.opts.inlineRefs)?t.schema:t.validate?t:il.call(this,t)}function Dh(t){for(let e of this._compilations)if(gS(e,t))return e}rt.getCompilingSchema=Dh;function gS(t,e){return t.schema===e.schema&&t.root===e.root&&t.baseId===e.baseId}function yS(t,e){let r;for(;typeof(r=this.refs[e])=="string";)e=r;return r||this.schemas[e]||Gs.call(this,t,e)}function Gs(t,e){let r=this.opts.uriResolver.parse(e),n=(0,lt._getFullPath)(this.opts.uriResolver,r),o=(0,lt.getFullPath)(this.opts.uriResolver,t.baseId,void 0);if(Object.keys(t.schema).length>0&&n===o)return sl.call(this,r,t);let s=(0,lt.normalizeId)(n),i=this.refs[s]||this.schemas[s];if(typeof i=="string"){let a=Gs.call(this,t,i);return typeof a?.schema!="object"?void 0:sl.call(this,r,a)}if(typeof i?.schema=="object"){if(i.validate||il.call(this,i),s===(0,lt.normalizeId)(e)){let{schema:a}=i,{schemaId:c}=this.opts,u=a[c];return u&&(o=(0,lt.resolveUrl)(this.opts.uriResolver,o,u)),new un({schema:a,schemaId:c,root:t,baseId:o})}return sl.call(this,r,i)}}rt.resolveSchema=Gs;var _S=new Set(["properties","patternProperties","enum","dependencies","definitions"]);function sl(t,{baseId:e,schema:r,root:n}){var o;if(((o=t.fragment)===null||o===void 0?void 0:o[0])!=="/")return;for(let a of t.fragment.slice(1).split("/")){if(typeof r=="boolean")return;let c=r[(0,Mh.unescapeFragment)(a)];if(c===void 0)return;r=c;let u=typeof r=="object"&&r[this.opts.schemaId];!_S.has(a)&&u&&(e=(0,lt.resolveUrl)(this.opts.uriResolver,e,u))}let s;if(typeof r!="boolean"&&r.$ref&&!(0,Mh.schemaHasRulesButRef)(r,this.RULES)){let a=(0,lt.resolveUrl)(this.opts.uriResolver,e,r.$ref);s=Gs.call(this,n,a)}let{schemaId:i}=this.opts;if(s=s||new un({schema:r,schemaId:i,root:n,baseId:e}),s.schema!==s.root.schema)return s}});var Lh=S((NN,vS)=>{vS.exports={$id:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",description:"Meta-schema for $data reference (JSON AnySchema extension proposal)",type:"object",required:["$data"],properties:{$data:{type:"string",anyOf:[{format:"relative-json-pointer"},{format:"json-pointer"}]}},additionalProperties:!1}});var ul=S((CN,Bh)=>{"use strict";var xS=RegExp.prototype.test.bind(/^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$/iu),Uh=RegExp.prototype.test.bind(/^(?:(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)$/u),al=RegExp.prototype.test.bind(/^[\da-f]{2}$/iu),Fh=RegExp.prototype.test.bind(/^[\da-z\-._~]$/iu),bS=RegExp.prototype.test.bind(/^[\da-z\-._~!$&'()*+,;=:@/]$/iu);function cl(t){let e="",r=0,n=0;for(n=0;n<t.length;n++)if(r=t[n].charCodeAt(0),r!==48){if(!(r>=48&&r<=57||r>=65&&r<=70||r>=97&&r<=102))return"";e+=t[n];break}for(n+=1;n<t.length;n++){if(r=t[n].charCodeAt(0),!(r>=48&&r<=57||r>=65&&r<=70||r>=97&&r<=102))return"";e+=t[n]}return e}var wS=RegExp.prototype.test.bind(/[^!"$&'()*+,\-.;=_`a-z{}~]/u);function qh(t){return t.length=0,!0}function $S(t,e,r){if(t.length){let n=cl(t);if(n!=="")e.push(n);else return r.error=!0,!1;t.length=0}return!0}function kS(t){let e=0,r={error:!1,address:"",zone:""},n=[],o=[],s=!1,i=!1,a=$S;for(let c=0;c<t.length;c++){let u=t[c];if(!(u==="["||u==="]"))if(u===":"){if(s===!0&&(i=!0),!a(o,n,r))break;if(++e>7){r.error=!0;break}c>0&&t[c-1]===":"&&(s=!0),n.push(":");continue}else if(u==="%"){if(!a(o,n,r))break;a=qh}else{o.push(u);continue}}return o.length&&(a===qh?r.zone=o.join(""):i?n.push(o.join("")):n.push(cl(o))),r.address=n.join(""),r}function Vh(t){if(SS(t,":")<2)return{host:t,isIPV6:!1};let e=kS(t);if(e.error)return{host:t,isIPV6:!1};{let r=e.address,n=e.address;return e.zone&&(r+="%"+e.zone,n+="%25"+e.zone),{host:r,isIPV6:!0,escapedHost:n}}}function SS(t,e){let r=0;for(let n=0;n<t.length;n++)t[n]===e&&r++;return r}function zS(t){let e=t,r=[],n=-1,o=0;for(;o=e.length;){if(o===1){if(e===".")break;if(e==="/"){r.push("/");break}else{r.push(e);break}}else if(o===2){if(e[0]==="."){if(e[1]===".")break;if(e[1]==="/"){e=e.slice(2);continue}}else if(e[0]==="/"&&(e[1]==="."||e[1]==="/")){r.push("/");break}}else if(o===3&&e==="/.."){r.length!==0&&r.pop(),r.push("/");break}if(e[0]==="."){if(e[1]==="."){if(e[2]==="/"){e=e.slice(3);continue}}else if(e[1]==="/"){e=e.slice(2);continue}}else if(e[0]==="/"&&e[1]==="."){if(e[2]==="/"){e=e.slice(2);continue}else if(e[2]==="."&&e[3]==="/"){e=e.slice(3),r.length!==0&&r.pop();continue}}if((n=e.indexOf("/",1))===-1){r.push(e);break}else r.push(e.slice(0,n)),e=e.slice(n)}return r.join("")}var TS={"@":"%40","/":"%2F","?":"%3F","#":"%23",":":"%3A"},PS=/[@/?#:]/g,ES=/[@/?#]/g;function Hh(t,e){let r=e?ES:PS;return r.lastIndex=0,t.replace(r,n=>TS[n])}function OS(t,e=!1){if(t.indexOf("%")===-1)return t;let r="";for(let n=0;n<t.length;n++){if(t[n]==="%"&&n+2<t.length){let o=t.slice(n+1,n+3);if(al(o)){let s=o.toUpperCase(),i=String.fromCharCode(parseInt(s,16));e&&Fh(i)?r+=i:r+="%"+s,n+=2;continue}}r+=t[n]}return r}function IS(t){let e="";for(let r=0;r<t.length;r++){if(t[r]==="%"&&r+2<t.length){let n=t.slice(r+1,r+3);if(al(n)){let o=n.toUpperCase(),s=String.fromCharCode(parseInt(o,16));s!=="."&&Fh(s)?e+=s:e+="%"+o,r+=2;continue}}bS(t[r])?e+=t[r]:e+=escape(t[r])}return e}function RS(t){let e="";for(let r=0;r<t.length;r++){if(t[r]==="%"&&r+2<t.length){let n=t.slice(r+1,r+3);if(al(n)){e+="%"+n.toUpperCase(),r+=2;continue}}e+=escape(t[r])}return e}function jS(t){let e=[];if(t.userinfo!==void 0&&(e.push(t.userinfo),e.push("@")),t.host!==void 0){let r=unescape(t.host);if(!Uh(r)){let n=Vh(r);n.isIPV6===!0?r=`[${n.escapedHost}]`:r=Hh(r,!1)}e.push(r)}return(typeof t.port=="number"||typeof t.port=="string")&&(e.push(":"),e.push(String(t.port))),e.length?e.join(""):void 0}Bh.exports={nonSimpleDomain:wS,recomposeAuthority:jS,reescapeHostDelimiters:Hh,normalizePercentEncoding:OS,normalizePathEncoding:IS,escapePreservingEscapes:RS,removeDotSegments:zS,isIPv4:Uh,isUUID:xS,normalizeIPv6:Vh,stringArrayToHexStripped:cl}});var Wh=S((ZN,Gh)=>{"use strict";var{isUUID:NS}=ul(),CS=/([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu,ZS=["http","https","ws","wss","urn","urn:uuid"];function AS(t){return ZS.indexOf(t)!==-1}function ll(t){return t.secure===!0?!0:t.secure===!1?!1:t.scheme?t.scheme.length===3&&(t.scheme[0]==="w"||t.scheme[0]==="W")&&(t.scheme[1]==="s"||t.scheme[1]==="S")&&(t.scheme[2]==="s"||t.scheme[2]==="S"):!1}function Kh(t){return t.host||(t.error=t.error||"HTTP URIs must have a host."),t}function Jh(t){let e=String(t.scheme).toLowerCase()==="https";return(t.port===(e?443:80)||t.port==="")&&(t.port=void 0),t.path||(t.path="/"),t}function MS(t){return t.secure=ll(t),t.resourceName=(t.path||"/")+(t.query?"?"+t.query:""),t.path=void 0,t.query=void 0,t}function DS(t){if((t.port===(ll(t)?443:80)||t.port==="")&&(t.port=void 0),typeof t.secure=="boolean"&&(t.scheme=t.secure?"wss":"ws",t.secure=void 0),t.resourceName){let[e,r]=t.resourceName.split("?");t.path=e&&e!=="/"?e:void 0,t.query=r,t.resourceName=void 0}return t.fragment=void 0,t}function LS(t,e){if(!t.path)return t.error="URN can not be parsed",t;let r=t.path.match(CS);if(r){let n=e.scheme||t.scheme||"urn";t.nid=r[1].toLowerCase(),t.nss=r[2];let o=`${n}:${e.nid||t.nid}`,s=dl(o);t.path=void 0,s&&(t=s.parse(t,e))}else t.error=t.error||"URN can not be parsed.";return t}function qS(t,e){if(t.nid===void 0)throw new Error("URN without nid cannot be serialized");let r=e.scheme||t.scheme||"urn",n=t.nid.toLowerCase(),o=`${r}:${e.nid||n}`,s=dl(o);s&&(t=s.serialize(t,e));let i=t,a=t.nss;return i.path=`${n||e.nid}:${a}`,e.skipEscape=!0,i}function US(t,e){let r=t;return r.uuid=r.nss,r.nss=void 0,!e.tolerant&&(!r.uuid||!NS(r.uuid))&&(r.error=r.error||"UUID is not valid."),r}function FS(t){let e=t;return e.nss=(t.uuid||"").toLowerCase(),e}var Xh={scheme:"http",domainHost:!0,parse:Kh,serialize:Jh},VS={scheme:"https",domainHost:Xh.domainHost,parse:Kh,serialize:Jh},Ys={scheme:"ws",domainHost:!0,parse:MS,serialize:DS},HS={scheme:"wss",domainHost:Ys.domainHost,parse:Ys.parse,serialize:Ys.serialize},BS={scheme:"urn",parse:LS,serialize:qS,skipNormalize:!0},KS={scheme:"urn:uuid",parse:US,serialize:FS,skipNormalize:!0},Qs={http:Xh,https:VS,ws:Ys,wss:HS,urn:BS,"urn:uuid":KS};Object.setPrototypeOf(Qs,null);function dl(t){return t&&(Qs[t]||Qs[t.toLowerCase()])||void 0}Gh.exports={wsIsSecure:ll,SCHEMES:Qs,isValidSchemeName:AS,getSchemeHandler:dl}});var ng=S((AN,ei)=>{"use strict";var{normalizeIPv6:JS,removeDotSegments:_o,recomposeAuthority:XS,normalizePercentEncoding:GS,normalizePathEncoding:WS,escapePreservingEscapes:YS,reescapeHostDelimiters:QS,isIPv4:ez,nonSimpleDomain:tz}=ul(),{SCHEMES:rz,getSchemeHandler:Qh}=Wh();function nz(t,e){return typeof t=="string"?t=cz(t,e):typeof t=="object"&&(t=ln(Ir(t,e),e)),t}function oz(t,e,r){let n=r?Object.assign({scheme:"null"},r):{scheme:"null"},o=eg(ln(t,n),ln(e,n),n,!0);return n.skipEscape=!0,Ir(o,n)}function eg(t,e,r,n){let o={};return n||(t=ln(Ir(t,r),r),e=ln(Ir(e,r),r)),r=r||{},!r.tolerant&&e.scheme?(o.scheme=e.scheme,o.userinfo=e.userinfo,o.host=e.host,o.port=e.port,o.path=_o(e.path||""),o.query=e.query):(e.userinfo!==void 0||e.host!==void 0||e.port!==void 0?(o.userinfo=e.userinfo,o.host=e.host,o.port=e.port,o.path=_o(e.path||""),o.query=e.query):(e.path?(e.path[0]==="/"?o.path=_o(e.path):((t.userinfo!==void 0||t.host!==void 0||t.port!==void 0)&&!t.path?o.path="/"+e.path:t.path?o.path=t.path.slice(0,t.path.lastIndexOf("/")+1)+e.path:o.path=e.path,o.path=_o(o.path)),o.query=e.query):(o.path=t.path,e.query!==void 0?o.query=e.query:o.query=t.query),o.userinfo=t.userinfo,o.host=t.host,o.port=t.port),o.scheme=t.scheme),o.fragment=e.fragment,o}function sz(t,e,r){let n=Yh(t,r),o=Yh(e,r);return n!==void 0&&o!==void 0&&n.toLowerCase()===o.toLowerCase()}function Ir(t,e){let r={host:t.host,scheme:t.scheme,userinfo:t.userinfo,port:t.port,path:t.path,query:t.query,nid:t.nid,nss:t.nss,uuid:t.uuid,fragment:t.fragment,reference:t.reference,resourceName:t.resourceName,secure:t.secure,error:""},n=Object.assign({},e),o=[],s=Qh(n.scheme||r.scheme);s&&s.serialize&&s.serialize(r,n),r.path!==void 0&&(n.skipEscape?r.path=GS(r.path):(r.path=YS(r.path),r.scheme!==void 0&&(r.path=r.path.split("%3A").join(":")))),n.reference!=="suffix"&&r.scheme&&o.push(r.scheme,":");let i=XS(r);if(i!==void 0&&(n.reference!=="suffix"&&o.push("//"),o.push(i),r.path&&r.path[0]!=="/"&&o.push("/")),r.path!==void 0){let a=r.path;!n.absolutePath&&(!s||!s.absolutePath)&&(a=_o(a)),i===void 0&&a[0]==="/"&&a[1]==="/"&&(a="/%2F"+a.slice(2)),o.push(a)}return r.query!==void 0&&o.push("?",r.query),r.fragment!==void 0&&o.push("#",r.fragment),o.join("")}var iz=/^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;function az(t,e){if(e[2]!==void 0&&t.path&&t.path[0]!=="/")return'URI path must start with "/" when authority is present.';if(typeof t.port=="number"&&(t.port<0||t.port>65535))return"URI port is malformed."}function tg(t,e){let r=Object.assign({},e),n={scheme:void 0,userinfo:void 0,host:"",port:void 0,path:"",query:void 0,fragment:void 0},o=!1,s=!1;r.reference==="suffix"&&(r.scheme?t=r.scheme+":"+t:t="//"+t);let i=t.match(iz);if(i){n.scheme=i[1],n.userinfo=i[3],n.host=i[4],n.port=parseInt(i[5],10),n.path=i[6]||"",n.query=i[7],n.fragment=i[8],isNaN(n.port)&&(n.port=i[5]);let a=az(n,i);if(a!==void 0&&(n.error=n.error||a,o=!0),n.host)if(ez(n.host)===!1){let l=JS(n.host);n.host=l.host.toLowerCase(),s=l.isIPV6}else s=!0;n.scheme===void 0&&n.userinfo===void 0&&n.host===void 0&&n.port===void 0&&n.query===void 0&&!n.path?n.reference="same-document":n.scheme===void 0?n.reference="relative":n.fragment===void 0?n.reference="absolute":n.reference="uri",r.reference&&r.reference!=="suffix"&&r.reference!==n.reference&&(n.error=n.error||"URI is not a "+r.reference+" reference.");let c=Qh(r.scheme||n.scheme);if(!r.unicodeSupport&&(!c||!c.unicodeSupport)&&n.host&&(r.domainHost||c&&c.domainHost)&&s===!1&&tz(n.host))try{n.host=URL.domainToASCII(n.host.toLowerCase())}catch(u){n.error=n.error||"Host's domain name can not be converted to ASCII: "+u}if((!c||c&&!c.skipNormalize)&&(t.indexOf("%")!==-1&&(n.scheme!==void 0&&(n.scheme=unescape(n.scheme)),n.host!==void 0&&(n.host=QS(unescape(n.host),s))),n.path&&(n.path=WS(n.path)),n.fragment))try{n.fragment=encodeURI(decodeURIComponent(n.fragment))}catch{n.error=n.error||"URI malformed"}c&&c.parse&&c.parse(n,r)}else n.error=n.error||"URI can not be parsed.";return{parsed:n,malformedAuthorityOrPort:o}}function ln(t,e){return tg(t,e).parsed}function cz(t,e){return rg(t,e).normalized}function rg(t,e){let{parsed:r,malformedAuthorityOrPort:n}=tg(t,e);return{normalized:n?t:Ir(r,e),malformedAuthorityOrPort:n}}function Yh(t,e){if(typeof t=="string"){let{normalized:r,malformedAuthorityOrPort:n}=rg(t,e);return n?void 0:r}if(typeof t=="object")return Ir(t,e)}var pl={SCHEMES:rz,normalize:nz,resolve:oz,resolveComponent:eg,equal:sz,serialize:Ir,parse:ln};ei.exports=pl;ei.exports.default=pl;ei.exports.fastUri=pl});var sg=S(fl=>{"use strict";Object.defineProperty(fl,"__esModule",{value:!0});var og=ng();og.code='require("ajv/dist/runtime/uri").default';fl.default=og});var fg=S(Se=>{"use strict";Object.defineProperty(Se,"__esModule",{value:!0});Se.CodeGen=Se.Name=Se.nil=Se.stringify=Se.str=Se._=Se.KeywordCxt=void 0;var uz=go();Object.defineProperty(Se,"KeywordCxt",{enumerable:!0,get:function(){return uz.KeywordCxt}});var dn=U();Object.defineProperty(Se,"_",{enumerable:!0,get:function(){return dn._}});Object.defineProperty(Se,"str",{enumerable:!0,get:function(){return dn.str}});Object.defineProperty(Se,"stringify",{enumerable:!0,get:function(){return dn.stringify}});Object.defineProperty(Se,"nil",{enumerable:!0,get:function(){return dn.nil}});Object.defineProperty(Se,"Name",{enumerable:!0,get:function(){return dn.Name}});Object.defineProperty(Se,"CodeGen",{enumerable:!0,get:function(){return dn.CodeGen}});var lz=Xs(),lg=yo(),dz=qu(),vo=Ws(),pz=U(),xo=fo(),ti=po(),hl=G(),ig=Lh(),fz=sg(),dg=(t,e)=>new RegExp(t,e);dg.code="new RegExp";var mz=["removeAdditional","useDefaults","coerceTypes"],hz=new Set(["validate","serialize","parse","wrapper","root","schema","keyword","pattern","formats","validate$data","func","obj","Error"]),gz={errorDataPath:"",format:"`validateFormats: false` can be used instead.",nullable:'"nullable" keyword is supported by default.',jsonPointers:"Deprecated jsPropertySyntax can be used instead.",extendRefs:"Deprecated ignoreKeywordsWithRef can be used instead.",missingRefs:"Pass empty schema with $id that should be ignored to ajv.addSchema.",processCode:"Use option `code: {process: (code, schemaEnv: object) => string}`",sourceCode:"Use option `code: {source: true}`",strictDefaults:"It is default now, see option `strict`.",strictKeywords:"It is default now, see option `strict`.",uniqueItems:'"uniqueItems" keyword is always validated.',unknownFormats:"Disable strict mode or pass `true` to `ajv.addFormat` (or `formats` option).",cache:"Map is used as cache, schema object as key.",serialize:"Map is used as cache, schema object as key.",ajvErrors:"It is default now."},yz={ignoreKeywordsWithRef:"",jsPropertySyntax:"",unicode:'"minLength"/"maxLength" account for unicode characters by default.'},ag=200;function _z(t){var e,r,n,o,s,i,a,c,u,l,d,m,f,p,h,g,b,v,x,T,N,he,Fe,ye,Ve;let bn=t.strict,ki=(e=t.code)===null||e===void 0?void 0:e.optimize,bd=ki===!0||ki===void 0?1:ki||0,wd=(n=(r=t.code)===null||r===void 0?void 0:r.regExp)!==null&&n!==void 0?n:dg,Xy=(o=t.uriResolver)!==null&&o!==void 0?o:fz.default;return{strictSchema:(i=(s=t.strictSchema)!==null&&s!==void 0?s:bn)!==null&&i!==void 0?i:!0,strictNumbers:(c=(a=t.strictNumbers)!==null&&a!==void 0?a:bn)!==null&&c!==void 0?c:!0,strictTypes:(l=(u=t.strictTypes)!==null&&u!==void 0?u:bn)!==null&&l!==void 0?l:"log",strictTuples:(m=(d=t.strictTuples)!==null&&d!==void 0?d:bn)!==null&&m!==void 0?m:"log",strictRequired:(p=(f=t.strictRequired)!==null&&f!==void 0?f:bn)!==null&&p!==void 0?p:!1,code:t.code?{...t.code,optimize:bd,regExp:wd}:{optimize:bd,regExp:wd},loopRequired:(h=t.loopRequired)!==null&&h!==void 0?h:ag,loopEnum:(g=t.loopEnum)!==null&&g!==void 0?g:ag,meta:(b=t.meta)!==null&&b!==void 0?b:!0,messages:(v=t.messages)!==null&&v!==void 0?v:!0,inlineRefs:(x=t.inlineRefs)!==null&&x!==void 0?x:!0,schemaId:(T=t.schemaId)!==null&&T!==void 0?T:"$id",addUsedSchema:(N=t.addUsedSchema)!==null&&N!==void 0?N:!0,validateSchema:(he=t.validateSchema)!==null&&he!==void 0?he:!0,validateFormats:(Fe=t.validateFormats)!==null&&Fe!==void 0?Fe:!0,unicodeRegExp:(ye=t.unicodeRegExp)!==null&&ye!==void 0?ye:!0,int32range:(Ve=t.int32range)!==null&&Ve!==void 0?Ve:!0,uriResolver:Xy}}var bo=class{constructor(e={}){this.schemas={},this.refs={},this.formats=Object.create(null),this._compilations=new Set,this._loading={},this._cache=new Map,e=this.opts={...e,..._z(e)};let{es5:r,lines:n}=this.opts.code;this.scope=new pz.ValueScope({scope:{},prefixes:hz,es5:r,lines:n}),this.logger=kz(e.logger);let o=e.validateFormats;e.validateFormats=!1,this.RULES=(0,dz.getRules)(),cg.call(this,gz,e,"NOT SUPPORTED"),cg.call(this,yz,e,"DEPRECATED","warn"),this._metaOpts=wz.call(this),e.formats&&xz.call(this),this._addVocabularies(),this._addDefaultMetaSchema(),e.keywords&&bz.call(this,e.keywords),typeof e.meta=="object"&&this.addMetaSchema(e.meta),vz.call(this),e.validateFormats=o}_addVocabularies(){this.addKeyword("$async")}_addDefaultMetaSchema(){let{$data:e,meta:r,schemaId:n}=this.opts,o=ig;n==="id"&&(o={...ig},o.id=o.$id,delete o.$id),r&&e&&this.addMetaSchema(o,o[n],!1)}defaultMeta(){let{meta:e,schemaId:r}=this.opts;return this.opts.defaultMeta=typeof e=="object"?e[r]||e:void 0}validate(e,r){let n;if(typeof e=="string"){if(n=this.getSchema(e),!n)throw new Error(`no schema with key or ref "${e}"`)}else n=this.compile(e);let o=n(r);return"$async"in n||(this.errors=n.errors),o}compile(e,r){let n=this._addSchema(e,r);return n.validate||this._compileSchemaEnv(n)}compileAsync(e,r){if(typeof this.opts.loadSchema!="function")throw new Error("options.loadSchema should be a function");let{loadSchema:n}=this.opts;return o.call(this,e,r);async function o(l,d){await s.call(this,l.$schema);let m=this._addSchema(l,d);return m.validate||i.call(this,m)}async function s(l){l&&!this.getSchema(l)&&await o.call(this,{$ref:l},!0)}async function i(l){try{return this._compileSchemaEnv(l)}catch(d){if(!(d instanceof lg.default))throw d;return a.call(this,d),await c.call(this,d.missingSchema),i.call(this,l)}}function a({missingSchema:l,missingRef:d}){if(this.refs[l])throw new Error(`AnySchema ${l} is loaded but ${d} cannot be resolved`)}async function c(l){let d=await u.call(this,l);this.refs[l]||await s.call(this,d.$schema),this.refs[l]||this.addSchema(d,l,r)}async function u(l){let d=this._loading[l];if(d)return d;try{return await(this._loading[l]=n(l))}finally{delete this._loading[l]}}}addSchema(e,r,n,o=this.opts.validateSchema){if(Array.isArray(e)){for(let i of e)this.addSchema(i,void 0,n,o);return this}let s;if(typeof e=="object"){let{schemaId:i}=this.opts;if(s=e[i],s!==void 0&&typeof s!="string")throw new Error(`schema ${i} must be string`)}return r=(0,xo.normalizeId)(r||s),this._checkUnique(r),this.schemas[r]=this._addSchema(e,n,r,o,!0),this}addMetaSchema(e,r,n=this.opts.validateSchema){return this.addSchema(e,r,!0,n),this}validateSchema(e,r){if(typeof e=="boolean")return!0;let n;if(n=e.$schema,n!==void 0&&typeof n!="string")throw new Error("$schema must be a string");if(n=n||this.opts.defaultMeta||this.defaultMeta(),!n)return this.logger.warn("meta-schema not available"),this.errors=null,!0;let o=this.validate(n,e);if(!o&&r){let s="schema is invalid: "+this.errorsText();if(this.opts.validateSchema==="log")this.logger.error(s);else throw new Error(s)}return o}getSchema(e){let r;for(;typeof(r=ug.call(this,e))=="string";)e=r;if(r===void 0){let{schemaId:n}=this.opts,o=new vo.SchemaEnv({schema:{},schemaId:n});if(r=vo.resolveSchema.call(this,o,e),!r)return;this.refs[e]=r}return r.validate||this._compileSchemaEnv(r)}removeSchema(e){if(e instanceof RegExp)return this._removeAllSchemas(this.schemas,e),this._removeAllSchemas(this.refs,e),this;switch(typeof e){case"undefined":return this._removeAllSchemas(this.schemas),this._removeAllSchemas(this.refs),this._cache.clear(),this;case"string":{let r=ug.call(this,e);return typeof r=="object"&&this._cache.delete(r.schema),delete this.schemas[e],delete this.refs[e],this}case"object":{let r=e;this._cache.delete(r);let n=e[this.opts.schemaId];return n&&(n=(0,xo.normalizeId)(n),delete this.schemas[n],delete this.refs[n]),this}default:throw new Error("ajv.removeSchema: invalid parameter")}}addVocabulary(e){for(let r of e)this.addKeyword(r);return this}addKeyword(e,r){let n;if(typeof e=="string")n=e,typeof r=="object"&&(this.logger.warn("these parameters are deprecated, see docs for addKeyword"),r.keyword=n);else if(typeof e=="object"&&r===void 0){if(r=e,n=r.keyword,Array.isArray(n)&&!n.length)throw new Error("addKeywords: keyword must be string or non-empty array")}else throw new Error("invalid addKeywords parameters");if(zz.call(this,n,r),!r)return(0,hl.eachItem)(n,s=>ml.call(this,s)),this;Pz.call(this,r);let o={...r,type:(0,ti.getJSONTypes)(r.type),schemaType:(0,ti.getJSONTypes)(r.schemaType)};return(0,hl.eachItem)(n,o.type.length===0?s=>ml.call(this,s,o):s=>o.type.forEach(i=>ml.call(this,s,o,i))),this}getKeyword(e){let r=this.RULES.all[e];return typeof r=="object"?r.definition:!!r}removeKeyword(e){let{RULES:r}=this;delete r.keywords[e],delete r.all[e];for(let n of r.rules){let o=n.rules.findIndex(s=>s.keyword===e);o>=0&&n.rules.splice(o,1)}return this}addFormat(e,r){return typeof r=="string"&&(r=new RegExp(r)),this.formats[e]=r,this}errorsText(e=this.errors,{separator:r=", ",dataVar:n="data"}={}){return!e||e.length===0?"No errors":e.map(o=>`${n}${o.instancePath} ${o.message}`).reduce((o,s)=>o+r+s)}$dataMetaSchema(e,r){let n=this.RULES.all;e=JSON.parse(JSON.stringify(e));for(let o of r){let s=o.split("/").slice(1),i=e;for(let a of s)i=i[a];for(let a in n){let c=n[a];if(typeof c!="object")continue;let{$data:u}=c.definition,l=i[a];u&&l&&(i[a]=pg(l))}}return e}_removeAllSchemas(e,r){for(let n in e){let o=e[n];(!r||r.test(n))&&(typeof o=="string"?delete e[n]:o&&!o.meta&&(this._cache.delete(o.schema),delete e[n]))}}_addSchema(e,r,n,o=this.opts.validateSchema,s=this.opts.addUsedSchema){let i,{schemaId:a}=this.opts;if(typeof e=="object")i=e[a];else{if(this.opts.jtd)throw new Error("schema must be object");if(typeof e!="boolean")throw new Error("schema must be object or boolean")}let c=this._cache.get(e);if(c!==void 0)return c;n=(0,xo.normalizeId)(i||n);let u=xo.getSchemaRefs.call(this,e,n);return c=new vo.SchemaEnv({schema:e,schemaId:a,meta:r,baseId:n,localRefs:u}),this._cache.set(c.schema,c),s&&!n.startsWith("#")&&(n&&this._checkUnique(n),this.refs[n]=c),o&&this.validateSchema(e,!0),c}_checkUnique(e){if(this.schemas[e]||this.refs[e])throw new Error(`schema with key or id "${e}" already exists`)}_compileSchemaEnv(e){if(e.meta?this._compileMetaSchema(e):vo.compileSchema.call(this,e),!e.validate)throw new Error("ajv implementation error");return e.validate}_compileMetaSchema(e){let r=this.opts;this.opts=this._metaOpts;try{vo.compileSchema.call(this,e)}finally{this.opts=r}}};bo.ValidationError=lz.default;bo.MissingRefError=lg.default;Se.default=bo;function cg(t,e,r,n="error"){for(let o in t){let s=o;s in e&&this.logger[n](`${r}: option ${o}. ${t[s]}`)}}function ug(t){return t=(0,xo.normalizeId)(t),this.schemas[t]||this.refs[t]}function vz(){let t=this.opts.schemas;if(t)if(Array.isArray(t))this.addSchema(t);else for(let e in t)this.addSchema(t[e],e)}function xz(){for(let t in this.opts.formats){let e=this.opts.formats[t];e&&this.addFormat(t,e)}}function bz(t){if(Array.isArray(t)){this.addVocabulary(t);return}this.logger.warn("keywords option as map is deprecated, pass array");for(let e in t){let r=t[e];r.keyword||(r.keyword=e),this.addKeyword(r)}}function wz(){let t={...this.opts};for(let e of mz)delete t[e];return t}var $z={log(){},warn(){},error(){}};function kz(t){if(t===!1)return $z;if(t===void 0)return console;if(t.log&&t.warn&&t.error)return t;throw new Error("logger must implement log, warn and error methods")}var Sz=/^[a-z_$][a-z0-9_$:-]*$/i;function zz(t,e){let{RULES:r}=this;if((0,hl.eachItem)(t,n=>{if(r.keywords[n])throw new Error(`Keyword ${n} is already defined`);if(!Sz.test(n))throw new Error(`Keyword ${n} has invalid name`)}),!!e&&e.$data&&!("code"in e||"validate"in e))throw new Error('$data keyword must have "code" or "validate" function')}function ml(t,e,r){var n;let o=e?.post;if(r&&o)throw new Error('keyword with "post" flag cannot have "type"');let{RULES:s}=this,i=o?s.post:s.rules.find(({type:c})=>c===r);if(i||(i={type:r,rules:[]},s.rules.push(i)),s.keywords[t]=!0,!e)return;let a={keyword:t,definition:{...e,type:(0,ti.getJSONTypes)(e.type),schemaType:(0,ti.getJSONTypes)(e.schemaType)}};e.before?Tz.call(this,i,a,e.before):i.rules.push(a),s.all[t]=a,(n=e.implements)===null||n===void 0||n.forEach(c=>this.addKeyword(c))}function Tz(t,e,r){let n=t.rules.findIndex(o=>o.keyword===r);n>=0?t.rules.splice(n,0,e):(t.rules.push(e),this.logger.warn(`rule ${r} is not defined`))}function Pz(t){let{metaSchema:e}=t;e!==void 0&&(t.$data&&this.opts.$data&&(e=pg(e)),t.validateSchema=this.compile(e,!0))}var Ez={$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"};function pg(t){return{anyOf:[t,Ez]}}});var mg=S(gl=>{"use strict";Object.defineProperty(gl,"__esModule",{value:!0});var Oz={keyword:"id",code(){throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')}};gl.default=Oz});var _g=S(Rr=>{"use strict";Object.defineProperty(Rr,"__esModule",{value:!0});Rr.callRef=Rr.getValidate=void 0;var Iz=yo(),hg=tt(),Ue=U(),pn=It(),gg=Ws(),ri=G(),Rz={keyword:"$ref",schemaType:"string",code(t){let{gen:e,schema:r,it:n}=t,{baseId:o,schemaEnv:s,validateName:i,opts:a,self:c}=n,{root:u}=s;if((r==="#"||r==="#/")&&o===u.baseId)return d();let l=gg.resolveRef.call(c,u,o,r);if(l===void 0)throw new Iz.default(n.opts.uriResolver,o,r);if(l instanceof gg.SchemaEnv)return m(l);return f(l);function d(){if(s===u)return ni(t,i,s,s.$async);let p=e.scopeValue("root",{ref:u});return ni(t,(0,Ue._)`${p}.validate`,u,u.$async)}function m(p){let h=yg(t,p);ni(t,h,p,p.$async)}function f(p){let h=e.scopeValue("schema",a.code.source===!0?{ref:p,code:(0,Ue.stringify)(p)}:{ref:p}),g=e.name("valid"),b=t.subschema({schema:p,dataTypes:[],schemaPath:Ue.nil,topSchemaRef:h,errSchemaPath:r},g);t.mergeEvaluated(b),t.ok(g)}}};function yg(t,e){let{gen:r}=t;return e.validate?r.scopeValue("validate",{ref:e.validate}):(0,Ue._)`${r.scopeValue("wrapper",{ref:e})}.validate`}Rr.getValidate=yg;function ni(t,e,r,n){let{gen:o,it:s}=t,{allErrors:i,schemaEnv:a,opts:c}=s,u=c.passContext?pn.default.this:Ue.nil;n?l():d();function l(){if(!a.$async)throw new Error("async schema referenced by sync schema");let p=o.let("valid");o.try(()=>{o.code((0,Ue._)`await ${(0,hg.callValidateCode)(t,e,u)}`),f(e),i||o.assign(p,!0)},h=>{o.if((0,Ue._)`!(${h} instanceof ${s.ValidationError})`,()=>o.throw(h)),m(h),i||o.assign(p,!1)}),t.ok(p)}function d(){t.result((0,hg.callValidateCode)(t,e,u),()=>f(e),()=>m(e))}function m(p){let h=(0,Ue._)`${p}.errors`;o.assign(pn.default.vErrors,(0,Ue._)`${pn.default.vErrors} === null ? ${h} : ${pn.default.vErrors}.concat(${h})`),o.assign(pn.default.errors,(0,Ue._)`${pn.default.vErrors}.length`)}function f(p){var h;if(!s.opts.unevaluated)return;let g=(h=r?.validate)===null||h===void 0?void 0:h.evaluated;if(s.props!==!0)if(g&&!g.dynamicProps)g.props!==void 0&&(s.props=ri.mergeEvaluated.props(o,g.props,s.props));else{let b=o.var("props",(0,Ue._)`${p}.evaluated.props`);s.props=ri.mergeEvaluated.props(o,b,s.props,Ue.Name)}if(s.items!==!0)if(g&&!g.dynamicItems)g.items!==void 0&&(s.items=ri.mergeEvaluated.items(o,g.items,s.items));else{let b=o.var("items",(0,Ue._)`${p}.evaluated.items`);s.items=ri.mergeEvaluated.items(o,b,s.items,Ue.Name)}}}Rr.callRef=ni;Rr.default=Rz});var vg=S(yl=>{"use strict";Object.defineProperty(yl,"__esModule",{value:!0});var jz=mg(),Nz=_g(),Cz=["$schema","$id","$defs","$vocabulary",{keyword:"$comment"},"definitions",jz.default,Nz.default];yl.default=Cz});var xg=S(_l=>{"use strict";Object.defineProperty(_l,"__esModule",{value:!0});var oi=U(),Gt=oi.operators,si={maximum:{okStr:"<=",ok:Gt.LTE,fail:Gt.GT},minimum:{okStr:">=",ok:Gt.GTE,fail:Gt.LT},exclusiveMaximum:{okStr:"<",ok:Gt.LT,fail:Gt.GTE},exclusiveMinimum:{okStr:">",ok:Gt.GT,fail:Gt.LTE}},Zz={message:({keyword:t,schemaCode:e})=>(0,oi.str)`must be ${si[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,oi._)`{comparison: ${si[t].okStr}, limit: ${e}}`},Az={keyword:Object.keys(si),type:"number",schemaType:"number",$data:!0,error:Zz,code(t){let{keyword:e,data:r,schemaCode:n}=t;t.fail$data((0,oi._)`${r} ${si[e].fail} ${n} || isNaN(${r})`)}};_l.default=Az});var bg=S(vl=>{"use strict";Object.defineProperty(vl,"__esModule",{value:!0});var wo=U(),Mz={message:({schemaCode:t})=>(0,wo.str)`must be multiple of ${t}`,params:({schemaCode:t})=>(0,wo._)`{multipleOf: ${t}}`},Dz={keyword:"multipleOf",type:"number",schemaType:"number",$data:!0,error:Mz,code(t){let{gen:e,data:r,schemaCode:n,it:o}=t,s=o.opts.multipleOfPrecision,i=e.let("res"),a=s?(0,wo._)`Math.abs(Math.round(${i}) - ${i}) > 1e-${s}`:(0,wo._)`${i} !== parseInt(${i})`;t.fail$data((0,wo._)`(${n} === 0 || (${i} = ${r}/${n}, ${a}))`)}};vl.default=Dz});var $g=S(xl=>{"use strict";Object.defineProperty(xl,"__esModule",{value:!0});function wg(t){let e=t.length,r=0,n=0,o;for(;n<e;)r++,o=t.charCodeAt(n++),o>=55296&&o<=56319&&n<e&&(o=t.charCodeAt(n),(o&64512)===56320&&n++);return r}xl.default=wg;wg.code='require("ajv/dist/runtime/ucs2length").default'});var kg=S(bl=>{"use strict";Object.defineProperty(bl,"__esModule",{value:!0});var jr=U(),Lz=G(),qz=$g(),Uz={message({keyword:t,schemaCode:e}){let r=t==="maxLength"?"more":"fewer";return(0,jr.str)`must NOT have ${r} than ${e} characters`},params:({schemaCode:t})=>(0,jr._)`{limit: ${t}}`},Fz={keyword:["maxLength","minLength"],type:"string",schemaType:"number",$data:!0,error:Uz,code(t){let{keyword:e,data:r,schemaCode:n,it:o}=t,s=e==="maxLength"?jr.operators.GT:jr.operators.LT,i=o.opts.unicode===!1?(0,jr._)`${r}.length`:(0,jr._)`${(0,Lz.useFunc)(t.gen,qz.default)}(${r})`;t.fail$data((0,jr._)`${i} ${s} ${n}`)}};bl.default=Fz});var Sg=S(wl=>{"use strict";Object.defineProperty(wl,"__esModule",{value:!0});var Vz=tt(),Hz=G(),fn=U(),Bz={message:({schemaCode:t})=>(0,fn.str)`must match pattern "${t}"`,params:({schemaCode:t})=>(0,fn._)`{pattern: ${t}}`},Kz={keyword:"pattern",type:"string",schemaType:"string",$data:!0,error:Bz,code(t){let{gen:e,data:r,$data:n,schema:o,schemaCode:s,it:i}=t,a=i.opts.unicodeRegExp?"u":"";if(n){let{regExp:c}=i.opts.code,u=c.code==="new RegExp"?(0,fn._)`new RegExp`:(0,Hz.useFunc)(e,c),l=e.let("valid");e.try(()=>e.assign(l,(0,fn._)`${u}(${s}, ${a}).test(${r})`),()=>e.assign(l,!1)),t.fail$data((0,fn._)`!${l}`)}else{let c=(0,Vz.usePattern)(t,o);t.fail$data((0,fn._)`!${c}.test(${r})`)}}};wl.default=Kz});var zg=S($l=>{"use strict";Object.defineProperty($l,"__esModule",{value:!0});var $o=U(),Jz={message({keyword:t,schemaCode:e}){let r=t==="maxProperties"?"more":"fewer";return(0,$o.str)`must NOT have ${r} than ${e} properties`},params:({schemaCode:t})=>(0,$o._)`{limit: ${t}}`},Xz={keyword:["maxProperties","minProperties"],type:"object",schemaType:"number",$data:!0,error:Jz,code(t){let{keyword:e,data:r,schemaCode:n}=t,o=e==="maxProperties"?$o.operators.GT:$o.operators.LT;t.fail$data((0,$o._)`Object.keys(${r}).length ${o} ${n}`)}};$l.default=Xz});var Tg=S(kl=>{"use strict";Object.defineProperty(kl,"__esModule",{value:!0});var ko=tt(),So=U(),Gz=G(),Wz={message:({params:{missingProperty:t}})=>(0,So.str)`must have required property '${t}'`,params:({params:{missingProperty:t}})=>(0,So._)`{missingProperty: ${t}}`},Yz={keyword:"required",type:"object",schemaType:"array",$data:!0,error:Wz,code(t){let{gen:e,schema:r,schemaCode:n,data:o,$data:s,it:i}=t,{opts:a}=i;if(!s&&r.length===0)return;let c=r.length>=a.loopRequired;if(i.allErrors?u():l(),a.strictRequired){let f=t.parentSchema.properties,{definedProperties:p}=t.it;for(let h of r)if(f?.[h]===void 0&&!p.has(h)){let g=i.schemaEnv.baseId+i.errSchemaPath,b=`required property "${h}" is not defined at "${g}" (strictRequired)`;(0,Gz.checkStrictMode)(i,b,i.opts.strictRequired)}}function u(){if(c||s)t.block$data(So.nil,d);else for(let f of r)(0,ko.checkReportMissingProp)(t,f)}function l(){let f=e.let("missing");if(c||s){let p=e.let("valid",!0);t.block$data(p,()=>m(f,p)),t.ok(p)}else e.if((0,ko.checkMissingProp)(t,r,f)),(0,ko.reportMissingProp)(t,f),e.else()}function d(){e.forOf("prop",n,f=>{t.setParams({missingProperty:f}),e.if((0,ko.noPropertyInData)(e,o,f,a.ownProperties),()=>t.error())})}function m(f,p){t.setParams({missingProperty:f}),e.forOf(f,n,()=>{e.assign(p,(0,ko.propertyInData)(e,o,f,a.ownProperties)),e.if((0,So.not)(p),()=>{t.error(),e.break()})},So.nil)}}};kl.default=Yz});var Pg=S(Sl=>{"use strict";Object.defineProperty(Sl,"__esModule",{value:!0});var zo=U(),Qz={message({keyword:t,schemaCode:e}){let r=t==="maxItems"?"more":"fewer";return(0,zo.str)`must NOT have ${r} than ${e} items`},params:({schemaCode:t})=>(0,zo._)`{limit: ${t}}`},eT={keyword:["maxItems","minItems"],type:"array",schemaType:"number",$data:!0,error:Qz,code(t){let{keyword:e,data:r,schemaCode:n}=t,o=e==="maxItems"?zo.operators.GT:zo.operators.LT;t.fail$data((0,zo._)`${r}.length ${o} ${n}`)}};Sl.default=eT});var ii=S(zl=>{"use strict";Object.defineProperty(zl,"__esModule",{value:!0});var Eg=Xu();Eg.code='require("ajv/dist/runtime/equal").default';zl.default=Eg});var Og=S(Pl=>{"use strict";Object.defineProperty(Pl,"__esModule",{value:!0});var Tl=po(),ze=U(),tT=G(),rT=ii(),nT={message:({params:{i:t,j:e}})=>(0,ze.str)`must NOT have duplicate items (items ## ${e} and ${t} are identical)`,params:({params:{i:t,j:e}})=>(0,ze._)`{i: ${t}, j: ${e}}`},oT={keyword:"uniqueItems",type:"array",schemaType:"boolean",$data:!0,error:nT,code(t){let{gen:e,data:r,$data:n,schema:o,parentSchema:s,schemaCode:i,it:a}=t;if(!n&&!o)return;let c=e.let("valid"),u=s.items?(0,Tl.getSchemaTypes)(s.items):[];t.block$data(c,l,(0,ze._)`${i} === false`),t.ok(c);function l(){let p=e.let("i",(0,ze._)`${r}.length`),h=e.let("j");t.setParams({i:p,j:h}),e.assign(c,!0),e.if((0,ze._)`${p} > 1`,()=>(d()?m:f)(p,h))}function d(){return u.length>0&&!u.some(p=>p==="object"||p==="array")}function m(p,h){let g=e.name("item"),b=(0,Tl.checkDataTypes)(u,g,a.opts.strictNumbers,Tl.DataType.Wrong),v=e.const("indices",(0,ze._)`{}`);e.for((0,ze._)`;${p}--;`,()=>{e.let(g,(0,ze._)`${r}[${p}]`),e.if(b,(0,ze._)`continue`),u.length>1&&e.if((0,ze._)`typeof ${g} == "string"`,(0,ze._)`${g} += "_"`),e.if((0,ze._)`typeof ${v}[${g}] == "number"`,()=>{e.assign(h,(0,ze._)`${v}[${g}]`),t.error(),e.assign(c,!1).break()}).code((0,ze._)`${v}[${g}] = ${p}`)})}function f(p,h){let g=(0,tT.useFunc)(e,rT.default),b=e.name("outer");e.label(b).for((0,ze._)`;${p}--;`,()=>e.for((0,ze._)`${h} = ${p}; ${h}--;`,()=>e.if((0,ze._)`${g}(${r}[${p}], ${r}[${h}])`,()=>{t.error(),e.assign(c,!1).break(b)})))}}};Pl.default=oT});var Ig=S(Ol=>{"use strict";Object.defineProperty(Ol,"__esModule",{value:!0});var El=U(),sT=G(),iT=ii(),aT={message:"must be equal to constant",params:({schemaCode:t})=>(0,El._)`{allowedValue: ${t}}`},cT={keyword:"const",$data:!0,error:aT,code(t){let{gen:e,data:r,$data:n,schemaCode:o,schema:s}=t;n||s&&typeof s=="object"?t.fail$data((0,El._)`!${(0,sT.useFunc)(e,iT.default)}(${r}, ${o})`):t.fail((0,El._)`${s} !== ${r}`)}};Ol.default=cT});var Rg=S(Il=>{"use strict";Object.defineProperty(Il,"__esModule",{value:!0});var To=U(),uT=G(),lT=ii(),dT={message:"must be equal to one of the allowed values",params:({schemaCode:t})=>(0,To._)`{allowedValues: ${t}}`},pT={keyword:"enum",schemaType:"array",$data:!0,error:dT,code(t){let{gen:e,data:r,$data:n,schema:o,schemaCode:s,it:i}=t;if(!n&&o.length===0)throw new Error("enum must have non-empty array");let a=o.length>=i.opts.loopEnum,c,u=()=>c??(c=(0,uT.useFunc)(e,lT.default)),l;if(a||n)l=e.let("valid"),t.block$data(l,d);else{if(!Array.isArray(o))throw new Error("ajv implementation error");let f=e.const("vSchema",s);l=(0,To.or)(...o.map((p,h)=>m(f,h)))}t.pass(l);function d(){e.assign(l,!1),e.forOf("v",s,f=>e.if((0,To._)`${u()}(${r}, ${f})`,()=>e.assign(l,!0).break()))}function m(f,p){let h=o[p];return typeof h=="object"&&h!==null?(0,To._)`${u()}(${r}, ${f}[${p}])`:(0,To._)`${r} === ${h}`}}};Il.default=pT});var jg=S(Rl=>{"use strict";Object.defineProperty(Rl,"__esModule",{value:!0});var fT=xg(),mT=bg(),hT=kg(),gT=Sg(),yT=zg(),_T=Tg(),vT=Pg(),xT=Og(),bT=Ig(),wT=Rg(),$T=[fT.default,mT.default,hT.default,gT.default,yT.default,_T.default,vT.default,xT.default,{keyword:"type",schemaType:["string","array"]},{keyword:"nullable",schemaType:"boolean"},bT.default,wT.default];Rl.default=$T});var Nl=S(Po=>{"use strict";Object.defineProperty(Po,"__esModule",{value:!0});Po.validateAdditionalItems=void 0;var Nr=U(),jl=G(),kT={message:({params:{len:t}})=>(0,Nr.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,Nr._)`{limit: ${t}}`},ST={keyword:"additionalItems",type:"array",schemaType:["boolean","object"],before:"uniqueItems",error:kT,code(t){let{parentSchema:e,it:r}=t,{items:n}=e;if(!Array.isArray(n)){(0,jl.checkStrictMode)(r,'"additionalItems" is ignored when "items" is not an array of schemas');return}Ng(t,n)}};function Ng(t,e){let{gen:r,schema:n,data:o,keyword:s,it:i}=t;i.items=!0;let a=r.const("len",(0,Nr._)`${o}.length`);if(n===!1)t.setParams({len:e.length}),t.pass((0,Nr._)`${a} <= ${e.length}`);else if(typeof n=="object"&&!(0,jl.alwaysValidSchema)(i,n)){let u=r.var("valid",(0,Nr._)`${a} <= ${e.length}`);r.if((0,Nr.not)(u),()=>c(u)),t.ok(u)}function c(u){r.forRange("i",e.length,a,l=>{t.subschema({keyword:s,dataProp:l,dataPropType:jl.Type.Num},u),i.allErrors||r.if((0,Nr.not)(u),()=>r.break())})}}Po.validateAdditionalItems=Ng;Po.default=ST});var Cl=S(Eo=>{"use strict";Object.defineProperty(Eo,"__esModule",{value:!0});Eo.validateTuple=void 0;var Cg=U(),ai=G(),zT=tt(),TT={keyword:"items",type:"array",schemaType:["object","array","boolean"],before:"uniqueItems",code(t){let{schema:e,it:r}=t;if(Array.isArray(e))return Zg(t,"additionalItems",e);r.items=!0,!(0,ai.alwaysValidSchema)(r,e)&&t.ok((0,zT.validateArray)(t))}};function Zg(t,e,r=t.schema){let{gen:n,parentSchema:o,data:s,keyword:i,it:a}=t;l(o),a.opts.unevaluated&&r.length&&a.items!==!0&&(a.items=ai.mergeEvaluated.items(n,r.length,a.items));let c=n.name("valid"),u=n.const("len",(0,Cg._)`${s}.length`);r.forEach((d,m)=>{(0,ai.alwaysValidSchema)(a,d)||(n.if((0,Cg._)`${u} > ${m}`,()=>t.subschema({keyword:i,schemaProp:m,dataProp:m},c)),t.ok(c))});function l(d){let{opts:m,errSchemaPath:f}=a,p=r.length,h=p===d.minItems&&(p===d.maxItems||d[e]===!1);if(m.strictTuples&&!h){let g=`"${i}" is ${p}-tuple, but minItems or maxItems/${e} are not specified or different at path "${f}"`;(0,ai.checkStrictMode)(a,g,m.strictTuples)}}}Eo.validateTuple=Zg;Eo.default=TT});var Ag=S(Zl=>{"use strict";Object.defineProperty(Zl,"__esModule",{value:!0});var PT=Cl(),ET={keyword:"prefixItems",type:"array",schemaType:["array"],before:"uniqueItems",code:t=>(0,PT.validateTuple)(t,"items")};Zl.default=ET});var Dg=S(Al=>{"use strict";Object.defineProperty(Al,"__esModule",{value:!0});var Mg=U(),OT=G(),IT=tt(),RT=Nl(),jT={message:({params:{len:t}})=>(0,Mg.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,Mg._)`{limit: ${t}}`},NT={keyword:"items",type:"array",schemaType:["object","boolean"],before:"uniqueItems",error:jT,code(t){let{schema:e,parentSchema:r,it:n}=t,{prefixItems:o}=r;n.items=!0,!(0,OT.alwaysValidSchema)(n,e)&&(o?(0,RT.validateAdditionalItems)(t,o):t.ok((0,IT.validateArray)(t)))}};Al.default=NT});var Lg=S(Ml=>{"use strict";Object.defineProperty(Ml,"__esModule",{value:!0});var nt=U(),ci=G(),CT={message:({params:{min:t,max:e}})=>e===void 0?(0,nt.str)`must contain at least ${t} valid item(s)`:(0,nt.str)`must contain at least ${t} and no more than ${e} valid item(s)`,params:({params:{min:t,max:e}})=>e===void 0?(0,nt._)`{minContains: ${t}}`:(0,nt._)`{minContains: ${t}, maxContains: ${e}}`},ZT={keyword:"contains",type:"array",schemaType:["object","boolean"],before:"uniqueItems",trackErrors:!0,error:CT,code(t){let{gen:e,schema:r,parentSchema:n,data:o,it:s}=t,i,a,{minContains:c,maxContains:u}=n;s.opts.next?(i=c===void 0?1:c,a=u):i=1;let l=e.const("len",(0,nt._)`${o}.length`);if(t.setParams({min:i,max:a}),a===void 0&&i===0){(0,ci.checkStrictMode)(s,'"minContains" == 0 without "maxContains": "contains" keyword ignored');return}if(a!==void 0&&i>a){(0,ci.checkStrictMode)(s,'"minContains" > "maxContains" is always invalid'),t.fail();return}if((0,ci.alwaysValidSchema)(s,r)){let h=(0,nt._)`${l} >= ${i}`;a!==void 0&&(h=(0,nt._)`${h} && ${l} <= ${a}`),t.pass(h);return}s.items=!0;let d=e.name("valid");a===void 0&&i===1?f(d,()=>e.if(d,()=>e.break())):i===0?(e.let(d,!0),a!==void 0&&e.if((0,nt._)`${o}.length > 0`,m)):(e.let(d,!1),m()),t.result(d,()=>t.reset());function m(){let h=e.name("_valid"),g=e.let("count",0);f(h,()=>e.if(h,()=>p(g)))}function f(h,g){e.forRange("i",0,l,b=>{t.subschema({keyword:"contains",dataProp:b,dataPropType:ci.Type.Num,compositeRule:!0},h),g()})}function p(h){e.code((0,nt._)`${h}++`),a===void 0?e.if((0,nt._)`${h} >= ${i}`,()=>e.assign(d,!0).break()):(e.if((0,nt._)`${h} > ${a}`,()=>e.assign(d,!1).break()),i===1?e.assign(d,!0):e.if((0,nt._)`${h} >= ${i}`,()=>e.assign(d,!0)))}}};Ml.default=ZT});var Fg=S(xt=>{"use strict";Object.defineProperty(xt,"__esModule",{value:!0});xt.validateSchemaDeps=xt.validatePropertyDeps=xt.error=void 0;var Dl=U(),AT=G(),Oo=tt();xt.error={message:({params:{property:t,depsCount:e,deps:r}})=>{let n=e===1?"property":"properties";return(0,Dl.str)`must have ${n} ${r} when property ${t} is present`},params:({params:{property:t,depsCount:e,deps:r,missingProperty:n}})=>(0,Dl._)`{property: ${t},
|
|
45
|
+
|| ${i} === "boolean" || ${o} === null`).assign(a,(0,L._)`[${o}]`)}}}function Mk({gen:t,parentData:e,parentDataProperty:r},n){t.if((0,L._)`${e} !== undefined`,()=>t.assign((0,L._)`${e}[${r}]`,n))}function cl(t,e,r,n=pn.Correct){let o=n===pn.Correct?L.operators.EQ:L.operators.NEQ,s;switch(t){case"null":return(0,L._)`${e} ${o} null`;case"array":s=(0,L._)`Array.isArray(${e})`;break;case"object":s=(0,L._)`${e} && typeof ${e} == "object" && !Array.isArray(${e})`;break;case"integer":s=i((0,L._)`!(${e} % 1) && !isNaN(${e})`);break;case"number":s=i();break;default:return(0,L._)`typeof ${e} ${o} ${t}`}return n===pn.Correct?s:(0,L.not)(s);function i(a=L.nil){return(0,L.and)((0,L._)`typeof ${e} == "number"`,a,r?(0,L._)`isFinite(${e})`:L.nil)}}Ee.checkDataType=cl;function ul(t,e,r,n){if(t.length===1)return cl(t[0],e,r,n);let o,s=(0,Ch.toHash)(t);if(s.array&&s.object){let i=(0,L._)`typeof ${e} != "object"`;o=s.null?i:(0,L._)`!${e} || ${i}`,delete s.null,delete s.array,delete s.object}else o=L.nil;s.number&&delete s.integer;for(let i in s)o=(0,L.and)(o,cl(i,e,r,n));return o}Ee.checkDataTypes=ul;var Dk={message:({schema:t})=>`must be ${t}`,params:({schema:t,schemaValue:e})=>typeof t=="string"?(0,L._)`{type: ${t}}`:(0,L._)`{type: ${e}}`};function ll(t){let e=Lk(t);(0,jk.reportError)(e,Dk)}Ee.reportTypeError=ll;function Lk(t){let{gen:e,data:r,schema:n}=t,o=(0,Ch.schemaRefOrVal)(t,n,"type");return{gen:e,keyword:"type",data:r,schema:n.type,schemaCode:o,schemaValue:o,parentSchema:n,params:{},it:t}}});var Dh=S(oi=>{"use strict";Object.defineProperty(oi,"__esModule",{value:!0});oi.assignDefaults=void 0;var fn=U(),qk=G();function Uk(t,e){let{properties:r,items:n}=t.schema;if(e==="object"&&r)for(let o in r)Mh(t,o,r[o].default);else e==="array"&&Array.isArray(n)&&n.forEach((o,s)=>Mh(t,s,o.default))}oi.assignDefaults=Uk;function Mh(t,e,r){let{gen:n,compositeRule:o,data:s,opts:i}=t;if(r===void 0)return;let a=(0,fn._)`${s}${(0,fn.getProperty)(e)}`;if(o){(0,qk.checkStrictMode)(t,`default is ignored for: ${a}`);return}let c=(0,fn._)`${a} === undefined`;i.useDefaults==="empty"&&(c=(0,fn._)`${c} || ${a} === null || ${a} === ""`),n.if(c,(0,fn._)`${a} = ${(0,fn.stringify)(r)}`)}});var rt=S(te=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});te.validateUnion=te.validateArray=te.usePattern=te.callValidateCode=te.schemaProperties=te.allSchemaProperties=te.noPropertyInData=te.propertyInData=te.isOwnProperty=te.hasPropFunc=te.reportMissingProp=te.checkMissingProp=te.checkReportMissingProp=void 0;var ae=U(),dl=G(),Jt=Rt(),Fk=G();function Vk(t,e){let{gen:r,data:n,it:o}=t;r.if(fl(r,n,e,o.opts.ownProperties),()=>{t.setParams({missingProperty:(0,ae._)`${e}`},!0),t.error()})}te.checkReportMissingProp=Vk;function Hk({gen:t,data:e,it:{opts:r}},n,o){return(0,ae.or)(...n.map(s=>(0,ae.and)(fl(t,e,s,r.ownProperties),(0,ae._)`${o} = ${s}`)))}te.checkMissingProp=Hk;function Kk(t,e){t.setParams({missingProperty:e},!0),t.error()}te.reportMissingProp=Kk;function Lh(t){return t.scopeValue("func",{ref:Object.prototype.hasOwnProperty,code:(0,ae._)`Object.prototype.hasOwnProperty`})}te.hasPropFunc=Lh;function pl(t,e,r){return(0,ae._)`${Lh(t)}.call(${e}, ${r})`}te.isOwnProperty=pl;function Bk(t,e,r,n){let o=(0,ae._)`${e}${(0,ae.getProperty)(r)} !== undefined`;return n?(0,ae._)`${o} && ${pl(t,e,r)}`:o}te.propertyInData=Bk;function fl(t,e,r,n){let o=(0,ae._)`${e}${(0,ae.getProperty)(r)} === undefined`;return n?(0,ae.or)(o,(0,ae.not)(pl(t,e,r))):o}te.noPropertyInData=fl;function qh(t){return t?Object.keys(t).filter(e=>e!=="__proto__"):[]}te.allSchemaProperties=qh;function Xk(t,e){return qh(e).filter(r=>!(0,dl.alwaysValidSchema)(t,e[r]))}te.schemaProperties=Xk;function Jk({schemaCode:t,data:e,it:{gen:r,topSchemaRef:n,schemaPath:o,errorPath:s},it:i},a,c,u){let l=u?(0,ae._)`${t}, ${e}, ${n}${o}`:e,d=[[Jt.default.instancePath,(0,ae.strConcat)(Jt.default.instancePath,s)],[Jt.default.parentData,i.parentData],[Jt.default.parentDataProperty,i.parentDataProperty],[Jt.default.rootData,Jt.default.rootData]];i.opts.dynamicRef&&d.push([Jt.default.dynamicAnchors,Jt.default.dynamicAnchors]);let f=(0,ae._)`${l}, ${r.object(...d)}`;return c!==ae.nil?(0,ae._)`${a}.call(${c}, ${f})`:(0,ae._)`${a}(${f})`}te.callValidateCode=Jk;var Gk=(0,ae._)`new RegExp`;function Wk({gen:t,it:{opts:e}},r){let n=e.unicodeRegExp?"u":"",{regExp:o}=e.code,s=o(r,n);return t.scopeValue("pattern",{key:s.toString(),ref:s,code:(0,ae._)`${o.code==="new RegExp"?Gk:(0,Fk.useFunc)(t,o)}(${r}, ${n})`})}te.usePattern=Wk;function Yk(t){let{gen:e,data:r,keyword:n,it:o}=t,s=e.name("valid");if(o.allErrors){let a=e.let("valid",!0);return i(()=>e.assign(a,!1)),a}return e.var(s,!0),i(()=>e.break()),s;function i(a){let c=e.const("len",(0,ae._)`${r}.length`);e.forRange("i",0,c,u=>{t.subschema({keyword:n,dataProp:u,dataPropType:dl.Type.Num},s),e.if((0,ae.not)(s),a)})}}te.validateArray=Yk;function Qk(t){let{gen:e,schema:r,keyword:n,it:o}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");if(r.some(c=>(0,dl.alwaysValidSchema)(o,c))&&!o.opts.unevaluated)return;let i=e.let("valid",!1),a=e.name("_valid");e.block(()=>r.forEach((c,u)=>{let l=t.subschema({keyword:n,schemaProp:u,compositeRule:!0},a);e.assign(i,(0,ae._)`${i} || ${a}`),t.mergeValidEvaluated(l,a)||e.if((0,ae.not)(i))})),t.result(i,()=>t.reset(),()=>t.error(!0))}te.validateUnion=Qk});var Vh=S(_t=>{"use strict";Object.defineProperty(_t,"__esModule",{value:!0});_t.validateKeywordUsage=_t.validSchemaType=_t.funcKeywordCode=_t.macroKeywordCode=void 0;var Ce=U(),Zr=Rt(),eS=rt(),tS=vo();function rS(t,e){let{gen:r,keyword:n,schema:o,parentSchema:s,it:i}=t,a=e.macro.call(i.self,o,s,i),c=Fh(r,n,a);i.opts.validateSchema!==!1&&i.self.validateSchema(a,!0);let u=r.name("valid");t.subschema({schema:a,schemaPath:Ce.nil,errSchemaPath:`${i.errSchemaPath}/${n}`,topSchemaRef:c,compositeRule:!0},u),t.pass(u,()=>t.error(!0))}_t.macroKeywordCode=rS;function nS(t,e){var r;let{gen:n,keyword:o,schema:s,parentSchema:i,$data:a,it:c}=t;sS(c,e);let u=!a&&e.compile?e.compile.call(c.self,s,i,c):e.validate,l=Fh(n,o,u),d=n.let("valid");t.block$data(d,f),t.ok((r=e.valid)!==null&&r!==void 0?r:d);function f(){if(e.errors===!1)h(),e.modifying&&Uh(t),g(()=>t.error());else{let w=e.async?m():p();e.modifying&&Uh(t),g(()=>oS(t,w))}}function m(){let w=n.let("ruleErrs",null);return n.try(()=>h((0,Ce._)`await `),v=>n.assign(d,!1).if((0,Ce._)`${v} instanceof ${c.ValidationError}`,()=>n.assign(w,(0,Ce._)`${v}.errors`),()=>n.throw(v))),w}function p(){let w=(0,Ce._)`${l}.errors`;return n.assign(w,null),h(Ce.nil),w}function h(w=e.async?(0,Ce._)`await `:Ce.nil){let v=c.opts.passContext?Zr.default.this:Zr.default.self,x=!("compile"in e&&!a||e.schema===!1);n.assign(d,(0,Ce._)`${w}${(0,eS.callValidateCode)(t,l,v,x)}`,e.modifying)}function g(w){var v;n.if((0,Ce.not)((v=e.valid)!==null&&v!==void 0?v:d),w)}}_t.funcKeywordCode=nS;function Uh(t){let{gen:e,data:r,it:n}=t;e.if(n.parentData,()=>e.assign(r,(0,Ce._)`${n.parentData}[${n.parentDataProperty}]`))}function oS(t,e){let{gen:r}=t;r.if((0,Ce._)`Array.isArray(${e})`,()=>{r.assign(Zr.default.vErrors,(0,Ce._)`${Zr.default.vErrors} === null ? ${e} : ${Zr.default.vErrors}.concat(${e})`).assign(Zr.default.errors,(0,Ce._)`${Zr.default.vErrors}.length`),(0,tS.extendErrors)(t)},()=>t.error())}function sS({schemaEnv:t},e){if(e.async&&!t.$async)throw new Error("async keyword in sync schema")}function Fh(t,e,r){if(r===void 0)throw new Error(`keyword "${e}" failed to compile`);return t.scopeValue("keyword",typeof r=="function"?{ref:r}:{ref:r,code:(0,Ce.stringify)(r)})}function iS(t,e,r=!1){return!e.length||e.some(n=>n==="array"?Array.isArray(t):n==="object"?t&&typeof t=="object"&&!Array.isArray(t):typeof t==n||r&&typeof t>"u")}_t.validSchemaType=iS;function aS({schema:t,opts:e,self:r,errSchemaPath:n},o,s){if(Array.isArray(o.keyword)?!o.keyword.includes(s):o.keyword!==s)throw new Error("ajv implementation error");let i=o.dependencies;if(i?.some(a=>!Object.prototype.hasOwnProperty.call(t,a)))throw new Error(`parent schema must have dependencies of ${s}: ${i.join(",")}`);if(o.validateSchema&&!o.validateSchema(t[s])){let c=`keyword "${s}" value is invalid at path "${n}": `+r.errorsText(o.validateSchema.errors);if(e.validateSchema==="log")r.logger.error(c);else throw new Error(c)}}_t.validateKeywordUsage=aS});var Kh=S(Gt=>{"use strict";Object.defineProperty(Gt,"__esModule",{value:!0});Gt.extendSubschemaMode=Gt.extendSubschemaData=Gt.getSubschema=void 0;var vt=U(),Hh=G();function cS(t,{keyword:e,schemaProp:r,schema:n,schemaPath:o,errSchemaPath:s,topSchemaRef:i}){if(e!==void 0&&n!==void 0)throw new Error('both "keyword" and "schema" passed, only one allowed');if(e!==void 0){let a=t.schema[e];return r===void 0?{schema:a,schemaPath:(0,vt._)`${t.schemaPath}${(0,vt.getProperty)(e)}`,errSchemaPath:`${t.errSchemaPath}/${e}`}:{schema:a[r],schemaPath:(0,vt._)`${t.schemaPath}${(0,vt.getProperty)(e)}${(0,vt.getProperty)(r)}`,errSchemaPath:`${t.errSchemaPath}/${e}/${(0,Hh.escapeFragment)(r)}`}}if(n!==void 0){if(o===void 0||s===void 0||i===void 0)throw new Error('"schemaPath", "errSchemaPath" and "topSchemaRef" are required with "schema"');return{schema:n,schemaPath:o,topSchemaRef:i,errSchemaPath:s}}throw new Error('either "keyword" or "schema" must be passed')}Gt.getSubschema=cS;function uS(t,e,{dataProp:r,dataPropType:n,data:o,dataTypes:s,propertyName:i}){if(o!==void 0&&r!==void 0)throw new Error('both "data" and "dataProp" passed, only one allowed');let{gen:a}=e;if(r!==void 0){let{errorPath:u,dataPathArr:l,opts:d}=e,f=a.let("data",(0,vt._)`${e.data}${(0,vt.getProperty)(r)}`,!0);c(f),t.errorPath=(0,vt.str)`${u}${(0,Hh.getErrorPath)(r,n,d.jsPropertySyntax)}`,t.parentDataProperty=(0,vt._)`${r}`,t.dataPathArr=[...l,t.parentDataProperty]}if(o!==void 0){let u=o instanceof vt.Name?o:a.let("data",o,!0);c(u),i!==void 0&&(t.propertyName=i)}s&&(t.dataTypes=s);function c(u){t.data=u,t.dataLevel=e.dataLevel+1,t.dataTypes=[],e.definedProperties=new Set,t.parentData=e.data,t.dataNames=[...e.dataNames,u]}}Gt.extendSubschemaData=uS;function lS(t,{jtdDiscriminator:e,jtdMetadata:r,compositeRule:n,createErrors:o,allErrors:s}){n!==void 0&&(t.compositeRule=n),o!==void 0&&(t.createErrors=o),s!==void 0&&(t.allErrors=s),t.jtdDiscriminator=e,t.jtdMetadata=r}Gt.extendSubschemaMode=lS});var ml=S((gC,Bh)=>{"use strict";Bh.exports=function t(e,r){if(e===r)return!0;if(e&&r&&typeof e=="object"&&typeof r=="object"){if(e.constructor!==r.constructor)return!1;var n,o,s;if(Array.isArray(e)){if(n=e.length,n!=r.length)return!1;for(o=n;o--!==0;)if(!t(e[o],r[o]))return!1;return!0}if(e.constructor===RegExp)return e.source===r.source&&e.flags===r.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===r.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===r.toString();if(s=Object.keys(e),n=s.length,n!==Object.keys(r).length)return!1;for(o=n;o--!==0;)if(!Object.prototype.hasOwnProperty.call(r,s[o]))return!1;for(o=n;o--!==0;){var i=s[o];if(!t(e[i],r[i]))return!1}return!0}return e!==e&&r!==r}});var Jh=S((yC,Xh)=>{"use strict";var Wt=Xh.exports=function(t,e,r){typeof e=="function"&&(r=e,e={}),r=e.cb||r;var n=typeof r=="function"?r:r.pre||function(){},o=r.post||function(){};si(e,n,o,t,"",t)};Wt.keywords={additionalItems:!0,items:!0,contains:!0,additionalProperties:!0,propertyNames:!0,not:!0,if:!0,then:!0,else:!0};Wt.arrayKeywords={items:!0,allOf:!0,anyOf:!0,oneOf:!0};Wt.propsKeywords={$defs:!0,definitions:!0,properties:!0,patternProperties:!0,dependencies:!0};Wt.skipKeywords={default:!0,enum:!0,const:!0,required:!0,maximum:!0,minimum:!0,exclusiveMaximum:!0,exclusiveMinimum:!0,multipleOf:!0,maxLength:!0,minLength:!0,pattern:!0,format:!0,maxItems:!0,minItems:!0,uniqueItems:!0,maxProperties:!0,minProperties:!0};function si(t,e,r,n,o,s,i,a,c,u){if(n&&typeof n=="object"&&!Array.isArray(n)){e(n,o,s,i,a,c,u);for(var l in n){var d=n[l];if(Array.isArray(d)){if(l in Wt.arrayKeywords)for(var f=0;f<d.length;f++)si(t,e,r,d[f],o+"/"+l+"/"+f,s,o,l,n,f)}else if(l in Wt.propsKeywords){if(d&&typeof d=="object")for(var m in d)si(t,e,r,d[m],o+"/"+l+"/"+dS(m),s,o,l,n,m)}else(l in Wt.keywords||t.allKeys&&!(l in Wt.skipKeywords))&&si(t,e,r,d,o+"/"+l,s,o,l,n)}r(n,o,s,i,a,c,u)}}function dS(t){return t.replace(/~/g,"~0").replace(/\//g,"~1")}});var wo=S(Fe=>{"use strict";Object.defineProperty(Fe,"__esModule",{value:!0});Fe.getSchemaRefs=Fe.resolveUrl=Fe.normalizeId=Fe._getFullPath=Fe.getFullPath=Fe.inlineRef=void 0;var pS=G(),fS=ml(),mS=Jh(),hS=new Set(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum","const"]);function gS(t,e=!0){return typeof t=="boolean"?!0:e===!0?!hl(t):e?Gh(t)<=e:!1}Fe.inlineRef=gS;var yS=new Set(["$ref","$recursiveRef","$recursiveAnchor","$dynamicRef","$dynamicAnchor"]);function hl(t){for(let e in t){if(yS.has(e))return!0;let r=t[e];if(Array.isArray(r)&&r.some(hl)||typeof r=="object"&&hl(r))return!0}return!1}function Gh(t){let e=0;for(let r in t){if(r==="$ref")return 1/0;if(e++,!hS.has(r)&&(typeof t[r]=="object"&&(0,pS.eachItem)(t[r],n=>e+=Gh(n)),e===1/0))return 1/0}return e}function Wh(t,e="",r){r!==!1&&(e=mn(e));let n=t.parse(e);return Yh(t,n)}Fe.getFullPath=Wh;function Yh(t,e){return t.serialize(e).split("#")[0]+"#"}Fe._getFullPath=Yh;var _S=/#\/?$/;function mn(t){return t?t.replace(_S,""):""}Fe.normalizeId=mn;function vS(t,e,r){return r=mn(r),t.resolve(e,r)}Fe.resolveUrl=vS;var xS=/^[a-z_][-a-z0-9._]*$/i;function wS(t,e){if(typeof t=="boolean")return{};let{schemaId:r,uriResolver:n}=this.opts,o=mn(t[r]||e),s={"":o},i=Wh(n,o,!1),a={},c=new Set;return mS(t,{allKeys:!0},(d,f,m,p)=>{if(p===void 0)return;let h=i+f,g=s[p];typeof d[r]=="string"&&(g=w.call(this,d[r])),v.call(this,d.$anchor),v.call(this,d.$dynamicAnchor),s[f]=g;function w(x){let T=this.opts.uriResolver.resolve;if(x=mn(g?T(g,x):x),c.has(x))throw l(x);c.add(x);let N=this.refs[x];return typeof N=="string"&&(N=this.refs[N]),typeof N=="object"?u(d,N.schema,x):x!==mn(h)&&(x[0]==="#"?(u(d,a[x],x),a[x]=d):this.refs[x]=h),x}function v(x){if(typeof x=="string"){if(!xS.test(x))throw new Error(`invalid anchor "${x}"`);w.call(this,`#${x}`)}}}),a;function u(d,f,m){if(f!==void 0&&!fS(d,f))throw l(m)}function l(d){return new Error(`reference "${d}" resolves to more than one schema`)}}Fe.getSchemaRefs=wS});var ko=S(Yt=>{"use strict";Object.defineProperty(Yt,"__esModule",{value:!0});Yt.getData=Yt.KeywordCxt=Yt.validateFunctionCode=void 0;var ng=Rh(),Qh=xo(),yl=al(),ii=xo(),bS=Dh(),$o=Vh(),gl=Kh(),R=U(),M=Rt(),$S=wo(),jt=G(),bo=vo();function kS(t){if(ig(t)&&(ag(t),sg(t))){TS(t);return}og(t,()=>(0,ng.topBoolOrEmptySchema)(t))}Yt.validateFunctionCode=kS;function og({gen:t,validateName:e,schema:r,schemaEnv:n,opts:o},s){o.code.es5?t.func(e,(0,R._)`${M.default.data}, ${M.default.valCxt}`,n.$async,()=>{t.code((0,R._)`"use strict"; ${eg(r,o)}`),zS(t,o),t.code(s)}):t.func(e,(0,R._)`${M.default.data}, ${SS(o)}`,n.$async,()=>t.code(eg(r,o)).code(s))}function SS(t){return(0,R._)`{${M.default.instancePath}="", ${M.default.parentData}, ${M.default.parentDataProperty}, ${M.default.rootData}=${M.default.data}${t.dynamicRef?(0,R._)`, ${M.default.dynamicAnchors}={}`:R.nil}}={}`}function zS(t,e){t.if(M.default.valCxt,()=>{t.var(M.default.instancePath,(0,R._)`${M.default.valCxt}.${M.default.instancePath}`),t.var(M.default.parentData,(0,R._)`${M.default.valCxt}.${M.default.parentData}`),t.var(M.default.parentDataProperty,(0,R._)`${M.default.valCxt}.${M.default.parentDataProperty}`),t.var(M.default.rootData,(0,R._)`${M.default.valCxt}.${M.default.rootData}`),e.dynamicRef&&t.var(M.default.dynamicAnchors,(0,R._)`${M.default.valCxt}.${M.default.dynamicAnchors}`)},()=>{t.var(M.default.instancePath,(0,R._)`""`),t.var(M.default.parentData,(0,R._)`undefined`),t.var(M.default.parentDataProperty,(0,R._)`undefined`),t.var(M.default.rootData,M.default.data),e.dynamicRef&&t.var(M.default.dynamicAnchors,(0,R._)`{}`)})}function TS(t){let{schema:e,opts:r,gen:n}=t;og(t,()=>{r.$comment&&e.$comment&&ug(t),RS(t),n.let(M.default.vErrors,null),n.let(M.default.errors,0),r.unevaluated&&PS(t),cg(t),CS(t)})}function PS(t){let{gen:e,validateName:r}=t;t.evaluated=e.const("evaluated",(0,R._)`${r}.evaluated`),e.if((0,R._)`${t.evaluated}.dynamicProps`,()=>e.assign((0,R._)`${t.evaluated}.props`,(0,R._)`undefined`)),e.if((0,R._)`${t.evaluated}.dynamicItems`,()=>e.assign((0,R._)`${t.evaluated}.items`,(0,R._)`undefined`))}function eg(t,e){let r=typeof t=="object"&&t[e.schemaId];return r&&(e.code.source||e.code.process)?(0,R._)`/*# sourceURL=${r} */`:R.nil}function OS(t,e){if(ig(t)&&(ag(t),sg(t))){ES(t,e);return}(0,ng.boolOrEmptySchema)(t,e)}function sg({schema:t,self:e}){if(typeof t=="boolean")return!t;for(let r in t)if(e.RULES.all[r])return!0;return!1}function ig(t){return typeof t.schema!="boolean"}function ES(t,e){let{schema:r,gen:n,opts:o}=t;o.$comment&&r.$comment&&ug(t),jS(t),NS(t);let s=n.const("_errs",M.default.errors);cg(t,s),n.var(e,(0,R._)`${s} === ${M.default.errors}`)}function ag(t){(0,jt.checkUnknownRules)(t),IS(t)}function cg(t,e){if(t.opts.jtd)return tg(t,[],!1,e);let r=(0,Qh.getSchemaTypes)(t.schema),n=(0,Qh.coerceAndCheckDataType)(t,r);tg(t,r,!n,e)}function IS(t){let{schema:e,errSchemaPath:r,opts:n,self:o}=t;e.$ref&&n.ignoreKeywordsWithRef&&(0,jt.schemaHasRulesButRef)(e,o.RULES)&&o.logger.warn(`$ref: keywords ignored in schema at path "${r}"`)}function RS(t){let{schema:e,opts:r}=t;e.default!==void 0&&r.useDefaults&&r.strictSchema&&(0,jt.checkStrictMode)(t,"default is ignored in the schema root")}function jS(t){let e=t.schema[t.opts.schemaId];e&&(t.baseId=(0,$S.resolveUrl)(t.opts.uriResolver,t.baseId,e))}function NS(t){if(t.schema.$async&&!t.schemaEnv.$async)throw new Error("async schema in sync schema")}function ug({gen:t,schemaEnv:e,schema:r,errSchemaPath:n,opts:o}){let s=r.$comment;if(o.$comment===!0)t.code((0,R._)`${M.default.self}.logger.log(${s})`);else if(typeof o.$comment=="function"){let i=(0,R.str)`${n}/$comment`,a=t.scopeValue("root",{ref:e.root});t.code((0,R._)`${M.default.self}.opts.$comment(${s}, ${i}, ${a}.schema)`)}}function CS(t){let{gen:e,schemaEnv:r,validateName:n,ValidationError:o,opts:s}=t;r.$async?e.if((0,R._)`${M.default.errors} === 0`,()=>e.return(M.default.data),()=>e.throw((0,R._)`new ${o}(${M.default.vErrors})`)):(e.assign((0,R._)`${n}.errors`,M.default.vErrors),s.unevaluated&&ZS(t),e.return((0,R._)`${M.default.errors} === 0`))}function ZS({gen:t,evaluated:e,props:r,items:n}){r instanceof R.Name&&t.assign((0,R._)`${e}.props`,r),n instanceof R.Name&&t.assign((0,R._)`${e}.items`,n)}function tg(t,e,r,n){let{gen:o,schema:s,data:i,allErrors:a,opts:c,self:u}=t,{RULES:l}=u;if(s.$ref&&(c.ignoreKeywordsWithRef||!(0,jt.schemaHasRulesButRef)(s,l))){o.block(()=>dg(t,"$ref",l.all.$ref.definition));return}c.jtd||AS(t,e),o.block(()=>{for(let f of l.rules)d(f);d(l.post)});function d(f){(0,yl.shouldUseGroup)(s,f)&&(f.type?(o.if((0,ii.checkDataType)(f.type,i,c.strictNumbers)),rg(t,f),e.length===1&&e[0]===f.type&&r&&(o.else(),(0,ii.reportTypeError)(t)),o.endIf()):rg(t,f),a||o.if((0,R._)`${M.default.errors} === ${n||0}`))}}function rg(t,e){let{gen:r,schema:n,opts:{useDefaults:o}}=t;o&&(0,bS.assignDefaults)(t,e.type),r.block(()=>{for(let s of e.rules)(0,yl.shouldUseRule)(n,s)&&dg(t,s.keyword,s.definition,e.type)})}function AS(t,e){t.schemaEnv.meta||!t.opts.strictTypes||(MS(t,e),t.opts.allowUnionTypes||DS(t,e),LS(t,t.dataTypes))}function MS(t,e){if(e.length){if(!t.dataTypes.length){t.dataTypes=e;return}e.forEach(r=>{lg(t.dataTypes,r)||_l(t,`type "${r}" not allowed by context "${t.dataTypes.join(",")}"`)}),US(t,e)}}function DS(t,e){e.length>1&&!(e.length===2&&e.includes("null"))&&_l(t,"use allowUnionTypes to allow union type keyword")}function LS(t,e){let r=t.self.RULES.all;for(let n in r){let o=r[n];if(typeof o=="object"&&(0,yl.shouldUseRule)(t.schema,o)){let{type:s}=o.definition;s.length&&!s.some(i=>qS(e,i))&&_l(t,`missing type "${s.join(",")}" for keyword "${n}"`)}}}function qS(t,e){return t.includes(e)||e==="number"&&t.includes("integer")}function lg(t,e){return t.includes(e)||e==="integer"&&t.includes("number")}function US(t,e){let r=[];for(let n of t.dataTypes)lg(e,n)?r.push(n):e.includes("integer")&&n==="number"&&r.push("integer");t.dataTypes=r}function _l(t,e){let r=t.schemaEnv.baseId+t.errSchemaPath;e+=` at "${r}" (strictTypes)`,(0,jt.checkStrictMode)(t,e,t.opts.strictTypes)}var ai=class{constructor(e,r,n){if((0,$o.validateKeywordUsage)(e,r,n),this.gen=e.gen,this.allErrors=e.allErrors,this.keyword=n,this.data=e.data,this.schema=e.schema[n],this.$data=r.$data&&e.opts.$data&&this.schema&&this.schema.$data,this.schemaValue=(0,jt.schemaRefOrVal)(e,this.schema,n,this.$data),this.schemaType=r.schemaType,this.parentSchema=e.schema,this.params={},this.it=e,this.def=r,this.$data)this.schemaCode=e.gen.const("vSchema",pg(this.$data,e));else if(this.schemaCode=this.schemaValue,!(0,$o.validSchemaType)(this.schema,r.schemaType,r.allowUndefined))throw new Error(`${n} value must be ${JSON.stringify(r.schemaType)}`);("code"in r?r.trackErrors:r.errors!==!1)&&(this.errsCount=e.gen.const("_errs",M.default.errors))}result(e,r,n){this.failResult((0,R.not)(e),r,n)}failResult(e,r,n){this.gen.if(e),n?n():this.error(),r?(this.gen.else(),r(),this.allErrors&&this.gen.endIf()):this.allErrors?this.gen.endIf():this.gen.else()}pass(e,r){this.failResult((0,R.not)(e),void 0,r)}fail(e){if(e===void 0){this.error(),this.allErrors||this.gen.if(!1);return}this.gen.if(e),this.error(),this.allErrors?this.gen.endIf():this.gen.else()}fail$data(e){if(!this.$data)return this.fail(e);let{schemaCode:r}=this;this.fail((0,R._)`${r} !== undefined && (${(0,R.or)(this.invalid$data(),e)})`)}error(e,r,n){if(r){this.setParams(r),this._error(e,n),this.setParams({});return}this._error(e,n)}_error(e,r){(e?bo.reportExtraError:bo.reportError)(this,this.def.error,r)}$dataError(){(0,bo.reportError)(this,this.def.$dataError||bo.keyword$DataError)}reset(){if(this.errsCount===void 0)throw new Error('add "trackErrors" to keyword definition');(0,bo.resetErrorsCount)(this.gen,this.errsCount)}ok(e){this.allErrors||this.gen.if(e)}setParams(e,r){r?Object.assign(this.params,e):this.params=e}block$data(e,r,n=R.nil){this.gen.block(()=>{this.check$data(e,n),r()})}check$data(e=R.nil,r=R.nil){if(!this.$data)return;let{gen:n,schemaCode:o,schemaType:s,def:i}=this;n.if((0,R.or)((0,R._)`${o} === undefined`,r)),e!==R.nil&&n.assign(e,!0),(s.length||i.validateSchema)&&(n.elseIf(this.invalid$data()),this.$dataError(),e!==R.nil&&n.assign(e,!1)),n.else()}invalid$data(){let{gen:e,schemaCode:r,schemaType:n,def:o,it:s}=this;return(0,R.or)(i(),a());function i(){if(n.length){if(!(r instanceof R.Name))throw new Error("ajv implementation error");let c=Array.isArray(n)?n:[n];return(0,R._)`${(0,ii.checkDataTypes)(c,r,s.opts.strictNumbers,ii.DataType.Wrong)}`}return R.nil}function a(){if(o.validateSchema){let c=e.scopeValue("validate$data",{ref:o.validateSchema});return(0,R._)`!${c}(${r})`}return R.nil}}subschema(e,r){let n=(0,gl.getSubschema)(this.it,e);(0,gl.extendSubschemaData)(n,this.it,e),(0,gl.extendSubschemaMode)(n,e);let o={...this.it,...n,items:void 0,props:void 0};return OS(o,r),o}mergeEvaluated(e,r){let{it:n,gen:o}=this;n.opts.unevaluated&&(n.props!==!0&&e.props!==void 0&&(n.props=jt.mergeEvaluated.props(o,e.props,n.props,r)),n.items!==!0&&e.items!==void 0&&(n.items=jt.mergeEvaluated.items(o,e.items,n.items,r)))}mergeValidEvaluated(e,r){let{it:n,gen:o}=this;if(n.opts.unevaluated&&(n.props!==!0||n.items!==!0))return o.if(r,()=>this.mergeEvaluated(e,R.Name)),!0}};Yt.KeywordCxt=ai;function dg(t,e,r,n){let o=new ai(t,r,e);"code"in r?r.code(o,n):o.$data&&r.validate?(0,$o.funcKeywordCode)(o,r):"macro"in r?(0,$o.macroKeywordCode)(o,r):(r.compile||r.validate)&&(0,$o.funcKeywordCode)(o,r)}var FS=/^\/(?:[^~]|~0|~1)*$/,VS=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function pg(t,{dataLevel:e,dataNames:r,dataPathArr:n}){let o,s;if(t==="")return M.default.rootData;if(t[0]==="/"){if(!FS.test(t))throw new Error(`Invalid JSON-pointer: ${t}`);o=t,s=M.default.rootData}else{let u=VS.exec(t);if(!u)throw new Error(`Invalid JSON-pointer: ${t}`);let l=+u[1];if(o=u[2],o==="#"){if(l>=e)throw new Error(c("property/index",l));return n[e-l]}if(l>e)throw new Error(c("data",l));if(s=r[e-l],!o)return s}let i=s,a=o.split("/");for(let u of a)u&&(s=(0,R._)`${s}${(0,R.getProperty)((0,jt.unescapeJsonPointer)(u))}`,i=(0,R._)`${i} && ${s}`);return i;function c(u,l){return`Cannot access ${u} ${l} levels up, current level is ${e}`}}Yt.getData=pg});var ci=S(xl=>{"use strict";Object.defineProperty(xl,"__esModule",{value:!0});var vl=class extends Error{constructor(e){super("validation failed"),this.errors=e,this.ajv=this.validation=!0}};xl.default=vl});var So=S($l=>{"use strict";Object.defineProperty($l,"__esModule",{value:!0});var wl=wo(),bl=class extends Error{constructor(e,r,n,o){super(o||`can't resolve reference ${n} from id ${r}`),this.missingRef=(0,wl.resolveUrl)(e,r,n),this.missingSchema=(0,wl.normalizeId)((0,wl.getFullPath)(e,this.missingRef))}};$l.default=bl});var li=S(nt=>{"use strict";Object.defineProperty(nt,"__esModule",{value:!0});nt.resolveSchema=nt.getCompilingSchema=nt.resolveRef=nt.compileSchema=nt.SchemaEnv=void 0;var lt=U(),HS=ci(),Ar=Rt(),dt=wo(),fg=G(),KS=ko(),hn=class{constructor(e){var r;this.refs={},this.dynamicAnchors={};let n;typeof e.schema=="object"&&(n=e.schema),this.schema=e.schema,this.schemaId=e.schemaId,this.root=e.root||this,this.baseId=(r=e.baseId)!==null&&r!==void 0?r:(0,dt.normalizeId)(n?.[e.schemaId||"$id"]),this.schemaPath=e.schemaPath,this.localRefs=e.localRefs,this.meta=e.meta,this.$async=n?.$async,this.refs={}}};nt.SchemaEnv=hn;function Sl(t){let e=mg.call(this,t);if(e)return e;let r=(0,dt.getFullPath)(this.opts.uriResolver,t.root.baseId),{es5:n,lines:o}=this.opts.code,{ownProperties:s}=this.opts,i=new lt.CodeGen(this.scope,{es5:n,lines:o,ownProperties:s}),a;t.$async&&(a=i.scopeValue("Error",{ref:HS.default,code:(0,lt._)`require("ajv/dist/runtime/validation_error").default`}));let c=i.scopeName("validate");t.validateName=c;let u={gen:i,allErrors:this.opts.allErrors,data:Ar.default.data,parentData:Ar.default.parentData,parentDataProperty:Ar.default.parentDataProperty,dataNames:[Ar.default.data],dataPathArr:[lt.nil],dataLevel:0,dataTypes:[],definedProperties:new Set,topSchemaRef:i.scopeValue("schema",this.opts.code.source===!0?{ref:t.schema,code:(0,lt.stringify)(t.schema)}:{ref:t.schema}),validateName:c,ValidationError:a,schema:t.schema,schemaEnv:t,rootId:r,baseId:t.baseId||r,schemaPath:lt.nil,errSchemaPath:t.schemaPath||(this.opts.jtd?"":"#"),errorPath:(0,lt._)`""`,opts:this.opts,self:this},l;try{this._compilations.add(t),(0,KS.validateFunctionCode)(u),i.optimize(this.opts.code.optimize);let d=i.toString();l=`${i.scopeRefs(Ar.default.scope)}return ${d}`,this.opts.code.process&&(l=this.opts.code.process(l,t));let m=new Function(`${Ar.default.self}`,`${Ar.default.scope}`,l)(this,this.scope.get());if(this.scope.value(c,{ref:m}),m.errors=null,m.schema=t.schema,m.schemaEnv=t,t.$async&&(m.$async=!0),this.opts.code.source===!0&&(m.source={validateName:c,validateCode:d,scopeValues:i._values}),this.opts.unevaluated){let{props:p,items:h}=u;m.evaluated={props:p instanceof lt.Name?void 0:p,items:h instanceof lt.Name?void 0:h,dynamicProps:p instanceof lt.Name,dynamicItems:h instanceof lt.Name},m.source&&(m.source.evaluated=(0,lt.stringify)(m.evaluated))}return t.validate=m,t}catch(d){throw delete t.validate,delete t.validateName,l&&this.logger.error("Error compiling schema, function code:",l),d}finally{this._compilations.delete(t)}}nt.compileSchema=Sl;function BS(t,e,r){var n;r=(0,dt.resolveUrl)(this.opts.uriResolver,e,r);let o=t.refs[r];if(o)return o;let s=GS.call(this,t,r);if(s===void 0){let i=(n=t.localRefs)===null||n===void 0?void 0:n[r],{schemaId:a}=this.opts;i&&(s=new hn({schema:i,schemaId:a,root:t,baseId:e}))}if(s!==void 0)return t.refs[r]=XS.call(this,s)}nt.resolveRef=BS;function XS(t){return(0,dt.inlineRef)(t.schema,this.opts.inlineRefs)?t.schema:t.validate?t:Sl.call(this,t)}function mg(t){for(let e of this._compilations)if(JS(e,t))return e}nt.getCompilingSchema=mg;function JS(t,e){return t.schema===e.schema&&t.root===e.root&&t.baseId===e.baseId}function GS(t,e){let r;for(;typeof(r=this.refs[e])=="string";)e=r;return r||this.schemas[e]||ui.call(this,t,e)}function ui(t,e){let r=this.opts.uriResolver.parse(e),n=(0,dt._getFullPath)(this.opts.uriResolver,r),o=(0,dt.getFullPath)(this.opts.uriResolver,t.baseId,void 0);if(Object.keys(t.schema).length>0&&n===o)return kl.call(this,r,t);let s=(0,dt.normalizeId)(n),i=this.refs[s]||this.schemas[s];if(typeof i=="string"){let a=ui.call(this,t,i);return typeof a?.schema!="object"?void 0:kl.call(this,r,a)}if(typeof i?.schema=="object"){if(i.validate||Sl.call(this,i),s===(0,dt.normalizeId)(e)){let{schema:a}=i,{schemaId:c}=this.opts,u=a[c];return u&&(o=(0,dt.resolveUrl)(this.opts.uriResolver,o,u)),new hn({schema:a,schemaId:c,root:t,baseId:o})}return kl.call(this,r,i)}}nt.resolveSchema=ui;var WS=new Set(["properties","patternProperties","enum","dependencies","definitions"]);function kl(t,{baseId:e,schema:r,root:n}){var o;if(((o=t.fragment)===null||o===void 0?void 0:o[0])!=="/")return;for(let a of t.fragment.slice(1).split("/")){if(typeof r=="boolean")return;let c=r[(0,fg.unescapeFragment)(a)];if(c===void 0)return;r=c;let u=typeof r=="object"&&r[this.opts.schemaId];!WS.has(a)&&u&&(e=(0,dt.resolveUrl)(this.opts.uriResolver,e,u))}let s;if(typeof r!="boolean"&&r.$ref&&!(0,fg.schemaHasRulesButRef)(r,this.RULES)){let a=(0,dt.resolveUrl)(this.opts.uriResolver,e,r.$ref);s=ui.call(this,n,a)}let{schemaId:i}=this.opts;if(s=s||new hn({schema:r,schemaId:i,root:n,baseId:e}),s.schema!==s.root.schema)return s}});var hg=S(($C,YS)=>{YS.exports={$id:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",description:"Meta-schema for $data reference (JSON AnySchema extension proposal)",type:"object",required:["$data"],properties:{$data:{type:"string",anyOf:[{format:"relative-json-pointer"},{format:"json-pointer"}]}},additionalProperties:!1}});var Pl=S((kC,wg)=>{"use strict";var QS=RegExp.prototype.test.bind(/^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$/iu),yg=RegExp.prototype.test.bind(/^(?:(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)$/u),zl=RegExp.prototype.test.bind(/^[\da-f]{2}$/iu),_g=RegExp.prototype.test.bind(/^[\da-z\-._~]$/iu),ez=RegExp.prototype.test.bind(/^[\da-z\-._~!$&'()*+,;=:@/]$/iu);function Tl(t){let e="",r=0,n=0;for(n=0;n<t.length;n++)if(r=t[n].charCodeAt(0),r!==48){if(!(r>=48&&r<=57||r>=65&&r<=70||r>=97&&r<=102))return"";e+=t[n];break}for(n+=1;n<t.length;n++){if(r=t[n].charCodeAt(0),!(r>=48&&r<=57||r>=65&&r<=70||r>=97&&r<=102))return"";e+=t[n]}return e}var tz=RegExp.prototype.test.bind(/[^!"$&'()*+,\-.;=_`a-z{}~]/u);function gg(t){return t.length=0,!0}function rz(t,e,r){if(t.length){let n=Tl(t);if(n!=="")e.push(n);else return r.error=!0,!1;t.length=0}return!0}function nz(t){let e=0,r={error:!1,address:"",zone:""},n=[],o=[],s=!1,i=!1,a=rz;for(let c=0;c<t.length;c++){let u=t[c];if(!(u==="["||u==="]"))if(u===":"){if(s===!0&&(i=!0),!a(o,n,r))break;if(++e>7){r.error=!0;break}c>0&&t[c-1]===":"&&(s=!0),n.push(":");continue}else if(u==="%"){if(!a(o,n,r))break;a=gg}else{o.push(u);continue}}return o.length&&(a===gg?r.zone=o.join(""):i?n.push(o.join("")):n.push(Tl(o))),r.address=n.join(""),r}function vg(t){if(oz(t,":")<2)return{host:t,isIPV6:!1};let e=nz(t);if(e.error)return{host:t,isIPV6:!1};{let r=e.address,n=e.address;return e.zone&&(r+="%"+e.zone,n+="%25"+e.zone),{host:r,isIPV6:!0,escapedHost:n}}}function oz(t,e){let r=0;for(let n=0;n<t.length;n++)t[n]===e&&r++;return r}function sz(t){let e=t,r=[],n=-1,o=0;for(;o=e.length;){if(o===1){if(e===".")break;if(e==="/"){r.push("/");break}else{r.push(e);break}}else if(o===2){if(e[0]==="."){if(e[1]===".")break;if(e[1]==="/"){e=e.slice(2);continue}}else if(e[0]==="/"&&(e[1]==="."||e[1]==="/")){r.push("/");break}}else if(o===3&&e==="/.."){r.length!==0&&r.pop(),r.push("/");break}if(e[0]==="."){if(e[1]==="."){if(e[2]==="/"){e=e.slice(3);continue}}else if(e[1]==="/"){e=e.slice(2);continue}}else if(e[0]==="/"&&e[1]==="."){if(e[2]==="/"){e=e.slice(2);continue}else if(e[2]==="."&&e[3]==="/"){e=e.slice(3),r.length!==0&&r.pop();continue}}if((n=e.indexOf("/",1))===-1){r.push(e);break}else r.push(e.slice(0,n)),e=e.slice(n)}return r.join("")}var iz={"@":"%40","/":"%2F","?":"%3F","#":"%23",":":"%3A"},az=/[@/?#:]/g,cz=/[@/?#]/g;function xg(t,e){let r=e?cz:az;return r.lastIndex=0,t.replace(r,n=>iz[n])}function uz(t,e=!1){if(t.indexOf("%")===-1)return t;let r="";for(let n=0;n<t.length;n++){if(t[n]==="%"&&n+2<t.length){let o=t.slice(n+1,n+3);if(zl(o)){let s=o.toUpperCase(),i=String.fromCharCode(parseInt(s,16));e&&_g(i)?r+=i:r+="%"+s,n+=2;continue}}r+=t[n]}return r}function lz(t){let e="";for(let r=0;r<t.length;r++){if(t[r]==="%"&&r+2<t.length){let n=t.slice(r+1,r+3);if(zl(n)){let o=n.toUpperCase(),s=String.fromCharCode(parseInt(o,16));s!=="."&&_g(s)?e+=s:e+="%"+o,r+=2;continue}}ez(t[r])?e+=t[r]:e+=escape(t[r])}return e}function dz(t){let e="";for(let r=0;r<t.length;r++){if(t[r]==="%"&&r+2<t.length){let n=t.slice(r+1,r+3);if(zl(n)){e+="%"+n.toUpperCase(),r+=2;continue}}e+=escape(t[r])}return e}function pz(t){let e=[];if(t.userinfo!==void 0&&(e.push(t.userinfo),e.push("@")),t.host!==void 0){let r=unescape(t.host);if(!yg(r)){let n=vg(r);n.isIPV6===!0?r=`[${n.escapedHost}]`:r=xg(r,!1)}e.push(r)}return(typeof t.port=="number"||typeof t.port=="string")&&(e.push(":"),e.push(String(t.port))),e.length?e.join(""):void 0}wg.exports={nonSimpleDomain:tz,recomposeAuthority:pz,reescapeHostDelimiters:xg,normalizePercentEncoding:uz,normalizePathEncoding:lz,escapePreservingEscapes:dz,removeDotSegments:sz,isIPv4:yg,isUUID:QS,normalizeIPv6:vg,stringArrayToHexStripped:Tl}});var zg=S((SC,Sg)=>{"use strict";var{isUUID:fz}=Pl(),mz=/([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu,hz=["http","https","ws","wss","urn","urn:uuid"];function gz(t){return hz.indexOf(t)!==-1}function Ol(t){return t.secure===!0?!0:t.secure===!1?!1:t.scheme?t.scheme.length===3&&(t.scheme[0]==="w"||t.scheme[0]==="W")&&(t.scheme[1]==="s"||t.scheme[1]==="S")&&(t.scheme[2]==="s"||t.scheme[2]==="S"):!1}function bg(t){return t.host||(t.error=t.error||"HTTP URIs must have a host."),t}function $g(t){let e=String(t.scheme).toLowerCase()==="https";return(t.port===(e?443:80)||t.port==="")&&(t.port=void 0),t.path||(t.path="/"),t}function yz(t){return t.secure=Ol(t),t.resourceName=(t.path||"/")+(t.query?"?"+t.query:""),t.path=void 0,t.query=void 0,t}function _z(t){if((t.port===(Ol(t)?443:80)||t.port==="")&&(t.port=void 0),typeof t.secure=="boolean"&&(t.scheme=t.secure?"wss":"ws",t.secure=void 0),t.resourceName){let[e,r]=t.resourceName.split("?");t.path=e&&e!=="/"?e:void 0,t.query=r,t.resourceName=void 0}return t.fragment=void 0,t}function vz(t,e){if(!t.path)return t.error="URN can not be parsed",t;let r=t.path.match(mz);if(r){let n=e.scheme||t.scheme||"urn";t.nid=r[1].toLowerCase(),t.nss=r[2];let o=`${n}:${e.nid||t.nid}`,s=El(o);t.path=void 0,s&&(t=s.parse(t,e))}else t.error=t.error||"URN can not be parsed.";return t}function xz(t,e){if(t.nid===void 0)throw new Error("URN without nid cannot be serialized");let r=e.scheme||t.scheme||"urn",n=t.nid.toLowerCase(),o=`${r}:${e.nid||n}`,s=El(o);s&&(t=s.serialize(t,e));let i=t,a=t.nss;return i.path=`${n||e.nid}:${a}`,e.skipEscape=!0,i}function wz(t,e){let r=t;return r.uuid=r.nss,r.nss=void 0,!e.tolerant&&(!r.uuid||!fz(r.uuid))&&(r.error=r.error||"UUID is not valid."),r}function bz(t){let e=t;return e.nss=(t.uuid||"").toLowerCase(),e}var kg={scheme:"http",domainHost:!0,parse:bg,serialize:$g},$z={scheme:"https",domainHost:kg.domainHost,parse:bg,serialize:$g},di={scheme:"ws",domainHost:!0,parse:yz,serialize:_z},kz={scheme:"wss",domainHost:di.domainHost,parse:di.parse,serialize:di.serialize},Sz={scheme:"urn",parse:vz,serialize:xz,skipNormalize:!0},zz={scheme:"urn:uuid",parse:wz,serialize:bz,skipNormalize:!0},pi={http:kg,https:$z,ws:di,wss:kz,urn:Sz,"urn:uuid":zz};Object.setPrototypeOf(pi,null);function El(t){return t&&(pi[t]||pi[t.toLowerCase()])||void 0}Sg.exports={wsIsSecure:Ol,SCHEMES:pi,isValidSchemeName:gz,getSchemeHandler:El}});var Rg=S((zC,fi)=>{"use strict";var{normalizeIPv6:Tz,removeDotSegments:zo,recomposeAuthority:Pz,normalizePercentEncoding:Oz,normalizePathEncoding:Ez,escapePreservingEscapes:Iz,reescapeHostDelimiters:Rz,isIPv4:jz,nonSimpleDomain:Nz}=Pl(),{SCHEMES:Cz,getSchemeHandler:Pg}=zg();function Zz(t,e){return typeof t=="string"?t=qz(t,e):typeof t=="object"&&(t=gn(Mr(t,e),e)),t}function Az(t,e,r){let n=r?Object.assign({scheme:"null"},r):{scheme:"null"},o=Og(gn(t,n),gn(e,n),n,!0);return n.skipEscape=!0,Mr(o,n)}function Og(t,e,r,n){let o={};return n||(t=gn(Mr(t,r),r),e=gn(Mr(e,r),r)),r=r||{},!r.tolerant&&e.scheme?(o.scheme=e.scheme,o.userinfo=e.userinfo,o.host=e.host,o.port=e.port,o.path=zo(e.path||""),o.query=e.query):(e.userinfo!==void 0||e.host!==void 0||e.port!==void 0?(o.userinfo=e.userinfo,o.host=e.host,o.port=e.port,o.path=zo(e.path||""),o.query=e.query):(e.path?(e.path[0]==="/"?o.path=zo(e.path):((t.userinfo!==void 0||t.host!==void 0||t.port!==void 0)&&!t.path?o.path="/"+e.path:t.path?o.path=t.path.slice(0,t.path.lastIndexOf("/")+1)+e.path:o.path=e.path,o.path=zo(o.path)),o.query=e.query):(o.path=t.path,e.query!==void 0?o.query=e.query:o.query=t.query),o.userinfo=t.userinfo,o.host=t.host,o.port=t.port),o.scheme=t.scheme),o.fragment=e.fragment,o}function Mz(t,e,r){let n=Tg(t,r),o=Tg(e,r);return n!==void 0&&o!==void 0&&n.toLowerCase()===o.toLowerCase()}function Mr(t,e){let r={host:t.host,scheme:t.scheme,userinfo:t.userinfo,port:t.port,path:t.path,query:t.query,nid:t.nid,nss:t.nss,uuid:t.uuid,fragment:t.fragment,reference:t.reference,resourceName:t.resourceName,secure:t.secure,error:""},n=Object.assign({},e),o=[],s=Pg(n.scheme||r.scheme);s&&s.serialize&&s.serialize(r,n),r.path!==void 0&&(n.skipEscape?r.path=Oz(r.path):(r.path=Iz(r.path),r.scheme!==void 0&&(r.path=r.path.split("%3A").join(":")))),n.reference!=="suffix"&&r.scheme&&o.push(r.scheme,":");let i=Pz(r);if(i!==void 0&&(n.reference!=="suffix"&&o.push("//"),o.push(i),r.path&&r.path[0]!=="/"&&o.push("/")),r.path!==void 0){let a=r.path;!n.absolutePath&&(!s||!s.absolutePath)&&(a=zo(a)),i===void 0&&a[0]==="/"&&a[1]==="/"&&(a="/%2F"+a.slice(2)),o.push(a)}return r.query!==void 0&&o.push("?",r.query),r.fragment!==void 0&&o.push("#",r.fragment),o.join("")}var Dz=/^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;function Lz(t,e){if(e[2]!==void 0&&t.path&&t.path[0]!=="/")return'URI path must start with "/" when authority is present.';if(typeof t.port=="number"&&(t.port<0||t.port>65535))return"URI port is malformed."}function Eg(t,e){let r=Object.assign({},e),n={scheme:void 0,userinfo:void 0,host:"",port:void 0,path:"",query:void 0,fragment:void 0},o=!1,s=!1;r.reference==="suffix"&&(r.scheme?t=r.scheme+":"+t:t="//"+t);let i=t.match(Dz);if(i){n.scheme=i[1],n.userinfo=i[3],n.host=i[4],n.port=parseInt(i[5],10),n.path=i[6]||"",n.query=i[7],n.fragment=i[8],isNaN(n.port)&&(n.port=i[5]);let a=Lz(n,i);if(a!==void 0&&(n.error=n.error||a,o=!0),n.host)if(jz(n.host)===!1){let l=Tz(n.host);n.host=l.host.toLowerCase(),s=l.isIPV6}else s=!0;n.scheme===void 0&&n.userinfo===void 0&&n.host===void 0&&n.port===void 0&&n.query===void 0&&!n.path?n.reference="same-document":n.scheme===void 0?n.reference="relative":n.fragment===void 0?n.reference="absolute":n.reference="uri",r.reference&&r.reference!=="suffix"&&r.reference!==n.reference&&(n.error=n.error||"URI is not a "+r.reference+" reference.");let c=Pg(r.scheme||n.scheme);if(!r.unicodeSupport&&(!c||!c.unicodeSupport)&&n.host&&(r.domainHost||c&&c.domainHost)&&s===!1&&Nz(n.host))try{n.host=URL.domainToASCII(n.host.toLowerCase())}catch(u){n.error=n.error||"Host's domain name can not be converted to ASCII: "+u}if((!c||c&&!c.skipNormalize)&&(t.indexOf("%")!==-1&&(n.scheme!==void 0&&(n.scheme=unescape(n.scheme)),n.host!==void 0&&(n.host=Rz(unescape(n.host),s))),n.path&&(n.path=Ez(n.path)),n.fragment))try{n.fragment=encodeURI(decodeURIComponent(n.fragment))}catch{n.error=n.error||"URI malformed"}c&&c.parse&&c.parse(n,r)}else n.error=n.error||"URI can not be parsed.";return{parsed:n,malformedAuthorityOrPort:o}}function gn(t,e){return Eg(t,e).parsed}function qz(t,e){return Ig(t,e).normalized}function Ig(t,e){let{parsed:r,malformedAuthorityOrPort:n}=Eg(t,e);return{normalized:n?t:Mr(r,e),malformedAuthorityOrPort:n}}function Tg(t,e){if(typeof t=="string"){let{normalized:r,malformedAuthorityOrPort:n}=Ig(t,e);return n?void 0:r}if(typeof t=="object")return Mr(t,e)}var Il={SCHEMES:Cz,normalize:Zz,resolve:Az,resolveComponent:Og,equal:Mz,serialize:Mr,parse:gn};fi.exports=Il;fi.exports.default=Il;fi.exports.fastUri=Il});var Ng=S(Rl=>{"use strict";Object.defineProperty(Rl,"__esModule",{value:!0});var jg=Rg();jg.code='require("ajv/dist/runtime/uri").default';Rl.default=jg});var Ug=S(Se=>{"use strict";Object.defineProperty(Se,"__esModule",{value:!0});Se.CodeGen=Se.Name=Se.nil=Se.stringify=Se.str=Se._=Se.KeywordCxt=void 0;var Uz=ko();Object.defineProperty(Se,"KeywordCxt",{enumerable:!0,get:function(){return Uz.KeywordCxt}});var yn=U();Object.defineProperty(Se,"_",{enumerable:!0,get:function(){return yn._}});Object.defineProperty(Se,"str",{enumerable:!0,get:function(){return yn.str}});Object.defineProperty(Se,"stringify",{enumerable:!0,get:function(){return yn.stringify}});Object.defineProperty(Se,"nil",{enumerable:!0,get:function(){return yn.nil}});Object.defineProperty(Se,"Name",{enumerable:!0,get:function(){return yn.Name}});Object.defineProperty(Se,"CodeGen",{enumerable:!0,get:function(){return yn.CodeGen}});var Fz=ci(),Dg=So(),Vz=il(),To=li(),Hz=U(),Po=wo(),mi=xo(),Nl=G(),Cg=hg(),Kz=Ng(),Lg=(t,e)=>new RegExp(t,e);Lg.code="new RegExp";var Bz=["removeAdditional","useDefaults","coerceTypes"],Xz=new Set(["validate","serialize","parse","wrapper","root","schema","keyword","pattern","formats","validate$data","func","obj","Error"]),Jz={errorDataPath:"",format:"`validateFormats: false` can be used instead.",nullable:'"nullable" keyword is supported by default.',jsonPointers:"Deprecated jsPropertySyntax can be used instead.",extendRefs:"Deprecated ignoreKeywordsWithRef can be used instead.",missingRefs:"Pass empty schema with $id that should be ignored to ajv.addSchema.",processCode:"Use option `code: {process: (code, schemaEnv: object) => string}`",sourceCode:"Use option `code: {source: true}`",strictDefaults:"It is default now, see option `strict`.",strictKeywords:"It is default now, see option `strict`.",uniqueItems:'"uniqueItems" keyword is always validated.',unknownFormats:"Disable strict mode or pass `true` to `ajv.addFormat` (or `formats` option).",cache:"Map is used as cache, schema object as key.",serialize:"Map is used as cache, schema object as key.",ajvErrors:"It is default now."},Gz={ignoreKeywordsWithRef:"",jsPropertySyntax:"",unicode:'"minLength"/"maxLength" account for unicode characters by default.'},Zg=200;function Wz(t){var e,r,n,o,s,i,a,c,u,l,d,f,m,p,h,g,w,v,x,T,N,he,He,ye,Ke;let Tn=t.strict,Ai=(e=t.code)===null||e===void 0?void 0:e.optimize,qd=Ai===!0||Ai===void 0?1:Ai||0,Ud=(n=(r=t.code)===null||r===void 0?void 0:r.regExp)!==null&&n!==void 0?n:Lg,S_=(o=t.uriResolver)!==null&&o!==void 0?o:Kz.default;return{strictSchema:(i=(s=t.strictSchema)!==null&&s!==void 0?s:Tn)!==null&&i!==void 0?i:!0,strictNumbers:(c=(a=t.strictNumbers)!==null&&a!==void 0?a:Tn)!==null&&c!==void 0?c:!0,strictTypes:(l=(u=t.strictTypes)!==null&&u!==void 0?u:Tn)!==null&&l!==void 0?l:"log",strictTuples:(f=(d=t.strictTuples)!==null&&d!==void 0?d:Tn)!==null&&f!==void 0?f:"log",strictRequired:(p=(m=t.strictRequired)!==null&&m!==void 0?m:Tn)!==null&&p!==void 0?p:!1,code:t.code?{...t.code,optimize:qd,regExp:Ud}:{optimize:qd,regExp:Ud},loopRequired:(h=t.loopRequired)!==null&&h!==void 0?h:Zg,loopEnum:(g=t.loopEnum)!==null&&g!==void 0?g:Zg,meta:(w=t.meta)!==null&&w!==void 0?w:!0,messages:(v=t.messages)!==null&&v!==void 0?v:!0,inlineRefs:(x=t.inlineRefs)!==null&&x!==void 0?x:!0,schemaId:(T=t.schemaId)!==null&&T!==void 0?T:"$id",addUsedSchema:(N=t.addUsedSchema)!==null&&N!==void 0?N:!0,validateSchema:(he=t.validateSchema)!==null&&he!==void 0?he:!0,validateFormats:(He=t.validateFormats)!==null&&He!==void 0?He:!0,unicodeRegExp:(ye=t.unicodeRegExp)!==null&&ye!==void 0?ye:!0,int32range:(Ke=t.int32range)!==null&&Ke!==void 0?Ke:!0,uriResolver:S_}}var Oo=class{constructor(e={}){this.schemas={},this.refs={},this.formats=Object.create(null),this._compilations=new Set,this._loading={},this._cache=new Map,e=this.opts={...e,...Wz(e)};let{es5:r,lines:n}=this.opts.code;this.scope=new Hz.ValueScope({scope:{},prefixes:Xz,es5:r,lines:n}),this.logger=nT(e.logger);let o=e.validateFormats;e.validateFormats=!1,this.RULES=(0,Vz.getRules)(),Ag.call(this,Jz,e,"NOT SUPPORTED"),Ag.call(this,Gz,e,"DEPRECATED","warn"),this._metaOpts=tT.call(this),e.formats&&Qz.call(this),this._addVocabularies(),this._addDefaultMetaSchema(),e.keywords&&eT.call(this,e.keywords),typeof e.meta=="object"&&this.addMetaSchema(e.meta),Yz.call(this),e.validateFormats=o}_addVocabularies(){this.addKeyword("$async")}_addDefaultMetaSchema(){let{$data:e,meta:r,schemaId:n}=this.opts,o=Cg;n==="id"&&(o={...Cg},o.id=o.$id,delete o.$id),r&&e&&this.addMetaSchema(o,o[n],!1)}defaultMeta(){let{meta:e,schemaId:r}=this.opts;return this.opts.defaultMeta=typeof e=="object"?e[r]||e:void 0}validate(e,r){let n;if(typeof e=="string"){if(n=this.getSchema(e),!n)throw new Error(`no schema with key or ref "${e}"`)}else n=this.compile(e);let o=n(r);return"$async"in n||(this.errors=n.errors),o}compile(e,r){let n=this._addSchema(e,r);return n.validate||this._compileSchemaEnv(n)}compileAsync(e,r){if(typeof this.opts.loadSchema!="function")throw new Error("options.loadSchema should be a function");let{loadSchema:n}=this.opts;return o.call(this,e,r);async function o(l,d){await s.call(this,l.$schema);let f=this._addSchema(l,d);return f.validate||i.call(this,f)}async function s(l){l&&!this.getSchema(l)&&await o.call(this,{$ref:l},!0)}async function i(l){try{return this._compileSchemaEnv(l)}catch(d){if(!(d instanceof Dg.default))throw d;return a.call(this,d),await c.call(this,d.missingSchema),i.call(this,l)}}function a({missingSchema:l,missingRef:d}){if(this.refs[l])throw new Error(`AnySchema ${l} is loaded but ${d} cannot be resolved`)}async function c(l){let d=await u.call(this,l);this.refs[l]||await s.call(this,d.$schema),this.refs[l]||this.addSchema(d,l,r)}async function u(l){let d=this._loading[l];if(d)return d;try{return await(this._loading[l]=n(l))}finally{delete this._loading[l]}}}addSchema(e,r,n,o=this.opts.validateSchema){if(Array.isArray(e)){for(let i of e)this.addSchema(i,void 0,n,o);return this}let s;if(typeof e=="object"){let{schemaId:i}=this.opts;if(s=e[i],s!==void 0&&typeof s!="string")throw new Error(`schema ${i} must be string`)}return r=(0,Po.normalizeId)(r||s),this._checkUnique(r),this.schemas[r]=this._addSchema(e,n,r,o,!0),this}addMetaSchema(e,r,n=this.opts.validateSchema){return this.addSchema(e,r,!0,n),this}validateSchema(e,r){if(typeof e=="boolean")return!0;let n;if(n=e.$schema,n!==void 0&&typeof n!="string")throw new Error("$schema must be a string");if(n=n||this.opts.defaultMeta||this.defaultMeta(),!n)return this.logger.warn("meta-schema not available"),this.errors=null,!0;let o=this.validate(n,e);if(!o&&r){let s="schema is invalid: "+this.errorsText();if(this.opts.validateSchema==="log")this.logger.error(s);else throw new Error(s)}return o}getSchema(e){let r;for(;typeof(r=Mg.call(this,e))=="string";)e=r;if(r===void 0){let{schemaId:n}=this.opts,o=new To.SchemaEnv({schema:{},schemaId:n});if(r=To.resolveSchema.call(this,o,e),!r)return;this.refs[e]=r}return r.validate||this._compileSchemaEnv(r)}removeSchema(e){if(e instanceof RegExp)return this._removeAllSchemas(this.schemas,e),this._removeAllSchemas(this.refs,e),this;switch(typeof e){case"undefined":return this._removeAllSchemas(this.schemas),this._removeAllSchemas(this.refs),this._cache.clear(),this;case"string":{let r=Mg.call(this,e);return typeof r=="object"&&this._cache.delete(r.schema),delete this.schemas[e],delete this.refs[e],this}case"object":{let r=e;this._cache.delete(r);let n=e[this.opts.schemaId];return n&&(n=(0,Po.normalizeId)(n),delete this.schemas[n],delete this.refs[n]),this}default:throw new Error("ajv.removeSchema: invalid parameter")}}addVocabulary(e){for(let r of e)this.addKeyword(r);return this}addKeyword(e,r){let n;if(typeof e=="string")n=e,typeof r=="object"&&(this.logger.warn("these parameters are deprecated, see docs for addKeyword"),r.keyword=n);else if(typeof e=="object"&&r===void 0){if(r=e,n=r.keyword,Array.isArray(n)&&!n.length)throw new Error("addKeywords: keyword must be string or non-empty array")}else throw new Error("invalid addKeywords parameters");if(sT.call(this,n,r),!r)return(0,Nl.eachItem)(n,s=>jl.call(this,s)),this;aT.call(this,r);let o={...r,type:(0,mi.getJSONTypes)(r.type),schemaType:(0,mi.getJSONTypes)(r.schemaType)};return(0,Nl.eachItem)(n,o.type.length===0?s=>jl.call(this,s,o):s=>o.type.forEach(i=>jl.call(this,s,o,i))),this}getKeyword(e){let r=this.RULES.all[e];return typeof r=="object"?r.definition:!!r}removeKeyword(e){let{RULES:r}=this;delete r.keywords[e],delete r.all[e];for(let n of r.rules){let o=n.rules.findIndex(s=>s.keyword===e);o>=0&&n.rules.splice(o,1)}return this}addFormat(e,r){return typeof r=="string"&&(r=new RegExp(r)),this.formats[e]=r,this}errorsText(e=this.errors,{separator:r=", ",dataVar:n="data"}={}){return!e||e.length===0?"No errors":e.map(o=>`${n}${o.instancePath} ${o.message}`).reduce((o,s)=>o+r+s)}$dataMetaSchema(e,r){let n=this.RULES.all;e=JSON.parse(JSON.stringify(e));for(let o of r){let s=o.split("/").slice(1),i=e;for(let a of s)i=i[a];for(let a in n){let c=n[a];if(typeof c!="object")continue;let{$data:u}=c.definition,l=i[a];u&&l&&(i[a]=qg(l))}}return e}_removeAllSchemas(e,r){for(let n in e){let o=e[n];(!r||r.test(n))&&(typeof o=="string"?delete e[n]:o&&!o.meta&&(this._cache.delete(o.schema),delete e[n]))}}_addSchema(e,r,n,o=this.opts.validateSchema,s=this.opts.addUsedSchema){let i,{schemaId:a}=this.opts;if(typeof e=="object")i=e[a];else{if(this.opts.jtd)throw new Error("schema must be object");if(typeof e!="boolean")throw new Error("schema must be object or boolean")}let c=this._cache.get(e);if(c!==void 0)return c;n=(0,Po.normalizeId)(i||n);let u=Po.getSchemaRefs.call(this,e,n);return c=new To.SchemaEnv({schema:e,schemaId:a,meta:r,baseId:n,localRefs:u}),this._cache.set(c.schema,c),s&&!n.startsWith("#")&&(n&&this._checkUnique(n),this.refs[n]=c),o&&this.validateSchema(e,!0),c}_checkUnique(e){if(this.schemas[e]||this.refs[e])throw new Error(`schema with key or id "${e}" already exists`)}_compileSchemaEnv(e){if(e.meta?this._compileMetaSchema(e):To.compileSchema.call(this,e),!e.validate)throw new Error("ajv implementation error");return e.validate}_compileMetaSchema(e){let r=this.opts;this.opts=this._metaOpts;try{To.compileSchema.call(this,e)}finally{this.opts=r}}};Oo.ValidationError=Fz.default;Oo.MissingRefError=Dg.default;Se.default=Oo;function Ag(t,e,r,n="error"){for(let o in t){let s=o;s in e&&this.logger[n](`${r}: option ${o}. ${t[s]}`)}}function Mg(t){return t=(0,Po.normalizeId)(t),this.schemas[t]||this.refs[t]}function Yz(){let t=this.opts.schemas;if(t)if(Array.isArray(t))this.addSchema(t);else for(let e in t)this.addSchema(t[e],e)}function Qz(){for(let t in this.opts.formats){let e=this.opts.formats[t];e&&this.addFormat(t,e)}}function eT(t){if(Array.isArray(t)){this.addVocabulary(t);return}this.logger.warn("keywords option as map is deprecated, pass array");for(let e in t){let r=t[e];r.keyword||(r.keyword=e),this.addKeyword(r)}}function tT(){let t={...this.opts};for(let e of Bz)delete t[e];return t}var rT={log(){},warn(){},error(){}};function nT(t){if(t===!1)return rT;if(t===void 0)return console;if(t.log&&t.warn&&t.error)return t;throw new Error("logger must implement log, warn and error methods")}var oT=/^[a-z_$][a-z0-9_$:-]*$/i;function sT(t,e){let{RULES:r}=this;if((0,Nl.eachItem)(t,n=>{if(r.keywords[n])throw new Error(`Keyword ${n} is already defined`);if(!oT.test(n))throw new Error(`Keyword ${n} has invalid name`)}),!!e&&e.$data&&!("code"in e||"validate"in e))throw new Error('$data keyword must have "code" or "validate" function')}function jl(t,e,r){var n;let o=e?.post;if(r&&o)throw new Error('keyword with "post" flag cannot have "type"');let{RULES:s}=this,i=o?s.post:s.rules.find(({type:c})=>c===r);if(i||(i={type:r,rules:[]},s.rules.push(i)),s.keywords[t]=!0,!e)return;let a={keyword:t,definition:{...e,type:(0,mi.getJSONTypes)(e.type),schemaType:(0,mi.getJSONTypes)(e.schemaType)}};e.before?iT.call(this,i,a,e.before):i.rules.push(a),s.all[t]=a,(n=e.implements)===null||n===void 0||n.forEach(c=>this.addKeyword(c))}function iT(t,e,r){let n=t.rules.findIndex(o=>o.keyword===r);n>=0?t.rules.splice(n,0,e):(t.rules.push(e),this.logger.warn(`rule ${r} is not defined`))}function aT(t){let{metaSchema:e}=t;e!==void 0&&(t.$data&&this.opts.$data&&(e=qg(e)),t.validateSchema=this.compile(e,!0))}var cT={$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"};function qg(t){return{anyOf:[t,cT]}}});var Fg=S(Cl=>{"use strict";Object.defineProperty(Cl,"__esModule",{value:!0});var uT={keyword:"id",code(){throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')}};Cl.default=uT});var Bg=S(Dr=>{"use strict";Object.defineProperty(Dr,"__esModule",{value:!0});Dr.callRef=Dr.getValidate=void 0;var lT=So(),Vg=rt(),Ve=U(),_n=Rt(),Hg=li(),hi=G(),dT={keyword:"$ref",schemaType:"string",code(t){let{gen:e,schema:r,it:n}=t,{baseId:o,schemaEnv:s,validateName:i,opts:a,self:c}=n,{root:u}=s;if((r==="#"||r==="#/")&&o===u.baseId)return d();let l=Hg.resolveRef.call(c,u,o,r);if(l===void 0)throw new lT.default(n.opts.uriResolver,o,r);if(l instanceof Hg.SchemaEnv)return f(l);return m(l);function d(){if(s===u)return gi(t,i,s,s.$async);let p=e.scopeValue("root",{ref:u});return gi(t,(0,Ve._)`${p}.validate`,u,u.$async)}function f(p){let h=Kg(t,p);gi(t,h,p,p.$async)}function m(p){let h=e.scopeValue("schema",a.code.source===!0?{ref:p,code:(0,Ve.stringify)(p)}:{ref:p}),g=e.name("valid"),w=t.subschema({schema:p,dataTypes:[],schemaPath:Ve.nil,topSchemaRef:h,errSchemaPath:r},g);t.mergeEvaluated(w),t.ok(g)}}};function Kg(t,e){let{gen:r}=t;return e.validate?r.scopeValue("validate",{ref:e.validate}):(0,Ve._)`${r.scopeValue("wrapper",{ref:e})}.validate`}Dr.getValidate=Kg;function gi(t,e,r,n){let{gen:o,it:s}=t,{allErrors:i,schemaEnv:a,opts:c}=s,u=c.passContext?_n.default.this:Ve.nil;n?l():d();function l(){if(!a.$async)throw new Error("async schema referenced by sync schema");let p=o.let("valid");o.try(()=>{o.code((0,Ve._)`await ${(0,Vg.callValidateCode)(t,e,u)}`),m(e),i||o.assign(p,!0)},h=>{o.if((0,Ve._)`!(${h} instanceof ${s.ValidationError})`,()=>o.throw(h)),f(h),i||o.assign(p,!1)}),t.ok(p)}function d(){t.result((0,Vg.callValidateCode)(t,e,u),()=>m(e),()=>f(e))}function f(p){let h=(0,Ve._)`${p}.errors`;o.assign(_n.default.vErrors,(0,Ve._)`${_n.default.vErrors} === null ? ${h} : ${_n.default.vErrors}.concat(${h})`),o.assign(_n.default.errors,(0,Ve._)`${_n.default.vErrors}.length`)}function m(p){var h;if(!s.opts.unevaluated)return;let g=(h=r?.validate)===null||h===void 0?void 0:h.evaluated;if(s.props!==!0)if(g&&!g.dynamicProps)g.props!==void 0&&(s.props=hi.mergeEvaluated.props(o,g.props,s.props));else{let w=o.var("props",(0,Ve._)`${p}.evaluated.props`);s.props=hi.mergeEvaluated.props(o,w,s.props,Ve.Name)}if(s.items!==!0)if(g&&!g.dynamicItems)g.items!==void 0&&(s.items=hi.mergeEvaluated.items(o,g.items,s.items));else{let w=o.var("items",(0,Ve._)`${p}.evaluated.items`);s.items=hi.mergeEvaluated.items(o,w,s.items,Ve.Name)}}}Dr.callRef=gi;Dr.default=dT});var Xg=S(Zl=>{"use strict";Object.defineProperty(Zl,"__esModule",{value:!0});var pT=Fg(),fT=Bg(),mT=["$schema","$id","$defs","$vocabulary",{keyword:"$comment"},"definitions",pT.default,fT.default];Zl.default=mT});var Jg=S(Al=>{"use strict";Object.defineProperty(Al,"__esModule",{value:!0});var yi=U(),Qt=yi.operators,_i={maximum:{okStr:"<=",ok:Qt.LTE,fail:Qt.GT},minimum:{okStr:">=",ok:Qt.GTE,fail:Qt.LT},exclusiveMaximum:{okStr:"<",ok:Qt.LT,fail:Qt.GTE},exclusiveMinimum:{okStr:">",ok:Qt.GT,fail:Qt.LTE}},hT={message:({keyword:t,schemaCode:e})=>(0,yi.str)`must be ${_i[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,yi._)`{comparison: ${_i[t].okStr}, limit: ${e}}`},gT={keyword:Object.keys(_i),type:"number",schemaType:"number",$data:!0,error:hT,code(t){let{keyword:e,data:r,schemaCode:n}=t;t.fail$data((0,yi._)`${r} ${_i[e].fail} ${n} || isNaN(${r})`)}};Al.default=gT});var Gg=S(Ml=>{"use strict";Object.defineProperty(Ml,"__esModule",{value:!0});var Eo=U(),yT={message:({schemaCode:t})=>(0,Eo.str)`must be multiple of ${t}`,params:({schemaCode:t})=>(0,Eo._)`{multipleOf: ${t}}`},_T={keyword:"multipleOf",type:"number",schemaType:"number",$data:!0,error:yT,code(t){let{gen:e,data:r,schemaCode:n,it:o}=t,s=o.opts.multipleOfPrecision,i=e.let("res"),a=s?(0,Eo._)`Math.abs(Math.round(${i}) - ${i}) > 1e-${s}`:(0,Eo._)`${i} !== parseInt(${i})`;t.fail$data((0,Eo._)`(${n} === 0 || (${i} = ${r}/${n}, ${a}))`)}};Ml.default=_T});var Yg=S(Dl=>{"use strict";Object.defineProperty(Dl,"__esModule",{value:!0});function Wg(t){let e=t.length,r=0,n=0,o;for(;n<e;)r++,o=t.charCodeAt(n++),o>=55296&&o<=56319&&n<e&&(o=t.charCodeAt(n),(o&64512)===56320&&n++);return r}Dl.default=Wg;Wg.code='require("ajv/dist/runtime/ucs2length").default'});var Qg=S(Ll=>{"use strict";Object.defineProperty(Ll,"__esModule",{value:!0});var Lr=U(),vT=G(),xT=Yg(),wT={message({keyword:t,schemaCode:e}){let r=t==="maxLength"?"more":"fewer";return(0,Lr.str)`must NOT have ${r} than ${e} characters`},params:({schemaCode:t})=>(0,Lr._)`{limit: ${t}}`},bT={keyword:["maxLength","minLength"],type:"string",schemaType:"number",$data:!0,error:wT,code(t){let{keyword:e,data:r,schemaCode:n,it:o}=t,s=e==="maxLength"?Lr.operators.GT:Lr.operators.LT,i=o.opts.unicode===!1?(0,Lr._)`${r}.length`:(0,Lr._)`${(0,vT.useFunc)(t.gen,xT.default)}(${r})`;t.fail$data((0,Lr._)`${i} ${s} ${n}`)}};Ll.default=bT});var ey=S(ql=>{"use strict";Object.defineProperty(ql,"__esModule",{value:!0});var $T=rt(),kT=G(),vn=U(),ST={message:({schemaCode:t})=>(0,vn.str)`must match pattern "${t}"`,params:({schemaCode:t})=>(0,vn._)`{pattern: ${t}}`},zT={keyword:"pattern",type:"string",schemaType:"string",$data:!0,error:ST,code(t){let{gen:e,data:r,$data:n,schema:o,schemaCode:s,it:i}=t,a=i.opts.unicodeRegExp?"u":"";if(n){let{regExp:c}=i.opts.code,u=c.code==="new RegExp"?(0,vn._)`new RegExp`:(0,kT.useFunc)(e,c),l=e.let("valid");e.try(()=>e.assign(l,(0,vn._)`${u}(${s}, ${a}).test(${r})`),()=>e.assign(l,!1)),t.fail$data((0,vn._)`!${l}`)}else{let c=(0,$T.usePattern)(t,o);t.fail$data((0,vn._)`!${c}.test(${r})`)}}};ql.default=zT});var ty=S(Ul=>{"use strict";Object.defineProperty(Ul,"__esModule",{value:!0});var Io=U(),TT={message({keyword:t,schemaCode:e}){let r=t==="maxProperties"?"more":"fewer";return(0,Io.str)`must NOT have ${r} than ${e} properties`},params:({schemaCode:t})=>(0,Io._)`{limit: ${t}}`},PT={keyword:["maxProperties","minProperties"],type:"object",schemaType:"number",$data:!0,error:TT,code(t){let{keyword:e,data:r,schemaCode:n}=t,o=e==="maxProperties"?Io.operators.GT:Io.operators.LT;t.fail$data((0,Io._)`Object.keys(${r}).length ${o} ${n}`)}};Ul.default=PT});var ry=S(Fl=>{"use strict";Object.defineProperty(Fl,"__esModule",{value:!0});var Ro=rt(),jo=U(),OT=G(),ET={message:({params:{missingProperty:t}})=>(0,jo.str)`must have required property '${t}'`,params:({params:{missingProperty:t}})=>(0,jo._)`{missingProperty: ${t}}`},IT={keyword:"required",type:"object",schemaType:"array",$data:!0,error:ET,code(t){let{gen:e,schema:r,schemaCode:n,data:o,$data:s,it:i}=t,{opts:a}=i;if(!s&&r.length===0)return;let c=r.length>=a.loopRequired;if(i.allErrors?u():l(),a.strictRequired){let m=t.parentSchema.properties,{definedProperties:p}=t.it;for(let h of r)if(m?.[h]===void 0&&!p.has(h)){let g=i.schemaEnv.baseId+i.errSchemaPath,w=`required property "${h}" is not defined at "${g}" (strictRequired)`;(0,OT.checkStrictMode)(i,w,i.opts.strictRequired)}}function u(){if(c||s)t.block$data(jo.nil,d);else for(let m of r)(0,Ro.checkReportMissingProp)(t,m)}function l(){let m=e.let("missing");if(c||s){let p=e.let("valid",!0);t.block$data(p,()=>f(m,p)),t.ok(p)}else e.if((0,Ro.checkMissingProp)(t,r,m)),(0,Ro.reportMissingProp)(t,m),e.else()}function d(){e.forOf("prop",n,m=>{t.setParams({missingProperty:m}),e.if((0,Ro.noPropertyInData)(e,o,m,a.ownProperties),()=>t.error())})}function f(m,p){t.setParams({missingProperty:m}),e.forOf(m,n,()=>{e.assign(p,(0,Ro.propertyInData)(e,o,m,a.ownProperties)),e.if((0,jo.not)(p),()=>{t.error(),e.break()})},jo.nil)}}};Fl.default=IT});var ny=S(Vl=>{"use strict";Object.defineProperty(Vl,"__esModule",{value:!0});var No=U(),RT={message({keyword:t,schemaCode:e}){let r=t==="maxItems"?"more":"fewer";return(0,No.str)`must NOT have ${r} than ${e} items`},params:({schemaCode:t})=>(0,No._)`{limit: ${t}}`},jT={keyword:["maxItems","minItems"],type:"array",schemaType:"number",$data:!0,error:RT,code(t){let{keyword:e,data:r,schemaCode:n}=t,o=e==="maxItems"?No.operators.GT:No.operators.LT;t.fail$data((0,No._)`${r}.length ${o} ${n}`)}};Vl.default=jT});var vi=S(Hl=>{"use strict";Object.defineProperty(Hl,"__esModule",{value:!0});var oy=ml();oy.code='require("ajv/dist/runtime/equal").default';Hl.default=oy});var sy=S(Bl=>{"use strict";Object.defineProperty(Bl,"__esModule",{value:!0});var Kl=xo(),ze=U(),NT=G(),CT=vi(),ZT={message:({params:{i:t,j:e}})=>(0,ze.str)`must NOT have duplicate items (items ## ${e} and ${t} are identical)`,params:({params:{i:t,j:e}})=>(0,ze._)`{i: ${t}, j: ${e}}`},AT={keyword:"uniqueItems",type:"array",schemaType:"boolean",$data:!0,error:ZT,code(t){let{gen:e,data:r,$data:n,schema:o,parentSchema:s,schemaCode:i,it:a}=t;if(!n&&!o)return;let c=e.let("valid"),u=s.items?(0,Kl.getSchemaTypes)(s.items):[];t.block$data(c,l,(0,ze._)`${i} === false`),t.ok(c);function l(){let p=e.let("i",(0,ze._)`${r}.length`),h=e.let("j");t.setParams({i:p,j:h}),e.assign(c,!0),e.if((0,ze._)`${p} > 1`,()=>(d()?f:m)(p,h))}function d(){return u.length>0&&!u.some(p=>p==="object"||p==="array")}function f(p,h){let g=e.name("item"),w=(0,Kl.checkDataTypes)(u,g,a.opts.strictNumbers,Kl.DataType.Wrong),v=e.const("indices",(0,ze._)`{}`);e.for((0,ze._)`;${p}--;`,()=>{e.let(g,(0,ze._)`${r}[${p}]`),e.if(w,(0,ze._)`continue`),u.length>1&&e.if((0,ze._)`typeof ${g} == "string"`,(0,ze._)`${g} += "_"`),e.if((0,ze._)`typeof ${v}[${g}] == "number"`,()=>{e.assign(h,(0,ze._)`${v}[${g}]`),t.error(),e.assign(c,!1).break()}).code((0,ze._)`${v}[${g}] = ${p}`)})}function m(p,h){let g=(0,NT.useFunc)(e,CT.default),w=e.name("outer");e.label(w).for((0,ze._)`;${p}--;`,()=>e.for((0,ze._)`${h} = ${p}; ${h}--;`,()=>e.if((0,ze._)`${g}(${r}[${p}], ${r}[${h}])`,()=>{t.error(),e.assign(c,!1).break(w)})))}}};Bl.default=AT});var iy=S(Jl=>{"use strict";Object.defineProperty(Jl,"__esModule",{value:!0});var Xl=U(),MT=G(),DT=vi(),LT={message:"must be equal to constant",params:({schemaCode:t})=>(0,Xl._)`{allowedValue: ${t}}`},qT={keyword:"const",$data:!0,error:LT,code(t){let{gen:e,data:r,$data:n,schemaCode:o,schema:s}=t;n||s&&typeof s=="object"?t.fail$data((0,Xl._)`!${(0,MT.useFunc)(e,DT.default)}(${r}, ${o})`):t.fail((0,Xl._)`${s} !== ${r}`)}};Jl.default=qT});var ay=S(Gl=>{"use strict";Object.defineProperty(Gl,"__esModule",{value:!0});var Co=U(),UT=G(),FT=vi(),VT={message:"must be equal to one of the allowed values",params:({schemaCode:t})=>(0,Co._)`{allowedValues: ${t}}`},HT={keyword:"enum",schemaType:"array",$data:!0,error:VT,code(t){let{gen:e,data:r,$data:n,schema:o,schemaCode:s,it:i}=t;if(!n&&o.length===0)throw new Error("enum must have non-empty array");let a=o.length>=i.opts.loopEnum,c,u=()=>c??(c=(0,UT.useFunc)(e,FT.default)),l;if(a||n)l=e.let("valid"),t.block$data(l,d);else{if(!Array.isArray(o))throw new Error("ajv implementation error");let m=e.const("vSchema",s);l=(0,Co.or)(...o.map((p,h)=>f(m,h)))}t.pass(l);function d(){e.assign(l,!1),e.forOf("v",s,m=>e.if((0,Co._)`${u()}(${r}, ${m})`,()=>e.assign(l,!0).break()))}function f(m,p){let h=o[p];return typeof h=="object"&&h!==null?(0,Co._)`${u()}(${r}, ${m}[${p}])`:(0,Co._)`${r} === ${h}`}}};Gl.default=HT});var cy=S(Wl=>{"use strict";Object.defineProperty(Wl,"__esModule",{value:!0});var KT=Jg(),BT=Gg(),XT=Qg(),JT=ey(),GT=ty(),WT=ry(),YT=ny(),QT=sy(),eP=iy(),tP=ay(),rP=[KT.default,BT.default,XT.default,JT.default,GT.default,WT.default,YT.default,QT.default,{keyword:"type",schemaType:["string","array"]},{keyword:"nullable",schemaType:"boolean"},eP.default,tP.default];Wl.default=rP});var Ql=S(Zo=>{"use strict";Object.defineProperty(Zo,"__esModule",{value:!0});Zo.validateAdditionalItems=void 0;var qr=U(),Yl=G(),nP={message:({params:{len:t}})=>(0,qr.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,qr._)`{limit: ${t}}`},oP={keyword:"additionalItems",type:"array",schemaType:["boolean","object"],before:"uniqueItems",error:nP,code(t){let{parentSchema:e,it:r}=t,{items:n}=e;if(!Array.isArray(n)){(0,Yl.checkStrictMode)(r,'"additionalItems" is ignored when "items" is not an array of schemas');return}uy(t,n)}};function uy(t,e){let{gen:r,schema:n,data:o,keyword:s,it:i}=t;i.items=!0;let a=r.const("len",(0,qr._)`${o}.length`);if(n===!1)t.setParams({len:e.length}),t.pass((0,qr._)`${a} <= ${e.length}`);else if(typeof n=="object"&&!(0,Yl.alwaysValidSchema)(i,n)){let u=r.var("valid",(0,qr._)`${a} <= ${e.length}`);r.if((0,qr.not)(u),()=>c(u)),t.ok(u)}function c(u){r.forRange("i",e.length,a,l=>{t.subschema({keyword:s,dataProp:l,dataPropType:Yl.Type.Num},u),i.allErrors||r.if((0,qr.not)(u),()=>r.break())})}}Zo.validateAdditionalItems=uy;Zo.default=oP});var ed=S(Ao=>{"use strict";Object.defineProperty(Ao,"__esModule",{value:!0});Ao.validateTuple=void 0;var ly=U(),xi=G(),sP=rt(),iP={keyword:"items",type:"array",schemaType:["object","array","boolean"],before:"uniqueItems",code(t){let{schema:e,it:r}=t;if(Array.isArray(e))return dy(t,"additionalItems",e);r.items=!0,!(0,xi.alwaysValidSchema)(r,e)&&t.ok((0,sP.validateArray)(t))}};function dy(t,e,r=t.schema){let{gen:n,parentSchema:o,data:s,keyword:i,it:a}=t;l(o),a.opts.unevaluated&&r.length&&a.items!==!0&&(a.items=xi.mergeEvaluated.items(n,r.length,a.items));let c=n.name("valid"),u=n.const("len",(0,ly._)`${s}.length`);r.forEach((d,f)=>{(0,xi.alwaysValidSchema)(a,d)||(n.if((0,ly._)`${u} > ${f}`,()=>t.subschema({keyword:i,schemaProp:f,dataProp:f},c)),t.ok(c))});function l(d){let{opts:f,errSchemaPath:m}=a,p=r.length,h=p===d.minItems&&(p===d.maxItems||d[e]===!1);if(f.strictTuples&&!h){let g=`"${i}" is ${p}-tuple, but minItems or maxItems/${e} are not specified or different at path "${m}"`;(0,xi.checkStrictMode)(a,g,f.strictTuples)}}}Ao.validateTuple=dy;Ao.default=iP});var py=S(td=>{"use strict";Object.defineProperty(td,"__esModule",{value:!0});var aP=ed(),cP={keyword:"prefixItems",type:"array",schemaType:["array"],before:"uniqueItems",code:t=>(0,aP.validateTuple)(t,"items")};td.default=cP});var my=S(rd=>{"use strict";Object.defineProperty(rd,"__esModule",{value:!0});var fy=U(),uP=G(),lP=rt(),dP=Ql(),pP={message:({params:{len:t}})=>(0,fy.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,fy._)`{limit: ${t}}`},fP={keyword:"items",type:"array",schemaType:["object","boolean"],before:"uniqueItems",error:pP,code(t){let{schema:e,parentSchema:r,it:n}=t,{prefixItems:o}=r;n.items=!0,!(0,uP.alwaysValidSchema)(n,e)&&(o?(0,dP.validateAdditionalItems)(t,o):t.ok((0,lP.validateArray)(t)))}};rd.default=fP});var hy=S(nd=>{"use strict";Object.defineProperty(nd,"__esModule",{value:!0});var ot=U(),wi=G(),mP={message:({params:{min:t,max:e}})=>e===void 0?(0,ot.str)`must contain at least ${t} valid item(s)`:(0,ot.str)`must contain at least ${t} and no more than ${e} valid item(s)`,params:({params:{min:t,max:e}})=>e===void 0?(0,ot._)`{minContains: ${t}}`:(0,ot._)`{minContains: ${t}, maxContains: ${e}}`},hP={keyword:"contains",type:"array",schemaType:["object","boolean"],before:"uniqueItems",trackErrors:!0,error:mP,code(t){let{gen:e,schema:r,parentSchema:n,data:o,it:s}=t,i,a,{minContains:c,maxContains:u}=n;s.opts.next?(i=c===void 0?1:c,a=u):i=1;let l=e.const("len",(0,ot._)`${o}.length`);if(t.setParams({min:i,max:a}),a===void 0&&i===0){(0,wi.checkStrictMode)(s,'"minContains" == 0 without "maxContains": "contains" keyword ignored');return}if(a!==void 0&&i>a){(0,wi.checkStrictMode)(s,'"minContains" > "maxContains" is always invalid'),t.fail();return}if((0,wi.alwaysValidSchema)(s,r)){let h=(0,ot._)`${l} >= ${i}`;a!==void 0&&(h=(0,ot._)`${h} && ${l} <= ${a}`),t.pass(h);return}s.items=!0;let d=e.name("valid");a===void 0&&i===1?m(d,()=>e.if(d,()=>e.break())):i===0?(e.let(d,!0),a!==void 0&&e.if((0,ot._)`${o}.length > 0`,f)):(e.let(d,!1),f()),t.result(d,()=>t.reset());function f(){let h=e.name("_valid"),g=e.let("count",0);m(h,()=>e.if(h,()=>p(g)))}function m(h,g){e.forRange("i",0,l,w=>{t.subschema({keyword:"contains",dataProp:w,dataPropType:wi.Type.Num,compositeRule:!0},h),g()})}function p(h){e.code((0,ot._)`${h}++`),a===void 0?e.if((0,ot._)`${h} >= ${i}`,()=>e.assign(d,!0).break()):(e.if((0,ot._)`${h} > ${a}`,()=>e.assign(d,!1).break()),i===1?e.assign(d,!0):e.if((0,ot._)`${h} >= ${i}`,()=>e.assign(d,!0)))}}};nd.default=hP});var _y=S(xt=>{"use strict";Object.defineProperty(xt,"__esModule",{value:!0});xt.validateSchemaDeps=xt.validatePropertyDeps=xt.error=void 0;var od=U(),gP=G(),Mo=rt();xt.error={message:({params:{property:t,depsCount:e,deps:r}})=>{let n=e===1?"property":"properties";return(0,od.str)`must have ${n} ${r} when property ${t} is present`},params:({params:{property:t,depsCount:e,deps:r,missingProperty:n}})=>(0,od._)`{property: ${t},
|
|
46
46
|
missingProperty: ${n},
|
|
47
47
|
depsCount: ${e},
|
|
48
|
-
deps: ${r}}`};var MT={keyword:"dependencies",type:"object",schemaType:"object",error:xt.error,code(t){let[e,r]=DT(t);qg(t,e),Ug(t,r)}};function DT({schema:t}){let e={},r={};for(let n in t){if(n==="__proto__")continue;let o=Array.isArray(t[n])?e:r;o[n]=t[n]}return[e,r]}function qg(t,e=t.schema){let{gen:r,data:n,it:o}=t;if(Object.keys(e).length===0)return;let s=r.let("missing");for(let i in e){let a=e[i];if(a.length===0)continue;let c=(0,Oo.propertyInData)(r,n,i,o.opts.ownProperties);t.setParams({property:i,depsCount:a.length,deps:a.join(", ")}),o.allErrors?r.if(c,()=>{for(let u of a)(0,Oo.checkReportMissingProp)(t,u)}):(r.if((0,Dl._)`${c} && (${(0,Oo.checkMissingProp)(t,a,s)})`),(0,Oo.reportMissingProp)(t,s),r.else())}}xt.validatePropertyDeps=qg;function Ug(t,e=t.schema){let{gen:r,data:n,keyword:o,it:s}=t,i=r.name("valid");for(let a in e)(0,AT.alwaysValidSchema)(s,e[a])||(r.if((0,Oo.propertyInData)(r,n,a,s.opts.ownProperties),()=>{let c=t.subschema({keyword:o,schemaProp:a},i);t.mergeValidEvaluated(c,i)},()=>r.var(i,!0)),t.ok(i))}xt.validateSchemaDeps=Ug;xt.default=MT});var Hg=S(Ll=>{"use strict";Object.defineProperty(Ll,"__esModule",{value:!0});var Vg=U(),LT=G(),qT={message:"property name must be valid",params:({params:t})=>(0,Vg._)`{propertyName: ${t.propertyName}}`},UT={keyword:"propertyNames",type:"object",schemaType:["object","boolean"],error:qT,code(t){let{gen:e,schema:r,data:n,it:o}=t;if((0,LT.alwaysValidSchema)(o,r))return;let s=e.name("valid");e.forIn("key",n,i=>{t.setParams({propertyName:i}),t.subschema({keyword:"propertyNames",data:i,dataTypes:["string"],propertyName:i,compositeRule:!0},s),e.if((0,Vg.not)(s),()=>{t.error(!0),o.allErrors||e.break()})}),t.ok(s)}};Ll.default=UT});var Ul=S(ql=>{"use strict";Object.defineProperty(ql,"__esModule",{value:!0});var ui=tt(),dt=U(),FT=It(),li=G(),VT={message:"must NOT have additional properties",params:({params:t})=>(0,dt._)`{additionalProperty: ${t.additionalProperty}}`},HT={keyword:"additionalProperties",type:["object"],schemaType:["boolean","object"],allowUndefined:!0,trackErrors:!0,error:VT,code(t){let{gen:e,schema:r,parentSchema:n,data:o,errsCount:s,it:i}=t;if(!s)throw new Error("ajv implementation error");let{allErrors:a,opts:c}=i;if(i.props=!0,c.removeAdditional!=="all"&&(0,li.alwaysValidSchema)(i,r))return;let u=(0,ui.allSchemaProperties)(n.properties),l=(0,ui.allSchemaProperties)(n.patternProperties);d(),t.ok((0,dt._)`${s} === ${FT.default.errors}`);function d(){e.forIn("key",o,g=>{!u.length&&!l.length?p(g):e.if(m(g),()=>p(g))})}function m(g){let b;if(u.length>8){let v=(0,li.schemaRefOrVal)(i,n.properties,"properties");b=(0,ui.isOwnProperty)(e,v,g)}else u.length?b=(0,dt.or)(...u.map(v=>(0,dt._)`${g} === ${v}`)):b=dt.nil;return l.length&&(b=(0,dt.or)(b,...l.map(v=>(0,dt._)`${(0,ui.usePattern)(t,v)}.test(${g})`))),(0,dt.not)(b)}function f(g){e.code((0,dt._)`delete ${o}[${g}]`)}function p(g){if(c.removeAdditional==="all"||c.removeAdditional&&r===!1){f(g);return}if(r===!1){t.setParams({additionalProperty:g}),t.error(),a||e.break();return}if(typeof r=="object"&&!(0,li.alwaysValidSchema)(i,r)){let b=e.name("valid");c.removeAdditional==="failing"?(h(g,b,!1),e.if((0,dt.not)(b),()=>{t.reset(),f(g)})):(h(g,b),a||e.if((0,dt.not)(b),()=>e.break()))}}function h(g,b,v){let x={keyword:"additionalProperties",dataProp:g,dataPropType:li.Type.Str};v===!1&&Object.assign(x,{compositeRule:!0,createErrors:!1,allErrors:!1}),t.subschema(x,b)}}};ql.default=HT});var Jg=S(Vl=>{"use strict";Object.defineProperty(Vl,"__esModule",{value:!0});var BT=go(),Bg=tt(),Fl=G(),Kg=Ul(),KT={keyword:"properties",type:"object",schemaType:"object",code(t){let{gen:e,schema:r,parentSchema:n,data:o,it:s}=t;s.opts.removeAdditional==="all"&&n.additionalProperties===void 0&&Kg.default.code(new BT.KeywordCxt(s,Kg.default,"additionalProperties"));let i=(0,Bg.allSchemaProperties)(r);for(let d of i)s.definedProperties.add(d);s.opts.unevaluated&&i.length&&s.props!==!0&&(s.props=Fl.mergeEvaluated.props(e,(0,Fl.toHash)(i),s.props));let a=i.filter(d=>!(0,Fl.alwaysValidSchema)(s,r[d]));if(a.length===0)return;let c=e.name("valid");for(let d of a)u(d)?l(d):(e.if((0,Bg.propertyInData)(e,o,d,s.opts.ownProperties)),l(d),s.allErrors||e.else().var(c,!0),e.endIf()),t.it.definedProperties.add(d),t.ok(c);function u(d){return s.opts.useDefaults&&!s.compositeRule&&r[d].default!==void 0}function l(d){t.subschema({keyword:"properties",schemaProp:d,dataProp:d},c)}}};Vl.default=KT});var Yg=S(Hl=>{"use strict";Object.defineProperty(Hl,"__esModule",{value:!0});var Xg=tt(),di=U(),Gg=G(),Wg=G(),JT={keyword:"patternProperties",type:"object",schemaType:"object",code(t){let{gen:e,schema:r,data:n,parentSchema:o,it:s}=t,{opts:i}=s,a=(0,Xg.allSchemaProperties)(r),c=a.filter(h=>(0,Gg.alwaysValidSchema)(s,r[h]));if(a.length===0||c.length===a.length&&(!s.opts.unevaluated||s.props===!0))return;let u=i.strictSchema&&!i.allowMatchingProperties&&o.properties,l=e.name("valid");s.props!==!0&&!(s.props instanceof di.Name)&&(s.props=(0,Wg.evaluatedPropsToName)(e,s.props));let{props:d}=s;m();function m(){for(let h of a)u&&f(h),s.allErrors?p(h):(e.var(l,!0),p(h),e.if(l))}function f(h){for(let g in u)new RegExp(h).test(g)&&(0,Gg.checkStrictMode)(s,`property ${g} matches pattern ${h} (use allowMatchingProperties)`)}function p(h){e.forIn("key",n,g=>{e.if((0,di._)`${(0,Xg.usePattern)(t,h)}.test(${g})`,()=>{let b=c.includes(h);b||t.subschema({keyword:"patternProperties",schemaProp:h,dataProp:g,dataPropType:Wg.Type.Str},l),s.opts.unevaluated&&d!==!0?e.assign((0,di._)`${d}[${g}]`,!0):!b&&!s.allErrors&&e.if((0,di.not)(l),()=>e.break())})})}}};Hl.default=JT});var Qg=S(Bl=>{"use strict";Object.defineProperty(Bl,"__esModule",{value:!0});var XT=G(),GT={keyword:"not",schemaType:["object","boolean"],trackErrors:!0,code(t){let{gen:e,schema:r,it:n}=t;if((0,XT.alwaysValidSchema)(n,r)){t.fail();return}let o=e.name("valid");t.subschema({keyword:"not",compositeRule:!0,createErrors:!1,allErrors:!1},o),t.failResult(o,()=>t.reset(),()=>t.error())},error:{message:"must NOT be valid"}};Bl.default=GT});var ey=S(Kl=>{"use strict";Object.defineProperty(Kl,"__esModule",{value:!0});var WT=tt(),YT={keyword:"anyOf",schemaType:"array",trackErrors:!0,code:WT.validateUnion,error:{message:"must match a schema in anyOf"}};Kl.default=YT});var ty=S(Jl=>{"use strict";Object.defineProperty(Jl,"__esModule",{value:!0});var pi=U(),QT=G(),eP={message:"must match exactly one schema in oneOf",params:({params:t})=>(0,pi._)`{passingSchemas: ${t.passing}}`},tP={keyword:"oneOf",schemaType:"array",trackErrors:!0,error:eP,code(t){let{gen:e,schema:r,parentSchema:n,it:o}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");if(o.opts.discriminator&&n.discriminator)return;let s=r,i=e.let("valid",!1),a=e.let("passing",null),c=e.name("_valid");t.setParams({passing:a}),e.block(u),t.result(i,()=>t.reset(),()=>t.error(!0));function u(){s.forEach((l,d)=>{let m;(0,QT.alwaysValidSchema)(o,l)?e.var(c,!0):m=t.subschema({keyword:"oneOf",schemaProp:d,compositeRule:!0},c),d>0&&e.if((0,pi._)`${c} && ${i}`).assign(i,!1).assign(a,(0,pi._)`[${a}, ${d}]`).else(),e.if(c,()=>{e.assign(i,!0),e.assign(a,d),m&&t.mergeEvaluated(m,pi.Name)})})}}};Jl.default=tP});var ry=S(Xl=>{"use strict";Object.defineProperty(Xl,"__esModule",{value:!0});var rP=G(),nP={keyword:"allOf",schemaType:"array",code(t){let{gen:e,schema:r,it:n}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");let o=e.name("valid");r.forEach((s,i)=>{if((0,rP.alwaysValidSchema)(n,s))return;let a=t.subschema({keyword:"allOf",schemaProp:i},o);t.ok(o),t.mergeEvaluated(a)})}};Xl.default=nP});var sy=S(Gl=>{"use strict";Object.defineProperty(Gl,"__esModule",{value:!0});var fi=U(),oy=G(),oP={message:({params:t})=>(0,fi.str)`must match "${t.ifClause}" schema`,params:({params:t})=>(0,fi._)`{failingKeyword: ${t.ifClause}}`},sP={keyword:"if",schemaType:["object","boolean"],trackErrors:!0,error:oP,code(t){let{gen:e,parentSchema:r,it:n}=t;r.then===void 0&&r.else===void 0&&(0,oy.checkStrictMode)(n,'"if" without "then" and "else" is ignored');let o=ny(n,"then"),s=ny(n,"else");if(!o&&!s)return;let i=e.let("valid",!0),a=e.name("_valid");if(c(),t.reset(),o&&s){let l=e.let("ifClause");t.setParams({ifClause:l}),e.if(a,u("then",l),u("else",l))}else o?e.if(a,u("then")):e.if((0,fi.not)(a),u("else"));t.pass(i,()=>t.error(!0));function c(){let l=t.subschema({keyword:"if",compositeRule:!0,createErrors:!1,allErrors:!1},a);t.mergeEvaluated(l)}function u(l,d){return()=>{let m=t.subschema({keyword:l},a);e.assign(i,a),t.mergeValidEvaluated(m,i),d?e.assign(d,(0,fi._)`${l}`):t.setParams({ifClause:l})}}}};function ny(t,e){let r=t.schema[e];return r!==void 0&&!(0,oy.alwaysValidSchema)(t,r)}Gl.default=sP});var iy=S(Wl=>{"use strict";Object.defineProperty(Wl,"__esModule",{value:!0});var iP=G(),aP={keyword:["then","else"],schemaType:["object","boolean"],code({keyword:t,parentSchema:e,it:r}){e.if===void 0&&(0,iP.checkStrictMode)(r,`"${t}" without "if" is ignored`)}};Wl.default=aP});var ay=S(Yl=>{"use strict";Object.defineProperty(Yl,"__esModule",{value:!0});var cP=Nl(),uP=Ag(),lP=Cl(),dP=Dg(),pP=Lg(),fP=Fg(),mP=Hg(),hP=Ul(),gP=Jg(),yP=Yg(),_P=Qg(),vP=ey(),xP=ty(),bP=ry(),wP=sy(),$P=iy();function kP(t=!1){let e=[_P.default,vP.default,xP.default,bP.default,wP.default,$P.default,mP.default,hP.default,fP.default,gP.default,yP.default];return t?e.push(uP.default,dP.default):e.push(cP.default,lP.default),e.push(pP.default),e}Yl.default=kP});var cy=S(Ql=>{"use strict";Object.defineProperty(Ql,"__esModule",{value:!0});var ge=U(),SP={message:({schemaCode:t})=>(0,ge.str)`must match format "${t}"`,params:({schemaCode:t})=>(0,ge._)`{format: ${t}}`},zP={keyword:"format",type:["number","string"],schemaType:"string",$data:!0,error:SP,code(t,e){let{gen:r,data:n,$data:o,schema:s,schemaCode:i,it:a}=t,{opts:c,errSchemaPath:u,schemaEnv:l,self:d}=a;if(!c.validateFormats)return;o?m():f();function m(){let p=r.scopeValue("formats",{ref:d.formats,code:c.code.formats}),h=r.const("fDef",(0,ge._)`${p}[${i}]`),g=r.let("fType"),b=r.let("format");r.if((0,ge._)`typeof ${h} == "object" && !(${h} instanceof RegExp)`,()=>r.assign(g,(0,ge._)`${h}.type || "string"`).assign(b,(0,ge._)`${h}.validate`),()=>r.assign(g,(0,ge._)`"string"`).assign(b,h)),t.fail$data((0,ge.or)(v(),x()));function v(){return c.strictSchema===!1?ge.nil:(0,ge._)`${i} && !${b}`}function x(){let T=l.$async?(0,ge._)`(${h}.async ? await ${b}(${n}) : ${b}(${n}))`:(0,ge._)`${b}(${n})`,N=(0,ge._)`(typeof ${b} == "function" ? ${T} : ${b}.test(${n}))`;return(0,ge._)`${b} && ${b} !== true && ${g} === ${e} && !${N}`}}function f(){let p=d.formats[s];if(!p){v();return}if(p===!0)return;let[h,g,b]=x(p);h===e&&t.pass(T());function v(){if(c.strictSchema===!1){d.logger.warn(N());return}throw new Error(N());function N(){return`unknown format "${s}" ignored in schema at path "${u}"`}}function x(N){let he=N instanceof RegExp?(0,ge.regexpCode)(N):c.code.formats?(0,ge._)`${c.code.formats}${(0,ge.getProperty)(s)}`:void 0,Fe=r.scopeValue("formats",{key:s,ref:N,code:he});return typeof N=="object"&&!(N instanceof RegExp)?[N.type||"string",N.validate,(0,ge._)`${Fe}.validate`]:["string",N,Fe]}function T(){if(typeof p=="object"&&!(p instanceof RegExp)&&p.async){if(!l.$async)throw new Error("async format in sync schema");return(0,ge._)`await ${b}(${n})`}return typeof g=="function"?(0,ge._)`${b}(${n})`:(0,ge._)`${b}.test(${n})`}}}};Ql.default=zP});var uy=S(ed=>{"use strict";Object.defineProperty(ed,"__esModule",{value:!0});var TP=cy(),PP=[TP.default];ed.default=PP});var ly=S(mn=>{"use strict";Object.defineProperty(mn,"__esModule",{value:!0});mn.contentVocabulary=mn.metadataVocabulary=void 0;mn.metadataVocabulary=["title","description","default","deprecated","readOnly","writeOnly","examples"];mn.contentVocabulary=["contentMediaType","contentEncoding","contentSchema"]});var py=S(td=>{"use strict";Object.defineProperty(td,"__esModule",{value:!0});var EP=vg(),OP=jg(),IP=ay(),RP=uy(),dy=ly(),jP=[EP.default,OP.default,(0,IP.default)(),RP.default,dy.metadataVocabulary,dy.contentVocabulary];td.default=jP});var my=S(mi=>{"use strict";Object.defineProperty(mi,"__esModule",{value:!0});mi.DiscrError=void 0;var fy;(function(t){t.Tag="tag",t.Mapping="mapping"})(fy||(mi.DiscrError=fy={}))});var gy=S(nd=>{"use strict";Object.defineProperty(nd,"__esModule",{value:!0});var hn=U(),rd=my(),hy=Ws(),NP=yo(),CP=G(),ZP={message:({params:{discrError:t,tagName:e}})=>t===rd.DiscrError.Tag?`tag "${e}" must be string`:`value of tag "${e}" must be in oneOf`,params:({params:{discrError:t,tag:e,tagName:r}})=>(0,hn._)`{error: ${t}, tag: ${r}, tagValue: ${e}}`},AP={keyword:"discriminator",type:"object",schemaType:"object",error:ZP,code(t){let{gen:e,data:r,schema:n,parentSchema:o,it:s}=t,{oneOf:i}=o;if(!s.opts.discriminator)throw new Error("discriminator: requires discriminator option");let a=n.propertyName;if(typeof a!="string")throw new Error("discriminator: requires propertyName");if(n.mapping)throw new Error("discriminator: mapping is not supported");if(!i)throw new Error("discriminator: requires oneOf keyword");let c=e.let("valid",!1),u=e.const("tag",(0,hn._)`${r}${(0,hn.getProperty)(a)}`);e.if((0,hn._)`typeof ${u} == "string"`,()=>l(),()=>t.error(!1,{discrError:rd.DiscrError.Tag,tag:u,tagName:a})),t.ok(c);function l(){let f=m();e.if(!1);for(let p in f)e.elseIf((0,hn._)`${u} === ${p}`),e.assign(c,d(f[p]));e.else(),t.error(!1,{discrError:rd.DiscrError.Mapping,tag:u,tagName:a}),e.endIf()}function d(f){let p=e.name("valid"),h=t.subschema({keyword:"oneOf",schemaProp:f},p);return t.mergeEvaluated(h,hn.Name),p}function m(){var f;let p={},h=b(o),g=!0;for(let T=0;T<i.length;T++){let N=i[T];if(N?.$ref&&!(0,CP.schemaHasRulesButRef)(N,s.self.RULES)){let Fe=N.$ref;if(N=hy.resolveRef.call(s.self,s.schemaEnv.root,s.baseId,Fe),N instanceof hy.SchemaEnv&&(N=N.schema),N===void 0)throw new NP.default(s.opts.uriResolver,s.baseId,Fe)}let he=(f=N?.properties)===null||f===void 0?void 0:f[a];if(typeof he!="object")throw new Error(`discriminator: oneOf subschemas (or referenced schemas) must have "properties/${a}"`);g=g&&(h||b(N)),v(he,T)}if(!g)throw new Error(`discriminator: "${a}" must be required`);return p;function b({required:T}){return Array.isArray(T)&&T.includes(a)}function v(T,N){if(T.const)x(T.const,N);else if(T.enum)for(let he of T.enum)x(he,N);else throw new Error(`discriminator: "properties/${a}" must have "const" or "enum"`)}function x(T,N){if(typeof T!="string"||T in p)throw new Error(`discriminator: "${a}" values must be unique strings`);p[T]=N}}}};nd.default=AP});var yy=S((SC,MP)=>{MP.exports={$schema:"http://json-schema.org/draft-07/schema#",$id:"http://json-schema.org/draft-07/schema#",title:"Core schema meta-schema",definitions:{schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:!0,default:[]}},type:["object","boolean"],properties:{$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},$comment:{type:"string"},title:{type:"string"},description:{type:"string"},default:!0,readOnly:{type:"boolean",default:!1},examples:{type:"array",items:!0},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:!0},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:!1},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},propertyNames:{format:"regex"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:!0,enum:{type:"array",items:!0,minItems:1,uniqueItems:!0},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:!0}]},format:{type:"string"},contentMediaType:{type:"string"},contentEncoding:{type:"string"},if:{$ref:"#"},then:{$ref:"#"},else:{$ref:"#"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}},default:!0}});var sd=S((ce,od)=>{"use strict";Object.defineProperty(ce,"__esModule",{value:!0});ce.MissingRefError=ce.ValidationError=ce.CodeGen=ce.Name=ce.nil=ce.stringify=ce.str=ce._=ce.KeywordCxt=ce.Ajv=void 0;var DP=fg(),LP=py(),qP=gy(),_y=yy(),UP=["/properties"],hi="http://json-schema.org/draft-07/schema",gn=class extends DP.default{_addVocabularies(){super._addVocabularies(),LP.default.forEach(e=>this.addVocabulary(e)),this.opts.discriminator&&this.addKeyword(qP.default)}_addDefaultMetaSchema(){if(super._addDefaultMetaSchema(),!this.opts.meta)return;let e=this.opts.$data?this.$dataMetaSchema(_y,UP):_y;this.addMetaSchema(e,hi,!1),this.refs["http://json-schema.org/schema"]=hi}defaultMeta(){return this.opts.defaultMeta=super.defaultMeta()||(this.getSchema(hi)?hi:void 0)}};ce.Ajv=gn;od.exports=ce=gn;od.exports.Ajv=gn;Object.defineProperty(ce,"__esModule",{value:!0});ce.default=gn;var FP=go();Object.defineProperty(ce,"KeywordCxt",{enumerable:!0,get:function(){return FP.KeywordCxt}});var yn=U();Object.defineProperty(ce,"_",{enumerable:!0,get:function(){return yn._}});Object.defineProperty(ce,"str",{enumerable:!0,get:function(){return yn.str}});Object.defineProperty(ce,"stringify",{enumerable:!0,get:function(){return yn.stringify}});Object.defineProperty(ce,"nil",{enumerable:!0,get:function(){return yn.nil}});Object.defineProperty(ce,"Name",{enumerable:!0,get:function(){return yn.Name}});Object.defineProperty(ce,"CodeGen",{enumerable:!0,get:function(){return yn.CodeGen}});var VP=Xs();Object.defineProperty(ce,"ValidationError",{enumerable:!0,get:function(){return VP.default}});var HP=yo();Object.defineProperty(ce,"MissingRefError",{enumerable:!0,get:function(){return HP.default}})});var zy=S(wt=>{"use strict";Object.defineProperty(wt,"__esModule",{value:!0});wt.formatNames=wt.fastFormats=wt.fullFormats=void 0;function bt(t,e){return{validate:t,compare:e}}wt.fullFormats={date:bt(wy,ud),time:bt(ad(!0),ld),"date-time":bt(vy(!0),ky),"iso-time":bt(ad(),$y),"iso-date-time":bt(vy(),Sy),duration:/^P(?!$)((\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?|(\d+W)?)$/,uri:WP,"uri-reference":/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,"uri-template":/^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,url:/^(?:https?|ftp):\/\/(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)(?:\.(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)*(?:\.(?:[a-z\u{00a1}-\u{ffff}]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/iu,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:/^(?=.{1,253}\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\.?$/i,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)$/,ipv6:/^((([0-9a-f]{1,4}:){7}([0-9a-f]{1,4}|:))|(([0-9a-f]{1,4}:){6}(:[0-9a-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){5}(((:[0-9a-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){4}(((:[0-9a-f]{1,4}){1,3})|((:[0-9a-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){3}(((:[0-9a-f]{1,4}){1,4})|((:[0-9a-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){2}(((:[0-9a-f]{1,4}){1,5})|((:[0-9a-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){1}(((:[0-9a-f]{1,4}){1,6})|((:[0-9a-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9a-f]{1,4}){1,7})|((:[0-9a-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))$/i,regex:oE,uuid:/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,"json-pointer":/^(?:\/(?:[^~/]|~0|~1)*)*$/,"json-pointer-uri-fragment":/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,"relative-json-pointer":/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/,byte:YP,int32:{type:"number",validate:tE},int64:{type:"number",validate:rE},float:{type:"number",validate:by},double:{type:"number",validate:by},password:!0,binary:!0};wt.fastFormats={...wt.fullFormats,date:bt(/^\d\d\d\d-[0-1]\d-[0-3]\d$/,ud),time:bt(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,ld),"date-time":bt(/^\d\d\d\d-[0-1]\d-[0-3]\dt(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,ky),"iso-time":bt(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,$y),"iso-date-time":bt(/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,Sy),uri:/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+\-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i};wt.formatNames=Object.keys(wt.fullFormats);function BP(t){return t%4===0&&(t%100!==0||t%400===0)}var KP=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,JP=[0,31,28,31,30,31,30,31,31,30,31,30,31];function wy(t){let e=KP.exec(t);if(!e)return!1;let r=+e[1],n=+e[2],o=+e[3];return n>=1&&n<=12&&o>=1&&o<=(n===2&&BP(r)?29:JP[n])}function ud(t,e){if(t&&e)return t>e?1:t<e?-1:0}var id=/^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;function ad(t){return function(r){let n=id.exec(r);if(!n)return!1;let o=+n[1],s=+n[2],i=+n[3],a=n[4],c=n[5]==="-"?-1:1,u=+(n[6]||0),l=+(n[7]||0);if(u>23||l>59||t&&!a)return!1;if(o<=23&&s<=59&&i<60)return!0;let d=s-l*c,m=o-u*c-(d<0?1:0);return(m===23||m===-1)&&(d===59||d===-1)&&i<61}}function ld(t,e){if(!(t&&e))return;let r=new Date("2020-01-01T"+t).valueOf(),n=new Date("2020-01-01T"+e).valueOf();if(r&&n)return r-n}function $y(t,e){if(!(t&&e))return;let r=id.exec(t),n=id.exec(e);if(r&&n)return t=r[1]+r[2]+r[3],e=n[1]+n[2]+n[3],t>e?1:t<e?-1:0}var cd=/t|\s/i;function vy(t){let e=ad(t);return function(n){let o=n.split(cd);return o.length===2&&wy(o[0])&&e(o[1])}}function ky(t,e){if(!(t&&e))return;let r=new Date(t).valueOf(),n=new Date(e).valueOf();if(r&&n)return r-n}function Sy(t,e){if(!(t&&e))return;let[r,n]=t.split(cd),[o,s]=e.split(cd),i=ud(r,o);if(i!==void 0)return i||ld(n,s)}var XP=/\/|:/,GP=/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)(?:\?(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i;function WP(t){return XP.test(t)&&GP.test(t)}var xy=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/gm;function YP(t){return xy.lastIndex=0,xy.test(t)}var QP=-(2**31),eE=2**31-1;function tE(t){return Number.isInteger(t)&&t<=eE&&t>=QP}function rE(t){return Number.isInteger(t)}function by(){return!0}var nE=/[^\\]\\Z/;function oE(t){if(nE.test(t))return!1;try{return new RegExp(t),!0}catch{return!1}}});var Ty=S(_n=>{"use strict";Object.defineProperty(_n,"__esModule",{value:!0});_n.formatLimitDefinition=void 0;var sE=sd(),pt=U(),Wt=pt.operators,gi={formatMaximum:{okStr:"<=",ok:Wt.LTE,fail:Wt.GT},formatMinimum:{okStr:">=",ok:Wt.GTE,fail:Wt.LT},formatExclusiveMaximum:{okStr:"<",ok:Wt.LT,fail:Wt.GTE},formatExclusiveMinimum:{okStr:">",ok:Wt.GT,fail:Wt.LTE}},iE={message:({keyword:t,schemaCode:e})=>(0,pt.str)`should be ${gi[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,pt._)`{comparison: ${gi[t].okStr}, limit: ${e}}`};_n.formatLimitDefinition={keyword:Object.keys(gi),type:"string",schemaType:"string",$data:!0,error:iE,code(t){let{gen:e,data:r,schemaCode:n,keyword:o,it:s}=t,{opts:i,self:a}=s;if(!i.validateFormats)return;let c=new sE.KeywordCxt(s,a.RULES.all.format.definition,"format");c.$data?u():l();function u(){let m=e.scopeValue("formats",{ref:a.formats,code:i.code.formats}),f=e.const("fmt",(0,pt._)`${m}[${c.schemaCode}]`);t.fail$data((0,pt.or)((0,pt._)`typeof ${f} != "object"`,(0,pt._)`${f} instanceof RegExp`,(0,pt._)`typeof ${f}.compare != "function"`,d(f)))}function l(){let m=c.schema,f=a.formats[m];if(!f||f===!0)return;if(typeof f!="object"||f instanceof RegExp||typeof f.compare!="function")throw new Error(`"${o}": format "${m}" does not define "compare" function`);let p=e.scopeValue("formats",{key:m,ref:f,code:i.code.formats?(0,pt._)`${i.code.formats}${(0,pt.getProperty)(m)}`:void 0});t.fail$data(d(p))}function d(m){return(0,pt._)`${m}.compare(${r}, ${n}) ${gi[o].fail} 0`}},dependencies:["format"]};var aE=t=>(t.addKeyword(_n.formatLimitDefinition),t);_n.default=aE});var Iy=S((Io,Oy)=>{"use strict";Object.defineProperty(Io,"__esModule",{value:!0});var vn=zy(),cE=Ty(),dd=U(),Py=new dd.Name("fullFormats"),uE=new dd.Name("fastFormats"),pd=(t,e={keywords:!0})=>{if(Array.isArray(e))return Ey(t,e,vn.fullFormats,Py),t;let[r,n]=e.mode==="fast"?[vn.fastFormats,uE]:[vn.fullFormats,Py],o=e.formats||vn.formatNames;return Ey(t,o,r,n),e.keywords&&(0,cE.default)(t),t};pd.get=(t,e="full")=>{let n=(e==="fast"?vn.fastFormats:vn.fullFormats)[t];if(!n)throw new Error(`Unknown format "${t}"`);return n};function Ey(t,e,r,n){var o,s;(o=(s=t.opts.code).formats)!==null&&o!==void 0||(s.formats=(0,dd._)`require("ajv-formats/dist/formats").${n}`);for(let i of e)t.addFormat(i,r[i])}Oy.exports=Io=pd;Object.defineProperty(Io,"__esModule",{value:!0});Io.default=pd});import*as Ed from"node:http";import{randomBytes as s_}from"node:crypto";import{spawn as Oi}from"node:child_process";import{promises as Qt}from"node:fs";import*as $n from"node:path";import*as Sd from"node:os";import{randomBytes as r_}from"node:crypto";var Cr=process.env.OIOXO_CONTROL_PLANE?.replace(/\/$/,"")||"https://oioxo.com",wn=process.env.OIOXO_HOME||$n.join(Sd.homedir(),".oioxo"),zi=$n.join(wn,"credentials.json");async function kn(){try{let t=JSON.parse(await Qt.readFile(zi,"utf8"));return t?.token?t:null}catch{return null}}async function zd(t){await Qt.mkdir(wn,{recursive:!0}),await Qt.writeFile(zi,JSON.stringify(t,null,2),{encoding:"utf8",mode:384})}async function Td(){try{await Qt.unlink(zi)}catch{}}async function Ti(){let t=await kn();if(t?.device)return t.device;try{let r=await Qt.readFile($n.join(wn,"device"),"utf8");if(r.trim())return r.trim()}catch{}let e=r_(16).toString("base64url");return await Qt.mkdir(wn,{recursive:!0}),await Qt.writeFile($n.join(wn,"device"),e,"utf8"),e}function n_(){return`cli-${process.platform==="win32"?"windows":process.platform==="darwin"?"mac":"linux"}`}async function o_(){let t=await kn(),e=await Ti(),r={"content-type":"application/json","x-oioxo-client":n_(),"x-oioxo-device":e};return t?.token&&t.expiresAt>Date.now()&&(r.authorization=`Bearer ${t.token}`),r}async function ft(t,e){try{let r=await fetch(`${Cr}/api/usage/save`,{method:"POST",headers:await o_(),body:JSON.stringify(t==="report"?{action:t,savedTokens:e}:{action:t})});return r.ok?await r.json():null}catch{return null}}async function Pd(){let t=await kn();return!!t&&t.expiresAt>Date.now()}var Pi="https://oioxo.com/?upgrade=pro",Ei="Run `oioxo-mcp login` in a terminal to connect your OIOXO account.";var i_=5*6e4,a_=`<!doctype html><html><head><meta charset="utf-8"><title>OIOXO CLI connected</title></head>
|
|
48
|
+
deps: ${r}}`};var yP={keyword:"dependencies",type:"object",schemaType:"object",error:xt.error,code(t){let[e,r]=_P(t);gy(t,e),yy(t,r)}};function _P({schema:t}){let e={},r={};for(let n in t){if(n==="__proto__")continue;let o=Array.isArray(t[n])?e:r;o[n]=t[n]}return[e,r]}function gy(t,e=t.schema){let{gen:r,data:n,it:o}=t;if(Object.keys(e).length===0)return;let s=r.let("missing");for(let i in e){let a=e[i];if(a.length===0)continue;let c=(0,Mo.propertyInData)(r,n,i,o.opts.ownProperties);t.setParams({property:i,depsCount:a.length,deps:a.join(", ")}),o.allErrors?r.if(c,()=>{for(let u of a)(0,Mo.checkReportMissingProp)(t,u)}):(r.if((0,od._)`${c} && (${(0,Mo.checkMissingProp)(t,a,s)})`),(0,Mo.reportMissingProp)(t,s),r.else())}}xt.validatePropertyDeps=gy;function yy(t,e=t.schema){let{gen:r,data:n,keyword:o,it:s}=t,i=r.name("valid");for(let a in e)(0,gP.alwaysValidSchema)(s,e[a])||(r.if((0,Mo.propertyInData)(r,n,a,s.opts.ownProperties),()=>{let c=t.subschema({keyword:o,schemaProp:a},i);t.mergeValidEvaluated(c,i)},()=>r.var(i,!0)),t.ok(i))}xt.validateSchemaDeps=yy;xt.default=yP});var xy=S(sd=>{"use strict";Object.defineProperty(sd,"__esModule",{value:!0});var vy=U(),vP=G(),xP={message:"property name must be valid",params:({params:t})=>(0,vy._)`{propertyName: ${t.propertyName}}`},wP={keyword:"propertyNames",type:"object",schemaType:["object","boolean"],error:xP,code(t){let{gen:e,schema:r,data:n,it:o}=t;if((0,vP.alwaysValidSchema)(o,r))return;let s=e.name("valid");e.forIn("key",n,i=>{t.setParams({propertyName:i}),t.subschema({keyword:"propertyNames",data:i,dataTypes:["string"],propertyName:i,compositeRule:!0},s),e.if((0,vy.not)(s),()=>{t.error(!0),o.allErrors||e.break()})}),t.ok(s)}};sd.default=wP});var ad=S(id=>{"use strict";Object.defineProperty(id,"__esModule",{value:!0});var bi=rt(),pt=U(),bP=Rt(),$i=G(),$P={message:"must NOT have additional properties",params:({params:t})=>(0,pt._)`{additionalProperty: ${t.additionalProperty}}`},kP={keyword:"additionalProperties",type:["object"],schemaType:["boolean","object"],allowUndefined:!0,trackErrors:!0,error:$P,code(t){let{gen:e,schema:r,parentSchema:n,data:o,errsCount:s,it:i}=t;if(!s)throw new Error("ajv implementation error");let{allErrors:a,opts:c}=i;if(i.props=!0,c.removeAdditional!=="all"&&(0,$i.alwaysValidSchema)(i,r))return;let u=(0,bi.allSchemaProperties)(n.properties),l=(0,bi.allSchemaProperties)(n.patternProperties);d(),t.ok((0,pt._)`${s} === ${bP.default.errors}`);function d(){e.forIn("key",o,g=>{!u.length&&!l.length?p(g):e.if(f(g),()=>p(g))})}function f(g){let w;if(u.length>8){let v=(0,$i.schemaRefOrVal)(i,n.properties,"properties");w=(0,bi.isOwnProperty)(e,v,g)}else u.length?w=(0,pt.or)(...u.map(v=>(0,pt._)`${g} === ${v}`)):w=pt.nil;return l.length&&(w=(0,pt.or)(w,...l.map(v=>(0,pt._)`${(0,bi.usePattern)(t,v)}.test(${g})`))),(0,pt.not)(w)}function m(g){e.code((0,pt._)`delete ${o}[${g}]`)}function p(g){if(c.removeAdditional==="all"||c.removeAdditional&&r===!1){m(g);return}if(r===!1){t.setParams({additionalProperty:g}),t.error(),a||e.break();return}if(typeof r=="object"&&!(0,$i.alwaysValidSchema)(i,r)){let w=e.name("valid");c.removeAdditional==="failing"?(h(g,w,!1),e.if((0,pt.not)(w),()=>{t.reset(),m(g)})):(h(g,w),a||e.if((0,pt.not)(w),()=>e.break()))}}function h(g,w,v){let x={keyword:"additionalProperties",dataProp:g,dataPropType:$i.Type.Str};v===!1&&Object.assign(x,{compositeRule:!0,createErrors:!1,allErrors:!1}),t.subschema(x,w)}}};id.default=kP});var $y=S(ud=>{"use strict";Object.defineProperty(ud,"__esModule",{value:!0});var SP=ko(),wy=rt(),cd=G(),by=ad(),zP={keyword:"properties",type:"object",schemaType:"object",code(t){let{gen:e,schema:r,parentSchema:n,data:o,it:s}=t;s.opts.removeAdditional==="all"&&n.additionalProperties===void 0&&by.default.code(new SP.KeywordCxt(s,by.default,"additionalProperties"));let i=(0,wy.allSchemaProperties)(r);for(let d of i)s.definedProperties.add(d);s.opts.unevaluated&&i.length&&s.props!==!0&&(s.props=cd.mergeEvaluated.props(e,(0,cd.toHash)(i),s.props));let a=i.filter(d=>!(0,cd.alwaysValidSchema)(s,r[d]));if(a.length===0)return;let c=e.name("valid");for(let d of a)u(d)?l(d):(e.if((0,wy.propertyInData)(e,o,d,s.opts.ownProperties)),l(d),s.allErrors||e.else().var(c,!0),e.endIf()),t.it.definedProperties.add(d),t.ok(c);function u(d){return s.opts.useDefaults&&!s.compositeRule&&r[d].default!==void 0}function l(d){t.subschema({keyword:"properties",schemaProp:d,dataProp:d},c)}}};ud.default=zP});var Ty=S(ld=>{"use strict";Object.defineProperty(ld,"__esModule",{value:!0});var ky=rt(),ki=U(),Sy=G(),zy=G(),TP={keyword:"patternProperties",type:"object",schemaType:"object",code(t){let{gen:e,schema:r,data:n,parentSchema:o,it:s}=t,{opts:i}=s,a=(0,ky.allSchemaProperties)(r),c=a.filter(h=>(0,Sy.alwaysValidSchema)(s,r[h]));if(a.length===0||c.length===a.length&&(!s.opts.unevaluated||s.props===!0))return;let u=i.strictSchema&&!i.allowMatchingProperties&&o.properties,l=e.name("valid");s.props!==!0&&!(s.props instanceof ki.Name)&&(s.props=(0,zy.evaluatedPropsToName)(e,s.props));let{props:d}=s;f();function f(){for(let h of a)u&&m(h),s.allErrors?p(h):(e.var(l,!0),p(h),e.if(l))}function m(h){for(let g in u)new RegExp(h).test(g)&&(0,Sy.checkStrictMode)(s,`property ${g} matches pattern ${h} (use allowMatchingProperties)`)}function p(h){e.forIn("key",n,g=>{e.if((0,ki._)`${(0,ky.usePattern)(t,h)}.test(${g})`,()=>{let w=c.includes(h);w||t.subschema({keyword:"patternProperties",schemaProp:h,dataProp:g,dataPropType:zy.Type.Str},l),s.opts.unevaluated&&d!==!0?e.assign((0,ki._)`${d}[${g}]`,!0):!w&&!s.allErrors&&e.if((0,ki.not)(l),()=>e.break())})})}}};ld.default=TP});var Py=S(dd=>{"use strict";Object.defineProperty(dd,"__esModule",{value:!0});var PP=G(),OP={keyword:"not",schemaType:["object","boolean"],trackErrors:!0,code(t){let{gen:e,schema:r,it:n}=t;if((0,PP.alwaysValidSchema)(n,r)){t.fail();return}let o=e.name("valid");t.subschema({keyword:"not",compositeRule:!0,createErrors:!1,allErrors:!1},o),t.failResult(o,()=>t.reset(),()=>t.error())},error:{message:"must NOT be valid"}};dd.default=OP});var Oy=S(pd=>{"use strict";Object.defineProperty(pd,"__esModule",{value:!0});var EP=rt(),IP={keyword:"anyOf",schemaType:"array",trackErrors:!0,code:EP.validateUnion,error:{message:"must match a schema in anyOf"}};pd.default=IP});var Ey=S(fd=>{"use strict";Object.defineProperty(fd,"__esModule",{value:!0});var Si=U(),RP=G(),jP={message:"must match exactly one schema in oneOf",params:({params:t})=>(0,Si._)`{passingSchemas: ${t.passing}}`},NP={keyword:"oneOf",schemaType:"array",trackErrors:!0,error:jP,code(t){let{gen:e,schema:r,parentSchema:n,it:o}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");if(o.opts.discriminator&&n.discriminator)return;let s=r,i=e.let("valid",!1),a=e.let("passing",null),c=e.name("_valid");t.setParams({passing:a}),e.block(u),t.result(i,()=>t.reset(),()=>t.error(!0));function u(){s.forEach((l,d)=>{let f;(0,RP.alwaysValidSchema)(o,l)?e.var(c,!0):f=t.subschema({keyword:"oneOf",schemaProp:d,compositeRule:!0},c),d>0&&e.if((0,Si._)`${c} && ${i}`).assign(i,!1).assign(a,(0,Si._)`[${a}, ${d}]`).else(),e.if(c,()=>{e.assign(i,!0),e.assign(a,d),f&&t.mergeEvaluated(f,Si.Name)})})}}};fd.default=NP});var Iy=S(md=>{"use strict";Object.defineProperty(md,"__esModule",{value:!0});var CP=G(),ZP={keyword:"allOf",schemaType:"array",code(t){let{gen:e,schema:r,it:n}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");let o=e.name("valid");r.forEach((s,i)=>{if((0,CP.alwaysValidSchema)(n,s))return;let a=t.subschema({keyword:"allOf",schemaProp:i},o);t.ok(o),t.mergeEvaluated(a)})}};md.default=ZP});var Ny=S(hd=>{"use strict";Object.defineProperty(hd,"__esModule",{value:!0});var zi=U(),jy=G(),AP={message:({params:t})=>(0,zi.str)`must match "${t.ifClause}" schema`,params:({params:t})=>(0,zi._)`{failingKeyword: ${t.ifClause}}`},MP={keyword:"if",schemaType:["object","boolean"],trackErrors:!0,error:AP,code(t){let{gen:e,parentSchema:r,it:n}=t;r.then===void 0&&r.else===void 0&&(0,jy.checkStrictMode)(n,'"if" without "then" and "else" is ignored');let o=Ry(n,"then"),s=Ry(n,"else");if(!o&&!s)return;let i=e.let("valid",!0),a=e.name("_valid");if(c(),t.reset(),o&&s){let l=e.let("ifClause");t.setParams({ifClause:l}),e.if(a,u("then",l),u("else",l))}else o?e.if(a,u("then")):e.if((0,zi.not)(a),u("else"));t.pass(i,()=>t.error(!0));function c(){let l=t.subschema({keyword:"if",compositeRule:!0,createErrors:!1,allErrors:!1},a);t.mergeEvaluated(l)}function u(l,d){return()=>{let f=t.subschema({keyword:l},a);e.assign(i,a),t.mergeValidEvaluated(f,i),d?e.assign(d,(0,zi._)`${l}`):t.setParams({ifClause:l})}}}};function Ry(t,e){let r=t.schema[e];return r!==void 0&&!(0,jy.alwaysValidSchema)(t,r)}hd.default=MP});var Cy=S(gd=>{"use strict";Object.defineProperty(gd,"__esModule",{value:!0});var DP=G(),LP={keyword:["then","else"],schemaType:["object","boolean"],code({keyword:t,parentSchema:e,it:r}){e.if===void 0&&(0,DP.checkStrictMode)(r,`"${t}" without "if" is ignored`)}};gd.default=LP});var Zy=S(yd=>{"use strict";Object.defineProperty(yd,"__esModule",{value:!0});var qP=Ql(),UP=py(),FP=ed(),VP=my(),HP=hy(),KP=_y(),BP=xy(),XP=ad(),JP=$y(),GP=Ty(),WP=Py(),YP=Oy(),QP=Ey(),eO=Iy(),tO=Ny(),rO=Cy();function nO(t=!1){let e=[WP.default,YP.default,QP.default,eO.default,tO.default,rO.default,BP.default,XP.default,KP.default,JP.default,GP.default];return t?e.push(UP.default,VP.default):e.push(qP.default,FP.default),e.push(HP.default),e}yd.default=nO});var Ay=S(_d=>{"use strict";Object.defineProperty(_d,"__esModule",{value:!0});var ge=U(),oO={message:({schemaCode:t})=>(0,ge.str)`must match format "${t}"`,params:({schemaCode:t})=>(0,ge._)`{format: ${t}}`},sO={keyword:"format",type:["number","string"],schemaType:"string",$data:!0,error:oO,code(t,e){let{gen:r,data:n,$data:o,schema:s,schemaCode:i,it:a}=t,{opts:c,errSchemaPath:u,schemaEnv:l,self:d}=a;if(!c.validateFormats)return;o?f():m();function f(){let p=r.scopeValue("formats",{ref:d.formats,code:c.code.formats}),h=r.const("fDef",(0,ge._)`${p}[${i}]`),g=r.let("fType"),w=r.let("format");r.if((0,ge._)`typeof ${h} == "object" && !(${h} instanceof RegExp)`,()=>r.assign(g,(0,ge._)`${h}.type || "string"`).assign(w,(0,ge._)`${h}.validate`),()=>r.assign(g,(0,ge._)`"string"`).assign(w,h)),t.fail$data((0,ge.or)(v(),x()));function v(){return c.strictSchema===!1?ge.nil:(0,ge._)`${i} && !${w}`}function x(){let T=l.$async?(0,ge._)`(${h}.async ? await ${w}(${n}) : ${w}(${n}))`:(0,ge._)`${w}(${n})`,N=(0,ge._)`(typeof ${w} == "function" ? ${T} : ${w}.test(${n}))`;return(0,ge._)`${w} && ${w} !== true && ${g} === ${e} && !${N}`}}function m(){let p=d.formats[s];if(!p){v();return}if(p===!0)return;let[h,g,w]=x(p);h===e&&t.pass(T());function v(){if(c.strictSchema===!1){d.logger.warn(N());return}throw new Error(N());function N(){return`unknown format "${s}" ignored in schema at path "${u}"`}}function x(N){let he=N instanceof RegExp?(0,ge.regexpCode)(N):c.code.formats?(0,ge._)`${c.code.formats}${(0,ge.getProperty)(s)}`:void 0,He=r.scopeValue("formats",{key:s,ref:N,code:he});return typeof N=="object"&&!(N instanceof RegExp)?[N.type||"string",N.validate,(0,ge._)`${He}.validate`]:["string",N,He]}function T(){if(typeof p=="object"&&!(p instanceof RegExp)&&p.async){if(!l.$async)throw new Error("async format in sync schema");return(0,ge._)`await ${w}(${n})`}return typeof g=="function"?(0,ge._)`${w}(${n})`:(0,ge._)`${w}.test(${n})`}}}};_d.default=sO});var My=S(vd=>{"use strict";Object.defineProperty(vd,"__esModule",{value:!0});var iO=Ay(),aO=[iO.default];vd.default=aO});var Dy=S(xn=>{"use strict";Object.defineProperty(xn,"__esModule",{value:!0});xn.contentVocabulary=xn.metadataVocabulary=void 0;xn.metadataVocabulary=["title","description","default","deprecated","readOnly","writeOnly","examples"];xn.contentVocabulary=["contentMediaType","contentEncoding","contentSchema"]});var qy=S(xd=>{"use strict";Object.defineProperty(xd,"__esModule",{value:!0});var cO=Xg(),uO=cy(),lO=Zy(),dO=My(),Ly=Dy(),pO=[cO.default,uO.default,(0,lO.default)(),dO.default,Ly.metadataVocabulary,Ly.contentVocabulary];xd.default=pO});var Fy=S(Ti=>{"use strict";Object.defineProperty(Ti,"__esModule",{value:!0});Ti.DiscrError=void 0;var Uy;(function(t){t.Tag="tag",t.Mapping="mapping"})(Uy||(Ti.DiscrError=Uy={}))});var Hy=S(bd=>{"use strict";Object.defineProperty(bd,"__esModule",{value:!0});var wn=U(),wd=Fy(),Vy=li(),fO=So(),mO=G(),hO={message:({params:{discrError:t,tagName:e}})=>t===wd.DiscrError.Tag?`tag "${e}" must be string`:`value of tag "${e}" must be in oneOf`,params:({params:{discrError:t,tag:e,tagName:r}})=>(0,wn._)`{error: ${t}, tag: ${r}, tagValue: ${e}}`},gO={keyword:"discriminator",type:"object",schemaType:"object",error:hO,code(t){let{gen:e,data:r,schema:n,parentSchema:o,it:s}=t,{oneOf:i}=o;if(!s.opts.discriminator)throw new Error("discriminator: requires discriminator option");let a=n.propertyName;if(typeof a!="string")throw new Error("discriminator: requires propertyName");if(n.mapping)throw new Error("discriminator: mapping is not supported");if(!i)throw new Error("discriminator: requires oneOf keyword");let c=e.let("valid",!1),u=e.const("tag",(0,wn._)`${r}${(0,wn.getProperty)(a)}`);e.if((0,wn._)`typeof ${u} == "string"`,()=>l(),()=>t.error(!1,{discrError:wd.DiscrError.Tag,tag:u,tagName:a})),t.ok(c);function l(){let m=f();e.if(!1);for(let p in m)e.elseIf((0,wn._)`${u} === ${p}`),e.assign(c,d(m[p]));e.else(),t.error(!1,{discrError:wd.DiscrError.Mapping,tag:u,tagName:a}),e.endIf()}function d(m){let p=e.name("valid"),h=t.subschema({keyword:"oneOf",schemaProp:m},p);return t.mergeEvaluated(h,wn.Name),p}function f(){var m;let p={},h=w(o),g=!0;for(let T=0;T<i.length;T++){let N=i[T];if(N?.$ref&&!(0,mO.schemaHasRulesButRef)(N,s.self.RULES)){let He=N.$ref;if(N=Vy.resolveRef.call(s.self,s.schemaEnv.root,s.baseId,He),N instanceof Vy.SchemaEnv&&(N=N.schema),N===void 0)throw new fO.default(s.opts.uriResolver,s.baseId,He)}let he=(m=N?.properties)===null||m===void 0?void 0:m[a];if(typeof he!="object")throw new Error(`discriminator: oneOf subschemas (or referenced schemas) must have "properties/${a}"`);g=g&&(h||w(N)),v(he,T)}if(!g)throw new Error(`discriminator: "${a}" must be required`);return p;function w({required:T}){return Array.isArray(T)&&T.includes(a)}function v(T,N){if(T.const)x(T.const,N);else if(T.enum)for(let he of T.enum)x(he,N);else throw new Error(`discriminator: "properties/${a}" must have "const" or "enum"`)}function x(T,N){if(typeof T!="string"||T in p)throw new Error(`discriminator: "${a}" values must be unique strings`);p[T]=N}}}};bd.default=gO});var Ky=S((mZ,yO)=>{yO.exports={$schema:"http://json-schema.org/draft-07/schema#",$id:"http://json-schema.org/draft-07/schema#",title:"Core schema meta-schema",definitions:{schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:!0,default:[]}},type:["object","boolean"],properties:{$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},$comment:{type:"string"},title:{type:"string"},description:{type:"string"},default:!0,readOnly:{type:"boolean",default:!1},examples:{type:"array",items:!0},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:!0},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:!1},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},propertyNames:{format:"regex"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:!0,enum:{type:"array",items:!0,minItems:1,uniqueItems:!0},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:!0}]},format:{type:"string"},contentMediaType:{type:"string"},contentEncoding:{type:"string"},if:{$ref:"#"},then:{$ref:"#"},else:{$ref:"#"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}},default:!0}});var kd=S((ce,$d)=>{"use strict";Object.defineProperty(ce,"__esModule",{value:!0});ce.MissingRefError=ce.ValidationError=ce.CodeGen=ce.Name=ce.nil=ce.stringify=ce.str=ce._=ce.KeywordCxt=ce.Ajv=void 0;var _O=Ug(),vO=qy(),xO=Hy(),By=Ky(),wO=["/properties"],Pi="http://json-schema.org/draft-07/schema",bn=class extends _O.default{_addVocabularies(){super._addVocabularies(),vO.default.forEach(e=>this.addVocabulary(e)),this.opts.discriminator&&this.addKeyword(xO.default)}_addDefaultMetaSchema(){if(super._addDefaultMetaSchema(),!this.opts.meta)return;let e=this.opts.$data?this.$dataMetaSchema(By,wO):By;this.addMetaSchema(e,Pi,!1),this.refs["http://json-schema.org/schema"]=Pi}defaultMeta(){return this.opts.defaultMeta=super.defaultMeta()||(this.getSchema(Pi)?Pi:void 0)}};ce.Ajv=bn;$d.exports=ce=bn;$d.exports.Ajv=bn;Object.defineProperty(ce,"__esModule",{value:!0});ce.default=bn;var bO=ko();Object.defineProperty(ce,"KeywordCxt",{enumerable:!0,get:function(){return bO.KeywordCxt}});var $n=U();Object.defineProperty(ce,"_",{enumerable:!0,get:function(){return $n._}});Object.defineProperty(ce,"str",{enumerable:!0,get:function(){return $n.str}});Object.defineProperty(ce,"stringify",{enumerable:!0,get:function(){return $n.stringify}});Object.defineProperty(ce,"nil",{enumerable:!0,get:function(){return $n.nil}});Object.defineProperty(ce,"Name",{enumerable:!0,get:function(){return $n.Name}});Object.defineProperty(ce,"CodeGen",{enumerable:!0,get:function(){return $n.CodeGen}});var $O=ci();Object.defineProperty(ce,"ValidationError",{enumerable:!0,get:function(){return $O.default}});var kO=So();Object.defineProperty(ce,"MissingRefError",{enumerable:!0,get:function(){return kO.default}})});var t_=S(bt=>{"use strict";Object.defineProperty(bt,"__esModule",{value:!0});bt.formatNames=bt.fastFormats=bt.fullFormats=void 0;function wt(t,e){return{validate:t,compare:e}}bt.fullFormats={date:wt(Wy,Pd),time:wt(zd(!0),Od),"date-time":wt(Xy(!0),Qy),"iso-time":wt(zd(),Yy),"iso-date-time":wt(Xy(),e_),duration:/^P(?!$)((\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?|(\d+W)?)$/,uri:EO,"uri-reference":/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,"uri-template":/^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,url:/^(?:https?|ftp):\/\/(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)(?:\.(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)*(?:\.(?:[a-z\u{00a1}-\u{ffff}]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/iu,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:/^(?=.{1,253}\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\.?$/i,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)$/,ipv6:/^((([0-9a-f]{1,4}:){7}([0-9a-f]{1,4}|:))|(([0-9a-f]{1,4}:){6}(:[0-9a-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){5}(((:[0-9a-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){4}(((:[0-9a-f]{1,4}){1,3})|((:[0-9a-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){3}(((:[0-9a-f]{1,4}){1,4})|((:[0-9a-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){2}(((:[0-9a-f]{1,4}){1,5})|((:[0-9a-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){1}(((:[0-9a-f]{1,4}){1,6})|((:[0-9a-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9a-f]{1,4}){1,7})|((:[0-9a-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))$/i,regex:AO,uuid:/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,"json-pointer":/^(?:\/(?:[^~/]|~0|~1)*)*$/,"json-pointer-uri-fragment":/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,"relative-json-pointer":/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/,byte:IO,int32:{type:"number",validate:NO},int64:{type:"number",validate:CO},float:{type:"number",validate:Gy},double:{type:"number",validate:Gy},password:!0,binary:!0};bt.fastFormats={...bt.fullFormats,date:wt(/^\d\d\d\d-[0-1]\d-[0-3]\d$/,Pd),time:wt(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,Od),"date-time":wt(/^\d\d\d\d-[0-1]\d-[0-3]\dt(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,Qy),"iso-time":wt(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,Yy),"iso-date-time":wt(/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,e_),uri:/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+\-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i};bt.formatNames=Object.keys(bt.fullFormats);function SO(t){return t%4===0&&(t%100!==0||t%400===0)}var zO=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,TO=[0,31,28,31,30,31,30,31,31,30,31,30,31];function Wy(t){let e=zO.exec(t);if(!e)return!1;let r=+e[1],n=+e[2],o=+e[3];return n>=1&&n<=12&&o>=1&&o<=(n===2&&SO(r)?29:TO[n])}function Pd(t,e){if(t&&e)return t>e?1:t<e?-1:0}var Sd=/^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;function zd(t){return function(r){let n=Sd.exec(r);if(!n)return!1;let o=+n[1],s=+n[2],i=+n[3],a=n[4],c=n[5]==="-"?-1:1,u=+(n[6]||0),l=+(n[7]||0);if(u>23||l>59||t&&!a)return!1;if(o<=23&&s<=59&&i<60)return!0;let d=s-l*c,f=o-u*c-(d<0?1:0);return(f===23||f===-1)&&(d===59||d===-1)&&i<61}}function Od(t,e){if(!(t&&e))return;let r=new Date("2020-01-01T"+t).valueOf(),n=new Date("2020-01-01T"+e).valueOf();if(r&&n)return r-n}function Yy(t,e){if(!(t&&e))return;let r=Sd.exec(t),n=Sd.exec(e);if(r&&n)return t=r[1]+r[2]+r[3],e=n[1]+n[2]+n[3],t>e?1:t<e?-1:0}var Td=/t|\s/i;function Xy(t){let e=zd(t);return function(n){let o=n.split(Td);return o.length===2&&Wy(o[0])&&e(o[1])}}function Qy(t,e){if(!(t&&e))return;let r=new Date(t).valueOf(),n=new Date(e).valueOf();if(r&&n)return r-n}function e_(t,e){if(!(t&&e))return;let[r,n]=t.split(Td),[o,s]=e.split(Td),i=Pd(r,o);if(i!==void 0)return i||Od(n,s)}var PO=/\/|:/,OO=/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)(?:\?(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i;function EO(t){return PO.test(t)&&OO.test(t)}var Jy=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/gm;function IO(t){return Jy.lastIndex=0,Jy.test(t)}var RO=-(2**31),jO=2**31-1;function NO(t){return Number.isInteger(t)&&t<=jO&&t>=RO}function CO(t){return Number.isInteger(t)}function Gy(){return!0}var ZO=/[^\\]\\Z/;function AO(t){if(ZO.test(t))return!1;try{return new RegExp(t),!0}catch{return!1}}});var r_=S(kn=>{"use strict";Object.defineProperty(kn,"__esModule",{value:!0});kn.formatLimitDefinition=void 0;var MO=kd(),ft=U(),er=ft.operators,Oi={formatMaximum:{okStr:"<=",ok:er.LTE,fail:er.GT},formatMinimum:{okStr:">=",ok:er.GTE,fail:er.LT},formatExclusiveMaximum:{okStr:"<",ok:er.LT,fail:er.GTE},formatExclusiveMinimum:{okStr:">",ok:er.GT,fail:er.LTE}},DO={message:({keyword:t,schemaCode:e})=>(0,ft.str)`should be ${Oi[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,ft._)`{comparison: ${Oi[t].okStr}, limit: ${e}}`};kn.formatLimitDefinition={keyword:Object.keys(Oi),type:"string",schemaType:"string",$data:!0,error:DO,code(t){let{gen:e,data:r,schemaCode:n,keyword:o,it:s}=t,{opts:i,self:a}=s;if(!i.validateFormats)return;let c=new MO.KeywordCxt(s,a.RULES.all.format.definition,"format");c.$data?u():l();function u(){let f=e.scopeValue("formats",{ref:a.formats,code:i.code.formats}),m=e.const("fmt",(0,ft._)`${f}[${c.schemaCode}]`);t.fail$data((0,ft.or)((0,ft._)`typeof ${m} != "object"`,(0,ft._)`${m} instanceof RegExp`,(0,ft._)`typeof ${m}.compare != "function"`,d(m)))}function l(){let f=c.schema,m=a.formats[f];if(!m||m===!0)return;if(typeof m!="object"||m instanceof RegExp||typeof m.compare!="function")throw new Error(`"${o}": format "${f}" does not define "compare" function`);let p=e.scopeValue("formats",{key:f,ref:m,code:i.code.formats?(0,ft._)`${i.code.formats}${(0,ft.getProperty)(f)}`:void 0});t.fail$data(d(p))}function d(f){return(0,ft._)`${f}.compare(${r}, ${n}) ${Oi[o].fail} 0`}},dependencies:["format"]};var LO=t=>(t.addKeyword(kn.formatLimitDefinition),t);kn.default=LO});var i_=S((Do,s_)=>{"use strict";Object.defineProperty(Do,"__esModule",{value:!0});var Sn=t_(),qO=r_(),Ed=U(),n_=new Ed.Name("fullFormats"),UO=new Ed.Name("fastFormats"),Id=(t,e={keywords:!0})=>{if(Array.isArray(e))return o_(t,e,Sn.fullFormats,n_),t;let[r,n]=e.mode==="fast"?[Sn.fastFormats,UO]:[Sn.fullFormats,n_],o=e.formats||Sn.formatNames;return o_(t,o,r,n),e.keywords&&(0,qO.default)(t),t};Id.get=(t,e="full")=>{let n=(e==="fast"?Sn.fastFormats:Sn.fullFormats)[t];if(!n)throw new Error(`Unknown format "${t}"`);return n};function o_(t,e,r,n){var o,s;(o=(s=t.opts.code).formats)!==null&&o!==void 0||(s.formats=(0,Ed._)`require("ajv-formats/dist/formats").${n}`);for(let i of e)t.addFormat(i,r[i])}s_.exports=Do=Id;Object.defineProperty(Do,"__esModule",{value:!0});Do.default=Id});import{createRequire as tE}from"node:module";import*as Jd from"node:http";import{randomBytes as D_}from"node:crypto";import{spawn as Li}from"node:child_process";import{promises as rr}from"node:fs";import*as On from"node:path";import*as Hd from"node:os";import{randomBytes as R_}from"node:crypto";import{execFile as j_}from"node:child_process";import{promisify as N_}from"node:util";var C_=N_(j_),kt=process.env.OIOXO_CONTROL_PLANE?.replace(/\/$/,"")||"https://oioxo.com",Pn=process.env.OIOXO_HOME||On.join(Hd.homedir(),".oioxo"),Uo=On.join(Pn,"credentials.json");async function or(){try{let t=JSON.parse(await rr.readFile(Uo,"utf8"));return t?.token?t:null}catch{return null}}async function Z_(t){if(process.platform!=="win32")return;let e=process.env.USERNAME||process.env.USER;if(e)try{await C_("icacls",[t,"/inheritance:r","/grant:r",`${e}:F`],{windowsHide:!0})}catch{}}async function Kd(t){await rr.mkdir(Pn,{recursive:!0}),await rr.writeFile(Uo,JSON.stringify(t,null,2),{encoding:"utf8",mode:384}),await Z_(Uo)}async function Bd(){try{await rr.unlink(Uo)}catch{}}async function Di(){let t=await or();if(t?.device)return t.device;try{let r=await rr.readFile(On.join(Pn,"device"),"utf8");if(r.trim())return r.trim()}catch{}let e=R_(16).toString("base64url");return await rr.mkdir(Pn,{recursive:!0}),await rr.writeFile(On.join(Pn,"device"),e,"utf8"),e}function A_(){return`cli-${process.platform==="win32"?"windows":process.platform==="darwin"?"mac":"linux"}`}async function M_(){let t=await or(),e=await Di(),r={"content-type":"application/json","x-oioxo-client":A_(),"x-oioxo-device":e};return t?.token&&t.expiresAt>Date.now()&&(r.authorization=`Bearer ${t.token}`),r}async function Ie(t,e){try{let r=await fetch(`${kt}/api/usage/save`,{method:"POST",headers:await M_(),body:JSON.stringify(t==="report"?{action:t,savedTokens:e}:{action:t})});return r.ok?await r.json():null}catch{return null}}async function Nt(){let t=await or();return!!t&&t.expiresAt>Date.now()}var nr="https://oioxo.com/?upgrade=pro",En="Run `oioxo-mcp login` in a terminal to connect your OIOXO account.";async function Xd(){if(!await Nt())return{ok:!1,message:`OIOXO: sign in to use the coding agent. ${En}
|
|
49
|
+
Free accounts include a monthly allowance; OIOXO Pro is unlimited \u2192 ${nr}`};let t=await Ie("check");return t?t.optimize?{ok:!0,state:t}:t.tier==="anon"?{ok:!1,message:`Your OIOXO session expired. ${En}`}:{ok:!1,message:`You've used your monthly OIOXO allowance. OIOXO Pro is unlimited \u2192 ${nr}`}:{ok:!1,message:"OIOXO could not verify your plan (oioxo.com unreachable). The coding agent is paused until the connection returns."}}var L_=5*6e4,q_=`<!doctype html><html><head><meta charset="utf-8"><title>OIOXO CLI connected</title></head>
|
|
49
50
|
<body style="margin:0;display:flex;align-items:center;justify-content:center;min-height:100vh;background:#fafafa;font-family:ui-sans-serif,system-ui,Segoe UI,sans-serif">
|
|
50
51
|
<div style="background:#fff;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.08);padding:28px;max-width:380px">
|
|
51
52
|
<div style="display:flex;align-items:center;gap:8px;margin-bottom:18px">
|
|
@@ -53,61 +54,77 @@ Rules:
|
|
|
53
54
|
<span style="font-family:ui-monospace,monospace;font-size:13px;font-weight:500;color:#232327">OIOXO</span></div>
|
|
54
55
|
<h1 style="font-size:17px;margin:0 0 8px;color:#232327">OIOXO CLI connected</h1>
|
|
55
56
|
<p style="font-size:13.5px;line-height:1.6;color:#71717a;margin:0">You can close this tab and return to your terminal.</p>
|
|
56
|
-
</div></body></html>`;function
|
|
57
|
+
</div></body></html>`;function U_(t){let e=process.platform;e==="win32"?Li("explorer.exe",[t],{detached:!0,stdio:"ignore"}).unref():e==="darwin"?Li("open",[t],{detached:!0,stdio:"ignore"}).unref():Li("xdg-open",[t],{detached:!0,stdio:"ignore"}).unref()}async function Fo(){let t=D_(24).toString("base64url"),e=await Di(),r=new Promise((i,a)=>{let c=Jd.createServer((u,l)=>{let d=new URL(kt).origin;if(l.setHeader("Access-Control-Allow-Origin",d),l.setHeader("Access-Control-Allow-Methods","POST, OPTIONS"),l.setHeader("Access-Control-Allow-Headers","content-type"),l.setHeader("Access-Control-Allow-Private-Network","true"),u.method==="OPTIONS"){l.writeHead(204).end();return}if(u.method!=="POST"||u.url!=="/oioxo/token"){l.writeHead(404).end();return}let f="";u.on("data",m=>{f+=m,f.length>64e3&&u.destroy()}),u.on("end",()=>{try{let m=u.headers["content-type"]??"",p;if(m.includes("application/json"))p=JSON.parse(f);else{let h=new URLSearchParams(f);p={state:h.get("state")??void 0,token:h.get("token")??void 0,expiresInSeconds:h.get("expiresInSeconds")?Number(h.get("expiresInSeconds")):void 0}}if(p.state!==t||!p.token){l.writeHead(400,{"content-type":"text/html"}).end("<p>OIOXO: invalid or expired login request. Run <code>oioxo-mcp login</code> again.</p>"),c.close(),a(new Error("Invalid or expired login request"));return}l.writeHead(200,{"content-type":"text/html"}).end(q_),c.close(),i({token:p.token,expiresInSeconds:p.expiresInSeconds})}catch{l.writeHead(400).end(),c.close(),a(new Error("Failed to parse login response"))}}),u.on("error",()=>{c.close(),a(new Error("Connection lost during login"))})});c.on("error",a),c.listen(0,"127.0.0.1",()=>{let u=c.address(),l=typeof u=="object"&&u?u.port:0,d=`${kt}/cli-auth?port=${l}&state=${t}`;console.log(`
|
|
57
58
|
OIOXO \u2014 connect your account`),console.log(`Opening ${d}`),console.log(`If the browser does not open, paste the URL yourself.
|
|
58
|
-
`),process.env.OIOXO_NO_BROWSER!=="1"&&
|
|
59
|
-
`,"utf8")}async function
|
|
59
|
+
`),process.env.OIOXO_NO_BROWSER!=="1"&&U_(d)}),setTimeout(()=>{c.close(),a(new Error("timeout"))},L_).unref()}),{token:n,expiresInSeconds:o}=await r;await Kd({token:n,expiresAt:Date.now()+(o??720*3600)*1e3,device:e});let s=await Ie("check");if(s?.tier==="pro")console.log("Connected \u2014 OIOXO Pro: unlimited context engine. \u2713");else if(s?.tier==="free"){let i=s.remainingTokens?.toLocaleString()??"\u2014";console.log(`Connected \u2014 OIOXO Free: ${i} saved-tokens remaining this month. Pro is unlimited \u2192 https://oioxo.com/?upgrade=pro \u2713`)}else console.log("Connected. \u2713")}import{promises as Ze}from"node:fs";import*as fe from"node:path";import*as Vi from"node:os";import{spawnSync as F_}from"node:child_process";var qi=t=>{try{let e=process.platform==="win32"?"where":"which";return F_(e,[t],{stdio:"ignore",timeout:4e3}).status===0}catch{return!1}},In=async t=>{try{return(await Ze.stat(t)).isDirectory()}catch{return!1}},Gd=[{id:"claude-code",display:"Claude Code",kind:"json",key:"mcpServers",file:t=>fe.join(t,".mcp.json"),detect:async()=>qi("claude")},{id:"vscode-copilot",display:"VS Code / GitHub Copilot",kind:"json",key:"servers",file:t=>fe.join(t,".vscode","mcp.json"),detect:async t=>await In(fe.join(t,".vscode"))||qi("code")},{id:"cursor",display:"Cursor",kind:"json",key:"mcpServers",file:t=>fe.join(t,".cursor","mcp.json"),detect:async t=>await In(fe.join(t,".cursor"))||qi("cursor")},{id:"windsurf",display:"Windsurf",kind:"json",key:"mcpServers",global:!0,file:(t,e)=>fe.join(e,".codeium","windsurf","mcp_config.json"),detect:async(t,e)=>In(fe.join(e,".codeium","windsurf"))},{id:"gemini-cli",display:"Gemini CLI",kind:"json",key:"mcpServers",global:!0,file:(t,e)=>fe.join(e,".gemini","settings.json"),detect:async(t,e)=>In(fe.join(e,".gemini"))},{id:"codex",display:"Codex CLI",kind:"toml",global:!0,file:(t,e)=>fe.join(e,".codex","config.toml"),detect:async(t,e)=>In(fe.join(e,".codex"))}];function V_(t){if(t){let[e,...r]=t.split(" ");return{command:e,args:[...r,"serve"]}}return{command:"npx",args:["-y","oioxo-mcp","serve"]}}async function H_(t,e,r){let n={};try{n=JSON.parse(await Ze.readFile(t,"utf8"))}catch{}let o=n[e]??{};o.oioxo=r,n[e]=o,await Ze.mkdir(fe.dirname(t),{recursive:!0}),await Ze.writeFile(t,JSON.stringify(n,null,2)+`
|
|
60
|
+
`,"utf8")}async function K_(t,e){let r="";try{r=await Ze.readFile(t,"utf8")}catch{}if(/^\s*\[mcp_servers\.oioxo\]/m.test(r))return!1;let n=`
|
|
60
61
|
[mcp_servers.oioxo]
|
|
61
62
|
command = "${e.command}"
|
|
62
63
|
args = [${e.args.map(o=>`"${o}"`).join(", ")}]
|
|
63
|
-
`;return await
|
|
64
|
+
`;return await Ze.mkdir(fe.dirname(t),{recursive:!0}),await Ze.writeFile(t,r+n,"utf8"),!0}var Wd="<!-- oioxo:start -->",Fi="<!-- oioxo:end -->",Ui=`${Wd}
|
|
64
65
|
## OIOXO context engine (use it FIRST)
|
|
65
66
|
This project is wired to the OIOXO MCP server. BEFORE reading, searching or listing files yourself, ALWAYS call the \`get_context\` tool from the \`oioxo\` MCP server with the task as the query \u2014 it returns the minimal relevant code slice (10-20x fewer tokens than reading files). Use \`get_impact\` before refactors, \`get_skeleton\` to learn an API cheaply, and \`remember\` to persist durable project facts.
|
|
66
|
-
${
|
|
67
|
-
|
|
68
|
-
`+
|
|
69
|
-
`:
|
|
70
|
-
`;try{await
|
|
71
|
-
`,"utf8"),!0)}async function
|
|
72
|
-
OIOXO \u2014 wiring the context engine into your agents`);for(let s of
|
|
73
|
-
Restart your agent (or reload the window) and it will call OIOXO before reading files.`),console.log("Not connected yet? Run `oioxo-mcp login`.")}import{writeFile as
|
|
67
|
+
${Fi}`;async function B_(t){let e="";try{e=await Ze.readFile(t,"utf8")}catch{}let r=e.indexOf(Wd),n=e.indexOf(Fi),o;r>=0&&n>r?o=e.slice(0,r)+Ui+e.slice(n+Fi.length):o=e?e.trimEnd()+`
|
|
68
|
+
|
|
69
|
+
`+Ui+`
|
|
70
|
+
`:Ui+`
|
|
71
|
+
`;try{await Ze.mkdir(fe.dirname(t),{recursive:!0}),await Ze.writeFile(t,o,"utf8")}catch(s){let i=s instanceof Error?s.message:String(s);throw new Error(`OIOXO: could not write ${t} (${i}). Check that the directory is writable.`)}}async function X_(t){let e=[fe.join(t,".github","copilot-instructions.md"),fe.join(t,"CLAUDE.md"),fe.join(t,".cursor","rules","oioxo.mdc")];for(let r of e)await B_(r);return e}var J_="OIOXO reminder",G_=`node -e "console.log('OIOXO reminder: before reading or searching project files for a code task, call the oioxo MCP get_context tool with the task as the query - it returns the minimal relevant slice at about 90 percent fewer context tokens. Use get_skeleton to learn an API cheaply and get_impact before refactors.')"`;async function W_(t){let e=fe.join(t,".claude","settings.json"),r={};try{r=JSON.parse(await Ze.readFile(e,"utf8"))}catch{}let n=r.hooks??{},o=Array.isArray(n.UserPromptSubmit)?n.UserPromptSubmit:[];return o.some(i=>Array.isArray(i?.hooks)&&i.hooks.some(a=>typeof a?.command=="string"&&a.command.includes(J_)))?!1:(o.push({hooks:[{type:"command",command:G_}]}),n.UserPromptSubmit=o,r.hooks=n,await Ze.mkdir(fe.dirname(e),{recursive:!0}),await Ze.writeFile(e,JSON.stringify(r,null,2)+`
|
|
72
|
+
`,"utf8"),!0)}async function Yd(t,e={}){let r=e.home??Vi.homedir(),n=V_(e.command),o=0;console.log(`
|
|
73
|
+
OIOXO \u2014 wiring the context engine into your agents`);for(let s of Gd){if(!(s.global?await s.detect(t,r):e.all||await s.detect(t,r))){console.log(` \xB7 ${s.display}: not detected${s.global?"":" (use --all to force)"}`);continue}let a=s.file(t,r);if(s.kind==="toml"){let c=await K_(a,n);console.log(c?` \u2713 ${s.display}: ${a}`:` \u2713 ${s.display}: already configured (${a})`)}else await H_(a,s.key,n),console.log(` \u2713 ${s.display}: ${s.global?a:fe.relative(t,a)}`);o++}if(!o){console.log(" No agents detected. Run with --all to write the project configs anyway.");return}await X_(t),console.log(" \u2713 Agent instructions: .github/copilot-instructions.md, CLAUDE.md, .cursor/rules/oioxo.mdc"),await W_(t)&&console.log(" \u2713 Claude Code hook: .claude/settings.json (per-prompt OIOXO reminder)"),console.log(`
|
|
74
|
+
Restart your agent (or reload the window) and it will call OIOXO before reading files.`),console.log("Not connected yet? Run `oioxo-mcp login`.")}async function Hi(t,e=Vi.homedir()){let r=[];for(let n of Gd){let o=!1;try{await Ze.access(n.file(t,e)),o=!0}catch{}r.push({id:n.id,display:n.display,detected:await n.detect(t,e),configured:o})}return r}import{writeFile as Mv,mkdir as Dv,readFile as Lv}from"node:fs/promises";import Cn from"node:path";import{createInterface as fp}from"node:readline/promises";import{spawn as xv}from"node:child_process";import{mkdtemp as wv,writeFile as bv,mkdir as $v,readFile as Bi,rm as kv}from"node:fs/promises";import{tmpdir as Sv}from"node:os";import Zt from"node:path";import{promises as Ki}from"node:fs";import*as Rn from"node:path";var Y_=1500,Q_=256*1024,ev=new Set([".ts",".tsx",".js",".jsx",".mjs",".cjs",".mts",".cts",".py",".go",".rs",".java",".rb",".php",".c",".h",".cpp",".cs",".swift",".kt",".vue",".svelte",".css",".scss",".html",".json",".md",".yml",".yaml",".sql",".sh"]),tv=new Set(["node_modules",".git","dist","build","out",".next","coverage","vendor",".oioxo",".vscode",".cursor",".idea","__pycache__",".venv","venv"]);function rv(t){let e=Math.min(t.length,1024);for(let r=0;r<e;r++)if(t.charCodeAt(r)===0)return!0;return!1}var nv=t=>/\.min\.[a-z]+$/.test(t);async function ov(t,e={}){let r=e.maxFiles??Y_,n=[],o=[""];for(;o.length&&n.length<r;){let s=o.shift(),i;try{i=await Ki.readdir(Rn.join(t,s),{withFileTypes:!0})}catch{continue}i.sort((a,c)=>a.name.localeCompare(c.name));for(let a of i){if(n.length>=r)break;let c=s?`${s}/${a.name}`:a.name;a.isDirectory()?!tv.has(a.name)&&!a.name.startsWith(".")&&o.push(c):a.isFile()&&ev.has(Rn.extname(a.name).toLowerCase())&&!nv(a.name)&&n.push(c)}}return n}async function sv(t,e){let r=Rn.join(t,e);try{if((await Ki.stat(r)).size>Q_)return null;let o=await Ki.readFile(r,"utf8");return!o||rv(o)?null:{path:e.replace(/\\/g,"/"),content:o}}catch{return null}}async function Ur(t,e={}){let r=await ov(t,e),n=[];for(let o of r){let s=await sv(t,o);s&&n.push(s)}return n}function Qd(t){let e=t.toLowerCase().match(/[a-z0-9_]+/g)??[],r=[];for(let n of e){r.push(n);for(let o of n.split("_"))o&&o!==n&&r.push(o)}for(let n of t.match(/[A-Za-z][a-z0-9]+|[A-Z]+(?![a-z])/g)??[]){let o=n.toLowerCase();o.length>1&&r.push(o)}return r.filter(n=>n.length>1&&n.length<40)}var Ct=class{chunks=[];df=new Map;avgLen=0;_status={files:0,chunks:0};status(){return this._status}build(e){let r=[];for(let s of e){let i=s.content.split(`
|
|
74
75
|
`);for(let a=0;a<i.length;a+=48){let u=i.slice(a,a+60).join(`
|
|
75
|
-
`).slice(0,4e3);if(u.trim()){let l=
|
|
76
|
-
`);for(let a=0;a<s.length&&o.length<r;a++){let c=s[a];if(!(!c.trim()||c.trim().startsWith("//")||c.trim().startsWith("#")||c.trim().startsWith("*")))for(let{re:u,kind:l}of n.patterns){let d=u.exec(c),
|
|
76
|
+
`).slice(0,4e3);if(u.trim()){let l=Qd(u);if(l.length){let d=new Map;for(let f of l)d.set(f,(d.get(f)??0)+1);r.push({path:s.path,startLine:a+1,endLine:Math.min(a+60,i.length),text:u,tf:d,len:l.length})}}if(a+60>=i.length)break}}let n=new Map,o=0;for(let s of r){o+=s.len;for(let i of s.tf.keys())n.set(i,(n.get(i)??0)+1)}return this.chunks=r,this.df=n,this.avgLen=r.length?o/r.length:0,this._status={files:e.length,chunks:r.length},this._status}retrieve(e,r=6){if(!this.chunks.length)return[];let n=Qd(e);if(!n.length)return[];let o=this.chunks.length,s=1.5,i=.75,a=this.chunks.map(c=>{let u=0;for(let l of n){let d=c.tf.get(l);if(!d)continue;let f=this.df.get(l)??0,m=Math.log(1+(o-f+.5)/(f+.5)),p=d+s*(1-i+i*(c.len/(this.avgLen||1)));u+=m*(d*(s+1)/p)}return{c,score:u}}).filter(c=>c.score>0);return a.sort((c,u)=>u.score-c.score),a.slice(0,r).map(({c,score:u})=>({path:c.path,startLine:c.startLine,endLine:c.endLine,text:c.text,score:u}))}};var iv=/\.(ts|tsx|mts|cts|js|jsx|mjs|cjs)$/;function av(t){let e=[],r=[/import\s+[^'"]*?from\s*['"]([^'"]+)['"]/g,/import\s*['"]([^'"]+)['"]/g,/import\s*\(\s*['"]([^'"]+)['"]\s*\)/g,/require\s*\(\s*['"]([^'"]+)['"]\s*\)/g,/export\s+[^'"]*?from\s*['"]([^'"]+)['"]/g];for(let n of r){let o;for(;o=n.exec(t);)e.push(o[1])}return e}function cv(t){let e=t.split("/"),r=[];for(let n of e)n===""||n==="."||(n===".."?r.pop():r.push(n));return r.join("/")}var uv=t=>t.split("/").slice(0,-1).join("/");function lv(t,e,r){if(!t.startsWith("."))return null;let n=cv(uv(e)+"/"+t),o=["",".ts",".tsx",".js",".jsx",".mts",".cts",".mjs",".cjs"];for(let s of o)if(r.has(n+s))return n+s;for(let s of o.slice(1))if(r.has(n+"/index"+s))return n+"/index"+s;return null}function Vo(t){let e=t.filter(s=>iv.test(s.path)),r=new Set(e.map(s=>s.path)),n=new Map,o=new Map;for(let s of e){let i=[];for(let a of av(s.content)){let c=lv(a,s.path,r);c&&c!==s.path&&!i.includes(c)&&i.push(c)}n.set(s.path,i);for(let a of i){let c=o.get(a)??[];c.includes(s.path)||c.push(s.path),o.set(a,c)}}return{deps:n,dependents:o}}function ep(t,e,r={}){let n=r.hops??2,o=r.max??12,s=new Set(e),i=[...e];for(let a=0;a<n&&s.size<o;a++){let c=[];for(let u of i){for(let l of t.deps.get(u)??[])if(!s.has(l)&&(s.add(l),c.push(l),s.size>=o))break;if(r.includeDependents&&a===0){for(let l of t.dependents.get(u)??[])if(!s.has(l)&&(s.add(l),c.push(l),s.size>=o))break}if(s.size>=o)break}i=c}return[...e,...Array.from(s).filter(a=>!e.includes(a))].slice(0,o)}var dv={test:/\.(ts|tsx|mts|cts|js|jsx|mjs|cjs)$/,patterns:[{re:/^\s*(?:export\s+)?(?:default\s+)?(?:async\s+)?function\s*\*?\s*(?<name>[A-Za-z_$][\w$]*)\s*(?:<[^>]*>)?\([^)]*\)?[^{;]*/,kind:"function"},{re:/^\s*(?:export\s+)?(?:default\s+)?(?:abstract\s+)?class\s+(?<name>[A-Za-z_$][\w$]*)[^{]*/,kind:"class"},{re:/^\s*(?:export\s+)?interface\s+(?<name>[A-Za-z_$][\w$]*)[^{]*/,kind:"interface"},{re:/^\s*(?:export\s+)?type\s+(?<name>[A-Za-z_$][\w$]*)\s*=?.*/,kind:"type"},{re:/^\s*(?:export\s+)?enum\s+(?<name>[A-Za-z_$][\w$]*).*/,kind:"enum"},{re:/^\s*export\s+(?:const|let|var)\s+(?<name>[A-Za-z_$][\w$]*)\s*(?::[^=]+)?=?.*/,kind:"const"}]},pv={test:/\.py$/,patterns:[{re:/^\s*(?:async\s+)?def\s+(?<name>\w+)\s*\([^)]*\)?[^:]*/,kind:"function"},{re:/^\s*class\s+(?<name>\w+).*/,kind:"class"}]},fv={test:/\.go$/,patterns:[{re:/^\s*func\s+(?:\([^)]+\)\s*)?(?<name>\w+)\s*\([^)]*\)?[^{]*/,kind:"func"},{re:/^\s*type\s+(?<name>\w+)\s+(?:struct|interface).*/,kind:"type"}]},mv={test:/\.rs$/,patterns:[{re:/^\s*(?:pub\s+)?(?:async\s+)?fn\s+(?<name>\w+)\s*(?:<[^>]*>)?\([^)]*\)?[^{]*/,kind:"fn"},{re:/^\s*(?:pub\s+)?(?:struct|enum|trait)\s+(?<name>\w+).*/,kind:"type"},{re:/^\s*impl(?:<[^>]*>)?\s+(?<name>[\w:]+).*/,kind:"impl"}]},hv={test:/\.(java|cs|kt|swift|c|h|cpp|php|rb)$/,patterns:[{re:/^\s*(?:public|private|protected|internal|static|final|abstract|override|\s)*\s*(?:class|interface|struct|enum|trait|module)\s+(?<name>\w+).*/,kind:"class"},{re:/^\s*(?:public|private|protected|internal|static|final|virtual|override|async|func|def|\s)+[\w<>\[\],\s*&]*?\b(?<name>\w+)\s*\([^)]*\)?\s*[^{;]*/,kind:"method"}]},gv=[dv,pv,fv,mv,hv],yv=t=>t.replace(/\s+/g," ").trim().slice(0,240);function _v(t,e,r=80){let n=gv.find(a=>a.test.test(t));if(!n)return[];let o=[],s=e.split(`
|
|
77
|
+
`);for(let a=0;a<s.length&&o.length<r;a++){let c=s[a];if(!(!c.trim()||c.trim().startsWith("//")||c.trim().startsWith("#")||c.trim().startsWith("*")))for(let{re:u,kind:l}of n.patterns){let d=u.exec(c),f=d?.groups?.name;if(d&&f){let m=c;if(m.includes("(")&&!m.includes(")"))for(let h=a+1;h<Math.min(a+4,s.length)&&(m+=" "+s[h],!s[h].includes(")"));h++);let p=m.indexOf("{");p>0&&(m=m.slice(0,p)),o.push({file:t,name:f,kind:l,signature:yv(m),line:a+1});break}}}let i=new Set;return o.filter(a=>{let c=`${a.name}:${a.line}`;return i.has(c)?!1:(i.add(c),!0)})}function Ho(t,e){let r=_v(t,e);if(!r.length){let n=e.split(`
|
|
77
78
|
`).slice(0,12).join(`
|
|
78
79
|
`);return`// ${t} (excerpt)
|
|
79
80
|
${n}`}return`// ${t} \u2014 API surface (bodies omitted)
|
|
80
81
|
${r.map(n=>`${n.kind} ${n.signature} [L${n.line}]`).join(`
|
|
81
|
-
`)}`}var
|
|
82
|
+
`)}`}var vv=4;function Ko(t,e,r,n={}){let o=n.topChunks??6,s=n.maxFiles??10,i=n.maxChars??24e3,a=new Map(e.map(v=>[v.path,v])),c=e.reduce((v,x)=>v+x.content.length,0);if(c>0&&c<=i*.8)return{text:e.map(x=>`// ${x.path}
|
|
82
83
|
${x.content}`).join(`
|
|
83
84
|
|
|
84
|
-
`),files:e.map(x=>x.path),savedTokens:0,chunks:[]};let u=r.retrieve(t,o),l=[];for(let v of u)l.includes(v.path)||l.push(v.path);let d=l.slice(0,s);try{let v=
|
|
85
|
-
`);x.sort((ye,
|
|
86
|
-
${T.content}`);else for(let ye of he)
|
|
85
|
+
`),files:e.map(x=>x.path),savedTokens:0,chunks:[]};let u=r.retrieve(t,o),l=[];for(let v of u)l.includes(v.path)||l.push(v.path);let d=l.slice(0,s);try{let v=Vo(e);d=ep(v,l.slice(0,3),{hops:2,includeDependents:!0,max:s});for(let x of l)!d.includes(x)&&d.length<s&&d.push(x)}catch{}let f=[],m=new Set(l),p=new Map;for(let v of u){let x=p.get(v.path)??[];x.push({start:v.startLine,end:v.endLine}),p.set(v.path,x)}for(let[v,x]of p){let T=a.get(v);if(!T)continue;let N=T.content.split(`
|
|
86
|
+
`);x.sort((ye,Ke)=>ye.start-Ke.start);let he=[];for(let ye of x){let Ke=he[he.length-1];Ke&&ye.start<=Ke.end+1?Ke.end=Math.max(Ke.end,ye.end):he.push({...ye})}if(he.reduce((ye,Ke)=>ye+(Ke.end-Ke.start+1),0)>=N.length*.7)f.push(`// ${v} (full)
|
|
87
|
+
${T.content}`);else for(let ye of he)f.push(`// ${v}:${ye.start}-${ye.end}
|
|
87
88
|
${N.slice(ye.start-1,ye.end).join(`
|
|
88
|
-
`)}`)}for(let v of d){if(
|
|
89
|
+
`)}`)}for(let v of d){if(m.has(v))continue;let x=a.get(v);if(!x)continue;let T=Ho(x.path,x.content);T.length<x.content.length*.8&&f.push(T)}let h=f.join(`
|
|
89
90
|
|
|
90
91
|
`);h.length>i&&(h=h.slice(0,i)+`
|
|
91
|
-
// \u2026 capsule truncated`);let g=0;for(let v of d.length?d:l)g+=a.get(v)?.content.length??0;let
|
|
92
|
+
// \u2026 capsule truncated`);let g=0;for(let v of d.length?d:l)g+=a.get(v)?.content.length??0;let w=Math.max(0,Math.round((g-h.length)/vv));return{text:h,files:d.length?d:l,savedTokens:w,chunks:u}}function zv(t,e,r=18e4){return new Promise(n=>{let o=xv(t,{cwd:e,shell:!0}),s="",i=c=>{s+=c.toString(),s.length>2e5&&(s=s.slice(-2e5))};o.stdout.on("data",i),o.stderr.on("data",i);let a=setTimeout(()=>{try{o.kill("SIGKILL")}catch{}n({code:124,out:s+`
|
|
92
93
|
[timed out]`})},r);o.on("close",c=>{clearTimeout(a),n({code:c??1,out:s})}),o.on("error",c=>{clearTimeout(a),n({code:1,out:s+`
|
|
93
|
-
`+String(c)})})})}function
|
|
94
|
+
`+String(c)})})})}function Tv(t,e=40){let r=t.split(`
|
|
94
95
|
`),n=/\b(error|fail(ed|ing)?|exception|expected|received|assert|cannot find|is not|undefined|TypeError|SyntaxError|TS\d{3,})\b/i,o=[];for(let s=0;s<r.length&&o.length<e;s++)if(n.test(r[s]))for(let i=Math.max(0,s-1);i<=Math.min(r.length-1,s+1);i++)o.includes(r[i])||o.push(r[i]);return(o.length?o:r.slice(-e)).join(`
|
|
95
|
-
`).slice(0,3e3)}async function
|
|
96
|
-
\xB7 ${
|
|
96
|
+
`).slice(0,3e3)}var Pv=new RegExp("(^|/)(package\\.json|package-lock\\.json|pnpm-lock\\.yaml|yarn\\.lock|\\.npmrc|\\.yarnrc|\\.yarnrc\\.yml|Makefile|[^/]+\\.config\\.(c|m)?(j|t)s|(jest|vitest|vite|playwright|cypress|ava|karma|webpack|rollup|babel|eslint|prettier|tailwind|postcss|next|nuxt|svelte|astro)\\.config\\.(c|m)?(j|t)s|\\.(babelrc|mocharc|eslintrc|prettierrc|stylelintrc|swcrc)\\.(c|m)?(j|t)s)$","i");async function tp(t,e,r={}){let n=[],o=r.containRoot?Zt.resolve(r.containRoot):null;for(let s of e){let i=Zt.resolve(t,s.path);if(o&&i!==o&&!i.startsWith(o+Zt.sep)){n.push(s.path);continue}if(!r.seed&&Pv.test(s.path.replace(/\\/g,"/"))){n.push(s.path);continue}await $v(Zt.dirname(i),{recursive:!0}),await bv(i,s.content,"utf8")}return n}async function Ov(t){try{let e=JSON.parse(await Bi(Zt.join(t,"package.json"),"utf8"));if(e.scripts?.test&&!/no test specified/i.test(e.scripts.test))return"npm test";if(e.scripts?.typecheck)return"npm run typecheck"}catch{}try{return await Bi(Zt.join(t,"tsconfig.json"),"utf8"),await Bi(Zt.join(t,"node_modules",".bin",process.platform==="win32"?"tsc.cmd":"tsc"),"utf8"),"npm exec --no -- tsc --noEmit"}catch{}return""}async function rp(t){let e=t.onNote??(()=>{}),r=Math.max(1,t.maxIters??4),n=t.verifyCmd??await Ov(t.root);e("\xB7 reading the repo + building the OIOXO context capsule\u2026");let o=await Ur(t.root),s=new Ct;s.build(o);let i=Ko(t.task,o,s,{maxChars:24e3});e(`\xB7 capsule: ${i.files.length} files, ~${i.savedTokens.toLocaleString()} tokens saved vs reading them whole`),e(n?`\xB7 verify command: ${n}`:"\xB7 no test/typecheck found \u2014 running a single pass without a verify oracle");let a=await wv(Zt.join(Sv(),"oioxo-code-"));try{await tp(a,o.map(f=>({path:f.path,content:f.content})),{containRoot:a,seed:!0});let c={edits:[],out:"",ok:!1},u,l=!n,d=!1;for(let f=0;f<r;f++){e(`
|
|
97
|
+
\xB7 ${f===0?"drafting":`repair ${f}`} with ${t.coder.label}\u2026`);let m;try{m=await t.coder.generate({task:t.task,grounding:i.text,error:u,attempt:f})}catch(v){let x=String(v.message||v);return{ok:!1,edits:c.edits,iters:f,savedTokens:i.savedTokens,lastOutput:x,coderError:x}}if(!m.length){if(e("\xB7 the coder proposed no changes."),f===0)break;break}e(`\xB7 proposed ${m.length} file change${m.length===1?"":"s"}: ${m.map(v=>v.path).join(", ")}`);let p=await tp(a,m,{containRoot:a});p.length&&e(`\xB7 \u26A0 refused ${p.length} unsafe edit(s) (path escape or executable manifest): ${p.join(", ")}`);let h=m.filter(v=>!p.includes(v.path));if(c.edits=Ev(c.edits,h),!n){c={edits:c.edits,out:"\u2713 (no verify oracle configured)",ok:!0};break}if(d||(d=!0,l=t.onConfirmRun?await t.onConfirmRun(n).catch(()=>!1):!0,l||e("\xB7 skipping verification (not approved) \u2014 the diff is shown unverified.")),!l){c={edits:c.edits,out:"(verification skipped \u2014 not approved)",ok:!1};break}e("\xB7 verifying on your machine\u2026");let{code:g,out:w}=await zv(n,a);if(g===0){e("\xB7 \u2713 verified green."),c={edits:c.edits,out:w,ok:!0};break}u=Tv(w),e(`\xB7 \u2717 verify failed (exit ${g}) \u2014 feeding the error back.`),c={edits:c.edits,out:w,ok:!1}}return{ok:c.ok,edits:c.edits,iters:r,savedTokens:i.savedTokens,lastOutput:c.out}}finally{await kv(a,{recursive:!0,force:!0}).catch(()=>{})}}function Ev(t,e){let r=new Map(t.map(n=>[n.path,n.content]));for(let n of e)r.set(n.path,n.content);return[...r].map(([n,o])=>({path:n,content:o}))}Gi();import{promises as Bo}from"node:fs";import*as ta from"node:path";import*as up from"node:os";var lp=process.env.OIOXO_HOME||ta.join(up.homedir(),".oioxo"),ea=ta.join(lp,"config.json"),sr=["provider","model","baseUrl","apiKey"],Av=new Set(["apiKey"]);async function ir(){try{let t=JSON.parse(await Bo.readFile(ea,"utf8"));return t&&typeof t=="object"?t:{}}catch{return{}}}async function Xo(t){await Bo.mkdir(lp,{recursive:!0}),await Bo.writeFile(ea,JSON.stringify(t,null,2),{mode:384});try{await Bo.chmod(ea,384)}catch{}}function Nn(t,e){return Av.has(t)?e.length<=8?"\u2022\u2022\u2022\u2022":e.slice(0,4)+"\u2026"+e.slice(-2):e}async function dp(t){let[e,r,...n]=t,o=await ir();if(!e||e==="list"){let s=sr.filter(i=>o[i]!=null);if(s.length===0){console.log("No OIOXO config set. Try: oioxo config set provider anthropic");return}console.log(`
|
|
98
|
+
OIOXO config (~/.oioxo/config.json):`);for(let i of s)console.log(` ${i.padEnd(10)} ${Nn(i,String(o[i]))}`);return}if(e==="get"){if(!Qi(r))return jn(`Unknown key "${r}". Known: ${sr.join(", ")}`);let s=o[r];console.log(s==null?"":Nn(r,String(s)));return}if(e==="set"){if(!Qi(r))return jn(`Unknown key "${r}". Known: ${sr.join(", ")}`);let s=n.join(" ");if(!s)return jn(`Usage: oioxo config set ${r} <value>`);o[r]=s,await Xo(o),console.log(`Set ${r} = ${Nn(r,s)}`);return}if(e==="unset"){if(!Qi(r))return jn(`Unknown key "${r}". Known: ${sr.join(", ")}`);delete o[r],await Xo(o),console.log(`Unset ${r}`);return}jn(`Unknown config command "${e}". Use: set | get | list | unset`)}function Qi(t){return!!t&&sr.includes(t)}function jn(t){console.error(`oioxo config: ${t}`),process.exitCode=1}function qv(t){let e={task:"",yes:!1,local:!1},r=[];for(let n=0;n<t.length;n++){let o=t[n];o==="--yes"||o==="-y"?e.yes=!0:o==="--local"?e.local=!0:o==="--verify"?e.verify=t[++n]:o==="--max-iters"?e.maxIters=Number(t[++n])||void 0:r.push(o)}return e.task=r.join(" ").trim(),e}function Uv(t,e){if(!t)return{add:e.split(`
|
|
97
99
|
`).length,del:0,isNew:!0};let r=new Set(t.split(`
|
|
98
100
|
`)),n=new Set(e.split(`
|
|
99
|
-
`)),o=0,s=0;for(let i of n)r.has(i)||o++;for(let i of r)n.has(i)||s++;return{add:o,del:s,isNew:!1}}async function
|
|
100
|
-
`+n.
|
|
101
|
-
|
|
102
|
-
|
|
101
|
+
`)),o=0,s=0;for(let i of n)r.has(i)||o++;for(let i of r)n.has(i)||s++;return{add:o,del:s,isNew:!1}}async function Fv(t,e){try{return await Lv(Cn.join(t,e),"utf8")}catch{return""}}async function mp(t,e){let r=qv(e);if(!r.task){console.log('Usage: oioxo code "<what you want done>" [--verify "<cmd>"] [--yes] [--max-iters N]');return}if(!await Nt()&&process.stdin.isTTY&&process.stdout.isTTY){let u=fp({input:process.stdin,output:process.stdout}),l=(await u.question("OIOXO: sign in to run the coding agent? Opens your browser. [Y/n] ")).trim().toLowerCase();if(u.close(),l===""||l==="y"||l==="yes")try{await Fo()}catch{}}let n=await Xd();if(!n.ok){console.error(`
|
|
102
|
+
`+n.message),process.exitCode=1;return}let o=await ir(),s=cp({local:r.local,config:o,onNote:u=>console.log(u)});if("error"in s){console.error(`
|
|
103
|
+
`+s.error),process.exitCode=1;return}let i=s.coder;console.log(`
|
|
104
|
+
OIOXO coding agent \xB7 writer: ${i.label}`);let a=await rp({root:t,task:r.task,coder:i,verifyCmd:r.verify,maxIters:r.maxIters,onNote:u=>console.log(u),onConfirmRun:async u=>r.yes?!0:pp(`
|
|
105
|
+
Run the verify command on your machine? ${u}`)});if(a.coderError){console.error(`
|
|
106
|
+
`+a.coderError),process.exitCode=1;return}if(!a.edits.length){console.log(`
|
|
103
107
|
No changes were produced. Try rephrasing the task or pointing it at a specific file.`);return}console.log(`
|
|
104
|
-
${
|
|
108
|
+
${a.ok?"\u2713 verified green":"\u26A0 best attempt (did not fully verify)"} \u2014 ${a.edits.length} file(s):`);let c=new Map;for(let u of a.edits){let l=await Fv(t,u.path);c.set(u.path,l);let d=Uv(l,u.content);console.log(` ${d.isNew?"new ":" "}${u.path} ${d.isNew?`(+${d.add})`:`+${d.add} -${d.del}`}`)}if(a.ok||console.log(`
|
|
105
109
|
(verify did not pass \u2014 review carefully before applying)`),console.log(`
|
|
106
|
-
OIOXO saved ~${
|
|
107
|
-
Apply these changes to your files?`)){console.log("Discarded. Nothing was written.");return}await
|
|
108
|
-
\u2713 applied ${s.edits.length} file(s).${s.ok?"":" (unverified \u2014 run your tests)"}`),await ft("report",s.savedTokens).catch(()=>{})}async function lv(t,e){for(let r of e){let n=Di.join(t,r.path);await ov(Di.dirname(n),{recursive:!0}),await nv(n,r.content,"utf8")}}async function dv(t){if(!process.stdin.isTTY)return console.log(`${t} (no TTY \u2014 pass --yes to apply non-interactively)`),!1;let e=iv({input:process.stdin,output:process.stdout});try{let r=(await e.question(`${t} [y/N] `)).trim().toLowerCase();return r==="y"||r==="yes"}finally{e.close()}}var gr={};jo(gr,{BRAND:()=>Av,DIRTY:()=>er,EMPTY_PATH:()=>hv,INVALID:()=>C,NEVER:()=>xx,OK:()=>Te,ParseStatus:()=>be,Schema:()=>q,ZodAny:()=>Zt,ZodArray:()=>Tt,ZodBigInt:()=>rr,ZodBoolean:()=>nr,ZodBranded:()=>En,ZodCatch:()=>mr,ZodDate:()=>or,ZodDefault:()=>fr,ZodDiscriminatedUnion:()=>Do,ZodEffects:()=>Ge,ZodEnum:()=>dr,ZodError:()=>Ce,ZodFirstPartyTypeKind:()=>$,ZodFunction:()=>qo,ZodIntersection:()=>cr,ZodIssueCode:()=>w,ZodLazy:()=>ur,ZodLiteral:()=>lr,ZodMap:()=>Fr,ZodNaN:()=>Hr,ZodNativeEnum:()=>pr,ZodNever:()=>ot,ZodNull:()=>ir,ZodNullable:()=>gt,ZodNumber:()=>tr,ZodObject:()=>Ae,ZodOptional:()=>Ze,ZodParsedType:()=>z,ZodPipeline:()=>On,ZodPromise:()=>At,ZodReadonly:()=>hr,ZodRecord:()=>Lo,ZodSchema:()=>q,ZodSet:()=>Vr,ZodString:()=>Ct,ZodSymbol:()=>qr,ZodTransformer:()=>Ge,ZodTuple:()=>ht,ZodType:()=>q,ZodUndefined:()=>sr,ZodUnion:()=>ar,ZodUnknown:()=>zt,ZodVoid:()=>Ur,addIssueToContext:()=>k,any:()=>Bv,array:()=>Gv,bigint:()=>qv,boolean:()=>rp,coerce:()=>vx,custom:()=>Qd,date:()=>Uv,datetimeRegex:()=>Wd,defaultErrorMap:()=>kt,discriminatedUnion:()=>Qv,effect:()=>dx,enum:()=>cx,function:()=>sx,getErrorMap:()=>Mr,getParsedType:()=>mt,instanceof:()=>Dv,intersection:()=>ex,isAborted:()=>Ao,isAsync:()=>Dr,isDirty:()=>Mo,isValid:()=>Nt,late:()=>Mv,lazy:()=>ix,literal:()=>ax,makeIssue:()=>Pn,map:()=>nx,nan:()=>Lv,nativeEnum:()=>ux,never:()=>Jv,null:()=>Hv,nullable:()=>fx,number:()=>tp,object:()=>Fi,objectUtil:()=>Li,oboolean:()=>_x,onumber:()=>yx,optional:()=>px,ostring:()=>gx,pipeline:()=>hx,preprocess:()=>mx,promise:()=>lx,quotelessJson:()=>pv,record:()=>rx,set:()=>ox,setErrorMap:()=>mv,strictObject:()=>Wv,string:()=>ep,symbol:()=>Fv,transformer:()=>dx,tuple:()=>tx,undefined:()=>Vv,union:()=>Yv,unknown:()=>Kv,util:()=>H,void:()=>Xv});var H;(function(t){t.assertEqual=o=>{};function e(o){}t.assertIs=e;function r(o){throw new Error}t.assertNever=r,t.arrayToEnum=o=>{let s={};for(let i of o)s[i]=i;return s},t.getValidEnumValues=o=>{let s=t.objectKeys(o).filter(a=>typeof o[o[a]]!="number"),i={};for(let a of s)i[a]=o[a];return t.objectValues(i)},t.objectValues=o=>t.objectKeys(o).map(function(s){return o[s]}),t.objectKeys=typeof Object.keys=="function"?o=>Object.keys(o):o=>{let s=[];for(let i in o)Object.prototype.hasOwnProperty.call(o,i)&&s.push(i);return s},t.find=(o,s)=>{for(let i of o)if(s(i))return i},t.isInteger=typeof Number.isInteger=="function"?o=>Number.isInteger(o):o=>typeof o=="number"&&Number.isFinite(o)&&Math.floor(o)===o;function n(o,s=" | "){return o.map(i=>typeof i=="string"?`'${i}'`:i).join(s)}t.joinValues=n,t.jsonStringifyReplacer=(o,s)=>typeof s=="bigint"?s.toString():s})(H||(H={}));var Li;(function(t){t.mergeShapes=(e,r)=>({...e,...r})})(Li||(Li={}));var z=H.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),mt=t=>{switch(typeof t){case"undefined":return z.undefined;case"string":return z.string;case"number":return Number.isNaN(t)?z.nan:z.number;case"boolean":return z.boolean;case"function":return z.function;case"bigint":return z.bigint;case"symbol":return z.symbol;case"object":return Array.isArray(t)?z.array:t===null?z.null:t.then&&typeof t.then=="function"&&t.catch&&typeof t.catch=="function"?z.promise:typeof Map<"u"&&t instanceof Map?z.map:typeof Set<"u"&&t instanceof Set?z.set:typeof Date<"u"&&t instanceof Date?z.date:z.object;default:return z.unknown}};var w=H.arrayToEnum(["invalid_type","invalid_literal","custom","invalid_union","invalid_union_discriminator","invalid_enum_value","unrecognized_keys","invalid_arguments","invalid_return_type","invalid_date","invalid_string","too_small","too_big","invalid_intersection_types","not_multiple_of","not_finite"]),pv=t=>JSON.stringify(t,null,2).replace(/"([^"]+)":/g,"$1:"),Ce=class t extends Error{get errors(){return this.issues}constructor(e){super(),this.issues=[],this.addIssue=n=>{this.issues=[...this.issues,n]},this.addIssues=(n=[])=>{this.issues=[...this.issues,...n]};let r=new.target.prototype;Object.setPrototypeOf?Object.setPrototypeOf(this,r):this.__proto__=r,this.name="ZodError",this.issues=e}format(e){let r=e||function(s){return s.message},n={_errors:[]},o=s=>{for(let i of s.issues)if(i.code==="invalid_union")i.unionErrors.map(o);else if(i.code==="invalid_return_type")o(i.returnTypeError);else if(i.code==="invalid_arguments")o(i.argumentsError);else if(i.path.length===0)n._errors.push(r(i));else{let a=n,c=0;for(;c<i.path.length;){let u=i.path[c];c===i.path.length-1?(a[u]=a[u]||{_errors:[]},a[u]._errors.push(r(i))):a[u]=a[u]||{_errors:[]},a=a[u],c++}}};return o(this),n}static assert(e){if(!(e instanceof t))throw new Error(`Not a ZodError: ${e}`)}toString(){return this.message}get message(){return JSON.stringify(this.issues,H.jsonStringifyReplacer,2)}get isEmpty(){return this.issues.length===0}flatten(e=r=>r.message){let r={},n=[];for(let o of this.issues)if(o.path.length>0){let s=o.path[0];r[s]=r[s]||[],r[s].push(e(o))}else n.push(e(o));return{formErrors:n,fieldErrors:r}}get formErrors(){return this.flatten()}};Ce.create=t=>new Ce(t);var fv=(t,e)=>{let r;switch(t.code){case w.invalid_type:t.received===z.undefined?r="Required":r=`Expected ${t.expected}, received ${t.received}`;break;case w.invalid_literal:r=`Invalid literal value, expected ${JSON.stringify(t.expected,H.jsonStringifyReplacer)}`;break;case w.unrecognized_keys:r=`Unrecognized key(s) in object: ${H.joinValues(t.keys,", ")}`;break;case w.invalid_union:r="Invalid input";break;case w.invalid_union_discriminator:r=`Invalid discriminator value. Expected ${H.joinValues(t.options)}`;break;case w.invalid_enum_value:r=`Invalid enum value. Expected ${H.joinValues(t.options)}, received '${t.received}'`;break;case w.invalid_arguments:r="Invalid function arguments";break;case w.invalid_return_type:r="Invalid function return type";break;case w.invalid_date:r="Invalid date";break;case w.invalid_string:typeof t.validation=="object"?"includes"in t.validation?(r=`Invalid input: must include "${t.validation.includes}"`,typeof t.validation.position=="number"&&(r=`${r} at one or more positions greater than or equal to ${t.validation.position}`)):"startsWith"in t.validation?r=`Invalid input: must start with "${t.validation.startsWith}"`:"endsWith"in t.validation?r=`Invalid input: must end with "${t.validation.endsWith}"`:H.assertNever(t.validation):t.validation!=="regex"?r=`Invalid ${t.validation}`:r="Invalid";break;case w.too_small:t.type==="array"?r=`Array must contain ${t.exact?"exactly":t.inclusive?"at least":"more than"} ${t.minimum} element(s)`:t.type==="string"?r=`String must contain ${t.exact?"exactly":t.inclusive?"at least":"over"} ${t.minimum} character(s)`:t.type==="number"?r=`Number must be ${t.exact?"exactly equal to ":t.inclusive?"greater than or equal to ":"greater than "}${t.minimum}`:t.type==="bigint"?r=`Number must be ${t.exact?"exactly equal to ":t.inclusive?"greater than or equal to ":"greater than "}${t.minimum}`:t.type==="date"?r=`Date must be ${t.exact?"exactly equal to ":t.inclusive?"greater than or equal to ":"greater than "}${new Date(Number(t.minimum))}`:r="Invalid input";break;case w.too_big:t.type==="array"?r=`Array must contain ${t.exact?"exactly":t.inclusive?"at most":"less than"} ${t.maximum} element(s)`:t.type==="string"?r=`String must contain ${t.exact?"exactly":t.inclusive?"at most":"under"} ${t.maximum} character(s)`:t.type==="number"?r=`Number must be ${t.exact?"exactly":t.inclusive?"less than or equal to":"less than"} ${t.maximum}`:t.type==="bigint"?r=`BigInt must be ${t.exact?"exactly":t.inclusive?"less than or equal to":"less than"} ${t.maximum}`:t.type==="date"?r=`Date must be ${t.exact?"exactly":t.inclusive?"smaller than or equal to":"smaller than"} ${new Date(Number(t.maximum))}`:r="Invalid input";break;case w.custom:r="Invalid input";break;case w.invalid_intersection_types:r="Intersection results could not be merged";break;case w.not_multiple_of:r=`Number must be a multiple of ${t.multipleOf}`;break;case w.not_finite:r="Number must be finite";break;default:r=e.defaultError,H.assertNever(t)}return{message:r}},kt=fv;var Bd=kt;function mv(t){Bd=t}function Mr(){return Bd}var Pn=t=>{let{data:e,path:r,errorMaps:n,issueData:o}=t,s=[...r,...o.path||[]],i={...o,path:s};if(o.message!==void 0)return{...o,path:s,message:o.message};let a="",c=n.filter(u=>!!u).slice().reverse();for(let u of c)a=u(i,{data:e,defaultError:a}).message;return{...o,path:s,message:a}},hv=[];function k(t,e){let r=Mr(),n=Pn({issueData:e,data:t.data,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,r,r===kt?void 0:kt].filter(o=>!!o)});t.common.issues.push(n)}var be=class t{constructor(){this.value="valid"}dirty(){this.value==="valid"&&(this.value="dirty")}abort(){this.value!=="aborted"&&(this.value="aborted")}static mergeArray(e,r){let n=[];for(let o of r){if(o.status==="aborted")return C;o.status==="dirty"&&e.dirty(),n.push(o.value)}return{status:e.value,value:n}}static async mergeObjectAsync(e,r){let n=[];for(let o of r){let s=await o.key,i=await o.value;n.push({key:s,value:i})}return t.mergeObjectSync(e,n)}static mergeObjectSync(e,r){let n={};for(let o of r){let{key:s,value:i}=o;if(s.status==="aborted"||i.status==="aborted")return C;s.status==="dirty"&&e.dirty(),i.status==="dirty"&&e.dirty(),s.value!=="__proto__"&&(typeof i.value<"u"||o.alwaysSet)&&(n[s.value]=i.value)}return{status:e.value,value:n}}},C=Object.freeze({status:"aborted"}),er=t=>({status:"dirty",value:t}),Te=t=>({status:"valid",value:t}),Ao=t=>t.status==="aborted",Mo=t=>t.status==="dirty",Nt=t=>t.status==="valid",Dr=t=>typeof Promise<"u"&&t instanceof Promise;var E;(function(t){t.errToObj=e=>typeof e=="string"?{message:e}:e||{},t.toString=e=>typeof e=="string"?e:e?.message})(E||(E={}));var Xe=class{constructor(e,r,n,o){this._cachedPath=[],this.parent=e,this.data=r,this._path=n,this._key=o}get path(){return this._cachedPath.length||(Array.isArray(this._key)?this._cachedPath.push(...this._path,...this._key):this._cachedPath.push(...this._path,this._key)),this._cachedPath}},Kd=(t,e)=>{if(Nt(e))return{success:!0,data:e.value};if(!t.common.issues.length)throw new Error("Validation failed but no issues detected.");return{success:!1,get error(){if(this._error)return this._error;let r=new Ce(t.common.issues);return this._error=r,this._error}}};function D(t){if(!t)return{};let{errorMap:e,invalid_type_error:r,required_error:n,description:o}=t;if(e&&(r||n))throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);return e?{errorMap:e,description:o}:{errorMap:(i,a)=>{let{message:c}=t;return i.code==="invalid_enum_value"?{message:c??a.defaultError}:typeof a.data>"u"?{message:c??n??a.defaultError}:i.code!=="invalid_type"?{message:a.defaultError}:{message:c??r??a.defaultError}},description:o}}var q=class{get description(){return this._def.description}_getType(e){return mt(e.data)}_getOrReturnCtx(e,r){return r||{common:e.parent.common,data:e.data,parsedType:mt(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}_processInputParams(e){return{status:new be,ctx:{common:e.parent.common,data:e.data,parsedType:mt(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}}_parseSync(e){let r=this._parse(e);if(Dr(r))throw new Error("Synchronous parse encountered promise.");return r}_parseAsync(e){let r=this._parse(e);return Promise.resolve(r)}parse(e,r){let n=this.safeParse(e,r);if(n.success)return n.data;throw n.error}safeParse(e,r){let n={common:{issues:[],async:r?.async??!1,contextualErrorMap:r?.errorMap},path:r?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:mt(e)},o=this._parseSync({data:e,path:n.path,parent:n});return Kd(n,o)}"~validate"(e){let r={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:mt(e)};if(!this["~standard"].async)try{let n=this._parseSync({data:e,path:[],parent:r});return Nt(n)?{value:n.value}:{issues:r.common.issues}}catch(n){n?.message?.toLowerCase()?.includes("encountered")&&(this["~standard"].async=!0),r.common={issues:[],async:!0}}return this._parseAsync({data:e,path:[],parent:r}).then(n=>Nt(n)?{value:n.value}:{issues:r.common.issues})}async parseAsync(e,r){let n=await this.safeParseAsync(e,r);if(n.success)return n.data;throw n.error}async safeParseAsync(e,r){let n={common:{issues:[],contextualErrorMap:r?.errorMap,async:!0},path:r?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:mt(e)},o=this._parse({data:e,path:n.path,parent:n}),s=await(Dr(o)?o:Promise.resolve(o));return Kd(n,s)}refine(e,r){let n=o=>typeof r=="string"||typeof r>"u"?{message:r}:typeof r=="function"?r(o):r;return this._refinement((o,s)=>{let i=e(o),a=()=>s.addIssue({code:w.custom,...n(o)});return typeof Promise<"u"&&i instanceof Promise?i.then(c=>c?!0:(a(),!1)):i?!0:(a(),!1)})}refinement(e,r){return this._refinement((n,o)=>e(n)?!0:(o.addIssue(typeof r=="function"?r(n,o):r),!1))}_refinement(e){return new Ge({schema:this,typeName:$.ZodEffects,effect:{type:"refinement",refinement:e}})}superRefine(e){return this._refinement(e)}constructor(e){this.spa=this.safeParseAsync,this._def=e,this.parse=this.parse.bind(this),this.safeParse=this.safeParse.bind(this),this.parseAsync=this.parseAsync.bind(this),this.safeParseAsync=this.safeParseAsync.bind(this),this.spa=this.spa.bind(this),this.refine=this.refine.bind(this),this.refinement=this.refinement.bind(this),this.superRefine=this.superRefine.bind(this),this.optional=this.optional.bind(this),this.nullable=this.nullable.bind(this),this.nullish=this.nullish.bind(this),this.array=this.array.bind(this),this.promise=this.promise.bind(this),this.or=this.or.bind(this),this.and=this.and.bind(this),this.transform=this.transform.bind(this),this.brand=this.brand.bind(this),this.default=this.default.bind(this),this.catch=this.catch.bind(this),this.describe=this.describe.bind(this),this.pipe=this.pipe.bind(this),this.readonly=this.readonly.bind(this),this.isNullable=this.isNullable.bind(this),this.isOptional=this.isOptional.bind(this),this["~standard"]={version:1,vendor:"zod",validate:r=>this["~validate"](r)}}optional(){return Ze.create(this,this._def)}nullable(){return gt.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return Tt.create(this)}promise(){return At.create(this,this._def)}or(e){return ar.create([this,e],this._def)}and(e){return cr.create(this,e,this._def)}transform(e){return new Ge({...D(this._def),schema:this,typeName:$.ZodEffects,effect:{type:"transform",transform:e}})}default(e){let r=typeof e=="function"?e:()=>e;return new fr({...D(this._def),innerType:this,defaultValue:r,typeName:$.ZodDefault})}brand(){return new En({typeName:$.ZodBranded,type:this,...D(this._def)})}catch(e){let r=typeof e=="function"?e:()=>e;return new mr({...D(this._def),innerType:this,catchValue:r,typeName:$.ZodCatch})}describe(e){let r=this.constructor;return new r({...this._def,description:e})}pipe(e){return On.create(this,e)}readonly(){return hr.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}},gv=/^c[^\s-]{8,}$/i,yv=/^[0-9a-z]+$/,_v=/^[0-9A-HJKMNP-TV-Z]{26}$/i,vv=/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i,xv=/^[a-z0-9_-]{21}$/i,bv=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/,wv=/^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/,$v=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,kv="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$",qi,Sv=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,zv=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/,Tv=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,Pv=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,Ev=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,Ov=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,Xd="((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))",Iv=new RegExp(`^${Xd}$`);function Gd(t){let e="[0-5]\\d";t.precision?e=`${e}\\.\\d{${t.precision}}`:t.precision==null&&(e=`${e}(\\.\\d+)?`);let r=t.precision?"+":"?";return`([01]\\d|2[0-3]):[0-5]\\d(:${e})${r}`}function Rv(t){return new RegExp(`^${Gd(t)}$`)}function Wd(t){let e=`${Xd}T${Gd(t)}`,r=[];return r.push(t.local?"Z?":"Z"),t.offset&&r.push("([+-]\\d{2}:?\\d{2})"),e=`${e}(${r.join("|")})`,new RegExp(`^${e}$`)}function jv(t,e){return!!((e==="v4"||!e)&&Sv.test(t)||(e==="v6"||!e)&&Tv.test(t))}function Nv(t,e){if(!bv.test(t))return!1;try{let[r]=t.split(".");if(!r)return!1;let n=r.replace(/-/g,"+").replace(/_/g,"/").padEnd(r.length+(4-r.length%4)%4,"="),o=JSON.parse(atob(n));return!(typeof o!="object"||o===null||"typ"in o&&o?.typ!=="JWT"||!o.alg||e&&o.alg!==e)}catch{return!1}}function Cv(t,e){return!!((e==="v4"||!e)&&zv.test(t)||(e==="v6"||!e)&&Pv.test(t))}var Ct=class t extends q{_parse(e){if(this._def.coerce&&(e.data=String(e.data)),this._getType(e)!==z.string){let s=this._getOrReturnCtx(e);return k(s,{code:w.invalid_type,expected:z.string,received:s.parsedType}),C}let n=new be,o;for(let s of this._def.checks)if(s.kind==="min")e.data.length<s.value&&(o=this._getOrReturnCtx(e,o),k(o,{code:w.too_small,minimum:s.value,type:"string",inclusive:!0,exact:!1,message:s.message}),n.dirty());else if(s.kind==="max")e.data.length>s.value&&(o=this._getOrReturnCtx(e,o),k(o,{code:w.too_big,maximum:s.value,type:"string",inclusive:!0,exact:!1,message:s.message}),n.dirty());else if(s.kind==="length"){let i=e.data.length>s.value,a=e.data.length<s.value;(i||a)&&(o=this._getOrReturnCtx(e,o),i?k(o,{code:w.too_big,maximum:s.value,type:"string",inclusive:!0,exact:!0,message:s.message}):a&&k(o,{code:w.too_small,minimum:s.value,type:"string",inclusive:!0,exact:!0,message:s.message}),n.dirty())}else if(s.kind==="email")$v.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"email",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="emoji")qi||(qi=new RegExp(kv,"u")),qi.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"emoji",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="uuid")vv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"uuid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="nanoid")xv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"nanoid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="cuid")gv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"cuid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="cuid2")yv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"cuid2",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="ulid")_v.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"ulid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="url")try{new URL(e.data)}catch{o=this._getOrReturnCtx(e,o),k(o,{validation:"url",code:w.invalid_string,message:s.message}),n.dirty()}else s.kind==="regex"?(s.regex.lastIndex=0,s.regex.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"regex",code:w.invalid_string,message:s.message}),n.dirty())):s.kind==="trim"?e.data=e.data.trim():s.kind==="includes"?e.data.includes(s.value,s.position)||(o=this._getOrReturnCtx(e,o),k(o,{code:w.invalid_string,validation:{includes:s.value,position:s.position},message:s.message}),n.dirty()):s.kind==="toLowerCase"?e.data=e.data.toLowerCase():s.kind==="toUpperCase"?e.data=e.data.toUpperCase():s.kind==="startsWith"?e.data.startsWith(s.value)||(o=this._getOrReturnCtx(e,o),k(o,{code:w.invalid_string,validation:{startsWith:s.value},message:s.message}),n.dirty()):s.kind==="endsWith"?e.data.endsWith(s.value)||(o=this._getOrReturnCtx(e,o),k(o,{code:w.invalid_string,validation:{endsWith:s.value},message:s.message}),n.dirty()):s.kind==="datetime"?Wd(s).test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{code:w.invalid_string,validation:"datetime",message:s.message}),n.dirty()):s.kind==="date"?Iv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{code:w.invalid_string,validation:"date",message:s.message}),n.dirty()):s.kind==="time"?Rv(s).test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{code:w.invalid_string,validation:"time",message:s.message}),n.dirty()):s.kind==="duration"?wv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"duration",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="ip"?jv(e.data,s.version)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"ip",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="jwt"?Nv(e.data,s.alg)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"jwt",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="cidr"?Cv(e.data,s.version)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"cidr",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="base64"?Ev.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"base64",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="base64url"?Ov.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"base64url",code:w.invalid_string,message:s.message}),n.dirty()):H.assertNever(s);return{status:n.value,value:e.data}}_regex(e,r,n){return this.refinement(o=>e.test(o),{validation:r,code:w.invalid_string,...E.errToObj(n)})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}email(e){return this._addCheck({kind:"email",...E.errToObj(e)})}url(e){return this._addCheck({kind:"url",...E.errToObj(e)})}emoji(e){return this._addCheck({kind:"emoji",...E.errToObj(e)})}uuid(e){return this._addCheck({kind:"uuid",...E.errToObj(e)})}nanoid(e){return this._addCheck({kind:"nanoid",...E.errToObj(e)})}cuid(e){return this._addCheck({kind:"cuid",...E.errToObj(e)})}cuid2(e){return this._addCheck({kind:"cuid2",...E.errToObj(e)})}ulid(e){return this._addCheck({kind:"ulid",...E.errToObj(e)})}base64(e){return this._addCheck({kind:"base64",...E.errToObj(e)})}base64url(e){return this._addCheck({kind:"base64url",...E.errToObj(e)})}jwt(e){return this._addCheck({kind:"jwt",...E.errToObj(e)})}ip(e){return this._addCheck({kind:"ip",...E.errToObj(e)})}cidr(e){return this._addCheck({kind:"cidr",...E.errToObj(e)})}datetime(e){return typeof e=="string"?this._addCheck({kind:"datetime",precision:null,offset:!1,local:!1,message:e}):this._addCheck({kind:"datetime",precision:typeof e?.precision>"u"?null:e?.precision,offset:e?.offset??!1,local:e?.local??!1,...E.errToObj(e?.message)})}date(e){return this._addCheck({kind:"date",message:e})}time(e){return typeof e=="string"?this._addCheck({kind:"time",precision:null,message:e}):this._addCheck({kind:"time",precision:typeof e?.precision>"u"?null:e?.precision,...E.errToObj(e?.message)})}duration(e){return this._addCheck({kind:"duration",...E.errToObj(e)})}regex(e,r){return this._addCheck({kind:"regex",regex:e,...E.errToObj(r)})}includes(e,r){return this._addCheck({kind:"includes",value:e,position:r?.position,...E.errToObj(r?.message)})}startsWith(e,r){return this._addCheck({kind:"startsWith",value:e,...E.errToObj(r)})}endsWith(e,r){return this._addCheck({kind:"endsWith",value:e,...E.errToObj(r)})}min(e,r){return this._addCheck({kind:"min",value:e,...E.errToObj(r)})}max(e,r){return this._addCheck({kind:"max",value:e,...E.errToObj(r)})}length(e,r){return this._addCheck({kind:"length",value:e,...E.errToObj(r)})}nonempty(e){return this.min(1,E.errToObj(e))}trim(){return new t({...this._def,checks:[...this._def.checks,{kind:"trim"}]})}toLowerCase(){return new t({...this._def,checks:[...this._def.checks,{kind:"toLowerCase"}]})}toUpperCase(){return new t({...this._def,checks:[...this._def.checks,{kind:"toUpperCase"}]})}get isDatetime(){return!!this._def.checks.find(e=>e.kind==="datetime")}get isDate(){return!!this._def.checks.find(e=>e.kind==="date")}get isTime(){return!!this._def.checks.find(e=>e.kind==="time")}get isDuration(){return!!this._def.checks.find(e=>e.kind==="duration")}get isEmail(){return!!this._def.checks.find(e=>e.kind==="email")}get isURL(){return!!this._def.checks.find(e=>e.kind==="url")}get isEmoji(){return!!this._def.checks.find(e=>e.kind==="emoji")}get isUUID(){return!!this._def.checks.find(e=>e.kind==="uuid")}get isNANOID(){return!!this._def.checks.find(e=>e.kind==="nanoid")}get isCUID(){return!!this._def.checks.find(e=>e.kind==="cuid")}get isCUID2(){return!!this._def.checks.find(e=>e.kind==="cuid2")}get isULID(){return!!this._def.checks.find(e=>e.kind==="ulid")}get isIP(){return!!this._def.checks.find(e=>e.kind==="ip")}get isCIDR(){return!!this._def.checks.find(e=>e.kind==="cidr")}get isBase64(){return!!this._def.checks.find(e=>e.kind==="base64")}get isBase64url(){return!!this._def.checks.find(e=>e.kind==="base64url")}get minLength(){let e=null;for(let r of this._def.checks)r.kind==="min"&&(e===null||r.value>e)&&(e=r.value);return e}get maxLength(){let e=null;for(let r of this._def.checks)r.kind==="max"&&(e===null||r.value<e)&&(e=r.value);return e}};Ct.create=t=>new Ct({checks:[],typeName:$.ZodString,coerce:t?.coerce??!1,...D(t)});function Zv(t,e){let r=(t.toString().split(".")[1]||"").length,n=(e.toString().split(".")[1]||"").length,o=r>n?r:n,s=Number.parseInt(t.toFixed(o).replace(".","")),i=Number.parseInt(e.toFixed(o).replace(".",""));return s%i/10**o}var tr=class t extends q{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte,this.step=this.multipleOf}_parse(e){if(this._def.coerce&&(e.data=Number(e.data)),this._getType(e)!==z.number){let s=this._getOrReturnCtx(e);return k(s,{code:w.invalid_type,expected:z.number,received:s.parsedType}),C}let n,o=new be;for(let s of this._def.checks)s.kind==="int"?H.isInteger(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{code:w.invalid_type,expected:"integer",received:"float",message:s.message}),o.dirty()):s.kind==="min"?(s.inclusive?e.data<s.value:e.data<=s.value)&&(n=this._getOrReturnCtx(e,n),k(n,{code:w.too_small,minimum:s.value,type:"number",inclusive:s.inclusive,exact:!1,message:s.message}),o.dirty()):s.kind==="max"?(s.inclusive?e.data>s.value:e.data>=s.value)&&(n=this._getOrReturnCtx(e,n),k(n,{code:w.too_big,maximum:s.value,type:"number",inclusive:s.inclusive,exact:!1,message:s.message}),o.dirty()):s.kind==="multipleOf"?Zv(e.data,s.value)!==0&&(n=this._getOrReturnCtx(e,n),k(n,{code:w.not_multiple_of,multipleOf:s.value,message:s.message}),o.dirty()):s.kind==="finite"?Number.isFinite(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{code:w.not_finite,message:s.message}),o.dirty()):H.assertNever(s);return{status:o.value,value:e.data}}gte(e,r){return this.setLimit("min",e,!0,E.toString(r))}gt(e,r){return this.setLimit("min",e,!1,E.toString(r))}lte(e,r){return this.setLimit("max",e,!0,E.toString(r))}lt(e,r){return this.setLimit("max",e,!1,E.toString(r))}setLimit(e,r,n,o){return new t({...this._def,checks:[...this._def.checks,{kind:e,value:r,inclusive:n,message:E.toString(o)}]})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}int(e){return this._addCheck({kind:"int",message:E.toString(e)})}positive(e){return this._addCheck({kind:"min",value:0,inclusive:!1,message:E.toString(e)})}negative(e){return this._addCheck({kind:"max",value:0,inclusive:!1,message:E.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:0,inclusive:!0,message:E.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:0,inclusive:!0,message:E.toString(e)})}multipleOf(e,r){return this._addCheck({kind:"multipleOf",value:e,message:E.toString(r)})}finite(e){return this._addCheck({kind:"finite",message:E.toString(e)})}safe(e){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:E.toString(e)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:E.toString(e)})}get minValue(){let e=null;for(let r of this._def.checks)r.kind==="min"&&(e===null||r.value>e)&&(e=r.value);return e}get maxValue(){let e=null;for(let r of this._def.checks)r.kind==="max"&&(e===null||r.value<e)&&(e=r.value);return e}get isInt(){return!!this._def.checks.find(e=>e.kind==="int"||e.kind==="multipleOf"&&H.isInteger(e.value))}get isFinite(){let e=null,r=null;for(let n of this._def.checks){if(n.kind==="finite"||n.kind==="int"||n.kind==="multipleOf")return!0;n.kind==="min"?(r===null||n.value>r)&&(r=n.value):n.kind==="max"&&(e===null||n.value<e)&&(e=n.value)}return Number.isFinite(r)&&Number.isFinite(e)}};tr.create=t=>new tr({checks:[],typeName:$.ZodNumber,coerce:t?.coerce||!1,...D(t)});var rr=class t extends q{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte}_parse(e){if(this._def.coerce)try{e.data=BigInt(e.data)}catch{return this._getInvalidInput(e)}if(this._getType(e)!==z.bigint)return this._getInvalidInput(e);let n,o=new be;for(let s of this._def.checks)s.kind==="min"?(s.inclusive?e.data<s.value:e.data<=s.value)&&(n=this._getOrReturnCtx(e,n),k(n,{code:w.too_small,type:"bigint",minimum:s.value,inclusive:s.inclusive,message:s.message}),o.dirty()):s.kind==="max"?(s.inclusive?e.data>s.value:e.data>=s.value)&&(n=this._getOrReturnCtx(e,n),k(n,{code:w.too_big,type:"bigint",maximum:s.value,inclusive:s.inclusive,message:s.message}),o.dirty()):s.kind==="multipleOf"?e.data%s.value!==BigInt(0)&&(n=this._getOrReturnCtx(e,n),k(n,{code:w.not_multiple_of,multipleOf:s.value,message:s.message}),o.dirty()):H.assertNever(s);return{status:o.value,value:e.data}}_getInvalidInput(e){let r=this._getOrReturnCtx(e);return k(r,{code:w.invalid_type,expected:z.bigint,received:r.parsedType}),C}gte(e,r){return this.setLimit("min",e,!0,E.toString(r))}gt(e,r){return this.setLimit("min",e,!1,E.toString(r))}lte(e,r){return this.setLimit("max",e,!0,E.toString(r))}lt(e,r){return this.setLimit("max",e,!1,E.toString(r))}setLimit(e,r,n,o){return new t({...this._def,checks:[...this._def.checks,{kind:e,value:r,inclusive:n,message:E.toString(o)}]})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}positive(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!1,message:E.toString(e)})}negative(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:E.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:E.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:E.toString(e)})}multipleOf(e,r){return this._addCheck({kind:"multipleOf",value:e,message:E.toString(r)})}get minValue(){let e=null;for(let r of this._def.checks)r.kind==="min"&&(e===null||r.value>e)&&(e=r.value);return e}get maxValue(){let e=null;for(let r of this._def.checks)r.kind==="max"&&(e===null||r.value<e)&&(e=r.value);return e}};rr.create=t=>new rr({checks:[],typeName:$.ZodBigInt,coerce:t?.coerce??!1,...D(t)});var nr=class extends q{_parse(e){if(this._def.coerce&&(e.data=!!e.data),this._getType(e)!==z.boolean){let n=this._getOrReturnCtx(e);return k(n,{code:w.invalid_type,expected:z.boolean,received:n.parsedType}),C}return Te(e.data)}};nr.create=t=>new nr({typeName:$.ZodBoolean,coerce:t?.coerce||!1,...D(t)});var or=class t extends q{_parse(e){if(this._def.coerce&&(e.data=new Date(e.data)),this._getType(e)!==z.date){let s=this._getOrReturnCtx(e);return k(s,{code:w.invalid_type,expected:z.date,received:s.parsedType}),C}if(Number.isNaN(e.data.getTime())){let s=this._getOrReturnCtx(e);return k(s,{code:w.invalid_date}),C}let n=new be,o;for(let s of this._def.checks)s.kind==="min"?e.data.getTime()<s.value&&(o=this._getOrReturnCtx(e,o),k(o,{code:w.too_small,message:s.message,inclusive:!0,exact:!1,minimum:s.value,type:"date"}),n.dirty()):s.kind==="max"?e.data.getTime()>s.value&&(o=this._getOrReturnCtx(e,o),k(o,{code:w.too_big,message:s.message,inclusive:!0,exact:!1,maximum:s.value,type:"date"}),n.dirty()):H.assertNever(s);return{status:n.value,value:new Date(e.data.getTime())}}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}min(e,r){return this._addCheck({kind:"min",value:e.getTime(),message:E.toString(r)})}max(e,r){return this._addCheck({kind:"max",value:e.getTime(),message:E.toString(r)})}get minDate(){let e=null;for(let r of this._def.checks)r.kind==="min"&&(e===null||r.value>e)&&(e=r.value);return e!=null?new Date(e):null}get maxDate(){let e=null;for(let r of this._def.checks)r.kind==="max"&&(e===null||r.value<e)&&(e=r.value);return e!=null?new Date(e):null}};or.create=t=>new or({checks:[],coerce:t?.coerce||!1,typeName:$.ZodDate,...D(t)});var qr=class extends q{_parse(e){if(this._getType(e)!==z.symbol){let n=this._getOrReturnCtx(e);return k(n,{code:w.invalid_type,expected:z.symbol,received:n.parsedType}),C}return Te(e.data)}};qr.create=t=>new qr({typeName:$.ZodSymbol,...D(t)});var sr=class extends q{_parse(e){if(this._getType(e)!==z.undefined){let n=this._getOrReturnCtx(e);return k(n,{code:w.invalid_type,expected:z.undefined,received:n.parsedType}),C}return Te(e.data)}};sr.create=t=>new sr({typeName:$.ZodUndefined,...D(t)});var ir=class extends q{_parse(e){if(this._getType(e)!==z.null){let n=this._getOrReturnCtx(e);return k(n,{code:w.invalid_type,expected:z.null,received:n.parsedType}),C}return Te(e.data)}};ir.create=t=>new ir({typeName:$.ZodNull,...D(t)});var Zt=class extends q{constructor(){super(...arguments),this._any=!0}_parse(e){return Te(e.data)}};Zt.create=t=>new Zt({typeName:$.ZodAny,...D(t)});var zt=class extends q{constructor(){super(...arguments),this._unknown=!0}_parse(e){return Te(e.data)}};zt.create=t=>new zt({typeName:$.ZodUnknown,...D(t)});var ot=class extends q{_parse(e){let r=this._getOrReturnCtx(e);return k(r,{code:w.invalid_type,expected:z.never,received:r.parsedType}),C}};ot.create=t=>new ot({typeName:$.ZodNever,...D(t)});var Ur=class extends q{_parse(e){if(this._getType(e)!==z.undefined){let n=this._getOrReturnCtx(e);return k(n,{code:w.invalid_type,expected:z.void,received:n.parsedType}),C}return Te(e.data)}};Ur.create=t=>new Ur({typeName:$.ZodVoid,...D(t)});var Tt=class t extends q{_parse(e){let{ctx:r,status:n}=this._processInputParams(e),o=this._def;if(r.parsedType!==z.array)return k(r,{code:w.invalid_type,expected:z.array,received:r.parsedType}),C;if(o.exactLength!==null){let i=r.data.length>o.exactLength.value,a=r.data.length<o.exactLength.value;(i||a)&&(k(r,{code:i?w.too_big:w.too_small,minimum:a?o.exactLength.value:void 0,maximum:i?o.exactLength.value:void 0,type:"array",inclusive:!0,exact:!0,message:o.exactLength.message}),n.dirty())}if(o.minLength!==null&&r.data.length<o.minLength.value&&(k(r,{code:w.too_small,minimum:o.minLength.value,type:"array",inclusive:!0,exact:!1,message:o.minLength.message}),n.dirty()),o.maxLength!==null&&r.data.length>o.maxLength.value&&(k(r,{code:w.too_big,maximum:o.maxLength.value,type:"array",inclusive:!0,exact:!1,message:o.maxLength.message}),n.dirty()),r.common.async)return Promise.all([...r.data].map((i,a)=>o.type._parseAsync(new Xe(r,i,r.path,a)))).then(i=>be.mergeArray(n,i));let s=[...r.data].map((i,a)=>o.type._parseSync(new Xe(r,i,r.path,a)));return be.mergeArray(n,s)}get element(){return this._def.type}min(e,r){return new t({...this._def,minLength:{value:e,message:E.toString(r)}})}max(e,r){return new t({...this._def,maxLength:{value:e,message:E.toString(r)}})}length(e,r){return new t({...this._def,exactLength:{value:e,message:E.toString(r)}})}nonempty(e){return this.min(1,e)}};Tt.create=(t,e)=>new Tt({type:t,minLength:null,maxLength:null,exactLength:null,typeName:$.ZodArray,...D(e)});function Lr(t){if(t instanceof Ae){let e={};for(let r in t.shape){let n=t.shape[r];e[r]=Ze.create(Lr(n))}return new Ae({...t._def,shape:()=>e})}else return t instanceof Tt?new Tt({...t._def,type:Lr(t.element)}):t instanceof Ze?Ze.create(Lr(t.unwrap())):t instanceof gt?gt.create(Lr(t.unwrap())):t instanceof ht?ht.create(t.items.map(e=>Lr(e))):t}var Ae=class t extends q{constructor(){super(...arguments),this._cached=null,this.nonstrict=this.passthrough,this.augment=this.extend}_getCached(){if(this._cached!==null)return this._cached;let e=this._def.shape(),r=H.objectKeys(e);return this._cached={shape:e,keys:r},this._cached}_parse(e){if(this._getType(e)!==z.object){let u=this._getOrReturnCtx(e);return k(u,{code:w.invalid_type,expected:z.object,received:u.parsedType}),C}let{status:n,ctx:o}=this._processInputParams(e),{shape:s,keys:i}=this._getCached(),a=[];if(!(this._def.catchall instanceof ot&&this._def.unknownKeys==="strip"))for(let u in o.data)i.includes(u)||a.push(u);let c=[];for(let u of i){let l=s[u],d=o.data[u];c.push({key:{status:"valid",value:u},value:l._parse(new Xe(o,d,o.path,u)),alwaysSet:u in o.data})}if(this._def.catchall instanceof ot){let u=this._def.unknownKeys;if(u==="passthrough")for(let l of a)c.push({key:{status:"valid",value:l},value:{status:"valid",value:o.data[l]}});else if(u==="strict")a.length>0&&(k(o,{code:w.unrecognized_keys,keys:a}),n.dirty());else if(u!=="strip")throw new Error("Internal ZodObject error: invalid unknownKeys value.")}else{let u=this._def.catchall;for(let l of a){let d=o.data[l];c.push({key:{status:"valid",value:l},value:u._parse(new Xe(o,d,o.path,l)),alwaysSet:l in o.data})}}return o.common.async?Promise.resolve().then(async()=>{let u=[];for(let l of c){let d=await l.key,m=await l.value;u.push({key:d,value:m,alwaysSet:l.alwaysSet})}return u}).then(u=>be.mergeObjectSync(n,u)):be.mergeObjectSync(n,c)}get shape(){return this._def.shape()}strict(e){return E.errToObj,new t({...this._def,unknownKeys:"strict",...e!==void 0?{errorMap:(r,n)=>{let o=this._def.errorMap?.(r,n).message??n.defaultError;return r.code==="unrecognized_keys"?{message:E.errToObj(e).message??o}:{message:o}}}:{}})}strip(){return new t({...this._def,unknownKeys:"strip"})}passthrough(){return new t({...this._def,unknownKeys:"passthrough"})}extend(e){return new t({...this._def,shape:()=>({...this._def.shape(),...e})})}merge(e){return new t({unknownKeys:e._def.unknownKeys,catchall:e._def.catchall,shape:()=>({...this._def.shape(),...e._def.shape()}),typeName:$.ZodObject})}setKey(e,r){return this.augment({[e]:r})}catchall(e){return new t({...this._def,catchall:e})}pick(e){let r={};for(let n of H.objectKeys(e))e[n]&&this.shape[n]&&(r[n]=this.shape[n]);return new t({...this._def,shape:()=>r})}omit(e){let r={};for(let n of H.objectKeys(this.shape))e[n]||(r[n]=this.shape[n]);return new t({...this._def,shape:()=>r})}deepPartial(){return Lr(this)}partial(e){let r={};for(let n of H.objectKeys(this.shape)){let o=this.shape[n];e&&!e[n]?r[n]=o:r[n]=o.optional()}return new t({...this._def,shape:()=>r})}required(e){let r={};for(let n of H.objectKeys(this.shape))if(e&&!e[n])r[n]=this.shape[n];else{let s=this.shape[n];for(;s instanceof Ze;)s=s._def.innerType;r[n]=s}return new t({...this._def,shape:()=>r})}keyof(){return Yd(H.objectKeys(this.shape))}};Ae.create=(t,e)=>new Ae({shape:()=>t,unknownKeys:"strip",catchall:ot.create(),typeName:$.ZodObject,...D(e)});Ae.strictCreate=(t,e)=>new Ae({shape:()=>t,unknownKeys:"strict",catchall:ot.create(),typeName:$.ZodObject,...D(e)});Ae.lazycreate=(t,e)=>new Ae({shape:t,unknownKeys:"strip",catchall:ot.create(),typeName:$.ZodObject,...D(e)});var ar=class extends q{_parse(e){let{ctx:r}=this._processInputParams(e),n=this._def.options;function o(s){for(let a of s)if(a.result.status==="valid")return a.result;for(let a of s)if(a.result.status==="dirty")return r.common.issues.push(...a.ctx.common.issues),a.result;let i=s.map(a=>new Ce(a.ctx.common.issues));return k(r,{code:w.invalid_union,unionErrors:i}),C}if(r.common.async)return Promise.all(n.map(async s=>{let i={...r,common:{...r.common,issues:[]},parent:null};return{result:await s._parseAsync({data:r.data,path:r.path,parent:i}),ctx:i}})).then(o);{let s,i=[];for(let c of n){let u={...r,common:{...r.common,issues:[]},parent:null},l=c._parseSync({data:r.data,path:r.path,parent:u});if(l.status==="valid")return l;l.status==="dirty"&&!s&&(s={result:l,ctx:u}),u.common.issues.length&&i.push(u.common.issues)}if(s)return r.common.issues.push(...s.ctx.common.issues),s.result;let a=i.map(c=>new Ce(c));return k(r,{code:w.invalid_union,unionErrors:a}),C}}get options(){return this._def.options}};ar.create=(t,e)=>new ar({options:t,typeName:$.ZodUnion,...D(e)});var St=t=>t instanceof ur?St(t.schema):t instanceof Ge?St(t.innerType()):t instanceof lr?[t.value]:t instanceof dr?t.options:t instanceof pr?H.objectValues(t.enum):t instanceof fr?St(t._def.innerType):t instanceof sr?[void 0]:t instanceof ir?[null]:t instanceof Ze?[void 0,...St(t.unwrap())]:t instanceof gt?[null,...St(t.unwrap())]:t instanceof En||t instanceof hr?St(t.unwrap()):t instanceof mr?St(t._def.innerType):[],Do=class t extends q{_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==z.object)return k(r,{code:w.invalid_type,expected:z.object,received:r.parsedType}),C;let n=this.discriminator,o=r.data[n],s=this.optionsMap.get(o);return s?r.common.async?s._parseAsync({data:r.data,path:r.path,parent:r}):s._parseSync({data:r.data,path:r.path,parent:r}):(k(r,{code:w.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[n]}),C)}get discriminator(){return this._def.discriminator}get options(){return this._def.options}get optionsMap(){return this._def.optionsMap}static create(e,r,n){let o=new Map;for(let s of r){let i=St(s.shape[e]);if(!i.length)throw new Error(`A discriminator value for key \`${e}\` could not be extracted from all schema options`);for(let a of i){if(o.has(a))throw new Error(`Discriminator property ${String(e)} has duplicate value ${String(a)}`);o.set(a,s)}}return new t({typeName:$.ZodDiscriminatedUnion,discriminator:e,options:r,optionsMap:o,...D(n)})}};function Ui(t,e){let r=mt(t),n=mt(e);if(t===e)return{valid:!0,data:t};if(r===z.object&&n===z.object){let o=H.objectKeys(e),s=H.objectKeys(t).filter(a=>o.indexOf(a)!==-1),i={...t,...e};for(let a of s){let c=Ui(t[a],e[a]);if(!c.valid)return{valid:!1};i[a]=c.data}return{valid:!0,data:i}}else if(r===z.array&&n===z.array){if(t.length!==e.length)return{valid:!1};let o=[];for(let s=0;s<t.length;s++){let i=t[s],a=e[s],c=Ui(i,a);if(!c.valid)return{valid:!1};o.push(c.data)}return{valid:!0,data:o}}else return r===z.date&&n===z.date&&+t==+e?{valid:!0,data:t}:{valid:!1}}var cr=class extends q{_parse(e){let{status:r,ctx:n}=this._processInputParams(e),o=(s,i)=>{if(Ao(s)||Ao(i))return C;let a=Ui(s.value,i.value);return a.valid?((Mo(s)||Mo(i))&&r.dirty(),{status:r.value,value:a.data}):(k(n,{code:w.invalid_intersection_types}),C)};return n.common.async?Promise.all([this._def.left._parseAsync({data:n.data,path:n.path,parent:n}),this._def.right._parseAsync({data:n.data,path:n.path,parent:n})]).then(([s,i])=>o(s,i)):o(this._def.left._parseSync({data:n.data,path:n.path,parent:n}),this._def.right._parseSync({data:n.data,path:n.path,parent:n}))}};cr.create=(t,e,r)=>new cr({left:t,right:e,typeName:$.ZodIntersection,...D(r)});var ht=class t extends q{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==z.array)return k(n,{code:w.invalid_type,expected:z.array,received:n.parsedType}),C;if(n.data.length<this._def.items.length)return k(n,{code:w.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),C;!this._def.rest&&n.data.length>this._def.items.length&&(k(n,{code:w.too_big,maximum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),r.dirty());let s=[...n.data].map((i,a)=>{let c=this._def.items[a]||this._def.rest;return c?c._parse(new Xe(n,i,n.path,a)):null}).filter(i=>!!i);return n.common.async?Promise.all(s).then(i=>be.mergeArray(r,i)):be.mergeArray(r,s)}get items(){return this._def.items}rest(e){return new t({...this._def,rest:e})}};ht.create=(t,e)=>{if(!Array.isArray(t))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new ht({items:t,typeName:$.ZodTuple,rest:null,...D(e)})};var Lo=class t extends q{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==z.object)return k(n,{code:w.invalid_type,expected:z.object,received:n.parsedType}),C;let o=[],s=this._def.keyType,i=this._def.valueType;for(let a in n.data)o.push({key:s._parse(new Xe(n,a,n.path,a)),value:i._parse(new Xe(n,n.data[a],n.path,a)),alwaysSet:a in n.data});return n.common.async?be.mergeObjectAsync(r,o):be.mergeObjectSync(r,o)}get element(){return this._def.valueType}static create(e,r,n){return r instanceof q?new t({keyType:e,valueType:r,typeName:$.ZodRecord,...D(n)}):new t({keyType:Ct.create(),valueType:e,typeName:$.ZodRecord,...D(r)})}},Fr=class extends q{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==z.map)return k(n,{code:w.invalid_type,expected:z.map,received:n.parsedType}),C;let o=this._def.keyType,s=this._def.valueType,i=[...n.data.entries()].map(([a,c],u)=>({key:o._parse(new Xe(n,a,n.path,[u,"key"])),value:s._parse(new Xe(n,c,n.path,[u,"value"]))}));if(n.common.async){let a=new Map;return Promise.resolve().then(async()=>{for(let c of i){let u=await c.key,l=await c.value;if(u.status==="aborted"||l.status==="aborted")return C;(u.status==="dirty"||l.status==="dirty")&&r.dirty(),a.set(u.value,l.value)}return{status:r.value,value:a}})}else{let a=new Map;for(let c of i){let u=c.key,l=c.value;if(u.status==="aborted"||l.status==="aborted")return C;(u.status==="dirty"||l.status==="dirty")&&r.dirty(),a.set(u.value,l.value)}return{status:r.value,value:a}}}};Fr.create=(t,e,r)=>new Fr({valueType:e,keyType:t,typeName:$.ZodMap,...D(r)});var Vr=class t extends q{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==z.set)return k(n,{code:w.invalid_type,expected:z.set,received:n.parsedType}),C;let o=this._def;o.minSize!==null&&n.data.size<o.minSize.value&&(k(n,{code:w.too_small,minimum:o.minSize.value,type:"set",inclusive:!0,exact:!1,message:o.minSize.message}),r.dirty()),o.maxSize!==null&&n.data.size>o.maxSize.value&&(k(n,{code:w.too_big,maximum:o.maxSize.value,type:"set",inclusive:!0,exact:!1,message:o.maxSize.message}),r.dirty());let s=this._def.valueType;function i(c){let u=new Set;for(let l of c){if(l.status==="aborted")return C;l.status==="dirty"&&r.dirty(),u.add(l.value)}return{status:r.value,value:u}}let a=[...n.data.values()].map((c,u)=>s._parse(new Xe(n,c,n.path,u)));return n.common.async?Promise.all(a).then(c=>i(c)):i(a)}min(e,r){return new t({...this._def,minSize:{value:e,message:E.toString(r)}})}max(e,r){return new t({...this._def,maxSize:{value:e,message:E.toString(r)}})}size(e,r){return this.min(e,r).max(e,r)}nonempty(e){return this.min(1,e)}};Vr.create=(t,e)=>new Vr({valueType:t,minSize:null,maxSize:null,typeName:$.ZodSet,...D(e)});var qo=class t extends q{constructor(){super(...arguments),this.validate=this.implement}_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==z.function)return k(r,{code:w.invalid_type,expected:z.function,received:r.parsedType}),C;function n(a,c){return Pn({data:a,path:r.path,errorMaps:[r.common.contextualErrorMap,r.schemaErrorMap,Mr(),kt].filter(u=>!!u),issueData:{code:w.invalid_arguments,argumentsError:c}})}function o(a,c){return Pn({data:a,path:r.path,errorMaps:[r.common.contextualErrorMap,r.schemaErrorMap,Mr(),kt].filter(u=>!!u),issueData:{code:w.invalid_return_type,returnTypeError:c}})}let s={errorMap:r.common.contextualErrorMap},i=r.data;if(this._def.returns instanceof At){let a=this;return Te(async function(...c){let u=new Ce([]),l=await a._def.args.parseAsync(c,s).catch(f=>{throw u.addIssue(n(c,f)),u}),d=await Reflect.apply(i,this,l);return await a._def.returns._def.type.parseAsync(d,s).catch(f=>{throw u.addIssue(o(d,f)),u})})}else{let a=this;return Te(function(...c){let u=a._def.args.safeParse(c,s);if(!u.success)throw new Ce([n(c,u.error)]);let l=Reflect.apply(i,this,u.data),d=a._def.returns.safeParse(l,s);if(!d.success)throw new Ce([o(l,d.error)]);return d.data})}}parameters(){return this._def.args}returnType(){return this._def.returns}args(...e){return new t({...this._def,args:ht.create(e).rest(zt.create())})}returns(e){return new t({...this._def,returns:e})}implement(e){return this.parse(e)}strictImplement(e){return this.parse(e)}static create(e,r,n){return new t({args:e||ht.create([]).rest(zt.create()),returns:r||zt.create(),typeName:$.ZodFunction,...D(n)})}},ur=class extends q{get schema(){return this._def.getter()}_parse(e){let{ctx:r}=this._processInputParams(e);return this._def.getter()._parse({data:r.data,path:r.path,parent:r})}};ur.create=(t,e)=>new ur({getter:t,typeName:$.ZodLazy,...D(e)});var lr=class extends q{_parse(e){if(e.data!==this._def.value){let r=this._getOrReturnCtx(e);return k(r,{received:r.data,code:w.invalid_literal,expected:this._def.value}),C}return{status:"valid",value:e.data}}get value(){return this._def.value}};lr.create=(t,e)=>new lr({value:t,typeName:$.ZodLiteral,...D(e)});function Yd(t,e){return new dr({values:t,typeName:$.ZodEnum,...D(e)})}var dr=class t extends q{_parse(e){if(typeof e.data!="string"){let r=this._getOrReturnCtx(e),n=this._def.values;return k(r,{expected:H.joinValues(n),received:r.parsedType,code:w.invalid_type}),C}if(this._cache||(this._cache=new Set(this._def.values)),!this._cache.has(e.data)){let r=this._getOrReturnCtx(e),n=this._def.values;return k(r,{received:r.data,code:w.invalid_enum_value,options:n}),C}return Te(e.data)}get options(){return this._def.values}get enum(){let e={};for(let r of this._def.values)e[r]=r;return e}get Values(){let e={};for(let r of this._def.values)e[r]=r;return e}get Enum(){let e={};for(let r of this._def.values)e[r]=r;return e}extract(e,r=this._def){return t.create(e,{...this._def,...r})}exclude(e,r=this._def){return t.create(this.options.filter(n=>!e.includes(n)),{...this._def,...r})}};dr.create=Yd;var pr=class extends q{_parse(e){let r=H.getValidEnumValues(this._def.values),n=this._getOrReturnCtx(e);if(n.parsedType!==z.string&&n.parsedType!==z.number){let o=H.objectValues(r);return k(n,{expected:H.joinValues(o),received:n.parsedType,code:w.invalid_type}),C}if(this._cache||(this._cache=new Set(H.getValidEnumValues(this._def.values))),!this._cache.has(e.data)){let o=H.objectValues(r);return k(n,{received:n.data,code:w.invalid_enum_value,options:o}),C}return Te(e.data)}get enum(){return this._def.values}};pr.create=(t,e)=>new pr({values:t,typeName:$.ZodNativeEnum,...D(e)});var At=class extends q{unwrap(){return this._def.type}_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==z.promise&&r.common.async===!1)return k(r,{code:w.invalid_type,expected:z.promise,received:r.parsedType}),C;let n=r.parsedType===z.promise?r.data:Promise.resolve(r.data);return Te(n.then(o=>this._def.type.parseAsync(o,{path:r.path,errorMap:r.common.contextualErrorMap})))}};At.create=(t,e)=>new At({type:t,typeName:$.ZodPromise,...D(e)});var Ge=class extends q{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===$.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(e){let{status:r,ctx:n}=this._processInputParams(e),o=this._def.effect||null,s={addIssue:i=>{k(n,i),i.fatal?r.abort():r.dirty()},get path(){return n.path}};if(s.addIssue=s.addIssue.bind(s),o.type==="preprocess"){let i=o.transform(n.data,s);if(n.common.async)return Promise.resolve(i).then(async a=>{if(r.value==="aborted")return C;let c=await this._def.schema._parseAsync({data:a,path:n.path,parent:n});return c.status==="aborted"?C:c.status==="dirty"?er(c.value):r.value==="dirty"?er(c.value):c});{if(r.value==="aborted")return C;let a=this._def.schema._parseSync({data:i,path:n.path,parent:n});return a.status==="aborted"?C:a.status==="dirty"?er(a.value):r.value==="dirty"?er(a.value):a}}if(o.type==="refinement"){let i=a=>{let c=o.refinement(a,s);if(n.common.async)return Promise.resolve(c);if(c instanceof Promise)throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");return a};if(n.common.async===!1){let a=this._def.schema._parseSync({data:n.data,path:n.path,parent:n});return a.status==="aborted"?C:(a.status==="dirty"&&r.dirty(),i(a.value),{status:r.value,value:a.value})}else return this._def.schema._parseAsync({data:n.data,path:n.path,parent:n}).then(a=>a.status==="aborted"?C:(a.status==="dirty"&&r.dirty(),i(a.value).then(()=>({status:r.value,value:a.value}))))}if(o.type==="transform")if(n.common.async===!1){let i=this._def.schema._parseSync({data:n.data,path:n.path,parent:n});if(!Nt(i))return C;let a=o.transform(i.value,s);if(a instanceof Promise)throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");return{status:r.value,value:a}}else return this._def.schema._parseAsync({data:n.data,path:n.path,parent:n}).then(i=>Nt(i)?Promise.resolve(o.transform(i.value,s)).then(a=>({status:r.value,value:a})):C);H.assertNever(o)}};Ge.create=(t,e,r)=>new Ge({schema:t,typeName:$.ZodEffects,effect:e,...D(r)});Ge.createWithPreprocess=(t,e,r)=>new Ge({schema:e,effect:{type:"preprocess",transform:t},typeName:$.ZodEffects,...D(r)});var Ze=class extends q{_parse(e){return this._getType(e)===z.undefined?Te(void 0):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};Ze.create=(t,e)=>new Ze({innerType:t,typeName:$.ZodOptional,...D(e)});var gt=class extends q{_parse(e){return this._getType(e)===z.null?Te(null):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};gt.create=(t,e)=>new gt({innerType:t,typeName:$.ZodNullable,...D(e)});var fr=class extends q{_parse(e){let{ctx:r}=this._processInputParams(e),n=r.data;return r.parsedType===z.undefined&&(n=this._def.defaultValue()),this._def.innerType._parse({data:n,path:r.path,parent:r})}removeDefault(){return this._def.innerType}};fr.create=(t,e)=>new fr({innerType:t,typeName:$.ZodDefault,defaultValue:typeof e.default=="function"?e.default:()=>e.default,...D(e)});var mr=class extends q{_parse(e){let{ctx:r}=this._processInputParams(e),n={...r,common:{...r.common,issues:[]}},o=this._def.innerType._parse({data:n.data,path:n.path,parent:{...n}});return Dr(o)?o.then(s=>({status:"valid",value:s.status==="valid"?s.value:this._def.catchValue({get error(){return new Ce(n.common.issues)},input:n.data})})):{status:"valid",value:o.status==="valid"?o.value:this._def.catchValue({get error(){return new Ce(n.common.issues)},input:n.data})}}removeCatch(){return this._def.innerType}};mr.create=(t,e)=>new mr({innerType:t,typeName:$.ZodCatch,catchValue:typeof e.catch=="function"?e.catch:()=>e.catch,...D(e)});var Hr=class extends q{_parse(e){if(this._getType(e)!==z.nan){let n=this._getOrReturnCtx(e);return k(n,{code:w.invalid_type,expected:z.nan,received:n.parsedType}),C}return{status:"valid",value:e.data}}};Hr.create=t=>new Hr({typeName:$.ZodNaN,...D(t)});var Av=Symbol("zod_brand"),En=class extends q{_parse(e){let{ctx:r}=this._processInputParams(e),n=r.data;return this._def.type._parse({data:n,path:r.path,parent:r})}unwrap(){return this._def.type}},On=class t extends q{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.common.async)return(async()=>{let s=await this._def.in._parseAsync({data:n.data,path:n.path,parent:n});return s.status==="aborted"?C:s.status==="dirty"?(r.dirty(),er(s.value)):this._def.out._parseAsync({data:s.value,path:n.path,parent:n})})();{let o=this._def.in._parseSync({data:n.data,path:n.path,parent:n});return o.status==="aborted"?C:o.status==="dirty"?(r.dirty(),{status:"dirty",value:o.value}):this._def.out._parseSync({data:o.value,path:n.path,parent:n})}}static create(e,r){return new t({in:e,out:r,typeName:$.ZodPipeline})}},hr=class extends q{_parse(e){let r=this._def.innerType._parse(e),n=o=>(Nt(o)&&(o.value=Object.freeze(o.value)),o);return Dr(r)?r.then(o=>n(o)):n(r)}unwrap(){return this._def.innerType}};hr.create=(t,e)=>new hr({innerType:t,typeName:$.ZodReadonly,...D(e)});function Jd(t,e){let r=typeof t=="function"?t(e):typeof t=="string"?{message:t}:t;return typeof r=="string"?{message:r}:r}function Qd(t,e={},r){return t?Zt.create().superRefine((n,o)=>{let s=t(n);if(s instanceof Promise)return s.then(i=>{if(!i){let a=Jd(e,n),c=a.fatal??r??!0;o.addIssue({code:"custom",...a,fatal:c})}});if(!s){let i=Jd(e,n),a=i.fatal??r??!0;o.addIssue({code:"custom",...i,fatal:a})}}):Zt.create()}var Mv={object:Ae.lazycreate},$;(function(t){t.ZodString="ZodString",t.ZodNumber="ZodNumber",t.ZodNaN="ZodNaN",t.ZodBigInt="ZodBigInt",t.ZodBoolean="ZodBoolean",t.ZodDate="ZodDate",t.ZodSymbol="ZodSymbol",t.ZodUndefined="ZodUndefined",t.ZodNull="ZodNull",t.ZodAny="ZodAny",t.ZodUnknown="ZodUnknown",t.ZodNever="ZodNever",t.ZodVoid="ZodVoid",t.ZodArray="ZodArray",t.ZodObject="ZodObject",t.ZodUnion="ZodUnion",t.ZodDiscriminatedUnion="ZodDiscriminatedUnion",t.ZodIntersection="ZodIntersection",t.ZodTuple="ZodTuple",t.ZodRecord="ZodRecord",t.ZodMap="ZodMap",t.ZodSet="ZodSet",t.ZodFunction="ZodFunction",t.ZodLazy="ZodLazy",t.ZodLiteral="ZodLiteral",t.ZodEnum="ZodEnum",t.ZodEffects="ZodEffects",t.ZodNativeEnum="ZodNativeEnum",t.ZodOptional="ZodOptional",t.ZodNullable="ZodNullable",t.ZodDefault="ZodDefault",t.ZodCatch="ZodCatch",t.ZodPromise="ZodPromise",t.ZodBranded="ZodBranded",t.ZodPipeline="ZodPipeline",t.ZodReadonly="ZodReadonly"})($||($={}));var Dv=(t,e={message:`Input not instance of ${t.name}`})=>Qd(r=>r instanceof t,e),ep=Ct.create,tp=tr.create,Lv=Hr.create,qv=rr.create,rp=nr.create,Uv=or.create,Fv=qr.create,Vv=sr.create,Hv=ir.create,Bv=Zt.create,Kv=zt.create,Jv=ot.create,Xv=Ur.create,Gv=Tt.create,Fi=Ae.create,Wv=Ae.strictCreate,Yv=ar.create,Qv=Do.create,ex=cr.create,tx=ht.create,rx=Lo.create,nx=Fr.create,ox=Vr.create,sx=qo.create,ix=ur.create,ax=lr.create,cx=dr.create,ux=pr.create,lx=At.create,dx=Ge.create,px=Ze.create,fx=gt.create,mx=Ge.createWithPreprocess,hx=On.create,gx=()=>ep().optional(),yx=()=>tp().optional(),_x=()=>rp().optional(),vx={string:(t=>Ct.create({...t,coerce:!0})),number:(t=>tr.create({...t,coerce:!0})),boolean:(t=>nr.create({...t,coerce:!0})),bigint:(t=>rr.create({...t,coerce:!0})),date:(t=>or.create({...t,coerce:!0}))};var xx=C;var bx=Object.freeze({status:"aborted"});function _(t,e,r){function n(a,c){var u;Object.defineProperty(a,"_zod",{value:a._zod??{},enumerable:!1}),(u=a._zod).traits??(u.traits=new Set),a._zod.traits.add(t),e(a,c);for(let l in i.prototype)l in a||Object.defineProperty(a,l,{value:i.prototype[l].bind(a)});a._zod.constr=i,a._zod.def=c}let o=r?.Parent??Object;class s extends o{}Object.defineProperty(s,"name",{value:t});function i(a){var c;let u=r?.Parent?new s:this;n(u,a),(c=u._zod).deferred??(c.deferred=[]);for(let l of u._zod.deferred)l();return u}return Object.defineProperty(i,"init",{value:n}),Object.defineProperty(i,Symbol.hasInstance,{value:a=>r?.Parent&&a instanceof r.Parent?!0:a?._zod?.traits?.has(t)}),Object.defineProperty(i,"name",{value:t}),i}var Pt=class extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}},Uo={};function Be(t){return t&&Object.assign(Uo,t),Uo}var B={};jo(B,{BIGINT_FORMAT_RANGES:()=>op,Class:()=>Hi,NUMBER_FORMAT_RANGES:()=>Yi,aborted:()=>_r,allowsEval:()=>Xi,assert:()=>zx,assertEqual:()=>wx,assertIs:()=>kx,assertNever:()=>Sx,assertNotEqual:()=>$x,assignProp:()=>Ji,cached:()=>jn,captureStackTrace:()=>Vo,cleanEnum:()=>Dx,cleanRegex:()=>Cn,clone:()=>Ke,createTransparentProxy:()=>Rx,defineLazy:()=>ne,esc:()=>yr,escapeRegex:()=>Mt,extend:()=>Cx,finalizeIssue:()=>st,floatSafeRemainder:()=>Ki,getElementAtPath:()=>Tx,getEnumValues:()=>Rn,getLengthableOrigin:()=>Zn,getParsedType:()=>Ix,getSizableOrigin:()=>sp,isObject:()=>Br,isPlainObject:()=>Kr,issue:()=>Qi,joinValues:()=>Fo,jsonStringifyReplacer:()=>Bi,merge:()=>Zx,normalizeParams:()=>Z,nullish:()=>Nn,numKeys:()=>Ox,omit:()=>Nx,optionalKeys:()=>Wi,partial:()=>Ax,pick:()=>jx,prefixIssues:()=>yt,primitiveTypes:()=>np,promiseAllObject:()=>Px,propertyKeyTypes:()=>Gi,randomString:()=>Ex,required:()=>Mx,stringifyPrimitive:()=>Ho,unwrapMessage:()=>In});function wx(t){return t}function $x(t){return t}function kx(t){}function Sx(t){throw new Error}function zx(t){}function Rn(t){let e=Object.values(t).filter(n=>typeof n=="number");return Object.entries(t).filter(([n,o])=>e.indexOf(+n)===-1).map(([n,o])=>o)}function Fo(t,e="|"){return t.map(r=>Ho(r)).join(e)}function Bi(t,e){return typeof e=="bigint"?e.toString():e}function jn(t){return{get value(){{let r=t();return Object.defineProperty(this,"value",{value:r}),r}throw new Error("cached value already set")}}}function Nn(t){return t==null}function Cn(t){let e=t.startsWith("^")?1:0,r=t.endsWith("$")?t.length-1:t.length;return t.slice(e,r)}function Ki(t,e){let r=(t.toString().split(".")[1]||"").length,n=(e.toString().split(".")[1]||"").length,o=r>n?r:n,s=Number.parseInt(t.toFixed(o).replace(".","")),i=Number.parseInt(e.toFixed(o).replace(".",""));return s%i/10**o}function ne(t,e,r){Object.defineProperty(t,e,{get(){{let o=r();return t[e]=o,o}throw new Error("cached value already set")},set(o){Object.defineProperty(t,e,{value:o})},configurable:!0})}function Ji(t,e,r){Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!0,configurable:!0})}function Tx(t,e){return e?e.reduce((r,n)=>r?.[n],t):t}function Px(t){let e=Object.keys(t),r=e.map(n=>t[n]);return Promise.all(r).then(n=>{let o={};for(let s=0;s<e.length;s++)o[e[s]]=n[s];return o})}function Ex(t=10){let e="abcdefghijklmnopqrstuvwxyz",r="";for(let n=0;n<t;n++)r+=e[Math.floor(Math.random()*e.length)];return r}function yr(t){return JSON.stringify(t)}var Vo=Error.captureStackTrace?Error.captureStackTrace:(...t)=>{};function Br(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}var Xi=jn(()=>{if(typeof navigator<"u"&&navigator?.userAgent?.includes("Cloudflare"))return!1;try{let t=Function;return new t(""),!0}catch{return!1}});function Kr(t){if(Br(t)===!1)return!1;let e=t.constructor;if(e===void 0)return!0;let r=e.prototype;return!(Br(r)===!1||Object.prototype.hasOwnProperty.call(r,"isPrototypeOf")===!1)}function Ox(t){let e=0;for(let r in t)Object.prototype.hasOwnProperty.call(t,r)&&e++;return e}var Ix=t=>{let e=typeof t;switch(e){case"undefined":return"undefined";case"string":return"string";case"number":return Number.isNaN(t)?"nan":"number";case"boolean":return"boolean";case"function":return"function";case"bigint":return"bigint";case"symbol":return"symbol";case"object":return Array.isArray(t)?"array":t===null?"null":t.then&&typeof t.then=="function"&&t.catch&&typeof t.catch=="function"?"promise":typeof Map<"u"&&t instanceof Map?"map":typeof Set<"u"&&t instanceof Set?"set":typeof Date<"u"&&t instanceof Date?"date":typeof File<"u"&&t instanceof File?"file":"object";default:throw new Error(`Unknown data type: ${e}`)}},Gi=new Set(["string","number","symbol"]),np=new Set(["string","number","bigint","boolean","symbol","undefined"]);function Mt(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function Ke(t,e,r){let n=new t._zod.constr(e??t._zod.def);return(!e||r?.parent)&&(n._zod.parent=t),n}function Z(t){let e=t;if(!e)return{};if(typeof e=="string")return{error:()=>e};if(e?.message!==void 0){if(e?.error!==void 0)throw new Error("Cannot specify both `message` and `error` params");e.error=e.message}return delete e.message,typeof e.error=="string"?{...e,error:()=>e.error}:e}function Rx(t){let e;return new Proxy({},{get(r,n,o){return e??(e=t()),Reflect.get(e,n,o)},set(r,n,o,s){return e??(e=t()),Reflect.set(e,n,o,s)},has(r,n){return e??(e=t()),Reflect.has(e,n)},deleteProperty(r,n){return e??(e=t()),Reflect.deleteProperty(e,n)},ownKeys(r){return e??(e=t()),Reflect.ownKeys(e)},getOwnPropertyDescriptor(r,n){return e??(e=t()),Reflect.getOwnPropertyDescriptor(e,n)},defineProperty(r,n,o){return e??(e=t()),Reflect.defineProperty(e,n,o)}})}function Ho(t){return typeof t=="bigint"?t.toString()+"n":typeof t=="string"?`"${t}"`:`${t}`}function Wi(t){return Object.keys(t).filter(e=>t[e]._zod.optin==="optional"&&t[e]._zod.optout==="optional")}var Yi={safeint:[Number.MIN_SAFE_INTEGER,Number.MAX_SAFE_INTEGER],int32:[-2147483648,2147483647],uint32:[0,4294967295],float32:[-34028234663852886e22,34028234663852886e22],float64:[-Number.MAX_VALUE,Number.MAX_VALUE]},op={int64:[BigInt("-9223372036854775808"),BigInt("9223372036854775807")],uint64:[BigInt(0),BigInt("18446744073709551615")]};function jx(t,e){let r={},n=t._zod.def;for(let o in e){if(!(o in n.shape))throw new Error(`Unrecognized key: "${o}"`);e[o]&&(r[o]=n.shape[o])}return Ke(t,{...t._zod.def,shape:r,checks:[]})}function Nx(t,e){let r={...t._zod.def.shape},n=t._zod.def;for(let o in e){if(!(o in n.shape))throw new Error(`Unrecognized key: "${o}"`);e[o]&&delete r[o]}return Ke(t,{...t._zod.def,shape:r,checks:[]})}function Cx(t,e){if(!Kr(e))throw new Error("Invalid input to extend: expected a plain object");let r={...t._zod.def,get shape(){let n={...t._zod.def.shape,...e};return Ji(this,"shape",n),n},checks:[]};return Ke(t,r)}function Zx(t,e){return Ke(t,{...t._zod.def,get shape(){let r={...t._zod.def.shape,...e._zod.def.shape};return Ji(this,"shape",r),r},catchall:e._zod.def.catchall,checks:[]})}function Ax(t,e,r){let n=e._zod.def.shape,o={...n};if(r)for(let s in r){if(!(s in n))throw new Error(`Unrecognized key: "${s}"`);r[s]&&(o[s]=t?new t({type:"optional",innerType:n[s]}):n[s])}else for(let s in n)o[s]=t?new t({type:"optional",innerType:n[s]}):n[s];return Ke(e,{...e._zod.def,shape:o,checks:[]})}function Mx(t,e,r){let n=e._zod.def.shape,o={...n};if(r)for(let s in r){if(!(s in o))throw new Error(`Unrecognized key: "${s}"`);r[s]&&(o[s]=new t({type:"nonoptional",innerType:n[s]}))}else for(let s in n)o[s]=new t({type:"nonoptional",innerType:n[s]});return Ke(e,{...e._zod.def,shape:o,checks:[]})}function _r(t,e=0){for(let r=e;r<t.issues.length;r++)if(t.issues[r]?.continue!==!0)return!0;return!1}function yt(t,e){return e.map(r=>{var n;return(n=r).path??(n.path=[]),r.path.unshift(t),r})}function In(t){return typeof t=="string"?t:t?.message}function st(t,e,r){let n={...t,path:t.path??[]};if(!t.message){let o=In(t.inst?._zod.def?.error?.(t))??In(e?.error?.(t))??In(r.customError?.(t))??In(r.localeError?.(t))??"Invalid input";n.message=o}return delete n.inst,delete n.continue,e?.reportInput||delete n.input,n}function sp(t){return t instanceof Set?"set":t instanceof Map?"map":t instanceof File?"file":"unknown"}function Zn(t){return Array.isArray(t)?"array":typeof t=="string"?"string":"unknown"}function Qi(...t){let[e,r,n]=t;return typeof e=="string"?{message:e,code:"custom",input:r,inst:n}:{...e}}function Dx(t){return Object.entries(t).filter(([e,r])=>Number.isNaN(Number.parseInt(e,10))).map(e=>e[1])}var Hi=class{constructor(...e){}};var ip=(t,e)=>{t.name="$ZodError",Object.defineProperty(t,"_zod",{value:t._zod,enumerable:!1}),Object.defineProperty(t,"issues",{value:e,enumerable:!1}),Object.defineProperty(t,"message",{get(){return JSON.stringify(e,Bi,2)},enumerable:!0}),Object.defineProperty(t,"toString",{value:()=>t.message,enumerable:!1})},Bo=_("$ZodError",ip),An=_("$ZodError",ip,{Parent:Error});function ea(t,e=r=>r.message){let r={},n=[];for(let o of t.issues)o.path.length>0?(r[o.path[0]]=r[o.path[0]]||[],r[o.path[0]].push(e(o))):n.push(e(o));return{formErrors:n,fieldErrors:r}}function ta(t,e){let r=e||function(s){return s.message},n={_errors:[]},o=s=>{for(let i of s.issues)if(i.code==="invalid_union"&&i.errors.length)i.errors.map(a=>o({issues:a}));else if(i.code==="invalid_key")o({issues:i.issues});else if(i.code==="invalid_element")o({issues:i.issues});else if(i.path.length===0)n._errors.push(r(i));else{let a=n,c=0;for(;c<i.path.length;){let u=i.path[c];c===i.path.length-1?(a[u]=a[u]||{_errors:[]},a[u]._errors.push(r(i))):a[u]=a[u]||{_errors:[]},a=a[u],c++}}};return o(t),n}var ra=t=>(e,r,n,o)=>{let s=n?Object.assign(n,{async:!1}):{async:!1},i=e._zod.run({value:r,issues:[]},s);if(i instanceof Promise)throw new Pt;if(i.issues.length){let a=new(o?.Err??t)(i.issues.map(c=>st(c,s,Be())));throw Vo(a,o?.callee),a}return i.value},na=ra(An),oa=t=>async(e,r,n,o)=>{let s=n?Object.assign(n,{async:!0}):{async:!0},i=e._zod.run({value:r,issues:[]},s);if(i instanceof Promise&&(i=await i),i.issues.length){let a=new(o?.Err??t)(i.issues.map(c=>st(c,s,Be())));throw Vo(a,o?.callee),a}return i.value},sa=oa(An),ia=t=>(e,r,n)=>{let o=n?{...n,async:!1}:{async:!1},s=e._zod.run({value:r,issues:[]},o);if(s instanceof Promise)throw new Pt;return s.issues.length?{success:!1,error:new(t??Bo)(s.issues.map(i=>st(i,o,Be())))}:{success:!0,data:s.value}},vr=ia(An),aa=t=>async(e,r,n)=>{let o=n?Object.assign(n,{async:!0}):{async:!0},s=e._zod.run({value:r,issues:[]},o);return s instanceof Promise&&(s=await s),s.issues.length?{success:!1,error:new t(s.issues.map(i=>st(i,o,Be())))}:{success:!0,data:s.value}},xr=aa(An);var ap=/^[cC][^\s-]{8,}$/,cp=/^[0-9a-z]+$/,up=/^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/,lp=/^[0-9a-vA-V]{20}$/,dp=/^[A-Za-z0-9]{27}$/,pp=/^[a-zA-Z0-9_-]{21}$/,fp=/^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/;var mp=/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/,ca=t=>t?new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${t}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`):/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$/;var hp=/^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/;var qx="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";function gp(){return new RegExp(qx,"u")}var yp=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,_p=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})$/,vp=/^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/,xp=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,bp=/^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,ua=/^[A-Za-z0-9_-]*$/,wp=/^([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+$/;var $p=/^\+(?:[0-9]){6,14}[0-9]$/,kp="(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))",Sp=new RegExp(`^${kp}$`);function zp(t){let e="(?:[01]\\d|2[0-3]):[0-5]\\d";return typeof t.precision=="number"?t.precision===-1?`${e}`:t.precision===0?`${e}:[0-5]\\d`:`${e}:[0-5]\\d\\.\\d{${t.precision}}`:`${e}(?::[0-5]\\d(?:\\.\\d+)?)?`}function Tp(t){return new RegExp(`^${zp(t)}$`)}function Pp(t){let e=zp({precision:t.precision}),r=["Z"];t.local&&r.push(""),t.offset&&r.push("([+-]\\d{2}:\\d{2})");let n=`${e}(?:${r.join("|")})`;return new RegExp(`^${kp}T(?:${n})$`)}var Ep=t=>{let e=t?`[\\s\\S]{${t?.minimum??0},${t?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${e}$`)};var Op=/^\d+$/,Ip=/^-?\d+(?:\.\d+)?/i,Rp=/true|false/i,jp=/null/i;var Np=/^[^A-Z]*$/,Cp=/^[^a-z]*$/;var we=_("$ZodCheck",(t,e)=>{var r;t._zod??(t._zod={}),t._zod.def=e,(r=t._zod).onattach??(r.onattach=[])}),Zp={number:"number",bigint:"bigint",object:"date"},la=_("$ZodCheckLessThan",(t,e)=>{we.init(t,e);let r=Zp[typeof e.value];t._zod.onattach.push(n=>{let o=n._zod.bag,s=(e.inclusive?o.maximum:o.exclusiveMaximum)??Number.POSITIVE_INFINITY;e.value<s&&(e.inclusive?o.maximum=e.value:o.exclusiveMaximum=e.value)}),t._zod.check=n=>{(e.inclusive?n.value<=e.value:n.value<e.value)||n.issues.push({origin:r,code:"too_big",maximum:e.value,input:n.value,inclusive:e.inclusive,inst:t,continue:!e.abort})}}),da=_("$ZodCheckGreaterThan",(t,e)=>{we.init(t,e);let r=Zp[typeof e.value];t._zod.onattach.push(n=>{let o=n._zod.bag,s=(e.inclusive?o.minimum:o.exclusiveMinimum)??Number.NEGATIVE_INFINITY;e.value>s&&(e.inclusive?o.minimum=e.value:o.exclusiveMinimum=e.value)}),t._zod.check=n=>{(e.inclusive?n.value>=e.value:n.value>e.value)||n.issues.push({origin:r,code:"too_small",minimum:e.value,input:n.value,inclusive:e.inclusive,inst:t,continue:!e.abort})}}),Ap=_("$ZodCheckMultipleOf",(t,e)=>{we.init(t,e),t._zod.onattach.push(r=>{var n;(n=r._zod.bag).multipleOf??(n.multipleOf=e.value)}),t._zod.check=r=>{if(typeof r.value!=typeof e.value)throw new Error("Cannot mix number and bigint in multiple_of check.");(typeof r.value=="bigint"?r.value%e.value===BigInt(0):Ki(r.value,e.value)===0)||r.issues.push({origin:typeof r.value,code:"not_multiple_of",divisor:e.value,input:r.value,inst:t,continue:!e.abort})}}),Mp=_("$ZodCheckNumberFormat",(t,e)=>{we.init(t,e),e.format=e.format||"float64";let r=e.format?.includes("int"),n=r?"int":"number",[o,s]=Yi[e.format];t._zod.onattach.push(i=>{let a=i._zod.bag;a.format=e.format,a.minimum=o,a.maximum=s,r&&(a.pattern=Op)}),t._zod.check=i=>{let a=i.value;if(r){if(!Number.isInteger(a)){i.issues.push({expected:n,format:e.format,code:"invalid_type",input:a,inst:t});return}if(!Number.isSafeInteger(a)){a>0?i.issues.push({input:a,code:"too_big",maximum:Number.MAX_SAFE_INTEGER,note:"Integers must be within the safe integer range.",inst:t,origin:n,continue:!e.abort}):i.issues.push({input:a,code:"too_small",minimum:Number.MIN_SAFE_INTEGER,note:"Integers must be within the safe integer range.",inst:t,origin:n,continue:!e.abort});return}}a<o&&i.issues.push({origin:"number",input:a,code:"too_small",minimum:o,inclusive:!0,inst:t,continue:!e.abort}),a>s&&i.issues.push({origin:"number",input:a,code:"too_big",maximum:s,inst:t})}});var Dp=_("$ZodCheckMaxLength",(t,e)=>{var r;we.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!Nn(o)&&o.length!==void 0}),t._zod.onattach.push(n=>{let o=n._zod.bag.maximum??Number.POSITIVE_INFINITY;e.maximum<o&&(n._zod.bag.maximum=e.maximum)}),t._zod.check=n=>{let o=n.value;if(o.length<=e.maximum)return;let i=Zn(o);n.issues.push({origin:i,code:"too_big",maximum:e.maximum,inclusive:!0,input:o,inst:t,continue:!e.abort})}}),Lp=_("$ZodCheckMinLength",(t,e)=>{var r;we.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!Nn(o)&&o.length!==void 0}),t._zod.onattach.push(n=>{let o=n._zod.bag.minimum??Number.NEGATIVE_INFINITY;e.minimum>o&&(n._zod.bag.minimum=e.minimum)}),t._zod.check=n=>{let o=n.value;if(o.length>=e.minimum)return;let i=Zn(o);n.issues.push({origin:i,code:"too_small",minimum:e.minimum,inclusive:!0,input:o,inst:t,continue:!e.abort})}}),qp=_("$ZodCheckLengthEquals",(t,e)=>{var r;we.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!Nn(o)&&o.length!==void 0}),t._zod.onattach.push(n=>{let o=n._zod.bag;o.minimum=e.length,o.maximum=e.length,o.length=e.length}),t._zod.check=n=>{let o=n.value,s=o.length;if(s===e.length)return;let i=Zn(o),a=s>e.length;n.issues.push({origin:i,...a?{code:"too_big",maximum:e.length}:{code:"too_small",minimum:e.length},inclusive:!0,exact:!0,input:n.value,inst:t,continue:!e.abort})}}),Mn=_("$ZodCheckStringFormat",(t,e)=>{var r,n;we.init(t,e),t._zod.onattach.push(o=>{let s=o._zod.bag;s.format=e.format,e.pattern&&(s.patterns??(s.patterns=new Set),s.patterns.add(e.pattern))}),e.pattern?(r=t._zod).check??(r.check=o=>{e.pattern.lastIndex=0,!e.pattern.test(o.value)&&o.issues.push({origin:"string",code:"invalid_format",format:e.format,input:o.value,...e.pattern?{pattern:e.pattern.toString()}:{},inst:t,continue:!e.abort})}):(n=t._zod).check??(n.check=()=>{})}),Up=_("$ZodCheckRegex",(t,e)=>{Mn.init(t,e),t._zod.check=r=>{e.pattern.lastIndex=0,!e.pattern.test(r.value)&&r.issues.push({origin:"string",code:"invalid_format",format:"regex",input:r.value,pattern:e.pattern.toString(),inst:t,continue:!e.abort})}}),Fp=_("$ZodCheckLowerCase",(t,e)=>{e.pattern??(e.pattern=Np),Mn.init(t,e)}),Vp=_("$ZodCheckUpperCase",(t,e)=>{e.pattern??(e.pattern=Cp),Mn.init(t,e)}),Hp=_("$ZodCheckIncludes",(t,e)=>{we.init(t,e);let r=Mt(e.includes),n=new RegExp(typeof e.position=="number"?`^.{${e.position}}${r}`:r);e.pattern=n,t._zod.onattach.push(o=>{let s=o._zod.bag;s.patterns??(s.patterns=new Set),s.patterns.add(n)}),t._zod.check=o=>{o.value.includes(e.includes,e.position)||o.issues.push({origin:"string",code:"invalid_format",format:"includes",includes:e.includes,input:o.value,inst:t,continue:!e.abort})}}),Bp=_("$ZodCheckStartsWith",(t,e)=>{we.init(t,e);let r=new RegExp(`^${Mt(e.prefix)}.*`);e.pattern??(e.pattern=r),t._zod.onattach.push(n=>{let o=n._zod.bag;o.patterns??(o.patterns=new Set),o.patterns.add(r)}),t._zod.check=n=>{n.value.startsWith(e.prefix)||n.issues.push({origin:"string",code:"invalid_format",format:"starts_with",prefix:e.prefix,input:n.value,inst:t,continue:!e.abort})}}),Kp=_("$ZodCheckEndsWith",(t,e)=>{we.init(t,e);let r=new RegExp(`.*${Mt(e.suffix)}$`);e.pattern??(e.pattern=r),t._zod.onattach.push(n=>{let o=n._zod.bag;o.patterns??(o.patterns=new Set),o.patterns.add(r)}),t._zod.check=n=>{n.value.endsWith(e.suffix)||n.issues.push({origin:"string",code:"invalid_format",format:"ends_with",suffix:e.suffix,input:n.value,inst:t,continue:!e.abort})}});var Jp=_("$ZodCheckOverwrite",(t,e)=>{we.init(t,e),t._zod.check=r=>{r.value=e.tx(r.value)}});var Jo=class{constructor(e=[]){this.content=[],this.indent=0,this&&(this.args=e)}indented(e){this.indent+=1,e(this),this.indent-=1}write(e){if(typeof e=="function"){e(this,{execution:"sync"}),e(this,{execution:"async"});return}let n=e.split(`
|
|
110
|
+
OIOXO saved ~${a.savedTokens.toLocaleString()} tokens of context on this task.`),!r.yes&&!await pp(`
|
|
111
|
+
Apply these changes to your files?`)){console.log("Discarded. Nothing was written.");return}await Vv(t,a.edits),console.log(`
|
|
112
|
+
\u2713 applied ${a.edits.length} file(s).${a.ok?"":" (unverified \u2014 run your tests)"}`),await Ie("report",a.savedTokens).catch(()=>{})}async function Vv(t,e){let r=Cn.resolve(t);for(let n of e){if(!Yi(n.path)){console.error(` \u26A0 skipped unsafe path: ${n.path}`);continue}let o=Cn.resolve(r,n.path);if(o!==r&&!o.startsWith(r+Cn.sep)){console.error(` \u26A0 skipped path escaping repo: ${n.path}`);continue}await Dv(Cn.dirname(o),{recursive:!0}),await Mv(o,n.content,"utf8")}}async function pp(t){if(!process.stdin.isTTY)return console.log(`${t} (no TTY \u2014 pass --yes to apply non-interactively)`),!1;let e=fp({input:process.stdin,output:process.stdout});try{let r=(await e.question(`${t} [y/N] `)).trim().toLowerCase();return r==="y"||r==="yes"}finally{e.close()}}import*as na from"node:os";var ra=[{id:"openai",note:"set OPENAI_API_KEY or config apiKey"},{id:"anthropic",note:"set ANTHROPIC_API_KEY or config apiKey"},{id:"groq",note:"set GROQ_API_KEY or config apiKey"},{id:"mistral",note:"config apiKey"},{id:"together",note:"config apiKey"},{id:"ollama",note:"local, no key \u2014 config model qwen2.5-coder"},{id:"custom",note:"any OpenAI-compatible base \u2014 config baseUrl + apiKey"}];async function hp(t){let[e,...r]=t;if(!e||e==="list"){console.log(`
|
|
113
|
+
OIOXO coding agent \u2014 how to run it:
|
|
114
|
+
`),console.log(" Providers (bring your own key):");for(let o of ra)console.log(` ${o.id.padEnd(10)} ${o.note}`);console.log(`
|
|
115
|
+
Local & private:`),console.log(" ollama keyless, on your machine"),console.log(" --local built-in on-device coder (coming next)");let n=await ir();n.provider&&console.log(`
|
|
116
|
+
Current pin: ${n.provider}${n.model?" / "+n.model:""}`),console.log(`
|
|
117
|
+
Pin one with: oioxo model use <provider> [model]`);return}if(e==="use"){let[n,o]=r;if(!n){console.error("Usage: oioxo model use <provider> [model]"),process.exitCode=1;return}if(!ra.some(i=>i.id===n)){console.error(`Unknown provider "${n}". Known: ${ra.map(i=>i.id).join(", ")}`),process.exitCode=1;return}let s=await ir();s.provider=n,o&&(s.model=o),await Xo(s),console.log(`Pinned ${n}${o?" / "+o:""}. ${n!=="ollama"&&n!=="custom"?"Set your key with `oioxo config set apiKey <key>` or the provider env var.":""}`);return}console.error(`Unknown model command "${e}". Use: list | use`),process.exitCode=1}async function gp(t){let[e]=t;if(e&&e!=="list"&&e!=="status"){console.error(`Unknown mcp command "${e}". Use: list`),process.exitCode=1;return}let r=process.cwd(),n=await Hi(r,na.homedir());console.log(`
|
|
118
|
+
OIOXO context engine \u2014 agent wiring (this project + machine):
|
|
119
|
+
`);for(let o of n){let s=o.configured?"\u2713 wired":o.detected?"\xB7 detected, not wired":"\xB7 not detected";console.log(` ${o.display.padEnd(26)} ${s}`)}console.log(`
|
|
120
|
+
Wire one (or all): oioxo init [--all]`)}async function yp(){let t=await or();if(!t||t.expiresAt<=Date.now()){console.log("Not signed in. Run `oioxo login` to connect your OIOXO account.");return}let e=Math.max(0,Math.round((t.expiresAt-Date.now())/864e5));console.log(`
|
|
121
|
+
Signed in${t.email?` as ${t.email}`:""} (credential valid ~${e}d).`);let r=await Ie("check");r&&console.log(`Plan: ${oa(r)}`)}async function _p(t){if(!await Nt()){console.log("Not signed in. Run `oioxo login`.");return}let e=await Ie("check");if(!e){console.error("Could not reach oioxo.com to read your usage."),process.exitCode=1;return}if(t.includes("--json")){console.log(JSON.stringify(e));return}console.log(`
|
|
122
|
+
OIOXO usage`),console.log(` Plan : ${oa(e)}`),e.tier==="free"&&(console.log(` Saved : ${(e.savedThisMonth??0).toLocaleString()} tokens this month`),console.log(` Remaining : ${(e.remainingTokens??0).toLocaleString()} of ${(e.capTokens??0).toLocaleString()}`),e.resetsAt&&console.log(` Resets : ${new Date(e.resetsAt).toUTCString()}`),console.log(` Upgrade : ${nr}`))}async function vp(){console.log(`
|
|
123
|
+
OIOXO doctor
|
|
124
|
+
`);let t=process.versions.node,e=Number(t.split(".")[0])>=18;Jo(e,`Node ${t}`,e?"":"OIOXO needs Node \u2265 18.17"),console.log(` \xB7 Control plane: ${kt}`);let r=!1;try{r=(await fetch(kt+"/api/version",{signal:AbortSignal.timeout(6e3)})).ok}catch{r=!1}Jo(r,"Control plane reachable",r?"":"could not reach oioxo.com (offline or blocked)");let n=await Nt();if(Jo(n,n?"Signed in":"Not signed in",n?"":"run `oioxo login`"),n){let c=await Ie("check");c&&console.log(` \xB7 Plan: ${oa(c)}`)}let o=await ir(),s=sr.filter(c=>o[c]!=null);if(s.length)console.log(` \xB7 Coder pin: ${s.map(c=>`${c}=${Nn(c,String(o[c]))}`).join(" ")}`);else{let c=["OIOXO_PROVIDER","OPENAI_API_KEY","ANTHROPIC_API_KEY","GROQ_API_KEY"].filter(u=>process.env[u]);console.log(` \xB7 Coder: ${c.length?"from env ("+c.join(", ")+")":"not configured \u2014 `oioxo model use <provider>` or set a key"}`)}let a=(await Hi(process.cwd(),na.homedir())).filter(c=>c.configured);Jo(a.length>0,`Agents wired: ${a.length?a.map(c=>c.display).join(", "):"none"}`,a.length?"":"run `oioxo init` to wire your AI agent"),console.log("")}function xp(t){console.log(`
|
|
125
|
+
OIOXO CLI ${t}`),console.log("Update to the latest with:"),console.log(" npm : npm i -g oioxo-mcp@latest"),console.log(" npx : npx oioxo-mcp@latest <command> (always runs the newest)")}function oa(t){return t.tier==="pro"?"OIOXO Pro \u2014 unlimited":t.tier==="free"?"OIOXO Free \u2014 monthly allowance":t.tier}function Jo(t,e,r){console.log(` ${t?"\u2713":"\u2717"} ${e}${r?` \u2014 ${r}`:""}`)}var $r={};qo($r,{BRAND:()=>gx,DIRTY:()=>ar,EMPTY_PATH:()=>Xv,INVALID:()=>C,NEVER:()=>Qx,OK:()=>Te,ParseStatus:()=>we,Schema:()=>q,ZodAny:()=>Dt,ZodArray:()=>Pt,ZodBigInt:()=>ur,ZodBoolean:()=>lr,ZodBranded:()=>An,ZodCatch:()=>wr,ZodDate:()=>dr,ZodDefault:()=>xr,ZodDiscriminatedUnion:()=>Yo,ZodEffects:()=>We,ZodEnum:()=>_r,ZodError:()=>Ae,ZodFirstPartyTypeKind:()=>$,ZodFunction:()=>es,ZodIntersection:()=>hr,ZodIssueCode:()=>b,ZodLazy:()=>gr,ZodLiteral:()=>yr,ZodMap:()=>Jr,ZodNaN:()=>Wr,ZodNativeEnum:()=>vr,ZodNever:()=>st,ZodNull:()=>fr,ZodNullable:()=>gt,ZodNumber:()=>cr,ZodObject:()=>De,ZodOptional:()=>Me,ZodParsedType:()=>z,ZodPipeline:()=>Mn,ZodPromise:()=>Lt,ZodReadonly:()=>br,ZodRecord:()=>Qo,ZodSchema:()=>q,ZodSet:()=>Gr,ZodString:()=>Mt,ZodSymbol:()=>Br,ZodTransformer:()=>We,ZodTuple:()=>ht,ZodType:()=>q,ZodUndefined:()=>pr,ZodUnion:()=>mr,ZodUnknown:()=>Tt,ZodVoid:()=>Xr,addIssueToContext:()=>k,any:()=>Sx,array:()=>Ox,bigint:()=>xx,boolean:()=>Ip,coerce:()=>Yx,custom:()=>Pp,date:()=>wx,datetimeRegex:()=>zp,defaultErrorMap:()=>St,discriminatedUnion:()=>Rx,effect:()=>Vx,enum:()=>qx,function:()=>Mx,getErrorMap:()=>Vr,getParsedType:()=>mt,instanceof:()=>_x,intersection:()=>jx,isAborted:()=>Go,isAsync:()=>Hr,isDirty:()=>Wo,isValid:()=>At,late:()=>yx,lazy:()=>Dx,literal:()=>Lx,makeIssue:()=>Zn,map:()=>Zx,nan:()=>vx,nativeEnum:()=>Ux,never:()=>Tx,null:()=>kx,nullable:()=>Kx,number:()=>Ep,object:()=>ca,objectUtil:()=>sa,oboolean:()=>Wx,onumber:()=>Gx,optional:()=>Hx,ostring:()=>Jx,pipeline:()=>Xx,preprocess:()=>Bx,promise:()=>Fx,quotelessJson:()=>Hv,record:()=>Cx,set:()=>Ax,setErrorMap:()=>Bv,strictObject:()=>Ex,string:()=>Op,symbol:()=>bx,transformer:()=>Vx,tuple:()=>Nx,undefined:()=>$x,union:()=>Ix,unknown:()=>zx,util:()=>H,void:()=>Px});var H;(function(t){t.assertEqual=o=>{};function e(o){}t.assertIs=e;function r(o){throw new Error}t.assertNever=r,t.arrayToEnum=o=>{let s={};for(let i of o)s[i]=i;return s},t.getValidEnumValues=o=>{let s=t.objectKeys(o).filter(a=>typeof o[o[a]]!="number"),i={};for(let a of s)i[a]=o[a];return t.objectValues(i)},t.objectValues=o=>t.objectKeys(o).map(function(s){return o[s]}),t.objectKeys=typeof Object.keys=="function"?o=>Object.keys(o):o=>{let s=[];for(let i in o)Object.prototype.hasOwnProperty.call(o,i)&&s.push(i);return s},t.find=(o,s)=>{for(let i of o)if(s(i))return i},t.isInteger=typeof Number.isInteger=="function"?o=>Number.isInteger(o):o=>typeof o=="number"&&Number.isFinite(o)&&Math.floor(o)===o;function n(o,s=" | "){return o.map(i=>typeof i=="string"?`'${i}'`:i).join(s)}t.joinValues=n,t.jsonStringifyReplacer=(o,s)=>typeof s=="bigint"?s.toString():s})(H||(H={}));var sa;(function(t){t.mergeShapes=(e,r)=>({...e,...r})})(sa||(sa={}));var z=H.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),mt=t=>{switch(typeof t){case"undefined":return z.undefined;case"string":return z.string;case"number":return Number.isNaN(t)?z.nan:z.number;case"boolean":return z.boolean;case"function":return z.function;case"bigint":return z.bigint;case"symbol":return z.symbol;case"object":return Array.isArray(t)?z.array:t===null?z.null:t.then&&typeof t.then=="function"&&t.catch&&typeof t.catch=="function"?z.promise:typeof Map<"u"&&t instanceof Map?z.map:typeof Set<"u"&&t instanceof Set?z.set:typeof Date<"u"&&t instanceof Date?z.date:z.object;default:return z.unknown}};var b=H.arrayToEnum(["invalid_type","invalid_literal","custom","invalid_union","invalid_union_discriminator","invalid_enum_value","unrecognized_keys","invalid_arguments","invalid_return_type","invalid_date","invalid_string","too_small","too_big","invalid_intersection_types","not_multiple_of","not_finite"]),Hv=t=>JSON.stringify(t,null,2).replace(/"([^"]+)":/g,"$1:"),Ae=class t extends Error{get errors(){return this.issues}constructor(e){super(),this.issues=[],this.addIssue=n=>{this.issues=[...this.issues,n]},this.addIssues=(n=[])=>{this.issues=[...this.issues,...n]};let r=new.target.prototype;Object.setPrototypeOf?Object.setPrototypeOf(this,r):this.__proto__=r,this.name="ZodError",this.issues=e}format(e){let r=e||function(s){return s.message},n={_errors:[]},o=s=>{for(let i of s.issues)if(i.code==="invalid_union")i.unionErrors.map(o);else if(i.code==="invalid_return_type")o(i.returnTypeError);else if(i.code==="invalid_arguments")o(i.argumentsError);else if(i.path.length===0)n._errors.push(r(i));else{let a=n,c=0;for(;c<i.path.length;){let u=i.path[c];c===i.path.length-1?(a[u]=a[u]||{_errors:[]},a[u]._errors.push(r(i))):a[u]=a[u]||{_errors:[]},a=a[u],c++}}};return o(this),n}static assert(e){if(!(e instanceof t))throw new Error(`Not a ZodError: ${e}`)}toString(){return this.message}get message(){return JSON.stringify(this.issues,H.jsonStringifyReplacer,2)}get isEmpty(){return this.issues.length===0}flatten(e=r=>r.message){let r={},n=[];for(let o of this.issues)if(o.path.length>0){let s=o.path[0];r[s]=r[s]||[],r[s].push(e(o))}else n.push(e(o));return{formErrors:n,fieldErrors:r}}get formErrors(){return this.flatten()}};Ae.create=t=>new Ae(t);var Kv=(t,e)=>{let r;switch(t.code){case b.invalid_type:t.received===z.undefined?r="Required":r=`Expected ${t.expected}, received ${t.received}`;break;case b.invalid_literal:r=`Invalid literal value, expected ${JSON.stringify(t.expected,H.jsonStringifyReplacer)}`;break;case b.unrecognized_keys:r=`Unrecognized key(s) in object: ${H.joinValues(t.keys,", ")}`;break;case b.invalid_union:r="Invalid input";break;case b.invalid_union_discriminator:r=`Invalid discriminator value. Expected ${H.joinValues(t.options)}`;break;case b.invalid_enum_value:r=`Invalid enum value. Expected ${H.joinValues(t.options)}, received '${t.received}'`;break;case b.invalid_arguments:r="Invalid function arguments";break;case b.invalid_return_type:r="Invalid function return type";break;case b.invalid_date:r="Invalid date";break;case b.invalid_string:typeof t.validation=="object"?"includes"in t.validation?(r=`Invalid input: must include "${t.validation.includes}"`,typeof t.validation.position=="number"&&(r=`${r} at one or more positions greater than or equal to ${t.validation.position}`)):"startsWith"in t.validation?r=`Invalid input: must start with "${t.validation.startsWith}"`:"endsWith"in t.validation?r=`Invalid input: must end with "${t.validation.endsWith}"`:H.assertNever(t.validation):t.validation!=="regex"?r=`Invalid ${t.validation}`:r="Invalid";break;case b.too_small:t.type==="array"?r=`Array must contain ${t.exact?"exactly":t.inclusive?"at least":"more than"} ${t.minimum} element(s)`:t.type==="string"?r=`String must contain ${t.exact?"exactly":t.inclusive?"at least":"over"} ${t.minimum} character(s)`:t.type==="number"?r=`Number must be ${t.exact?"exactly equal to ":t.inclusive?"greater than or equal to ":"greater than "}${t.minimum}`:t.type==="bigint"?r=`Number must be ${t.exact?"exactly equal to ":t.inclusive?"greater than or equal to ":"greater than "}${t.minimum}`:t.type==="date"?r=`Date must be ${t.exact?"exactly equal to ":t.inclusive?"greater than or equal to ":"greater than "}${new Date(Number(t.minimum))}`:r="Invalid input";break;case b.too_big:t.type==="array"?r=`Array must contain ${t.exact?"exactly":t.inclusive?"at most":"less than"} ${t.maximum} element(s)`:t.type==="string"?r=`String must contain ${t.exact?"exactly":t.inclusive?"at most":"under"} ${t.maximum} character(s)`:t.type==="number"?r=`Number must be ${t.exact?"exactly":t.inclusive?"less than or equal to":"less than"} ${t.maximum}`:t.type==="bigint"?r=`BigInt must be ${t.exact?"exactly":t.inclusive?"less than or equal to":"less than"} ${t.maximum}`:t.type==="date"?r=`Date must be ${t.exact?"exactly":t.inclusive?"smaller than or equal to":"smaller than"} ${new Date(Number(t.maximum))}`:r="Invalid input";break;case b.custom:r="Invalid input";break;case b.invalid_intersection_types:r="Intersection results could not be merged";break;case b.not_multiple_of:r=`Number must be a multiple of ${t.multipleOf}`;break;case b.not_finite:r="Number must be finite";break;default:r=e.defaultError,H.assertNever(t)}return{message:r}},St=Kv;var wp=St;function Bv(t){wp=t}function Vr(){return wp}var Zn=t=>{let{data:e,path:r,errorMaps:n,issueData:o}=t,s=[...r,...o.path||[]],i={...o,path:s};if(o.message!==void 0)return{...o,path:s,message:o.message};let a="",c=n.filter(u=>!!u).slice().reverse();for(let u of c)a=u(i,{data:e,defaultError:a}).message;return{...o,path:s,message:a}},Xv=[];function k(t,e){let r=Vr(),n=Zn({issueData:e,data:t.data,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,r,r===St?void 0:St].filter(o=>!!o)});t.common.issues.push(n)}var we=class t{constructor(){this.value="valid"}dirty(){this.value==="valid"&&(this.value="dirty")}abort(){this.value!=="aborted"&&(this.value="aborted")}static mergeArray(e,r){let n=[];for(let o of r){if(o.status==="aborted")return C;o.status==="dirty"&&e.dirty(),n.push(o.value)}return{status:e.value,value:n}}static async mergeObjectAsync(e,r){let n=[];for(let o of r){let s=await o.key,i=await o.value;n.push({key:s,value:i})}return t.mergeObjectSync(e,n)}static mergeObjectSync(e,r){let n={};for(let o of r){let{key:s,value:i}=o;if(s.status==="aborted"||i.status==="aborted")return C;s.status==="dirty"&&e.dirty(),i.status==="dirty"&&e.dirty(),s.value!=="__proto__"&&(typeof i.value<"u"||o.alwaysSet)&&(n[s.value]=i.value)}return{status:e.value,value:n}}},C=Object.freeze({status:"aborted"}),ar=t=>({status:"dirty",value:t}),Te=t=>({status:"valid",value:t}),Go=t=>t.status==="aborted",Wo=t=>t.status==="dirty",At=t=>t.status==="valid",Hr=t=>typeof Promise<"u"&&t instanceof Promise;var O;(function(t){t.errToObj=e=>typeof e=="string"?{message:e}:e||{},t.toString=e=>typeof e=="string"?e:e?.message})(O||(O={}));var Ge=class{constructor(e,r,n,o){this._cachedPath=[],this.parent=e,this.data=r,this._path=n,this._key=o}get path(){return this._cachedPath.length||(Array.isArray(this._key)?this._cachedPath.push(...this._path,...this._key):this._cachedPath.push(...this._path,this._key)),this._cachedPath}},bp=(t,e)=>{if(At(e))return{success:!0,data:e.value};if(!t.common.issues.length)throw new Error("Validation failed but no issues detected.");return{success:!1,get error(){if(this._error)return this._error;let r=new Ae(t.common.issues);return this._error=r,this._error}}};function D(t){if(!t)return{};let{errorMap:e,invalid_type_error:r,required_error:n,description:o}=t;if(e&&(r||n))throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);return e?{errorMap:e,description:o}:{errorMap:(i,a)=>{let{message:c}=t;return i.code==="invalid_enum_value"?{message:c??a.defaultError}:typeof a.data>"u"?{message:c??n??a.defaultError}:i.code!=="invalid_type"?{message:a.defaultError}:{message:c??r??a.defaultError}},description:o}}var q=class{get description(){return this._def.description}_getType(e){return mt(e.data)}_getOrReturnCtx(e,r){return r||{common:e.parent.common,data:e.data,parsedType:mt(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}_processInputParams(e){return{status:new we,ctx:{common:e.parent.common,data:e.data,parsedType:mt(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}}_parseSync(e){let r=this._parse(e);if(Hr(r))throw new Error("Synchronous parse encountered promise.");return r}_parseAsync(e){let r=this._parse(e);return Promise.resolve(r)}parse(e,r){let n=this.safeParse(e,r);if(n.success)return n.data;throw n.error}safeParse(e,r){let n={common:{issues:[],async:r?.async??!1,contextualErrorMap:r?.errorMap},path:r?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:mt(e)},o=this._parseSync({data:e,path:n.path,parent:n});return bp(n,o)}"~validate"(e){let r={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:mt(e)};if(!this["~standard"].async)try{let n=this._parseSync({data:e,path:[],parent:r});return At(n)?{value:n.value}:{issues:r.common.issues}}catch(n){n?.message?.toLowerCase()?.includes("encountered")&&(this["~standard"].async=!0),r.common={issues:[],async:!0}}return this._parseAsync({data:e,path:[],parent:r}).then(n=>At(n)?{value:n.value}:{issues:r.common.issues})}async parseAsync(e,r){let n=await this.safeParseAsync(e,r);if(n.success)return n.data;throw n.error}async safeParseAsync(e,r){let n={common:{issues:[],contextualErrorMap:r?.errorMap,async:!0},path:r?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:mt(e)},o=this._parse({data:e,path:n.path,parent:n}),s=await(Hr(o)?o:Promise.resolve(o));return bp(n,s)}refine(e,r){let n=o=>typeof r=="string"||typeof r>"u"?{message:r}:typeof r=="function"?r(o):r;return this._refinement((o,s)=>{let i=e(o),a=()=>s.addIssue({code:b.custom,...n(o)});return typeof Promise<"u"&&i instanceof Promise?i.then(c=>c?!0:(a(),!1)):i?!0:(a(),!1)})}refinement(e,r){return this._refinement((n,o)=>e(n)?!0:(o.addIssue(typeof r=="function"?r(n,o):r),!1))}_refinement(e){return new We({schema:this,typeName:$.ZodEffects,effect:{type:"refinement",refinement:e}})}superRefine(e){return this._refinement(e)}constructor(e){this.spa=this.safeParseAsync,this._def=e,this.parse=this.parse.bind(this),this.safeParse=this.safeParse.bind(this),this.parseAsync=this.parseAsync.bind(this),this.safeParseAsync=this.safeParseAsync.bind(this),this.spa=this.spa.bind(this),this.refine=this.refine.bind(this),this.refinement=this.refinement.bind(this),this.superRefine=this.superRefine.bind(this),this.optional=this.optional.bind(this),this.nullable=this.nullable.bind(this),this.nullish=this.nullish.bind(this),this.array=this.array.bind(this),this.promise=this.promise.bind(this),this.or=this.or.bind(this),this.and=this.and.bind(this),this.transform=this.transform.bind(this),this.brand=this.brand.bind(this),this.default=this.default.bind(this),this.catch=this.catch.bind(this),this.describe=this.describe.bind(this),this.pipe=this.pipe.bind(this),this.readonly=this.readonly.bind(this),this.isNullable=this.isNullable.bind(this),this.isOptional=this.isOptional.bind(this),this["~standard"]={version:1,vendor:"zod",validate:r=>this["~validate"](r)}}optional(){return Me.create(this,this._def)}nullable(){return gt.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return Pt.create(this)}promise(){return Lt.create(this,this._def)}or(e){return mr.create([this,e],this._def)}and(e){return hr.create(this,e,this._def)}transform(e){return new We({...D(this._def),schema:this,typeName:$.ZodEffects,effect:{type:"transform",transform:e}})}default(e){let r=typeof e=="function"?e:()=>e;return new xr({...D(this._def),innerType:this,defaultValue:r,typeName:$.ZodDefault})}brand(){return new An({typeName:$.ZodBranded,type:this,...D(this._def)})}catch(e){let r=typeof e=="function"?e:()=>e;return new wr({...D(this._def),innerType:this,catchValue:r,typeName:$.ZodCatch})}describe(e){let r=this.constructor;return new r({...this._def,description:e})}pipe(e){return Mn.create(this,e)}readonly(){return br.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}},Jv=/^c[^\s-]{8,}$/i,Gv=/^[0-9a-z]+$/,Wv=/^[0-9A-HJKMNP-TV-Z]{26}$/i,Yv=/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i,Qv=/^[a-z0-9_-]{21}$/i,ex=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/,tx=/^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/,rx=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,nx="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$",ia,ox=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,sx=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/,ix=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,ax=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,cx=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,ux=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,kp="((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))",lx=new RegExp(`^${kp}$`);function Sp(t){let e="[0-5]\\d";t.precision?e=`${e}\\.\\d{${t.precision}}`:t.precision==null&&(e=`${e}(\\.\\d+)?`);let r=t.precision?"+":"?";return`([01]\\d|2[0-3]):[0-5]\\d(:${e})${r}`}function dx(t){return new RegExp(`^${Sp(t)}$`)}function zp(t){let e=`${kp}T${Sp(t)}`,r=[];return r.push(t.local?"Z?":"Z"),t.offset&&r.push("([+-]\\d{2}:?\\d{2})"),e=`${e}(${r.join("|")})`,new RegExp(`^${e}$`)}function px(t,e){return!!((e==="v4"||!e)&&ox.test(t)||(e==="v6"||!e)&&ix.test(t))}function fx(t,e){if(!ex.test(t))return!1;try{let[r]=t.split(".");if(!r)return!1;let n=r.replace(/-/g,"+").replace(/_/g,"/").padEnd(r.length+(4-r.length%4)%4,"="),o=JSON.parse(atob(n));return!(typeof o!="object"||o===null||"typ"in o&&o?.typ!=="JWT"||!o.alg||e&&o.alg!==e)}catch{return!1}}function mx(t,e){return!!((e==="v4"||!e)&&sx.test(t)||(e==="v6"||!e)&&ax.test(t))}var Mt=class t extends q{_parse(e){if(this._def.coerce&&(e.data=String(e.data)),this._getType(e)!==z.string){let s=this._getOrReturnCtx(e);return k(s,{code:b.invalid_type,expected:z.string,received:s.parsedType}),C}let n=new we,o;for(let s of this._def.checks)if(s.kind==="min")e.data.length<s.value&&(o=this._getOrReturnCtx(e,o),k(o,{code:b.too_small,minimum:s.value,type:"string",inclusive:!0,exact:!1,message:s.message}),n.dirty());else if(s.kind==="max")e.data.length>s.value&&(o=this._getOrReturnCtx(e,o),k(o,{code:b.too_big,maximum:s.value,type:"string",inclusive:!0,exact:!1,message:s.message}),n.dirty());else if(s.kind==="length"){let i=e.data.length>s.value,a=e.data.length<s.value;(i||a)&&(o=this._getOrReturnCtx(e,o),i?k(o,{code:b.too_big,maximum:s.value,type:"string",inclusive:!0,exact:!0,message:s.message}):a&&k(o,{code:b.too_small,minimum:s.value,type:"string",inclusive:!0,exact:!0,message:s.message}),n.dirty())}else if(s.kind==="email")rx.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"email",code:b.invalid_string,message:s.message}),n.dirty());else if(s.kind==="emoji")ia||(ia=new RegExp(nx,"u")),ia.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"emoji",code:b.invalid_string,message:s.message}),n.dirty());else if(s.kind==="uuid")Yv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"uuid",code:b.invalid_string,message:s.message}),n.dirty());else if(s.kind==="nanoid")Qv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"nanoid",code:b.invalid_string,message:s.message}),n.dirty());else if(s.kind==="cuid")Jv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"cuid",code:b.invalid_string,message:s.message}),n.dirty());else if(s.kind==="cuid2")Gv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"cuid2",code:b.invalid_string,message:s.message}),n.dirty());else if(s.kind==="ulid")Wv.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"ulid",code:b.invalid_string,message:s.message}),n.dirty());else if(s.kind==="url")try{new URL(e.data)}catch{o=this._getOrReturnCtx(e,o),k(o,{validation:"url",code:b.invalid_string,message:s.message}),n.dirty()}else s.kind==="regex"?(s.regex.lastIndex=0,s.regex.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"regex",code:b.invalid_string,message:s.message}),n.dirty())):s.kind==="trim"?e.data=e.data.trim():s.kind==="includes"?e.data.includes(s.value,s.position)||(o=this._getOrReturnCtx(e,o),k(o,{code:b.invalid_string,validation:{includes:s.value,position:s.position},message:s.message}),n.dirty()):s.kind==="toLowerCase"?e.data=e.data.toLowerCase():s.kind==="toUpperCase"?e.data=e.data.toUpperCase():s.kind==="startsWith"?e.data.startsWith(s.value)||(o=this._getOrReturnCtx(e,o),k(o,{code:b.invalid_string,validation:{startsWith:s.value},message:s.message}),n.dirty()):s.kind==="endsWith"?e.data.endsWith(s.value)||(o=this._getOrReturnCtx(e,o),k(o,{code:b.invalid_string,validation:{endsWith:s.value},message:s.message}),n.dirty()):s.kind==="datetime"?zp(s).test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{code:b.invalid_string,validation:"datetime",message:s.message}),n.dirty()):s.kind==="date"?lx.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{code:b.invalid_string,validation:"date",message:s.message}),n.dirty()):s.kind==="time"?dx(s).test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{code:b.invalid_string,validation:"time",message:s.message}),n.dirty()):s.kind==="duration"?tx.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"duration",code:b.invalid_string,message:s.message}),n.dirty()):s.kind==="ip"?px(e.data,s.version)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"ip",code:b.invalid_string,message:s.message}),n.dirty()):s.kind==="jwt"?fx(e.data,s.alg)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"jwt",code:b.invalid_string,message:s.message}),n.dirty()):s.kind==="cidr"?mx(e.data,s.version)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"cidr",code:b.invalid_string,message:s.message}),n.dirty()):s.kind==="base64"?cx.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"base64",code:b.invalid_string,message:s.message}),n.dirty()):s.kind==="base64url"?ux.test(e.data)||(o=this._getOrReturnCtx(e,o),k(o,{validation:"base64url",code:b.invalid_string,message:s.message}),n.dirty()):H.assertNever(s);return{status:n.value,value:e.data}}_regex(e,r,n){return this.refinement(o=>e.test(o),{validation:r,code:b.invalid_string,...O.errToObj(n)})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}email(e){return this._addCheck({kind:"email",...O.errToObj(e)})}url(e){return this._addCheck({kind:"url",...O.errToObj(e)})}emoji(e){return this._addCheck({kind:"emoji",...O.errToObj(e)})}uuid(e){return this._addCheck({kind:"uuid",...O.errToObj(e)})}nanoid(e){return this._addCheck({kind:"nanoid",...O.errToObj(e)})}cuid(e){return this._addCheck({kind:"cuid",...O.errToObj(e)})}cuid2(e){return this._addCheck({kind:"cuid2",...O.errToObj(e)})}ulid(e){return this._addCheck({kind:"ulid",...O.errToObj(e)})}base64(e){return this._addCheck({kind:"base64",...O.errToObj(e)})}base64url(e){return this._addCheck({kind:"base64url",...O.errToObj(e)})}jwt(e){return this._addCheck({kind:"jwt",...O.errToObj(e)})}ip(e){return this._addCheck({kind:"ip",...O.errToObj(e)})}cidr(e){return this._addCheck({kind:"cidr",...O.errToObj(e)})}datetime(e){return typeof e=="string"?this._addCheck({kind:"datetime",precision:null,offset:!1,local:!1,message:e}):this._addCheck({kind:"datetime",precision:typeof e?.precision>"u"?null:e?.precision,offset:e?.offset??!1,local:e?.local??!1,...O.errToObj(e?.message)})}date(e){return this._addCheck({kind:"date",message:e})}time(e){return typeof e=="string"?this._addCheck({kind:"time",precision:null,message:e}):this._addCheck({kind:"time",precision:typeof e?.precision>"u"?null:e?.precision,...O.errToObj(e?.message)})}duration(e){return this._addCheck({kind:"duration",...O.errToObj(e)})}regex(e,r){return this._addCheck({kind:"regex",regex:e,...O.errToObj(r)})}includes(e,r){return this._addCheck({kind:"includes",value:e,position:r?.position,...O.errToObj(r?.message)})}startsWith(e,r){return this._addCheck({kind:"startsWith",value:e,...O.errToObj(r)})}endsWith(e,r){return this._addCheck({kind:"endsWith",value:e,...O.errToObj(r)})}min(e,r){return this._addCheck({kind:"min",value:e,...O.errToObj(r)})}max(e,r){return this._addCheck({kind:"max",value:e,...O.errToObj(r)})}length(e,r){return this._addCheck({kind:"length",value:e,...O.errToObj(r)})}nonempty(e){return this.min(1,O.errToObj(e))}trim(){return new t({...this._def,checks:[...this._def.checks,{kind:"trim"}]})}toLowerCase(){return new t({...this._def,checks:[...this._def.checks,{kind:"toLowerCase"}]})}toUpperCase(){return new t({...this._def,checks:[...this._def.checks,{kind:"toUpperCase"}]})}get isDatetime(){return!!this._def.checks.find(e=>e.kind==="datetime")}get isDate(){return!!this._def.checks.find(e=>e.kind==="date")}get isTime(){return!!this._def.checks.find(e=>e.kind==="time")}get isDuration(){return!!this._def.checks.find(e=>e.kind==="duration")}get isEmail(){return!!this._def.checks.find(e=>e.kind==="email")}get isURL(){return!!this._def.checks.find(e=>e.kind==="url")}get isEmoji(){return!!this._def.checks.find(e=>e.kind==="emoji")}get isUUID(){return!!this._def.checks.find(e=>e.kind==="uuid")}get isNANOID(){return!!this._def.checks.find(e=>e.kind==="nanoid")}get isCUID(){return!!this._def.checks.find(e=>e.kind==="cuid")}get isCUID2(){return!!this._def.checks.find(e=>e.kind==="cuid2")}get isULID(){return!!this._def.checks.find(e=>e.kind==="ulid")}get isIP(){return!!this._def.checks.find(e=>e.kind==="ip")}get isCIDR(){return!!this._def.checks.find(e=>e.kind==="cidr")}get isBase64(){return!!this._def.checks.find(e=>e.kind==="base64")}get isBase64url(){return!!this._def.checks.find(e=>e.kind==="base64url")}get minLength(){let e=null;for(let r of this._def.checks)r.kind==="min"&&(e===null||r.value>e)&&(e=r.value);return e}get maxLength(){let e=null;for(let r of this._def.checks)r.kind==="max"&&(e===null||r.value<e)&&(e=r.value);return e}};Mt.create=t=>new Mt({checks:[],typeName:$.ZodString,coerce:t?.coerce??!1,...D(t)});function hx(t,e){let r=(t.toString().split(".")[1]||"").length,n=(e.toString().split(".")[1]||"").length,o=r>n?r:n,s=Number.parseInt(t.toFixed(o).replace(".","")),i=Number.parseInt(e.toFixed(o).replace(".",""));return s%i/10**o}var cr=class t extends q{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte,this.step=this.multipleOf}_parse(e){if(this._def.coerce&&(e.data=Number(e.data)),this._getType(e)!==z.number){let s=this._getOrReturnCtx(e);return k(s,{code:b.invalid_type,expected:z.number,received:s.parsedType}),C}let n,o=new we;for(let s of this._def.checks)s.kind==="int"?H.isInteger(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{code:b.invalid_type,expected:"integer",received:"float",message:s.message}),o.dirty()):s.kind==="min"?(s.inclusive?e.data<s.value:e.data<=s.value)&&(n=this._getOrReturnCtx(e,n),k(n,{code:b.too_small,minimum:s.value,type:"number",inclusive:s.inclusive,exact:!1,message:s.message}),o.dirty()):s.kind==="max"?(s.inclusive?e.data>s.value:e.data>=s.value)&&(n=this._getOrReturnCtx(e,n),k(n,{code:b.too_big,maximum:s.value,type:"number",inclusive:s.inclusive,exact:!1,message:s.message}),o.dirty()):s.kind==="multipleOf"?hx(e.data,s.value)!==0&&(n=this._getOrReturnCtx(e,n),k(n,{code:b.not_multiple_of,multipleOf:s.value,message:s.message}),o.dirty()):s.kind==="finite"?Number.isFinite(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{code:b.not_finite,message:s.message}),o.dirty()):H.assertNever(s);return{status:o.value,value:e.data}}gte(e,r){return this.setLimit("min",e,!0,O.toString(r))}gt(e,r){return this.setLimit("min",e,!1,O.toString(r))}lte(e,r){return this.setLimit("max",e,!0,O.toString(r))}lt(e,r){return this.setLimit("max",e,!1,O.toString(r))}setLimit(e,r,n,o){return new t({...this._def,checks:[...this._def.checks,{kind:e,value:r,inclusive:n,message:O.toString(o)}]})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}int(e){return this._addCheck({kind:"int",message:O.toString(e)})}positive(e){return this._addCheck({kind:"min",value:0,inclusive:!1,message:O.toString(e)})}negative(e){return this._addCheck({kind:"max",value:0,inclusive:!1,message:O.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:0,inclusive:!0,message:O.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:0,inclusive:!0,message:O.toString(e)})}multipleOf(e,r){return this._addCheck({kind:"multipleOf",value:e,message:O.toString(r)})}finite(e){return this._addCheck({kind:"finite",message:O.toString(e)})}safe(e){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:O.toString(e)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:O.toString(e)})}get minValue(){let e=null;for(let r of this._def.checks)r.kind==="min"&&(e===null||r.value>e)&&(e=r.value);return e}get maxValue(){let e=null;for(let r of this._def.checks)r.kind==="max"&&(e===null||r.value<e)&&(e=r.value);return e}get isInt(){return!!this._def.checks.find(e=>e.kind==="int"||e.kind==="multipleOf"&&H.isInteger(e.value))}get isFinite(){let e=null,r=null;for(let n of this._def.checks){if(n.kind==="finite"||n.kind==="int"||n.kind==="multipleOf")return!0;n.kind==="min"?(r===null||n.value>r)&&(r=n.value):n.kind==="max"&&(e===null||n.value<e)&&(e=n.value)}return Number.isFinite(r)&&Number.isFinite(e)}};cr.create=t=>new cr({checks:[],typeName:$.ZodNumber,coerce:t?.coerce||!1,...D(t)});var ur=class t extends q{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte}_parse(e){if(this._def.coerce)try{e.data=BigInt(e.data)}catch{return this._getInvalidInput(e)}if(this._getType(e)!==z.bigint)return this._getInvalidInput(e);let n,o=new we;for(let s of this._def.checks)s.kind==="min"?(s.inclusive?e.data<s.value:e.data<=s.value)&&(n=this._getOrReturnCtx(e,n),k(n,{code:b.too_small,type:"bigint",minimum:s.value,inclusive:s.inclusive,message:s.message}),o.dirty()):s.kind==="max"?(s.inclusive?e.data>s.value:e.data>=s.value)&&(n=this._getOrReturnCtx(e,n),k(n,{code:b.too_big,type:"bigint",maximum:s.value,inclusive:s.inclusive,message:s.message}),o.dirty()):s.kind==="multipleOf"?e.data%s.value!==BigInt(0)&&(n=this._getOrReturnCtx(e,n),k(n,{code:b.not_multiple_of,multipleOf:s.value,message:s.message}),o.dirty()):H.assertNever(s);return{status:o.value,value:e.data}}_getInvalidInput(e){let r=this._getOrReturnCtx(e);return k(r,{code:b.invalid_type,expected:z.bigint,received:r.parsedType}),C}gte(e,r){return this.setLimit("min",e,!0,O.toString(r))}gt(e,r){return this.setLimit("min",e,!1,O.toString(r))}lte(e,r){return this.setLimit("max",e,!0,O.toString(r))}lt(e,r){return this.setLimit("max",e,!1,O.toString(r))}setLimit(e,r,n,o){return new t({...this._def,checks:[...this._def.checks,{kind:e,value:r,inclusive:n,message:O.toString(o)}]})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}positive(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!1,message:O.toString(e)})}negative(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:O.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:O.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:O.toString(e)})}multipleOf(e,r){return this._addCheck({kind:"multipleOf",value:e,message:O.toString(r)})}get minValue(){let e=null;for(let r of this._def.checks)r.kind==="min"&&(e===null||r.value>e)&&(e=r.value);return e}get maxValue(){let e=null;for(let r of this._def.checks)r.kind==="max"&&(e===null||r.value<e)&&(e=r.value);return e}};ur.create=t=>new ur({checks:[],typeName:$.ZodBigInt,coerce:t?.coerce??!1,...D(t)});var lr=class extends q{_parse(e){if(this._def.coerce&&(e.data=!!e.data),this._getType(e)!==z.boolean){let n=this._getOrReturnCtx(e);return k(n,{code:b.invalid_type,expected:z.boolean,received:n.parsedType}),C}return Te(e.data)}};lr.create=t=>new lr({typeName:$.ZodBoolean,coerce:t?.coerce||!1,...D(t)});var dr=class t extends q{_parse(e){if(this._def.coerce&&(e.data=new Date(e.data)),this._getType(e)!==z.date){let s=this._getOrReturnCtx(e);return k(s,{code:b.invalid_type,expected:z.date,received:s.parsedType}),C}if(Number.isNaN(e.data.getTime())){let s=this._getOrReturnCtx(e);return k(s,{code:b.invalid_date}),C}let n=new we,o;for(let s of this._def.checks)s.kind==="min"?e.data.getTime()<s.value&&(o=this._getOrReturnCtx(e,o),k(o,{code:b.too_small,message:s.message,inclusive:!0,exact:!1,minimum:s.value,type:"date"}),n.dirty()):s.kind==="max"?e.data.getTime()>s.value&&(o=this._getOrReturnCtx(e,o),k(o,{code:b.too_big,message:s.message,inclusive:!0,exact:!1,maximum:s.value,type:"date"}),n.dirty()):H.assertNever(s);return{status:n.value,value:new Date(e.data.getTime())}}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}min(e,r){return this._addCheck({kind:"min",value:e.getTime(),message:O.toString(r)})}max(e,r){return this._addCheck({kind:"max",value:e.getTime(),message:O.toString(r)})}get minDate(){let e=null;for(let r of this._def.checks)r.kind==="min"&&(e===null||r.value>e)&&(e=r.value);return e!=null?new Date(e):null}get maxDate(){let e=null;for(let r of this._def.checks)r.kind==="max"&&(e===null||r.value<e)&&(e=r.value);return e!=null?new Date(e):null}};dr.create=t=>new dr({checks:[],coerce:t?.coerce||!1,typeName:$.ZodDate,...D(t)});var Br=class extends q{_parse(e){if(this._getType(e)!==z.symbol){let n=this._getOrReturnCtx(e);return k(n,{code:b.invalid_type,expected:z.symbol,received:n.parsedType}),C}return Te(e.data)}};Br.create=t=>new Br({typeName:$.ZodSymbol,...D(t)});var pr=class extends q{_parse(e){if(this._getType(e)!==z.undefined){let n=this._getOrReturnCtx(e);return k(n,{code:b.invalid_type,expected:z.undefined,received:n.parsedType}),C}return Te(e.data)}};pr.create=t=>new pr({typeName:$.ZodUndefined,...D(t)});var fr=class extends q{_parse(e){if(this._getType(e)!==z.null){let n=this._getOrReturnCtx(e);return k(n,{code:b.invalid_type,expected:z.null,received:n.parsedType}),C}return Te(e.data)}};fr.create=t=>new fr({typeName:$.ZodNull,...D(t)});var Dt=class extends q{constructor(){super(...arguments),this._any=!0}_parse(e){return Te(e.data)}};Dt.create=t=>new Dt({typeName:$.ZodAny,...D(t)});var Tt=class extends q{constructor(){super(...arguments),this._unknown=!0}_parse(e){return Te(e.data)}};Tt.create=t=>new Tt({typeName:$.ZodUnknown,...D(t)});var st=class extends q{_parse(e){let r=this._getOrReturnCtx(e);return k(r,{code:b.invalid_type,expected:z.never,received:r.parsedType}),C}};st.create=t=>new st({typeName:$.ZodNever,...D(t)});var Xr=class extends q{_parse(e){if(this._getType(e)!==z.undefined){let n=this._getOrReturnCtx(e);return k(n,{code:b.invalid_type,expected:z.void,received:n.parsedType}),C}return Te(e.data)}};Xr.create=t=>new Xr({typeName:$.ZodVoid,...D(t)});var Pt=class t extends q{_parse(e){let{ctx:r,status:n}=this._processInputParams(e),o=this._def;if(r.parsedType!==z.array)return k(r,{code:b.invalid_type,expected:z.array,received:r.parsedType}),C;if(o.exactLength!==null){let i=r.data.length>o.exactLength.value,a=r.data.length<o.exactLength.value;(i||a)&&(k(r,{code:i?b.too_big:b.too_small,minimum:a?o.exactLength.value:void 0,maximum:i?o.exactLength.value:void 0,type:"array",inclusive:!0,exact:!0,message:o.exactLength.message}),n.dirty())}if(o.minLength!==null&&r.data.length<o.minLength.value&&(k(r,{code:b.too_small,minimum:o.minLength.value,type:"array",inclusive:!0,exact:!1,message:o.minLength.message}),n.dirty()),o.maxLength!==null&&r.data.length>o.maxLength.value&&(k(r,{code:b.too_big,maximum:o.maxLength.value,type:"array",inclusive:!0,exact:!1,message:o.maxLength.message}),n.dirty()),r.common.async)return Promise.all([...r.data].map((i,a)=>o.type._parseAsync(new Ge(r,i,r.path,a)))).then(i=>we.mergeArray(n,i));let s=[...r.data].map((i,a)=>o.type._parseSync(new Ge(r,i,r.path,a)));return we.mergeArray(n,s)}get element(){return this._def.type}min(e,r){return new t({...this._def,minLength:{value:e,message:O.toString(r)}})}max(e,r){return new t({...this._def,maxLength:{value:e,message:O.toString(r)}})}length(e,r){return new t({...this._def,exactLength:{value:e,message:O.toString(r)}})}nonempty(e){return this.min(1,e)}};Pt.create=(t,e)=>new Pt({type:t,minLength:null,maxLength:null,exactLength:null,typeName:$.ZodArray,...D(e)});function Kr(t){if(t instanceof De){let e={};for(let r in t.shape){let n=t.shape[r];e[r]=Me.create(Kr(n))}return new De({...t._def,shape:()=>e})}else return t instanceof Pt?new Pt({...t._def,type:Kr(t.element)}):t instanceof Me?Me.create(Kr(t.unwrap())):t instanceof gt?gt.create(Kr(t.unwrap())):t instanceof ht?ht.create(t.items.map(e=>Kr(e))):t}var De=class t extends q{constructor(){super(...arguments),this._cached=null,this.nonstrict=this.passthrough,this.augment=this.extend}_getCached(){if(this._cached!==null)return this._cached;let e=this._def.shape(),r=H.objectKeys(e);return this._cached={shape:e,keys:r},this._cached}_parse(e){if(this._getType(e)!==z.object){let u=this._getOrReturnCtx(e);return k(u,{code:b.invalid_type,expected:z.object,received:u.parsedType}),C}let{status:n,ctx:o}=this._processInputParams(e),{shape:s,keys:i}=this._getCached(),a=[];if(!(this._def.catchall instanceof st&&this._def.unknownKeys==="strip"))for(let u in o.data)i.includes(u)||a.push(u);let c=[];for(let u of i){let l=s[u],d=o.data[u];c.push({key:{status:"valid",value:u},value:l._parse(new Ge(o,d,o.path,u)),alwaysSet:u in o.data})}if(this._def.catchall instanceof st){let u=this._def.unknownKeys;if(u==="passthrough")for(let l of a)c.push({key:{status:"valid",value:l},value:{status:"valid",value:o.data[l]}});else if(u==="strict")a.length>0&&(k(o,{code:b.unrecognized_keys,keys:a}),n.dirty());else if(u!=="strip")throw new Error("Internal ZodObject error: invalid unknownKeys value.")}else{let u=this._def.catchall;for(let l of a){let d=o.data[l];c.push({key:{status:"valid",value:l},value:u._parse(new Ge(o,d,o.path,l)),alwaysSet:l in o.data})}}return o.common.async?Promise.resolve().then(async()=>{let u=[];for(let l of c){let d=await l.key,f=await l.value;u.push({key:d,value:f,alwaysSet:l.alwaysSet})}return u}).then(u=>we.mergeObjectSync(n,u)):we.mergeObjectSync(n,c)}get shape(){return this._def.shape()}strict(e){return O.errToObj,new t({...this._def,unknownKeys:"strict",...e!==void 0?{errorMap:(r,n)=>{let o=this._def.errorMap?.(r,n).message??n.defaultError;return r.code==="unrecognized_keys"?{message:O.errToObj(e).message??o}:{message:o}}}:{}})}strip(){return new t({...this._def,unknownKeys:"strip"})}passthrough(){return new t({...this._def,unknownKeys:"passthrough"})}extend(e){return new t({...this._def,shape:()=>({...this._def.shape(),...e})})}merge(e){return new t({unknownKeys:e._def.unknownKeys,catchall:e._def.catchall,shape:()=>({...this._def.shape(),...e._def.shape()}),typeName:$.ZodObject})}setKey(e,r){return this.augment({[e]:r})}catchall(e){return new t({...this._def,catchall:e})}pick(e){let r={};for(let n of H.objectKeys(e))e[n]&&this.shape[n]&&(r[n]=this.shape[n]);return new t({...this._def,shape:()=>r})}omit(e){let r={};for(let n of H.objectKeys(this.shape))e[n]||(r[n]=this.shape[n]);return new t({...this._def,shape:()=>r})}deepPartial(){return Kr(this)}partial(e){let r={};for(let n of H.objectKeys(this.shape)){let o=this.shape[n];e&&!e[n]?r[n]=o:r[n]=o.optional()}return new t({...this._def,shape:()=>r})}required(e){let r={};for(let n of H.objectKeys(this.shape))if(e&&!e[n])r[n]=this.shape[n];else{let s=this.shape[n];for(;s instanceof Me;)s=s._def.innerType;r[n]=s}return new t({...this._def,shape:()=>r})}keyof(){return Tp(H.objectKeys(this.shape))}};De.create=(t,e)=>new De({shape:()=>t,unknownKeys:"strip",catchall:st.create(),typeName:$.ZodObject,...D(e)});De.strictCreate=(t,e)=>new De({shape:()=>t,unknownKeys:"strict",catchall:st.create(),typeName:$.ZodObject,...D(e)});De.lazycreate=(t,e)=>new De({shape:t,unknownKeys:"strip",catchall:st.create(),typeName:$.ZodObject,...D(e)});var mr=class extends q{_parse(e){let{ctx:r}=this._processInputParams(e),n=this._def.options;function o(s){for(let a of s)if(a.result.status==="valid")return a.result;for(let a of s)if(a.result.status==="dirty")return r.common.issues.push(...a.ctx.common.issues),a.result;let i=s.map(a=>new Ae(a.ctx.common.issues));return k(r,{code:b.invalid_union,unionErrors:i}),C}if(r.common.async)return Promise.all(n.map(async s=>{let i={...r,common:{...r.common,issues:[]},parent:null};return{result:await s._parseAsync({data:r.data,path:r.path,parent:i}),ctx:i}})).then(o);{let s,i=[];for(let c of n){let u={...r,common:{...r.common,issues:[]},parent:null},l=c._parseSync({data:r.data,path:r.path,parent:u});if(l.status==="valid")return l;l.status==="dirty"&&!s&&(s={result:l,ctx:u}),u.common.issues.length&&i.push(u.common.issues)}if(s)return r.common.issues.push(...s.ctx.common.issues),s.result;let a=i.map(c=>new Ae(c));return k(r,{code:b.invalid_union,unionErrors:a}),C}}get options(){return this._def.options}};mr.create=(t,e)=>new mr({options:t,typeName:$.ZodUnion,...D(e)});var zt=t=>t instanceof gr?zt(t.schema):t instanceof We?zt(t.innerType()):t instanceof yr?[t.value]:t instanceof _r?t.options:t instanceof vr?H.objectValues(t.enum):t instanceof xr?zt(t._def.innerType):t instanceof pr?[void 0]:t instanceof fr?[null]:t instanceof Me?[void 0,...zt(t.unwrap())]:t instanceof gt?[null,...zt(t.unwrap())]:t instanceof An||t instanceof br?zt(t.unwrap()):t instanceof wr?zt(t._def.innerType):[],Yo=class t extends q{_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==z.object)return k(r,{code:b.invalid_type,expected:z.object,received:r.parsedType}),C;let n=this.discriminator,o=r.data[n],s=this.optionsMap.get(o);return s?r.common.async?s._parseAsync({data:r.data,path:r.path,parent:r}):s._parseSync({data:r.data,path:r.path,parent:r}):(k(r,{code:b.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[n]}),C)}get discriminator(){return this._def.discriminator}get options(){return this._def.options}get optionsMap(){return this._def.optionsMap}static create(e,r,n){let o=new Map;for(let s of r){let i=zt(s.shape[e]);if(!i.length)throw new Error(`A discriminator value for key \`${e}\` could not be extracted from all schema options`);for(let a of i){if(o.has(a))throw new Error(`Discriminator property ${String(e)} has duplicate value ${String(a)}`);o.set(a,s)}}return new t({typeName:$.ZodDiscriminatedUnion,discriminator:e,options:r,optionsMap:o,...D(n)})}};function aa(t,e){let r=mt(t),n=mt(e);if(t===e)return{valid:!0,data:t};if(r===z.object&&n===z.object){let o=H.objectKeys(e),s=H.objectKeys(t).filter(a=>o.indexOf(a)!==-1),i={...t,...e};for(let a of s){let c=aa(t[a],e[a]);if(!c.valid)return{valid:!1};i[a]=c.data}return{valid:!0,data:i}}else if(r===z.array&&n===z.array){if(t.length!==e.length)return{valid:!1};let o=[];for(let s=0;s<t.length;s++){let i=t[s],a=e[s],c=aa(i,a);if(!c.valid)return{valid:!1};o.push(c.data)}return{valid:!0,data:o}}else return r===z.date&&n===z.date&&+t==+e?{valid:!0,data:t}:{valid:!1}}var hr=class extends q{_parse(e){let{status:r,ctx:n}=this._processInputParams(e),o=(s,i)=>{if(Go(s)||Go(i))return C;let a=aa(s.value,i.value);return a.valid?((Wo(s)||Wo(i))&&r.dirty(),{status:r.value,value:a.data}):(k(n,{code:b.invalid_intersection_types}),C)};return n.common.async?Promise.all([this._def.left._parseAsync({data:n.data,path:n.path,parent:n}),this._def.right._parseAsync({data:n.data,path:n.path,parent:n})]).then(([s,i])=>o(s,i)):o(this._def.left._parseSync({data:n.data,path:n.path,parent:n}),this._def.right._parseSync({data:n.data,path:n.path,parent:n}))}};hr.create=(t,e,r)=>new hr({left:t,right:e,typeName:$.ZodIntersection,...D(r)});var ht=class t extends q{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==z.array)return k(n,{code:b.invalid_type,expected:z.array,received:n.parsedType}),C;if(n.data.length<this._def.items.length)return k(n,{code:b.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),C;!this._def.rest&&n.data.length>this._def.items.length&&(k(n,{code:b.too_big,maximum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),r.dirty());let s=[...n.data].map((i,a)=>{let c=this._def.items[a]||this._def.rest;return c?c._parse(new Ge(n,i,n.path,a)):null}).filter(i=>!!i);return n.common.async?Promise.all(s).then(i=>we.mergeArray(r,i)):we.mergeArray(r,s)}get items(){return this._def.items}rest(e){return new t({...this._def,rest:e})}};ht.create=(t,e)=>{if(!Array.isArray(t))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new ht({items:t,typeName:$.ZodTuple,rest:null,...D(e)})};var Qo=class t extends q{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==z.object)return k(n,{code:b.invalid_type,expected:z.object,received:n.parsedType}),C;let o=[],s=this._def.keyType,i=this._def.valueType;for(let a in n.data)o.push({key:s._parse(new Ge(n,a,n.path,a)),value:i._parse(new Ge(n,n.data[a],n.path,a)),alwaysSet:a in n.data});return n.common.async?we.mergeObjectAsync(r,o):we.mergeObjectSync(r,o)}get element(){return this._def.valueType}static create(e,r,n){return r instanceof q?new t({keyType:e,valueType:r,typeName:$.ZodRecord,...D(n)}):new t({keyType:Mt.create(),valueType:e,typeName:$.ZodRecord,...D(r)})}},Jr=class extends q{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==z.map)return k(n,{code:b.invalid_type,expected:z.map,received:n.parsedType}),C;let o=this._def.keyType,s=this._def.valueType,i=[...n.data.entries()].map(([a,c],u)=>({key:o._parse(new Ge(n,a,n.path,[u,"key"])),value:s._parse(new Ge(n,c,n.path,[u,"value"]))}));if(n.common.async){let a=new Map;return Promise.resolve().then(async()=>{for(let c of i){let u=await c.key,l=await c.value;if(u.status==="aborted"||l.status==="aborted")return C;(u.status==="dirty"||l.status==="dirty")&&r.dirty(),a.set(u.value,l.value)}return{status:r.value,value:a}})}else{let a=new Map;for(let c of i){let u=c.key,l=c.value;if(u.status==="aborted"||l.status==="aborted")return C;(u.status==="dirty"||l.status==="dirty")&&r.dirty(),a.set(u.value,l.value)}return{status:r.value,value:a}}}};Jr.create=(t,e,r)=>new Jr({valueType:e,keyType:t,typeName:$.ZodMap,...D(r)});var Gr=class t extends q{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==z.set)return k(n,{code:b.invalid_type,expected:z.set,received:n.parsedType}),C;let o=this._def;o.minSize!==null&&n.data.size<o.minSize.value&&(k(n,{code:b.too_small,minimum:o.minSize.value,type:"set",inclusive:!0,exact:!1,message:o.minSize.message}),r.dirty()),o.maxSize!==null&&n.data.size>o.maxSize.value&&(k(n,{code:b.too_big,maximum:o.maxSize.value,type:"set",inclusive:!0,exact:!1,message:o.maxSize.message}),r.dirty());let s=this._def.valueType;function i(c){let u=new Set;for(let l of c){if(l.status==="aborted")return C;l.status==="dirty"&&r.dirty(),u.add(l.value)}return{status:r.value,value:u}}let a=[...n.data.values()].map((c,u)=>s._parse(new Ge(n,c,n.path,u)));return n.common.async?Promise.all(a).then(c=>i(c)):i(a)}min(e,r){return new t({...this._def,minSize:{value:e,message:O.toString(r)}})}max(e,r){return new t({...this._def,maxSize:{value:e,message:O.toString(r)}})}size(e,r){return this.min(e,r).max(e,r)}nonempty(e){return this.min(1,e)}};Gr.create=(t,e)=>new Gr({valueType:t,minSize:null,maxSize:null,typeName:$.ZodSet,...D(e)});var es=class t extends q{constructor(){super(...arguments),this.validate=this.implement}_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==z.function)return k(r,{code:b.invalid_type,expected:z.function,received:r.parsedType}),C;function n(a,c){return Zn({data:a,path:r.path,errorMaps:[r.common.contextualErrorMap,r.schemaErrorMap,Vr(),St].filter(u=>!!u),issueData:{code:b.invalid_arguments,argumentsError:c}})}function o(a,c){return Zn({data:a,path:r.path,errorMaps:[r.common.contextualErrorMap,r.schemaErrorMap,Vr(),St].filter(u=>!!u),issueData:{code:b.invalid_return_type,returnTypeError:c}})}let s={errorMap:r.common.contextualErrorMap},i=r.data;if(this._def.returns instanceof Lt){let a=this;return Te(async function(...c){let u=new Ae([]),l=await a._def.args.parseAsync(c,s).catch(m=>{throw u.addIssue(n(c,m)),u}),d=await Reflect.apply(i,this,l);return await a._def.returns._def.type.parseAsync(d,s).catch(m=>{throw u.addIssue(o(d,m)),u})})}else{let a=this;return Te(function(...c){let u=a._def.args.safeParse(c,s);if(!u.success)throw new Ae([n(c,u.error)]);let l=Reflect.apply(i,this,u.data),d=a._def.returns.safeParse(l,s);if(!d.success)throw new Ae([o(l,d.error)]);return d.data})}}parameters(){return this._def.args}returnType(){return this._def.returns}args(...e){return new t({...this._def,args:ht.create(e).rest(Tt.create())})}returns(e){return new t({...this._def,returns:e})}implement(e){return this.parse(e)}strictImplement(e){return this.parse(e)}static create(e,r,n){return new t({args:e||ht.create([]).rest(Tt.create()),returns:r||Tt.create(),typeName:$.ZodFunction,...D(n)})}},gr=class extends q{get schema(){return this._def.getter()}_parse(e){let{ctx:r}=this._processInputParams(e);return this._def.getter()._parse({data:r.data,path:r.path,parent:r})}};gr.create=(t,e)=>new gr({getter:t,typeName:$.ZodLazy,...D(e)});var yr=class extends q{_parse(e){if(e.data!==this._def.value){let r=this._getOrReturnCtx(e);return k(r,{received:r.data,code:b.invalid_literal,expected:this._def.value}),C}return{status:"valid",value:e.data}}get value(){return this._def.value}};yr.create=(t,e)=>new yr({value:t,typeName:$.ZodLiteral,...D(e)});function Tp(t,e){return new _r({values:t,typeName:$.ZodEnum,...D(e)})}var _r=class t extends q{_parse(e){if(typeof e.data!="string"){let r=this._getOrReturnCtx(e),n=this._def.values;return k(r,{expected:H.joinValues(n),received:r.parsedType,code:b.invalid_type}),C}if(this._cache||(this._cache=new Set(this._def.values)),!this._cache.has(e.data)){let r=this._getOrReturnCtx(e),n=this._def.values;return k(r,{received:r.data,code:b.invalid_enum_value,options:n}),C}return Te(e.data)}get options(){return this._def.values}get enum(){let e={};for(let r of this._def.values)e[r]=r;return e}get Values(){let e={};for(let r of this._def.values)e[r]=r;return e}get Enum(){let e={};for(let r of this._def.values)e[r]=r;return e}extract(e,r=this._def){return t.create(e,{...this._def,...r})}exclude(e,r=this._def){return t.create(this.options.filter(n=>!e.includes(n)),{...this._def,...r})}};_r.create=Tp;var vr=class extends q{_parse(e){let r=H.getValidEnumValues(this._def.values),n=this._getOrReturnCtx(e);if(n.parsedType!==z.string&&n.parsedType!==z.number){let o=H.objectValues(r);return k(n,{expected:H.joinValues(o),received:n.parsedType,code:b.invalid_type}),C}if(this._cache||(this._cache=new Set(H.getValidEnumValues(this._def.values))),!this._cache.has(e.data)){let o=H.objectValues(r);return k(n,{received:n.data,code:b.invalid_enum_value,options:o}),C}return Te(e.data)}get enum(){return this._def.values}};vr.create=(t,e)=>new vr({values:t,typeName:$.ZodNativeEnum,...D(e)});var Lt=class extends q{unwrap(){return this._def.type}_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==z.promise&&r.common.async===!1)return k(r,{code:b.invalid_type,expected:z.promise,received:r.parsedType}),C;let n=r.parsedType===z.promise?r.data:Promise.resolve(r.data);return Te(n.then(o=>this._def.type.parseAsync(o,{path:r.path,errorMap:r.common.contextualErrorMap})))}};Lt.create=(t,e)=>new Lt({type:t,typeName:$.ZodPromise,...D(e)});var We=class extends q{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===$.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(e){let{status:r,ctx:n}=this._processInputParams(e),o=this._def.effect||null,s={addIssue:i=>{k(n,i),i.fatal?r.abort():r.dirty()},get path(){return n.path}};if(s.addIssue=s.addIssue.bind(s),o.type==="preprocess"){let i=o.transform(n.data,s);if(n.common.async)return Promise.resolve(i).then(async a=>{if(r.value==="aborted")return C;let c=await this._def.schema._parseAsync({data:a,path:n.path,parent:n});return c.status==="aborted"?C:c.status==="dirty"?ar(c.value):r.value==="dirty"?ar(c.value):c});{if(r.value==="aborted")return C;let a=this._def.schema._parseSync({data:i,path:n.path,parent:n});return a.status==="aborted"?C:a.status==="dirty"?ar(a.value):r.value==="dirty"?ar(a.value):a}}if(o.type==="refinement"){let i=a=>{let c=o.refinement(a,s);if(n.common.async)return Promise.resolve(c);if(c instanceof Promise)throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");return a};if(n.common.async===!1){let a=this._def.schema._parseSync({data:n.data,path:n.path,parent:n});return a.status==="aborted"?C:(a.status==="dirty"&&r.dirty(),i(a.value),{status:r.value,value:a.value})}else return this._def.schema._parseAsync({data:n.data,path:n.path,parent:n}).then(a=>a.status==="aborted"?C:(a.status==="dirty"&&r.dirty(),i(a.value).then(()=>({status:r.value,value:a.value}))))}if(o.type==="transform")if(n.common.async===!1){let i=this._def.schema._parseSync({data:n.data,path:n.path,parent:n});if(!At(i))return C;let a=o.transform(i.value,s);if(a instanceof Promise)throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");return{status:r.value,value:a}}else return this._def.schema._parseAsync({data:n.data,path:n.path,parent:n}).then(i=>At(i)?Promise.resolve(o.transform(i.value,s)).then(a=>({status:r.value,value:a})):C);H.assertNever(o)}};We.create=(t,e,r)=>new We({schema:t,typeName:$.ZodEffects,effect:e,...D(r)});We.createWithPreprocess=(t,e,r)=>new We({schema:e,effect:{type:"preprocess",transform:t},typeName:$.ZodEffects,...D(r)});var Me=class extends q{_parse(e){return this._getType(e)===z.undefined?Te(void 0):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};Me.create=(t,e)=>new Me({innerType:t,typeName:$.ZodOptional,...D(e)});var gt=class extends q{_parse(e){return this._getType(e)===z.null?Te(null):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};gt.create=(t,e)=>new gt({innerType:t,typeName:$.ZodNullable,...D(e)});var xr=class extends q{_parse(e){let{ctx:r}=this._processInputParams(e),n=r.data;return r.parsedType===z.undefined&&(n=this._def.defaultValue()),this._def.innerType._parse({data:n,path:r.path,parent:r})}removeDefault(){return this._def.innerType}};xr.create=(t,e)=>new xr({innerType:t,typeName:$.ZodDefault,defaultValue:typeof e.default=="function"?e.default:()=>e.default,...D(e)});var wr=class extends q{_parse(e){let{ctx:r}=this._processInputParams(e),n={...r,common:{...r.common,issues:[]}},o=this._def.innerType._parse({data:n.data,path:n.path,parent:{...n}});return Hr(o)?o.then(s=>({status:"valid",value:s.status==="valid"?s.value:this._def.catchValue({get error(){return new Ae(n.common.issues)},input:n.data})})):{status:"valid",value:o.status==="valid"?o.value:this._def.catchValue({get error(){return new Ae(n.common.issues)},input:n.data})}}removeCatch(){return this._def.innerType}};wr.create=(t,e)=>new wr({innerType:t,typeName:$.ZodCatch,catchValue:typeof e.catch=="function"?e.catch:()=>e.catch,...D(e)});var Wr=class extends q{_parse(e){if(this._getType(e)!==z.nan){let n=this._getOrReturnCtx(e);return k(n,{code:b.invalid_type,expected:z.nan,received:n.parsedType}),C}return{status:"valid",value:e.data}}};Wr.create=t=>new Wr({typeName:$.ZodNaN,...D(t)});var gx=Symbol("zod_brand"),An=class extends q{_parse(e){let{ctx:r}=this._processInputParams(e),n=r.data;return this._def.type._parse({data:n,path:r.path,parent:r})}unwrap(){return this._def.type}},Mn=class t extends q{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.common.async)return(async()=>{let s=await this._def.in._parseAsync({data:n.data,path:n.path,parent:n});return s.status==="aborted"?C:s.status==="dirty"?(r.dirty(),ar(s.value)):this._def.out._parseAsync({data:s.value,path:n.path,parent:n})})();{let o=this._def.in._parseSync({data:n.data,path:n.path,parent:n});return o.status==="aborted"?C:o.status==="dirty"?(r.dirty(),{status:"dirty",value:o.value}):this._def.out._parseSync({data:o.value,path:n.path,parent:n})}}static create(e,r){return new t({in:e,out:r,typeName:$.ZodPipeline})}},br=class extends q{_parse(e){let r=this._def.innerType._parse(e),n=o=>(At(o)&&(o.value=Object.freeze(o.value)),o);return Hr(r)?r.then(o=>n(o)):n(r)}unwrap(){return this._def.innerType}};br.create=(t,e)=>new br({innerType:t,typeName:$.ZodReadonly,...D(e)});function $p(t,e){let r=typeof t=="function"?t(e):typeof t=="string"?{message:t}:t;return typeof r=="string"?{message:r}:r}function Pp(t,e={},r){return t?Dt.create().superRefine((n,o)=>{let s=t(n);if(s instanceof Promise)return s.then(i=>{if(!i){let a=$p(e,n),c=a.fatal??r??!0;o.addIssue({code:"custom",...a,fatal:c})}});if(!s){let i=$p(e,n),a=i.fatal??r??!0;o.addIssue({code:"custom",...i,fatal:a})}}):Dt.create()}var yx={object:De.lazycreate},$;(function(t){t.ZodString="ZodString",t.ZodNumber="ZodNumber",t.ZodNaN="ZodNaN",t.ZodBigInt="ZodBigInt",t.ZodBoolean="ZodBoolean",t.ZodDate="ZodDate",t.ZodSymbol="ZodSymbol",t.ZodUndefined="ZodUndefined",t.ZodNull="ZodNull",t.ZodAny="ZodAny",t.ZodUnknown="ZodUnknown",t.ZodNever="ZodNever",t.ZodVoid="ZodVoid",t.ZodArray="ZodArray",t.ZodObject="ZodObject",t.ZodUnion="ZodUnion",t.ZodDiscriminatedUnion="ZodDiscriminatedUnion",t.ZodIntersection="ZodIntersection",t.ZodTuple="ZodTuple",t.ZodRecord="ZodRecord",t.ZodMap="ZodMap",t.ZodSet="ZodSet",t.ZodFunction="ZodFunction",t.ZodLazy="ZodLazy",t.ZodLiteral="ZodLiteral",t.ZodEnum="ZodEnum",t.ZodEffects="ZodEffects",t.ZodNativeEnum="ZodNativeEnum",t.ZodOptional="ZodOptional",t.ZodNullable="ZodNullable",t.ZodDefault="ZodDefault",t.ZodCatch="ZodCatch",t.ZodPromise="ZodPromise",t.ZodBranded="ZodBranded",t.ZodPipeline="ZodPipeline",t.ZodReadonly="ZodReadonly"})($||($={}));var _x=(t,e={message:`Input not instance of ${t.name}`})=>Pp(r=>r instanceof t,e),Op=Mt.create,Ep=cr.create,vx=Wr.create,xx=ur.create,Ip=lr.create,wx=dr.create,bx=Br.create,$x=pr.create,kx=fr.create,Sx=Dt.create,zx=Tt.create,Tx=st.create,Px=Xr.create,Ox=Pt.create,ca=De.create,Ex=De.strictCreate,Ix=mr.create,Rx=Yo.create,jx=hr.create,Nx=ht.create,Cx=Qo.create,Zx=Jr.create,Ax=Gr.create,Mx=es.create,Dx=gr.create,Lx=yr.create,qx=_r.create,Ux=vr.create,Fx=Lt.create,Vx=We.create,Hx=Me.create,Kx=gt.create,Bx=We.createWithPreprocess,Xx=Mn.create,Jx=()=>Op().optional(),Gx=()=>Ep().optional(),Wx=()=>Ip().optional(),Yx={string:(t=>Mt.create({...t,coerce:!0})),number:(t=>cr.create({...t,coerce:!0})),boolean:(t=>lr.create({...t,coerce:!0})),bigint:(t=>ur.create({...t,coerce:!0})),date:(t=>dr.create({...t,coerce:!0}))};var Qx=C;var ew=Object.freeze({status:"aborted"});function _(t,e,r){function n(a,c){var u;Object.defineProperty(a,"_zod",{value:a._zod??{},enumerable:!1}),(u=a._zod).traits??(u.traits=new Set),a._zod.traits.add(t),e(a,c);for(let l in i.prototype)l in a||Object.defineProperty(a,l,{value:i.prototype[l].bind(a)});a._zod.constr=i,a._zod.def=c}let o=r?.Parent??Object;class s extends o{}Object.defineProperty(s,"name",{value:t});function i(a){var c;let u=r?.Parent?new s:this;n(u,a),(c=u._zod).deferred??(c.deferred=[]);for(let l of u._zod.deferred)l();return u}return Object.defineProperty(i,"init",{value:n}),Object.defineProperty(i,Symbol.hasInstance,{value:a=>r?.Parent&&a instanceof r.Parent?!0:a?._zod?.traits?.has(t)}),Object.defineProperty(i,"name",{value:t}),i}var Ot=class extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}},ts={};function Be(t){return t&&Object.assign(ts,t),ts}var K={};qo(K,{BIGINT_FORMAT_RANGES:()=>jp,Class:()=>la,NUMBER_FORMAT_RANGES:()=>ya,aborted:()=>Sr,allowsEval:()=>ma,assert:()=>sw,assertEqual:()=>tw,assertIs:()=>nw,assertNever:()=>ow,assertNotEqual:()=>rw,assignProp:()=>fa,cached:()=>qn,captureStackTrace:()=>ns,cleanEnum:()=>_w,cleanRegex:()=>Fn,clone:()=>Xe,createTransparentProxy:()=>dw,defineLazy:()=>ne,esc:()=>kr,escapeRegex:()=>qt,extend:()=>mw,finalizeIssue:()=>it,floatSafeRemainder:()=>pa,getElementAtPath:()=>iw,getEnumValues:()=>Ln,getLengthableOrigin:()=>Vn,getParsedType:()=>lw,getSizableOrigin:()=>Np,isObject:()=>Yr,isPlainObject:()=>Qr,issue:()=>_a,joinValues:()=>rs,jsonStringifyReplacer:()=>da,merge:()=>hw,normalizeParams:()=>Z,nullish:()=>Un,numKeys:()=>uw,omit:()=>fw,optionalKeys:()=>ga,partial:()=>gw,pick:()=>pw,prefixIssues:()=>yt,primitiveTypes:()=>Rp,promiseAllObject:()=>aw,propertyKeyTypes:()=>ha,randomString:()=>cw,required:()=>yw,stringifyPrimitive:()=>os,unwrapMessage:()=>Dn});function tw(t){return t}function rw(t){return t}function nw(t){}function ow(t){throw new Error}function sw(t){}function Ln(t){let e=Object.values(t).filter(n=>typeof n=="number");return Object.entries(t).filter(([n,o])=>e.indexOf(+n)===-1).map(([n,o])=>o)}function rs(t,e="|"){return t.map(r=>os(r)).join(e)}function da(t,e){return typeof e=="bigint"?e.toString():e}function qn(t){return{get value(){{let r=t();return Object.defineProperty(this,"value",{value:r}),r}throw new Error("cached value already set")}}}function Un(t){return t==null}function Fn(t){let e=t.startsWith("^")?1:0,r=t.endsWith("$")?t.length-1:t.length;return t.slice(e,r)}function pa(t,e){let r=(t.toString().split(".")[1]||"").length,n=(e.toString().split(".")[1]||"").length,o=r>n?r:n,s=Number.parseInt(t.toFixed(o).replace(".","")),i=Number.parseInt(e.toFixed(o).replace(".",""));return s%i/10**o}function ne(t,e,r){Object.defineProperty(t,e,{get(){{let o=r();return t[e]=o,o}throw new Error("cached value already set")},set(o){Object.defineProperty(t,e,{value:o})},configurable:!0})}function fa(t,e,r){Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!0,configurable:!0})}function iw(t,e){return e?e.reduce((r,n)=>r?.[n],t):t}function aw(t){let e=Object.keys(t),r=e.map(n=>t[n]);return Promise.all(r).then(n=>{let o={};for(let s=0;s<e.length;s++)o[e[s]]=n[s];return o})}function cw(t=10){let e="abcdefghijklmnopqrstuvwxyz",r="";for(let n=0;n<t;n++)r+=e[Math.floor(Math.random()*e.length)];return r}function kr(t){return JSON.stringify(t)}var ns=Error.captureStackTrace?Error.captureStackTrace:(...t)=>{};function Yr(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}var ma=qn(()=>{if(typeof navigator<"u"&&navigator?.userAgent?.includes("Cloudflare"))return!1;try{let t=Function;return new t(""),!0}catch{return!1}});function Qr(t){if(Yr(t)===!1)return!1;let e=t.constructor;if(e===void 0)return!0;let r=e.prototype;return!(Yr(r)===!1||Object.prototype.hasOwnProperty.call(r,"isPrototypeOf")===!1)}function uw(t){let e=0;for(let r in t)Object.prototype.hasOwnProperty.call(t,r)&&e++;return e}var lw=t=>{let e=typeof t;switch(e){case"undefined":return"undefined";case"string":return"string";case"number":return Number.isNaN(t)?"nan":"number";case"boolean":return"boolean";case"function":return"function";case"bigint":return"bigint";case"symbol":return"symbol";case"object":return Array.isArray(t)?"array":t===null?"null":t.then&&typeof t.then=="function"&&t.catch&&typeof t.catch=="function"?"promise":typeof Map<"u"&&t instanceof Map?"map":typeof Set<"u"&&t instanceof Set?"set":typeof Date<"u"&&t instanceof Date?"date":typeof File<"u"&&t instanceof File?"file":"object";default:throw new Error(`Unknown data type: ${e}`)}},ha=new Set(["string","number","symbol"]),Rp=new Set(["string","number","bigint","boolean","symbol","undefined"]);function qt(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function Xe(t,e,r){let n=new t._zod.constr(e??t._zod.def);return(!e||r?.parent)&&(n._zod.parent=t),n}function Z(t){let e=t;if(!e)return{};if(typeof e=="string")return{error:()=>e};if(e?.message!==void 0){if(e?.error!==void 0)throw new Error("Cannot specify both `message` and `error` params");e.error=e.message}return delete e.message,typeof e.error=="string"?{...e,error:()=>e.error}:e}function dw(t){let e;return new Proxy({},{get(r,n,o){return e??(e=t()),Reflect.get(e,n,o)},set(r,n,o,s){return e??(e=t()),Reflect.set(e,n,o,s)},has(r,n){return e??(e=t()),Reflect.has(e,n)},deleteProperty(r,n){return e??(e=t()),Reflect.deleteProperty(e,n)},ownKeys(r){return e??(e=t()),Reflect.ownKeys(e)},getOwnPropertyDescriptor(r,n){return e??(e=t()),Reflect.getOwnPropertyDescriptor(e,n)},defineProperty(r,n,o){return e??(e=t()),Reflect.defineProperty(e,n,o)}})}function os(t){return typeof t=="bigint"?t.toString()+"n":typeof t=="string"?`"${t}"`:`${t}`}function ga(t){return Object.keys(t).filter(e=>t[e]._zod.optin==="optional"&&t[e]._zod.optout==="optional")}var ya={safeint:[Number.MIN_SAFE_INTEGER,Number.MAX_SAFE_INTEGER],int32:[-2147483648,2147483647],uint32:[0,4294967295],float32:[-34028234663852886e22,34028234663852886e22],float64:[-Number.MAX_VALUE,Number.MAX_VALUE]},jp={int64:[BigInt("-9223372036854775808"),BigInt("9223372036854775807")],uint64:[BigInt(0),BigInt("18446744073709551615")]};function pw(t,e){let r={},n=t._zod.def;for(let o in e){if(!(o in n.shape))throw new Error(`Unrecognized key: "${o}"`);e[o]&&(r[o]=n.shape[o])}return Xe(t,{...t._zod.def,shape:r,checks:[]})}function fw(t,e){let r={...t._zod.def.shape},n=t._zod.def;for(let o in e){if(!(o in n.shape))throw new Error(`Unrecognized key: "${o}"`);e[o]&&delete r[o]}return Xe(t,{...t._zod.def,shape:r,checks:[]})}function mw(t,e){if(!Qr(e))throw new Error("Invalid input to extend: expected a plain object");let r={...t._zod.def,get shape(){let n={...t._zod.def.shape,...e};return fa(this,"shape",n),n},checks:[]};return Xe(t,r)}function hw(t,e){return Xe(t,{...t._zod.def,get shape(){let r={...t._zod.def.shape,...e._zod.def.shape};return fa(this,"shape",r),r},catchall:e._zod.def.catchall,checks:[]})}function gw(t,e,r){let n=e._zod.def.shape,o={...n};if(r)for(let s in r){if(!(s in n))throw new Error(`Unrecognized key: "${s}"`);r[s]&&(o[s]=t?new t({type:"optional",innerType:n[s]}):n[s])}else for(let s in n)o[s]=t?new t({type:"optional",innerType:n[s]}):n[s];return Xe(e,{...e._zod.def,shape:o,checks:[]})}function yw(t,e,r){let n=e._zod.def.shape,o={...n};if(r)for(let s in r){if(!(s in o))throw new Error(`Unrecognized key: "${s}"`);r[s]&&(o[s]=new t({type:"nonoptional",innerType:n[s]}))}else for(let s in n)o[s]=new t({type:"nonoptional",innerType:n[s]});return Xe(e,{...e._zod.def,shape:o,checks:[]})}function Sr(t,e=0){for(let r=e;r<t.issues.length;r++)if(t.issues[r]?.continue!==!0)return!0;return!1}function yt(t,e){return e.map(r=>{var n;return(n=r).path??(n.path=[]),r.path.unshift(t),r})}function Dn(t){return typeof t=="string"?t:t?.message}function it(t,e,r){let n={...t,path:t.path??[]};if(!t.message){let o=Dn(t.inst?._zod.def?.error?.(t))??Dn(e?.error?.(t))??Dn(r.customError?.(t))??Dn(r.localeError?.(t))??"Invalid input";n.message=o}return delete n.inst,delete n.continue,e?.reportInput||delete n.input,n}function Np(t){return t instanceof Set?"set":t instanceof Map?"map":t instanceof File?"file":"unknown"}function Vn(t){return Array.isArray(t)?"array":typeof t=="string"?"string":"unknown"}function _a(...t){let[e,r,n]=t;return typeof e=="string"?{message:e,code:"custom",input:r,inst:n}:{...e}}function _w(t){return Object.entries(t).filter(([e,r])=>Number.isNaN(Number.parseInt(e,10))).map(e=>e[1])}var la=class{constructor(...e){}};var Cp=(t,e)=>{t.name="$ZodError",Object.defineProperty(t,"_zod",{value:t._zod,enumerable:!1}),Object.defineProperty(t,"issues",{value:e,enumerable:!1}),Object.defineProperty(t,"message",{get(){return JSON.stringify(e,da,2)},enumerable:!0}),Object.defineProperty(t,"toString",{value:()=>t.message,enumerable:!1})},ss=_("$ZodError",Cp),Hn=_("$ZodError",Cp,{Parent:Error});function va(t,e=r=>r.message){let r={},n=[];for(let o of t.issues)o.path.length>0?(r[o.path[0]]=r[o.path[0]]||[],r[o.path[0]].push(e(o))):n.push(e(o));return{formErrors:n,fieldErrors:r}}function xa(t,e){let r=e||function(s){return s.message},n={_errors:[]},o=s=>{for(let i of s.issues)if(i.code==="invalid_union"&&i.errors.length)i.errors.map(a=>o({issues:a}));else if(i.code==="invalid_key")o({issues:i.issues});else if(i.code==="invalid_element")o({issues:i.issues});else if(i.path.length===0)n._errors.push(r(i));else{let a=n,c=0;for(;c<i.path.length;){let u=i.path[c];c===i.path.length-1?(a[u]=a[u]||{_errors:[]},a[u]._errors.push(r(i))):a[u]=a[u]||{_errors:[]},a=a[u],c++}}};return o(t),n}var wa=t=>(e,r,n,o)=>{let s=n?Object.assign(n,{async:!1}):{async:!1},i=e._zod.run({value:r,issues:[]},s);if(i instanceof Promise)throw new Ot;if(i.issues.length){let a=new(o?.Err??t)(i.issues.map(c=>it(c,s,Be())));throw ns(a,o?.callee),a}return i.value},ba=wa(Hn),$a=t=>async(e,r,n,o)=>{let s=n?Object.assign(n,{async:!0}):{async:!0},i=e._zod.run({value:r,issues:[]},s);if(i instanceof Promise&&(i=await i),i.issues.length){let a=new(o?.Err??t)(i.issues.map(c=>it(c,s,Be())));throw ns(a,o?.callee),a}return i.value},ka=$a(Hn),Sa=t=>(e,r,n)=>{let o=n?{...n,async:!1}:{async:!1},s=e._zod.run({value:r,issues:[]},o);if(s instanceof Promise)throw new Ot;return s.issues.length?{success:!1,error:new(t??ss)(s.issues.map(i=>it(i,o,Be())))}:{success:!0,data:s.value}},zr=Sa(Hn),za=t=>async(e,r,n)=>{let o=n?Object.assign(n,{async:!0}):{async:!0},s=e._zod.run({value:r,issues:[]},o);return s instanceof Promise&&(s=await s),s.issues.length?{success:!1,error:new t(s.issues.map(i=>it(i,o,Be())))}:{success:!0,data:s.value}},Tr=za(Hn);var Zp=/^[cC][^\s-]{8,}$/,Ap=/^[0-9a-z]+$/,Mp=/^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/,Dp=/^[0-9a-vA-V]{20}$/,Lp=/^[A-Za-z0-9]{27}$/,qp=/^[a-zA-Z0-9_-]{21}$/,Up=/^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/;var Fp=/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/,Ta=t=>t?new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${t}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`):/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$/;var Vp=/^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/;var xw="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";function Hp(){return new RegExp(xw,"u")}var Kp=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,Bp=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})$/,Xp=/^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/,Jp=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,Gp=/^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,Pa=/^[A-Za-z0-9_-]*$/,Wp=/^([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+$/;var Yp=/^\+(?:[0-9]){6,14}[0-9]$/,Qp="(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))",ef=new RegExp(`^${Qp}$`);function tf(t){let e="(?:[01]\\d|2[0-3]):[0-5]\\d";return typeof t.precision=="number"?t.precision===-1?`${e}`:t.precision===0?`${e}:[0-5]\\d`:`${e}:[0-5]\\d\\.\\d{${t.precision}}`:`${e}(?::[0-5]\\d(?:\\.\\d+)?)?`}function rf(t){return new RegExp(`^${tf(t)}$`)}function nf(t){let e=tf({precision:t.precision}),r=["Z"];t.local&&r.push(""),t.offset&&r.push("([+-]\\d{2}:\\d{2})");let n=`${e}(?:${r.join("|")})`;return new RegExp(`^${Qp}T(?:${n})$`)}var of=t=>{let e=t?`[\\s\\S]{${t?.minimum??0},${t?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${e}$`)};var sf=/^\d+$/,af=/^-?\d+(?:\.\d+)?/i,cf=/true|false/i,uf=/null/i;var lf=/^[^A-Z]*$/,df=/^[^a-z]*$/;var be=_("$ZodCheck",(t,e)=>{var r;t._zod??(t._zod={}),t._zod.def=e,(r=t._zod).onattach??(r.onattach=[])}),pf={number:"number",bigint:"bigint",object:"date"},Oa=_("$ZodCheckLessThan",(t,e)=>{be.init(t,e);let r=pf[typeof e.value];t._zod.onattach.push(n=>{let o=n._zod.bag,s=(e.inclusive?o.maximum:o.exclusiveMaximum)??Number.POSITIVE_INFINITY;e.value<s&&(e.inclusive?o.maximum=e.value:o.exclusiveMaximum=e.value)}),t._zod.check=n=>{(e.inclusive?n.value<=e.value:n.value<e.value)||n.issues.push({origin:r,code:"too_big",maximum:e.value,input:n.value,inclusive:e.inclusive,inst:t,continue:!e.abort})}}),Ea=_("$ZodCheckGreaterThan",(t,e)=>{be.init(t,e);let r=pf[typeof e.value];t._zod.onattach.push(n=>{let o=n._zod.bag,s=(e.inclusive?o.minimum:o.exclusiveMinimum)??Number.NEGATIVE_INFINITY;e.value>s&&(e.inclusive?o.minimum=e.value:o.exclusiveMinimum=e.value)}),t._zod.check=n=>{(e.inclusive?n.value>=e.value:n.value>e.value)||n.issues.push({origin:r,code:"too_small",minimum:e.value,input:n.value,inclusive:e.inclusive,inst:t,continue:!e.abort})}}),ff=_("$ZodCheckMultipleOf",(t,e)=>{be.init(t,e),t._zod.onattach.push(r=>{var n;(n=r._zod.bag).multipleOf??(n.multipleOf=e.value)}),t._zod.check=r=>{if(typeof r.value!=typeof e.value)throw new Error("Cannot mix number and bigint in multiple_of check.");(typeof r.value=="bigint"?r.value%e.value===BigInt(0):pa(r.value,e.value)===0)||r.issues.push({origin:typeof r.value,code:"not_multiple_of",divisor:e.value,input:r.value,inst:t,continue:!e.abort})}}),mf=_("$ZodCheckNumberFormat",(t,e)=>{be.init(t,e),e.format=e.format||"float64";let r=e.format?.includes("int"),n=r?"int":"number",[o,s]=ya[e.format];t._zod.onattach.push(i=>{let a=i._zod.bag;a.format=e.format,a.minimum=o,a.maximum=s,r&&(a.pattern=sf)}),t._zod.check=i=>{let a=i.value;if(r){if(!Number.isInteger(a)){i.issues.push({expected:n,format:e.format,code:"invalid_type",input:a,inst:t});return}if(!Number.isSafeInteger(a)){a>0?i.issues.push({input:a,code:"too_big",maximum:Number.MAX_SAFE_INTEGER,note:"Integers must be within the safe integer range.",inst:t,origin:n,continue:!e.abort}):i.issues.push({input:a,code:"too_small",minimum:Number.MIN_SAFE_INTEGER,note:"Integers must be within the safe integer range.",inst:t,origin:n,continue:!e.abort});return}}a<o&&i.issues.push({origin:"number",input:a,code:"too_small",minimum:o,inclusive:!0,inst:t,continue:!e.abort}),a>s&&i.issues.push({origin:"number",input:a,code:"too_big",maximum:s,inst:t})}});var hf=_("$ZodCheckMaxLength",(t,e)=>{var r;be.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!Un(o)&&o.length!==void 0}),t._zod.onattach.push(n=>{let o=n._zod.bag.maximum??Number.POSITIVE_INFINITY;e.maximum<o&&(n._zod.bag.maximum=e.maximum)}),t._zod.check=n=>{let o=n.value;if(o.length<=e.maximum)return;let i=Vn(o);n.issues.push({origin:i,code:"too_big",maximum:e.maximum,inclusive:!0,input:o,inst:t,continue:!e.abort})}}),gf=_("$ZodCheckMinLength",(t,e)=>{var r;be.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!Un(o)&&o.length!==void 0}),t._zod.onattach.push(n=>{let o=n._zod.bag.minimum??Number.NEGATIVE_INFINITY;e.minimum>o&&(n._zod.bag.minimum=e.minimum)}),t._zod.check=n=>{let o=n.value;if(o.length>=e.minimum)return;let i=Vn(o);n.issues.push({origin:i,code:"too_small",minimum:e.minimum,inclusive:!0,input:o,inst:t,continue:!e.abort})}}),yf=_("$ZodCheckLengthEquals",(t,e)=>{var r;be.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!Un(o)&&o.length!==void 0}),t._zod.onattach.push(n=>{let o=n._zod.bag;o.minimum=e.length,o.maximum=e.length,o.length=e.length}),t._zod.check=n=>{let o=n.value,s=o.length;if(s===e.length)return;let i=Vn(o),a=s>e.length;n.issues.push({origin:i,...a?{code:"too_big",maximum:e.length}:{code:"too_small",minimum:e.length},inclusive:!0,exact:!0,input:n.value,inst:t,continue:!e.abort})}}),Kn=_("$ZodCheckStringFormat",(t,e)=>{var r,n;be.init(t,e),t._zod.onattach.push(o=>{let s=o._zod.bag;s.format=e.format,e.pattern&&(s.patterns??(s.patterns=new Set),s.patterns.add(e.pattern))}),e.pattern?(r=t._zod).check??(r.check=o=>{e.pattern.lastIndex=0,!e.pattern.test(o.value)&&o.issues.push({origin:"string",code:"invalid_format",format:e.format,input:o.value,...e.pattern?{pattern:e.pattern.toString()}:{},inst:t,continue:!e.abort})}):(n=t._zod).check??(n.check=()=>{})}),_f=_("$ZodCheckRegex",(t,e)=>{Kn.init(t,e),t._zod.check=r=>{e.pattern.lastIndex=0,!e.pattern.test(r.value)&&r.issues.push({origin:"string",code:"invalid_format",format:"regex",input:r.value,pattern:e.pattern.toString(),inst:t,continue:!e.abort})}}),vf=_("$ZodCheckLowerCase",(t,e)=>{e.pattern??(e.pattern=lf),Kn.init(t,e)}),xf=_("$ZodCheckUpperCase",(t,e)=>{e.pattern??(e.pattern=df),Kn.init(t,e)}),wf=_("$ZodCheckIncludes",(t,e)=>{be.init(t,e);let r=qt(e.includes),n=new RegExp(typeof e.position=="number"?`^.{${e.position}}${r}`:r);e.pattern=n,t._zod.onattach.push(o=>{let s=o._zod.bag;s.patterns??(s.patterns=new Set),s.patterns.add(n)}),t._zod.check=o=>{o.value.includes(e.includes,e.position)||o.issues.push({origin:"string",code:"invalid_format",format:"includes",includes:e.includes,input:o.value,inst:t,continue:!e.abort})}}),bf=_("$ZodCheckStartsWith",(t,e)=>{be.init(t,e);let r=new RegExp(`^${qt(e.prefix)}.*`);e.pattern??(e.pattern=r),t._zod.onattach.push(n=>{let o=n._zod.bag;o.patterns??(o.patterns=new Set),o.patterns.add(r)}),t._zod.check=n=>{n.value.startsWith(e.prefix)||n.issues.push({origin:"string",code:"invalid_format",format:"starts_with",prefix:e.prefix,input:n.value,inst:t,continue:!e.abort})}}),$f=_("$ZodCheckEndsWith",(t,e)=>{be.init(t,e);let r=new RegExp(`.*${qt(e.suffix)}$`);e.pattern??(e.pattern=r),t._zod.onattach.push(n=>{let o=n._zod.bag;o.patterns??(o.patterns=new Set),o.patterns.add(r)}),t._zod.check=n=>{n.value.endsWith(e.suffix)||n.issues.push({origin:"string",code:"invalid_format",format:"ends_with",suffix:e.suffix,input:n.value,inst:t,continue:!e.abort})}});var kf=_("$ZodCheckOverwrite",(t,e)=>{be.init(t,e),t._zod.check=r=>{r.value=e.tx(r.value)}});var as=class{constructor(e=[]){this.content=[],this.indent=0,this&&(this.args=e)}indented(e){this.indent+=1,e(this),this.indent-=1}write(e){if(typeof e=="function"){e(this,{execution:"sync"}),e(this,{execution:"async"});return}let n=e.split(`
|
|
109
126
|
`).filter(i=>i),o=Math.min(...n.map(i=>i.length-i.trimStart().length)),s=n.map(i=>i.slice(o)).map(i=>" ".repeat(this.indent*2)+i);for(let i of s)this.content.push(i)}compile(){let e=Function,r=this?.args,o=[...(this?.content??[""]).map(s=>` ${s}`)];return new e(...r,o.join(`
|
|
110
|
-
`))}};var
|
|
127
|
+
`))}};var zf={major:4,minor:0,patch:0};var ee=_("$ZodType",(t,e)=>{var r;t??(t={}),t._zod.def=e,t._zod.bag=t._zod.bag||{},t._zod.version=zf;let n=[...t._zod.def.checks??[]];t._zod.traits.has("$ZodCheck")&&n.unshift(t);for(let o of n)for(let s of o._zod.onattach)s(t);if(n.length===0)(r=t._zod).deferred??(r.deferred=[]),t._zod.deferred?.push(()=>{t._zod.run=t._zod.parse});else{let o=(s,i,a)=>{let c=Sr(s),u;for(let l of i){if(l._zod.def.when){if(!l._zod.def.when(s))continue}else if(c)continue;let d=s.issues.length,f=l._zod.check(s);if(f instanceof Promise&&a?.async===!1)throw new Ot;if(u||f instanceof Promise)u=(u??Promise.resolve()).then(async()=>{await f,s.issues.length!==d&&(c||(c=Sr(s,d)))});else{if(s.issues.length===d)continue;c||(c=Sr(s,d))}}return u?u.then(()=>s):s};t._zod.run=(s,i)=>{let a=t._zod.parse(s,i);if(a instanceof Promise){if(i.async===!1)throw new Ot;return a.then(c=>o(c,n,i))}return o(a,n,i)}}t["~standard"]={validate:o=>{try{let s=zr(t,o);return s.success?{value:s.data}:{issues:s.error?.issues}}catch{return Tr(t,o).then(i=>i.success?{value:i.data}:{issues:i.error?.issues})}},vendor:"zod",version:1}}),Bn=_("$ZodString",(t,e)=>{ee.init(t,e),t._zod.pattern=[...t?._zod.bag?.patterns??[]].pop()??of(t._zod.bag),t._zod.parse=(r,n)=>{if(e.coerce)try{r.value=String(r.value)}catch{}return typeof r.value=="string"||r.issues.push({expected:"string",code:"invalid_type",input:r.value,inst:t}),r}}),oe=_("$ZodStringFormat",(t,e)=>{Kn.init(t,e),Bn.init(t,e)}),Ra=_("$ZodGUID",(t,e)=>{e.pattern??(e.pattern=Fp),oe.init(t,e)}),ja=_("$ZodUUID",(t,e)=>{if(e.version){let n={v1:1,v2:2,v3:3,v4:4,v5:5,v6:6,v7:7,v8:8}[e.version];if(n===void 0)throw new Error(`Invalid UUID version: "${e.version}"`);e.pattern??(e.pattern=Ta(n))}else e.pattern??(e.pattern=Ta());oe.init(t,e)}),Na=_("$ZodEmail",(t,e)=>{e.pattern??(e.pattern=Vp),oe.init(t,e)}),Ca=_("$ZodURL",(t,e)=>{oe.init(t,e),t._zod.check=r=>{try{let n=r.value,o=new URL(n),s=o.href;e.hostname&&(e.hostname.lastIndex=0,e.hostname.test(o.hostname)||r.issues.push({code:"invalid_format",format:"url",note:"Invalid hostname",pattern:Wp.source,input:r.value,inst:t,continue:!e.abort})),e.protocol&&(e.protocol.lastIndex=0,e.protocol.test(o.protocol.endsWith(":")?o.protocol.slice(0,-1):o.protocol)||r.issues.push({code:"invalid_format",format:"url",note:"Invalid protocol",pattern:e.protocol.source,input:r.value,inst:t,continue:!e.abort})),!n.endsWith("/")&&s.endsWith("/")?r.value=s.slice(0,-1):r.value=s;return}catch{r.issues.push({code:"invalid_format",format:"url",input:r.value,inst:t,continue:!e.abort})}}}),Za=_("$ZodEmoji",(t,e)=>{e.pattern??(e.pattern=Hp()),oe.init(t,e)}),Aa=_("$ZodNanoID",(t,e)=>{e.pattern??(e.pattern=qp),oe.init(t,e)}),Ma=_("$ZodCUID",(t,e)=>{e.pattern??(e.pattern=Zp),oe.init(t,e)}),Da=_("$ZodCUID2",(t,e)=>{e.pattern??(e.pattern=Ap),oe.init(t,e)}),La=_("$ZodULID",(t,e)=>{e.pattern??(e.pattern=Mp),oe.init(t,e)}),qa=_("$ZodXID",(t,e)=>{e.pattern??(e.pattern=Dp),oe.init(t,e)}),Ua=_("$ZodKSUID",(t,e)=>{e.pattern??(e.pattern=Lp),oe.init(t,e)}),Zf=_("$ZodISODateTime",(t,e)=>{e.pattern??(e.pattern=nf(e)),oe.init(t,e)}),Af=_("$ZodISODate",(t,e)=>{e.pattern??(e.pattern=ef),oe.init(t,e)}),Mf=_("$ZodISOTime",(t,e)=>{e.pattern??(e.pattern=rf(e)),oe.init(t,e)}),Df=_("$ZodISODuration",(t,e)=>{e.pattern??(e.pattern=Up),oe.init(t,e)}),Fa=_("$ZodIPv4",(t,e)=>{e.pattern??(e.pattern=Kp),oe.init(t,e),t._zod.onattach.push(r=>{let n=r._zod.bag;n.format="ipv4"})}),Va=_("$ZodIPv6",(t,e)=>{e.pattern??(e.pattern=Bp),oe.init(t,e),t._zod.onattach.push(r=>{let n=r._zod.bag;n.format="ipv6"}),t._zod.check=r=>{try{new URL(`http://[${r.value}]`)}catch{r.issues.push({code:"invalid_format",format:"ipv6",input:r.value,inst:t,continue:!e.abort})}}}),Ha=_("$ZodCIDRv4",(t,e)=>{e.pattern??(e.pattern=Xp),oe.init(t,e)}),Ka=_("$ZodCIDRv6",(t,e)=>{e.pattern??(e.pattern=Jp),oe.init(t,e),t._zod.check=r=>{let[n,o]=r.value.split("/");try{if(!o)throw new Error;let s=Number(o);if(`${s}`!==o)throw new Error;if(s<0||s>128)throw new Error;new URL(`http://[${n}]`)}catch{r.issues.push({code:"invalid_format",format:"cidrv6",input:r.value,inst:t,continue:!e.abort})}}});function Lf(t){if(t==="")return!0;if(t.length%4!==0)return!1;try{return atob(t),!0}catch{return!1}}var Ba=_("$ZodBase64",(t,e)=>{e.pattern??(e.pattern=Gp),oe.init(t,e),t._zod.onattach.push(r=>{r._zod.bag.contentEncoding="base64"}),t._zod.check=r=>{Lf(r.value)||r.issues.push({code:"invalid_format",format:"base64",input:r.value,inst:t,continue:!e.abort})}});function ww(t){if(!Pa.test(t))return!1;let e=t.replace(/[-_]/g,n=>n==="-"?"+":"/"),r=e.padEnd(Math.ceil(e.length/4)*4,"=");return Lf(r)}var Xa=_("$ZodBase64URL",(t,e)=>{e.pattern??(e.pattern=Pa),oe.init(t,e),t._zod.onattach.push(r=>{r._zod.bag.contentEncoding="base64url"}),t._zod.check=r=>{ww(r.value)||r.issues.push({code:"invalid_format",format:"base64url",input:r.value,inst:t,continue:!e.abort})}}),Ja=_("$ZodE164",(t,e)=>{e.pattern??(e.pattern=Yp),oe.init(t,e)});function bw(t,e=null){try{let r=t.split(".");if(r.length!==3)return!1;let[n]=r;if(!n)return!1;let o=JSON.parse(atob(n));return!("typ"in o&&o?.typ!=="JWT"||!o.alg||e&&(!("alg"in o)||o.alg!==e))}catch{return!1}}var Ga=_("$ZodJWT",(t,e)=>{oe.init(t,e),t._zod.check=r=>{bw(r.value,e.alg)||r.issues.push({code:"invalid_format",format:"jwt",input:r.value,inst:t,continue:!e.abort})}});var us=_("$ZodNumber",(t,e)=>{ee.init(t,e),t._zod.pattern=t._zod.bag.pattern??af,t._zod.parse=(r,n)=>{if(e.coerce)try{r.value=Number(r.value)}catch{}let o=r.value;if(typeof o=="number"&&!Number.isNaN(o)&&Number.isFinite(o))return r;let s=typeof o=="number"?Number.isNaN(o)?"NaN":Number.isFinite(o)?void 0:"Infinity":void 0;return r.issues.push({expected:"number",code:"invalid_type",input:o,inst:t,...s?{received:s}:{}}),r}}),Wa=_("$ZodNumber",(t,e)=>{mf.init(t,e),us.init(t,e)}),Ya=_("$ZodBoolean",(t,e)=>{ee.init(t,e),t._zod.pattern=cf,t._zod.parse=(r,n)=>{if(e.coerce)try{r.value=!!r.value}catch{}let o=r.value;return typeof o=="boolean"||r.issues.push({expected:"boolean",code:"invalid_type",input:o,inst:t}),r}});var Qa=_("$ZodNull",(t,e)=>{ee.init(t,e),t._zod.pattern=uf,t._zod.values=new Set([null]),t._zod.parse=(r,n)=>{let o=r.value;return o===null||r.issues.push({expected:"null",code:"invalid_type",input:o,inst:t}),r}});var ec=_("$ZodUnknown",(t,e)=>{ee.init(t,e),t._zod.parse=r=>r}),tc=_("$ZodNever",(t,e)=>{ee.init(t,e),t._zod.parse=(r,n)=>(r.issues.push({expected:"never",code:"invalid_type",input:r.value,inst:t}),r)});function Tf(t,e,r){t.issues.length&&e.issues.push(...yt(r,t.issues)),e.value[r]=t.value}var rc=_("$ZodArray",(t,e)=>{ee.init(t,e),t._zod.parse=(r,n)=>{let o=r.value;if(!Array.isArray(o))return r.issues.push({expected:"array",code:"invalid_type",input:o,inst:t}),r;r.value=Array(o.length);let s=[];for(let i=0;i<o.length;i++){let a=o[i],c=e.element._zod.run({value:a,issues:[]},n);c instanceof Promise?s.push(c.then(u=>Tf(u,r,i))):Tf(c,r,i)}return s.length?Promise.all(s).then(()=>r):r}});function cs(t,e,r){t.issues.length&&e.issues.push(...yt(r,t.issues)),e.value[r]=t.value}function Pf(t,e,r,n){t.issues.length?n[r]===void 0?r in n?e.value[r]=void 0:e.value[r]=t.value:e.issues.push(...yt(r,t.issues)):t.value===void 0?r in n&&(e.value[r]=void 0):e.value[r]=t.value}var ls=_("$ZodObject",(t,e)=>{ee.init(t,e);let r=qn(()=>{let d=Object.keys(e.shape);for(let m of d)if(!(e.shape[m]instanceof ee))throw new Error(`Invalid element at key "${m}": expected a Zod schema`);let f=ga(e.shape);return{shape:e.shape,keys:d,keySet:new Set(d),numKeys:d.length,optionalKeys:new Set(f)}});ne(t._zod,"propValues",()=>{let d=e.shape,f={};for(let m in d){let p=d[m]._zod;if(p.values){f[m]??(f[m]=new Set);for(let h of p.values)f[m].add(h)}}return f});let n=d=>{let f=new as(["shape","payload","ctx"]),m=r.value,p=v=>{let x=kr(v);return`shape[${x}]._zod.run({ value: input[${x}], issues: [] }, ctx)`};f.write("const input = payload.value;");let h=Object.create(null),g=0;for(let v of m.keys)h[v]=`key_${g++}`;f.write("const newResult = {}");for(let v of m.keys)if(m.optionalKeys.has(v)){let x=h[v];f.write(`const ${x} = ${p(v)};`);let T=kr(v);f.write(`
|
|
111
128
|
if (${x}.issues.length) {
|
|
112
129
|
if (input[${T}] === undefined) {
|
|
113
130
|
if (${T} in input) {
|
|
@@ -126,55 +143,72 @@ Apply these changes to your files?`)){console.log("Discarded. Nothing was writte
|
|
|
126
143
|
} else {
|
|
127
144
|
newResult[${T}] = ${x}.value;
|
|
128
145
|
}
|
|
129
|
-
`)}else{let x=h[v];
|
|
146
|
+
`)}else{let x=h[v];f.write(`const ${x} = ${p(v)};`),f.write(`
|
|
130
147
|
if (${x}.issues.length) payload.issues = payload.issues.concat(${x}.issues.map(iss => ({
|
|
131
148
|
...iss,
|
|
132
|
-
path: iss.path ? [${
|
|
133
|
-
})));`),m.write(`newResult[${yr(v)}] = ${x}.value`)}m.write("payload.value = newResult;"),m.write("return payload;");let b=m.compile();return(v,x)=>b(d,v,x)},o,s=Br,i=!Uo.jitless,c=i&&Xi.value,u=e.catchall,l;t._zod.parse=(d,m)=>{l??(l=r.value);let f=d.value;if(!s(f))return d.issues.push({expected:"object",code:"invalid_type",input:f,inst:t}),d;let p=[];if(i&&c&&m?.async===!1&&m.jitless!==!0)o||(o=n(e.shape)),d=o(d,m);else{d.value={};let x=l.shape;for(let T of l.keys){let N=x[T],he=N._zod.run({value:f[T],issues:[]},m),Fe=N._zod.optin==="optional"&&N._zod.optout==="optional";he instanceof Promise?p.push(he.then(ye=>Fe?Yp(ye,d,T,f):Xo(ye,d,T))):Fe?Yp(he,d,T,f):Xo(he,d,T)}}if(!u)return p.length?Promise.all(p).then(()=>d):d;let h=[],g=l.keySet,b=u._zod,v=b.def.type;for(let x of Object.keys(f)){if(g.has(x))continue;if(v==="never"){h.push(x);continue}let T=b.run({value:f[x],issues:[]},m);T instanceof Promise?p.push(T.then(N=>Xo(N,d,x))):Xo(T,d,x)}return h.length&&d.issues.push({code:"unrecognized_keys",keys:h,input:f,inst:t}),p.length?Promise.all(p).then(()=>d):d}});function Qp(t,e,r,n){for(let o of t)if(o.issues.length===0)return e.value=o.value,e;return e.issues.push({code:"invalid_union",input:e.value,inst:r,errors:t.map(o=>o.issues.map(s=>st(s,n,Be())))}),e}var Yo=_("$ZodUnion",(t,e)=>{ee.init(t,e),ne(t._zod,"optin",()=>e.options.some(r=>r._zod.optin==="optional")?"optional":void 0),ne(t._zod,"optout",()=>e.options.some(r=>r._zod.optout==="optional")?"optional":void 0),ne(t._zod,"values",()=>{if(e.options.every(r=>r._zod.values))return new Set(e.options.flatMap(r=>Array.from(r._zod.values)))}),ne(t._zod,"pattern",()=>{if(e.options.every(r=>r._zod.pattern)){let r=e.options.map(n=>n._zod.pattern);return new RegExp(`^(${r.map(n=>Cn(n.source)).join("|")})$`)}}),t._zod.parse=(r,n)=>{let o=!1,s=[];for(let i of e.options){let a=i._zod.run({value:r.value,issues:[]},n);if(a instanceof Promise)s.push(a),o=!0;else{if(a.issues.length===0)return a;s.push(a)}}return o?Promise.all(s).then(i=>Qp(i,r,t,n)):Qp(s,r,t,n)}}),Ma=_("$ZodDiscriminatedUnion",(t,e)=>{Yo.init(t,e);let r=t._zod.parse;ne(t._zod,"propValues",()=>{let o={};for(let s of e.options){let i=s._zod.propValues;if(!i||Object.keys(i).length===0)throw new Error(`Invalid discriminated union option at index "${e.options.indexOf(s)}"`);for(let[a,c]of Object.entries(i)){o[a]||(o[a]=new Set);for(let u of c)o[a].add(u)}}return o});let n=jn(()=>{let o=e.options,s=new Map;for(let i of o){let a=i._zod.propValues[e.discriminator];if(!a||a.size===0)throw new Error(`Invalid discriminated union option at index "${e.options.indexOf(i)}"`);for(let c of a){if(s.has(c))throw new Error(`Duplicate discriminator value "${String(c)}"`);s.set(c,i)}}return s});t._zod.parse=(o,s)=>{let i=o.value;if(!Br(i))return o.issues.push({code:"invalid_type",expected:"object",input:i,inst:t}),o;let a=n.value.get(i?.[e.discriminator]);return a?a._zod.run(o,s):e.unionFallback?r(o,s):(o.issues.push({code:"invalid_union",errors:[],note:"No matching discriminator",input:i,path:[e.discriminator],inst:t}),o)}}),Da=_("$ZodIntersection",(t,e)=>{ee.init(t,e),t._zod.parse=(r,n)=>{let o=r.value,s=e.left._zod.run({value:o,issues:[]},n),i=e.right._zod.run({value:o,issues:[]},n);return s instanceof Promise||i instanceof Promise?Promise.all([s,i]).then(([c,u])=>ef(r,c,u)):ef(r,s,i)}});function pa(t,e){if(t===e)return{valid:!0,data:t};if(t instanceof Date&&e instanceof Date&&+t==+e)return{valid:!0,data:t};if(Kr(t)&&Kr(e)){let r=Object.keys(e),n=Object.keys(t).filter(s=>r.indexOf(s)!==-1),o={...t,...e};for(let s of n){let i=pa(t[s],e[s]);if(!i.valid)return{valid:!1,mergeErrorPath:[s,...i.mergeErrorPath]};o[s]=i.data}return{valid:!0,data:o}}if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return{valid:!1,mergeErrorPath:[]};let r=[];for(let n=0;n<t.length;n++){let o=t[n],s=e[n],i=pa(o,s);if(!i.valid)return{valid:!1,mergeErrorPath:[n,...i.mergeErrorPath]};r.push(i.data)}return{valid:!0,data:r}}return{valid:!1,mergeErrorPath:[]}}function ef(t,e,r){if(e.issues.length&&t.issues.push(...e.issues),r.issues.length&&t.issues.push(...r.issues),_r(t))return t;let n=pa(e.value,r.value);if(!n.valid)throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(n.mergeErrorPath)}`);return t.value=n.data,t}var La=_("$ZodRecord",(t,e)=>{ee.init(t,e),t._zod.parse=(r,n)=>{let o=r.value;if(!Kr(o))return r.issues.push({expected:"record",code:"invalid_type",input:o,inst:t}),r;let s=[];if(e.keyType._zod.values){let i=e.keyType._zod.values;r.value={};for(let c of i)if(typeof c=="string"||typeof c=="number"||typeof c=="symbol"){let u=e.valueType._zod.run({value:o[c],issues:[]},n);u instanceof Promise?s.push(u.then(l=>{l.issues.length&&r.issues.push(...yt(c,l.issues)),r.value[c]=l.value})):(u.issues.length&&r.issues.push(...yt(c,u.issues)),r.value[c]=u.value)}let a;for(let c in o)i.has(c)||(a=a??[],a.push(c));a&&a.length>0&&r.issues.push({code:"unrecognized_keys",input:o,inst:t,keys:a})}else{r.value={};for(let i of Reflect.ownKeys(o)){if(i==="__proto__")continue;let a=e.keyType._zod.run({value:i,issues:[]},n);if(a instanceof Promise)throw new Error("Async schemas not supported in object keys currently");if(a.issues.length){r.issues.push({origin:"record",code:"invalid_key",issues:a.issues.map(u=>st(u,n,Be())),input:i,path:[i],inst:t}),r.value[a.value]=a.value;continue}let c=e.valueType._zod.run({value:o[i],issues:[]},n);c instanceof Promise?s.push(c.then(u=>{u.issues.length&&r.issues.push(...yt(i,u.issues)),r.value[a.value]=u.value})):(c.issues.length&&r.issues.push(...yt(i,c.issues)),r.value[a.value]=c.value)}}return s.length?Promise.all(s).then(()=>r):r}});var qa=_("$ZodEnum",(t,e)=>{ee.init(t,e);let r=Rn(e.entries);t._zod.values=new Set(r),t._zod.pattern=new RegExp(`^(${r.filter(n=>Gi.has(typeof n)).map(n=>typeof n=="string"?Mt(n):n.toString()).join("|")})$`),t._zod.parse=(n,o)=>{let s=n.value;return t._zod.values.has(s)||n.issues.push({code:"invalid_value",values:r,input:s,inst:t}),n}}),Ua=_("$ZodLiteral",(t,e)=>{ee.init(t,e),t._zod.values=new Set(e.values),t._zod.pattern=new RegExp(`^(${e.values.map(r=>typeof r=="string"?Mt(r):r?r.toString():String(r)).join("|")})$`),t._zod.parse=(r,n)=>{let o=r.value;return t._zod.values.has(o)||r.issues.push({code:"invalid_value",values:e.values,input:o,inst:t}),r}});var Fa=_("$ZodTransform",(t,e)=>{ee.init(t,e),t._zod.parse=(r,n)=>{let o=e.transform(r.value,r);if(n.async)return(o instanceof Promise?o:Promise.resolve(o)).then(i=>(r.value=i,r));if(o instanceof Promise)throw new Pt;return r.value=o,r}}),Va=_("$ZodOptional",(t,e)=>{ee.init(t,e),t._zod.optin="optional",t._zod.optout="optional",ne(t._zod,"values",()=>e.innerType._zod.values?new Set([...e.innerType._zod.values,void 0]):void 0),ne(t._zod,"pattern",()=>{let r=e.innerType._zod.pattern;return r?new RegExp(`^(${Cn(r.source)})?$`):void 0}),t._zod.parse=(r,n)=>e.innerType._zod.optin==="optional"?e.innerType._zod.run(r,n):r.value===void 0?r:e.innerType._zod.run(r,n)}),Ha=_("$ZodNullable",(t,e)=>{ee.init(t,e),ne(t._zod,"optin",()=>e.innerType._zod.optin),ne(t._zod,"optout",()=>e.innerType._zod.optout),ne(t._zod,"pattern",()=>{let r=e.innerType._zod.pattern;return r?new RegExp(`^(${Cn(r.source)}|null)$`):void 0}),ne(t._zod,"values",()=>e.innerType._zod.values?new Set([...e.innerType._zod.values,null]):void 0),t._zod.parse=(r,n)=>r.value===null?r:e.innerType._zod.run(r,n)}),Ba=_("$ZodDefault",(t,e)=>{ee.init(t,e),t._zod.optin="optional",ne(t._zod,"values",()=>e.innerType._zod.values),t._zod.parse=(r,n)=>{if(r.value===void 0)return r.value=e.defaultValue,r;let o=e.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>tf(s,e)):tf(o,e)}});function tf(t,e){return t.value===void 0&&(t.value=e.defaultValue),t}var Ka=_("$ZodPrefault",(t,e)=>{ee.init(t,e),t._zod.optin="optional",ne(t._zod,"values",()=>e.innerType._zod.values),t._zod.parse=(r,n)=>(r.value===void 0&&(r.value=e.defaultValue),e.innerType._zod.run(r,n))}),Ja=_("$ZodNonOptional",(t,e)=>{ee.init(t,e),ne(t._zod,"values",()=>{let r=e.innerType._zod.values;return r?new Set([...r].filter(n=>n!==void 0)):void 0}),t._zod.parse=(r,n)=>{let o=e.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>rf(s,t)):rf(o,t)}});function rf(t,e){return!t.issues.length&&t.value===void 0&&t.issues.push({code:"invalid_type",expected:"nonoptional",input:t.value,inst:e}),t}var Xa=_("$ZodCatch",(t,e)=>{ee.init(t,e),t._zod.optin="optional",ne(t._zod,"optout",()=>e.innerType._zod.optout),ne(t._zod,"values",()=>e.innerType._zod.values),t._zod.parse=(r,n)=>{let o=e.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>(r.value=s.value,s.issues.length&&(r.value=e.catchValue({...r,error:{issues:s.issues.map(i=>st(i,n,Be()))},input:r.value}),r.issues=[]),r)):(r.value=o.value,o.issues.length&&(r.value=e.catchValue({...r,error:{issues:o.issues.map(s=>st(s,n,Be()))},input:r.value}),r.issues=[]),r)}});var Ga=_("$ZodPipe",(t,e)=>{ee.init(t,e),ne(t._zod,"values",()=>e.in._zod.values),ne(t._zod,"optin",()=>e.in._zod.optin),ne(t._zod,"optout",()=>e.out._zod.optout),t._zod.parse=(r,n)=>{let o=e.in._zod.run(r,n);return o instanceof Promise?o.then(s=>nf(s,e,n)):nf(o,e,n)}});function nf(t,e,r){return _r(t)?t:e.out._zod.run({value:t.value,issues:t.issues},r)}var Wa=_("$ZodReadonly",(t,e)=>{ee.init(t,e),ne(t._zod,"propValues",()=>e.innerType._zod.propValues),ne(t._zod,"values",()=>e.innerType._zod.values),ne(t._zod,"optin",()=>e.innerType._zod.optin),ne(t._zod,"optout",()=>e.innerType._zod.optout),t._zod.parse=(r,n)=>{let o=e.innerType._zod.run(r,n);return o instanceof Promise?o.then(of):of(o)}});function of(t){return t.value=Object.freeze(t.value),t}var Ya=_("$ZodCustom",(t,e)=>{we.init(t,e),ee.init(t,e),t._zod.parse=(r,n)=>r,t._zod.check=r=>{let n=r.value,o=e.fn(n);if(o instanceof Promise)return o.then(s=>sf(s,r,n,t));sf(o,r,n,t)}});function sf(t,e,r,n){if(!t){let o={code:"custom",input:r,inst:n,path:[...n._zod.def.path??[]],continue:!n._zod.def.abort};n._zod.def.params&&(o.params=n._zod.def.params),e.issues.push(Qi(o))}}var Vx=t=>{let e=typeof t;switch(e){case"number":return Number.isNaN(t)?"NaN":"number";case"object":{if(Array.isArray(t))return"array";if(t===null)return"null";if(Object.getPrototypeOf(t)!==Object.prototype&&t.constructor)return t.constructor.name}}return e},Hx=()=>{let t={string:{unit:"characters",verb:"to have"},file:{unit:"bytes",verb:"to have"},array:{unit:"items",verb:"to have"},set:{unit:"items",verb:"to have"}};function e(n){return t[n]??null}let r={regex:"input",email:"email address",url:"URL",emoji:"emoji",uuid:"UUID",uuidv4:"UUIDv4",uuidv6:"UUIDv6",nanoid:"nanoid",guid:"GUID",cuid:"cuid",cuid2:"cuid2",ulid:"ULID",xid:"XID",ksuid:"KSUID",datetime:"ISO datetime",date:"ISO date",time:"ISO time",duration:"ISO duration",ipv4:"IPv4 address",ipv6:"IPv6 address",cidrv4:"IPv4 range",cidrv6:"IPv6 range",base64:"base64-encoded string",base64url:"base64url-encoded string",json_string:"JSON string",e164:"E.164 number",jwt:"JWT",template_literal:"input"};return n=>{switch(n.code){case"invalid_type":return`Invalid input: expected ${n.expected}, received ${Vx(n.input)}`;case"invalid_value":return n.values.length===1?`Invalid input: expected ${Ho(n.values[0])}`:`Invalid option: expected one of ${Fo(n.values,"|")}`;case"too_big":{let o=n.inclusive?"<=":"<",s=e(n.origin);return s?`Too big: expected ${n.origin??"value"} to have ${o}${n.maximum.toString()} ${s.unit??"elements"}`:`Too big: expected ${n.origin??"value"} to be ${o}${n.maximum.toString()}`}case"too_small":{let o=n.inclusive?">=":">",s=e(n.origin);return s?`Too small: expected ${n.origin} to have ${o}${n.minimum.toString()} ${s.unit}`:`Too small: expected ${n.origin} to be ${o}${n.minimum.toString()}`}case"invalid_format":{let o=n;return o.format==="starts_with"?`Invalid string: must start with "${o.prefix}"`:o.format==="ends_with"?`Invalid string: must end with "${o.suffix}"`:o.format==="includes"?`Invalid string: must include "${o.includes}"`:o.format==="regex"?`Invalid string: must match pattern ${o.pattern}`:`Invalid ${r[o.format]??n.format}`}case"not_multiple_of":return`Invalid number: must be a multiple of ${n.divisor}`;case"unrecognized_keys":return`Unrecognized key${n.keys.length>1?"s":""}: ${Fo(n.keys,", ")}`;case"invalid_key":return`Invalid key in ${n.origin}`;case"invalid_union":return"Invalid input";case"invalid_element":return`Invalid value in ${n.origin}`;default:return"Invalid input"}}};function pf(){return{localeError:Hx()}}var Ln=class{constructor(){this._map=new Map,this._idmap=new Map}add(e,...r){let n=r[0];if(this._map.set(e,n),n&&typeof n=="object"&&"id"in n){if(this._idmap.has(n.id))throw new Error(`ID ${n.id} already exists in the registry`);this._idmap.set(n.id,e)}return this}clear(){return this._map=new Map,this._idmap=new Map,this}remove(e){let r=this._map.get(e);return r&&typeof r=="object"&&"id"in r&&this._idmap.delete(r.id),this._map.delete(e),this}get(e){let r=e._zod.parent;if(r){let n={...this.get(r)??{}};return delete n.id,{...n,...this._map.get(e)}}return this._map.get(e)}has(e){return this._map.has(e)}};function ff(){return new Ln}var Dt=ff();function Qa(t,e){return new t({type:"string",...Z(e)})}function ec(t,e){return new t({type:"string",format:"email",check:"string_format",abort:!1,...Z(e)})}function Qo(t,e){return new t({type:"string",format:"guid",check:"string_format",abort:!1,...Z(e)})}function tc(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,...Z(e)})}function rc(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v4",...Z(e)})}function nc(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v6",...Z(e)})}function oc(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v7",...Z(e)})}function sc(t,e){return new t({type:"string",format:"url",check:"string_format",abort:!1,...Z(e)})}function ic(t,e){return new t({type:"string",format:"emoji",check:"string_format",abort:!1,...Z(e)})}function ac(t,e){return new t({type:"string",format:"nanoid",check:"string_format",abort:!1,...Z(e)})}function cc(t,e){return new t({type:"string",format:"cuid",check:"string_format",abort:!1,...Z(e)})}function uc(t,e){return new t({type:"string",format:"cuid2",check:"string_format",abort:!1,...Z(e)})}function lc(t,e){return new t({type:"string",format:"ulid",check:"string_format",abort:!1,...Z(e)})}function dc(t,e){return new t({type:"string",format:"xid",check:"string_format",abort:!1,...Z(e)})}function pc(t,e){return new t({type:"string",format:"ksuid",check:"string_format",abort:!1,...Z(e)})}function fc(t,e){return new t({type:"string",format:"ipv4",check:"string_format",abort:!1,...Z(e)})}function mc(t,e){return new t({type:"string",format:"ipv6",check:"string_format",abort:!1,...Z(e)})}function hc(t,e){return new t({type:"string",format:"cidrv4",check:"string_format",abort:!1,...Z(e)})}function gc(t,e){return new t({type:"string",format:"cidrv6",check:"string_format",abort:!1,...Z(e)})}function yc(t,e){return new t({type:"string",format:"base64",check:"string_format",abort:!1,...Z(e)})}function _c(t,e){return new t({type:"string",format:"base64url",check:"string_format",abort:!1,...Z(e)})}function vc(t,e){return new t({type:"string",format:"e164",check:"string_format",abort:!1,...Z(e)})}function xc(t,e){return new t({type:"string",format:"jwt",check:"string_format",abort:!1,...Z(e)})}function mf(t,e){return new t({type:"string",format:"datetime",check:"string_format",offset:!1,local:!1,precision:null,...Z(e)})}function hf(t,e){return new t({type:"string",format:"date",check:"string_format",...Z(e)})}function gf(t,e){return new t({type:"string",format:"time",check:"string_format",precision:null,...Z(e)})}function yf(t,e){return new t({type:"string",format:"duration",check:"string_format",...Z(e)})}function bc(t,e){return new t({type:"number",checks:[],...Z(e)})}function wc(t,e){return new t({type:"number",check:"number_format",abort:!1,format:"safeint",...Z(e)})}function $c(t,e){return new t({type:"boolean",...Z(e)})}function kc(t,e){return new t({type:"null",...Z(e)})}function Sc(t){return new t({type:"unknown"})}function zc(t,e){return new t({type:"never",...Z(e)})}function es(t,e){return new la({check:"less_than",...Z(e),value:t,inclusive:!1})}function qn(t,e){return new la({check:"less_than",...Z(e),value:t,inclusive:!0})}function ts(t,e){return new da({check:"greater_than",...Z(e),value:t,inclusive:!1})}function Un(t,e){return new da({check:"greater_than",...Z(e),value:t,inclusive:!0})}function rs(t,e){return new Ap({check:"multiple_of",...Z(e),value:t})}function ns(t,e){return new Dp({check:"max_length",...Z(e),maximum:t})}function Jr(t,e){return new Lp({check:"min_length",...Z(e),minimum:t})}function os(t,e){return new qp({check:"length_equals",...Z(e),length:t})}function Tc(t,e){return new Up({check:"string_format",format:"regex",...Z(e),pattern:t})}function Pc(t){return new Fp({check:"string_format",format:"lowercase",...Z(t)})}function Ec(t){return new Vp({check:"string_format",format:"uppercase",...Z(t)})}function Oc(t,e){return new Hp({check:"string_format",format:"includes",...Z(e),includes:t})}function Ic(t,e){return new Bp({check:"string_format",format:"starts_with",...Z(e),prefix:t})}function Rc(t,e){return new Kp({check:"string_format",format:"ends_with",...Z(e),suffix:t})}function br(t){return new Jp({check:"overwrite",tx:t})}function jc(t){return br(e=>e.normalize(t))}function Nc(){return br(t=>t.trim())}function Cc(){return br(t=>t.toLowerCase())}function Zc(){return br(t=>t.toUpperCase())}function _f(t,e,r){return new t({type:"array",element:e,...Z(r)})}function Ac(t,e,r){let n=Z(r);return n.abort??(n.abort=!0),new t({type:"custom",check:"custom",fn:e,...n})}function Mc(t,e,r){return new t({type:"custom",check:"custom",fn:e,...Z(r)})}var ss=class{constructor(e){this.counter=0,this.metadataRegistry=e?.metadata??Dt,this.target=e?.target??"draft-2020-12",this.unrepresentable=e?.unrepresentable??"throw",this.override=e?.override??(()=>{}),this.io=e?.io??"output",this.seen=new Map}process(e,r={path:[],schemaPath:[]}){var n;let o=e._zod.def,s={guid:"uuid",url:"uri",datetime:"date-time",json_string:"json-string",regex:""},i=this.seen.get(e);if(i)return i.count++,r.schemaPath.includes(e)&&(i.cycle=r.path),i.schema;let a={schema:{},count:1,cycle:void 0,path:r.path};this.seen.set(e,a);let c=e._zod.toJSONSchema?.();if(c)a.schema=c;else{let d={...r,schemaPath:[...r.schemaPath,e],path:r.path},m=e._zod.parent;if(m)a.ref=m,this.process(m,d),this.seen.get(m).isParent=!0;else{let f=a.schema;switch(o.type){case"string":{let p=f;p.type="string";let{minimum:h,maximum:g,format:b,patterns:v,contentEncoding:x}=e._zod.bag;if(typeof h=="number"&&(p.minLength=h),typeof g=="number"&&(p.maxLength=g),b&&(p.format=s[b]??b,p.format===""&&delete p.format),x&&(p.contentEncoding=x),v&&v.size>0){let T=[...v];T.length===1?p.pattern=T[0].source:T.length>1&&(a.schema.allOf=[...T.map(N=>({...this.target==="draft-7"?{type:"string"}:{},pattern:N.source}))])}break}case"number":{let p=f,{minimum:h,maximum:g,format:b,multipleOf:v,exclusiveMaximum:x,exclusiveMinimum:T}=e._zod.bag;typeof b=="string"&&b.includes("int")?p.type="integer":p.type="number",typeof T=="number"&&(p.exclusiveMinimum=T),typeof h=="number"&&(p.minimum=h,typeof T=="number"&&(T>=h?delete p.minimum:delete p.exclusiveMinimum)),typeof x=="number"&&(p.exclusiveMaximum=x),typeof g=="number"&&(p.maximum=g,typeof x=="number"&&(x<=g?delete p.maximum:delete p.exclusiveMaximum)),typeof v=="number"&&(p.multipleOf=v);break}case"boolean":{let p=f;p.type="boolean";break}case"bigint":{if(this.unrepresentable==="throw")throw new Error("BigInt cannot be represented in JSON Schema");break}case"symbol":{if(this.unrepresentable==="throw")throw new Error("Symbols cannot be represented in JSON Schema");break}case"null":{f.type="null";break}case"any":break;case"unknown":break;case"undefined":{if(this.unrepresentable==="throw")throw new Error("Undefined cannot be represented in JSON Schema");break}case"void":{if(this.unrepresentable==="throw")throw new Error("Void cannot be represented in JSON Schema");break}case"never":{f.not={};break}case"date":{if(this.unrepresentable==="throw")throw new Error("Date cannot be represented in JSON Schema");break}case"array":{let p=f,{minimum:h,maximum:g}=e._zod.bag;typeof h=="number"&&(p.minItems=h),typeof g=="number"&&(p.maxItems=g),p.type="array",p.items=this.process(o.element,{...d,path:[...d.path,"items"]});break}case"object":{let p=f;p.type="object",p.properties={};let h=o.shape;for(let v in h)p.properties[v]=this.process(h[v],{...d,path:[...d.path,"properties",v]});let g=new Set(Object.keys(h)),b=new Set([...g].filter(v=>{let x=o.shape[v]._zod;return this.io==="input"?x.optin===void 0:x.optout===void 0}));b.size>0&&(p.required=Array.from(b)),o.catchall?._zod.def.type==="never"?p.additionalProperties=!1:o.catchall?o.catchall&&(p.additionalProperties=this.process(o.catchall,{...d,path:[...d.path,"additionalProperties"]})):this.io==="output"&&(p.additionalProperties=!1);break}case"union":{let p=f;p.anyOf=o.options.map((h,g)=>this.process(h,{...d,path:[...d.path,"anyOf",g]}));break}case"intersection":{let p=f,h=this.process(o.left,{...d,path:[...d.path,"allOf",0]}),g=this.process(o.right,{...d,path:[...d.path,"allOf",1]}),b=x=>"allOf"in x&&Object.keys(x).length===1,v=[...b(h)?h.allOf:[h],...b(g)?g.allOf:[g]];p.allOf=v;break}case"tuple":{let p=f;p.type="array";let h=o.items.map((v,x)=>this.process(v,{...d,path:[...d.path,"prefixItems",x]}));if(this.target==="draft-2020-12"?p.prefixItems=h:p.items=h,o.rest){let v=this.process(o.rest,{...d,path:[...d.path,"items"]});this.target==="draft-2020-12"?p.items=v:p.additionalItems=v}o.rest&&(p.items=this.process(o.rest,{...d,path:[...d.path,"items"]}));let{minimum:g,maximum:b}=e._zod.bag;typeof g=="number"&&(p.minItems=g),typeof b=="number"&&(p.maxItems=b);break}case"record":{let p=f;p.type="object",p.propertyNames=this.process(o.keyType,{...d,path:[...d.path,"propertyNames"]}),p.additionalProperties=this.process(o.valueType,{...d,path:[...d.path,"additionalProperties"]});break}case"map":{if(this.unrepresentable==="throw")throw new Error("Map cannot be represented in JSON Schema");break}case"set":{if(this.unrepresentable==="throw")throw new Error("Set cannot be represented in JSON Schema");break}case"enum":{let p=f,h=Rn(o.entries);h.every(g=>typeof g=="number")&&(p.type="number"),h.every(g=>typeof g=="string")&&(p.type="string"),p.enum=h;break}case"literal":{let p=f,h=[];for(let g of o.values)if(g===void 0){if(this.unrepresentable==="throw")throw new Error("Literal `undefined` cannot be represented in JSON Schema")}else if(typeof g=="bigint"){if(this.unrepresentable==="throw")throw new Error("BigInt literals cannot be represented in JSON Schema");h.push(Number(g))}else h.push(g);if(h.length!==0)if(h.length===1){let g=h[0];p.type=g===null?"null":typeof g,p.const=g}else h.every(g=>typeof g=="number")&&(p.type="number"),h.every(g=>typeof g=="string")&&(p.type="string"),h.every(g=>typeof g=="boolean")&&(p.type="string"),h.every(g=>g===null)&&(p.type="null"),p.enum=h;break}case"file":{let p=f,h={type:"string",format:"binary",contentEncoding:"binary"},{minimum:g,maximum:b,mime:v}=e._zod.bag;g!==void 0&&(h.minLength=g),b!==void 0&&(h.maxLength=b),v?v.length===1?(h.contentMediaType=v[0],Object.assign(p,h)):p.anyOf=v.map(x=>({...h,contentMediaType:x})):Object.assign(p,h);break}case"transform":{if(this.unrepresentable==="throw")throw new Error("Transforms cannot be represented in JSON Schema");break}case"nullable":{let p=this.process(o.innerType,d);f.anyOf=[p,{type:"null"}];break}case"nonoptional":{this.process(o.innerType,d),a.ref=o.innerType;break}case"success":{let p=f;p.type="boolean";break}case"default":{this.process(o.innerType,d),a.ref=o.innerType,f.default=JSON.parse(JSON.stringify(o.defaultValue));break}case"prefault":{this.process(o.innerType,d),a.ref=o.innerType,this.io==="input"&&(f._prefault=JSON.parse(JSON.stringify(o.defaultValue)));break}case"catch":{this.process(o.innerType,d),a.ref=o.innerType;let p;try{p=o.catchValue(void 0)}catch{throw new Error("Dynamic catch values are not supported in JSON Schema")}f.default=p;break}case"nan":{if(this.unrepresentable==="throw")throw new Error("NaN cannot be represented in JSON Schema");break}case"template_literal":{let p=f,h=e._zod.pattern;if(!h)throw new Error("Pattern not found in template literal");p.type="string",p.pattern=h.source;break}case"pipe":{let p=this.io==="input"?o.in._zod.def.type==="transform"?o.out:o.in:o.out;this.process(p,d),a.ref=p;break}case"readonly":{this.process(o.innerType,d),a.ref=o.innerType,f.readOnly=!0;break}case"promise":{this.process(o.innerType,d),a.ref=o.innerType;break}case"optional":{this.process(o.innerType,d),a.ref=o.innerType;break}case"lazy":{let p=e._zod.innerType;this.process(p,d),a.ref=p;break}case"custom":{if(this.unrepresentable==="throw")throw new Error("Custom types cannot be represented in JSON Schema");break}default:}}}let u=this.metadataRegistry.get(e);return u&&Object.assign(a.schema,u),this.io==="input"&&_e(e)&&(delete a.schema.examples,delete a.schema.default),this.io==="input"&&a.schema._prefault&&((n=a.schema).default??(n.default=a.schema._prefault)),delete a.schema._prefault,this.seen.get(e).schema}emit(e,r){let n={cycles:r?.cycles??"ref",reused:r?.reused??"inline",external:r?.external??void 0},o=this.seen.get(e);if(!o)throw new Error("Unprocessed schema. This is a bug in Zod.");let s=l=>{let d=this.target==="draft-2020-12"?"$defs":"definitions";if(n.external){let h=n.external.registry.get(l[0])?.id,g=n.external.uri??(v=>v);if(h)return{ref:g(h)};let b=l[1].defId??l[1].schema.id??`schema${this.counter++}`;return l[1].defId=b,{defId:b,ref:`${g("__shared")}#/${d}/${b}`}}if(l[1]===o)return{ref:"#"};let f=`#/${d}/`,p=l[1].schema.id??`__schema${this.counter++}`;return{defId:p,ref:f+p}},i=l=>{if(l[1].schema.$ref)return;let d=l[1],{ref:m,defId:f}=s(l);d.def={...d.schema},f&&(d.defId=f);let p=d.schema;for(let h in p)delete p[h];p.$ref=m};if(n.cycles==="throw")for(let l of this.seen.entries()){let d=l[1];if(d.cycle)throw new Error(`Cycle detected: #/${d.cycle?.join("/")}/<root>
|
|
149
|
+
path: iss.path ? [${kr(v)}, ...iss.path] : [${kr(v)}]
|
|
150
|
+
})));`),f.write(`newResult[${kr(v)}] = ${x}.value`)}f.write("payload.value = newResult;"),f.write("return payload;");let w=f.compile();return(v,x)=>w(d,v,x)},o,s=Yr,i=!ts.jitless,c=i&&ma.value,u=e.catchall,l;t._zod.parse=(d,f)=>{l??(l=r.value);let m=d.value;if(!s(m))return d.issues.push({expected:"object",code:"invalid_type",input:m,inst:t}),d;let p=[];if(i&&c&&f?.async===!1&&f.jitless!==!0)o||(o=n(e.shape)),d=o(d,f);else{d.value={};let x=l.shape;for(let T of l.keys){let N=x[T],he=N._zod.run({value:m[T],issues:[]},f),He=N._zod.optin==="optional"&&N._zod.optout==="optional";he instanceof Promise?p.push(he.then(ye=>He?Pf(ye,d,T,m):cs(ye,d,T))):He?Pf(he,d,T,m):cs(he,d,T)}}if(!u)return p.length?Promise.all(p).then(()=>d):d;let h=[],g=l.keySet,w=u._zod,v=w.def.type;for(let x of Object.keys(m)){if(g.has(x))continue;if(v==="never"){h.push(x);continue}let T=w.run({value:m[x],issues:[]},f);T instanceof Promise?p.push(T.then(N=>cs(N,d,x))):cs(T,d,x)}return h.length&&d.issues.push({code:"unrecognized_keys",keys:h,input:m,inst:t}),p.length?Promise.all(p).then(()=>d):d}});function Of(t,e,r,n){for(let o of t)if(o.issues.length===0)return e.value=o.value,e;return e.issues.push({code:"invalid_union",input:e.value,inst:r,errors:t.map(o=>o.issues.map(s=>it(s,n,Be())))}),e}var ds=_("$ZodUnion",(t,e)=>{ee.init(t,e),ne(t._zod,"optin",()=>e.options.some(r=>r._zod.optin==="optional")?"optional":void 0),ne(t._zod,"optout",()=>e.options.some(r=>r._zod.optout==="optional")?"optional":void 0),ne(t._zod,"values",()=>{if(e.options.every(r=>r._zod.values))return new Set(e.options.flatMap(r=>Array.from(r._zod.values)))}),ne(t._zod,"pattern",()=>{if(e.options.every(r=>r._zod.pattern)){let r=e.options.map(n=>n._zod.pattern);return new RegExp(`^(${r.map(n=>Fn(n.source)).join("|")})$`)}}),t._zod.parse=(r,n)=>{let o=!1,s=[];for(let i of e.options){let a=i._zod.run({value:r.value,issues:[]},n);if(a instanceof Promise)s.push(a),o=!0;else{if(a.issues.length===0)return a;s.push(a)}}return o?Promise.all(s).then(i=>Of(i,r,t,n)):Of(s,r,t,n)}}),nc=_("$ZodDiscriminatedUnion",(t,e)=>{ds.init(t,e);let r=t._zod.parse;ne(t._zod,"propValues",()=>{let o={};for(let s of e.options){let i=s._zod.propValues;if(!i||Object.keys(i).length===0)throw new Error(`Invalid discriminated union option at index "${e.options.indexOf(s)}"`);for(let[a,c]of Object.entries(i)){o[a]||(o[a]=new Set);for(let u of c)o[a].add(u)}}return o});let n=qn(()=>{let o=e.options,s=new Map;for(let i of o){let a=i._zod.propValues[e.discriminator];if(!a||a.size===0)throw new Error(`Invalid discriminated union option at index "${e.options.indexOf(i)}"`);for(let c of a){if(s.has(c))throw new Error(`Duplicate discriminator value "${String(c)}"`);s.set(c,i)}}return s});t._zod.parse=(o,s)=>{let i=o.value;if(!Yr(i))return o.issues.push({code:"invalid_type",expected:"object",input:i,inst:t}),o;let a=n.value.get(i?.[e.discriminator]);return a?a._zod.run(o,s):e.unionFallback?r(o,s):(o.issues.push({code:"invalid_union",errors:[],note:"No matching discriminator",input:i,path:[e.discriminator],inst:t}),o)}}),oc=_("$ZodIntersection",(t,e)=>{ee.init(t,e),t._zod.parse=(r,n)=>{let o=r.value,s=e.left._zod.run({value:o,issues:[]},n),i=e.right._zod.run({value:o,issues:[]},n);return s instanceof Promise||i instanceof Promise?Promise.all([s,i]).then(([c,u])=>Ef(r,c,u)):Ef(r,s,i)}});function Ia(t,e){if(t===e)return{valid:!0,data:t};if(t instanceof Date&&e instanceof Date&&+t==+e)return{valid:!0,data:t};if(Qr(t)&&Qr(e)){let r=Object.keys(e),n=Object.keys(t).filter(s=>r.indexOf(s)!==-1),o={...t,...e};for(let s of n){let i=Ia(t[s],e[s]);if(!i.valid)return{valid:!1,mergeErrorPath:[s,...i.mergeErrorPath]};o[s]=i.data}return{valid:!0,data:o}}if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return{valid:!1,mergeErrorPath:[]};let r=[];for(let n=0;n<t.length;n++){let o=t[n],s=e[n],i=Ia(o,s);if(!i.valid)return{valid:!1,mergeErrorPath:[n,...i.mergeErrorPath]};r.push(i.data)}return{valid:!0,data:r}}return{valid:!1,mergeErrorPath:[]}}function Ef(t,e,r){if(e.issues.length&&t.issues.push(...e.issues),r.issues.length&&t.issues.push(...r.issues),Sr(t))return t;let n=Ia(e.value,r.value);if(!n.valid)throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(n.mergeErrorPath)}`);return t.value=n.data,t}var sc=_("$ZodRecord",(t,e)=>{ee.init(t,e),t._zod.parse=(r,n)=>{let o=r.value;if(!Qr(o))return r.issues.push({expected:"record",code:"invalid_type",input:o,inst:t}),r;let s=[];if(e.keyType._zod.values){let i=e.keyType._zod.values;r.value={};for(let c of i)if(typeof c=="string"||typeof c=="number"||typeof c=="symbol"){let u=e.valueType._zod.run({value:o[c],issues:[]},n);u instanceof Promise?s.push(u.then(l=>{l.issues.length&&r.issues.push(...yt(c,l.issues)),r.value[c]=l.value})):(u.issues.length&&r.issues.push(...yt(c,u.issues)),r.value[c]=u.value)}let a;for(let c in o)i.has(c)||(a=a??[],a.push(c));a&&a.length>0&&r.issues.push({code:"unrecognized_keys",input:o,inst:t,keys:a})}else{r.value={};for(let i of Reflect.ownKeys(o)){if(i==="__proto__")continue;let a=e.keyType._zod.run({value:i,issues:[]},n);if(a instanceof Promise)throw new Error("Async schemas not supported in object keys currently");if(a.issues.length){r.issues.push({origin:"record",code:"invalid_key",issues:a.issues.map(u=>it(u,n,Be())),input:i,path:[i],inst:t}),r.value[a.value]=a.value;continue}let c=e.valueType._zod.run({value:o[i],issues:[]},n);c instanceof Promise?s.push(c.then(u=>{u.issues.length&&r.issues.push(...yt(i,u.issues)),r.value[a.value]=u.value})):(c.issues.length&&r.issues.push(...yt(i,c.issues)),r.value[a.value]=c.value)}}return s.length?Promise.all(s).then(()=>r):r}});var ic=_("$ZodEnum",(t,e)=>{ee.init(t,e);let r=Ln(e.entries);t._zod.values=new Set(r),t._zod.pattern=new RegExp(`^(${r.filter(n=>ha.has(typeof n)).map(n=>typeof n=="string"?qt(n):n.toString()).join("|")})$`),t._zod.parse=(n,o)=>{let s=n.value;return t._zod.values.has(s)||n.issues.push({code:"invalid_value",values:r,input:s,inst:t}),n}}),ac=_("$ZodLiteral",(t,e)=>{ee.init(t,e),t._zod.values=new Set(e.values),t._zod.pattern=new RegExp(`^(${e.values.map(r=>typeof r=="string"?qt(r):r?r.toString():String(r)).join("|")})$`),t._zod.parse=(r,n)=>{let o=r.value;return t._zod.values.has(o)||r.issues.push({code:"invalid_value",values:e.values,input:o,inst:t}),r}});var cc=_("$ZodTransform",(t,e)=>{ee.init(t,e),t._zod.parse=(r,n)=>{let o=e.transform(r.value,r);if(n.async)return(o instanceof Promise?o:Promise.resolve(o)).then(i=>(r.value=i,r));if(o instanceof Promise)throw new Ot;return r.value=o,r}}),uc=_("$ZodOptional",(t,e)=>{ee.init(t,e),t._zod.optin="optional",t._zod.optout="optional",ne(t._zod,"values",()=>e.innerType._zod.values?new Set([...e.innerType._zod.values,void 0]):void 0),ne(t._zod,"pattern",()=>{let r=e.innerType._zod.pattern;return r?new RegExp(`^(${Fn(r.source)})?$`):void 0}),t._zod.parse=(r,n)=>e.innerType._zod.optin==="optional"?e.innerType._zod.run(r,n):r.value===void 0?r:e.innerType._zod.run(r,n)}),lc=_("$ZodNullable",(t,e)=>{ee.init(t,e),ne(t._zod,"optin",()=>e.innerType._zod.optin),ne(t._zod,"optout",()=>e.innerType._zod.optout),ne(t._zod,"pattern",()=>{let r=e.innerType._zod.pattern;return r?new RegExp(`^(${Fn(r.source)}|null)$`):void 0}),ne(t._zod,"values",()=>e.innerType._zod.values?new Set([...e.innerType._zod.values,null]):void 0),t._zod.parse=(r,n)=>r.value===null?r:e.innerType._zod.run(r,n)}),dc=_("$ZodDefault",(t,e)=>{ee.init(t,e),t._zod.optin="optional",ne(t._zod,"values",()=>e.innerType._zod.values),t._zod.parse=(r,n)=>{if(r.value===void 0)return r.value=e.defaultValue,r;let o=e.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>If(s,e)):If(o,e)}});function If(t,e){return t.value===void 0&&(t.value=e.defaultValue),t}var pc=_("$ZodPrefault",(t,e)=>{ee.init(t,e),t._zod.optin="optional",ne(t._zod,"values",()=>e.innerType._zod.values),t._zod.parse=(r,n)=>(r.value===void 0&&(r.value=e.defaultValue),e.innerType._zod.run(r,n))}),fc=_("$ZodNonOptional",(t,e)=>{ee.init(t,e),ne(t._zod,"values",()=>{let r=e.innerType._zod.values;return r?new Set([...r].filter(n=>n!==void 0)):void 0}),t._zod.parse=(r,n)=>{let o=e.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>Rf(s,t)):Rf(o,t)}});function Rf(t,e){return!t.issues.length&&t.value===void 0&&t.issues.push({code:"invalid_type",expected:"nonoptional",input:t.value,inst:e}),t}var mc=_("$ZodCatch",(t,e)=>{ee.init(t,e),t._zod.optin="optional",ne(t._zod,"optout",()=>e.innerType._zod.optout),ne(t._zod,"values",()=>e.innerType._zod.values),t._zod.parse=(r,n)=>{let o=e.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>(r.value=s.value,s.issues.length&&(r.value=e.catchValue({...r,error:{issues:s.issues.map(i=>it(i,n,Be()))},input:r.value}),r.issues=[]),r)):(r.value=o.value,o.issues.length&&(r.value=e.catchValue({...r,error:{issues:o.issues.map(s=>it(s,n,Be()))},input:r.value}),r.issues=[]),r)}});var hc=_("$ZodPipe",(t,e)=>{ee.init(t,e),ne(t._zod,"values",()=>e.in._zod.values),ne(t._zod,"optin",()=>e.in._zod.optin),ne(t._zod,"optout",()=>e.out._zod.optout),t._zod.parse=(r,n)=>{let o=e.in._zod.run(r,n);return o instanceof Promise?o.then(s=>jf(s,e,n)):jf(o,e,n)}});function jf(t,e,r){return Sr(t)?t:e.out._zod.run({value:t.value,issues:t.issues},r)}var gc=_("$ZodReadonly",(t,e)=>{ee.init(t,e),ne(t._zod,"propValues",()=>e.innerType._zod.propValues),ne(t._zod,"values",()=>e.innerType._zod.values),ne(t._zod,"optin",()=>e.innerType._zod.optin),ne(t._zod,"optout",()=>e.innerType._zod.optout),t._zod.parse=(r,n)=>{let o=e.innerType._zod.run(r,n);return o instanceof Promise?o.then(Nf):Nf(o)}});function Nf(t){return t.value=Object.freeze(t.value),t}var yc=_("$ZodCustom",(t,e)=>{be.init(t,e),ee.init(t,e),t._zod.parse=(r,n)=>r,t._zod.check=r=>{let n=r.value,o=e.fn(n);if(o instanceof Promise)return o.then(s=>Cf(s,r,n,t));Cf(o,r,n,t)}});function Cf(t,e,r,n){if(!t){let o={code:"custom",input:r,inst:n,path:[...n._zod.def.path??[]],continue:!n._zod.def.abort};n._zod.def.params&&(o.params=n._zod.def.params),e.issues.push(_a(o))}}var $w=t=>{let e=typeof t;switch(e){case"number":return Number.isNaN(t)?"NaN":"number";case"object":{if(Array.isArray(t))return"array";if(t===null)return"null";if(Object.getPrototypeOf(t)!==Object.prototype&&t.constructor)return t.constructor.name}}return e},kw=()=>{let t={string:{unit:"characters",verb:"to have"},file:{unit:"bytes",verb:"to have"},array:{unit:"items",verb:"to have"},set:{unit:"items",verb:"to have"}};function e(n){return t[n]??null}let r={regex:"input",email:"email address",url:"URL",emoji:"emoji",uuid:"UUID",uuidv4:"UUIDv4",uuidv6:"UUIDv6",nanoid:"nanoid",guid:"GUID",cuid:"cuid",cuid2:"cuid2",ulid:"ULID",xid:"XID",ksuid:"KSUID",datetime:"ISO datetime",date:"ISO date",time:"ISO time",duration:"ISO duration",ipv4:"IPv4 address",ipv6:"IPv6 address",cidrv4:"IPv4 range",cidrv6:"IPv6 range",base64:"base64-encoded string",base64url:"base64url-encoded string",json_string:"JSON string",e164:"E.164 number",jwt:"JWT",template_literal:"input"};return n=>{switch(n.code){case"invalid_type":return`Invalid input: expected ${n.expected}, received ${$w(n.input)}`;case"invalid_value":return n.values.length===1?`Invalid input: expected ${os(n.values[0])}`:`Invalid option: expected one of ${rs(n.values,"|")}`;case"too_big":{let o=n.inclusive?"<=":"<",s=e(n.origin);return s?`Too big: expected ${n.origin??"value"} to have ${o}${n.maximum.toString()} ${s.unit??"elements"}`:`Too big: expected ${n.origin??"value"} to be ${o}${n.maximum.toString()}`}case"too_small":{let o=n.inclusive?">=":">",s=e(n.origin);return s?`Too small: expected ${n.origin} to have ${o}${n.minimum.toString()} ${s.unit}`:`Too small: expected ${n.origin} to be ${o}${n.minimum.toString()}`}case"invalid_format":{let o=n;return o.format==="starts_with"?`Invalid string: must start with "${o.prefix}"`:o.format==="ends_with"?`Invalid string: must end with "${o.suffix}"`:o.format==="includes"?`Invalid string: must include "${o.includes}"`:o.format==="regex"?`Invalid string: must match pattern ${o.pattern}`:`Invalid ${r[o.format]??n.format}`}case"not_multiple_of":return`Invalid number: must be a multiple of ${n.divisor}`;case"unrecognized_keys":return`Unrecognized key${n.keys.length>1?"s":""}: ${rs(n.keys,", ")}`;case"invalid_key":return`Invalid key in ${n.origin}`;case"invalid_union":return"Invalid input";case"invalid_element":return`Invalid value in ${n.origin}`;default:return"Invalid input"}}};function qf(){return{localeError:kw()}}var Xn=class{constructor(){this._map=new Map,this._idmap=new Map}add(e,...r){let n=r[0];if(this._map.set(e,n),n&&typeof n=="object"&&"id"in n){if(this._idmap.has(n.id))throw new Error(`ID ${n.id} already exists in the registry`);this._idmap.set(n.id,e)}return this}clear(){return this._map=new Map,this._idmap=new Map,this}remove(e){let r=this._map.get(e);return r&&typeof r=="object"&&"id"in r&&this._idmap.delete(r.id),this._map.delete(e),this}get(e){let r=e._zod.parent;if(r){let n={...this.get(r)??{}};return delete n.id,{...n,...this._map.get(e)}}return this._map.get(e)}has(e){return this._map.has(e)}};function Uf(){return new Xn}var Ut=Uf();function _c(t,e){return new t({type:"string",...Z(e)})}function vc(t,e){return new t({type:"string",format:"email",check:"string_format",abort:!1,...Z(e)})}function ps(t,e){return new t({type:"string",format:"guid",check:"string_format",abort:!1,...Z(e)})}function xc(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,...Z(e)})}function wc(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v4",...Z(e)})}function bc(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v6",...Z(e)})}function $c(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v7",...Z(e)})}function kc(t,e){return new t({type:"string",format:"url",check:"string_format",abort:!1,...Z(e)})}function Sc(t,e){return new t({type:"string",format:"emoji",check:"string_format",abort:!1,...Z(e)})}function zc(t,e){return new t({type:"string",format:"nanoid",check:"string_format",abort:!1,...Z(e)})}function Tc(t,e){return new t({type:"string",format:"cuid",check:"string_format",abort:!1,...Z(e)})}function Pc(t,e){return new t({type:"string",format:"cuid2",check:"string_format",abort:!1,...Z(e)})}function Oc(t,e){return new t({type:"string",format:"ulid",check:"string_format",abort:!1,...Z(e)})}function Ec(t,e){return new t({type:"string",format:"xid",check:"string_format",abort:!1,...Z(e)})}function Ic(t,e){return new t({type:"string",format:"ksuid",check:"string_format",abort:!1,...Z(e)})}function Rc(t,e){return new t({type:"string",format:"ipv4",check:"string_format",abort:!1,...Z(e)})}function jc(t,e){return new t({type:"string",format:"ipv6",check:"string_format",abort:!1,...Z(e)})}function Nc(t,e){return new t({type:"string",format:"cidrv4",check:"string_format",abort:!1,...Z(e)})}function Cc(t,e){return new t({type:"string",format:"cidrv6",check:"string_format",abort:!1,...Z(e)})}function Zc(t,e){return new t({type:"string",format:"base64",check:"string_format",abort:!1,...Z(e)})}function Ac(t,e){return new t({type:"string",format:"base64url",check:"string_format",abort:!1,...Z(e)})}function Mc(t,e){return new t({type:"string",format:"e164",check:"string_format",abort:!1,...Z(e)})}function Dc(t,e){return new t({type:"string",format:"jwt",check:"string_format",abort:!1,...Z(e)})}function Ff(t,e){return new t({type:"string",format:"datetime",check:"string_format",offset:!1,local:!1,precision:null,...Z(e)})}function Vf(t,e){return new t({type:"string",format:"date",check:"string_format",...Z(e)})}function Hf(t,e){return new t({type:"string",format:"time",check:"string_format",precision:null,...Z(e)})}function Kf(t,e){return new t({type:"string",format:"duration",check:"string_format",...Z(e)})}function Lc(t,e){return new t({type:"number",checks:[],...Z(e)})}function qc(t,e){return new t({type:"number",check:"number_format",abort:!1,format:"safeint",...Z(e)})}function Uc(t,e){return new t({type:"boolean",...Z(e)})}function Fc(t,e){return new t({type:"null",...Z(e)})}function Vc(t){return new t({type:"unknown"})}function Hc(t,e){return new t({type:"never",...Z(e)})}function fs(t,e){return new Oa({check:"less_than",...Z(e),value:t,inclusive:!1})}function Jn(t,e){return new Oa({check:"less_than",...Z(e),value:t,inclusive:!0})}function ms(t,e){return new Ea({check:"greater_than",...Z(e),value:t,inclusive:!1})}function Gn(t,e){return new Ea({check:"greater_than",...Z(e),value:t,inclusive:!0})}function hs(t,e){return new ff({check:"multiple_of",...Z(e),value:t})}function gs(t,e){return new hf({check:"max_length",...Z(e),maximum:t})}function en(t,e){return new gf({check:"min_length",...Z(e),minimum:t})}function ys(t,e){return new yf({check:"length_equals",...Z(e),length:t})}function Kc(t,e){return new _f({check:"string_format",format:"regex",...Z(e),pattern:t})}function Bc(t){return new vf({check:"string_format",format:"lowercase",...Z(t)})}function Xc(t){return new xf({check:"string_format",format:"uppercase",...Z(t)})}function Jc(t,e){return new wf({check:"string_format",format:"includes",...Z(e),includes:t})}function Gc(t,e){return new bf({check:"string_format",format:"starts_with",...Z(e),prefix:t})}function Wc(t,e){return new $f({check:"string_format",format:"ends_with",...Z(e),suffix:t})}function Pr(t){return new kf({check:"overwrite",tx:t})}function Yc(t){return Pr(e=>e.normalize(t))}function Qc(){return Pr(t=>t.trim())}function eu(){return Pr(t=>t.toLowerCase())}function tu(){return Pr(t=>t.toUpperCase())}function Bf(t,e,r){return new t({type:"array",element:e,...Z(r)})}function ru(t,e,r){let n=Z(r);return n.abort??(n.abort=!0),new t({type:"custom",check:"custom",fn:e,...n})}function nu(t,e,r){return new t({type:"custom",check:"custom",fn:e,...Z(r)})}var _s=class{constructor(e){this.counter=0,this.metadataRegistry=e?.metadata??Ut,this.target=e?.target??"draft-2020-12",this.unrepresentable=e?.unrepresentable??"throw",this.override=e?.override??(()=>{}),this.io=e?.io??"output",this.seen=new Map}process(e,r={path:[],schemaPath:[]}){var n;let o=e._zod.def,s={guid:"uuid",url:"uri",datetime:"date-time",json_string:"json-string",regex:""},i=this.seen.get(e);if(i)return i.count++,r.schemaPath.includes(e)&&(i.cycle=r.path),i.schema;let a={schema:{},count:1,cycle:void 0,path:r.path};this.seen.set(e,a);let c=e._zod.toJSONSchema?.();if(c)a.schema=c;else{let d={...r,schemaPath:[...r.schemaPath,e],path:r.path},f=e._zod.parent;if(f)a.ref=f,this.process(f,d),this.seen.get(f).isParent=!0;else{let m=a.schema;switch(o.type){case"string":{let p=m;p.type="string";let{minimum:h,maximum:g,format:w,patterns:v,contentEncoding:x}=e._zod.bag;if(typeof h=="number"&&(p.minLength=h),typeof g=="number"&&(p.maxLength=g),w&&(p.format=s[w]??w,p.format===""&&delete p.format),x&&(p.contentEncoding=x),v&&v.size>0){let T=[...v];T.length===1?p.pattern=T[0].source:T.length>1&&(a.schema.allOf=[...T.map(N=>({...this.target==="draft-7"?{type:"string"}:{},pattern:N.source}))])}break}case"number":{let p=m,{minimum:h,maximum:g,format:w,multipleOf:v,exclusiveMaximum:x,exclusiveMinimum:T}=e._zod.bag;typeof w=="string"&&w.includes("int")?p.type="integer":p.type="number",typeof T=="number"&&(p.exclusiveMinimum=T),typeof h=="number"&&(p.minimum=h,typeof T=="number"&&(T>=h?delete p.minimum:delete p.exclusiveMinimum)),typeof x=="number"&&(p.exclusiveMaximum=x),typeof g=="number"&&(p.maximum=g,typeof x=="number"&&(x<=g?delete p.maximum:delete p.exclusiveMaximum)),typeof v=="number"&&(p.multipleOf=v);break}case"boolean":{let p=m;p.type="boolean";break}case"bigint":{if(this.unrepresentable==="throw")throw new Error("BigInt cannot be represented in JSON Schema");break}case"symbol":{if(this.unrepresentable==="throw")throw new Error("Symbols cannot be represented in JSON Schema");break}case"null":{m.type="null";break}case"any":break;case"unknown":break;case"undefined":{if(this.unrepresentable==="throw")throw new Error("Undefined cannot be represented in JSON Schema");break}case"void":{if(this.unrepresentable==="throw")throw new Error("Void cannot be represented in JSON Schema");break}case"never":{m.not={};break}case"date":{if(this.unrepresentable==="throw")throw new Error("Date cannot be represented in JSON Schema");break}case"array":{let p=m,{minimum:h,maximum:g}=e._zod.bag;typeof h=="number"&&(p.minItems=h),typeof g=="number"&&(p.maxItems=g),p.type="array",p.items=this.process(o.element,{...d,path:[...d.path,"items"]});break}case"object":{let p=m;p.type="object",p.properties={};let h=o.shape;for(let v in h)p.properties[v]=this.process(h[v],{...d,path:[...d.path,"properties",v]});let g=new Set(Object.keys(h)),w=new Set([...g].filter(v=>{let x=o.shape[v]._zod;return this.io==="input"?x.optin===void 0:x.optout===void 0}));w.size>0&&(p.required=Array.from(w)),o.catchall?._zod.def.type==="never"?p.additionalProperties=!1:o.catchall?o.catchall&&(p.additionalProperties=this.process(o.catchall,{...d,path:[...d.path,"additionalProperties"]})):this.io==="output"&&(p.additionalProperties=!1);break}case"union":{let p=m;p.anyOf=o.options.map((h,g)=>this.process(h,{...d,path:[...d.path,"anyOf",g]}));break}case"intersection":{let p=m,h=this.process(o.left,{...d,path:[...d.path,"allOf",0]}),g=this.process(o.right,{...d,path:[...d.path,"allOf",1]}),w=x=>"allOf"in x&&Object.keys(x).length===1,v=[...w(h)?h.allOf:[h],...w(g)?g.allOf:[g]];p.allOf=v;break}case"tuple":{let p=m;p.type="array";let h=o.items.map((v,x)=>this.process(v,{...d,path:[...d.path,"prefixItems",x]}));if(this.target==="draft-2020-12"?p.prefixItems=h:p.items=h,o.rest){let v=this.process(o.rest,{...d,path:[...d.path,"items"]});this.target==="draft-2020-12"?p.items=v:p.additionalItems=v}o.rest&&(p.items=this.process(o.rest,{...d,path:[...d.path,"items"]}));let{minimum:g,maximum:w}=e._zod.bag;typeof g=="number"&&(p.minItems=g),typeof w=="number"&&(p.maxItems=w);break}case"record":{let p=m;p.type="object",p.propertyNames=this.process(o.keyType,{...d,path:[...d.path,"propertyNames"]}),p.additionalProperties=this.process(o.valueType,{...d,path:[...d.path,"additionalProperties"]});break}case"map":{if(this.unrepresentable==="throw")throw new Error("Map cannot be represented in JSON Schema");break}case"set":{if(this.unrepresentable==="throw")throw new Error("Set cannot be represented in JSON Schema");break}case"enum":{let p=m,h=Ln(o.entries);h.every(g=>typeof g=="number")&&(p.type="number"),h.every(g=>typeof g=="string")&&(p.type="string"),p.enum=h;break}case"literal":{let p=m,h=[];for(let g of o.values)if(g===void 0){if(this.unrepresentable==="throw")throw new Error("Literal `undefined` cannot be represented in JSON Schema")}else if(typeof g=="bigint"){if(this.unrepresentable==="throw")throw new Error("BigInt literals cannot be represented in JSON Schema");h.push(Number(g))}else h.push(g);if(h.length!==0)if(h.length===1){let g=h[0];p.type=g===null?"null":typeof g,p.const=g}else h.every(g=>typeof g=="number")&&(p.type="number"),h.every(g=>typeof g=="string")&&(p.type="string"),h.every(g=>typeof g=="boolean")&&(p.type="string"),h.every(g=>g===null)&&(p.type="null"),p.enum=h;break}case"file":{let p=m,h={type:"string",format:"binary",contentEncoding:"binary"},{minimum:g,maximum:w,mime:v}=e._zod.bag;g!==void 0&&(h.minLength=g),w!==void 0&&(h.maxLength=w),v?v.length===1?(h.contentMediaType=v[0],Object.assign(p,h)):p.anyOf=v.map(x=>({...h,contentMediaType:x})):Object.assign(p,h);break}case"transform":{if(this.unrepresentable==="throw")throw new Error("Transforms cannot be represented in JSON Schema");break}case"nullable":{let p=this.process(o.innerType,d);m.anyOf=[p,{type:"null"}];break}case"nonoptional":{this.process(o.innerType,d),a.ref=o.innerType;break}case"success":{let p=m;p.type="boolean";break}case"default":{this.process(o.innerType,d),a.ref=o.innerType,m.default=JSON.parse(JSON.stringify(o.defaultValue));break}case"prefault":{this.process(o.innerType,d),a.ref=o.innerType,this.io==="input"&&(m._prefault=JSON.parse(JSON.stringify(o.defaultValue)));break}case"catch":{this.process(o.innerType,d),a.ref=o.innerType;let p;try{p=o.catchValue(void 0)}catch{throw new Error("Dynamic catch values are not supported in JSON Schema")}m.default=p;break}case"nan":{if(this.unrepresentable==="throw")throw new Error("NaN cannot be represented in JSON Schema");break}case"template_literal":{let p=m,h=e._zod.pattern;if(!h)throw new Error("Pattern not found in template literal");p.type="string",p.pattern=h.source;break}case"pipe":{let p=this.io==="input"?o.in._zod.def.type==="transform"?o.out:o.in:o.out;this.process(p,d),a.ref=p;break}case"readonly":{this.process(o.innerType,d),a.ref=o.innerType,m.readOnly=!0;break}case"promise":{this.process(o.innerType,d),a.ref=o.innerType;break}case"optional":{this.process(o.innerType,d),a.ref=o.innerType;break}case"lazy":{let p=e._zod.innerType;this.process(p,d),a.ref=p;break}case"custom":{if(this.unrepresentable==="throw")throw new Error("Custom types cannot be represented in JSON Schema");break}default:}}}let u=this.metadataRegistry.get(e);return u&&Object.assign(a.schema,u),this.io==="input"&&_e(e)&&(delete a.schema.examples,delete a.schema.default),this.io==="input"&&a.schema._prefault&&((n=a.schema).default??(n.default=a.schema._prefault)),delete a.schema._prefault,this.seen.get(e).schema}emit(e,r){let n={cycles:r?.cycles??"ref",reused:r?.reused??"inline",external:r?.external??void 0},o=this.seen.get(e);if(!o)throw new Error("Unprocessed schema. This is a bug in Zod.");let s=l=>{let d=this.target==="draft-2020-12"?"$defs":"definitions";if(n.external){let h=n.external.registry.get(l[0])?.id,g=n.external.uri??(v=>v);if(h)return{ref:g(h)};let w=l[1].defId??l[1].schema.id??`schema${this.counter++}`;return l[1].defId=w,{defId:w,ref:`${g("__shared")}#/${d}/${w}`}}if(l[1]===o)return{ref:"#"};let m=`#/${d}/`,p=l[1].schema.id??`__schema${this.counter++}`;return{defId:p,ref:m+p}},i=l=>{if(l[1].schema.$ref)return;let d=l[1],{ref:f,defId:m}=s(l);d.def={...d.schema},m&&(d.defId=m);let p=d.schema;for(let h in p)delete p[h];p.$ref=f};if(n.cycles==="throw")for(let l of this.seen.entries()){let d=l[1];if(d.cycle)throw new Error(`Cycle detected: #/${d.cycle?.join("/")}/<root>
|
|
134
151
|
|
|
135
|
-
Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.`)}for(let l of this.seen.entries()){let d=l[1];if(e===l[0]){i(l);continue}if(n.external){let f=n.external.registry.get(l[0])?.id;if(e!==l[0]&&f){i(l);continue}}if(this.metadataRegistry.get(l[0])?.id){i(l);continue}if(d.cycle){i(l);continue}if(d.count>1&&n.reused==="ref"){i(l);continue}}let a=(l,d)=>{let m=this.seen.get(l),f=m.def??m.schema,p={...f};if(m.ref===null)return;let h=m.ref;if(m.ref=null,h){a(h,d);let g=this.seen.get(h).schema;g.$ref&&d.target==="draft-7"?(f.allOf=f.allOf??[],f.allOf.push(g)):(Object.assign(f,g),Object.assign(f,p))}m.isParent||this.override({zodSchema:l,jsonSchema:f,path:m.path??[]})};for(let l of[...this.seen.entries()].reverse())a(l[0],{target:this.target});let c={};if(this.target==="draft-2020-12"?c.$schema="https://json-schema.org/draft/2020-12/schema":this.target==="draft-7"?c.$schema="http://json-schema.org/draft-07/schema#":console.warn(`Invalid target: ${this.target}`),n.external?.uri){let l=n.external.registry.get(e)?.id;if(!l)throw new Error("Schema is missing an `id` property");c.$id=n.external.uri(l)}Object.assign(c,o.def);let u=n.external?.defs??{};for(let l of this.seen.entries()){let d=l[1];d.def&&d.defId&&(u[d.defId]=d.def)}n.external||Object.keys(u).length>0&&(this.target==="draft-2020-12"?c.$defs=u:c.definitions=u);try{return JSON.parse(JSON.stringify(c))}catch{throw new Error("Error converting schema to JSON.")}}};function Dc(t,e){if(t instanceof Ln){let n=new ss(e),o={};for(let a of t._idmap.entries()){let[c,u]=a;n.process(u)}let s={},i={registry:t,uri:e?.uri,defs:o};for(let a of t._idmap.entries()){let[c,u]=a;s[c]=n.emit(u,{...e,external:i})}if(Object.keys(o).length>0){let a=n.target==="draft-2020-12"?"$defs":"definitions";s.__shared={[a]:o}}return{schemas:s}}let r=new ss(e);return r.process(t),r.emit(t,e)}function _e(t,e){let r=e??{seen:new Set};if(r.seen.has(t))return!1;r.seen.add(t);let o=t._zod.def;switch(o.type){case"string":case"number":case"bigint":case"boolean":case"date":case"symbol":case"undefined":case"null":case"any":case"unknown":case"never":case"void":case"literal":case"enum":case"nan":case"file":case"template_literal":return!1;case"array":return _e(o.element,r);case"object":{for(let s in o.shape)if(_e(o.shape[s],r))return!0;return!1}case"union":{for(let s of o.options)if(_e(s,r))return!0;return!1}case"intersection":return _e(o.left,r)||_e(o.right,r);case"tuple":{for(let s of o.items)if(_e(s,r))return!0;return!!(o.rest&&_e(o.rest,r))}case"record":return _e(o.keyType,r)||_e(o.valueType,r);case"map":return _e(o.keyType,r)||_e(o.valueType,r);case"set":return _e(o.valueType,r);case"promise":case"optional":case"nonoptional":case"nullable":case"readonly":return _e(o.innerType,r);case"lazy":return _e(o.getter(),r);case"default":return _e(o.innerType,r);case"prefault":return _e(o.innerType,r);case"custom":return!1;case"transform":return!0;case"pipe":return _e(o.in,r)||_e(o.out,r);case"success":return!1;case"catch":return!1;default:}throw new Error(`Unknown schema type: ${o.type}`)}var zb=_("ZodMiniType",(t,e)=>{if(!t._zod)throw new Error("Uninitialized schema in ZodMiniType.");ee.init(t,e),t.def=e,t.parse=(r,n)=>na(t,r,n,{callee:t.parse}),t.safeParse=(r,n)=>vr(t,r,n),t.parseAsync=async(r,n)=>sa(t,r,n,{callee:t.parseAsync}),t.safeParseAsync=async(r,n)=>xr(t,r,n),t.check=(...r)=>t.clone({...e,checks:[...e.checks??[],...r.map(n=>typeof n=="function"?{_zod:{check:n,def:{check:"custom"},onattach:[]}}:n)]}),t.clone=(r,n)=>Ke(t,r,n),t.brand=()=>t,t.register=((r,n)=>(r.add(t,n),t))});var Tb=_("ZodMiniObject",(t,e)=>{Wo.init(t,e),zb.init(t,e),B.defineLazy(t,"shape",()=>e.shape)});function Lc(t,e){let r={type:"object",get shape(){return B.assignProp(this,"shape",{...t}),this.shape},...B.normalizeParams(e)};return new Tb(r)}function We(t){return!!t._zod}function $r(t){let e=Object.values(t);if(e.length===0)return Lc({});let r=e.every(We),n=e.every(o=>!We(o));if(r)return Lc(t);if(n)return Fi(t);throw new Error("Mixed Zod versions detected in object shape.")}function Lt(t,e){return We(t)?vr(t,e):t.safeParse(e)}async function is(t,e){return We(t)?await xr(t,e):await t.safeParseAsync(e)}function qt(t){if(!t)return;let e;if(We(t)?e=t._zod?.def?.shape:e=t.shape,!!e){if(typeof e=="function")try{return e()}catch{return}return e}}function Xr(t){if(t){if(typeof t=="object"){let e=t,r=t;if(!e._def&&!r._zod){let n=Object.values(t);if(n.length>0&&n.every(o=>typeof o=="object"&&o!==null&&(o._def!==void 0||o._zod!==void 0||typeof o.parse=="function")))return $r(t)}}if(We(t)){let r=t._zod?.def;if(r&&(r.type==="object"||r.shape!==void 0))return t}else if(t.shape!==void 0)return t}}function as(t){if(t&&typeof t=="object"){if("message"in t&&typeof t.message=="string")return t.message;if("issues"in t&&Array.isArray(t.issues)&&t.issues.length>0){let e=t.issues[0];if(e&&typeof e=="object"&&"message"in e)return String(e.message)}try{return JSON.stringify(t)}catch{return String(t)}}return String(t)}function xf(t){return t.description}function bf(t){if(We(t))return t._zod?.def?.type==="optional";let e=t;return typeof t.isOptional=="function"?t.isOptional():e._def?.typeName==="ZodOptional"}function cs(t){if(We(t)){let s=t._zod?.def;if(s){if(s.value!==void 0)return s.value;if(Array.isArray(s.values)&&s.values.length>0)return s.values[0]}}let r=t._def;if(r){if(r.value!==void 0)return r.value;if(Array.isArray(r.values)&&r.values.length>0)return r.values[0]}let n=t.value;if(n!==void 0)return n}var Fn={};jo(Fn,{ZodISODate:()=>$f,ZodISODateTime:()=>wf,ZodISODuration:()=>Sf,ZodISOTime:()=>kf,date:()=>Uc,datetime:()=>qc,duration:()=>Vc,time:()=>Fc});var wf=_("ZodISODateTime",(t,e)=>{af.init(t,e),ue.init(t,e)});function qc(t){return mf(wf,t)}var $f=_("ZodISODate",(t,e)=>{cf.init(t,e),ue.init(t,e)});function Uc(t){return hf($f,t)}var kf=_("ZodISOTime",(t,e)=>{uf.init(t,e),ue.init(t,e)});function Fc(t){return gf(kf,t)}var Sf=_("ZodISODuration",(t,e)=>{lf.init(t,e),ue.init(t,e)});function Vc(t){return yf(Sf,t)}var zf=(t,e)=>{Bo.init(t,e),t.name="ZodError",Object.defineProperties(t,{format:{value:r=>ta(t,r)},flatten:{value:r=>ea(t,r)},addIssue:{value:r=>t.issues.push(r)},addIssues:{value:r=>t.issues.push(...r)},isEmpty:{get(){return t.issues.length===0}}})},qI=_("ZodError",zf),Vn=_("ZodError",zf,{Parent:Error});var Tf=ra(Vn),Pf=oa(Vn),Ef=ia(Vn),Of=aa(Vn);var me=_("ZodType",(t,e)=>(ee.init(t,e),t.def=e,Object.defineProperty(t,"_def",{value:e}),t.check=(...r)=>t.clone({...e,checks:[...e.checks??[],...r.map(n=>typeof n=="function"?{_zod:{check:n,def:{check:"custom"},onattach:[]}}:n)]}),t.clone=(r,n)=>Ke(t,r,n),t.brand=()=>t,t.register=((r,n)=>(r.add(t,n),t)),t.parse=(r,n)=>Tf(t,r,n,{callee:t.parse}),t.safeParse=(r,n)=>Ef(t,r,n),t.parseAsync=async(r,n)=>Pf(t,r,n,{callee:t.parseAsync}),t.safeParseAsync=async(r,n)=>Of(t,r,n),t.spa=t.safeParseAsync,t.refine=(r,n)=>t.check(kw(r,n)),t.superRefine=r=>t.check(Sw(r)),t.overwrite=r=>t.check(br(r)),t.optional=()=>de(t),t.nullable=()=>jf(t),t.nullish=()=>de(jf(t)),t.nonoptional=r=>yw(t,r),t.array=()=>K(t),t.or=r=>ie([t,r]),t.and=r=>ls(t,r),t.transform=r=>Bc(t,Df(r)),t.default=r=>mw(t,r),t.prefault=r=>gw(t,r),t.catch=r=>vw(t,r),t.pipe=r=>Bc(t,r),t.readonly=()=>ww(t),t.describe=r=>{let n=t.clone();return Dt.add(n,{description:r}),n},Object.defineProperty(t,"description",{get(){return Dt.get(t)?.description},configurable:!0}),t.meta=(...r)=>{if(r.length===0)return Dt.get(t);let n=t.clone();return Dt.add(n,r[0]),n},t.isOptional=()=>t.safeParse(void 0).success,t.isNullable=()=>t.safeParse(null).success,t)),Nf=_("_ZodString",(t,e)=>{Dn.init(t,e),me.init(t,e);let r=t._zod.bag;t.format=r.format??null,t.minLength=r.minimum??null,t.maxLength=r.maximum??null,t.regex=(...n)=>t.check(Tc(...n)),t.includes=(...n)=>t.check(Oc(...n)),t.startsWith=(...n)=>t.check(Ic(...n)),t.endsWith=(...n)=>t.check(Rc(...n)),t.min=(...n)=>t.check(Jr(...n)),t.max=(...n)=>t.check(ns(...n)),t.length=(...n)=>t.check(os(...n)),t.nonempty=(...n)=>t.check(Jr(1,...n)),t.lowercase=n=>t.check(Pc(n)),t.uppercase=n=>t.check(Ec(n)),t.trim=()=>t.check(Nc()),t.normalize=(...n)=>t.check(jc(...n)),t.toLowerCase=()=>t.check(Cc()),t.toUpperCase=()=>t.check(Zc())}),Zb=_("ZodString",(t,e)=>{Dn.init(t,e),Nf.init(t,e),t.email=r=>t.check(ec(Ab,r)),t.url=r=>t.check(sc(Mb,r)),t.jwt=r=>t.check(xc(Qb,r)),t.emoji=r=>t.check(ic(Db,r)),t.guid=r=>t.check(Qo(If,r)),t.uuid=r=>t.check(tc(us,r)),t.uuidv4=r=>t.check(rc(us,r)),t.uuidv6=r=>t.check(nc(us,r)),t.uuidv7=r=>t.check(oc(us,r)),t.nanoid=r=>t.check(ac(Lb,r)),t.guid=r=>t.check(Qo(If,r)),t.cuid=r=>t.check(cc(qb,r)),t.cuid2=r=>t.check(uc(Ub,r)),t.ulid=r=>t.check(lc(Fb,r)),t.base64=r=>t.check(yc(Gb,r)),t.base64url=r=>t.check(_c(Wb,r)),t.xid=r=>t.check(dc(Vb,r)),t.ksuid=r=>t.check(pc(Hb,r)),t.ipv4=r=>t.check(fc(Bb,r)),t.ipv6=r=>t.check(mc(Kb,r)),t.cidrv4=r=>t.check(hc(Jb,r)),t.cidrv6=r=>t.check(gc(Xb,r)),t.e164=r=>t.check(vc(Yb,r)),t.datetime=r=>t.check(qc(r)),t.date=r=>t.check(Uc(r)),t.time=r=>t.check(Fc(r)),t.duration=r=>t.check(Vc(r))});function y(t){return Qa(Zb,t)}var ue=_("ZodStringFormat",(t,e)=>{oe.init(t,e),Nf.init(t,e)}),Ab=_("ZodEmail",(t,e)=>{ha.init(t,e),ue.init(t,e)});var If=_("ZodGUID",(t,e)=>{fa.init(t,e),ue.init(t,e)});var us=_("ZodUUID",(t,e)=>{ma.init(t,e),ue.init(t,e)});var Mb=_("ZodURL",(t,e)=>{ga.init(t,e),ue.init(t,e)});var Db=_("ZodEmoji",(t,e)=>{ya.init(t,e),ue.init(t,e)});var Lb=_("ZodNanoID",(t,e)=>{_a.init(t,e),ue.init(t,e)});var qb=_("ZodCUID",(t,e)=>{va.init(t,e),ue.init(t,e)});var Ub=_("ZodCUID2",(t,e)=>{xa.init(t,e),ue.init(t,e)});var Fb=_("ZodULID",(t,e)=>{ba.init(t,e),ue.init(t,e)});var Vb=_("ZodXID",(t,e)=>{wa.init(t,e),ue.init(t,e)});var Hb=_("ZodKSUID",(t,e)=>{$a.init(t,e),ue.init(t,e)});var Bb=_("ZodIPv4",(t,e)=>{ka.init(t,e),ue.init(t,e)});var Kb=_("ZodIPv6",(t,e)=>{Sa.init(t,e),ue.init(t,e)});var Jb=_("ZodCIDRv4",(t,e)=>{za.init(t,e),ue.init(t,e)});var Xb=_("ZodCIDRv6",(t,e)=>{Ta.init(t,e),ue.init(t,e)});var Gb=_("ZodBase64",(t,e)=>{Pa.init(t,e),ue.init(t,e)});var Wb=_("ZodBase64URL",(t,e)=>{Ea.init(t,e),ue.init(t,e)});var Yb=_("ZodE164",(t,e)=>{Oa.init(t,e),ue.init(t,e)});var Qb=_("ZodJWT",(t,e)=>{Ia.init(t,e),ue.init(t,e)});var Cf=_("ZodNumber",(t,e)=>{Go.init(t,e),me.init(t,e),t.gt=(n,o)=>t.check(ts(n,o)),t.gte=(n,o)=>t.check(Un(n,o)),t.min=(n,o)=>t.check(Un(n,o)),t.lt=(n,o)=>t.check(es(n,o)),t.lte=(n,o)=>t.check(qn(n,o)),t.max=(n,o)=>t.check(qn(n,o)),t.int=n=>t.check(Rf(n)),t.safe=n=>t.check(Rf(n)),t.positive=n=>t.check(ts(0,n)),t.nonnegative=n=>t.check(Un(0,n)),t.negative=n=>t.check(es(0,n)),t.nonpositive=n=>t.check(qn(0,n)),t.multipleOf=(n,o)=>t.check(rs(n,o)),t.step=(n,o)=>t.check(rs(n,o)),t.finite=()=>t;let r=t._zod.bag;t.minValue=Math.max(r.minimum??Number.NEGATIVE_INFINITY,r.exclusiveMinimum??Number.NEGATIVE_INFINITY)??null,t.maxValue=Math.min(r.maximum??Number.POSITIVE_INFINITY,r.exclusiveMaximum??Number.POSITIVE_INFINITY)??null,t.isInt=(r.format??"").includes("int")||Number.isSafeInteger(r.multipleOf??.5),t.isFinite=!0,t.format=r.format??null});function Q(t){return bc(Cf,t)}var ew=_("ZodNumberFormat",(t,e)=>{Ra.init(t,e),Cf.init(t,e)});function Rf(t){return wc(ew,t)}var tw=_("ZodBoolean",(t,e)=>{ja.init(t,e),me.init(t,e)});function xe(t){return $c(tw,t)}var rw=_("ZodNull",(t,e)=>{Na.init(t,e),me.init(t,e)});function Zf(t){return kc(rw,t)}var nw=_("ZodUnknown",(t,e)=>{Ca.init(t,e),me.init(t,e)});function le(){return Sc(nw)}var ow=_("ZodNever",(t,e)=>{Za.init(t,e),me.init(t,e)});function sw(t){return zc(ow,t)}var iw=_("ZodArray",(t,e)=>{Aa.init(t,e),me.init(t,e),t.element=e.element,t.min=(r,n)=>t.check(Jr(r,n)),t.nonempty=r=>t.check(Jr(1,r)),t.max=(r,n)=>t.check(ns(r,n)),t.length=(r,n)=>t.check(os(r,n)),t.unwrap=()=>t.element});function K(t,e){return _f(iw,t,e)}var Af=_("ZodObject",(t,e)=>{Wo.init(t,e),me.init(t,e),B.defineLazy(t,"shape",()=>e.shape),t.keyof=()=>Me(Object.keys(t._zod.def.shape)),t.catchall=r=>t.clone({...t._zod.def,catchall:r}),t.passthrough=()=>t.clone({...t._zod.def,catchall:le()}),t.loose=()=>t.clone({...t._zod.def,catchall:le()}),t.strict=()=>t.clone({...t._zod.def,catchall:sw()}),t.strip=()=>t.clone({...t._zod.def,catchall:void 0}),t.extend=r=>B.extend(t,r),t.merge=r=>B.merge(t,r),t.pick=r=>B.pick(t,r),t.omit=r=>B.omit(t,r),t.partial=(...r)=>B.partial(Lf,t,r[0]),t.required=(...r)=>B.required(qf,t,r[0])});function P(t,e){let r={type:"object",get shape(){return B.assignProp(this,"shape",{...t}),this.shape},...B.normalizeParams(e)};return new Af(r)}function Ie(t,e){return new Af({type:"object",get shape(){return B.assignProp(this,"shape",{...t}),this.shape},catchall:le(),...B.normalizeParams(e)})}var Mf=_("ZodUnion",(t,e)=>{Yo.init(t,e),me.init(t,e),t.options=e.options});function ie(t,e){return new Mf({type:"union",options:t,...B.normalizeParams(e)})}var aw=_("ZodDiscriminatedUnion",(t,e)=>{Mf.init(t,e),Ma.init(t,e)});function Kc(t,e,r){return new aw({type:"union",options:e,discriminator:t,...B.normalizeParams(r)})}var cw=_("ZodIntersection",(t,e)=>{Da.init(t,e),me.init(t,e)});function ls(t,e){return new cw({type:"intersection",left:t,right:e})}var uw=_("ZodRecord",(t,e)=>{La.init(t,e),me.init(t,e),t.keyType=e.keyType,t.valueType=e.valueType});function se(t,e,r){return new uw({type:"record",keyType:t,valueType:e,...B.normalizeParams(r)})}var Hc=_("ZodEnum",(t,e)=>{qa.init(t,e),me.init(t,e),t.enum=e.entries,t.options=Object.values(e.entries);let r=new Set(Object.keys(e.entries));t.extract=(n,o)=>{let s={};for(let i of n)if(r.has(i))s[i]=e.entries[i];else throw new Error(`Key ${i} not found in enum`);return new Hc({...e,checks:[],...B.normalizeParams(o),entries:s})},t.exclude=(n,o)=>{let s={...e.entries};for(let i of n)if(r.has(i))delete s[i];else throw new Error(`Key ${i} not found in enum`);return new Hc({...e,checks:[],...B.normalizeParams(o),entries:s})}});function Me(t,e){let r=Array.isArray(t)?Object.fromEntries(t.map(n=>[n,n])):t;return new Hc({type:"enum",entries:r,...B.normalizeParams(e)})}var lw=_("ZodLiteral",(t,e)=>{Ua.init(t,e),me.init(t,e),t.values=new Set(e.values),Object.defineProperty(t,"value",{get(){if(e.values.length>1)throw new Error("This schema contains multiple valid literal values. Use `.values` instead.");return e.values[0]}})});function I(t,e){return new lw({type:"literal",values:Array.isArray(t)?t:[t],...B.normalizeParams(e)})}var dw=_("ZodTransform",(t,e)=>{Fa.init(t,e),me.init(t,e),t._zod.parse=(r,n)=>{r.addIssue=s=>{if(typeof s=="string")r.issues.push(B.issue(s,r.value,e));else{let i=s;i.fatal&&(i.continue=!1),i.code??(i.code="custom"),i.input??(i.input=r.value),i.inst??(i.inst=t),i.continue??(i.continue=!0),r.issues.push(B.issue(i))}};let o=e.transform(r.value,r);return o instanceof Promise?o.then(s=>(r.value=s,r)):(r.value=o,r)}});function Df(t){return new dw({type:"transform",transform:t})}var Lf=_("ZodOptional",(t,e)=>{Va.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType});function de(t){return new Lf({type:"optional",innerType:t})}var pw=_("ZodNullable",(t,e)=>{Ha.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType});function jf(t){return new pw({type:"nullable",innerType:t})}var fw=_("ZodDefault",(t,e)=>{Ba.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType,t.removeDefault=t.unwrap});function mw(t,e){return new fw({type:"default",innerType:t,get defaultValue(){return typeof e=="function"?e():e}})}var hw=_("ZodPrefault",(t,e)=>{Ka.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType});function gw(t,e){return new hw({type:"prefault",innerType:t,get defaultValue(){return typeof e=="function"?e():e}})}var qf=_("ZodNonOptional",(t,e)=>{Ja.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType});function yw(t,e){return new qf({type:"nonoptional",innerType:t,...B.normalizeParams(e)})}var _w=_("ZodCatch",(t,e)=>{Xa.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType,t.removeCatch=t.unwrap});function vw(t,e){return new _w({type:"catch",innerType:t,catchValue:typeof e=="function"?e:()=>e})}var xw=_("ZodPipe",(t,e)=>{Ga.init(t,e),me.init(t,e),t.in=e.in,t.out=e.out});function Bc(t,e){return new xw({type:"pipe",in:t,out:e})}var bw=_("ZodReadonly",(t,e)=>{Wa.init(t,e),me.init(t,e)});function ww(t){return new bw({type:"readonly",innerType:t})}var Uf=_("ZodCustom",(t,e)=>{Ya.init(t,e),me.init(t,e)});function $w(t){let e=new we({check:"custom"});return e._zod.check=t,e}function Ff(t,e){return Ac(Uf,t??(()=>!0),e)}function kw(t,e={}){return Mc(Uf,t,e)}function Sw(t){let e=$w(r=>(r.addIssue=n=>{if(typeof n=="string")r.issues.push(B.issue(n,r.value,e._zod.def));else{let o=n;o.fatal&&(o.continue=!1),o.code??(o.code="custom"),o.input??(o.input=r.value),o.inst??(o.inst=e),o.continue??(o.continue=!e._zod.def.abort),r.issues.push(B.issue(o))}},t(r.value,r)));return e}function Jc(t,e){return Bc(Df(t),e)}Be(pf());var Gc="2025-11-25";var Vf=[Gc,"2025-06-18","2025-03-26","2024-11-05","2024-10-07"],Ut="io.modelcontextprotocol/related-task",ps="2.0",ve=Ff(t=>t!==null&&(typeof t=="object"||typeof t=="function")),Hf=ie([y(),Q().int()]),Bf=y(),tR=Ie({ttl:Q().optional(),pollInterval:Q().optional()}),zw=P({ttl:Q().optional()}),Tw=P({taskId:y()}),Wc=Ie({progressToken:Hf.optional(),[Ut]:Tw.optional()}),Je=P({_meta:Wc.optional()}),Hn=Je.extend({task:zw.optional()}),Kf=t=>Hn.safeParse(t).success,$e=P({method:y(),params:Je.loose().optional()}),Ye=P({_meta:Wc.optional()}),Qe=P({method:y(),params:Ye.loose().optional()}),ke=Ie({_meta:Wc.optional()}),fs=ie([y(),Q().int()]),Jf=P({jsonrpc:I(ps),id:fs,...$e.shape}).strict(),Yc=t=>Jf.safeParse(t).success,Xf=P({jsonrpc:I(ps),...Qe.shape}).strict(),Gf=t=>Xf.safeParse(t).success,Qc=P({jsonrpc:I(ps),id:fs,result:ke}).strict(),Bn=t=>Qc.safeParse(t).success;var j;(function(t){t[t.ConnectionClosed=-32e3]="ConnectionClosed",t[t.RequestTimeout=-32001]="RequestTimeout",t[t.ParseError=-32700]="ParseError",t[t.InvalidRequest=-32600]="InvalidRequest",t[t.MethodNotFound=-32601]="MethodNotFound",t[t.InvalidParams=-32602]="InvalidParams",t[t.InternalError=-32603]="InternalError",t[t.UrlElicitationRequired=-32042]="UrlElicitationRequired"})(j||(j={}));var eu=P({jsonrpc:I(ps),id:fs.optional(),error:P({code:Q().int(),message:y(),data:le().optional()})}).strict();var Wf=t=>eu.safeParse(t).success;var Yf=ie([Jf,Xf,Qc,eu]),rR=ie([Qc,eu]),ms=ke.strict(),Pw=Ye.extend({requestId:fs.optional(),reason:y().optional()}),hs=Qe.extend({method:I("notifications/cancelled"),params:Pw}),Ew=P({src:y(),mimeType:y().optional(),sizes:K(y()).optional(),theme:Me(["light","dark"]).optional()}),Kn=P({icons:K(Ew).optional()}),Gr=P({name:y(),title:y().optional()}),Qf=Gr.extend({...Gr.shape,...Kn.shape,version:y(),websiteUrl:y().optional(),description:y().optional()}),Ow=ls(P({applyDefaults:xe().optional()}),se(y(),le())),Iw=Jc(t=>t&&typeof t=="object"&&!Array.isArray(t)&&Object.keys(t).length===0?{form:{}}:t,ls(P({form:Ow.optional(),url:ve.optional()}),se(y(),le()).optional())),Rw=Ie({list:ve.optional(),cancel:ve.optional(),requests:Ie({sampling:Ie({createMessage:ve.optional()}).optional(),elicitation:Ie({create:ve.optional()}).optional()}).optional()}),jw=Ie({list:ve.optional(),cancel:ve.optional(),requests:Ie({tools:Ie({call:ve.optional()}).optional()}).optional()}),Nw=P({experimental:se(y(),ve).optional(),sampling:P({context:ve.optional(),tools:ve.optional()}).optional(),elicitation:Iw.optional(),roots:P({listChanged:xe().optional()}).optional(),tasks:Rw.optional(),extensions:se(y(),ve).optional()}),Cw=Je.extend({protocolVersion:y(),capabilities:Nw,clientInfo:Qf}),tu=$e.extend({method:I("initialize"),params:Cw});var Zw=P({experimental:se(y(),ve).optional(),logging:ve.optional(),completions:ve.optional(),prompts:P({listChanged:xe().optional()}).optional(),resources:P({subscribe:xe().optional(),listChanged:xe().optional()}).optional(),tools:P({listChanged:xe().optional()}).optional(),tasks:jw.optional(),extensions:se(y(),ve).optional()}),Aw=ke.extend({protocolVersion:y(),capabilities:Zw,serverInfo:Qf,instructions:y().optional()}),ru=Qe.extend({method:I("notifications/initialized"),params:Ye.optional()});var gs=$e.extend({method:I("ping"),params:Je.optional()}),Mw=P({progress:Q(),total:de(Q()),message:de(y())}),Dw=P({...Ye.shape,...Mw.shape,progressToken:Hf}),ys=Qe.extend({method:I("notifications/progress"),params:Dw}),Lw=Je.extend({cursor:Bf.optional()}),Jn=$e.extend({params:Lw.optional()}),Xn=ke.extend({nextCursor:Bf.optional()}),qw=Me(["working","input_required","completed","failed","cancelled"]),Gn=P({taskId:y(),status:qw,ttl:ie([Q(),Zf()]),createdAt:y(),lastUpdatedAt:y(),pollInterval:de(Q()),statusMessage:de(y())}),Wr=ke.extend({task:Gn}),Uw=Ye.merge(Gn),Wn=Qe.extend({method:I("notifications/tasks/status"),params:Uw}),_s=$e.extend({method:I("tasks/get"),params:Je.extend({taskId:y()})}),vs=ke.merge(Gn),xs=$e.extend({method:I("tasks/result"),params:Je.extend({taskId:y()})}),nR=ke.loose(),bs=Jn.extend({method:I("tasks/list")}),ws=Xn.extend({tasks:K(Gn)}),$s=$e.extend({method:I("tasks/cancel"),params:Je.extend({taskId:y()})}),em=ke.merge(Gn),tm=P({uri:y(),mimeType:de(y()),_meta:se(y(),le()).optional()}),rm=tm.extend({text:y()}),nu=y().refine(t=>{try{return atob(t),!0}catch{return!1}},{message:"Invalid Base64 string"}),nm=tm.extend({blob:nu}),Yn=Me(["user","assistant"]),Yr=P({audience:K(Yn).optional(),priority:Q().min(0).max(1).optional(),lastModified:Fn.datetime({offset:!0}).optional()}),om=P({...Gr.shape,...Kn.shape,uri:y(),description:de(y()),mimeType:de(y()),size:de(Q()),annotations:Yr.optional(),_meta:de(Ie({}))}),Fw=P({...Gr.shape,...Kn.shape,uriTemplate:y(),description:de(y()),mimeType:de(y()),annotations:Yr.optional(),_meta:de(Ie({}))}),ks=Jn.extend({method:I("resources/list")}),Vw=Xn.extend({resources:K(om)}),Ss=Jn.extend({method:I("resources/templates/list")}),Hw=Xn.extend({resourceTemplates:K(Fw)}),ou=Je.extend({uri:y()}),Bw=ou,zs=$e.extend({method:I("resources/read"),params:Bw}),Kw=ke.extend({contents:K(ie([rm,nm]))}),Jw=Qe.extend({method:I("notifications/resources/list_changed"),params:Ye.optional()}),Xw=ou,Gw=$e.extend({method:I("resources/subscribe"),params:Xw}),Ww=ou,Yw=$e.extend({method:I("resources/unsubscribe"),params:Ww}),Qw=Ye.extend({uri:y()}),e$=Qe.extend({method:I("notifications/resources/updated"),params:Qw}),t$=P({name:y(),description:de(y()),required:de(xe())}),r$=P({...Gr.shape,...Kn.shape,description:de(y()),arguments:de(K(t$)),_meta:de(Ie({}))}),Ts=Jn.extend({method:I("prompts/list")}),n$=Xn.extend({prompts:K(r$)}),o$=Je.extend({name:y(),arguments:se(y(),y()).optional()}),Ps=$e.extend({method:I("prompts/get"),params:o$}),su=P({type:I("text"),text:y(),annotations:Yr.optional(),_meta:se(y(),le()).optional()}),iu=P({type:I("image"),data:nu,mimeType:y(),annotations:Yr.optional(),_meta:se(y(),le()).optional()}),au=P({type:I("audio"),data:nu,mimeType:y(),annotations:Yr.optional(),_meta:se(y(),le()).optional()}),s$=P({type:I("tool_use"),name:y(),id:y(),input:se(y(),le()),_meta:se(y(),le()).optional()}),i$=P({type:I("resource"),resource:ie([rm,nm]),annotations:Yr.optional(),_meta:se(y(),le()).optional()}),a$=om.extend({type:I("resource_link")}),cu=ie([su,iu,au,a$,i$]),c$=P({role:Yn,content:cu}),u$=ke.extend({description:y().optional(),messages:K(c$)}),l$=Qe.extend({method:I("notifications/prompts/list_changed"),params:Ye.optional()}),d$=P({title:y().optional(),readOnlyHint:xe().optional(),destructiveHint:xe().optional(),idempotentHint:xe().optional(),openWorldHint:xe().optional()}),p$=P({taskSupport:Me(["required","optional","forbidden"]).optional()}),sm=P({...Gr.shape,...Kn.shape,description:y().optional(),inputSchema:P({type:I("object"),properties:se(y(),ve).optional(),required:K(y()).optional()}).catchall(le()),outputSchema:P({type:I("object"),properties:se(y(),ve).optional(),required:K(y()).optional()}).catchall(le()).optional(),annotations:d$.optional(),execution:p$.optional(),_meta:se(y(),le()).optional()}),Es=Jn.extend({method:I("tools/list")}),f$=Xn.extend({tools:K(sm)}),Os=ke.extend({content:K(cu).default([]),structuredContent:se(y(),le()).optional(),isError:xe().optional()}),oR=Os.or(ke.extend({toolResult:le()})),m$=Hn.extend({name:y(),arguments:se(y(),le()).optional()}),Qr=$e.extend({method:I("tools/call"),params:m$}),h$=Qe.extend({method:I("notifications/tools/list_changed"),params:Ye.optional()}),sR=P({autoRefresh:xe().default(!0),debounceMs:Q().int().nonnegative().default(300)}),Qn=Me(["debug","info","notice","warning","error","critical","alert","emergency"]),g$=Je.extend({level:Qn}),uu=$e.extend({method:I("logging/setLevel"),params:g$}),y$=Ye.extend({level:Qn,logger:y().optional(),data:le()}),_$=Qe.extend({method:I("notifications/message"),params:y$}),v$=P({name:y().optional()}),x$=P({hints:K(v$).optional(),costPriority:Q().min(0).max(1).optional(),speedPriority:Q().min(0).max(1).optional(),intelligencePriority:Q().min(0).max(1).optional()}),b$=P({mode:Me(["auto","required","none"]).optional()}),w$=P({type:I("tool_result"),toolUseId:y().describe("The unique identifier for the corresponding tool call."),content:K(cu).default([]),structuredContent:P({}).loose().optional(),isError:xe().optional(),_meta:se(y(),le()).optional()}),$$=Kc("type",[su,iu,au]),ds=Kc("type",[su,iu,au,s$,w$]),k$=P({role:Yn,content:ie([ds,K(ds)]),_meta:se(y(),le()).optional()}),S$=Hn.extend({messages:K(k$),modelPreferences:x$.optional(),systemPrompt:y().optional(),includeContext:Me(["none","thisServer","allServers"]).optional(),temperature:Q().optional(),maxTokens:Q().int(),stopSequences:K(y()).optional(),metadata:ve.optional(),tools:K(sm).optional(),toolChoice:b$.optional()}),z$=$e.extend({method:I("sampling/createMessage"),params:S$}),eo=ke.extend({model:y(),stopReason:de(Me(["endTurn","stopSequence","maxTokens"]).or(y())),role:Yn,content:$$}),lu=ke.extend({model:y(),stopReason:de(Me(["endTurn","stopSequence","maxTokens","toolUse"]).or(y())),role:Yn,content:ie([ds,K(ds)])}),T$=P({type:I("boolean"),title:y().optional(),description:y().optional(),default:xe().optional()}),P$=P({type:I("string"),title:y().optional(),description:y().optional(),minLength:Q().optional(),maxLength:Q().optional(),format:Me(["email","uri","date","date-time"]).optional(),default:y().optional()}),E$=P({type:Me(["number","integer"]),title:y().optional(),description:y().optional(),minimum:Q().optional(),maximum:Q().optional(),default:Q().optional()}),O$=P({type:I("string"),title:y().optional(),description:y().optional(),enum:K(y()),default:y().optional()}),I$=P({type:I("string"),title:y().optional(),description:y().optional(),oneOf:K(P({const:y(),title:y()})),default:y().optional()}),R$=P({type:I("string"),title:y().optional(),description:y().optional(),enum:K(y()),enumNames:K(y()).optional(),default:y().optional()}),j$=ie([O$,I$]),N$=P({type:I("array"),title:y().optional(),description:y().optional(),minItems:Q().optional(),maxItems:Q().optional(),items:P({type:I("string"),enum:K(y())}),default:K(y()).optional()}),C$=P({type:I("array"),title:y().optional(),description:y().optional(),minItems:Q().optional(),maxItems:Q().optional(),items:P({anyOf:K(P({const:y(),title:y()}))}),default:K(y()).optional()}),Z$=ie([N$,C$]),A$=ie([R$,j$,Z$]),M$=ie([A$,T$,P$,E$]),D$=Hn.extend({mode:I("form").optional(),message:y(),requestedSchema:P({type:I("object"),properties:se(y(),M$),required:K(y()).optional()})}),L$=Hn.extend({mode:I("url"),message:y(),elicitationId:y(),url:y().url()}),q$=ie([D$,L$]),U$=$e.extend({method:I("elicitation/create"),params:q$}),F$=Ye.extend({elicitationId:y()}),V$=Qe.extend({method:I("notifications/elicitation/complete"),params:F$}),en=ke.extend({action:Me(["accept","decline","cancel"]),content:Jc(t=>t===null?void 0:t,se(y(),ie([y(),Q(),xe(),K(y())])).optional())}),H$=P({type:I("ref/resource"),uri:y()});var B$=P({type:I("ref/prompt"),name:y()}),K$=Je.extend({ref:ie([B$,H$]),argument:P({name:y(),value:y()}),context:P({arguments:se(y(),y()).optional()}).optional()}),Is=$e.extend({method:I("completion/complete"),params:K$});function im(t){if(t.params.ref.type!=="ref/prompt")throw new TypeError(`Expected CompleteRequestPrompt, but got ${t.params.ref.type}`)}function am(t){if(t.params.ref.type!=="ref/resource")throw new TypeError(`Expected CompleteRequestResourceTemplate, but got ${t.params.ref.type}`)}var J$=ke.extend({completion:Ie({values:K(y()).max(100),total:de(Q().int()),hasMore:de(xe())})}),X$=P({uri:y().startsWith("file://"),name:y().optional(),_meta:se(y(),le()).optional()}),G$=$e.extend({method:I("roots/list"),params:Je.optional()}),du=ke.extend({roots:K(X$)}),W$=Qe.extend({method:I("notifications/roots/list_changed"),params:Ye.optional()}),iR=ie([gs,tu,Is,uu,Ps,Ts,ks,Ss,zs,Gw,Yw,Qr,Es,_s,xs,bs,$s]),aR=ie([hs,ys,ru,W$,Wn]),cR=ie([ms,eo,lu,en,du,vs,ws,Wr]),uR=ie([gs,z$,U$,G$,_s,xs,bs,$s]),lR=ie([hs,ys,_$,e$,Jw,h$,l$,Wn,V$]),dR=ie([ms,Aw,J$,u$,n$,Vw,Hw,Kw,Os,f$,vs,ws,Wr]),O=class t extends Error{constructor(e,r,n){super(`MCP error ${e}: ${r}`),this.code=e,this.data=n,this.name="McpError"}static fromError(e,r,n){if(e===j.UrlElicitationRequired&&n){let o=n;if(o.elicitations)return new Xc(o.elicitations,r)}return new t(e,r,n)}},Xc=class extends O{constructor(e,r=`URL elicitation${e.length>1?"s":""} required`){super(j.UrlElicitationRequired,r,{elicitations:e})}get elicitations(){return this.data?.elicitations??[]}};function Ft(t){return t==="completed"||t==="failed"||t==="cancelled"}var um=Symbol("Let zodToJsonSchema decide on which parser to use");var cm={name:void 0,$refStrategy:"root",basePath:["#"],effectStrategy:"input",pipeStrategy:"all",dateStrategy:"format:date-time",mapStrategy:"entries",removeAdditionalStrategy:"passthrough",allowedAdditionalProperties:!0,rejectedAdditionalProperties:!1,definitionPath:"definitions",target:"jsonSchema7",strictUnions:!1,definitions:{},errorMessages:!1,markdownDescription:!1,patternStrategy:"escape",applyRegexFlags:!1,emailStrategy:"format:email",base64Strategy:"contentEncoding:base64",nameStrategy:"ref",openAiAnyTypeName:"OpenAiAnyType"},lm=t=>typeof t=="string"?{...cm,name:t}:{...cm,...t};var dm=t=>{let e=lm(t),r=e.name!==void 0?[...e.basePath,e.definitionPath,e.name]:e.basePath;return{...e,flags:{hasReferencedOpenAiAnyType:!1},currentPath:r,propertyPath:void 0,seen:new Map(Object.entries(e.definitions).map(([n,o])=>[o._def,{def:o._def,path:[...e.basePath,e.definitionPath,n],jsonSchema:void 0}]))}};function pu(t,e,r,n){n?.errorMessages&&r&&(t.errorMessage={...t.errorMessage,[e]:r})}function J(t,e,r,n,o){t[e]=r,pu(t,e,n,o)}var Rs=(t,e)=>{let r=0;for(;r<t.length&&r<e.length&&t[r]===e[r];r++);return[(t.length-r).toString(),...e.slice(r)].join("/")};function pe(t){if(t.target!=="openAi")return{};let e=[...t.basePath,t.definitionPath,t.openAiAnyTypeName];return t.flags.hasReferencedOpenAiAnyType=!0,{$ref:t.$refStrategy==="relative"?Rs(e,t.currentPath):e.join("/")}}function pm(t,e){let r={type:"array"};return t.type?._def&&t.type?._def?.typeName!==$.ZodAny&&(r.items=A(t.type._def,{...e,currentPath:[...e.currentPath,"items"]})),t.minLength&&J(r,"minItems",t.minLength.value,t.minLength.message,e),t.maxLength&&J(r,"maxItems",t.maxLength.value,t.maxLength.message,e),t.exactLength&&(J(r,"minItems",t.exactLength.value,t.exactLength.message,e),J(r,"maxItems",t.exactLength.value,t.exactLength.message,e)),r}function fm(t,e){let r={type:"integer",format:"int64"};if(!t.checks)return r;for(let n of t.checks)switch(n.kind){case"min":e.target==="jsonSchema7"?n.inclusive?J(r,"minimum",n.value,n.message,e):J(r,"exclusiveMinimum",n.value,n.message,e):(n.inclusive||(r.exclusiveMinimum=!0),J(r,"minimum",n.value,n.message,e));break;case"max":e.target==="jsonSchema7"?n.inclusive?J(r,"maximum",n.value,n.message,e):J(r,"exclusiveMaximum",n.value,n.message,e):(n.inclusive||(r.exclusiveMaximum=!0),J(r,"maximum",n.value,n.message,e));break;case"multipleOf":J(r,"multipleOf",n.value,n.message,e);break}return r}function mm(){return{type:"boolean"}}function js(t,e){return A(t.type._def,e)}var hm=(t,e)=>A(t.innerType._def,e);function fu(t,e,r){let n=r??e.dateStrategy;if(Array.isArray(n))return{anyOf:n.map((o,s)=>fu(t,e,o))};switch(n){case"string":case"format:date-time":return{type:"string",format:"date-time"};case"format:date":return{type:"string",format:"date"};case"integer":return Y$(t,e)}}var Y$=(t,e)=>{let r={type:"integer",format:"unix-time"};if(e.target==="openApi3")return r;for(let n of t.checks)switch(n.kind){case"min":J(r,"minimum",n.value,n.message,e);break;case"max":J(r,"maximum",n.value,n.message,e);break}return r};function gm(t,e){return{...A(t.innerType._def,e),default:t.defaultValue()}}function ym(t,e){return e.effectStrategy==="input"?A(t.schema._def,e):pe(e)}function _m(t){return{type:"string",enum:Array.from(t.values)}}var Q$=t=>"type"in t&&t.type==="string"?!1:"allOf"in t;function vm(t,e){let r=[A(t.left._def,{...e,currentPath:[...e.currentPath,"allOf","0"]}),A(t.right._def,{...e,currentPath:[...e.currentPath,"allOf","1"]})].filter(s=>!!s),n=e.target==="jsonSchema2019-09"?{unevaluatedProperties:!1}:void 0,o=[];return r.forEach(s=>{if(Q$(s))o.push(...s.allOf),s.unevaluatedProperties===void 0&&(n=void 0);else{let i=s;if("additionalProperties"in s&&s.additionalProperties===!1){let{additionalProperties:a,...c}=s;i=c}else n=void 0;o.push(i)}}),o.length?{allOf:o,...n}:void 0}function xm(t,e){let r=typeof t.value;return r!=="bigint"&&r!=="number"&&r!=="boolean"&&r!=="string"?{type:Array.isArray(t.value)?"array":"object"}:e.target==="openApi3"?{type:r==="bigint"?"integer":r,enum:[t.value]}:{type:r==="bigint"?"integer":r,const:t.value}}var mu,it={cuid:/^[cC][^\s-]{8,}$/,cuid2:/^[0-9a-z]+$/,ulid:/^[0-9A-HJKMNP-TV-Z]{26}$/,email:/^(?!\.)(?!.*\.\.)([a-zA-Z0-9_'+\-\.]*)[a-zA-Z0-9_+-]@([a-zA-Z0-9][a-zA-Z0-9\-]*\.)+[a-zA-Z]{2,}$/,emoji:()=>(mu===void 0&&(mu=RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),mu),uuid:/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/,ipv4:/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,ipv4Cidr:/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/,ipv6:/^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/,ipv6Cidr:/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,base64:/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,base64url:/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,nanoid:/^[a-zA-Z0-9_-]{21}$/,jwt:/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/};function Ns(t,e){let r={type:"string"};if(t.checks)for(let n of t.checks)switch(n.kind){case"min":J(r,"minLength",typeof r.minLength=="number"?Math.max(r.minLength,n.value):n.value,n.message,e);break;case"max":J(r,"maxLength",typeof r.maxLength=="number"?Math.min(r.maxLength,n.value):n.value,n.message,e);break;case"email":switch(e.emailStrategy){case"format:email":at(r,"email",n.message,e);break;case"format:idn-email":at(r,"idn-email",n.message,e);break;case"pattern:zod":Re(r,it.email,n.message,e);break}break;case"url":at(r,"uri",n.message,e);break;case"uuid":at(r,"uuid",n.message,e);break;case"regex":Re(r,n.regex,n.message,e);break;case"cuid":Re(r,it.cuid,n.message,e);break;case"cuid2":Re(r,it.cuid2,n.message,e);break;case"startsWith":Re(r,RegExp(`^${hu(n.value,e)}`),n.message,e);break;case"endsWith":Re(r,RegExp(`${hu(n.value,e)}$`),n.message,e);break;case"datetime":at(r,"date-time",n.message,e);break;case"date":at(r,"date",n.message,e);break;case"time":at(r,"time",n.message,e);break;case"duration":at(r,"duration",n.message,e);break;case"length":J(r,"minLength",typeof r.minLength=="number"?Math.max(r.minLength,n.value):n.value,n.message,e),J(r,"maxLength",typeof r.maxLength=="number"?Math.min(r.maxLength,n.value):n.value,n.message,e);break;case"includes":{Re(r,RegExp(hu(n.value,e)),n.message,e);break}case"ip":{n.version!=="v6"&&at(r,"ipv4",n.message,e),n.version!=="v4"&&at(r,"ipv6",n.message,e);break}case"base64url":Re(r,it.base64url,n.message,e);break;case"jwt":Re(r,it.jwt,n.message,e);break;case"cidr":{n.version!=="v6"&&Re(r,it.ipv4Cidr,n.message,e),n.version!=="v4"&&Re(r,it.ipv6Cidr,n.message,e);break}case"emoji":Re(r,it.emoji(),n.message,e);break;case"ulid":{Re(r,it.ulid,n.message,e);break}case"base64":{switch(e.base64Strategy){case"format:binary":{at(r,"binary",n.message,e);break}case"contentEncoding:base64":{J(r,"contentEncoding","base64",n.message,e);break}case"pattern:zod":{Re(r,it.base64,n.message,e);break}}break}case"nanoid":Re(r,it.nanoid,n.message,e);case"toLowerCase":case"toUpperCase":case"trim":break;default:}return r}function hu(t,e){return e.patternStrategy==="escape"?t0(t):t}var e0=new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");function t0(t){let e="";for(let r=0;r<t.length;r++)e0.has(t[r])||(e+="\\"),e+=t[r];return e}function at(t,e,r,n){t.format||t.anyOf?.some(o=>o.format)?(t.anyOf||(t.anyOf=[]),t.format&&(t.anyOf.push({format:t.format,...t.errorMessage&&n.errorMessages&&{errorMessage:{format:t.errorMessage.format}}}),delete t.format,t.errorMessage&&(delete t.errorMessage.format,Object.keys(t.errorMessage).length===0&&delete t.errorMessage)),t.anyOf.push({format:e,...r&&n.errorMessages&&{errorMessage:{format:r}}})):J(t,"format",e,r,n)}function Re(t,e,r,n){t.pattern||t.allOf?.some(o=>o.pattern)?(t.allOf||(t.allOf=[]),t.pattern&&(t.allOf.push({pattern:t.pattern,...t.errorMessage&&n.errorMessages&&{errorMessage:{pattern:t.errorMessage.pattern}}}),delete t.pattern,t.errorMessage&&(delete t.errorMessage.pattern,Object.keys(t.errorMessage).length===0&&delete t.errorMessage)),t.allOf.push({pattern:bm(e,n),...r&&n.errorMessages&&{errorMessage:{pattern:r}}})):J(t,"pattern",bm(e,n),r,n)}function bm(t,e){if(!e.applyRegexFlags||!t.flags)return t.source;let r={i:t.flags.includes("i"),m:t.flags.includes("m"),s:t.flags.includes("s")},n=r.i?t.source.toLowerCase():t.source,o="",s=!1,i=!1,a=!1;for(let c=0;c<n.length;c++){if(s){o+=n[c],s=!1;continue}if(r.i){if(i){if(n[c].match(/[a-z]/)){a?(o+=n[c],o+=`${n[c-2]}-${n[c]}`.toUpperCase(),a=!1):n[c+1]==="-"&&n[c+2]?.match(/[a-z]/)?(o+=n[c],a=!0):o+=`${n[c]}${n[c].toUpperCase()}`;continue}}else if(n[c].match(/[a-z]/)){o+=`[${n[c]}${n[c].toUpperCase()}]`;continue}}if(r.m){if(n[c]==="^"){o+=`(^|(?<=[\r
|
|
152
|
+
Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.`)}for(let l of this.seen.entries()){let d=l[1];if(e===l[0]){i(l);continue}if(n.external){let m=n.external.registry.get(l[0])?.id;if(e!==l[0]&&m){i(l);continue}}if(this.metadataRegistry.get(l[0])?.id){i(l);continue}if(d.cycle){i(l);continue}if(d.count>1&&n.reused==="ref"){i(l);continue}}let a=(l,d)=>{let f=this.seen.get(l),m=f.def??f.schema,p={...m};if(f.ref===null)return;let h=f.ref;if(f.ref=null,h){a(h,d);let g=this.seen.get(h).schema;g.$ref&&d.target==="draft-7"?(m.allOf=m.allOf??[],m.allOf.push(g)):(Object.assign(m,g),Object.assign(m,p))}f.isParent||this.override({zodSchema:l,jsonSchema:m,path:f.path??[]})};for(let l of[...this.seen.entries()].reverse())a(l[0],{target:this.target});let c={};if(this.target==="draft-2020-12"?c.$schema="https://json-schema.org/draft/2020-12/schema":this.target==="draft-7"?c.$schema="http://json-schema.org/draft-07/schema#":console.warn(`Invalid target: ${this.target}`),n.external?.uri){let l=n.external.registry.get(e)?.id;if(!l)throw new Error("Schema is missing an `id` property");c.$id=n.external.uri(l)}Object.assign(c,o.def);let u=n.external?.defs??{};for(let l of this.seen.entries()){let d=l[1];d.def&&d.defId&&(u[d.defId]=d.def)}n.external||Object.keys(u).length>0&&(this.target==="draft-2020-12"?c.$defs=u:c.definitions=u);try{return JSON.parse(JSON.stringify(c))}catch{throw new Error("Error converting schema to JSON.")}}};function ou(t,e){if(t instanceof Xn){let n=new _s(e),o={};for(let a of t._idmap.entries()){let[c,u]=a;n.process(u)}let s={},i={registry:t,uri:e?.uri,defs:o};for(let a of t._idmap.entries()){let[c,u]=a;s[c]=n.emit(u,{...e,external:i})}if(Object.keys(o).length>0){let a=n.target==="draft-2020-12"?"$defs":"definitions";s.__shared={[a]:o}}return{schemas:s}}let r=new _s(e);return r.process(t),r.emit(t,e)}function _e(t,e){let r=e??{seen:new Set};if(r.seen.has(t))return!1;r.seen.add(t);let o=t._zod.def;switch(o.type){case"string":case"number":case"bigint":case"boolean":case"date":case"symbol":case"undefined":case"null":case"any":case"unknown":case"never":case"void":case"literal":case"enum":case"nan":case"file":case"template_literal":return!1;case"array":return _e(o.element,r);case"object":{for(let s in o.shape)if(_e(o.shape[s],r))return!0;return!1}case"union":{for(let s of o.options)if(_e(s,r))return!0;return!1}case"intersection":return _e(o.left,r)||_e(o.right,r);case"tuple":{for(let s of o.items)if(_e(s,r))return!0;return!!(o.rest&&_e(o.rest,r))}case"record":return _e(o.keyType,r)||_e(o.valueType,r);case"map":return _e(o.keyType,r)||_e(o.valueType,r);case"set":return _e(o.valueType,r);case"promise":case"optional":case"nonoptional":case"nullable":case"readonly":return _e(o.innerType,r);case"lazy":return _e(o.getter(),r);case"default":return _e(o.innerType,r);case"prefault":return _e(o.innerType,r);case"custom":return!1;case"transform":return!0;case"pipe":return _e(o.in,r)||_e(o.out,r);case"success":return!1;case"catch":return!1;default:}throw new Error(`Unknown schema type: ${o.type}`)}var sb=_("ZodMiniType",(t,e)=>{if(!t._zod)throw new Error("Uninitialized schema in ZodMiniType.");ee.init(t,e),t.def=e,t.parse=(r,n)=>ba(t,r,n,{callee:t.parse}),t.safeParse=(r,n)=>zr(t,r,n),t.parseAsync=async(r,n)=>ka(t,r,n,{callee:t.parseAsync}),t.safeParseAsync=async(r,n)=>Tr(t,r,n),t.check=(...r)=>t.clone({...e,checks:[...e.checks??[],...r.map(n=>typeof n=="function"?{_zod:{check:n,def:{check:"custom"},onattach:[]}}:n)]}),t.clone=(r,n)=>Xe(t,r,n),t.brand=()=>t,t.register=((r,n)=>(r.add(t,n),t))});var ib=_("ZodMiniObject",(t,e)=>{ls.init(t,e),sb.init(t,e),K.defineLazy(t,"shape",()=>e.shape)});function su(t,e){let r={type:"object",get shape(){return K.assignProp(this,"shape",{...t}),this.shape},...K.normalizeParams(e)};return new ib(r)}function Ye(t){return!!t._zod}function Er(t){let e=Object.values(t);if(e.length===0)return su({});let r=e.every(Ye),n=e.every(o=>!Ye(o));if(r)return su(t);if(n)return ca(t);throw new Error("Mixed Zod versions detected in object shape.")}function Ft(t,e){return Ye(t)?zr(t,e):t.safeParse(e)}async function vs(t,e){return Ye(t)?await Tr(t,e):await t.safeParseAsync(e)}function Vt(t){if(!t)return;let e;if(Ye(t)?e=t._zod?.def?.shape:e=t.shape,!!e){if(typeof e=="function")try{return e()}catch{return}return e}}function tn(t){if(t){if(typeof t=="object"){let e=t,r=t;if(!e._def&&!r._zod){let n=Object.values(t);if(n.length>0&&n.every(o=>typeof o=="object"&&o!==null&&(o._def!==void 0||o._zod!==void 0||typeof o.parse=="function")))return Er(t)}}if(Ye(t)){let r=t._zod?.def;if(r&&(r.type==="object"||r.shape!==void 0))return t}else if(t.shape!==void 0)return t}}function xs(t){if(t&&typeof t=="object"){if("message"in t&&typeof t.message=="string")return t.message;if("issues"in t&&Array.isArray(t.issues)&&t.issues.length>0){let e=t.issues[0];if(e&&typeof e=="object"&&"message"in e)return String(e.message)}try{return JSON.stringify(t)}catch{return String(t)}}return String(t)}function Jf(t){return t.description}function Gf(t){if(Ye(t))return t._zod?.def?.type==="optional";let e=t;return typeof t.isOptional=="function"?t.isOptional():e._def?.typeName==="ZodOptional"}function ws(t){if(Ye(t)){let s=t._zod?.def;if(s){if(s.value!==void 0)return s.value;if(Array.isArray(s.values)&&s.values.length>0)return s.values[0]}}let r=t._def;if(r){if(r.value!==void 0)return r.value;if(Array.isArray(r.values)&&r.values.length>0)return r.values[0]}let n=t.value;if(n!==void 0)return n}var Wn={};qo(Wn,{ZodISODate:()=>Yf,ZodISODateTime:()=>Wf,ZodISODuration:()=>em,ZodISOTime:()=>Qf,date:()=>au,datetime:()=>iu,duration:()=>uu,time:()=>cu});var Wf=_("ZodISODateTime",(t,e)=>{Zf.init(t,e),ue.init(t,e)});function iu(t){return Ff(Wf,t)}var Yf=_("ZodISODate",(t,e)=>{Af.init(t,e),ue.init(t,e)});function au(t){return Vf(Yf,t)}var Qf=_("ZodISOTime",(t,e)=>{Mf.init(t,e),ue.init(t,e)});function cu(t){return Hf(Qf,t)}var em=_("ZodISODuration",(t,e)=>{Df.init(t,e),ue.init(t,e)});function uu(t){return Kf(em,t)}var tm=(t,e)=>{ss.init(t,e),t.name="ZodError",Object.defineProperties(t,{format:{value:r=>xa(t,r)},flatten:{value:r=>va(t,r)},addIssue:{value:r=>t.issues.push(r)},addIssues:{value:r=>t.issues.push(...r)},isEmpty:{get(){return t.issues.length===0}}})},ER=_("ZodError",tm),Yn=_("ZodError",tm,{Parent:Error});var rm=wa(Yn),nm=$a(Yn),om=Sa(Yn),sm=za(Yn);var me=_("ZodType",(t,e)=>(ee.init(t,e),t.def=e,Object.defineProperty(t,"_def",{value:e}),t.check=(...r)=>t.clone({...e,checks:[...e.checks??[],...r.map(n=>typeof n=="function"?{_zod:{check:n,def:{check:"custom"},onattach:[]}}:n)]}),t.clone=(r,n)=>Xe(t,r,n),t.brand=()=>t,t.register=((r,n)=>(r.add(t,n),t)),t.parse=(r,n)=>rm(t,r,n,{callee:t.parse}),t.safeParse=(r,n)=>om(t,r,n),t.parseAsync=async(r,n)=>nm(t,r,n,{callee:t.parseAsync}),t.safeParseAsync=async(r,n)=>sm(t,r,n),t.spa=t.safeParseAsync,t.refine=(r,n)=>t.check(n$(r,n)),t.superRefine=r=>t.check(o$(r)),t.overwrite=r=>t.check(Pr(r)),t.optional=()=>de(t),t.nullable=()=>cm(t),t.nullish=()=>de(cm(t)),t.nonoptional=r=>Gb(t,r),t.array=()=>B(t),t.or=r=>ie([t,r]),t.and=r=>$s(t,r),t.transform=r=>du(t,mm(r)),t.default=r=>Bb(t,r),t.prefault=r=>Jb(t,r),t.catch=r=>Yb(t,r),t.pipe=r=>du(t,r),t.readonly=()=>t$(t),t.describe=r=>{let n=t.clone();return Ut.add(n,{description:r}),n},Object.defineProperty(t,"description",{get(){return Ut.get(t)?.description},configurable:!0}),t.meta=(...r)=>{if(r.length===0)return Ut.get(t);let n=t.clone();return Ut.add(n,r[0]),n},t.isOptional=()=>t.safeParse(void 0).success,t.isNullable=()=>t.safeParse(null).success,t)),um=_("_ZodString",(t,e)=>{Bn.init(t,e),me.init(t,e);let r=t._zod.bag;t.format=r.format??null,t.minLength=r.minimum??null,t.maxLength=r.maximum??null,t.regex=(...n)=>t.check(Kc(...n)),t.includes=(...n)=>t.check(Jc(...n)),t.startsWith=(...n)=>t.check(Gc(...n)),t.endsWith=(...n)=>t.check(Wc(...n)),t.min=(...n)=>t.check(en(...n)),t.max=(...n)=>t.check(gs(...n)),t.length=(...n)=>t.check(ys(...n)),t.nonempty=(...n)=>t.check(en(1,...n)),t.lowercase=n=>t.check(Bc(n)),t.uppercase=n=>t.check(Xc(n)),t.trim=()=>t.check(Qc()),t.normalize=(...n)=>t.check(Yc(...n)),t.toLowerCase=()=>t.check(eu()),t.toUpperCase=()=>t.check(tu())}),hb=_("ZodString",(t,e)=>{Bn.init(t,e),um.init(t,e),t.email=r=>t.check(vc(gb,r)),t.url=r=>t.check(kc(yb,r)),t.jwt=r=>t.check(Dc(Rb,r)),t.emoji=r=>t.check(Sc(_b,r)),t.guid=r=>t.check(ps(im,r)),t.uuid=r=>t.check(xc(bs,r)),t.uuidv4=r=>t.check(wc(bs,r)),t.uuidv6=r=>t.check(bc(bs,r)),t.uuidv7=r=>t.check($c(bs,r)),t.nanoid=r=>t.check(zc(vb,r)),t.guid=r=>t.check(ps(im,r)),t.cuid=r=>t.check(Tc(xb,r)),t.cuid2=r=>t.check(Pc(wb,r)),t.ulid=r=>t.check(Oc(bb,r)),t.base64=r=>t.check(Zc(Ob,r)),t.base64url=r=>t.check(Ac(Eb,r)),t.xid=r=>t.check(Ec($b,r)),t.ksuid=r=>t.check(Ic(kb,r)),t.ipv4=r=>t.check(Rc(Sb,r)),t.ipv6=r=>t.check(jc(zb,r)),t.cidrv4=r=>t.check(Nc(Tb,r)),t.cidrv6=r=>t.check(Cc(Pb,r)),t.e164=r=>t.check(Mc(Ib,r)),t.datetime=r=>t.check(iu(r)),t.date=r=>t.check(au(r)),t.time=r=>t.check(cu(r)),t.duration=r=>t.check(uu(r))});function y(t){return _c(hb,t)}var ue=_("ZodStringFormat",(t,e)=>{oe.init(t,e),um.init(t,e)}),gb=_("ZodEmail",(t,e)=>{Na.init(t,e),ue.init(t,e)});var im=_("ZodGUID",(t,e)=>{Ra.init(t,e),ue.init(t,e)});var bs=_("ZodUUID",(t,e)=>{ja.init(t,e),ue.init(t,e)});var yb=_("ZodURL",(t,e)=>{Ca.init(t,e),ue.init(t,e)});var _b=_("ZodEmoji",(t,e)=>{Za.init(t,e),ue.init(t,e)});var vb=_("ZodNanoID",(t,e)=>{Aa.init(t,e),ue.init(t,e)});var xb=_("ZodCUID",(t,e)=>{Ma.init(t,e),ue.init(t,e)});var wb=_("ZodCUID2",(t,e)=>{Da.init(t,e),ue.init(t,e)});var bb=_("ZodULID",(t,e)=>{La.init(t,e),ue.init(t,e)});var $b=_("ZodXID",(t,e)=>{qa.init(t,e),ue.init(t,e)});var kb=_("ZodKSUID",(t,e)=>{Ua.init(t,e),ue.init(t,e)});var Sb=_("ZodIPv4",(t,e)=>{Fa.init(t,e),ue.init(t,e)});var zb=_("ZodIPv6",(t,e)=>{Va.init(t,e),ue.init(t,e)});var Tb=_("ZodCIDRv4",(t,e)=>{Ha.init(t,e),ue.init(t,e)});var Pb=_("ZodCIDRv6",(t,e)=>{Ka.init(t,e),ue.init(t,e)});var Ob=_("ZodBase64",(t,e)=>{Ba.init(t,e),ue.init(t,e)});var Eb=_("ZodBase64URL",(t,e)=>{Xa.init(t,e),ue.init(t,e)});var Ib=_("ZodE164",(t,e)=>{Ja.init(t,e),ue.init(t,e)});var Rb=_("ZodJWT",(t,e)=>{Ga.init(t,e),ue.init(t,e)});var lm=_("ZodNumber",(t,e)=>{us.init(t,e),me.init(t,e),t.gt=(n,o)=>t.check(ms(n,o)),t.gte=(n,o)=>t.check(Gn(n,o)),t.min=(n,o)=>t.check(Gn(n,o)),t.lt=(n,o)=>t.check(fs(n,o)),t.lte=(n,o)=>t.check(Jn(n,o)),t.max=(n,o)=>t.check(Jn(n,o)),t.int=n=>t.check(am(n)),t.safe=n=>t.check(am(n)),t.positive=n=>t.check(ms(0,n)),t.nonnegative=n=>t.check(Gn(0,n)),t.negative=n=>t.check(fs(0,n)),t.nonpositive=n=>t.check(Jn(0,n)),t.multipleOf=(n,o)=>t.check(hs(n,o)),t.step=(n,o)=>t.check(hs(n,o)),t.finite=()=>t;let r=t._zod.bag;t.minValue=Math.max(r.minimum??Number.NEGATIVE_INFINITY,r.exclusiveMinimum??Number.NEGATIVE_INFINITY)??null,t.maxValue=Math.min(r.maximum??Number.POSITIVE_INFINITY,r.exclusiveMaximum??Number.POSITIVE_INFINITY)??null,t.isInt=(r.format??"").includes("int")||Number.isSafeInteger(r.multipleOf??.5),t.isFinite=!0,t.format=r.format??null});function Q(t){return Lc(lm,t)}var jb=_("ZodNumberFormat",(t,e)=>{Wa.init(t,e),lm.init(t,e)});function am(t){return qc(jb,t)}var Nb=_("ZodBoolean",(t,e)=>{Ya.init(t,e),me.init(t,e)});function xe(t){return Uc(Nb,t)}var Cb=_("ZodNull",(t,e)=>{Qa.init(t,e),me.init(t,e)});function dm(t){return Fc(Cb,t)}var Zb=_("ZodUnknown",(t,e)=>{ec.init(t,e),me.init(t,e)});function le(){return Vc(Zb)}var Ab=_("ZodNever",(t,e)=>{tc.init(t,e),me.init(t,e)});function Mb(t){return Hc(Ab,t)}var Db=_("ZodArray",(t,e)=>{rc.init(t,e),me.init(t,e),t.element=e.element,t.min=(r,n)=>t.check(en(r,n)),t.nonempty=r=>t.check(en(1,r)),t.max=(r,n)=>t.check(gs(r,n)),t.length=(r,n)=>t.check(ys(r,n)),t.unwrap=()=>t.element});function B(t,e){return Bf(Db,t,e)}var pm=_("ZodObject",(t,e)=>{ls.init(t,e),me.init(t,e),K.defineLazy(t,"shape",()=>e.shape),t.keyof=()=>Le(Object.keys(t._zod.def.shape)),t.catchall=r=>t.clone({...t._zod.def,catchall:r}),t.passthrough=()=>t.clone({...t._zod.def,catchall:le()}),t.loose=()=>t.clone({...t._zod.def,catchall:le()}),t.strict=()=>t.clone({...t._zod.def,catchall:Mb()}),t.strip=()=>t.clone({...t._zod.def,catchall:void 0}),t.extend=r=>K.extend(t,r),t.merge=r=>K.merge(t,r),t.pick=r=>K.pick(t,r),t.omit=r=>K.omit(t,r),t.partial=(...r)=>K.partial(hm,t,r[0]),t.required=(...r)=>K.required(gm,t,r[0])});function P(t,e){let r={type:"object",get shape(){return K.assignProp(this,"shape",{...t}),this.shape},...K.normalizeParams(e)};return new pm(r)}function Re(t,e){return new pm({type:"object",get shape(){return K.assignProp(this,"shape",{...t}),this.shape},catchall:le(),...K.normalizeParams(e)})}var fm=_("ZodUnion",(t,e)=>{ds.init(t,e),me.init(t,e),t.options=e.options});function ie(t,e){return new fm({type:"union",options:t,...K.normalizeParams(e)})}var Lb=_("ZodDiscriminatedUnion",(t,e)=>{fm.init(t,e),nc.init(t,e)});function pu(t,e,r){return new Lb({type:"union",options:e,discriminator:t,...K.normalizeParams(r)})}var qb=_("ZodIntersection",(t,e)=>{oc.init(t,e),me.init(t,e)});function $s(t,e){return new qb({type:"intersection",left:t,right:e})}var Ub=_("ZodRecord",(t,e)=>{sc.init(t,e),me.init(t,e),t.keyType=e.keyType,t.valueType=e.valueType});function se(t,e,r){return new Ub({type:"record",keyType:t,valueType:e,...K.normalizeParams(r)})}var lu=_("ZodEnum",(t,e)=>{ic.init(t,e),me.init(t,e),t.enum=e.entries,t.options=Object.values(e.entries);let r=new Set(Object.keys(e.entries));t.extract=(n,o)=>{let s={};for(let i of n)if(r.has(i))s[i]=e.entries[i];else throw new Error(`Key ${i} not found in enum`);return new lu({...e,checks:[],...K.normalizeParams(o),entries:s})},t.exclude=(n,o)=>{let s={...e.entries};for(let i of n)if(r.has(i))delete s[i];else throw new Error(`Key ${i} not found in enum`);return new lu({...e,checks:[],...K.normalizeParams(o),entries:s})}});function Le(t,e){let r=Array.isArray(t)?Object.fromEntries(t.map(n=>[n,n])):t;return new lu({type:"enum",entries:r,...K.normalizeParams(e)})}var Fb=_("ZodLiteral",(t,e)=>{ac.init(t,e),me.init(t,e),t.values=new Set(e.values),Object.defineProperty(t,"value",{get(){if(e.values.length>1)throw new Error("This schema contains multiple valid literal values. Use `.values` instead.");return e.values[0]}})});function I(t,e){return new Fb({type:"literal",values:Array.isArray(t)?t:[t],...K.normalizeParams(e)})}var Vb=_("ZodTransform",(t,e)=>{cc.init(t,e),me.init(t,e),t._zod.parse=(r,n)=>{r.addIssue=s=>{if(typeof s=="string")r.issues.push(K.issue(s,r.value,e));else{let i=s;i.fatal&&(i.continue=!1),i.code??(i.code="custom"),i.input??(i.input=r.value),i.inst??(i.inst=t),i.continue??(i.continue=!0),r.issues.push(K.issue(i))}};let o=e.transform(r.value,r);return o instanceof Promise?o.then(s=>(r.value=s,r)):(r.value=o,r)}});function mm(t){return new Vb({type:"transform",transform:t})}var hm=_("ZodOptional",(t,e)=>{uc.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType});function de(t){return new hm({type:"optional",innerType:t})}var Hb=_("ZodNullable",(t,e)=>{lc.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType});function cm(t){return new Hb({type:"nullable",innerType:t})}var Kb=_("ZodDefault",(t,e)=>{dc.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType,t.removeDefault=t.unwrap});function Bb(t,e){return new Kb({type:"default",innerType:t,get defaultValue(){return typeof e=="function"?e():e}})}var Xb=_("ZodPrefault",(t,e)=>{pc.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType});function Jb(t,e){return new Xb({type:"prefault",innerType:t,get defaultValue(){return typeof e=="function"?e():e}})}var gm=_("ZodNonOptional",(t,e)=>{fc.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType});function Gb(t,e){return new gm({type:"nonoptional",innerType:t,...K.normalizeParams(e)})}var Wb=_("ZodCatch",(t,e)=>{mc.init(t,e),me.init(t,e),t.unwrap=()=>t._zod.def.innerType,t.removeCatch=t.unwrap});function Yb(t,e){return new Wb({type:"catch",innerType:t,catchValue:typeof e=="function"?e:()=>e})}var Qb=_("ZodPipe",(t,e)=>{hc.init(t,e),me.init(t,e),t.in=e.in,t.out=e.out});function du(t,e){return new Qb({type:"pipe",in:t,out:e})}var e$=_("ZodReadonly",(t,e)=>{gc.init(t,e),me.init(t,e)});function t$(t){return new e$({type:"readonly",innerType:t})}var ym=_("ZodCustom",(t,e)=>{yc.init(t,e),me.init(t,e)});function r$(t){let e=new be({check:"custom"});return e._zod.check=t,e}function _m(t,e){return ru(ym,t??(()=>!0),e)}function n$(t,e={}){return nu(ym,t,e)}function o$(t){let e=r$(r=>(r.addIssue=n=>{if(typeof n=="string")r.issues.push(K.issue(n,r.value,e._zod.def));else{let o=n;o.fatal&&(o.continue=!1),o.code??(o.code="custom"),o.input??(o.input=r.value),o.inst??(o.inst=e),o.continue??(o.continue=!e._zod.def.abort),r.issues.push(K.issue(o))}},t(r.value,r)));return e}function fu(t,e){return du(mm(t),e)}Be(qf());var hu="2025-11-25";var vm=[hu,"2025-06-18","2025-03-26","2024-11-05","2024-10-07"],Ht="io.modelcontextprotocol/related-task",Ss="2.0",ve=_m(t=>t!==null&&(typeof t=="object"||typeof t=="function")),xm=ie([y(),Q().int()]),wm=y(),VR=Re({ttl:Q().optional(),pollInterval:Q().optional()}),s$=P({ttl:Q().optional()}),i$=P({taskId:y()}),gu=Re({progressToken:xm.optional(),[Ht]:i$.optional()}),Je=P({_meta:gu.optional()}),Qn=Je.extend({task:s$.optional()}),bm=t=>Qn.safeParse(t).success,$e=P({method:y(),params:Je.loose().optional()}),Qe=P({_meta:gu.optional()}),et=P({method:y(),params:Qe.loose().optional()}),ke=Re({_meta:gu.optional()}),zs=ie([y(),Q().int()]),$m=P({jsonrpc:I(Ss),id:zs,...$e.shape}).strict(),yu=t=>$m.safeParse(t).success,km=P({jsonrpc:I(Ss),...et.shape}).strict(),Sm=t=>km.safeParse(t).success,_u=P({jsonrpc:I(Ss),id:zs,result:ke}).strict(),eo=t=>_u.safeParse(t).success;var j;(function(t){t[t.ConnectionClosed=-32e3]="ConnectionClosed",t[t.RequestTimeout=-32001]="RequestTimeout",t[t.ParseError=-32700]="ParseError",t[t.InvalidRequest=-32600]="InvalidRequest",t[t.MethodNotFound=-32601]="MethodNotFound",t[t.InvalidParams=-32602]="InvalidParams",t[t.InternalError=-32603]="InternalError",t[t.UrlElicitationRequired=-32042]="UrlElicitationRequired"})(j||(j={}));var vu=P({jsonrpc:I(Ss),id:zs.optional(),error:P({code:Q().int(),message:y(),data:le().optional()})}).strict();var zm=t=>vu.safeParse(t).success;var Tm=ie([$m,km,_u,vu]),HR=ie([_u,vu]),Ts=ke.strict(),a$=Qe.extend({requestId:zs.optional(),reason:y().optional()}),Ps=et.extend({method:I("notifications/cancelled"),params:a$}),c$=P({src:y(),mimeType:y().optional(),sizes:B(y()).optional(),theme:Le(["light","dark"]).optional()}),to=P({icons:B(c$).optional()}),rn=P({name:y(),title:y().optional()}),Pm=rn.extend({...rn.shape,...to.shape,version:y(),websiteUrl:y().optional(),description:y().optional()}),u$=$s(P({applyDefaults:xe().optional()}),se(y(),le())),l$=fu(t=>t&&typeof t=="object"&&!Array.isArray(t)&&Object.keys(t).length===0?{form:{}}:t,$s(P({form:u$.optional(),url:ve.optional()}),se(y(),le()).optional())),d$=Re({list:ve.optional(),cancel:ve.optional(),requests:Re({sampling:Re({createMessage:ve.optional()}).optional(),elicitation:Re({create:ve.optional()}).optional()}).optional()}),p$=Re({list:ve.optional(),cancel:ve.optional(),requests:Re({tools:Re({call:ve.optional()}).optional()}).optional()}),f$=P({experimental:se(y(),ve).optional(),sampling:P({context:ve.optional(),tools:ve.optional()}).optional(),elicitation:l$.optional(),roots:P({listChanged:xe().optional()}).optional(),tasks:d$.optional(),extensions:se(y(),ve).optional()}),m$=Je.extend({protocolVersion:y(),capabilities:f$,clientInfo:Pm}),xu=$e.extend({method:I("initialize"),params:m$});var h$=P({experimental:se(y(),ve).optional(),logging:ve.optional(),completions:ve.optional(),prompts:P({listChanged:xe().optional()}).optional(),resources:P({subscribe:xe().optional(),listChanged:xe().optional()}).optional(),tools:P({listChanged:xe().optional()}).optional(),tasks:p$.optional(),extensions:se(y(),ve).optional()}),g$=ke.extend({protocolVersion:y(),capabilities:h$,serverInfo:Pm,instructions:y().optional()}),wu=et.extend({method:I("notifications/initialized"),params:Qe.optional()});var Os=$e.extend({method:I("ping"),params:Je.optional()}),y$=P({progress:Q(),total:de(Q()),message:de(y())}),_$=P({...Qe.shape,...y$.shape,progressToken:xm}),Es=et.extend({method:I("notifications/progress"),params:_$}),v$=Je.extend({cursor:wm.optional()}),ro=$e.extend({params:v$.optional()}),no=ke.extend({nextCursor:wm.optional()}),x$=Le(["working","input_required","completed","failed","cancelled"]),oo=P({taskId:y(),status:x$,ttl:ie([Q(),dm()]),createdAt:y(),lastUpdatedAt:y(),pollInterval:de(Q()),statusMessage:de(y())}),nn=ke.extend({task:oo}),w$=Qe.merge(oo),so=et.extend({method:I("notifications/tasks/status"),params:w$}),Is=$e.extend({method:I("tasks/get"),params:Je.extend({taskId:y()})}),Rs=ke.merge(oo),js=$e.extend({method:I("tasks/result"),params:Je.extend({taskId:y()})}),KR=ke.loose(),Ns=ro.extend({method:I("tasks/list")}),Cs=no.extend({tasks:B(oo)}),Zs=$e.extend({method:I("tasks/cancel"),params:Je.extend({taskId:y()})}),Om=ke.merge(oo),Em=P({uri:y(),mimeType:de(y()),_meta:se(y(),le()).optional()}),Im=Em.extend({text:y()}),bu=y().refine(t=>{try{return atob(t),!0}catch{return!1}},{message:"Invalid Base64 string"}),Rm=Em.extend({blob:bu}),io=Le(["user","assistant"]),on=P({audience:B(io).optional(),priority:Q().min(0).max(1).optional(),lastModified:Wn.datetime({offset:!0}).optional()}),jm=P({...rn.shape,...to.shape,uri:y(),description:de(y()),mimeType:de(y()),size:de(Q()),annotations:on.optional(),_meta:de(Re({}))}),b$=P({...rn.shape,...to.shape,uriTemplate:y(),description:de(y()),mimeType:de(y()),annotations:on.optional(),_meta:de(Re({}))}),As=ro.extend({method:I("resources/list")}),$$=no.extend({resources:B(jm)}),Ms=ro.extend({method:I("resources/templates/list")}),k$=no.extend({resourceTemplates:B(b$)}),$u=Je.extend({uri:y()}),S$=$u,Ds=$e.extend({method:I("resources/read"),params:S$}),z$=ke.extend({contents:B(ie([Im,Rm]))}),T$=et.extend({method:I("notifications/resources/list_changed"),params:Qe.optional()}),P$=$u,O$=$e.extend({method:I("resources/subscribe"),params:P$}),E$=$u,I$=$e.extend({method:I("resources/unsubscribe"),params:E$}),R$=Qe.extend({uri:y()}),j$=et.extend({method:I("notifications/resources/updated"),params:R$}),N$=P({name:y(),description:de(y()),required:de(xe())}),C$=P({...rn.shape,...to.shape,description:de(y()),arguments:de(B(N$)),_meta:de(Re({}))}),Ls=ro.extend({method:I("prompts/list")}),Z$=no.extend({prompts:B(C$)}),A$=Je.extend({name:y(),arguments:se(y(),y()).optional()}),qs=$e.extend({method:I("prompts/get"),params:A$}),ku=P({type:I("text"),text:y(),annotations:on.optional(),_meta:se(y(),le()).optional()}),Su=P({type:I("image"),data:bu,mimeType:y(),annotations:on.optional(),_meta:se(y(),le()).optional()}),zu=P({type:I("audio"),data:bu,mimeType:y(),annotations:on.optional(),_meta:se(y(),le()).optional()}),M$=P({type:I("tool_use"),name:y(),id:y(),input:se(y(),le()),_meta:se(y(),le()).optional()}),D$=P({type:I("resource"),resource:ie([Im,Rm]),annotations:on.optional(),_meta:se(y(),le()).optional()}),L$=jm.extend({type:I("resource_link")}),Tu=ie([ku,Su,zu,L$,D$]),q$=P({role:io,content:Tu}),U$=ke.extend({description:y().optional(),messages:B(q$)}),F$=et.extend({method:I("notifications/prompts/list_changed"),params:Qe.optional()}),V$=P({title:y().optional(),readOnlyHint:xe().optional(),destructiveHint:xe().optional(),idempotentHint:xe().optional(),openWorldHint:xe().optional()}),H$=P({taskSupport:Le(["required","optional","forbidden"]).optional()}),Nm=P({...rn.shape,...to.shape,description:y().optional(),inputSchema:P({type:I("object"),properties:se(y(),ve).optional(),required:B(y()).optional()}).catchall(le()),outputSchema:P({type:I("object"),properties:se(y(),ve).optional(),required:B(y()).optional()}).catchall(le()).optional(),annotations:V$.optional(),execution:H$.optional(),_meta:se(y(),le()).optional()}),Us=ro.extend({method:I("tools/list")}),K$=no.extend({tools:B(Nm)}),Fs=ke.extend({content:B(Tu).default([]),structuredContent:se(y(),le()).optional(),isError:xe().optional()}),BR=Fs.or(ke.extend({toolResult:le()})),B$=Qn.extend({name:y(),arguments:se(y(),le()).optional()}),sn=$e.extend({method:I("tools/call"),params:B$}),X$=et.extend({method:I("notifications/tools/list_changed"),params:Qe.optional()}),XR=P({autoRefresh:xe().default(!0),debounceMs:Q().int().nonnegative().default(300)}),ao=Le(["debug","info","notice","warning","error","critical","alert","emergency"]),J$=Je.extend({level:ao}),Pu=$e.extend({method:I("logging/setLevel"),params:J$}),G$=Qe.extend({level:ao,logger:y().optional(),data:le()}),W$=et.extend({method:I("notifications/message"),params:G$}),Y$=P({name:y().optional()}),Q$=P({hints:B(Y$).optional(),costPriority:Q().min(0).max(1).optional(),speedPriority:Q().min(0).max(1).optional(),intelligencePriority:Q().min(0).max(1).optional()}),e0=P({mode:Le(["auto","required","none"]).optional()}),t0=P({type:I("tool_result"),toolUseId:y().describe("The unique identifier for the corresponding tool call."),content:B(Tu).default([]),structuredContent:P({}).loose().optional(),isError:xe().optional(),_meta:se(y(),le()).optional()}),r0=pu("type",[ku,Su,zu]),ks=pu("type",[ku,Su,zu,M$,t0]),n0=P({role:io,content:ie([ks,B(ks)]),_meta:se(y(),le()).optional()}),o0=Qn.extend({messages:B(n0),modelPreferences:Q$.optional(),systemPrompt:y().optional(),includeContext:Le(["none","thisServer","allServers"]).optional(),temperature:Q().optional(),maxTokens:Q().int(),stopSequences:B(y()).optional(),metadata:ve.optional(),tools:B(Nm).optional(),toolChoice:e0.optional()}),s0=$e.extend({method:I("sampling/createMessage"),params:o0}),co=ke.extend({model:y(),stopReason:de(Le(["endTurn","stopSequence","maxTokens"]).or(y())),role:io,content:r0}),Ou=ke.extend({model:y(),stopReason:de(Le(["endTurn","stopSequence","maxTokens","toolUse"]).or(y())),role:io,content:ie([ks,B(ks)])}),i0=P({type:I("boolean"),title:y().optional(),description:y().optional(),default:xe().optional()}),a0=P({type:I("string"),title:y().optional(),description:y().optional(),minLength:Q().optional(),maxLength:Q().optional(),format:Le(["email","uri","date","date-time"]).optional(),default:y().optional()}),c0=P({type:Le(["number","integer"]),title:y().optional(),description:y().optional(),minimum:Q().optional(),maximum:Q().optional(),default:Q().optional()}),u0=P({type:I("string"),title:y().optional(),description:y().optional(),enum:B(y()),default:y().optional()}),l0=P({type:I("string"),title:y().optional(),description:y().optional(),oneOf:B(P({const:y(),title:y()})),default:y().optional()}),d0=P({type:I("string"),title:y().optional(),description:y().optional(),enum:B(y()),enumNames:B(y()).optional(),default:y().optional()}),p0=ie([u0,l0]),f0=P({type:I("array"),title:y().optional(),description:y().optional(),minItems:Q().optional(),maxItems:Q().optional(),items:P({type:I("string"),enum:B(y())}),default:B(y()).optional()}),m0=P({type:I("array"),title:y().optional(),description:y().optional(),minItems:Q().optional(),maxItems:Q().optional(),items:P({anyOf:B(P({const:y(),title:y()}))}),default:B(y()).optional()}),h0=ie([f0,m0]),g0=ie([d0,p0,h0]),y0=ie([g0,i0,a0,c0]),_0=Qn.extend({mode:I("form").optional(),message:y(),requestedSchema:P({type:I("object"),properties:se(y(),y0),required:B(y()).optional()})}),v0=Qn.extend({mode:I("url"),message:y(),elicitationId:y(),url:y().url()}),x0=ie([_0,v0]),w0=$e.extend({method:I("elicitation/create"),params:x0}),b0=Qe.extend({elicitationId:y()}),$0=et.extend({method:I("notifications/elicitation/complete"),params:b0}),an=ke.extend({action:Le(["accept","decline","cancel"]),content:fu(t=>t===null?void 0:t,se(y(),ie([y(),Q(),xe(),B(y())])).optional())}),k0=P({type:I("ref/resource"),uri:y()});var S0=P({type:I("ref/prompt"),name:y()}),z0=Je.extend({ref:ie([S0,k0]),argument:P({name:y(),value:y()}),context:P({arguments:se(y(),y()).optional()}).optional()}),Vs=$e.extend({method:I("completion/complete"),params:z0});function Cm(t){if(t.params.ref.type!=="ref/prompt")throw new TypeError(`Expected CompleteRequestPrompt, but got ${t.params.ref.type}`)}function Zm(t){if(t.params.ref.type!=="ref/resource")throw new TypeError(`Expected CompleteRequestResourceTemplate, but got ${t.params.ref.type}`)}var T0=ke.extend({completion:Re({values:B(y()).max(100),total:de(Q().int()),hasMore:de(xe())})}),P0=P({uri:y().startsWith("file://"),name:y().optional(),_meta:se(y(),le()).optional()}),O0=$e.extend({method:I("roots/list"),params:Je.optional()}),Eu=ke.extend({roots:B(P0)}),E0=et.extend({method:I("notifications/roots/list_changed"),params:Qe.optional()}),JR=ie([Os,xu,Vs,Pu,qs,Ls,As,Ms,Ds,O$,I$,sn,Us,Is,js,Ns,Zs]),GR=ie([Ps,Es,wu,E0,so]),WR=ie([Ts,co,Ou,an,Eu,Rs,Cs,nn]),YR=ie([Os,s0,w0,O0,Is,js,Ns,Zs]),QR=ie([Ps,Es,W$,j$,T$,X$,F$,so,$0]),e1=ie([Ts,g$,T0,U$,Z$,$$,k$,z$,Fs,K$,Rs,Cs,nn]),E=class t extends Error{constructor(e,r,n){super(`MCP error ${e}: ${r}`),this.code=e,this.data=n,this.name="McpError"}static fromError(e,r,n){if(e===j.UrlElicitationRequired&&n){let o=n;if(o.elicitations)return new mu(o.elicitations,r)}return new t(e,r,n)}},mu=class extends E{constructor(e,r=`URL elicitation${e.length>1?"s":""} required`){super(j.UrlElicitationRequired,r,{elicitations:e})}get elicitations(){return this.data?.elicitations??[]}};function Kt(t){return t==="completed"||t==="failed"||t==="cancelled"}var Mm=Symbol("Let zodToJsonSchema decide on which parser to use");var Am={name:void 0,$refStrategy:"root",basePath:["#"],effectStrategy:"input",pipeStrategy:"all",dateStrategy:"format:date-time",mapStrategy:"entries",removeAdditionalStrategy:"passthrough",allowedAdditionalProperties:!0,rejectedAdditionalProperties:!1,definitionPath:"definitions",target:"jsonSchema7",strictUnions:!1,definitions:{},errorMessages:!1,markdownDescription:!1,patternStrategy:"escape",applyRegexFlags:!1,emailStrategy:"format:email",base64Strategy:"contentEncoding:base64",nameStrategy:"ref",openAiAnyTypeName:"OpenAiAnyType"},Dm=t=>typeof t=="string"?{...Am,name:t}:{...Am,...t};var Lm=t=>{let e=Dm(t),r=e.name!==void 0?[...e.basePath,e.definitionPath,e.name]:e.basePath;return{...e,flags:{hasReferencedOpenAiAnyType:!1},currentPath:r,propertyPath:void 0,seen:new Map(Object.entries(e.definitions).map(([n,o])=>[o._def,{def:o._def,path:[...e.basePath,e.definitionPath,n],jsonSchema:void 0}]))}};function Iu(t,e,r,n){n?.errorMessages&&r&&(t.errorMessage={...t.errorMessage,[e]:r})}function X(t,e,r,n,o){t[e]=r,Iu(t,e,n,o)}var Hs=(t,e)=>{let r=0;for(;r<t.length&&r<e.length&&t[r]===e[r];r++);return[(t.length-r).toString(),...e.slice(r)].join("/")};function pe(t){if(t.target!=="openAi")return{};let e=[...t.basePath,t.definitionPath,t.openAiAnyTypeName];return t.flags.hasReferencedOpenAiAnyType=!0,{$ref:t.$refStrategy==="relative"?Hs(e,t.currentPath):e.join("/")}}function qm(t,e){let r={type:"array"};return t.type?._def&&t.type?._def?.typeName!==$.ZodAny&&(r.items=A(t.type._def,{...e,currentPath:[...e.currentPath,"items"]})),t.minLength&&X(r,"minItems",t.minLength.value,t.minLength.message,e),t.maxLength&&X(r,"maxItems",t.maxLength.value,t.maxLength.message,e),t.exactLength&&(X(r,"minItems",t.exactLength.value,t.exactLength.message,e),X(r,"maxItems",t.exactLength.value,t.exactLength.message,e)),r}function Um(t,e){let r={type:"integer",format:"int64"};if(!t.checks)return r;for(let n of t.checks)switch(n.kind){case"min":e.target==="jsonSchema7"?n.inclusive?X(r,"minimum",n.value,n.message,e):X(r,"exclusiveMinimum",n.value,n.message,e):(n.inclusive||(r.exclusiveMinimum=!0),X(r,"minimum",n.value,n.message,e));break;case"max":e.target==="jsonSchema7"?n.inclusive?X(r,"maximum",n.value,n.message,e):X(r,"exclusiveMaximum",n.value,n.message,e):(n.inclusive||(r.exclusiveMaximum=!0),X(r,"maximum",n.value,n.message,e));break;case"multipleOf":X(r,"multipleOf",n.value,n.message,e);break}return r}function Fm(){return{type:"boolean"}}function Ks(t,e){return A(t.type._def,e)}var Vm=(t,e)=>A(t.innerType._def,e);function Ru(t,e,r){let n=r??e.dateStrategy;if(Array.isArray(n))return{anyOf:n.map((o,s)=>Ru(t,e,o))};switch(n){case"string":case"format:date-time":return{type:"string",format:"date-time"};case"format:date":return{type:"string",format:"date"};case"integer":return I0(t,e)}}var I0=(t,e)=>{let r={type:"integer",format:"unix-time"};if(e.target==="openApi3")return r;for(let n of t.checks)switch(n.kind){case"min":X(r,"minimum",n.value,n.message,e);break;case"max":X(r,"maximum",n.value,n.message,e);break}return r};function Hm(t,e){return{...A(t.innerType._def,e),default:t.defaultValue()}}function Km(t,e){return e.effectStrategy==="input"?A(t.schema._def,e):pe(e)}function Bm(t){return{type:"string",enum:Array.from(t.values)}}var R0=t=>"type"in t&&t.type==="string"?!1:"allOf"in t;function Xm(t,e){let r=[A(t.left._def,{...e,currentPath:[...e.currentPath,"allOf","0"]}),A(t.right._def,{...e,currentPath:[...e.currentPath,"allOf","1"]})].filter(s=>!!s),n=e.target==="jsonSchema2019-09"?{unevaluatedProperties:!1}:void 0,o=[];return r.forEach(s=>{if(R0(s))o.push(...s.allOf),s.unevaluatedProperties===void 0&&(n=void 0);else{let i=s;if("additionalProperties"in s&&s.additionalProperties===!1){let{additionalProperties:a,...c}=s;i=c}else n=void 0;o.push(i)}}),o.length?{allOf:o,...n}:void 0}function Jm(t,e){let r=typeof t.value;return r!=="bigint"&&r!=="number"&&r!=="boolean"&&r!=="string"?{type:Array.isArray(t.value)?"array":"object"}:e.target==="openApi3"?{type:r==="bigint"?"integer":r,enum:[t.value]}:{type:r==="bigint"?"integer":r,const:t.value}}var ju,at={cuid:/^[cC][^\s-]{8,}$/,cuid2:/^[0-9a-z]+$/,ulid:/^[0-9A-HJKMNP-TV-Z]{26}$/,email:/^(?!\.)(?!.*\.\.)([a-zA-Z0-9_'+\-\.]*)[a-zA-Z0-9_+-]@([a-zA-Z0-9][a-zA-Z0-9\-]*\.)+[a-zA-Z]{2,}$/,emoji:()=>(ju===void 0&&(ju=RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),ju),uuid:/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/,ipv4:/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,ipv4Cidr:/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/,ipv6:/^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/,ipv6Cidr:/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,base64:/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,base64url:/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,nanoid:/^[a-zA-Z0-9_-]{21}$/,jwt:/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/};function Bs(t,e){let r={type:"string"};if(t.checks)for(let n of t.checks)switch(n.kind){case"min":X(r,"minLength",typeof r.minLength=="number"?Math.max(r.minLength,n.value):n.value,n.message,e);break;case"max":X(r,"maxLength",typeof r.maxLength=="number"?Math.min(r.maxLength,n.value):n.value,n.message,e);break;case"email":switch(e.emailStrategy){case"format:email":ct(r,"email",n.message,e);break;case"format:idn-email":ct(r,"idn-email",n.message,e);break;case"pattern:zod":je(r,at.email,n.message,e);break}break;case"url":ct(r,"uri",n.message,e);break;case"uuid":ct(r,"uuid",n.message,e);break;case"regex":je(r,n.regex,n.message,e);break;case"cuid":je(r,at.cuid,n.message,e);break;case"cuid2":je(r,at.cuid2,n.message,e);break;case"startsWith":je(r,RegExp(`^${Nu(n.value,e)}`),n.message,e);break;case"endsWith":je(r,RegExp(`${Nu(n.value,e)}$`),n.message,e);break;case"datetime":ct(r,"date-time",n.message,e);break;case"date":ct(r,"date",n.message,e);break;case"time":ct(r,"time",n.message,e);break;case"duration":ct(r,"duration",n.message,e);break;case"length":X(r,"minLength",typeof r.minLength=="number"?Math.max(r.minLength,n.value):n.value,n.message,e),X(r,"maxLength",typeof r.maxLength=="number"?Math.min(r.maxLength,n.value):n.value,n.message,e);break;case"includes":{je(r,RegExp(Nu(n.value,e)),n.message,e);break}case"ip":{n.version!=="v6"&&ct(r,"ipv4",n.message,e),n.version!=="v4"&&ct(r,"ipv6",n.message,e);break}case"base64url":je(r,at.base64url,n.message,e);break;case"jwt":je(r,at.jwt,n.message,e);break;case"cidr":{n.version!=="v6"&&je(r,at.ipv4Cidr,n.message,e),n.version!=="v4"&&je(r,at.ipv6Cidr,n.message,e);break}case"emoji":je(r,at.emoji(),n.message,e);break;case"ulid":{je(r,at.ulid,n.message,e);break}case"base64":{switch(e.base64Strategy){case"format:binary":{ct(r,"binary",n.message,e);break}case"contentEncoding:base64":{X(r,"contentEncoding","base64",n.message,e);break}case"pattern:zod":{je(r,at.base64,n.message,e);break}}break}case"nanoid":je(r,at.nanoid,n.message,e);case"toLowerCase":case"toUpperCase":case"trim":break;default:}return r}function Nu(t,e){return e.patternStrategy==="escape"?N0(t):t}var j0=new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");function N0(t){let e="";for(let r=0;r<t.length;r++)j0.has(t[r])||(e+="\\"),e+=t[r];return e}function ct(t,e,r,n){t.format||t.anyOf?.some(o=>o.format)?(t.anyOf||(t.anyOf=[]),t.format&&(t.anyOf.push({format:t.format,...t.errorMessage&&n.errorMessages&&{errorMessage:{format:t.errorMessage.format}}}),delete t.format,t.errorMessage&&(delete t.errorMessage.format,Object.keys(t.errorMessage).length===0&&delete t.errorMessage)),t.anyOf.push({format:e,...r&&n.errorMessages&&{errorMessage:{format:r}}})):X(t,"format",e,r,n)}function je(t,e,r,n){t.pattern||t.allOf?.some(o=>o.pattern)?(t.allOf||(t.allOf=[]),t.pattern&&(t.allOf.push({pattern:t.pattern,...t.errorMessage&&n.errorMessages&&{errorMessage:{pattern:t.errorMessage.pattern}}}),delete t.pattern,t.errorMessage&&(delete t.errorMessage.pattern,Object.keys(t.errorMessage).length===0&&delete t.errorMessage)),t.allOf.push({pattern:Gm(e,n),...r&&n.errorMessages&&{errorMessage:{pattern:r}}})):X(t,"pattern",Gm(e,n),r,n)}function Gm(t,e){if(!e.applyRegexFlags||!t.flags)return t.source;let r={i:t.flags.includes("i"),m:t.flags.includes("m"),s:t.flags.includes("s")},n=r.i?t.source.toLowerCase():t.source,o="",s=!1,i=!1,a=!1;for(let c=0;c<n.length;c++){if(s){o+=n[c],s=!1;continue}if(r.i){if(i){if(n[c].match(/[a-z]/)){a?(o+=n[c],o+=`${n[c-2]}-${n[c]}`.toUpperCase(),a=!1):n[c+1]==="-"&&n[c+2]?.match(/[a-z]/)?(o+=n[c],a=!0):o+=`${n[c]}${n[c].toUpperCase()}`;continue}}else if(n[c].match(/[a-z]/)){o+=`[${n[c]}${n[c].toUpperCase()}]`;continue}}if(r.m){if(n[c]==="^"){o+=`(^|(?<=[\r
|
|
136
153
|
]))`;continue}else if(n[c]==="$"){o+=`($|(?=[\r
|
|
137
154
|
]))`;continue}}if(r.s&&n[c]==="."){o+=i?`${n[c]}\r
|
|
138
155
|
`:`[${n[c]}\r
|
|
139
|
-
]`;continue}o+=n[c],n[c]==="\\"?s=!0:i&&n[c]==="]"?i=!1:!i&&n[c]==="["&&(i=!0)}try{new RegExp(o)}catch{return console.warn(`Could not convert regex pattern at ${e.currentPath.join("/")} to a flag-independent form! Falling back to the flag-ignorant source`),t.source}return o}function Cs(t,e){if(e.target==="openAi"&&console.warn("Warning: OpenAI may not support records in schemas! Try an array of key-value pairs instead."),e.target==="openApi3"&&t.keyType?._def.typeName===$.ZodEnum)return{type:"object",required:t.keyType._def.values,properties:t.keyType._def.values.reduce((n,o)=>({...n,[o]:A(t.valueType._def,{...e,currentPath:[...e.currentPath,"properties",o]})??pe(e)}),{}),additionalProperties:e.rejectedAdditionalProperties};let r={type:"object",additionalProperties:A(t.valueType._def,{...e,currentPath:[...e.currentPath,"additionalProperties"]})??e.allowedAdditionalProperties};if(e.target==="openApi3")return r;if(t.keyType?._def.typeName===$.ZodString&&t.keyType._def.checks?.length){let{type:n,...o}=Ns(t.keyType._def,e);return{...r,propertyNames:o}}else{if(t.keyType?._def.typeName===$.ZodEnum)return{...r,propertyNames:{enum:t.keyType._def.values}};if(t.keyType?._def.typeName===$.ZodBranded&&t.keyType._def.type._def.typeName===$.ZodString&&t.keyType._def.type._def.checks?.length){let{type:n,...o}=js(t.keyType._def,e);return{...r,propertyNames:o}}}return r}function wm(t,e){if(e.mapStrategy==="record")return Cs(t,e);let r=A(t.keyType._def,{...e,currentPath:[...e.currentPath,"items","items","0"]})||pe(e),n=A(t.valueType._def,{...e,currentPath:[...e.currentPath,"items","items","1"]})||pe(e);return{type:"array",maxItems:125,items:{type:"array",items:[r,n],minItems:2,maxItems:2}}}function $m(t){let e=t.values,n=Object.keys(t.values).filter(s=>typeof e[e[s]]!="number").map(s=>e[s]),o=Array.from(new Set(n.map(s=>typeof s)));return{type:o.length===1?o[0]==="string"?"string":"number":["string","number"],enum:n}}function km(t){return t.target==="openAi"?void 0:{not:pe({...t,currentPath:[...t.currentPath,"not"]})}}function Sm(t){return t.target==="openApi3"?{enum:["null"],nullable:!0}:{type:"null"}}var to={ZodString:"string",ZodNumber:"number",ZodBigInt:"integer",ZodBoolean:"boolean",ZodNull:"null"};function Tm(t,e){if(e.target==="openApi3")return zm(t,e);let r=t.options instanceof Map?Array.from(t.options.values()):t.options;if(r.every(n=>n._def.typeName in to&&(!n._def.checks||!n._def.checks.length))){let n=r.reduce((o,s)=>{let i=to[s._def.typeName];return i&&!o.includes(i)?[...o,i]:o},[]);return{type:n.length>1?n:n[0]}}else if(r.every(n=>n._def.typeName==="ZodLiteral"&&!n.description)){let n=r.reduce((o,s)=>{let i=typeof s._def.value;switch(i){case"string":case"number":case"boolean":return[...o,i];case"bigint":return[...o,"integer"];case"object":if(s._def.value===null)return[...o,"null"];default:return o}},[]);if(n.length===r.length){let o=n.filter((s,i,a)=>a.indexOf(s)===i);return{type:o.length>1?o:o[0],enum:r.reduce((s,i)=>s.includes(i._def.value)?s:[...s,i._def.value],[])}}}else if(r.every(n=>n._def.typeName==="ZodEnum"))return{type:"string",enum:r.reduce((n,o)=>[...n,...o._def.values.filter(s=>!n.includes(s))],[])};return zm(t,e)}var zm=(t,e)=>{let r=(t.options instanceof Map?Array.from(t.options.values()):t.options).map((n,o)=>A(n._def,{...e,currentPath:[...e.currentPath,"anyOf",`${o}`]})).filter(n=>!!n&&(!e.strictUnions||typeof n=="object"&&Object.keys(n).length>0));return r.length?{anyOf:r}:void 0};function Pm(t,e){if(["ZodString","ZodNumber","ZodBigInt","ZodBoolean","ZodNull"].includes(t.innerType._def.typeName)&&(!t.innerType._def.checks||!t.innerType._def.checks.length))return e.target==="openApi3"?{type:to[t.innerType._def.typeName],nullable:!0}:{type:[to[t.innerType._def.typeName],"null"]};if(e.target==="openApi3"){let n=A(t.innerType._def,{...e,currentPath:[...e.currentPath]});return n&&"$ref"in n?{allOf:[n],nullable:!0}:n&&{...n,nullable:!0}}let r=A(t.innerType._def,{...e,currentPath:[...e.currentPath,"anyOf","0"]});return r&&{anyOf:[r,{type:"null"}]}}function Em(t,e){let r={type:"number"};if(!t.checks)return r;for(let n of t.checks)switch(n.kind){case"int":r.type="integer",pu(r,"type",n.message,e);break;case"min":e.target==="jsonSchema7"?n.inclusive?J(r,"minimum",n.value,n.message,e):J(r,"exclusiveMinimum",n.value,n.message,e):(n.inclusive||(r.exclusiveMinimum=!0),J(r,"minimum",n.value,n.message,e));break;case"max":e.target==="jsonSchema7"?n.inclusive?J(r,"maximum",n.value,n.message,e):J(r,"exclusiveMaximum",n.value,n.message,e):(n.inclusive||(r.exclusiveMaximum=!0),J(r,"maximum",n.value,n.message,e));break;case"multipleOf":J(r,"multipleOf",n.value,n.message,e);break}return r}function Om(t,e){let r=e.target==="openAi",n={type:"object",properties:{}},o=[],s=t.shape();for(let a in s){let c=s[a];if(c===void 0||c._def===void 0)continue;let u=n0(c);u&&r&&(c._def.typeName==="ZodOptional"&&(c=c._def.innerType),c.isNullable()||(c=c.nullable()),u=!1);let l=A(c._def,{...e,currentPath:[...e.currentPath,"properties",a],propertyPath:[...e.currentPath,"properties",a]});l!==void 0&&(n.properties[a]=l,u||o.push(a))}o.length&&(n.required=o);let i=r0(t,e);return i!==void 0&&(n.additionalProperties=i),n}function r0(t,e){if(t.catchall._def.typeName!=="ZodNever")return A(t.catchall._def,{...e,currentPath:[...e.currentPath,"additionalProperties"]});switch(t.unknownKeys){case"passthrough":return e.allowedAdditionalProperties;case"strict":return e.rejectedAdditionalProperties;case"strip":return e.removeAdditionalStrategy==="strict"?e.allowedAdditionalProperties:e.rejectedAdditionalProperties}}function n0(t){try{return t.isOptional()}catch{return!0}}var Im=(t,e)=>{if(e.currentPath.toString()===e.propertyPath?.toString())return A(t.innerType._def,e);let r=A(t.innerType._def,{...e,currentPath:[...e.currentPath,"anyOf","1"]});return r?{anyOf:[{not:pe(e)},r]}:pe(e)};var Rm=(t,e)=>{if(e.pipeStrategy==="input")return A(t.in._def,e);if(e.pipeStrategy==="output")return A(t.out._def,e);let r=A(t.in._def,{...e,currentPath:[...e.currentPath,"allOf","0"]}),n=A(t.out._def,{...e,currentPath:[...e.currentPath,"allOf",r?"1":"0"]});return{allOf:[r,n].filter(o=>o!==void 0)}};function jm(t,e){return A(t.type._def,e)}function Nm(t,e){let n={type:"array",uniqueItems:!0,items:A(t.valueType._def,{...e,currentPath:[...e.currentPath,"items"]})};return t.minSize&&J(n,"minItems",t.minSize.value,t.minSize.message,e),t.maxSize&&J(n,"maxItems",t.maxSize.value,t.maxSize.message,e),n}function Cm(t,e){return t.rest?{type:"array",minItems:t.items.length,items:t.items.map((r,n)=>A(r._def,{...e,currentPath:[...e.currentPath,"items",`${n}`]})).reduce((r,n)=>n===void 0?r:[...r,n],[]),additionalItems:A(t.rest._def,{...e,currentPath:[...e.currentPath,"additionalItems"]})}:{type:"array",minItems:t.items.length,maxItems:t.items.length,items:t.items.map((r,n)=>A(r._def,{...e,currentPath:[...e.currentPath,"items",`${n}`]})).reduce((r,n)=>n===void 0?r:[...r,n],[])}}function Zm(t){return{not:pe(t)}}function Am(t){return pe(t)}var Mm=(t,e)=>A(t.innerType._def,e);var Dm=(t,e,r)=>{switch(e){case $.ZodString:return Ns(t,r);case $.ZodNumber:return Em(t,r);case $.ZodObject:return Om(t,r);case $.ZodBigInt:return fm(t,r);case $.ZodBoolean:return mm();case $.ZodDate:return fu(t,r);case $.ZodUndefined:return Zm(r);case $.ZodNull:return Sm(r);case $.ZodArray:return pm(t,r);case $.ZodUnion:case $.ZodDiscriminatedUnion:return Tm(t,r);case $.ZodIntersection:return vm(t,r);case $.ZodTuple:return Cm(t,r);case $.ZodRecord:return Cs(t,r);case $.ZodLiteral:return xm(t,r);case $.ZodEnum:return _m(t);case $.ZodNativeEnum:return $m(t);case $.ZodNullable:return Pm(t,r);case $.ZodOptional:return Im(t,r);case $.ZodMap:return wm(t,r);case $.ZodSet:return Nm(t,r);case $.ZodLazy:return()=>t.getter()._def;case $.ZodPromise:return jm(t,r);case $.ZodNaN:case $.ZodNever:return km(r);case $.ZodEffects:return ym(t,r);case $.ZodAny:return pe(r);case $.ZodUnknown:return Am(r);case $.ZodDefault:return gm(t,r);case $.ZodBranded:return js(t,r);case $.ZodReadonly:return Mm(t,r);case $.ZodCatch:return hm(t,r);case $.ZodPipeline:return Rm(t,r);case $.ZodFunction:case $.ZodVoid:case $.ZodSymbol:return;default:return(n=>{})(e)}};function A(t,e,r=!1){let n=e.seen.get(t);if(e.override){let a=e.override?.(t,e,n,r);if(a!==um)return a}if(n&&!r){let a=o0(n,e);if(a!==void 0)return a}let o={def:t,path:e.currentPath,jsonSchema:void 0};e.seen.set(t,o);let s=Dm(t,t.typeName,e),i=typeof s=="function"?A(s(),e):s;if(i&&s0(t,e,i),e.postProcess){let a=e.postProcess(i,t,e);return o.jsonSchema=i,a}return o.jsonSchema=i,i}var o0=(t,e)=>{switch(e.$refStrategy){case"root":return{$ref:t.path.join("/")};case"relative":return{$ref:Rs(e.currentPath,t.path)};case"none":case"seen":return t.path.length<e.currentPath.length&&t.path.every((r,n)=>e.currentPath[n]===r)?(console.warn(`Recursive reference detected at ${e.currentPath.join("/")}! Defaulting to any`),pe(e)):e.$refStrategy==="seen"?pe(e):void 0}},s0=(t,e,r)=>(t.description&&(r.description=t.description,e.markdownDescription&&(r.markdownDescription=t.description)),r);var gu=(t,e)=>{let r=dm(e),n=typeof e=="object"&&e.definitions?Object.entries(e.definitions).reduce((c,[u,l])=>({...c,[u]:A(l._def,{...r,currentPath:[...r.basePath,r.definitionPath,u]},!0)??pe(r)}),{}):void 0,o=typeof e=="string"?e:e?.nameStrategy==="title"?void 0:e?.name,s=A(t._def,o===void 0?r:{...r,currentPath:[...r.basePath,r.definitionPath,o]},!1)??pe(r),i=typeof e=="object"&&e.name!==void 0&&e.nameStrategy==="title"?e.name:void 0;i!==void 0&&(s.title=i),r.flags.hasReferencedOpenAiAnyType&&(n||(n={}),n[r.openAiAnyTypeName]||(n[r.openAiAnyTypeName]={type:["string","number","integer","boolean","array","null"],items:{$ref:r.$refStrategy==="relative"?"1":[...r.basePath,r.definitionPath,r.openAiAnyTypeName].join("/")}}));let a=o===void 0?n?{...s,[r.definitionPath]:n}:s:{$ref:[...r.$refStrategy==="relative"?[]:r.basePath,r.definitionPath,o].join("/"),[r.definitionPath]:{...n,[o]:s}};return r.target==="jsonSchema7"?a.$schema="http://json-schema.org/draft-07/schema#":(r.target==="jsonSchema2019-09"||r.target==="openAi")&&(a.$schema="https://json-schema.org/draft/2019-09/schema#"),r.target==="openAi"&&("anyOf"in a||"oneOf"in a||"allOf"in a||"type"in a&&Array.isArray(a.type))&&console.warn("Warning: OpenAI may not support schemas with unions as roots! Try wrapping it in an object property."),a};function i0(t){return!t||t==="jsonSchema7"||t==="draft-7"?"draft-7":t==="jsonSchema2019-09"||t==="draft-2020-12"?"draft-2020-12":"draft-7"}function yu(t,e){return We(t)?Dc(t,{target:i0(e?.target),io:e?.pipeStrategy??"input"}):gu(t,{strictUnions:e?.strictUnions??!0,pipeStrategy:e?.pipeStrategy??"input"})}function _u(t){let r=qt(t)?.method;if(!r)throw new Error("Schema is missing a method literal");let n=cs(r);if(typeof n!="string")throw new Error("Schema method literal must be a string");return n}function vu(t,e){let r=Lt(t,e);if(!r.success)throw r.error;return r.data}var a0=6e4,Zs=class{constructor(e){this._options=e,this._requestMessageId=0,this._requestHandlers=new Map,this._requestHandlerAbortControllers=new Map,this._notificationHandlers=new Map,this._responseHandlers=new Map,this._progressHandlers=new Map,this._timeoutInfo=new Map,this._pendingDebouncedNotifications=new Set,this._taskProgressTokens=new Map,this._requestResolvers=new Map,this.setNotificationHandler(hs,r=>{this._oncancel(r)}),this.setNotificationHandler(ys,r=>{this._onprogress(r)}),this.setRequestHandler(gs,r=>({})),this._taskStore=e?.taskStore,this._taskMessageQueue=e?.taskMessageQueue,this._taskStore&&(this.setRequestHandler(_s,async(r,n)=>{let o=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!o)throw new O(j.InvalidParams,"Failed to retrieve task: Task not found");return{...o}}),this.setRequestHandler(xs,async(r,n)=>{let o=async()=>{let s=r.params.taskId;if(this._taskMessageQueue){let a;for(;a=await this._taskMessageQueue.dequeue(s,n.sessionId);){if(a.type==="response"||a.type==="error"){let c=a.message,u=c.id,l=this._requestResolvers.get(u);if(l)if(this._requestResolvers.delete(u),a.type==="response")l(c);else{let d=c,m=new O(d.error.code,d.error.message,d.error.data);l(m)}else{let d=a.type==="response"?"Response":"Error";this._onerror(new Error(`${d} handler missing for request ${u}`))}continue}await this._transport?.send(a.message,{relatedRequestId:n.requestId})}}let i=await this._taskStore.getTask(s,n.sessionId);if(!i)throw new O(j.InvalidParams,`Task not found: ${s}`);if(!Ft(i.status))return await this._waitForTaskUpdate(s,n.signal),await o();if(Ft(i.status)){let a=await this._taskStore.getTaskResult(s,n.sessionId);return this._clearTaskQueue(s),{...a,_meta:{...a._meta,[Ut]:{taskId:s}}}}return await o()};return await o()}),this.setRequestHandler(bs,async(r,n)=>{try{let{tasks:o,nextCursor:s}=await this._taskStore.listTasks(r.params?.cursor,n.sessionId);return{tasks:o,nextCursor:s,_meta:{}}}catch(o){throw new O(j.InvalidParams,`Failed to list tasks: ${o instanceof Error?o.message:String(o)}`)}}),this.setRequestHandler($s,async(r,n)=>{try{let o=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!o)throw new O(j.InvalidParams,`Task not found: ${r.params.taskId}`);if(Ft(o.status))throw new O(j.InvalidParams,`Cannot cancel task in terminal status: ${o.status}`);await this._taskStore.updateTaskStatus(r.params.taskId,"cancelled","Client cancelled task execution.",n.sessionId),this._clearTaskQueue(r.params.taskId);let s=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!s)throw new O(j.InvalidParams,`Task not found after cancellation: ${r.params.taskId}`);return{_meta:{},...s}}catch(o){throw o instanceof O?o:new O(j.InvalidRequest,`Failed to cancel task: ${o instanceof Error?o.message:String(o)}`)}}))}async _oncancel(e){if(!e.params.requestId)return;this._requestHandlerAbortControllers.get(e.params.requestId)?.abort(e.params.reason)}_setupTimeout(e,r,n,o,s=!1){this._timeoutInfo.set(e,{timeoutId:setTimeout(o,r),startTime:Date.now(),timeout:r,maxTotalTimeout:n,resetTimeoutOnProgress:s,onTimeout:o})}_resetTimeout(e){let r=this._timeoutInfo.get(e);if(!r)return!1;let n=Date.now()-r.startTime;if(r.maxTotalTimeout&&n>=r.maxTotalTimeout)throw this._timeoutInfo.delete(e),O.fromError(j.RequestTimeout,"Maximum total timeout exceeded",{maxTotalTimeout:r.maxTotalTimeout,totalElapsed:n});return clearTimeout(r.timeoutId),r.timeoutId=setTimeout(r.onTimeout,r.timeout),!0}_cleanupTimeout(e){let r=this._timeoutInfo.get(e);r&&(clearTimeout(r.timeoutId),this._timeoutInfo.delete(e))}async connect(e){if(this._transport)throw new Error("Already connected to a transport. Call close() before connecting to a new transport, or use a separate Protocol instance per connection.");this._transport=e;let r=this.transport?.onclose;this._transport.onclose=()=>{r?.(),this._onclose()};let n=this.transport?.onerror;this._transport.onerror=s=>{n?.(s),this._onerror(s)};let o=this._transport?.onmessage;this._transport.onmessage=(s,i)=>{o?.(s,i),Bn(s)||Wf(s)?this._onresponse(s):Yc(s)?this._onrequest(s,i):Gf(s)?this._onnotification(s):this._onerror(new Error(`Unknown message type: ${JSON.stringify(s)}`))},await this._transport.start()}_onclose(){let e=this._responseHandlers;this._responseHandlers=new Map,this._progressHandlers.clear(),this._taskProgressTokens.clear(),this._pendingDebouncedNotifications.clear();for(let n of this._timeoutInfo.values())clearTimeout(n.timeoutId);this._timeoutInfo.clear();for(let n of this._requestHandlerAbortControllers.values())n.abort();this._requestHandlerAbortControllers.clear();let r=O.fromError(j.ConnectionClosed,"Connection closed");this._transport=void 0,this.onclose?.();for(let n of e.values())n(r)}_onerror(e){this.onerror?.(e)}_onnotification(e){let r=this._notificationHandlers.get(e.method)??this.fallbackNotificationHandler;r!==void 0&&Promise.resolve().then(()=>r(e)).catch(n=>this._onerror(new Error(`Uncaught error in notification handler: ${n}`)))}_onrequest(e,r){let n=this._requestHandlers.get(e.method)??this.fallbackRequestHandler,o=this._transport,s=e.params?._meta?.[Ut]?.taskId;if(n===void 0){let l={jsonrpc:"2.0",id:e.id,error:{code:j.MethodNotFound,message:"Method not found"}};s&&this._taskMessageQueue?this._enqueueTaskMessage(s,{type:"error",message:l,timestamp:Date.now()},o?.sessionId).catch(d=>this._onerror(new Error(`Failed to enqueue error response: ${d}`))):o?.send(l).catch(d=>this._onerror(new Error(`Failed to send an error response: ${d}`)));return}let i=new AbortController;this._requestHandlerAbortControllers.set(e.id,i);let a=Kf(e.params)?e.params.task:void 0,c=this._taskStore?this.requestTaskStore(e,o?.sessionId):void 0,u={signal:i.signal,sessionId:o?.sessionId,_meta:e.params?._meta,sendNotification:async l=>{if(i.signal.aborted)return;let d={relatedRequestId:e.id};s&&(d.relatedTask={taskId:s}),await this.notification(l,d)},sendRequest:async(l,d,m)=>{if(i.signal.aborted)throw new O(j.ConnectionClosed,"Request was cancelled");let f={...m,relatedRequestId:e.id};s&&!f.relatedTask&&(f.relatedTask={taskId:s});let p=f.relatedTask?.taskId??s;return p&&c&&await c.updateTaskStatus(p,"input_required"),await this.request(l,d,f)},authInfo:r?.authInfo,requestId:e.id,requestInfo:r?.requestInfo,taskId:s,taskStore:c,taskRequestedTtl:a?.ttl,closeSSEStream:r?.closeSSEStream,closeStandaloneSSEStream:r?.closeStandaloneSSEStream};Promise.resolve().then(()=>{a&&this.assertTaskHandlerCapability(e.method)}).then(()=>n(e,u)).then(async l=>{if(i.signal.aborted)return;let d={result:l,jsonrpc:"2.0",id:e.id};s&&this._taskMessageQueue?await this._enqueueTaskMessage(s,{type:"response",message:d,timestamp:Date.now()},o?.sessionId):await o?.send(d)},async l=>{if(i.signal.aborted)return;let d={jsonrpc:"2.0",id:e.id,error:{code:Number.isSafeInteger(l.code)?l.code:j.InternalError,message:l.message??"Internal error",...l.data!==void 0&&{data:l.data}}};s&&this._taskMessageQueue?await this._enqueueTaskMessage(s,{type:"error",message:d,timestamp:Date.now()},o?.sessionId):await o?.send(d)}).catch(l=>this._onerror(new Error(`Failed to send response: ${l}`))).finally(()=>{this._requestHandlerAbortControllers.get(e.id)===i&&this._requestHandlerAbortControllers.delete(e.id)})}_onprogress(e){let{progressToken:r,...n}=e.params,o=Number(r),s=this._progressHandlers.get(o);if(!s){this._onerror(new Error(`Received a progress notification for an unknown token: ${JSON.stringify(e)}`));return}let i=this._responseHandlers.get(o),a=this._timeoutInfo.get(o);if(a&&i&&a.resetTimeoutOnProgress)try{this._resetTimeout(o)}catch(c){this._responseHandlers.delete(o),this._progressHandlers.delete(o),this._cleanupTimeout(o),i(c);return}s(n)}_onresponse(e){let r=Number(e.id),n=this._requestResolvers.get(r);if(n){if(this._requestResolvers.delete(r),Bn(e))n(e);else{let i=new O(e.error.code,e.error.message,e.error.data);n(i)}return}let o=this._responseHandlers.get(r);if(o===void 0){this._onerror(new Error(`Received a response for an unknown message ID: ${JSON.stringify(e)}`));return}this._responseHandlers.delete(r),this._cleanupTimeout(r);let s=!1;if(Bn(e)&&e.result&&typeof e.result=="object"){let i=e.result;if(i.task&&typeof i.task=="object"){let a=i.task;typeof a.taskId=="string"&&(s=!0,this._taskProgressTokens.set(a.taskId,r))}}if(s||this._progressHandlers.delete(r),Bn(e))o(e);else{let i=O.fromError(e.error.code,e.error.message,e.error.data);o(i)}}get transport(){return this._transport}async close(){await this._transport?.close()}async*requestStream(e,r,n){let{task:o}=n??{};if(!o){try{yield{type:"result",result:await this.request(e,r,n)}}catch(i){yield{type:"error",error:i instanceof O?i:new O(j.InternalError,String(i))}}return}let s;try{let i=await this.request(e,Wr,n);if(i.task)s=i.task.taskId,yield{type:"taskCreated",task:i.task};else throw new O(j.InternalError,"Task creation did not return a task");for(;;){let a=await this.getTask({taskId:s},n);if(yield{type:"taskStatus",task:a},Ft(a.status)){a.status==="completed"?yield{type:"result",result:await this.getTaskResult({taskId:s},r,n)}:a.status==="failed"?yield{type:"error",error:new O(j.InternalError,`Task ${s} failed`)}:a.status==="cancelled"&&(yield{type:"error",error:new O(j.InternalError,`Task ${s} was cancelled`)});return}if(a.status==="input_required"){yield{type:"result",result:await this.getTaskResult({taskId:s},r,n)};return}let c=a.pollInterval??this._options?.defaultTaskPollInterval??1e3;await new Promise(u=>setTimeout(u,c)),n?.signal?.throwIfAborted()}}catch(i){yield{type:"error",error:i instanceof O?i:new O(j.InternalError,String(i))}}}request(e,r,n){let{relatedRequestId:o,resumptionToken:s,onresumptiontoken:i,task:a,relatedTask:c}=n??{};return new Promise((u,l)=>{let d=v=>{l(v)};if(!this._transport){d(new Error("Not connected"));return}if(this._options?.enforceStrictCapabilities===!0)try{this.assertCapabilityForMethod(e.method),a&&this.assertTaskCapability(e.method)}catch(v){d(v);return}n?.signal?.throwIfAborted();let m=this._requestMessageId++,f={...e,jsonrpc:"2.0",id:m};n?.onprogress&&(this._progressHandlers.set(m,n.onprogress),f.params={...e.params,_meta:{...e.params?._meta||{},progressToken:m}}),a&&(f.params={...f.params,task:a}),c&&(f.params={...f.params,_meta:{...f.params?._meta||{},[Ut]:c}});let p=v=>{this._responseHandlers.delete(m),this._progressHandlers.delete(m),this._cleanupTimeout(m),this._transport?.send({jsonrpc:"2.0",method:"notifications/cancelled",params:{requestId:m,reason:String(v)}},{relatedRequestId:o,resumptionToken:s,onresumptiontoken:i}).catch(T=>this._onerror(new Error(`Failed to send cancellation: ${T}`)));let x=v instanceof O?v:new O(j.RequestTimeout,String(v));l(x)};this._responseHandlers.set(m,v=>{if(!n?.signal?.aborted){if(v instanceof Error)return l(v);try{let x=Lt(r,v.result);x.success?u(x.data):l(x.error)}catch(x){l(x)}}}),n?.signal?.addEventListener("abort",()=>{p(n?.signal?.reason)});let h=n?.timeout??a0,g=()=>p(O.fromError(j.RequestTimeout,"Request timed out",{timeout:h}));this._setupTimeout(m,h,n?.maxTotalTimeout,g,n?.resetTimeoutOnProgress??!1);let b=c?.taskId;if(b){let v=x=>{let T=this._responseHandlers.get(m);T?T(x):this._onerror(new Error(`Response handler missing for side-channeled request ${m}`))};this._requestResolvers.set(m,v),this._enqueueTaskMessage(b,{type:"request",message:f,timestamp:Date.now()}).catch(x=>{this._cleanupTimeout(m),l(x)})}else this._transport.send(f,{relatedRequestId:o,resumptionToken:s,onresumptiontoken:i}).catch(v=>{this._cleanupTimeout(m),l(v)})})}async getTask(e,r){return this.request({method:"tasks/get",params:e},vs,r)}async getTaskResult(e,r,n){return this.request({method:"tasks/result",params:e},r,n)}async listTasks(e,r){return this.request({method:"tasks/list",params:e},ws,r)}async cancelTask(e,r){return this.request({method:"tasks/cancel",params:e},em,r)}async notification(e,r){if(!this._transport)throw new Error("Not connected");this.assertNotificationCapability(e.method);let n=r?.relatedTask?.taskId;if(n){let a={...e,jsonrpc:"2.0",params:{...e.params,_meta:{...e.params?._meta||{},[Ut]:r.relatedTask}}};await this._enqueueTaskMessage(n,{type:"notification",message:a,timestamp:Date.now()});return}if((this._options?.debouncedNotificationMethods??[]).includes(e.method)&&!e.params&&!r?.relatedRequestId&&!r?.relatedTask){if(this._pendingDebouncedNotifications.has(e.method))return;this._pendingDebouncedNotifications.add(e.method),Promise.resolve().then(()=>{if(this._pendingDebouncedNotifications.delete(e.method),!this._transport)return;let a={...e,jsonrpc:"2.0"};r?.relatedTask&&(a={...a,params:{...a.params,_meta:{...a.params?._meta||{},[Ut]:r.relatedTask}}}),this._transport?.send(a,r).catch(c=>this._onerror(c))});return}let i={...e,jsonrpc:"2.0"};r?.relatedTask&&(i={...i,params:{...i.params,_meta:{...i.params?._meta||{},[Ut]:r.relatedTask}}}),await this._transport.send(i,r)}setRequestHandler(e,r){let n=_u(e);this.assertRequestHandlerCapability(n),this._requestHandlers.set(n,(o,s)=>{let i=vu(e,o);return Promise.resolve(r(i,s))})}removeRequestHandler(e){this._requestHandlers.delete(e)}assertCanSetRequestHandler(e){if(this._requestHandlers.has(e))throw new Error(`A request handler for ${e} already exists, which would be overridden`)}setNotificationHandler(e,r){let n=_u(e);this._notificationHandlers.set(n,o=>{let s=vu(e,o);return Promise.resolve(r(s))})}removeNotificationHandler(e){this._notificationHandlers.delete(e)}_cleanupTaskProgressHandler(e){let r=this._taskProgressTokens.get(e);r!==void 0&&(this._progressHandlers.delete(r),this._taskProgressTokens.delete(e))}async _enqueueTaskMessage(e,r,n){if(!this._taskStore||!this._taskMessageQueue)throw new Error("Cannot enqueue task message: taskStore and taskMessageQueue are not configured");let o=this._options?.maxTaskQueueSize;await this._taskMessageQueue.enqueue(e,r,n,o)}async _clearTaskQueue(e,r){if(this._taskMessageQueue){let n=await this._taskMessageQueue.dequeueAll(e,r);for(let o of n)if(o.type==="request"&&Yc(o.message)){let s=o.message.id,i=this._requestResolvers.get(s);i?(i(new O(j.InternalError,"Task cancelled or completed")),this._requestResolvers.delete(s)):this._onerror(new Error(`Resolver missing for request ${s} during task ${e} cleanup`))}}}async _waitForTaskUpdate(e,r){let n=this._options?.defaultTaskPollInterval??1e3;try{let o=await this._taskStore?.getTask(e);o?.pollInterval&&(n=o.pollInterval)}catch{}return new Promise((o,s)=>{if(r.aborted){s(new O(j.InvalidRequest,"Request cancelled"));return}let i=setTimeout(o,n);r.addEventListener("abort",()=>{clearTimeout(i),s(new O(j.InvalidRequest,"Request cancelled"))},{once:!0})})}requestTaskStore(e,r){let n=this._taskStore;if(!n)throw new Error("No task store configured");return{createTask:async o=>{if(!e)throw new Error("No request provided");return await n.createTask(o,e.id,{method:e.method,params:e.params},r)},getTask:async o=>{let s=await n.getTask(o,r);if(!s)throw new O(j.InvalidParams,"Failed to retrieve task: Task not found");return s},storeTaskResult:async(o,s,i)=>{await n.storeTaskResult(o,s,i,r);let a=await n.getTask(o,r);if(a){let c=Wn.parse({method:"notifications/tasks/status",params:a});await this.notification(c),Ft(a.status)&&this._cleanupTaskProgressHandler(o)}},getTaskResult:o=>n.getTaskResult(o,r),updateTaskStatus:async(o,s,i)=>{let a=await n.getTask(o,r);if(!a)throw new O(j.InvalidParams,`Task "${o}" not found - it may have been cleaned up`);if(Ft(a.status))throw new O(j.InvalidParams,`Cannot update task "${o}" from terminal status "${a.status}" to "${s}". Terminal states (completed, failed, cancelled) cannot transition to other states.`);await n.updateTaskStatus(o,s,i,r);let c=await n.getTask(o,r);if(c){let u=Wn.parse({method:"notifications/tasks/status",params:c});await this.notification(u),Ft(c.status)&&this._cleanupTaskProgressHandler(o)}},listTasks:o=>n.listTasks(o,r)}}};function Lm(t){return t!==null&&typeof t=="object"&&!Array.isArray(t)}function qm(t,e){let r={...t};for(let n in e){let o=n,s=e[o];if(s===void 0)continue;let i=r[o];Lm(i)&&Lm(s)?r[o]={...i,...s}:r[o]=s}return r}var Ry=kd(sd(),1),jy=kd(Iy(),1);function lE(){let t=new Ry.default({strict:!1,validateFormats:!0,validateSchema:!1,allErrors:!0});return(0,jy.default)(t),t}var yi=class{constructor(e){this._ajv=e??lE()}getValidator(e){let r="$id"in e&&typeof e.$id=="string"?this._ajv.getSchema(e.$id)??this._ajv.compile(e):this._ajv.compile(e);return n=>r(n)?{valid:!0,data:n,errorMessage:void 0}:{valid:!1,data:void 0,errorMessage:this._ajv.errorsText(r.errors)}}};var _i=class{constructor(e){this._server=e}requestStream(e,r,n){return this._server.requestStream(e,r,n)}createMessageStream(e,r){let n=this._server.getClientCapabilities();if((e.tools||e.toolChoice)&&!n?.sampling?.tools)throw new Error("Client does not support sampling tools capability.");if(e.messages.length>0){let o=e.messages[e.messages.length-1],s=Array.isArray(o.content)?o.content:[o.content],i=s.some(l=>l.type==="tool_result"),a=e.messages.length>1?e.messages[e.messages.length-2]:void 0,c=a?Array.isArray(a.content)?a.content:[a.content]:[],u=c.some(l=>l.type==="tool_use");if(i){if(s.some(l=>l.type!=="tool_result"))throw new Error("The last message must contain only tool_result content if any is present");if(!u)throw new Error("tool_result blocks are not matching any tool_use from the previous message")}if(u){let l=new Set(c.filter(m=>m.type==="tool_use").map(m=>m.id)),d=new Set(s.filter(m=>m.type==="tool_result").map(m=>m.toolUseId));if(l.size!==d.size||![...l].every(m=>d.has(m)))throw new Error("ids of tool_result blocks and tool_use blocks from previous message do not match")}}return this.requestStream({method:"sampling/createMessage",params:e},eo,r)}elicitInputStream(e,r){let n=this._server.getClientCapabilities(),o=e.mode??"form";switch(o){case"url":{if(!n?.elicitation?.url)throw new Error("Client does not support url elicitation.");break}case"form":{if(!n?.elicitation?.form)throw new Error("Client does not support form elicitation.");break}}let s=o==="form"&&e.mode===void 0?{...e,mode:"form"}:e;return this.requestStream({method:"elicitation/create",params:s},en,r)}async getTask(e,r){return this._server.getTask({taskId:e},r)}async getTaskResult(e,r,n){return this._server.getTaskResult({taskId:e},r,n)}async listTasks(e,r){return this._server.listTasks(e?{cursor:e}:void 0,r)}async cancelTask(e,r){return this._server.cancelTask({taskId:e},r)}};function Ny(t,e,r){if(!t)throw new Error(`${r} does not support task creation (required for ${e})`);switch(e){case"tools/call":if(!t.tools?.call)throw new Error(`${r} does not support task creation for tools/call (required for ${e})`);break;default:break}}function Cy(t,e,r){if(!t)throw new Error(`${r} does not support task creation (required for ${e})`);switch(e){case"sampling/createMessage":if(!t.sampling?.createMessage)throw new Error(`${r} does not support task creation for sampling/createMessage (required for ${e})`);break;case"elicitation/create":if(!t.elicitation?.create)throw new Error(`${r} does not support task creation for elicitation/create (required for ${e})`);break;default:break}}var vi=class extends Zs{constructor(e,r){super(r),this._serverInfo=e,this._loggingLevels=new Map,this.LOG_LEVEL_SEVERITY=new Map(Qn.options.map((n,o)=>[n,o])),this.isMessageIgnored=(n,o)=>{let s=this._loggingLevels.get(o);return s?this.LOG_LEVEL_SEVERITY.get(n)<this.LOG_LEVEL_SEVERITY.get(s):!1},this._capabilities=r?.capabilities??{},this._instructions=r?.instructions,this._jsonSchemaValidator=r?.jsonSchemaValidator??new yi,this.setRequestHandler(tu,n=>this._oninitialize(n)),this.setNotificationHandler(ru,()=>this.oninitialized?.()),this._capabilities.logging&&this.setRequestHandler(uu,async(n,o)=>{let s=o.sessionId||o.requestInfo?.headers["mcp-session-id"]||void 0,{level:i}=n.params,a=Qn.safeParse(i);return a.success&&this._loggingLevels.set(s,a.data),{}})}get experimental(){return this._experimental||(this._experimental={tasks:new _i(this)}),this._experimental}registerCapabilities(e){if(this.transport)throw new Error("Cannot register capabilities after connecting to transport");this._capabilities=qm(this._capabilities,e)}setRequestHandler(e,r){let o=qt(e)?.method;if(!o)throw new Error("Schema is missing a method literal");let s;if(We(o)){let a=o;s=a._zod?.def?.value??a.value}else{let a=o;s=a._def?.value??a.value}if(typeof s!="string")throw new Error("Schema method literal must be a string");if(s==="tools/call"){let a=async(c,u)=>{let l=Lt(Qr,c);if(!l.success){let p=l.error instanceof Error?l.error.message:String(l.error);throw new O(j.InvalidParams,`Invalid tools/call request: ${p}`)}let{params:d}=l.data,m=await Promise.resolve(r(c,u));if(d.task){let p=Lt(Wr,m);if(!p.success){let h=p.error instanceof Error?p.error.message:String(p.error);throw new O(j.InvalidParams,`Invalid task creation result: ${h}`)}return p.data}let f=Lt(Os,m);if(!f.success){let p=f.error instanceof Error?f.error.message:String(f.error);throw new O(j.InvalidParams,`Invalid tools/call result: ${p}`)}return f.data};return super.setRequestHandler(e,a)}return super.setRequestHandler(e,r)}assertCapabilityForMethod(e){switch(e){case"sampling/createMessage":if(!this._clientCapabilities?.sampling)throw new Error(`Client does not support sampling (required for ${e})`);break;case"elicitation/create":if(!this._clientCapabilities?.elicitation)throw new Error(`Client does not support elicitation (required for ${e})`);break;case"roots/list":if(!this._clientCapabilities?.roots)throw new Error(`Client does not support listing roots (required for ${e})`);break;case"ping":break}}assertNotificationCapability(e){switch(e){case"notifications/message":if(!this._capabilities.logging)throw new Error(`Server does not support logging (required for ${e})`);break;case"notifications/resources/updated":case"notifications/resources/list_changed":if(!this._capabilities.resources)throw new Error(`Server does not support notifying about resources (required for ${e})`);break;case"notifications/tools/list_changed":if(!this._capabilities.tools)throw new Error(`Server does not support notifying of tool list changes (required for ${e})`);break;case"notifications/prompts/list_changed":if(!this._capabilities.prompts)throw new Error(`Server does not support notifying of prompt list changes (required for ${e})`);break;case"notifications/elicitation/complete":if(!this._clientCapabilities?.elicitation?.url)throw new Error(`Client does not support URL elicitation (required for ${e})`);break;case"notifications/cancelled":break;case"notifications/progress":break}}assertRequestHandlerCapability(e){if(this._capabilities)switch(e){case"completion/complete":if(!this._capabilities.completions)throw new Error(`Server does not support completions (required for ${e})`);break;case"logging/setLevel":if(!this._capabilities.logging)throw new Error(`Server does not support logging (required for ${e})`);break;case"prompts/get":case"prompts/list":if(!this._capabilities.prompts)throw new Error(`Server does not support prompts (required for ${e})`);break;case"resources/list":case"resources/templates/list":case"resources/read":if(!this._capabilities.resources)throw new Error(`Server does not support resources (required for ${e})`);break;case"tools/call":case"tools/list":if(!this._capabilities.tools)throw new Error(`Server does not support tools (required for ${e})`);break;case"tasks/get":case"tasks/list":case"tasks/result":case"tasks/cancel":if(!this._capabilities.tasks)throw new Error(`Server does not support tasks capability (required for ${e})`);break;case"ping":case"initialize":break}}assertTaskCapability(e){Cy(this._clientCapabilities?.tasks?.requests,e,"Client")}assertTaskHandlerCapability(e){this._capabilities&&Ny(this._capabilities.tasks?.requests,e,"Server")}async _oninitialize(e){let r=e.params.protocolVersion;return this._clientCapabilities=e.params.capabilities,this._clientVersion=e.params.clientInfo,{protocolVersion:Vf.includes(r)?r:Gc,capabilities:this.getCapabilities(),serverInfo:this._serverInfo,...this._instructions&&{instructions:this._instructions}}}getClientCapabilities(){return this._clientCapabilities}getClientVersion(){return this._clientVersion}getCapabilities(){return this._capabilities}async ping(){return this.request({method:"ping"},ms)}async createMessage(e,r){if((e.tools||e.toolChoice)&&!this._clientCapabilities?.sampling?.tools)throw new Error("Client does not support sampling tools capability.");if(e.messages.length>0){let n=e.messages[e.messages.length-1],o=Array.isArray(n.content)?n.content:[n.content],s=o.some(u=>u.type==="tool_result"),i=e.messages.length>1?e.messages[e.messages.length-2]:void 0,a=i?Array.isArray(i.content)?i.content:[i.content]:[],c=a.some(u=>u.type==="tool_use");if(s){if(o.some(u=>u.type!=="tool_result"))throw new Error("The last message must contain only tool_result content if any is present");if(!c)throw new Error("tool_result blocks are not matching any tool_use from the previous message")}if(c){let u=new Set(a.filter(d=>d.type==="tool_use").map(d=>d.id)),l=new Set(o.filter(d=>d.type==="tool_result").map(d=>d.toolUseId));if(u.size!==l.size||![...u].every(d=>l.has(d)))throw new Error("ids of tool_result blocks and tool_use blocks from previous message do not match")}}return e.tools?this.request({method:"sampling/createMessage",params:e},lu,r):this.request({method:"sampling/createMessage",params:e},eo,r)}async elicitInput(e,r){switch(e.mode??"form"){case"url":{if(!this._clientCapabilities?.elicitation?.url)throw new Error("Client does not support url elicitation.");let o=e;return this.request({method:"elicitation/create",params:o},en,r)}case"form":{if(!this._clientCapabilities?.elicitation?.form)throw new Error("Client does not support form elicitation.");let o=e.mode==="form"?e:{...e,mode:"form"},s=await this.request({method:"elicitation/create",params:o},en,r);if(s.action==="accept"&&s.content&&o.requestedSchema)try{let a=this._jsonSchemaValidator.getValidator(o.requestedSchema)(s.content);if(!a.valid)throw new O(j.InvalidParams,`Elicitation response content does not match requested schema: ${a.errorMessage}`)}catch(i){throw i instanceof O?i:new O(j.InternalError,`Error validating elicitation response: ${i instanceof Error?i.message:String(i)}`)}return s}}}createElicitationCompletionNotifier(e,r){if(!this._clientCapabilities?.elicitation?.url)throw new Error("Client does not support URL elicitation (required for notifications/elicitation/complete)");return()=>this.notification({method:"notifications/elicitation/complete",params:{elicitationId:e}},r)}async listRoots(e,r){return this.request({method:"roots/list",params:e},du,r)}async sendLoggingMessage(e,r){if(this._capabilities.logging&&!this.isMessageIgnored(e.level,r))return this.notification({method:"notifications/message",params:e})}async sendResourceUpdated(e){return this.notification({method:"notifications/resources/updated",params:e})}async sendResourceListChanged(){return this.notification({method:"notifications/resources/list_changed"})}async sendToolListChanged(){return this.notification({method:"notifications/tools/list_changed"})}async sendPromptListChanged(){return this.notification({method:"notifications/prompts/list_changed"})}};var Ay=Symbol.for("mcp.completable");function fd(t){return!!t&&typeof t=="object"&&Ay in t}function My(t){return t[Ay]?.complete}var Zy;(function(t){t.Completable="McpCompletable"})(Zy||(Zy={}));var dE=/^[A-Za-z0-9._-]{1,128}$/;function pE(t){let e=[];if(t.length===0)return{isValid:!1,warnings:["Tool name cannot be empty"]};if(t.length>128)return{isValid:!1,warnings:[`Tool name exceeds maximum length of 128 characters (current: ${t.length})`]};if(t.includes(" ")&&e.push("Tool name contains spaces, which may cause parsing issues"),t.includes(",")&&e.push("Tool name contains commas, which may cause parsing issues"),(t.startsWith("-")||t.endsWith("-"))&&e.push("Tool name starts or ends with a dash, which may cause parsing issues in some contexts"),(t.startsWith(".")||t.endsWith("."))&&e.push("Tool name starts or ends with a dot, which may cause parsing issues in some contexts"),!dE.test(t)){let r=t.split("").filter(n=>!/[A-Za-z0-9._-]/.test(n)).filter((n,o,s)=>s.indexOf(n)===o);return e.push(`Tool name contains invalid characters: ${r.map(n=>`"${n}"`).join(", ")}`,"Allowed characters are: A-Z, a-z, 0-9, underscore (_), dash (-), and dot (.)"),{isValid:!1,warnings:e}}return{isValid:!0,warnings:e}}function fE(t,e){if(e.length>0){console.warn(`Tool name validation warning for "${t}":`);for(let r of e)console.warn(` - ${r}`);console.warn("Tool registration will proceed, but this may cause compatibility issues."),console.warn("Consider updating the tool name to conform to the MCP tool naming standard."),console.warn("See SEP: Specify Format for Tool Names (https://github.com/modelcontextprotocol/modelcontextprotocol/issues/986) for more details.")}}function md(t){let e=pE(t);return fE(t,e.warnings),e.isValid}var xi=class{constructor(e){this._mcpServer=e}registerToolTask(e,r,n){let o={taskSupport:"required",...r.execution};if(o.taskSupport==="forbidden")throw new Error(`Cannot register task-based tool '${e}' with taskSupport 'forbidden'. Use registerTool() instead.`);return this._mcpServer._createRegisteredTool(e,r.title,r.description,r.inputSchema,r.outputSchema,r.annotations,o,r._meta,n)}};var bi=class{constructor(e,r){this._registeredResources={},this._registeredResourceTemplates={},this._registeredTools={},this._registeredPrompts={},this._toolHandlersInitialized=!1,this._completionHandlerInitialized=!1,this._resourceHandlersInitialized=!1,this._promptHandlersInitialized=!1,this.server=new vi(e,r)}get experimental(){return this._experimental||(this._experimental={tasks:new xi(this)}),this._experimental}async connect(e){return await this.server.connect(e)}async close(){await this.server.close()}setToolRequestHandlers(){this._toolHandlersInitialized||(this.server.assertCanSetRequestHandler(Yt(Es)),this.server.assertCanSetRequestHandler(Yt(Qr)),this.server.registerCapabilities({tools:{listChanged:!0}}),this.server.setRequestHandler(Es,()=>({tools:Object.entries(this._registeredTools).filter(([,e])=>e.enabled).map(([e,r])=>{let n={name:e,title:r.title,description:r.description,inputSchema:(()=>{let o=Xr(r.inputSchema);return o?yu(o,{strictUnions:!0,pipeStrategy:"input"}):mE})(),annotations:r.annotations,execution:r.execution,_meta:r._meta};if(r.outputSchema){let o=Xr(r.outputSchema);o&&(n.outputSchema=yu(o,{strictUnions:!0,pipeStrategy:"output"}))}return n})})),this.server.setRequestHandler(Qr,async(e,r)=>{try{let n=this._registeredTools[e.params.name];if(!n)throw new O(j.InvalidParams,`Tool ${e.params.name} not found`);if(!n.enabled)throw new O(j.InvalidParams,`Tool ${e.params.name} disabled`);let o=!!e.params.task,s=n.execution?.taskSupport,i="createTask"in n.handler;if((s==="required"||s==="optional")&&!i)throw new O(j.InternalError,`Tool ${e.params.name} has taskSupport '${s}' but was not registered with registerToolTask`);if(s==="required"&&!o)throw new O(j.MethodNotFound,`Tool ${e.params.name} requires task augmentation (taskSupport: 'required')`);if(s==="optional"&&!o&&i)return await this.handleAutomaticTaskPolling(n,e,r);let a=await this.validateToolInput(n,e.params.arguments,e.params.name),c=await this.executeToolHandler(n,a,r);return o||await this.validateToolOutput(n,c,e.params.name),c}catch(n){if(n instanceof O&&n.code===j.UrlElicitationRequired)throw n;return this.createToolError(n instanceof Error?n.message:String(n))}}),this._toolHandlersInitialized=!0)}createToolError(e){return{content:[{type:"text",text:e}],isError:!0}}async validateToolInput(e,r,n){if(!e.inputSchema)return;let s=Xr(e.inputSchema)??e.inputSchema,i=await is(s,r);if(!i.success){let a="error"in i?i.error:"Unknown error",c=as(a);throw new O(j.InvalidParams,`Input validation error: Invalid arguments for tool ${n}: ${c}`)}return i.data}async validateToolOutput(e,r,n){if(!e.outputSchema||!("content"in r)||r.isError)return;if(!r.structuredContent)throw new O(j.InvalidParams,`Output validation error: Tool ${n} has an output schema but no structured content was provided`);let o=Xr(e.outputSchema),s=await is(o,r.structuredContent);if(!s.success){let i="error"in s?s.error:"Unknown error",a=as(i);throw new O(j.InvalidParams,`Output validation error: Invalid structured content for tool ${n}: ${a}`)}}async executeToolHandler(e,r,n){let o=e.handler;if("createTask"in o){if(!n.taskStore)throw new Error("No task store provided.");let i={...n,taskStore:n.taskStore};if(e.inputSchema){let a=o;return await Promise.resolve(a.createTask(r,i))}else{let a=o;return await Promise.resolve(a.createTask(i))}}if(e.inputSchema){let i=o;return await Promise.resolve(i(r,n))}else{let i=o;return await Promise.resolve(i(n))}}async handleAutomaticTaskPolling(e,r,n){if(!n.taskStore)throw new Error("No task store provided for task-capable tool.");let o=await this.validateToolInput(e,r.params.arguments,r.params.name),s=e.handler,i={...n,taskStore:n.taskStore},a=o?await Promise.resolve(s.createTask(o,i)):await Promise.resolve(s.createTask(i)),c=a.task.taskId,u=a.task,l=u.pollInterval??5e3;for(;u.status!=="completed"&&u.status!=="failed"&&u.status!=="cancelled";){await new Promise(m=>setTimeout(m,l));let d=await n.taskStore.getTask(c);if(!d)throw new O(j.InternalError,`Task ${c} not found during polling`);u=d}return await n.taskStore.getTaskResult(c)}setCompletionRequestHandler(){this._completionHandlerInitialized||(this.server.assertCanSetRequestHandler(Yt(Is)),this.server.registerCapabilities({completions:{}}),this.server.setRequestHandler(Is,async e=>{switch(e.params.ref.type){case"ref/prompt":return im(e),this.handlePromptCompletion(e,e.params.ref);case"ref/resource":return am(e),this.handleResourceCompletion(e,e.params.ref);default:throw new O(j.InvalidParams,`Invalid completion reference: ${e.params.ref}`)}}),this._completionHandlerInitialized=!0)}async handlePromptCompletion(e,r){let n=this._registeredPrompts[r.name];if(!n)throw new O(j.InvalidParams,`Prompt ${r.name} not found`);if(!n.enabled)throw new O(j.InvalidParams,`Prompt ${r.name} disabled`);if(!n.argsSchema)return Ro;let s=qt(n.argsSchema)?.[e.params.argument.name];if(!fd(s))return Ro;let i=My(s);if(!i)return Ro;let a=await i(e.params.argument.value,e.params.context);return Ly(a)}async handleResourceCompletion(e,r){let n=Object.values(this._registeredResourceTemplates).find(i=>i.resourceTemplate.uriTemplate.toString()===r.uri);if(!n){if(this._registeredResources[r.uri])return Ro;throw new O(j.InvalidParams,`Resource template ${e.params.ref.uri} not found`)}let o=n.resourceTemplate.completeCallback(e.params.argument.name);if(!o)return Ro;let s=await o(e.params.argument.value,e.params.context);return Ly(s)}setResourceRequestHandlers(){this._resourceHandlersInitialized||(this.server.assertCanSetRequestHandler(Yt(ks)),this.server.assertCanSetRequestHandler(Yt(Ss)),this.server.assertCanSetRequestHandler(Yt(zs)),this.server.registerCapabilities({resources:{listChanged:!0}}),this.server.setRequestHandler(ks,async(e,r)=>{let n=Object.entries(this._registeredResources).filter(([s,i])=>i.enabled).map(([s,i])=>({uri:s,name:i.name,...i.metadata})),o=[];for(let s of Object.values(this._registeredResourceTemplates)){if(!s.resourceTemplate.listCallback)continue;let i=await s.resourceTemplate.listCallback(r);for(let a of i.resources)o.push({...s.metadata,...a})}return{resources:[...n,...o]}}),this.server.setRequestHandler(Ss,async()=>({resourceTemplates:Object.entries(this._registeredResourceTemplates).map(([r,n])=>({name:r,uriTemplate:n.resourceTemplate.uriTemplate.toString(),...n.metadata}))})),this.server.setRequestHandler(zs,async(e,r)=>{let n=new URL(e.params.uri),o=this._registeredResources[n.toString()];if(o){if(!o.enabled)throw new O(j.InvalidParams,`Resource ${n} disabled`);return o.readCallback(n,r)}for(let s of Object.values(this._registeredResourceTemplates)){let i=s.resourceTemplate.uriTemplate.match(n.toString());if(i)return s.readCallback(n,i,r)}throw new O(j.InvalidParams,`Resource ${n} not found`)}),this._resourceHandlersInitialized=!0)}setPromptRequestHandlers(){this._promptHandlersInitialized||(this.server.assertCanSetRequestHandler(Yt(Ts)),this.server.assertCanSetRequestHandler(Yt(Ps)),this.server.registerCapabilities({prompts:{listChanged:!0}}),this.server.setRequestHandler(Ts,()=>({prompts:Object.entries(this._registeredPrompts).filter(([,e])=>e.enabled).map(([e,r])=>({name:e,title:r.title,description:r.description,arguments:r.argsSchema?hE(r.argsSchema):void 0}))})),this.server.setRequestHandler(Ps,async(e,r)=>{let n=this._registeredPrompts[e.params.name];if(!n)throw new O(j.InvalidParams,`Prompt ${e.params.name} not found`);if(!n.enabled)throw new O(j.InvalidParams,`Prompt ${e.params.name} disabled`);if(n.argsSchema){let o=Xr(n.argsSchema),s=await is(o,e.params.arguments);if(!s.success){let c="error"in s?s.error:"Unknown error",u=as(c);throw new O(j.InvalidParams,`Invalid arguments for prompt ${e.params.name}: ${u}`)}let i=s.data,a=n.callback;return await Promise.resolve(a(i,r))}else{let o=n.callback;return await Promise.resolve(o(r))}}),this._promptHandlersInitialized=!0)}resource(e,r,...n){let o;typeof n[0]=="object"&&(o=n.shift());let s=n[0];if(typeof r=="string"){if(this._registeredResources[r])throw new Error(`Resource ${r} is already registered`);let i=this._createRegisteredResource(e,void 0,r,o,s);return this.setResourceRequestHandlers(),this.sendResourceListChanged(),i}else{if(this._registeredResourceTemplates[e])throw new Error(`Resource template ${e} is already registered`);let i=this._createRegisteredResourceTemplate(e,void 0,r,o,s);return this.setResourceRequestHandlers(),this.sendResourceListChanged(),i}}registerResource(e,r,n,o){if(typeof r=="string"){if(this._registeredResources[r])throw new Error(`Resource ${r} is already registered`);let s=this._createRegisteredResource(e,n.title,r,n,o);return this.setResourceRequestHandlers(),this.sendResourceListChanged(),s}else{if(this._registeredResourceTemplates[e])throw new Error(`Resource template ${e} is already registered`);let s=this._createRegisteredResourceTemplate(e,n.title,r,n,o);return this.setResourceRequestHandlers(),this.sendResourceListChanged(),s}}_createRegisteredResource(e,r,n,o,s){let i={name:e,title:r,metadata:o,readCallback:s,enabled:!0,disable:()=>i.update({enabled:!1}),enable:()=>i.update({enabled:!0}),remove:()=>i.update({uri:null}),update:a=>{typeof a.uri<"u"&&a.uri!==n&&(delete this._registeredResources[n],a.uri&&(this._registeredResources[a.uri]=i)),typeof a.name<"u"&&(i.name=a.name),typeof a.title<"u"&&(i.title=a.title),typeof a.metadata<"u"&&(i.metadata=a.metadata),typeof a.callback<"u"&&(i.readCallback=a.callback),typeof a.enabled<"u"&&(i.enabled=a.enabled),this.sendResourceListChanged()}};return this._registeredResources[n]=i,i}_createRegisteredResourceTemplate(e,r,n,o,s){let i={resourceTemplate:n,title:r,metadata:o,readCallback:s,enabled:!0,disable:()=>i.update({enabled:!1}),enable:()=>i.update({enabled:!0}),remove:()=>i.update({name:null}),update:u=>{typeof u.name<"u"&&u.name!==e&&(delete this._registeredResourceTemplates[e],u.name&&(this._registeredResourceTemplates[u.name]=i)),typeof u.title<"u"&&(i.title=u.title),typeof u.template<"u"&&(i.resourceTemplate=u.template),typeof u.metadata<"u"&&(i.metadata=u.metadata),typeof u.callback<"u"&&(i.readCallback=u.callback),typeof u.enabled<"u"&&(i.enabled=u.enabled),this.sendResourceListChanged()}};this._registeredResourceTemplates[e]=i;let a=n.uriTemplate.variableNames;return Array.isArray(a)&&a.some(u=>!!n.completeCallback(u))&&this.setCompletionRequestHandler(),i}_createRegisteredPrompt(e,r,n,o,s){let i={title:r,description:n,argsSchema:o===void 0?void 0:$r(o),callback:s,enabled:!0,disable:()=>i.update({enabled:!1}),enable:()=>i.update({enabled:!0}),remove:()=>i.update({name:null}),update:a=>{typeof a.name<"u"&&a.name!==e&&(delete this._registeredPrompts[e],a.name&&(this._registeredPrompts[a.name]=i)),typeof a.title<"u"&&(i.title=a.title),typeof a.description<"u"&&(i.description=a.description),typeof a.argsSchema<"u"&&(i.argsSchema=$r(a.argsSchema)),typeof a.callback<"u"&&(i.callback=a.callback),typeof a.enabled<"u"&&(i.enabled=a.enabled),this.sendPromptListChanged()}};return this._registeredPrompts[e]=i,o&&Object.values(o).some(c=>{let u=c instanceof Ze?c._def?.innerType:c;return fd(u)})&&this.setCompletionRequestHandler(),i}_createRegisteredTool(e,r,n,o,s,i,a,c,u){md(e);let l={title:r,description:n,inputSchema:Dy(o),outputSchema:Dy(s),annotations:i,execution:a,_meta:c,handler:u,enabled:!0,disable:()=>l.update({enabled:!1}),enable:()=>l.update({enabled:!0}),remove:()=>l.update({name:null}),update:d=>{typeof d.name<"u"&&d.name!==e&&(typeof d.name=="string"&&md(d.name),delete this._registeredTools[e],d.name&&(this._registeredTools[d.name]=l)),typeof d.title<"u"&&(l.title=d.title),typeof d.description<"u"&&(l.description=d.description),typeof d.paramsSchema<"u"&&(l.inputSchema=$r(d.paramsSchema)),typeof d.outputSchema<"u"&&(l.outputSchema=$r(d.outputSchema)),typeof d.callback<"u"&&(l.handler=d.callback),typeof d.annotations<"u"&&(l.annotations=d.annotations),typeof d._meta<"u"&&(l._meta=d._meta),typeof d.enabled<"u"&&(l.enabled=d.enabled),this.sendToolListChanged()}};return this._registeredTools[e]=l,this.setToolRequestHandlers(),this.sendToolListChanged(),l}tool(e,...r){if(this._registeredTools[e])throw new Error(`Tool ${e} is already registered`);let n,o,s,i;if(typeof r[0]=="string"&&(n=r.shift()),r.length>1){let c=r[0];if(hd(c))o=r.shift(),r.length>1&&typeof r[0]=="object"&&r[0]!==null&&!hd(r[0])&&(i=r.shift());else if(typeof c=="object"&&c!==null){if(Object.values(c).some(u=>typeof u=="object"&&u!==null))throw new Error(`Tool ${e} expected a Zod schema or ToolAnnotations, but received an unrecognized object`);i=r.shift()}}let a=r[0];return this._createRegisteredTool(e,void 0,n,o,s,i,{taskSupport:"forbidden"},void 0,a)}registerTool(e,r,n){if(this._registeredTools[e])throw new Error(`Tool ${e} is already registered`);let{title:o,description:s,inputSchema:i,outputSchema:a,annotations:c,_meta:u}=r;return this._createRegisteredTool(e,o,s,i,a,c,{taskSupport:"forbidden"},u,n)}prompt(e,...r){if(this._registeredPrompts[e])throw new Error(`Prompt ${e} is already registered`);let n;typeof r[0]=="string"&&(n=r.shift());let o;r.length>1&&(o=r.shift());let s=r[0],i=this._createRegisteredPrompt(e,void 0,n,o,s);return this.setPromptRequestHandlers(),this.sendPromptListChanged(),i}registerPrompt(e,r,n){if(this._registeredPrompts[e])throw new Error(`Prompt ${e} is already registered`);let{title:o,description:s,argsSchema:i}=r,a=this._createRegisteredPrompt(e,o,s,i,n);return this.setPromptRequestHandlers(),this.sendPromptListChanged(),a}isConnected(){return this.server.transport!==void 0}async sendLoggingMessage(e,r){return this.server.sendLoggingMessage(e,r)}sendResourceListChanged(){this.isConnected()&&this.server.sendResourceListChanged()}sendToolListChanged(){this.isConnected()&&this.server.sendToolListChanged()}sendPromptListChanged(){this.isConnected()&&this.server.sendPromptListChanged()}};var mE={type:"object",properties:{}};function qy(t){return t!==null&&typeof t=="object"&&"parse"in t&&typeof t.parse=="function"&&"safeParse"in t&&typeof t.safeParse=="function"}function Uy(t){return"_def"in t||"_zod"in t||qy(t)}function hd(t){return typeof t!="object"||t===null||Uy(t)?!1:Object.keys(t).length===0?!0:Object.values(t).some(qy)}function Dy(t){if(t){if(hd(t))return $r(t);if(!Uy(t))throw new Error("inputSchema must be a Zod schema or raw shape, received an unrecognized object");return t}}function hE(t){let e=qt(t);return e?Object.entries(e).map(([r,n])=>{let o=xf(n),s=bf(n);return{name:r,description:o,required:!s}}):[]}function Yt(t){let r=qt(t)?.method;if(!r)throw new Error("Schema is missing a method literal");let n=cs(r);if(typeof n=="string")return n;throw new Error("Schema method literal must be a string")}function Ly(t){return{completion:{values:t.slice(0,100),total:t.length,hasMore:t.length>100}}}var Ro={completion:{values:[],hasMore:!1}};import Vy from"node:process";var wi=class{append(e){this._buffer=this._buffer?Buffer.concat([this._buffer,e]):e}readMessage(){if(!this._buffer)return null;let e=this._buffer.indexOf(`
|
|
140
|
-
`);if(e===-1)return null;let r=this._buffer.toString("utf8",0,e).replace(/\r$/,"");return this._buffer=this._buffer.subarray(e+1),
|
|
141
|
-
`}var
|
|
142
|
-
`).map(c=>c.trim()).filter(c=>c.startsWith("- ")),a=r.toLowerCase();for(i=i.filter(c=>c.slice(2).toLowerCase()!==a),i.push(`- ${r}`);i.length>
|
|
143
|
-
`).length>
|
|
156
|
+
]`;continue}o+=n[c],n[c]==="\\"?s=!0:i&&n[c]==="]"?i=!1:!i&&n[c]==="["&&(i=!0)}try{new RegExp(o)}catch{return console.warn(`Could not convert regex pattern at ${e.currentPath.join("/")} to a flag-independent form! Falling back to the flag-ignorant source`),t.source}return o}function Xs(t,e){if(e.target==="openAi"&&console.warn("Warning: OpenAI may not support records in schemas! Try an array of key-value pairs instead."),e.target==="openApi3"&&t.keyType?._def.typeName===$.ZodEnum)return{type:"object",required:t.keyType._def.values,properties:t.keyType._def.values.reduce((n,o)=>({...n,[o]:A(t.valueType._def,{...e,currentPath:[...e.currentPath,"properties",o]})??pe(e)}),{}),additionalProperties:e.rejectedAdditionalProperties};let r={type:"object",additionalProperties:A(t.valueType._def,{...e,currentPath:[...e.currentPath,"additionalProperties"]})??e.allowedAdditionalProperties};if(e.target==="openApi3")return r;if(t.keyType?._def.typeName===$.ZodString&&t.keyType._def.checks?.length){let{type:n,...o}=Bs(t.keyType._def,e);return{...r,propertyNames:o}}else{if(t.keyType?._def.typeName===$.ZodEnum)return{...r,propertyNames:{enum:t.keyType._def.values}};if(t.keyType?._def.typeName===$.ZodBranded&&t.keyType._def.type._def.typeName===$.ZodString&&t.keyType._def.type._def.checks?.length){let{type:n,...o}=Ks(t.keyType._def,e);return{...r,propertyNames:o}}}return r}function Wm(t,e){if(e.mapStrategy==="record")return Xs(t,e);let r=A(t.keyType._def,{...e,currentPath:[...e.currentPath,"items","items","0"]})||pe(e),n=A(t.valueType._def,{...e,currentPath:[...e.currentPath,"items","items","1"]})||pe(e);return{type:"array",maxItems:125,items:{type:"array",items:[r,n],minItems:2,maxItems:2}}}function Ym(t){let e=t.values,n=Object.keys(t.values).filter(s=>typeof e[e[s]]!="number").map(s=>e[s]),o=Array.from(new Set(n.map(s=>typeof s)));return{type:o.length===1?o[0]==="string"?"string":"number":["string","number"],enum:n}}function Qm(t){return t.target==="openAi"?void 0:{not:pe({...t,currentPath:[...t.currentPath,"not"]})}}function eh(t){return t.target==="openApi3"?{enum:["null"],nullable:!0}:{type:"null"}}var uo={ZodString:"string",ZodNumber:"number",ZodBigInt:"integer",ZodBoolean:"boolean",ZodNull:"null"};function rh(t,e){if(e.target==="openApi3")return th(t,e);let r=t.options instanceof Map?Array.from(t.options.values()):t.options;if(r.every(n=>n._def.typeName in uo&&(!n._def.checks||!n._def.checks.length))){let n=r.reduce((o,s)=>{let i=uo[s._def.typeName];return i&&!o.includes(i)?[...o,i]:o},[]);return{type:n.length>1?n:n[0]}}else if(r.every(n=>n._def.typeName==="ZodLiteral"&&!n.description)){let n=r.reduce((o,s)=>{let i=typeof s._def.value;switch(i){case"string":case"number":case"boolean":return[...o,i];case"bigint":return[...o,"integer"];case"object":if(s._def.value===null)return[...o,"null"];default:return o}},[]);if(n.length===r.length){let o=n.filter((s,i,a)=>a.indexOf(s)===i);return{type:o.length>1?o:o[0],enum:r.reduce((s,i)=>s.includes(i._def.value)?s:[...s,i._def.value],[])}}}else if(r.every(n=>n._def.typeName==="ZodEnum"))return{type:"string",enum:r.reduce((n,o)=>[...n,...o._def.values.filter(s=>!n.includes(s))],[])};return th(t,e)}var th=(t,e)=>{let r=(t.options instanceof Map?Array.from(t.options.values()):t.options).map((n,o)=>A(n._def,{...e,currentPath:[...e.currentPath,"anyOf",`${o}`]})).filter(n=>!!n&&(!e.strictUnions||typeof n=="object"&&Object.keys(n).length>0));return r.length?{anyOf:r}:void 0};function nh(t,e){if(["ZodString","ZodNumber","ZodBigInt","ZodBoolean","ZodNull"].includes(t.innerType._def.typeName)&&(!t.innerType._def.checks||!t.innerType._def.checks.length))return e.target==="openApi3"?{type:uo[t.innerType._def.typeName],nullable:!0}:{type:[uo[t.innerType._def.typeName],"null"]};if(e.target==="openApi3"){let n=A(t.innerType._def,{...e,currentPath:[...e.currentPath]});return n&&"$ref"in n?{allOf:[n],nullable:!0}:n&&{...n,nullable:!0}}let r=A(t.innerType._def,{...e,currentPath:[...e.currentPath,"anyOf","0"]});return r&&{anyOf:[r,{type:"null"}]}}function oh(t,e){let r={type:"number"};if(!t.checks)return r;for(let n of t.checks)switch(n.kind){case"int":r.type="integer",Iu(r,"type",n.message,e);break;case"min":e.target==="jsonSchema7"?n.inclusive?X(r,"minimum",n.value,n.message,e):X(r,"exclusiveMinimum",n.value,n.message,e):(n.inclusive||(r.exclusiveMinimum=!0),X(r,"minimum",n.value,n.message,e));break;case"max":e.target==="jsonSchema7"?n.inclusive?X(r,"maximum",n.value,n.message,e):X(r,"exclusiveMaximum",n.value,n.message,e):(n.inclusive||(r.exclusiveMaximum=!0),X(r,"maximum",n.value,n.message,e));break;case"multipleOf":X(r,"multipleOf",n.value,n.message,e);break}return r}function sh(t,e){let r=e.target==="openAi",n={type:"object",properties:{}},o=[],s=t.shape();for(let a in s){let c=s[a];if(c===void 0||c._def===void 0)continue;let u=Z0(c);u&&r&&(c._def.typeName==="ZodOptional"&&(c=c._def.innerType),c.isNullable()||(c=c.nullable()),u=!1);let l=A(c._def,{...e,currentPath:[...e.currentPath,"properties",a],propertyPath:[...e.currentPath,"properties",a]});l!==void 0&&(n.properties[a]=l,u||o.push(a))}o.length&&(n.required=o);let i=C0(t,e);return i!==void 0&&(n.additionalProperties=i),n}function C0(t,e){if(t.catchall._def.typeName!=="ZodNever")return A(t.catchall._def,{...e,currentPath:[...e.currentPath,"additionalProperties"]});switch(t.unknownKeys){case"passthrough":return e.allowedAdditionalProperties;case"strict":return e.rejectedAdditionalProperties;case"strip":return e.removeAdditionalStrategy==="strict"?e.allowedAdditionalProperties:e.rejectedAdditionalProperties}}function Z0(t){try{return t.isOptional()}catch{return!0}}var ih=(t,e)=>{if(e.currentPath.toString()===e.propertyPath?.toString())return A(t.innerType._def,e);let r=A(t.innerType._def,{...e,currentPath:[...e.currentPath,"anyOf","1"]});return r?{anyOf:[{not:pe(e)},r]}:pe(e)};var ah=(t,e)=>{if(e.pipeStrategy==="input")return A(t.in._def,e);if(e.pipeStrategy==="output")return A(t.out._def,e);let r=A(t.in._def,{...e,currentPath:[...e.currentPath,"allOf","0"]}),n=A(t.out._def,{...e,currentPath:[...e.currentPath,"allOf",r?"1":"0"]});return{allOf:[r,n].filter(o=>o!==void 0)}};function ch(t,e){return A(t.type._def,e)}function uh(t,e){let n={type:"array",uniqueItems:!0,items:A(t.valueType._def,{...e,currentPath:[...e.currentPath,"items"]})};return t.minSize&&X(n,"minItems",t.minSize.value,t.minSize.message,e),t.maxSize&&X(n,"maxItems",t.maxSize.value,t.maxSize.message,e),n}function lh(t,e){return t.rest?{type:"array",minItems:t.items.length,items:t.items.map((r,n)=>A(r._def,{...e,currentPath:[...e.currentPath,"items",`${n}`]})).reduce((r,n)=>n===void 0?r:[...r,n],[]),additionalItems:A(t.rest._def,{...e,currentPath:[...e.currentPath,"additionalItems"]})}:{type:"array",minItems:t.items.length,maxItems:t.items.length,items:t.items.map((r,n)=>A(r._def,{...e,currentPath:[...e.currentPath,"items",`${n}`]})).reduce((r,n)=>n===void 0?r:[...r,n],[])}}function dh(t){return{not:pe(t)}}function ph(t){return pe(t)}var fh=(t,e)=>A(t.innerType._def,e);var mh=(t,e,r)=>{switch(e){case $.ZodString:return Bs(t,r);case $.ZodNumber:return oh(t,r);case $.ZodObject:return sh(t,r);case $.ZodBigInt:return Um(t,r);case $.ZodBoolean:return Fm();case $.ZodDate:return Ru(t,r);case $.ZodUndefined:return dh(r);case $.ZodNull:return eh(r);case $.ZodArray:return qm(t,r);case $.ZodUnion:case $.ZodDiscriminatedUnion:return rh(t,r);case $.ZodIntersection:return Xm(t,r);case $.ZodTuple:return lh(t,r);case $.ZodRecord:return Xs(t,r);case $.ZodLiteral:return Jm(t,r);case $.ZodEnum:return Bm(t);case $.ZodNativeEnum:return Ym(t);case $.ZodNullable:return nh(t,r);case $.ZodOptional:return ih(t,r);case $.ZodMap:return Wm(t,r);case $.ZodSet:return uh(t,r);case $.ZodLazy:return()=>t.getter()._def;case $.ZodPromise:return ch(t,r);case $.ZodNaN:case $.ZodNever:return Qm(r);case $.ZodEffects:return Km(t,r);case $.ZodAny:return pe(r);case $.ZodUnknown:return ph(r);case $.ZodDefault:return Hm(t,r);case $.ZodBranded:return Ks(t,r);case $.ZodReadonly:return fh(t,r);case $.ZodCatch:return Vm(t,r);case $.ZodPipeline:return ah(t,r);case $.ZodFunction:case $.ZodVoid:case $.ZodSymbol:return;default:return(n=>{})(e)}};function A(t,e,r=!1){let n=e.seen.get(t);if(e.override){let a=e.override?.(t,e,n,r);if(a!==Mm)return a}if(n&&!r){let a=A0(n,e);if(a!==void 0)return a}let o={def:t,path:e.currentPath,jsonSchema:void 0};e.seen.set(t,o);let s=mh(t,t.typeName,e),i=typeof s=="function"?A(s(),e):s;if(i&&M0(t,e,i),e.postProcess){let a=e.postProcess(i,t,e);return o.jsonSchema=i,a}return o.jsonSchema=i,i}var A0=(t,e)=>{switch(e.$refStrategy){case"root":return{$ref:t.path.join("/")};case"relative":return{$ref:Hs(e.currentPath,t.path)};case"none":case"seen":return t.path.length<e.currentPath.length&&t.path.every((r,n)=>e.currentPath[n]===r)?(console.warn(`Recursive reference detected at ${e.currentPath.join("/")}! Defaulting to any`),pe(e)):e.$refStrategy==="seen"?pe(e):void 0}},M0=(t,e,r)=>(t.description&&(r.description=t.description,e.markdownDescription&&(r.markdownDescription=t.description)),r);var Cu=(t,e)=>{let r=Lm(e),n=typeof e=="object"&&e.definitions?Object.entries(e.definitions).reduce((c,[u,l])=>({...c,[u]:A(l._def,{...r,currentPath:[...r.basePath,r.definitionPath,u]},!0)??pe(r)}),{}):void 0,o=typeof e=="string"?e:e?.nameStrategy==="title"?void 0:e?.name,s=A(t._def,o===void 0?r:{...r,currentPath:[...r.basePath,r.definitionPath,o]},!1)??pe(r),i=typeof e=="object"&&e.name!==void 0&&e.nameStrategy==="title"?e.name:void 0;i!==void 0&&(s.title=i),r.flags.hasReferencedOpenAiAnyType&&(n||(n={}),n[r.openAiAnyTypeName]||(n[r.openAiAnyTypeName]={type:["string","number","integer","boolean","array","null"],items:{$ref:r.$refStrategy==="relative"?"1":[...r.basePath,r.definitionPath,r.openAiAnyTypeName].join("/")}}));let a=o===void 0?n?{...s,[r.definitionPath]:n}:s:{$ref:[...r.$refStrategy==="relative"?[]:r.basePath,r.definitionPath,o].join("/"),[r.definitionPath]:{...n,[o]:s}};return r.target==="jsonSchema7"?a.$schema="http://json-schema.org/draft-07/schema#":(r.target==="jsonSchema2019-09"||r.target==="openAi")&&(a.$schema="https://json-schema.org/draft/2019-09/schema#"),r.target==="openAi"&&("anyOf"in a||"oneOf"in a||"allOf"in a||"type"in a&&Array.isArray(a.type))&&console.warn("Warning: OpenAI may not support schemas with unions as roots! Try wrapping it in an object property."),a};function D0(t){return!t||t==="jsonSchema7"||t==="draft-7"?"draft-7":t==="jsonSchema2019-09"||t==="draft-2020-12"?"draft-2020-12":"draft-7"}function Zu(t,e){return Ye(t)?ou(t,{target:D0(e?.target),io:e?.pipeStrategy??"input"}):Cu(t,{strictUnions:e?.strictUnions??!0,pipeStrategy:e?.pipeStrategy??"input"})}function Au(t){let r=Vt(t)?.method;if(!r)throw new Error("Schema is missing a method literal");let n=ws(r);if(typeof n!="string")throw new Error("Schema method literal must be a string");return n}function Mu(t,e){let r=Ft(t,e);if(!r.success)throw r.error;return r.data}var L0=6e4,Js=class{constructor(e){this._options=e,this._requestMessageId=0,this._requestHandlers=new Map,this._requestHandlerAbortControllers=new Map,this._notificationHandlers=new Map,this._responseHandlers=new Map,this._progressHandlers=new Map,this._timeoutInfo=new Map,this._pendingDebouncedNotifications=new Set,this._taskProgressTokens=new Map,this._requestResolvers=new Map,this.setNotificationHandler(Ps,r=>{this._oncancel(r)}),this.setNotificationHandler(Es,r=>{this._onprogress(r)}),this.setRequestHandler(Os,r=>({})),this._taskStore=e?.taskStore,this._taskMessageQueue=e?.taskMessageQueue,this._taskStore&&(this.setRequestHandler(Is,async(r,n)=>{let o=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!o)throw new E(j.InvalidParams,"Failed to retrieve task: Task not found");return{...o}}),this.setRequestHandler(js,async(r,n)=>{let o=async()=>{let s=r.params.taskId;if(this._taskMessageQueue){let a;for(;a=await this._taskMessageQueue.dequeue(s,n.sessionId);){if(a.type==="response"||a.type==="error"){let c=a.message,u=c.id,l=this._requestResolvers.get(u);if(l)if(this._requestResolvers.delete(u),a.type==="response")l(c);else{let d=c,f=new E(d.error.code,d.error.message,d.error.data);l(f)}else{let d=a.type==="response"?"Response":"Error";this._onerror(new Error(`${d} handler missing for request ${u}`))}continue}await this._transport?.send(a.message,{relatedRequestId:n.requestId})}}let i=await this._taskStore.getTask(s,n.sessionId);if(!i)throw new E(j.InvalidParams,`Task not found: ${s}`);if(!Kt(i.status))return await this._waitForTaskUpdate(s,n.signal),await o();if(Kt(i.status)){let a=await this._taskStore.getTaskResult(s,n.sessionId);return this._clearTaskQueue(s),{...a,_meta:{...a._meta,[Ht]:{taskId:s}}}}return await o()};return await o()}),this.setRequestHandler(Ns,async(r,n)=>{try{let{tasks:o,nextCursor:s}=await this._taskStore.listTasks(r.params?.cursor,n.sessionId);return{tasks:o,nextCursor:s,_meta:{}}}catch(o){throw new E(j.InvalidParams,`Failed to list tasks: ${o instanceof Error?o.message:String(o)}`)}}),this.setRequestHandler(Zs,async(r,n)=>{try{let o=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!o)throw new E(j.InvalidParams,`Task not found: ${r.params.taskId}`);if(Kt(o.status))throw new E(j.InvalidParams,`Cannot cancel task in terminal status: ${o.status}`);await this._taskStore.updateTaskStatus(r.params.taskId,"cancelled","Client cancelled task execution.",n.sessionId),this._clearTaskQueue(r.params.taskId);let s=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!s)throw new E(j.InvalidParams,`Task not found after cancellation: ${r.params.taskId}`);return{_meta:{},...s}}catch(o){throw o instanceof E?o:new E(j.InvalidRequest,`Failed to cancel task: ${o instanceof Error?o.message:String(o)}`)}}))}async _oncancel(e){if(!e.params.requestId)return;this._requestHandlerAbortControllers.get(e.params.requestId)?.abort(e.params.reason)}_setupTimeout(e,r,n,o,s=!1){this._timeoutInfo.set(e,{timeoutId:setTimeout(o,r),startTime:Date.now(),timeout:r,maxTotalTimeout:n,resetTimeoutOnProgress:s,onTimeout:o})}_resetTimeout(e){let r=this._timeoutInfo.get(e);if(!r)return!1;let n=Date.now()-r.startTime;if(r.maxTotalTimeout&&n>=r.maxTotalTimeout)throw this._timeoutInfo.delete(e),E.fromError(j.RequestTimeout,"Maximum total timeout exceeded",{maxTotalTimeout:r.maxTotalTimeout,totalElapsed:n});return clearTimeout(r.timeoutId),r.timeoutId=setTimeout(r.onTimeout,r.timeout),!0}_cleanupTimeout(e){let r=this._timeoutInfo.get(e);r&&(clearTimeout(r.timeoutId),this._timeoutInfo.delete(e))}async connect(e){if(this._transport)throw new Error("Already connected to a transport. Call close() before connecting to a new transport, or use a separate Protocol instance per connection.");this._transport=e;let r=this.transport?.onclose;this._transport.onclose=()=>{r?.(),this._onclose()};let n=this.transport?.onerror;this._transport.onerror=s=>{n?.(s),this._onerror(s)};let o=this._transport?.onmessage;this._transport.onmessage=(s,i)=>{o?.(s,i),eo(s)||zm(s)?this._onresponse(s):yu(s)?this._onrequest(s,i):Sm(s)?this._onnotification(s):this._onerror(new Error(`Unknown message type: ${JSON.stringify(s)}`))},await this._transport.start()}_onclose(){let e=this._responseHandlers;this._responseHandlers=new Map,this._progressHandlers.clear(),this._taskProgressTokens.clear(),this._pendingDebouncedNotifications.clear();for(let n of this._timeoutInfo.values())clearTimeout(n.timeoutId);this._timeoutInfo.clear();for(let n of this._requestHandlerAbortControllers.values())n.abort();this._requestHandlerAbortControllers.clear();let r=E.fromError(j.ConnectionClosed,"Connection closed");this._transport=void 0,this.onclose?.();for(let n of e.values())n(r)}_onerror(e){this.onerror?.(e)}_onnotification(e){let r=this._notificationHandlers.get(e.method)??this.fallbackNotificationHandler;r!==void 0&&Promise.resolve().then(()=>r(e)).catch(n=>this._onerror(new Error(`Uncaught error in notification handler: ${n}`)))}_onrequest(e,r){let n=this._requestHandlers.get(e.method)??this.fallbackRequestHandler,o=this._transport,s=e.params?._meta?.[Ht]?.taskId;if(n===void 0){let l={jsonrpc:"2.0",id:e.id,error:{code:j.MethodNotFound,message:"Method not found"}};s&&this._taskMessageQueue?this._enqueueTaskMessage(s,{type:"error",message:l,timestamp:Date.now()},o?.sessionId).catch(d=>this._onerror(new Error(`Failed to enqueue error response: ${d}`))):o?.send(l).catch(d=>this._onerror(new Error(`Failed to send an error response: ${d}`)));return}let i=new AbortController;this._requestHandlerAbortControllers.set(e.id,i);let a=bm(e.params)?e.params.task:void 0,c=this._taskStore?this.requestTaskStore(e,o?.sessionId):void 0,u={signal:i.signal,sessionId:o?.sessionId,_meta:e.params?._meta,sendNotification:async l=>{if(i.signal.aborted)return;let d={relatedRequestId:e.id};s&&(d.relatedTask={taskId:s}),await this.notification(l,d)},sendRequest:async(l,d,f)=>{if(i.signal.aborted)throw new E(j.ConnectionClosed,"Request was cancelled");let m={...f,relatedRequestId:e.id};s&&!m.relatedTask&&(m.relatedTask={taskId:s});let p=m.relatedTask?.taskId??s;return p&&c&&await c.updateTaskStatus(p,"input_required"),await this.request(l,d,m)},authInfo:r?.authInfo,requestId:e.id,requestInfo:r?.requestInfo,taskId:s,taskStore:c,taskRequestedTtl:a?.ttl,closeSSEStream:r?.closeSSEStream,closeStandaloneSSEStream:r?.closeStandaloneSSEStream};Promise.resolve().then(()=>{a&&this.assertTaskHandlerCapability(e.method)}).then(()=>n(e,u)).then(async l=>{if(i.signal.aborted)return;let d={result:l,jsonrpc:"2.0",id:e.id};s&&this._taskMessageQueue?await this._enqueueTaskMessage(s,{type:"response",message:d,timestamp:Date.now()},o?.sessionId):await o?.send(d)},async l=>{if(i.signal.aborted)return;let d={jsonrpc:"2.0",id:e.id,error:{code:Number.isSafeInteger(l.code)?l.code:j.InternalError,message:l.message??"Internal error",...l.data!==void 0&&{data:l.data}}};s&&this._taskMessageQueue?await this._enqueueTaskMessage(s,{type:"error",message:d,timestamp:Date.now()},o?.sessionId):await o?.send(d)}).catch(l=>this._onerror(new Error(`Failed to send response: ${l}`))).finally(()=>{this._requestHandlerAbortControllers.get(e.id)===i&&this._requestHandlerAbortControllers.delete(e.id)})}_onprogress(e){let{progressToken:r,...n}=e.params,o=Number(r),s=this._progressHandlers.get(o);if(!s){this._onerror(new Error(`Received a progress notification for an unknown token: ${JSON.stringify(e)}`));return}let i=this._responseHandlers.get(o),a=this._timeoutInfo.get(o);if(a&&i&&a.resetTimeoutOnProgress)try{this._resetTimeout(o)}catch(c){this._responseHandlers.delete(o),this._progressHandlers.delete(o),this._cleanupTimeout(o),i(c);return}s(n)}_onresponse(e){let r=Number(e.id),n=this._requestResolvers.get(r);if(n){if(this._requestResolvers.delete(r),eo(e))n(e);else{let i=new E(e.error.code,e.error.message,e.error.data);n(i)}return}let o=this._responseHandlers.get(r);if(o===void 0){this._onerror(new Error(`Received a response for an unknown message ID: ${JSON.stringify(e)}`));return}this._responseHandlers.delete(r),this._cleanupTimeout(r);let s=!1;if(eo(e)&&e.result&&typeof e.result=="object"){let i=e.result;if(i.task&&typeof i.task=="object"){let a=i.task;typeof a.taskId=="string"&&(s=!0,this._taskProgressTokens.set(a.taskId,r))}}if(s||this._progressHandlers.delete(r),eo(e))o(e);else{let i=E.fromError(e.error.code,e.error.message,e.error.data);o(i)}}get transport(){return this._transport}async close(){await this._transport?.close()}async*requestStream(e,r,n){let{task:o}=n??{};if(!o){try{yield{type:"result",result:await this.request(e,r,n)}}catch(i){yield{type:"error",error:i instanceof E?i:new E(j.InternalError,String(i))}}return}let s;try{let i=await this.request(e,nn,n);if(i.task)s=i.task.taskId,yield{type:"taskCreated",task:i.task};else throw new E(j.InternalError,"Task creation did not return a task");for(;;){let a=await this.getTask({taskId:s},n);if(yield{type:"taskStatus",task:a},Kt(a.status)){a.status==="completed"?yield{type:"result",result:await this.getTaskResult({taskId:s},r,n)}:a.status==="failed"?yield{type:"error",error:new E(j.InternalError,`Task ${s} failed`)}:a.status==="cancelled"&&(yield{type:"error",error:new E(j.InternalError,`Task ${s} was cancelled`)});return}if(a.status==="input_required"){yield{type:"result",result:await this.getTaskResult({taskId:s},r,n)};return}let c=a.pollInterval??this._options?.defaultTaskPollInterval??1e3;await new Promise(u=>setTimeout(u,c)),n?.signal?.throwIfAborted()}}catch(i){yield{type:"error",error:i instanceof E?i:new E(j.InternalError,String(i))}}}request(e,r,n){let{relatedRequestId:o,resumptionToken:s,onresumptiontoken:i,task:a,relatedTask:c}=n??{};return new Promise((u,l)=>{let d=v=>{l(v)};if(!this._transport){d(new Error("Not connected"));return}if(this._options?.enforceStrictCapabilities===!0)try{this.assertCapabilityForMethod(e.method),a&&this.assertTaskCapability(e.method)}catch(v){d(v);return}n?.signal?.throwIfAborted();let f=this._requestMessageId++,m={...e,jsonrpc:"2.0",id:f};n?.onprogress&&(this._progressHandlers.set(f,n.onprogress),m.params={...e.params,_meta:{...e.params?._meta||{},progressToken:f}}),a&&(m.params={...m.params,task:a}),c&&(m.params={...m.params,_meta:{...m.params?._meta||{},[Ht]:c}});let p=v=>{this._responseHandlers.delete(f),this._progressHandlers.delete(f),this._cleanupTimeout(f),this._transport?.send({jsonrpc:"2.0",method:"notifications/cancelled",params:{requestId:f,reason:String(v)}},{relatedRequestId:o,resumptionToken:s,onresumptiontoken:i}).catch(T=>this._onerror(new Error(`Failed to send cancellation: ${T}`)));let x=v instanceof E?v:new E(j.RequestTimeout,String(v));l(x)};this._responseHandlers.set(f,v=>{if(!n?.signal?.aborted){if(v instanceof Error)return l(v);try{let x=Ft(r,v.result);x.success?u(x.data):l(x.error)}catch(x){l(x)}}}),n?.signal?.addEventListener("abort",()=>{p(n?.signal?.reason)});let h=n?.timeout??L0,g=()=>p(E.fromError(j.RequestTimeout,"Request timed out",{timeout:h}));this._setupTimeout(f,h,n?.maxTotalTimeout,g,n?.resetTimeoutOnProgress??!1);let w=c?.taskId;if(w){let v=x=>{let T=this._responseHandlers.get(f);T?T(x):this._onerror(new Error(`Response handler missing for side-channeled request ${f}`))};this._requestResolvers.set(f,v),this._enqueueTaskMessage(w,{type:"request",message:m,timestamp:Date.now()}).catch(x=>{this._cleanupTimeout(f),l(x)})}else this._transport.send(m,{relatedRequestId:o,resumptionToken:s,onresumptiontoken:i}).catch(v=>{this._cleanupTimeout(f),l(v)})})}async getTask(e,r){return this.request({method:"tasks/get",params:e},Rs,r)}async getTaskResult(e,r,n){return this.request({method:"tasks/result",params:e},r,n)}async listTasks(e,r){return this.request({method:"tasks/list",params:e},Cs,r)}async cancelTask(e,r){return this.request({method:"tasks/cancel",params:e},Om,r)}async notification(e,r){if(!this._transport)throw new Error("Not connected");this.assertNotificationCapability(e.method);let n=r?.relatedTask?.taskId;if(n){let a={...e,jsonrpc:"2.0",params:{...e.params,_meta:{...e.params?._meta||{},[Ht]:r.relatedTask}}};await this._enqueueTaskMessage(n,{type:"notification",message:a,timestamp:Date.now()});return}if((this._options?.debouncedNotificationMethods??[]).includes(e.method)&&!e.params&&!r?.relatedRequestId&&!r?.relatedTask){if(this._pendingDebouncedNotifications.has(e.method))return;this._pendingDebouncedNotifications.add(e.method),Promise.resolve().then(()=>{if(this._pendingDebouncedNotifications.delete(e.method),!this._transport)return;let a={...e,jsonrpc:"2.0"};r?.relatedTask&&(a={...a,params:{...a.params,_meta:{...a.params?._meta||{},[Ht]:r.relatedTask}}}),this._transport?.send(a,r).catch(c=>this._onerror(c))});return}let i={...e,jsonrpc:"2.0"};r?.relatedTask&&(i={...i,params:{...i.params,_meta:{...i.params?._meta||{},[Ht]:r.relatedTask}}}),await this._transport.send(i,r)}setRequestHandler(e,r){let n=Au(e);this.assertRequestHandlerCapability(n),this._requestHandlers.set(n,(o,s)=>{let i=Mu(e,o);return Promise.resolve(r(i,s))})}removeRequestHandler(e){this._requestHandlers.delete(e)}assertCanSetRequestHandler(e){if(this._requestHandlers.has(e))throw new Error(`A request handler for ${e} already exists, which would be overridden`)}setNotificationHandler(e,r){let n=Au(e);this._notificationHandlers.set(n,o=>{let s=Mu(e,o);return Promise.resolve(r(s))})}removeNotificationHandler(e){this._notificationHandlers.delete(e)}_cleanupTaskProgressHandler(e){let r=this._taskProgressTokens.get(e);r!==void 0&&(this._progressHandlers.delete(r),this._taskProgressTokens.delete(e))}async _enqueueTaskMessage(e,r,n){if(!this._taskStore||!this._taskMessageQueue)throw new Error("Cannot enqueue task message: taskStore and taskMessageQueue are not configured");let o=this._options?.maxTaskQueueSize;await this._taskMessageQueue.enqueue(e,r,n,o)}async _clearTaskQueue(e,r){if(this._taskMessageQueue){let n=await this._taskMessageQueue.dequeueAll(e,r);for(let o of n)if(o.type==="request"&&yu(o.message)){let s=o.message.id,i=this._requestResolvers.get(s);i?(i(new E(j.InternalError,"Task cancelled or completed")),this._requestResolvers.delete(s)):this._onerror(new Error(`Resolver missing for request ${s} during task ${e} cleanup`))}}}async _waitForTaskUpdate(e,r){let n=this._options?.defaultTaskPollInterval??1e3;try{let o=await this._taskStore?.getTask(e);o?.pollInterval&&(n=o.pollInterval)}catch{}return new Promise((o,s)=>{if(r.aborted){s(new E(j.InvalidRequest,"Request cancelled"));return}let i=setTimeout(o,n);r.addEventListener("abort",()=>{clearTimeout(i),s(new E(j.InvalidRequest,"Request cancelled"))},{once:!0})})}requestTaskStore(e,r){let n=this._taskStore;if(!n)throw new Error("No task store configured");return{createTask:async o=>{if(!e)throw new Error("No request provided");return await n.createTask(o,e.id,{method:e.method,params:e.params},r)},getTask:async o=>{let s=await n.getTask(o,r);if(!s)throw new E(j.InvalidParams,"Failed to retrieve task: Task not found");return s},storeTaskResult:async(o,s,i)=>{await n.storeTaskResult(o,s,i,r);let a=await n.getTask(o,r);if(a){let c=so.parse({method:"notifications/tasks/status",params:a});await this.notification(c),Kt(a.status)&&this._cleanupTaskProgressHandler(o)}},getTaskResult:o=>n.getTaskResult(o,r),updateTaskStatus:async(o,s,i)=>{let a=await n.getTask(o,r);if(!a)throw new E(j.InvalidParams,`Task "${o}" not found - it may have been cleaned up`);if(Kt(a.status))throw new E(j.InvalidParams,`Cannot update task "${o}" from terminal status "${a.status}" to "${s}". Terminal states (completed, failed, cancelled) cannot transition to other states.`);await n.updateTaskStatus(o,s,i,r);let c=await n.getTask(o,r);if(c){let u=so.parse({method:"notifications/tasks/status",params:c});await this.notification(u),Kt(c.status)&&this._cleanupTaskProgressHandler(o)}},listTasks:o=>n.listTasks(o,r)}}};function hh(t){return t!==null&&typeof t=="object"&&!Array.isArray(t)}function gh(t,e){let r={...t};for(let n in e){let o=n,s=e[o];if(s===void 0)continue;let i=r[o];hh(i)&&hh(s)?r[o]={...i,...s}:r[o]=s}return r}var a_=Vd(kd(),1),c_=Vd(i_(),1);function FO(){let t=new a_.default({strict:!1,validateFormats:!0,validateSchema:!1,allErrors:!0});return(0,c_.default)(t),t}var Ei=class{constructor(e){this._ajv=e??FO()}getValidator(e){let r="$id"in e&&typeof e.$id=="string"?this._ajv.getSchema(e.$id)??this._ajv.compile(e):this._ajv.compile(e);return n=>r(n)?{valid:!0,data:n,errorMessage:void 0}:{valid:!1,data:void 0,errorMessage:this._ajv.errorsText(r.errors)}}};var Ii=class{constructor(e){this._server=e}requestStream(e,r,n){return this._server.requestStream(e,r,n)}createMessageStream(e,r){let n=this._server.getClientCapabilities();if((e.tools||e.toolChoice)&&!n?.sampling?.tools)throw new Error("Client does not support sampling tools capability.");if(e.messages.length>0){let o=e.messages[e.messages.length-1],s=Array.isArray(o.content)?o.content:[o.content],i=s.some(l=>l.type==="tool_result"),a=e.messages.length>1?e.messages[e.messages.length-2]:void 0,c=a?Array.isArray(a.content)?a.content:[a.content]:[],u=c.some(l=>l.type==="tool_use");if(i){if(s.some(l=>l.type!=="tool_result"))throw new Error("The last message must contain only tool_result content if any is present");if(!u)throw new Error("tool_result blocks are not matching any tool_use from the previous message")}if(u){let l=new Set(c.filter(f=>f.type==="tool_use").map(f=>f.id)),d=new Set(s.filter(f=>f.type==="tool_result").map(f=>f.toolUseId));if(l.size!==d.size||![...l].every(f=>d.has(f)))throw new Error("ids of tool_result blocks and tool_use blocks from previous message do not match")}}return this.requestStream({method:"sampling/createMessage",params:e},co,r)}elicitInputStream(e,r){let n=this._server.getClientCapabilities(),o=e.mode??"form";switch(o){case"url":{if(!n?.elicitation?.url)throw new Error("Client does not support url elicitation.");break}case"form":{if(!n?.elicitation?.form)throw new Error("Client does not support form elicitation.");break}}let s=o==="form"&&e.mode===void 0?{...e,mode:"form"}:e;return this.requestStream({method:"elicitation/create",params:s},an,r)}async getTask(e,r){return this._server.getTask({taskId:e},r)}async getTaskResult(e,r,n){return this._server.getTaskResult({taskId:e},r,n)}async listTasks(e,r){return this._server.listTasks(e?{cursor:e}:void 0,r)}async cancelTask(e,r){return this._server.cancelTask({taskId:e},r)}};function u_(t,e,r){if(!t)throw new Error(`${r} does not support task creation (required for ${e})`);switch(e){case"tools/call":if(!t.tools?.call)throw new Error(`${r} does not support task creation for tools/call (required for ${e})`);break;default:break}}function l_(t,e,r){if(!t)throw new Error(`${r} does not support task creation (required for ${e})`);switch(e){case"sampling/createMessage":if(!t.sampling?.createMessage)throw new Error(`${r} does not support task creation for sampling/createMessage (required for ${e})`);break;case"elicitation/create":if(!t.elicitation?.create)throw new Error(`${r} does not support task creation for elicitation/create (required for ${e})`);break;default:break}}var Ri=class extends Js{constructor(e,r){super(r),this._serverInfo=e,this._loggingLevels=new Map,this.LOG_LEVEL_SEVERITY=new Map(ao.options.map((n,o)=>[n,o])),this.isMessageIgnored=(n,o)=>{let s=this._loggingLevels.get(o);return s?this.LOG_LEVEL_SEVERITY.get(n)<this.LOG_LEVEL_SEVERITY.get(s):!1},this._capabilities=r?.capabilities??{},this._instructions=r?.instructions,this._jsonSchemaValidator=r?.jsonSchemaValidator??new Ei,this.setRequestHandler(xu,n=>this._oninitialize(n)),this.setNotificationHandler(wu,()=>this.oninitialized?.()),this._capabilities.logging&&this.setRequestHandler(Pu,async(n,o)=>{let s=o.sessionId||o.requestInfo?.headers["mcp-session-id"]||void 0,{level:i}=n.params,a=ao.safeParse(i);return a.success&&this._loggingLevels.set(s,a.data),{}})}get experimental(){return this._experimental||(this._experimental={tasks:new Ii(this)}),this._experimental}registerCapabilities(e){if(this.transport)throw new Error("Cannot register capabilities after connecting to transport");this._capabilities=gh(this._capabilities,e)}setRequestHandler(e,r){let o=Vt(e)?.method;if(!o)throw new Error("Schema is missing a method literal");let s;if(Ye(o)){let a=o;s=a._zod?.def?.value??a.value}else{let a=o;s=a._def?.value??a.value}if(typeof s!="string")throw new Error("Schema method literal must be a string");if(s==="tools/call"){let a=async(c,u)=>{let l=Ft(sn,c);if(!l.success){let p=l.error instanceof Error?l.error.message:String(l.error);throw new E(j.InvalidParams,`Invalid tools/call request: ${p}`)}let{params:d}=l.data,f=await Promise.resolve(r(c,u));if(d.task){let p=Ft(nn,f);if(!p.success){let h=p.error instanceof Error?p.error.message:String(p.error);throw new E(j.InvalidParams,`Invalid task creation result: ${h}`)}return p.data}let m=Ft(Fs,f);if(!m.success){let p=m.error instanceof Error?m.error.message:String(m.error);throw new E(j.InvalidParams,`Invalid tools/call result: ${p}`)}return m.data};return super.setRequestHandler(e,a)}return super.setRequestHandler(e,r)}assertCapabilityForMethod(e){switch(e){case"sampling/createMessage":if(!this._clientCapabilities?.sampling)throw new Error(`Client does not support sampling (required for ${e})`);break;case"elicitation/create":if(!this._clientCapabilities?.elicitation)throw new Error(`Client does not support elicitation (required for ${e})`);break;case"roots/list":if(!this._clientCapabilities?.roots)throw new Error(`Client does not support listing roots (required for ${e})`);break;case"ping":break}}assertNotificationCapability(e){switch(e){case"notifications/message":if(!this._capabilities.logging)throw new Error(`Server does not support logging (required for ${e})`);break;case"notifications/resources/updated":case"notifications/resources/list_changed":if(!this._capabilities.resources)throw new Error(`Server does not support notifying about resources (required for ${e})`);break;case"notifications/tools/list_changed":if(!this._capabilities.tools)throw new Error(`Server does not support notifying of tool list changes (required for ${e})`);break;case"notifications/prompts/list_changed":if(!this._capabilities.prompts)throw new Error(`Server does not support notifying of prompt list changes (required for ${e})`);break;case"notifications/elicitation/complete":if(!this._clientCapabilities?.elicitation?.url)throw new Error(`Client does not support URL elicitation (required for ${e})`);break;case"notifications/cancelled":break;case"notifications/progress":break}}assertRequestHandlerCapability(e){if(this._capabilities)switch(e){case"completion/complete":if(!this._capabilities.completions)throw new Error(`Server does not support completions (required for ${e})`);break;case"logging/setLevel":if(!this._capabilities.logging)throw new Error(`Server does not support logging (required for ${e})`);break;case"prompts/get":case"prompts/list":if(!this._capabilities.prompts)throw new Error(`Server does not support prompts (required for ${e})`);break;case"resources/list":case"resources/templates/list":case"resources/read":if(!this._capabilities.resources)throw new Error(`Server does not support resources (required for ${e})`);break;case"tools/call":case"tools/list":if(!this._capabilities.tools)throw new Error(`Server does not support tools (required for ${e})`);break;case"tasks/get":case"tasks/list":case"tasks/result":case"tasks/cancel":if(!this._capabilities.tasks)throw new Error(`Server does not support tasks capability (required for ${e})`);break;case"ping":case"initialize":break}}assertTaskCapability(e){l_(this._clientCapabilities?.tasks?.requests,e,"Client")}assertTaskHandlerCapability(e){this._capabilities&&u_(this._capabilities.tasks?.requests,e,"Server")}async _oninitialize(e){let r=e.params.protocolVersion;return this._clientCapabilities=e.params.capabilities,this._clientVersion=e.params.clientInfo,{protocolVersion:vm.includes(r)?r:hu,capabilities:this.getCapabilities(),serverInfo:this._serverInfo,...this._instructions&&{instructions:this._instructions}}}getClientCapabilities(){return this._clientCapabilities}getClientVersion(){return this._clientVersion}getCapabilities(){return this._capabilities}async ping(){return this.request({method:"ping"},Ts)}async createMessage(e,r){if((e.tools||e.toolChoice)&&!this._clientCapabilities?.sampling?.tools)throw new Error("Client does not support sampling tools capability.");if(e.messages.length>0){let n=e.messages[e.messages.length-1],o=Array.isArray(n.content)?n.content:[n.content],s=o.some(u=>u.type==="tool_result"),i=e.messages.length>1?e.messages[e.messages.length-2]:void 0,a=i?Array.isArray(i.content)?i.content:[i.content]:[],c=a.some(u=>u.type==="tool_use");if(s){if(o.some(u=>u.type!=="tool_result"))throw new Error("The last message must contain only tool_result content if any is present");if(!c)throw new Error("tool_result blocks are not matching any tool_use from the previous message")}if(c){let u=new Set(a.filter(d=>d.type==="tool_use").map(d=>d.id)),l=new Set(o.filter(d=>d.type==="tool_result").map(d=>d.toolUseId));if(u.size!==l.size||![...u].every(d=>l.has(d)))throw new Error("ids of tool_result blocks and tool_use blocks from previous message do not match")}}return e.tools?this.request({method:"sampling/createMessage",params:e},Ou,r):this.request({method:"sampling/createMessage",params:e},co,r)}async elicitInput(e,r){switch(e.mode??"form"){case"url":{if(!this._clientCapabilities?.elicitation?.url)throw new Error("Client does not support url elicitation.");let o=e;return this.request({method:"elicitation/create",params:o},an,r)}case"form":{if(!this._clientCapabilities?.elicitation?.form)throw new Error("Client does not support form elicitation.");let o=e.mode==="form"?e:{...e,mode:"form"},s=await this.request({method:"elicitation/create",params:o},an,r);if(s.action==="accept"&&s.content&&o.requestedSchema)try{let a=this._jsonSchemaValidator.getValidator(o.requestedSchema)(s.content);if(!a.valid)throw new E(j.InvalidParams,`Elicitation response content does not match requested schema: ${a.errorMessage}`)}catch(i){throw i instanceof E?i:new E(j.InternalError,`Error validating elicitation response: ${i instanceof Error?i.message:String(i)}`)}return s}}}createElicitationCompletionNotifier(e,r){if(!this._clientCapabilities?.elicitation?.url)throw new Error("Client does not support URL elicitation (required for notifications/elicitation/complete)");return()=>this.notification({method:"notifications/elicitation/complete",params:{elicitationId:e}},r)}async listRoots(e,r){return this.request({method:"roots/list",params:e},Eu,r)}async sendLoggingMessage(e,r){if(this._capabilities.logging&&!this.isMessageIgnored(e.level,r))return this.notification({method:"notifications/message",params:e})}async sendResourceUpdated(e){return this.notification({method:"notifications/resources/updated",params:e})}async sendResourceListChanged(){return this.notification({method:"notifications/resources/list_changed"})}async sendToolListChanged(){return this.notification({method:"notifications/tools/list_changed"})}async sendPromptListChanged(){return this.notification({method:"notifications/prompts/list_changed"})}};var p_=Symbol.for("mcp.completable");function Rd(t){return!!t&&typeof t=="object"&&p_ in t}function f_(t){return t[p_]?.complete}var d_;(function(t){t.Completable="McpCompletable"})(d_||(d_={}));var VO=/^[A-Za-z0-9._-]{1,128}$/;function HO(t){let e=[];if(t.length===0)return{isValid:!1,warnings:["Tool name cannot be empty"]};if(t.length>128)return{isValid:!1,warnings:[`Tool name exceeds maximum length of 128 characters (current: ${t.length})`]};if(t.includes(" ")&&e.push("Tool name contains spaces, which may cause parsing issues"),t.includes(",")&&e.push("Tool name contains commas, which may cause parsing issues"),(t.startsWith("-")||t.endsWith("-"))&&e.push("Tool name starts or ends with a dash, which may cause parsing issues in some contexts"),(t.startsWith(".")||t.endsWith("."))&&e.push("Tool name starts or ends with a dot, which may cause parsing issues in some contexts"),!VO.test(t)){let r=t.split("").filter(n=>!/[A-Za-z0-9._-]/.test(n)).filter((n,o,s)=>s.indexOf(n)===o);return e.push(`Tool name contains invalid characters: ${r.map(n=>`"${n}"`).join(", ")}`,"Allowed characters are: A-Z, a-z, 0-9, underscore (_), dash (-), and dot (.)"),{isValid:!1,warnings:e}}return{isValid:!0,warnings:e}}function KO(t,e){if(e.length>0){console.warn(`Tool name validation warning for "${t}":`);for(let r of e)console.warn(` - ${r}`);console.warn("Tool registration will proceed, but this may cause compatibility issues."),console.warn("Consider updating the tool name to conform to the MCP tool naming standard."),console.warn("See SEP: Specify Format for Tool Names (https://github.com/modelcontextprotocol/modelcontextprotocol/issues/986) for more details.")}}function jd(t){let e=HO(t);return KO(t,e.warnings),e.isValid}var ji=class{constructor(e){this._mcpServer=e}registerToolTask(e,r,n){let o={taskSupport:"required",...r.execution};if(o.taskSupport==="forbidden")throw new Error(`Cannot register task-based tool '${e}' with taskSupport 'forbidden'. Use registerTool() instead.`);return this._mcpServer._createRegisteredTool(e,r.title,r.description,r.inputSchema,r.outputSchema,r.annotations,o,r._meta,n)}};var Ni=class{constructor(e,r){this._registeredResources={},this._registeredResourceTemplates={},this._registeredTools={},this._registeredPrompts={},this._toolHandlersInitialized=!1,this._completionHandlerInitialized=!1,this._resourceHandlersInitialized=!1,this._promptHandlersInitialized=!1,this.server=new Ri(e,r)}get experimental(){return this._experimental||(this._experimental={tasks:new ji(this)}),this._experimental}async connect(e){return await this.server.connect(e)}async close(){await this.server.close()}setToolRequestHandlers(){this._toolHandlersInitialized||(this.server.assertCanSetRequestHandler(tr(Us)),this.server.assertCanSetRequestHandler(tr(sn)),this.server.registerCapabilities({tools:{listChanged:!0}}),this.server.setRequestHandler(Us,()=>({tools:Object.entries(this._registeredTools).filter(([,e])=>e.enabled).map(([e,r])=>{let n={name:e,title:r.title,description:r.description,inputSchema:(()=>{let o=tn(r.inputSchema);return o?Zu(o,{strictUnions:!0,pipeStrategy:"input"}):BO})(),annotations:r.annotations,execution:r.execution,_meta:r._meta};if(r.outputSchema){let o=tn(r.outputSchema);o&&(n.outputSchema=Zu(o,{strictUnions:!0,pipeStrategy:"output"}))}return n})})),this.server.setRequestHandler(sn,async(e,r)=>{try{let n=this._registeredTools[e.params.name];if(!n)throw new E(j.InvalidParams,`Tool ${e.params.name} not found`);if(!n.enabled)throw new E(j.InvalidParams,`Tool ${e.params.name} disabled`);let o=!!e.params.task,s=n.execution?.taskSupport,i="createTask"in n.handler;if((s==="required"||s==="optional")&&!i)throw new E(j.InternalError,`Tool ${e.params.name} has taskSupport '${s}' but was not registered with registerToolTask`);if(s==="required"&&!o)throw new E(j.MethodNotFound,`Tool ${e.params.name} requires task augmentation (taskSupport: 'required')`);if(s==="optional"&&!o&&i)return await this.handleAutomaticTaskPolling(n,e,r);let a=await this.validateToolInput(n,e.params.arguments,e.params.name),c=await this.executeToolHandler(n,a,r);return o||await this.validateToolOutput(n,c,e.params.name),c}catch(n){if(n instanceof E&&n.code===j.UrlElicitationRequired)throw n;return this.createToolError(n instanceof Error?n.message:String(n))}}),this._toolHandlersInitialized=!0)}createToolError(e){return{content:[{type:"text",text:e}],isError:!0}}async validateToolInput(e,r,n){if(!e.inputSchema)return;let s=tn(e.inputSchema)??e.inputSchema,i=await vs(s,r);if(!i.success){let a="error"in i?i.error:"Unknown error",c=xs(a);throw new E(j.InvalidParams,`Input validation error: Invalid arguments for tool ${n}: ${c}`)}return i.data}async validateToolOutput(e,r,n){if(!e.outputSchema||!("content"in r)||r.isError)return;if(!r.structuredContent)throw new E(j.InvalidParams,`Output validation error: Tool ${n} has an output schema but no structured content was provided`);let o=tn(e.outputSchema),s=await vs(o,r.structuredContent);if(!s.success){let i="error"in s?s.error:"Unknown error",a=xs(i);throw new E(j.InvalidParams,`Output validation error: Invalid structured content for tool ${n}: ${a}`)}}async executeToolHandler(e,r,n){let o=e.handler;if("createTask"in o){if(!n.taskStore)throw new Error("No task store provided.");let i={...n,taskStore:n.taskStore};if(e.inputSchema){let a=o;return await Promise.resolve(a.createTask(r,i))}else{let a=o;return await Promise.resolve(a.createTask(i))}}if(e.inputSchema){let i=o;return await Promise.resolve(i(r,n))}else{let i=o;return await Promise.resolve(i(n))}}async handleAutomaticTaskPolling(e,r,n){if(!n.taskStore)throw new Error("No task store provided for task-capable tool.");let o=await this.validateToolInput(e,r.params.arguments,r.params.name),s=e.handler,i={...n,taskStore:n.taskStore},a=o?await Promise.resolve(s.createTask(o,i)):await Promise.resolve(s.createTask(i)),c=a.task.taskId,u=a.task,l=u.pollInterval??5e3;for(;u.status!=="completed"&&u.status!=="failed"&&u.status!=="cancelled";){await new Promise(f=>setTimeout(f,l));let d=await n.taskStore.getTask(c);if(!d)throw new E(j.InternalError,`Task ${c} not found during polling`);u=d}return await n.taskStore.getTaskResult(c)}setCompletionRequestHandler(){this._completionHandlerInitialized||(this.server.assertCanSetRequestHandler(tr(Vs)),this.server.registerCapabilities({completions:{}}),this.server.setRequestHandler(Vs,async e=>{switch(e.params.ref.type){case"ref/prompt":return Cm(e),this.handlePromptCompletion(e,e.params.ref);case"ref/resource":return Zm(e),this.handleResourceCompletion(e,e.params.ref);default:throw new E(j.InvalidParams,`Invalid completion reference: ${e.params.ref}`)}}),this._completionHandlerInitialized=!0)}async handlePromptCompletion(e,r){let n=this._registeredPrompts[r.name];if(!n)throw new E(j.InvalidParams,`Prompt ${r.name} not found`);if(!n.enabled)throw new E(j.InvalidParams,`Prompt ${r.name} disabled`);if(!n.argsSchema)return Lo;let s=Vt(n.argsSchema)?.[e.params.argument.name];if(!Rd(s))return Lo;let i=f_(s);if(!i)return Lo;let a=await i(e.params.argument.value,e.params.context);return h_(a)}async handleResourceCompletion(e,r){let n=Object.values(this._registeredResourceTemplates).find(i=>i.resourceTemplate.uriTemplate.toString()===r.uri);if(!n){if(this._registeredResources[r.uri])return Lo;throw new E(j.InvalidParams,`Resource template ${e.params.ref.uri} not found`)}let o=n.resourceTemplate.completeCallback(e.params.argument.name);if(!o)return Lo;let s=await o(e.params.argument.value,e.params.context);return h_(s)}setResourceRequestHandlers(){this._resourceHandlersInitialized||(this.server.assertCanSetRequestHandler(tr(As)),this.server.assertCanSetRequestHandler(tr(Ms)),this.server.assertCanSetRequestHandler(tr(Ds)),this.server.registerCapabilities({resources:{listChanged:!0}}),this.server.setRequestHandler(As,async(e,r)=>{let n=Object.entries(this._registeredResources).filter(([s,i])=>i.enabled).map(([s,i])=>({uri:s,name:i.name,...i.metadata})),o=[];for(let s of Object.values(this._registeredResourceTemplates)){if(!s.resourceTemplate.listCallback)continue;let i=await s.resourceTemplate.listCallback(r);for(let a of i.resources)o.push({...s.metadata,...a})}return{resources:[...n,...o]}}),this.server.setRequestHandler(Ms,async()=>({resourceTemplates:Object.entries(this._registeredResourceTemplates).map(([r,n])=>({name:r,uriTemplate:n.resourceTemplate.uriTemplate.toString(),...n.metadata}))})),this.server.setRequestHandler(Ds,async(e,r)=>{let n=new URL(e.params.uri),o=this._registeredResources[n.toString()];if(o){if(!o.enabled)throw new E(j.InvalidParams,`Resource ${n} disabled`);return o.readCallback(n,r)}for(let s of Object.values(this._registeredResourceTemplates)){let i=s.resourceTemplate.uriTemplate.match(n.toString());if(i)return s.readCallback(n,i,r)}throw new E(j.InvalidParams,`Resource ${n} not found`)}),this._resourceHandlersInitialized=!0)}setPromptRequestHandlers(){this._promptHandlersInitialized||(this.server.assertCanSetRequestHandler(tr(Ls)),this.server.assertCanSetRequestHandler(tr(qs)),this.server.registerCapabilities({prompts:{listChanged:!0}}),this.server.setRequestHandler(Ls,()=>({prompts:Object.entries(this._registeredPrompts).filter(([,e])=>e.enabled).map(([e,r])=>({name:e,title:r.title,description:r.description,arguments:r.argsSchema?XO(r.argsSchema):void 0}))})),this.server.setRequestHandler(qs,async(e,r)=>{let n=this._registeredPrompts[e.params.name];if(!n)throw new E(j.InvalidParams,`Prompt ${e.params.name} not found`);if(!n.enabled)throw new E(j.InvalidParams,`Prompt ${e.params.name} disabled`);if(n.argsSchema){let o=tn(n.argsSchema),s=await vs(o,e.params.arguments);if(!s.success){let c="error"in s?s.error:"Unknown error",u=xs(c);throw new E(j.InvalidParams,`Invalid arguments for prompt ${e.params.name}: ${u}`)}let i=s.data,a=n.callback;return await Promise.resolve(a(i,r))}else{let o=n.callback;return await Promise.resolve(o(r))}}),this._promptHandlersInitialized=!0)}resource(e,r,...n){let o;typeof n[0]=="object"&&(o=n.shift());let s=n[0];if(typeof r=="string"){if(this._registeredResources[r])throw new Error(`Resource ${r} is already registered`);let i=this._createRegisteredResource(e,void 0,r,o,s);return this.setResourceRequestHandlers(),this.sendResourceListChanged(),i}else{if(this._registeredResourceTemplates[e])throw new Error(`Resource template ${e} is already registered`);let i=this._createRegisteredResourceTemplate(e,void 0,r,o,s);return this.setResourceRequestHandlers(),this.sendResourceListChanged(),i}}registerResource(e,r,n,o){if(typeof r=="string"){if(this._registeredResources[r])throw new Error(`Resource ${r} is already registered`);let s=this._createRegisteredResource(e,n.title,r,n,o);return this.setResourceRequestHandlers(),this.sendResourceListChanged(),s}else{if(this._registeredResourceTemplates[e])throw new Error(`Resource template ${e} is already registered`);let s=this._createRegisteredResourceTemplate(e,n.title,r,n,o);return this.setResourceRequestHandlers(),this.sendResourceListChanged(),s}}_createRegisteredResource(e,r,n,o,s){let i={name:e,title:r,metadata:o,readCallback:s,enabled:!0,disable:()=>i.update({enabled:!1}),enable:()=>i.update({enabled:!0}),remove:()=>i.update({uri:null}),update:a=>{typeof a.uri<"u"&&a.uri!==n&&(delete this._registeredResources[n],a.uri&&(this._registeredResources[a.uri]=i)),typeof a.name<"u"&&(i.name=a.name),typeof a.title<"u"&&(i.title=a.title),typeof a.metadata<"u"&&(i.metadata=a.metadata),typeof a.callback<"u"&&(i.readCallback=a.callback),typeof a.enabled<"u"&&(i.enabled=a.enabled),this.sendResourceListChanged()}};return this._registeredResources[n]=i,i}_createRegisteredResourceTemplate(e,r,n,o,s){let i={resourceTemplate:n,title:r,metadata:o,readCallback:s,enabled:!0,disable:()=>i.update({enabled:!1}),enable:()=>i.update({enabled:!0}),remove:()=>i.update({name:null}),update:u=>{typeof u.name<"u"&&u.name!==e&&(delete this._registeredResourceTemplates[e],u.name&&(this._registeredResourceTemplates[u.name]=i)),typeof u.title<"u"&&(i.title=u.title),typeof u.template<"u"&&(i.resourceTemplate=u.template),typeof u.metadata<"u"&&(i.metadata=u.metadata),typeof u.callback<"u"&&(i.readCallback=u.callback),typeof u.enabled<"u"&&(i.enabled=u.enabled),this.sendResourceListChanged()}};this._registeredResourceTemplates[e]=i;let a=n.uriTemplate.variableNames;return Array.isArray(a)&&a.some(u=>!!n.completeCallback(u))&&this.setCompletionRequestHandler(),i}_createRegisteredPrompt(e,r,n,o,s){let i={title:r,description:n,argsSchema:o===void 0?void 0:Er(o),callback:s,enabled:!0,disable:()=>i.update({enabled:!1}),enable:()=>i.update({enabled:!0}),remove:()=>i.update({name:null}),update:a=>{typeof a.name<"u"&&a.name!==e&&(delete this._registeredPrompts[e],a.name&&(this._registeredPrompts[a.name]=i)),typeof a.title<"u"&&(i.title=a.title),typeof a.description<"u"&&(i.description=a.description),typeof a.argsSchema<"u"&&(i.argsSchema=Er(a.argsSchema)),typeof a.callback<"u"&&(i.callback=a.callback),typeof a.enabled<"u"&&(i.enabled=a.enabled),this.sendPromptListChanged()}};return this._registeredPrompts[e]=i,o&&Object.values(o).some(c=>{let u=c instanceof Me?c._def?.innerType:c;return Rd(u)})&&this.setCompletionRequestHandler(),i}_createRegisteredTool(e,r,n,o,s,i,a,c,u){jd(e);let l={title:r,description:n,inputSchema:m_(o),outputSchema:m_(s),annotations:i,execution:a,_meta:c,handler:u,enabled:!0,disable:()=>l.update({enabled:!1}),enable:()=>l.update({enabled:!0}),remove:()=>l.update({name:null}),update:d=>{typeof d.name<"u"&&d.name!==e&&(typeof d.name=="string"&&jd(d.name),delete this._registeredTools[e],d.name&&(this._registeredTools[d.name]=l)),typeof d.title<"u"&&(l.title=d.title),typeof d.description<"u"&&(l.description=d.description),typeof d.paramsSchema<"u"&&(l.inputSchema=Er(d.paramsSchema)),typeof d.outputSchema<"u"&&(l.outputSchema=Er(d.outputSchema)),typeof d.callback<"u"&&(l.handler=d.callback),typeof d.annotations<"u"&&(l.annotations=d.annotations),typeof d._meta<"u"&&(l._meta=d._meta),typeof d.enabled<"u"&&(l.enabled=d.enabled),this.sendToolListChanged()}};return this._registeredTools[e]=l,this.setToolRequestHandlers(),this.sendToolListChanged(),l}tool(e,...r){if(this._registeredTools[e])throw new Error(`Tool ${e} is already registered`);let n,o,s,i;if(typeof r[0]=="string"&&(n=r.shift()),r.length>1){let c=r[0];if(Nd(c))o=r.shift(),r.length>1&&typeof r[0]=="object"&&r[0]!==null&&!Nd(r[0])&&(i=r.shift());else if(typeof c=="object"&&c!==null){if(Object.values(c).some(u=>typeof u=="object"&&u!==null))throw new Error(`Tool ${e} expected a Zod schema or ToolAnnotations, but received an unrecognized object`);i=r.shift()}}let a=r[0];return this._createRegisteredTool(e,void 0,n,o,s,i,{taskSupport:"forbidden"},void 0,a)}registerTool(e,r,n){if(this._registeredTools[e])throw new Error(`Tool ${e} is already registered`);let{title:o,description:s,inputSchema:i,outputSchema:a,annotations:c,_meta:u}=r;return this._createRegisteredTool(e,o,s,i,a,c,{taskSupport:"forbidden"},u,n)}prompt(e,...r){if(this._registeredPrompts[e])throw new Error(`Prompt ${e} is already registered`);let n;typeof r[0]=="string"&&(n=r.shift());let o;r.length>1&&(o=r.shift());let s=r[0],i=this._createRegisteredPrompt(e,void 0,n,o,s);return this.setPromptRequestHandlers(),this.sendPromptListChanged(),i}registerPrompt(e,r,n){if(this._registeredPrompts[e])throw new Error(`Prompt ${e} is already registered`);let{title:o,description:s,argsSchema:i}=r,a=this._createRegisteredPrompt(e,o,s,i,n);return this.setPromptRequestHandlers(),this.sendPromptListChanged(),a}isConnected(){return this.server.transport!==void 0}async sendLoggingMessage(e,r){return this.server.sendLoggingMessage(e,r)}sendResourceListChanged(){this.isConnected()&&this.server.sendResourceListChanged()}sendToolListChanged(){this.isConnected()&&this.server.sendToolListChanged()}sendPromptListChanged(){this.isConnected()&&this.server.sendPromptListChanged()}};var BO={type:"object",properties:{}};function g_(t){return t!==null&&typeof t=="object"&&"parse"in t&&typeof t.parse=="function"&&"safeParse"in t&&typeof t.safeParse=="function"}function y_(t){return"_def"in t||"_zod"in t||g_(t)}function Nd(t){return typeof t!="object"||t===null||y_(t)?!1:Object.keys(t).length===0?!0:Object.values(t).some(g_)}function m_(t){if(t){if(Nd(t))return Er(t);if(!y_(t))throw new Error("inputSchema must be a Zod schema or raw shape, received an unrecognized object");return t}}function XO(t){let e=Vt(t);return e?Object.entries(e).map(([r,n])=>{let o=Jf(n),s=Gf(n);return{name:r,description:o,required:!s}}):[]}function tr(t){let r=Vt(t)?.method;if(!r)throw new Error("Schema is missing a method literal");let n=ws(r);if(typeof n=="string")return n;throw new Error("Schema method literal must be a string")}function h_(t){return{completion:{values:t.slice(0,100),total:t.length,hasMore:t.length>100}}}var Lo={completion:{values:[],hasMore:!1}};import v_ from"node:process";var Ci=class{append(e){this._buffer=this._buffer?Buffer.concat([this._buffer,e]):e}readMessage(){if(!this._buffer)return null;let e=this._buffer.indexOf(`
|
|
157
|
+
`);if(e===-1)return null;let r=this._buffer.toString("utf8",0,e).replace(/\r$/,"");return this._buffer=this._buffer.subarray(e+1),JO(r)}clear(){this._buffer=void 0}};function JO(t){return Tm.parse(JSON.parse(t))}function __(t){return JSON.stringify(t)+`
|
|
158
|
+
`}var Zi=class{constructor(e=v_.stdin,r=v_.stdout){this._stdin=e,this._stdout=r,this._readBuffer=new Ci,this._started=!1,this._ondata=n=>{this._readBuffer.append(n),this.processReadBuffer()},this._onerror=n=>{this.onerror?.(n)}}async start(){if(this._started)throw new Error("StdioServerTransport already started! If using Server class, note that connect() calls start() automatically.");this._started=!0,this._stdin.on("data",this._ondata),this._stdin.on("error",this._onerror)}processReadBuffer(){for(;;)try{let e=this._readBuffer.readMessage();if(e===null)break;this.onmessage?.(e)}catch(e){this.onerror?.(e)}}async close(){this._stdin.off("data",this._ondata),this._stdin.off("error",this._onerror),this._stdin.listenerCount("data")===0&&this._stdin.pause(),this._readBuffer.clear(),this.onclose?.()}send(e){return new Promise(r=>{let n=__(e);this._stdout.write(n)?r():this._stdout.once("drain",r)})}};import{promises as Cd}from"node:fs";import*as zn from"node:path";var x_=".oioxo",GO="rules.md",w_="memory.md",WO=40,YO=4e3;async function Zd(t){try{return(await Cd.readFile(t,"utf8")).trim()}catch{return""}}async function Ad(t){let e=zn.join(t,x_);return{rules:await Zd(zn.join(e,GO)),memory:await Zd(zn.join(e,w_))}}async function b_(t,e){let r=e.replace(/\s+/g," ").trim();if(!r)return;let n=zn.join(t,x_);await Cd.mkdir(n,{recursive:!0});let o=zn.join(n,w_),i=(await Zd(o)).split(`
|
|
159
|
+
`).map(c=>c.trim()).filter(c=>c.startsWith("- ")),a=r.toLowerCase();for(i=i.filter(c=>c.slice(2).toLowerCase()!==a),i.push(`- ${r}`);i.length>WO||i.join(`
|
|
160
|
+
`).length>YO;)i.shift();await Cd.writeFile(o,i.join(`
|
|
144
161
|
`)+`
|
|
145
|
-
`,"utf8")}function
|
|
162
|
+
`,"utf8")}function Md(t){let e=[];return t.rules&&e.push(`PROJECT RULES (from .oioxo/rules.md \u2014 always follow these):
|
|
146
163
|
${t.rules}`),t.memory&&e.push(`PROJECT MEMORY (facts OIOXO learned about this project, on-device):
|
|
147
164
|
${t.memory}`),e.join(`
|
|
148
165
|
|
|
149
|
-
`)}var
|
|
150
|
-
${
|
|
151
|
-
Free accounts include a monthly context allowance; OIOXO Pro is unlimited \u2192 ${
|
|
152
|
-
It resets ${new Date(t.resetsAt).toUTCString()}. OIOXO Pro is unlimited \u2192 ${
|
|
166
|
+
`)}var QO="0.1.0",eE=6e4,$t=t=>({content:[{type:"text",text:t}]});async function Dd(){if(!await Nt())return{ok:!1,message:`OIOXO context engine is linked to an OIOXO account.
|
|
167
|
+
${En}
|
|
168
|
+
Free accounts include a monthly context allowance; OIOXO Pro is unlimited \u2192 ${nr}`};let t=await Ie("check");return t?t.optimize?{ok:!0,state:t}:t.tier==="anon"?{ok:!1,message:`Your OIOXO session expired. ${En}`}:{ok:!1,message:`Your OIOXO Free monthly context allowance is used (${t.savedThisMonth.toLocaleString()} tokens saved this month).
|
|
169
|
+
It resets ${new Date(t.resetsAt).toUTCString()}. OIOXO Pro is unlimited \u2192 ${nr}`}:{ok:!1,message:"OIOXO could not verify your plan (oioxo.com unreachable). Retrieval is paused until the connection returns."}}async function $_(t){let e=new Ni({name:"oioxo",version:QO}),r=[],n=new Ct,o=0,s=null,i=async()=>{if(!(Date.now()-o<eE&&r.length))return s||(s=(async()=>{r=await Ur(t),n.build(r),o=Date.now()})().finally(()=>{s=null})),s};e.tool("get_context","ALWAYS call this FIRST, before reading or searching files yourself. Returns the minimal relevant slice of this codebase for a task: the exact code in play plus the API surface of its real dependencies \u2014 typically 10-20x fewer tokens than reading the files. Powered by OIOXO, 100% on-device.",{query:$r.string().describe("The task or question, in natural language (include identifiers/error text when you have them).")},async({query:c})=>{let u=await Dd();if(!u.ok)return $t(u.message);await i();let l=Ko(c,r,n);if(!l.text)return $t("No relevant code found for that query in this workspace.");l.savedTokens>0&&Ie("report",l.savedTokens);let d=Md(await Ad(t)),f=`OIOXO context capsule \u2014 files: ${l.files.join(", ")} (\u2248${l.savedTokens.toLocaleString()} tokens saved vs reading full files)`;return $t([f,d,l.text].filter(Boolean).join(`
|
|
153
170
|
|
|
154
|
-
`))}),e.tool("get_skeleton","The API surface of one file \u2014 signatures, no implementation bodies. Use to learn how to CALL code without paying for its full text.",{path
|
|
171
|
+
`))}),e.tool("get_skeleton","The API surface of one file \u2014 signatures, no implementation bodies. Use to learn how to CALL code without paying for its full text.",{path:$r.string().describe("Workspace-relative file path.")},async({path:c})=>{let u=await Dd();if(!u.ok)return $t(u.message);await i();let l=r.find(m=>m.path===c.replace(/\\/g,"/"));if(!l)return $t(`File not found in the OIOXO index: ${c}`);let d=Ho(l.path,l.content),f=Math.max(0,Math.round((l.content.length-d.length)/4));return f>0&&Ie("report",f),$t(d)}),e.tool("get_impact","Blast radius of a file: what it imports and everything that imports IT. Call before refactoring or deleting to know what may break.",{path:$r.string().describe("Workspace-relative file path.")},async({path:c})=>{let u=await Dd();if(!u.ok)return $t(u.message);await i();let l=c.replace(/\\/g,"/"),d=Vo(r),f=d.deps.get(l)??[],m=d.dependents.get(l)??[];return $t(`OIOXO impact graph for ${l}
|
|
155
172
|
|
|
156
173
|
IMPORTS (its dependencies):
|
|
157
|
-
${
|
|
174
|
+
${f.map(p=>` ${p}`).join(`
|
|
158
175
|
`)||" (none in-project)"}
|
|
159
176
|
|
|
160
177
|
IMPORTED BY (changing ${l} may break these):
|
|
161
|
-
${
|
|
162
|
-
`)||" (none \u2014 no in-project callers)"}`)}),e.tool("remember","Save one durable fact about THIS project to .oioxo/memory.md (on-device, shared with the OIOXO IDEs). Use for decisions, conventions, gotchas worth keeping.",{fact
|
|
163
|
-
|
|
164
|
-
Usage: oioxo
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
code "<task>"
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
178
|
+
${m.map(p=>` ${p}`).join(`
|
|
179
|
+
`)||" (none \u2014 no in-project callers)"}`)}),e.tool("remember","Save one durable fact about THIS project to .oioxo/memory.md (on-device, shared with the OIOXO IDEs). Use for decisions, conventions, gotchas worth keeping.",{fact:$r.string().describe("The fact, one concise sentence.")},async({fact:c})=>(await b_(t,c),$t("Saved to .oioxo/memory.md."))),e.tool("recall","This project's rules and learned memory from .oioxo/ (same files the OIOXO IDEs maintain). Call when starting work in an unfamiliar repo.",{},async()=>{let c=Md(await Ad(t));return $t(c||"No .oioxo/rules.md or memory.md in this project yet.")});let a=new Zi;await e.connect(a)}var Ld=(()=>{try{return"0.4.0"}catch{}try{return tE(import.meta.url)("../../package.json").version}catch{return"0.0.0"}})(),k_=`OIOXO ${Ld} \u2014 context engine + terminal coding agent (https://oioxo.com)
|
|
180
|
+
|
|
181
|
+
Usage: oioxo <command> [options]
|
|
182
|
+
|
|
183
|
+
Code:
|
|
184
|
+
code "<task>" Build/fix in this repo: capsule-grounded, verified on a shadow copy,
|
|
185
|
+
then asks before writing. Flags: --verify "<cmd>" \xB7 --yes \xB7 --max-iters N
|
|
186
|
+
(For a fully local run today: OIOXO_PROVIDER=ollama OIOXO_MODEL=qwen2.5-coder)
|
|
187
|
+
|
|
188
|
+
Account:
|
|
189
|
+
login Connect your OIOXO account (opens the browser)
|
|
190
|
+
logout Remove the stored credential from this machine
|
|
191
|
+
whoami Show who you're signed in as + your plan
|
|
192
|
+
usage [--json] Your monthly saved-token allowance
|
|
193
|
+
status Account + plan + on-device index stats at a glance
|
|
194
|
+
|
|
195
|
+
AI / model:
|
|
196
|
+
model list Show the providers + how to run locally
|
|
197
|
+
model use <p> [m] Pin a provider (and optionally a model)
|
|
198
|
+
config set|get|list|unset <key> [value]
|
|
199
|
+
Persist provider/model/baseUrl/apiKey to ~/.oioxo/config.json
|
|
200
|
+
|
|
201
|
+
Agents (MCP):
|
|
202
|
+
init [--all] Wire OIOXO into the AI agents in this project
|
|
203
|
+
(--all: every supported agent \xB7 --command "<cmd>": custom server command)
|
|
204
|
+
mcp list Show which agents OIOXO is wired into
|
|
205
|
+
serve Run the MCP server over stdio (agents call this; you rarely will)
|
|
206
|
+
|
|
207
|
+
Maintenance:
|
|
208
|
+
doctor Check creds, connection, coder config, and agent wiring
|
|
209
|
+
update How to update the OIOXO CLI
|
|
210
|
+
--version, -v Print the version
|
|
211
|
+
--help, -h Show this help
|
|
212
|
+
`;async function rE(t){console.log(`
|
|
213
|
+
OIOXO status`),console.log(` Control plane : ${kt}`);let e=await or();if(!e||e.expiresAt<=Date.now())console.log(" Account : not connected \u2014 run `oioxo-mcp login`");else{let s=Math.max(0,Math.round((e.expiresAt-Date.now())/864e5));console.log(` Account : connected (credential valid ~${s}d)`);let i=await Ie("check");i?.tier==="pro"?console.log(" Plan : OIOXO Pro \u2014 unlimited context engine"):i?.tier==="free"?console.log(` Plan : OIOXO Free \u2014 ${i.remainingTokens?.toLocaleString()??0} saved-tokens left this month (resets ${new Date(i.resetsAt).toUTCString()})`):console.log(i?` Plan : ${i.tier}`:" Plan : could not reach oioxo.com")}let r=await Ur(t),o=new Ct().build(r);console.log(` Index : ${o.files} files, ${o.chunks} chunks (in-memory, on-device)`)}async function nE(){let[t,...e]=process.argv.slice(2),r=process.cwd();switch(t){case"code":await mp(r,e);return;case"login":await Fo();return;case"logout":await Bd(),console.log("OIOXO credential removed from this machine.");return;case"whoami":await yp();return;case"usage":await _p(e);return;case"config":await dp(e);return;case"model":await hp(e);return;case"mcp":await gp(e);return;case"doctor":await vp();return;case"update":xp(Ld);return;case"init":{let n=e.includes("--all"),o=e.indexOf("--command"),s=o>=0?e[o+1]:void 0;await Yd(r,{all:n,command:s});return}case"serve":await $_(r);return;case"status":await rE(r);return;case"--version":case"-v":case"version":console.log(Ld);return;case"--help":case"-h":case"help":case void 0:console.log(k_);return;default:console.log(`oioxo: unknown command "${t}"
|
|
214
|
+
`),console.log(k_),process.exitCode=1}}nE().catch(t=>{console.error(`oioxo-mcp: ${t instanceof Error?t.message:String(t)}`),process.exit(1)});
|