context-mode 1.0.150 → 1.0.152
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/mcp.json +5 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.openclaw-plugin/openclaw.plugin.json +16 -1
- package/.openclaw-plugin/package.json +1 -1
- package/README.md +89 -3
- package/build/adapters/claude-code/hooks.js +2 -2
- package/build/adapters/claude-code/index.js +14 -13
- package/build/adapters/client-map.js +3 -0
- package/build/adapters/detect.js +13 -1
- package/build/adapters/gemini-cli/hooks.d.ts +10 -0
- package/build/adapters/gemini-cli/hooks.js +12 -2
- package/build/adapters/gemini-cli/index.d.ts +21 -1
- package/build/adapters/gemini-cli/index.js +37 -1
- package/build/adapters/kimi/config.d.ts +8 -0
- package/build/adapters/kimi/config.js +8 -0
- package/build/adapters/kimi/hooks.d.ts +28 -0
- package/build/adapters/kimi/hooks.js +34 -0
- package/build/adapters/kimi/index.d.ts +66 -0
- package/build/adapters/kimi/index.js +537 -0
- package/build/adapters/kimi/paths.d.ts +1 -0
- package/build/adapters/kimi/paths.js +12 -0
- package/build/adapters/kiro/hooks.js +2 -2
- package/build/adapters/openclaw/plugin.d.ts +14 -13
- package/build/adapters/openclaw/plugin.js +140 -40
- package/build/adapters/opencode/plugin.js +4 -3
- package/build/adapters/opencode/zod3tov4.js +8 -8
- package/build/adapters/pi/extension.js +9 -24
- package/build/adapters/pi/mcp-bridge.js +37 -0
- package/build/adapters/qwen-code/index.js +7 -7
- package/build/adapters/types.d.ts +39 -2
- package/build/adapters/types.js +55 -2
- package/build/adapters/vscode-copilot/index.js +13 -1
- package/build/cli.js +433 -25
- package/build/executor.js +6 -3
- package/build/runtime.d.ts +81 -1
- package/build/runtime.js +195 -9
- package/build/search/ctx-search-schema.d.ts +90 -0
- package/build/search/ctx-search-schema.js +135 -0
- package/build/search/unified.d.ts +12 -0
- package/build/search/unified.js +17 -2
- package/build/server.d.ts +2 -1
- package/build/server.js +378 -97
- package/build/session/analytics.d.ts +36 -13
- package/build/session/analytics.js +123 -26
- package/build/session/db.d.ts +24 -0
- package/build/session/db.js +41 -0
- package/build/session/extract.js +30 -0
- package/build/session/snapshot.js +24 -0
- package/build/store.d.ts +12 -1
- package/build/store.js +72 -20
- package/build/types.d.ts +7 -0
- package/build/util/project-dir.d.ts +19 -16
- package/build/util/project-dir.js +80 -45
- package/cli.bundle.mjs +371 -320
- package/configs/kimi/hooks.json +54 -0
- package/configs/pi/AGENTS.md +3 -85
- package/hooks/cache-heal-utils.mjs +148 -0
- package/hooks/core/formatters.mjs +26 -0
- package/hooks/core/routing.mjs +9 -1
- package/hooks/core/stdin.mjs +74 -3
- package/hooks/core/tool-naming.mjs +1 -0
- package/hooks/heal-partial-install.mjs +712 -0
- package/hooks/kimi/platform.mjs +1 -0
- package/hooks/kimi/posttooluse.mjs +72 -0
- package/hooks/kimi/precompact.mjs +80 -0
- package/hooks/kimi/pretooluse.mjs +42 -0
- package/hooks/kimi/sessionend.mjs +61 -0
- package/hooks/kimi/sessionstart.mjs +113 -0
- package/hooks/kimi/stop.mjs +61 -0
- package/hooks/kimi/userpromptsubmit.mjs +90 -0
- package/hooks/normalize-hooks.mjs +66 -12
- package/hooks/routing-block.mjs +8 -2
- package/hooks/security.bundle.mjs +1 -1
- package/hooks/session-db.bundle.mjs +6 -4
- package/hooks/session-extract.bundle.mjs +2 -2
- package/hooks/session-helpers.mjs +93 -3
- package/hooks/session-snapshot.bundle.mjs +20 -19
- package/hooks/sessionstart.mjs +64 -0
- package/insight/server.mjs +15 -3
- package/openclaw.plugin.json +16 -1
- package/package.json +1 -1
- package/scripts/heal-installed-plugins.mjs +31 -10
- package/scripts/postinstall.mjs +10 -0
- package/server.bundle.mjs +206 -157
- package/skills/ctx-index/SKILL.md +46 -0
- package/skills/ctx-search/SKILL.md +35 -0
- package/start.mjs +84 -11
- package/build/cache-heal.d.ts +0 -48
- package/build/cache-heal.js +0 -150
- package/build/concurrency/runPool.d.ts +0 -36
- package/build/concurrency/runPool.js +0 -51
- package/build/openclaw/mcp-tools.d.ts +0 -54
- package/build/openclaw/mcp-tools.js +0 -198
- package/build/openclaw/workspace-router.d.ts +0 -29
- package/build/openclaw/workspace-router.js +0 -64
- package/build/openclaw-plugin.d.ts +0 -130
- package/build/openclaw-plugin.js +0 -626
- package/build/opencode-plugin.d.ts +0 -122
- package/build/opencode-plugin.js +0 -375
- package/build/pi-extension.d.ts +0 -14
- package/build/pi-extension.js +0 -451
- package/build/routing-block.d.ts +0 -8
- package/build/routing-block.js +0 -86
- package/build/tool-naming.d.ts +0 -4
- package/build/tool-naming.js +0 -24
package/server.bundle.mjs
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
var nw=Object.create;var wu=Object.defineProperty;var ow=Object.getOwnPropertyDescriptor;var sw=Object.getOwnPropertyNames;var iw=Object.getPrototypeOf,aw=Object.prototype.hasOwnProperty;var ce=(t,e)=>()=>(t&&(e=t(t=0)),e);var O=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),Fe=(t,e)=>{for(var r in e)wu(t,r,{get:e[r],enumerable:!0})},cw=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of sw(e))!aw.call(t,o)&&o!==r&&wu(t,o,{get:()=>e[o],enumerable:!(n=ow(e,o))||n.enumerable});return t};var qh=(t,e,r)=>(r=t!=null?nw(iw(t)):{},cw(e||!t||!t.__esModule?wu(r,"default",{value:t,enumerable:!0}):r,t));var qs=O(de=>{"use strict";Object.defineProperty(de,"__esModule",{value:!0});de.regexpCode=de.getEsmExportName=de.getProperty=de.safeStringify=de.stringify=de.strConcat=de.addCodeArg=de.str=de._=de.nil=de._Code=de.Name=de.IDENTIFIER=de._CodeOrName=void 0;var Fs=class{};de._CodeOrName=Fs;de.IDENTIFIER=/^[a-z$_][a-z$_0-9]*$/i;var Dn=class extends Fs{constructor(e){if(super(),!de.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}}};de.Name=Dn;var Ot=class extends Fs{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 Dn&&(r[n.str]=(r[n.str]||0)+1),r),{})}};de._Code=Ot;de.nil=new Ot("");function U_(t,...e){let r=[t[0]],n=0;for(;n<e.length;)ap(r,e[n]),r.push(t[++n]);return new Ot(r)}de._=U_;var ip=new Ot("+");function H_(t,...e){let r=[Zs(t[0])],n=0;for(;n<e.length;)r.push(ip),ap(r,e[n]),r.push(ip,Zs(t[++n]));return s$(r),new Ot(r)}de.str=H_;function ap(t,e){e instanceof Ot?t.push(...e._items):e instanceof Dn?t.push(e):t.push(c$(e))}de.addCodeArg=ap;function s$(t){let e=1;for(;e<t.length-1;){if(t[e]===ip){let r=i$(t[e-1],t[e+1]);if(r!==void 0){t.splice(e-1,3,r);continue}t[e++]="+"}e++}}function i$(t,e){if(e==='""')return t;if(t==='""')return e;if(typeof t=="string")return e instanceof Dn||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 Dn))return`"${t}${e.slice(1)}`}function a$(t,e){return e.emptyStr()?t:t.emptyStr()?e:H_`${t}${e}`}de.strConcat=a$;function c$(t){return typeof t=="number"||typeof t=="boolean"||t===null?t:Zs(Array.isArray(t)?t.join(","):t)}function u$(t){return new Ot(Zs(t))}de.stringify=u$;function Zs(t){return JSON.stringify(t).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}de.safeStringify=Zs;function l$(t){return typeof t=="string"&&de.IDENTIFIER.test(t)?new Ot(`.${t}`):U_`[${t}]`}de.getProperty=l$;function d$(t){if(typeof t=="string"&&de.IDENTIFIER.test(t))return new Ot(`${t}`);throw new Error(`CodeGen: invalid export name: ${t}, use explicit $id name mapping`)}de.getEsmExportName=d$;function p$(t){return new Ot(t.toString())}de.regexpCode=p$});var lp=O(ht=>{"use strict";Object.defineProperty(ht,"__esModule",{value:!0});ht.ValueScope=ht.ValueScopeName=ht.Scope=ht.varKinds=ht.UsedValueState=void 0;var mt=qs(),cp=class extends Error{constructor(e){super(`CodeGen: "code" for ${e} not defined`),this.value=e.value}},Ua;(function(t){t[t.Started=0]="Started",t[t.Completed=1]="Completed"})(Ua||(ht.UsedValueState=Ua={}));ht.varKinds={const:new mt.Name("const"),let:new mt.Name("let"),var:new mt.Name("var")};var Ha=class{constructor({prefixes:e,parent:r}={}){this._names={},this._prefixes=e,this._parent=r}toName(e){return e instanceof mt.Name?e:this.name(e)}name(e){return new mt.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}}};ht.Scope=Ha;var Fa=class extends mt.Name{constructor(e,r){super(r),this.prefix=e}setValue(e,{property:r,itemIndex:n}){this.value=e,this.scopePath=(0,mt._)`.${new mt.Name(r)}[${n}]`}};ht.ValueScopeName=Fa;var f$=(0,mt._)`\n`,up=class extends Ha{constructor(e){super(e),this._values={},this._scope=e.scope,this.opts={...e,_n:e.lines?f$:mt.nil}}get(){return this._scope}name(e){return new Fa(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,mt._)`${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=mt.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,Ua.Started);let l=r(u);if(l){let d=this.opts.es5?ht.varKinds.var:ht.varKinds.const;s=(0,mt._)`${s}${d} ${u} = ${l};${this.opts._n}`}else if(l=o?.(u))s=(0,mt._)`${s}${l}${this.opts._n}`;else throw new cp(u);c.set(u,Ua.Completed)})}return s}};ht.ValueScope=up});var Q=O(ee=>{"use strict";Object.defineProperty(ee,"__esModule",{value:!0});ee.or=ee.and=ee.not=ee.CodeGen=ee.operators=ee.varKinds=ee.ValueScopeName=ee.ValueScope=ee.Scope=ee.Name=ee.regexpCode=ee.stringify=ee.getProperty=ee.nil=ee.strConcat=ee.str=ee._=void 0;var ae=qs(),Kt=lp(),Kr=qs();Object.defineProperty(ee,"_",{enumerable:!0,get:function(){return Kr._}});Object.defineProperty(ee,"str",{enumerable:!0,get:function(){return Kr.str}});Object.defineProperty(ee,"strConcat",{enumerable:!0,get:function(){return Kr.strConcat}});Object.defineProperty(ee,"nil",{enumerable:!0,get:function(){return Kr.nil}});Object.defineProperty(ee,"getProperty",{enumerable:!0,get:function(){return Kr.getProperty}});Object.defineProperty(ee,"stringify",{enumerable:!0,get:function(){return Kr.stringify}});Object.defineProperty(ee,"regexpCode",{enumerable:!0,get:function(){return Kr.regexpCode}});Object.defineProperty(ee,"Name",{enumerable:!0,get:function(){return Kr.Name}});var Va=lp();Object.defineProperty(ee,"Scope",{enumerable:!0,get:function(){return Va.Scope}});Object.defineProperty(ee,"ValueScope",{enumerable:!0,get:function(){return Va.ValueScope}});Object.defineProperty(ee,"ValueScopeName",{enumerable:!0,get:function(){return Va.ValueScopeName}});Object.defineProperty(ee,"varKinds",{enumerable:!0,get:function(){return Va.varKinds}});ee.operators={GT:new ae._Code(">"),GTE:new ae._Code(">="),LT:new ae._Code("<"),LTE:new ae._Code("<="),EQ:new ae._Code("==="),NEQ:new ae._Code("!=="),NOT:new ae._Code("!"),OR:new ae._Code("||"),AND:new ae._Code("&&"),ADD:new ae._Code("+")};var Er=class{optimizeNodes(){return this}optimizeNames(e,r){return this}},dp=class extends Er{constructor(e,r,n){super(),this.varKind=e,this.name=r,this.rhs=n}render({es5:e,_n:r}){let n=e?Kt.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=$o(this.rhs,e,r)),this}get names(){return this.rhs instanceof ae._CodeOrName?this.rhs.names:{}}},Za=class extends Er{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 ae.Name&&!e[this.lhs.str]&&!this.sideEffects))return this.rhs=$o(this.rhs,e,r),this}get names(){let e=this.lhs instanceof ae.Name?{}:{...this.lhs.names};return Ba(e,this.rhs)}},pp=class extends Za{constructor(e,r,n,o){super(e,n,o),this.op=r}render({_n:e}){return`${this.lhs} ${this.op}= ${this.rhs};`+e}},fp=class extends Er{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){return`${this.label}:`+e}},mp=class extends Er{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){return`break${this.label?` ${this.label}`:""};`+e}},hp=class extends Er{constructor(e){super(),this.error=e}render({_n:e}){return`throw ${this.error};`+e}get names(){return this.error.names}},gp=class extends Er{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=$o(this.code,e,r),this}get names(){return this.code instanceof ae._CodeOrName?this.code.names:{}}},Bs=class extends Er{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)||(m$(e,s.names),n.splice(o,1))}return n.length>0?this:void 0}get names(){return this.nodes.reduce((e,r)=>zn(e,r.names),{})}},wr=class extends Bs{render(e){return"{"+e._n+super.render(e)+"}"+e._n}},yp=class extends Bs{},Po=class extends wr{};Po.kind="else";var Mn=class t extends wr{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 Po(n):n}if(r)return e===!1?r instanceof t?r:r.nodes:this.nodes.length?this:new t(F_(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=$o(this.condition,e,r),this}get names(){let e=super.names;return Ba(e,this.condition),this.else&&zn(e,this.else.names),e}};Mn.kind="if";var jn=class extends wr{};jn.kind="for";var _p=class extends jn{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=$o(this.iteration,e,r),this}get names(){return zn(super.names,this.iteration.names)}},vp=class extends jn{constructor(e,r,n,o){super(),this.varKind=e,this.name=r,this.from=n,this.to=o}render(e){let r=e.es5?Kt.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=Ba(super.names,this.from);return Ba(e,this.to)}},qa=class extends jn{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=$o(this.iterable,e,r),this}get names(){return zn(super.names,this.iterable.names)}},Vs=class extends wr{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)}};Vs.kind="func";var Ws=class extends Bs{render(e){return"return "+super.render(e)}};Ws.kind="return";var xp=class extends wr{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&&zn(e,this.catch.names),this.finally&&zn(e,this.finally.names),e}},Ks=class extends wr{constructor(e){super(),this.error=e}render(e){return`catch(${this.error})`+super.render(e)}};Ks.kind="catch";var Gs=class extends wr{render(e){return"finally"+super.render(e)}};Gs.kind="finally";var bp=class{constructor(e,r={}){this._values={},this._blockStarts=[],this._constants={},this.opts={...r,_n:r.lines?`
|
|
3
|
-
`:""},this._extScope=e,this._scope=new Kt.Scope({parent:e}),this._nodes=[new yp]}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 dp(e,s,n)),s}const(e,r,n){return this._def(Kt.varKinds.const,e,r,n)}let(e,r,n){return this._def(Kt.varKinds.let,e,r,n)}var(e,r,n){return this._def(Kt.varKinds.var,e,r,n)}assign(e,r,n){return this._leafNode(new Za(e,r,n))}add(e,r){return this._leafNode(new pp(e,ee.operators.ADD,r))}code(e){return typeof e=="function"?e():e!==ae.nil&&this._leafNode(new gp(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,ae.addCodeArg)(r,o));return r.push("}"),new ae._Code(r)}if(e,r,n){if(this._blockNode(new Mn(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 Mn(e))}else(){return this._elseNode(new Po)}endIf(){return this._endBlockNode(Mn,Po)}_for(e,r){return this._blockNode(e),r&&this.code(r).endFor(),this}for(e,r){return this._for(new _p(e),r)}forRange(e,r,n,o,s=this.opts.es5?Kt.varKinds.var:Kt.varKinds.let){let i=this._scope.toName(e);return this._for(new vp(s,i,r,n),()=>o(i))}forOf(e,r,n,o=Kt.varKinds.const){let s=this._scope.toName(e);if(this.opts.es5){let i=r instanceof ae.Name?r:this.var("_arr",r);return this.forRange("_i",0,(0,ae._)`${i}.length`,a=>{this.var(s,(0,ae._)`${i}[${a}]`),n(s)})}return this._for(new qa("of",o,s,r),()=>n(s))}forIn(e,r,n,o=this.opts.es5?Kt.varKinds.var:Kt.varKinds.const){if(this.opts.ownProperties)return this.forOf(e,(0,ae._)`Object.keys(${r})`,n);let s=this._scope.toName(e);return this._for(new qa("in",o,s,r),()=>n(s))}endFor(){return this._endBlockNode(jn)}label(e){return this._leafNode(new fp(e))}break(e){return this._leafNode(new mp(e))}return(e){let r=new Ws;if(this._blockNode(r),this.code(e),r.nodes.length!==1)throw new Error('CodeGen: "return" should have one node');return this._endBlockNode(Ws)}try(e,r,n){if(!r&&!n)throw new Error('CodeGen: "try" without "catch" and "finally"');let o=new xp;if(this._blockNode(o),this.code(e),r){let s=this.name("e");this._currNode=o.catch=new Ks(s),r(s)}return n&&(this._currNode=o.finally=new Gs,this.code(n)),this._endBlockNode(Ks,Gs)}throw(e){return this._leafNode(new hp(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=ae.nil,n,o){return this._blockNode(new Vs(e,r,n)),o&&this.code(o).endFunc(),this}endFunc(){return this._endBlockNode(Vs)}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 Mn))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}};ee.CodeGen=bp;function zn(t,e){for(let r in e)t[r]=(t[r]||0)+(e[r]||0);return t}function Ba(t,e){return e instanceof ae._CodeOrName?zn(t,e.names):t}function $o(t,e,r){if(t instanceof ae.Name)return n(t);if(!o(t))return t;return new ae._Code(t._items.reduce((s,i)=>(i instanceof ae.Name&&(i=n(i)),i instanceof ae._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 ae._Code&&s._items.some(i=>i instanceof ae.Name&&e[i.str]===1&&r[i.str]!==void 0)}}function m$(t,e){for(let r in e)t[r]=(t[r]||0)-(e[r]||0)}function F_(t){return typeof t=="boolean"||typeof t=="number"||t===null?!t:(0,ae._)`!${Sp(t)}`}ee.not=F_;var h$=Z_(ee.operators.AND);function g$(...t){return t.reduce(h$)}ee.and=g$;var y$=Z_(ee.operators.OR);function _$(...t){return t.reduce(y$)}ee.or=_$;function Z_(t){return(e,r)=>e===ae.nil?r:r===ae.nil?e:(0,ae._)`${Sp(e)} ${t} ${Sp(r)}`}function Sp(t){return t instanceof ae.Name?t:(0,ae._)`(${t})`}});var ue=O(te=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});te.checkStrictMode=te.getErrorPath=te.Type=te.useFunc=te.setEvaluated=te.evaluatedPropsToName=te.mergeEvaluated=te.eachItem=te.unescapeJsonPointer=te.escapeJsonPointer=te.escapeFragment=te.unescapeFragment=te.schemaRefOrVal=te.schemaHasRulesButRef=te.schemaHasRules=te.checkUnknownRules=te.alwaysValidSchema=te.toHash=void 0;var ge=Q(),v$=qs();function x$(t){let e={};for(let r of t)e[r]=!0;return e}te.toHash=x$;function b$(t,e){return typeof e=="boolean"?e:Object.keys(e).length===0?!0:(V_(t,e),!W_(e,t.self.RULES.all))}te.alwaysValidSchema=b$;function V_(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]||J_(t,`unknown keyword: "${s}"`)}te.checkUnknownRules=V_;function W_(t,e){if(typeof t=="boolean")return!t;for(let r in t)if(e[r])return!0;return!1}te.schemaHasRules=W_;function S$(t,e){if(typeof t=="boolean")return!t;for(let r in t)if(r!=="$ref"&&e.all[r])return!0;return!1}te.schemaHasRulesButRef=S$;function k$({topSchemaRef:t,schemaPath:e},r,n,o){if(!o){if(typeof r=="number"||typeof r=="boolean")return r;if(typeof r=="string")return(0,ge._)`${r}`}return(0,ge._)`${t}${e}${(0,ge.getProperty)(n)}`}te.schemaRefOrVal=k$;function E$(t){return K_(decodeURIComponent(t))}te.unescapeFragment=E$;function w$(t){return encodeURIComponent(Ep(t))}te.escapeFragment=w$;function Ep(t){return typeof t=="number"?`${t}`:t.replace(/~/g,"~0").replace(/\//g,"~1")}te.escapeJsonPointer=Ep;function K_(t){return t.replace(/~1/g,"/").replace(/~0/g,"~")}te.unescapeJsonPointer=K_;function T$(t,e){if(Array.isArray(t))for(let r of t)e(r);else e(t)}te.eachItem=T$;function q_({mergeNames:t,mergeToName:e,mergeValues:r,resultToName:n}){return(o,s,i,a)=>{let c=i===void 0?s:i instanceof ge.Name?(s instanceof ge.Name?t(o,s,i):e(o,s,i),i):s instanceof ge.Name?(e(o,i,s),s):r(s,i);return a===ge.Name&&!(c instanceof ge.Name)?n(o,c):c}}te.mergeEvaluated={props:q_({mergeNames:(t,e,r)=>t.if((0,ge._)`${r} !== true && ${e} !== undefined`,()=>{t.if((0,ge._)`${e} === true`,()=>t.assign(r,!0),()=>t.assign(r,(0,ge._)`${r} || {}`).code((0,ge._)`Object.assign(${r}, ${e})`))}),mergeToName:(t,e,r)=>t.if((0,ge._)`${r} !== true`,()=>{e===!0?t.assign(r,!0):(t.assign(r,(0,ge._)`${r} || {}`),wp(t,r,e))}),mergeValues:(t,e)=>t===!0?!0:{...t,...e},resultToName:G_}),items:q_({mergeNames:(t,e,r)=>t.if((0,ge._)`${r} !== true && ${e} !== undefined`,()=>t.assign(r,(0,ge._)`${e} === true ? true : ${r} > ${e} ? ${r} : ${e}`)),mergeToName:(t,e,r)=>t.if((0,ge._)`${r} !== true`,()=>t.assign(r,e===!0?!0:(0,ge._)`${r} > ${e} ? ${r} : ${e}`)),mergeValues:(t,e)=>t===!0?!0:Math.max(t,e),resultToName:(t,e)=>t.var("items",e)})};function G_(t,e){if(e===!0)return t.var("props",!0);let r=t.var("props",(0,ge._)`{}`);return e!==void 0&&wp(t,r,e),r}te.evaluatedPropsToName=G_;function wp(t,e,r){Object.keys(r).forEach(n=>t.assign((0,ge._)`${e}${(0,ge.getProperty)(n)}`,!0))}te.setEvaluated=wp;var B_={};function R$(t,e){return t.scopeValue("func",{ref:e,code:B_[e.code]||(B_[e.code]=new v$._Code(e.code))})}te.useFunc=R$;var kp;(function(t){t[t.Num=0]="Num",t[t.Str=1]="Str"})(kp||(te.Type=kp={}));function P$(t,e,r){if(t instanceof ge.Name){let n=e===kp.Num;return r?n?(0,ge._)`"[" + ${t} + "]"`:(0,ge._)`"['" + ${t} + "']"`:n?(0,ge._)`"/" + ${t}`:(0,ge._)`"/" + ${t}.replace(/~/g, "~0").replace(/\\//g, "~1")`}return r?(0,ge.getProperty)(t).toString():"/"+Ep(t)}te.getErrorPath=P$;function J_(t,e,r=t.opts.strictSchema){if(r){if(e=`strict mode: ${e}`,r===!0)throw new Error(e);t.self.logger.warn(e)}}te.checkStrictMode=J_});var Tr=O(Tp=>{"use strict";Object.defineProperty(Tp,"__esModule",{value:!0});var tt=Q(),$$={data:new tt.Name("data"),valCxt:new tt.Name("valCxt"),instancePath:new tt.Name("instancePath"),parentData:new tt.Name("parentData"),parentDataProperty:new tt.Name("parentDataProperty"),rootData:new tt.Name("rootData"),dynamicAnchors:new tt.Name("dynamicAnchors"),vErrors:new tt.Name("vErrors"),errors:new tt.Name("errors"),this:new tt.Name("this"),self:new tt.Name("self"),scope:new tt.Name("scope"),json:new tt.Name("json"),jsonPos:new tt.Name("jsonPos"),jsonLen:new tt.Name("jsonLen"),jsonPart:new tt.Name("jsonPart")};Tp.default=$$});var Js=O(rt=>{"use strict";Object.defineProperty(rt,"__esModule",{value:!0});rt.extendErrors=rt.resetErrorsCount=rt.reportExtraError=rt.reportError=rt.keyword$DataError=rt.keywordError=void 0;var le=Q(),Wa=ue(),it=Tr();rt.keywordError={message:({keyword:t})=>(0,le.str)`must pass "${t}" keyword validation`};rt.keyword$DataError={message:({keyword:t,schemaType:e})=>e?(0,le.str)`"${t}" keyword must be ${e} ($data)`:(0,le.str)`"${t}" keyword is invalid ($data)`};function C$(t,e=rt.keywordError,r,n){let{it:o}=t,{gen:s,compositeRule:i,allErrors:a}=o,c=Q_(t,e,r);n??(i||a)?X_(s,c):Y_(o,(0,le._)`[${c}]`)}rt.reportError=C$;function O$(t,e=rt.keywordError,r){let{it:n}=t,{gen:o,compositeRule:s,allErrors:i}=n,a=Q_(t,e,r);X_(o,a),s||i||Y_(n,it.default.vErrors)}rt.reportExtraError=O$;function I$(t,e){t.assign(it.default.errors,e),t.if((0,le._)`${it.default.vErrors} !== null`,()=>t.if(e,()=>t.assign((0,le._)`${it.default.vErrors}.length`,e),()=>t.assign(it.default.vErrors,null)))}rt.resetErrorsCount=I$;function A$({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,it.default.errors,a=>{t.const(i,(0,le._)`${it.default.vErrors}[${a}]`),t.if((0,le._)`${i}.instancePath === undefined`,()=>t.assign((0,le._)`${i}.instancePath`,(0,le.strConcat)(it.default.instancePath,s.errorPath))),t.assign((0,le._)`${i}.schemaPath`,(0,le.str)`${s.errSchemaPath}/${e}`),s.opts.verbose&&(t.assign((0,le._)`${i}.schema`,r),t.assign((0,le._)`${i}.data`,n))})}rt.extendErrors=A$;function X_(t,e){let r=t.const("err",e);t.if((0,le._)`${it.default.vErrors} === null`,()=>t.assign(it.default.vErrors,(0,le._)`[${r}]`),(0,le._)`${it.default.vErrors}.push(${r})`),t.code((0,le._)`${it.default.errors}++`)}function Y_(t,e){let{gen:r,validateName:n,schemaEnv:o}=t;o.$async?r.throw((0,le._)`new ${t.ValidationError}(${e})`):(r.assign((0,le._)`${n}.errors`,e),r.return(!1))}var Ln={keyword:new le.Name("keyword"),schemaPath:new le.Name("schemaPath"),params:new le.Name("params"),propertyName:new le.Name("propertyName"),message:new le.Name("message"),schema:new le.Name("schema"),parentSchema:new le.Name("parentSchema")};function Q_(t,e,r){let{createErrors:n}=t.it;return n===!1?(0,le._)`{}`:N$(t,e,r)}function N$(t,e,r={}){let{gen:n,it:o}=t,s=[D$(o,r),M$(t,r)];return j$(t,e,s),n.object(...s)}function D$({errorPath:t},{instancePath:e}){let r=e?(0,le.str)`${t}${(0,Wa.getErrorPath)(e,Wa.Type.Str)}`:t;return[it.default.instancePath,(0,le.strConcat)(it.default.instancePath,r)]}function M$({keyword:t,it:{errSchemaPath:e}},{schemaPath:r,parentSchema:n}){let o=n?e:(0,le.str)`${e}/${t}`;return r&&(o=(0,le.str)`${o}${(0,Wa.getErrorPath)(r,Wa.Type.Str)}`),[Ln.schemaPath,o]}function j$(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([Ln.keyword,o],[Ln.params,typeof e=="function"?e(t):e||(0,le._)`{}`]),c.messages&&n.push([Ln.message,typeof r=="function"?r(t):r]),c.verbose&&n.push([Ln.schema,i],[Ln.parentSchema,(0,le._)`${l}${d}`],[it.default.data,s]),u&&n.push([Ln.propertyName,u])}});var tv=O(Co=>{"use strict";Object.defineProperty(Co,"__esModule",{value:!0});Co.boolOrEmptySchema=Co.topBoolOrEmptySchema=void 0;var z$=Js(),L$=Q(),U$=Tr(),H$={message:"boolean schema is false"};function F$(t){let{gen:e,schema:r,validateName:n}=t;r===!1?ev(t,!1):typeof r=="object"&&r.$async===!0?e.return(U$.default.data):(e.assign((0,L$._)`${n}.errors`,null),e.return(!0))}Co.topBoolOrEmptySchema=F$;function Z$(t,e){let{gen:r,schema:n}=t;n===!1?(r.var(e,!1),ev(t)):r.var(e,!0)}Co.boolOrEmptySchema=Z$;function ev(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,z$.reportError)(o,H$,void 0,e)}});var Rp=O(Oo=>{"use strict";Object.defineProperty(Oo,"__esModule",{value:!0});Oo.getRules=Oo.isJSONType=void 0;var q$=["string","number","integer","boolean","null","object","array"],B$=new Set(q$);function V$(t){return typeof t=="string"&&B$.has(t)}Oo.isJSONType=V$;function W$(){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:{}}}Oo.getRules=W$});var Pp=O(Gr=>{"use strict";Object.defineProperty(Gr,"__esModule",{value:!0});Gr.shouldUseRule=Gr.shouldUseGroup=Gr.schemaHasRulesForType=void 0;function K$({schema:t,self:e},r){let n=e.RULES.types[r];return n&&n!==!0&&rv(t,n)}Gr.schemaHasRulesForType=K$;function rv(t,e){return e.rules.some(r=>nv(t,r))}Gr.shouldUseGroup=rv;function nv(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))}Gr.shouldUseRule=nv});var Xs=O(nt=>{"use strict";Object.defineProperty(nt,"__esModule",{value:!0});nt.reportTypeError=nt.checkDataTypes=nt.checkDataType=nt.coerceAndCheckDataType=nt.getJSONTypes=nt.getSchemaTypes=nt.DataType=void 0;var G$=Rp(),J$=Pp(),X$=Js(),X=Q(),ov=ue(),Io;(function(t){t[t.Correct=0]="Correct",t[t.Wrong=1]="Wrong"})(Io||(nt.DataType=Io={}));function Y$(t){let e=sv(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}nt.getSchemaTypes=Y$;function sv(t){let e=Array.isArray(t)?t:t?[t]:[];if(e.every(G$.isJSONType))return e;throw new Error("type must be JSONType or JSONType[]: "+e.join(","))}nt.getJSONTypes=sv;function Q$(t,e){let{gen:r,data:n,opts:o}=t,s=eC(e,o.coerceTypes),i=e.length>0&&!(s.length===0&&e.length===1&&(0,J$.schemaHasRulesForType)(t,e[0]));if(i){let a=Cp(e,n,o.strictNumbers,Io.Wrong);r.if(a,()=>{s.length?tC(t,e,s):Op(t)})}return i}nt.coerceAndCheckDataType=Q$;var iv=new Set(["string","number","integer","boolean","null"]);function eC(t,e){return e?t.filter(r=>iv.has(r)||e==="array"&&r==="array"):[]}function tC(t,e,r){let{gen:n,data:o,opts:s}=t,i=n.let("dataType",(0,X._)`typeof ${o}`),a=n.let("coerced",(0,X._)`undefined`);s.coerceTypes==="array"&&n.if((0,X._)`${i} == 'object' && Array.isArray(${o}) && ${o}.length == 1`,()=>n.assign(o,(0,X._)`${o}[0]`).assign(i,(0,X._)`typeof ${o}`).if(Cp(e,o,s.strictNumbers),()=>n.assign(a,o))),n.if((0,X._)`${a} !== undefined`);for(let u of r)(iv.has(u)||u==="array"&&s.coerceTypes==="array")&&c(u);n.else(),Op(t),n.endIf(),n.if((0,X._)`${a} !== undefined`,()=>{n.assign(o,a),rC(t,a)});function c(u){switch(u){case"string":n.elseIf((0,X._)`${i} == "number" || ${i} == "boolean"`).assign(a,(0,X._)`"" + ${o}`).elseIf((0,X._)`${o} === null`).assign(a,(0,X._)`""`);return;case"number":n.elseIf((0,X._)`${i} == "boolean" || ${o} === null
|
|
2
|
+
var Lw=Object.create;var Du=Object.defineProperty;var Hw=Object.getOwnPropertyDescriptor;var Uw=Object.getOwnPropertyNames;var Fw=Object.getPrototypeOf,Zw=Object.prototype.hasOwnProperty;var ne=(t,e)=>()=>(t&&(e=t(t=0)),e);var N=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),He=(t,e)=>{for(var r in e)Du(t,r,{get:e[r],enumerable:!0})},Bw=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of Uw(e))!Zw.call(t,o)&&o!==r&&Du(t,o,{get:()=>e[o],enumerable:!(n=Hw(e,o))||n.enumerable});return t};var lg=(t,e,r)=>(r=t!=null?Lw(Fw(t)):{},Bw(e||!t||!t.__esModule?Du(r,"default",{value:t,enumerable:!0}):r,t));var Gs=N(de=>{"use strict";Object.defineProperty(de,"__esModule",{value:!0});de.regexpCode=de.getEsmExportName=de.getProperty=de.safeStringify=de.stringify=de.strConcat=de.addCodeArg=de.str=de._=de.nil=de._Code=de.Name=de.IDENTIFIER=de._CodeOrName=void 0;var Ws=class{};de._CodeOrName=Ws;de.IDENTIFIER=/^[a-z$_][a-z$_0-9]*$/i;var Ln=class extends Ws{constructor(e){if(super(),!de.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}}};de.Name=Ln;var Dt=class extends Ws{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 Ln&&(r[n.str]=(r[n.str]||0)+1),r),{})}};de._Code=Dt;de.nil=new Dt("");function ix(t,...e){let r=[t[0]],n=0;for(;n<e.length;)yp(r,e[n]),r.push(t[++n]);return new Dt(r)}de._=ix;var gp=new Dt("+");function ax(t,...e){let r=[Ks(t[0])],n=0;for(;n<e.length;)r.push(gp),yp(r,e[n]),r.push(gp,Ks(t[++n]));return U$(r),new Dt(r)}de.str=ax;function yp(t,e){e instanceof Dt?t.push(...e._items):e instanceof Ln?t.push(e):t.push(B$(e))}de.addCodeArg=yp;function U$(t){let e=1;for(;e<t.length-1;){if(t[e]===gp){let r=F$(t[e-1],t[e+1]);if(r!==void 0){t.splice(e-1,3,r);continue}t[e++]="+"}e++}}function F$(t,e){if(e==='""')return t;if(t==='""')return e;if(typeof t=="string")return e instanceof Ln||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 Ln))return`"${t}${e.slice(1)}`}function Z$(t,e){return e.emptyStr()?t:t.emptyStr()?e:ax`${t}${e}`}de.strConcat=Z$;function B$(t){return typeof t=="number"||typeof t=="boolean"||t===null?t:Ks(Array.isArray(t)?t.join(","):t)}function q$(t){return new Dt(Ks(t))}de.stringify=q$;function Ks(t){return JSON.stringify(t).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}de.safeStringify=Ks;function V$(t){return typeof t=="string"&&de.IDENTIFIER.test(t)?new Dt(`.${t}`):ix`[${t}]`}de.getProperty=V$;function W$(t){if(typeof t=="string"&&de.IDENTIFIER.test(t))return new Dt(`${t}`);throw new Error(`CodeGen: invalid export name: ${t}, use explicit $id name mapping`)}de.getEsmExportName=W$;function K$(t){return new Dt(t.toString())}de.regexpCode=K$});var Sp=N(yt=>{"use strict";Object.defineProperty(yt,"__esModule",{value:!0});yt.ValueScope=yt.ValueScopeName=yt.Scope=yt.varKinds=yt.UsedValueState=void 0;var gt=Gs(),_p=class extends Error{constructor(e){super(`CodeGen: "code" for ${e} not defined`),this.value=e.value}},Wa;(function(t){t[t.Started=0]="Started",t[t.Completed=1]="Completed"})(Wa||(yt.UsedValueState=Wa={}));yt.varKinds={const:new gt.Name("const"),let:new gt.Name("let"),var:new gt.Name("var")};var Ka=class{constructor({prefixes:e,parent:r}={}){this._names={},this._prefixes=e,this._parent=r}toName(e){return e instanceof gt.Name?e:this.name(e)}name(e){return new gt.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}}};yt.Scope=Ka;var Ga=class extends gt.Name{constructor(e,r){super(r),this.prefix=e}setValue(e,{property:r,itemIndex:n}){this.value=e,this.scopePath=(0,gt._)`.${new gt.Name(r)}[${n}]`}};yt.ValueScopeName=Ga;var G$=(0,gt._)`\n`,xp=class extends Ka{constructor(e){super(e),this._values={},this._scope=e.scope,this.opts={...e,_n:e.lines?G$:gt.nil}}get(){return this._scope}name(e){return new Ga(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,gt._)`${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=gt.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,Wa.Started);let l=r(u);if(l){let d=this.opts.es5?yt.varKinds.var:yt.varKinds.const;s=(0,gt._)`${s}${d} ${u} = ${l};${this.opts._n}`}else if(l=o?.(u))s=(0,gt._)`${s}${l}${this.opts._n}`;else throw new _p(u);c.set(u,Wa.Completed)})}return s}};yt.ValueScope=xp});var Q=N(ee=>{"use strict";Object.defineProperty(ee,"__esModule",{value:!0});ee.or=ee.and=ee.not=ee.CodeGen=ee.operators=ee.varKinds=ee.ValueScopeName=ee.ValueScope=ee.Scope=ee.Name=ee.regexpCode=ee.stringify=ee.getProperty=ee.nil=ee.strConcat=ee.str=ee._=void 0;var ce=Gs(),Yt=Sp(),Qr=Gs();Object.defineProperty(ee,"_",{enumerable:!0,get:function(){return Qr._}});Object.defineProperty(ee,"str",{enumerable:!0,get:function(){return Qr.str}});Object.defineProperty(ee,"strConcat",{enumerable:!0,get:function(){return Qr.strConcat}});Object.defineProperty(ee,"nil",{enumerable:!0,get:function(){return Qr.nil}});Object.defineProperty(ee,"getProperty",{enumerable:!0,get:function(){return Qr.getProperty}});Object.defineProperty(ee,"stringify",{enumerable:!0,get:function(){return Qr.stringify}});Object.defineProperty(ee,"regexpCode",{enumerable:!0,get:function(){return Qr.regexpCode}});Object.defineProperty(ee,"Name",{enumerable:!0,get:function(){return Qr.Name}});var Qa=Sp();Object.defineProperty(ee,"Scope",{enumerable:!0,get:function(){return Qa.Scope}});Object.defineProperty(ee,"ValueScope",{enumerable:!0,get:function(){return Qa.ValueScope}});Object.defineProperty(ee,"ValueScopeName",{enumerable:!0,get:function(){return Qa.ValueScopeName}});Object.defineProperty(ee,"varKinds",{enumerable:!0,get:function(){return Qa.varKinds}});ee.operators={GT:new ce._Code(">"),GTE:new ce._Code(">="),LT:new ce._Code("<"),LTE:new ce._Code("<="),EQ:new ce._Code("==="),NEQ:new ce._Code("!=="),NOT:new ce._Code("!"),OR:new ce._Code("||"),AND:new ce._Code("&&"),ADD:new ce._Code("+")};var $r=class{optimizeNodes(){return this}optimizeNames(e,r){return this}},vp=class extends $r{constructor(e,r,n){super(),this.varKind=e,this.name=r,this.rhs=n}render({es5:e,_n:r}){let n=e?Yt.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=No(this.rhs,e,r)),this}get names(){return this.rhs instanceof ce._CodeOrName?this.rhs.names:{}}},Ja=class extends $r{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 ce.Name&&!e[this.lhs.str]&&!this.sideEffects))return this.rhs=No(this.rhs,e,r),this}get names(){let e=this.lhs instanceof ce.Name?{}:{...this.lhs.names};return Ya(e,this.rhs)}},bp=class extends Ja{constructor(e,r,n,o){super(e,n,o),this.op=r}render({_n:e}){return`${this.lhs} ${this.op}= ${this.rhs};`+e}},kp=class extends $r{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){return`${this.label}:`+e}},Ep=class extends $r{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){return`break${this.label?` ${this.label}`:""};`+e}},wp=class extends $r{constructor(e){super(),this.error=e}render({_n:e}){return`throw ${this.error};`+e}get names(){return this.error.names}},Tp=class extends $r{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=No(this.code,e,r),this}get names(){return this.code instanceof ce._CodeOrName?this.code.names:{}}},Js=class extends $r{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)||(J$(e,s.names),n.splice(o,1))}return n.length>0?this:void 0}get names(){return this.nodes.reduce((e,r)=>Fn(e,r.names),{})}},Cr=class extends Js{render(e){return"{"+e._n+super.render(e)+"}"+e._n}},Pp=class extends Js{},Ao=class extends Cr{};Ao.kind="else";var Hn=class t extends Cr{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 Ao(n):n}if(r)return e===!1?r instanceof t?r:r.nodes:this.nodes.length?this:new t(cx(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=No(this.condition,e,r),this}get names(){let e=super.names;return Ya(e,this.condition),this.else&&Fn(e,this.else.names),e}};Hn.kind="if";var Un=class extends Cr{};Un.kind="for";var Rp=class extends Un{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=No(this.iteration,e,r),this}get names(){return Fn(super.names,this.iteration.names)}},$p=class extends Un{constructor(e,r,n,o){super(),this.varKind=e,this.name=r,this.from=n,this.to=o}render(e){let r=e.es5?Yt.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=Ya(super.names,this.from);return Ya(e,this.to)}},Xa=class extends Un{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=No(this.iterable,e,r),this}get names(){return Fn(super.names,this.iterable.names)}},Xs=class extends Cr{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)}};Xs.kind="func";var Ys=class extends Js{render(e){return"return "+super.render(e)}};Ys.kind="return";var Cp=class extends Cr{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&&Fn(e,this.catch.names),this.finally&&Fn(e,this.finally.names),e}},Qs=class extends Cr{constructor(e){super(),this.error=e}render(e){return`catch(${this.error})`+super.render(e)}};Qs.kind="catch";var ei=class extends Cr{render(e){return"finally"+super.render(e)}};ei.kind="finally";var Op=class{constructor(e,r={}){this._values={},this._blockStarts=[],this._constants={},this.opts={...r,_n:r.lines?`
|
|
3
|
+
`:""},this._extScope=e,this._scope=new Yt.Scope({parent:e}),this._nodes=[new Pp]}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 vp(e,s,n)),s}const(e,r,n){return this._def(Yt.varKinds.const,e,r,n)}let(e,r,n){return this._def(Yt.varKinds.let,e,r,n)}var(e,r,n){return this._def(Yt.varKinds.var,e,r,n)}assign(e,r,n){return this._leafNode(new Ja(e,r,n))}add(e,r){return this._leafNode(new bp(e,ee.operators.ADD,r))}code(e){return typeof e=="function"?e():e!==ce.nil&&this._leafNode(new Tp(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,ce.addCodeArg)(r,o));return r.push("}"),new ce._Code(r)}if(e,r,n){if(this._blockNode(new Hn(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 Hn(e))}else(){return this._elseNode(new Ao)}endIf(){return this._endBlockNode(Hn,Ao)}_for(e,r){return this._blockNode(e),r&&this.code(r).endFor(),this}for(e,r){return this._for(new Rp(e),r)}forRange(e,r,n,o,s=this.opts.es5?Yt.varKinds.var:Yt.varKinds.let){let i=this._scope.toName(e);return this._for(new $p(s,i,r,n),()=>o(i))}forOf(e,r,n,o=Yt.varKinds.const){let s=this._scope.toName(e);if(this.opts.es5){let i=r instanceof ce.Name?r:this.var("_arr",r);return this.forRange("_i",0,(0,ce._)`${i}.length`,a=>{this.var(s,(0,ce._)`${i}[${a}]`),n(s)})}return this._for(new Xa("of",o,s,r),()=>n(s))}forIn(e,r,n,o=this.opts.es5?Yt.varKinds.var:Yt.varKinds.const){if(this.opts.ownProperties)return this.forOf(e,(0,ce._)`Object.keys(${r})`,n);let s=this._scope.toName(e);return this._for(new Xa("in",o,s,r),()=>n(s))}endFor(){return this._endBlockNode(Un)}label(e){return this._leafNode(new kp(e))}break(e){return this._leafNode(new Ep(e))}return(e){let r=new Ys;if(this._blockNode(r),this.code(e),r.nodes.length!==1)throw new Error('CodeGen: "return" should have one node');return this._endBlockNode(Ys)}try(e,r,n){if(!r&&!n)throw new Error('CodeGen: "try" without "catch" and "finally"');let o=new Cp;if(this._blockNode(o),this.code(e),r){let s=this.name("e");this._currNode=o.catch=new Qs(s),r(s)}return n&&(this._currNode=o.finally=new ei,this.code(n)),this._endBlockNode(Qs,ei)}throw(e){return this._leafNode(new wp(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=ce.nil,n,o){return this._blockNode(new Xs(e,r,n)),o&&this.code(o).endFunc(),this}endFunc(){return this._endBlockNode(Xs)}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 Hn))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}};ee.CodeGen=Op;function Fn(t,e){for(let r in e)t[r]=(t[r]||0)+(e[r]||0);return t}function Ya(t,e){return e instanceof ce._CodeOrName?Fn(t,e.names):t}function No(t,e,r){if(t instanceof ce.Name)return n(t);if(!o(t))return t;return new ce._Code(t._items.reduce((s,i)=>(i instanceof ce.Name&&(i=n(i)),i instanceof ce._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 ce._Code&&s._items.some(i=>i instanceof ce.Name&&e[i.str]===1&&r[i.str]!==void 0)}}function J$(t,e){for(let r in e)t[r]=(t[r]||0)-(e[r]||0)}function cx(t){return typeof t=="boolean"||typeof t=="number"||t===null?!t:(0,ce._)`!${Ip(t)}`}ee.not=cx;var X$=ux(ee.operators.AND);function Y$(...t){return t.reduce(X$)}ee.and=Y$;var Q$=ux(ee.operators.OR);function eC(...t){return t.reduce(Q$)}ee.or=eC;function ux(t){return(e,r)=>e===ce.nil?r:r===ce.nil?e:(0,ce._)`${Ip(e)} ${t} ${Ip(r)}`}function Ip(t){return t instanceof ce.Name?t:(0,ce._)`(${t})`}});var ue=N(re=>{"use strict";Object.defineProperty(re,"__esModule",{value:!0});re.checkStrictMode=re.getErrorPath=re.Type=re.useFunc=re.setEvaluated=re.evaluatedPropsToName=re.mergeEvaluated=re.eachItem=re.unescapeJsonPointer=re.escapeJsonPointer=re.escapeFragment=re.unescapeFragment=re.schemaRefOrVal=re.schemaHasRulesButRef=re.schemaHasRules=re.checkUnknownRules=re.alwaysValidSchema=re.toHash=void 0;var xe=Q(),tC=Gs();function rC(t){let e={};for(let r of t)e[r]=!0;return e}re.toHash=rC;function nC(t,e){return typeof e=="boolean"?e:Object.keys(e).length===0?!0:(px(t,e),!fx(e,t.self.RULES.all))}re.alwaysValidSchema=nC;function px(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]||gx(t,`unknown keyword: "${s}"`)}re.checkUnknownRules=px;function fx(t,e){if(typeof t=="boolean")return!t;for(let r in t)if(e[r])return!0;return!1}re.schemaHasRules=fx;function oC(t,e){if(typeof t=="boolean")return!t;for(let r in t)if(r!=="$ref"&&e.all[r])return!0;return!1}re.schemaHasRulesButRef=oC;function sC({topSchemaRef:t,schemaPath:e},r,n,o){if(!o){if(typeof r=="number"||typeof r=="boolean")return r;if(typeof r=="string")return(0,xe._)`${r}`}return(0,xe._)`${t}${e}${(0,xe.getProperty)(n)}`}re.schemaRefOrVal=sC;function iC(t){return mx(decodeURIComponent(t))}re.unescapeFragment=iC;function aC(t){return encodeURIComponent(Np(t))}re.escapeFragment=aC;function Np(t){return typeof t=="number"?`${t}`:t.replace(/~/g,"~0").replace(/\//g,"~1")}re.escapeJsonPointer=Np;function mx(t){return t.replace(/~1/g,"/").replace(/~0/g,"~")}re.unescapeJsonPointer=mx;function cC(t,e){if(Array.isArray(t))for(let r of t)e(r);else e(t)}re.eachItem=cC;function lx({mergeNames:t,mergeToName:e,mergeValues:r,resultToName:n}){return(o,s,i,a)=>{let c=i===void 0?s:i instanceof xe.Name?(s instanceof xe.Name?t(o,s,i):e(o,s,i),i):s instanceof xe.Name?(e(o,i,s),s):r(s,i);return a===xe.Name&&!(c instanceof xe.Name)?n(o,c):c}}re.mergeEvaluated={props:lx({mergeNames:(t,e,r)=>t.if((0,xe._)`${r} !== true && ${e} !== undefined`,()=>{t.if((0,xe._)`${e} === true`,()=>t.assign(r,!0),()=>t.assign(r,(0,xe._)`${r} || {}`).code((0,xe._)`Object.assign(${r}, ${e})`))}),mergeToName:(t,e,r)=>t.if((0,xe._)`${r} !== true`,()=>{e===!0?t.assign(r,!0):(t.assign(r,(0,xe._)`${r} || {}`),Dp(t,r,e))}),mergeValues:(t,e)=>t===!0?!0:{...t,...e},resultToName:hx}),items:lx({mergeNames:(t,e,r)=>t.if((0,xe._)`${r} !== true && ${e} !== undefined`,()=>t.assign(r,(0,xe._)`${e} === true ? true : ${r} > ${e} ? ${r} : ${e}`)),mergeToName:(t,e,r)=>t.if((0,xe._)`${r} !== true`,()=>t.assign(r,e===!0?!0:(0,xe._)`${r} > ${e} ? ${r} : ${e}`)),mergeValues:(t,e)=>t===!0?!0:Math.max(t,e),resultToName:(t,e)=>t.var("items",e)})};function hx(t,e){if(e===!0)return t.var("props",!0);let r=t.var("props",(0,xe._)`{}`);return e!==void 0&&Dp(t,r,e),r}re.evaluatedPropsToName=hx;function Dp(t,e,r){Object.keys(r).forEach(n=>t.assign((0,xe._)`${e}${(0,xe.getProperty)(n)}`,!0))}re.setEvaluated=Dp;var dx={};function uC(t,e){return t.scopeValue("func",{ref:e,code:dx[e.code]||(dx[e.code]=new tC._Code(e.code))})}re.useFunc=uC;var Ap;(function(t){t[t.Num=0]="Num",t[t.Str=1]="Str"})(Ap||(re.Type=Ap={}));function lC(t,e,r){if(t instanceof xe.Name){let n=e===Ap.Num;return r?n?(0,xe._)`"[" + ${t} + "]"`:(0,xe._)`"['" + ${t} + "']"`:n?(0,xe._)`"/" + ${t}`:(0,xe._)`"/" + ${t}.replace(/~/g, "~0").replace(/\\//g, "~1")`}return r?(0,xe.getProperty)(t).toString():"/"+Np(t)}re.getErrorPath=lC;function gx(t,e,r=t.opts.strictSchema){if(r){if(e=`strict mode: ${e}`,r===!0)throw new Error(e);t.self.logger.warn(e)}}re.checkStrictMode=gx});var Or=N(Mp=>{"use strict";Object.defineProperty(Mp,"__esModule",{value:!0});var rt=Q(),dC={data:new rt.Name("data"),valCxt:new rt.Name("valCxt"),instancePath:new rt.Name("instancePath"),parentData:new rt.Name("parentData"),parentDataProperty:new rt.Name("parentDataProperty"),rootData:new rt.Name("rootData"),dynamicAnchors:new rt.Name("dynamicAnchors"),vErrors:new rt.Name("vErrors"),errors:new rt.Name("errors"),this:new rt.Name("this"),self:new rt.Name("self"),scope:new rt.Name("scope"),json:new rt.Name("json"),jsonPos:new rt.Name("jsonPos"),jsonLen:new rt.Name("jsonLen"),jsonPart:new rt.Name("jsonPart")};Mp.default=dC});var ti=N(nt=>{"use strict";Object.defineProperty(nt,"__esModule",{value:!0});nt.extendErrors=nt.resetErrorsCount=nt.reportExtraError=nt.reportError=nt.keyword$DataError=nt.keywordError=void 0;var le=Q(),ec=ue(),ct=Or();nt.keywordError={message:({keyword:t})=>(0,le.str)`must pass "${t}" keyword validation`};nt.keyword$DataError={message:({keyword:t,schemaType:e})=>e?(0,le.str)`"${t}" keyword must be ${e} ($data)`:(0,le.str)`"${t}" keyword is invalid ($data)`};function pC(t,e=nt.keywordError,r,n){let{it:o}=t,{gen:s,compositeRule:i,allErrors:a}=o,c=xx(t,e,r);n??(i||a)?yx(s,c):_x(o,(0,le._)`[${c}]`)}nt.reportError=pC;function fC(t,e=nt.keywordError,r){let{it:n}=t,{gen:o,compositeRule:s,allErrors:i}=n,a=xx(t,e,r);yx(o,a),s||i||_x(n,ct.default.vErrors)}nt.reportExtraError=fC;function mC(t,e){t.assign(ct.default.errors,e),t.if((0,le._)`${ct.default.vErrors} !== null`,()=>t.if(e,()=>t.assign((0,le._)`${ct.default.vErrors}.length`,e),()=>t.assign(ct.default.vErrors,null)))}nt.resetErrorsCount=mC;function hC({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,ct.default.errors,a=>{t.const(i,(0,le._)`${ct.default.vErrors}[${a}]`),t.if((0,le._)`${i}.instancePath === undefined`,()=>t.assign((0,le._)`${i}.instancePath`,(0,le.strConcat)(ct.default.instancePath,s.errorPath))),t.assign((0,le._)`${i}.schemaPath`,(0,le.str)`${s.errSchemaPath}/${e}`),s.opts.verbose&&(t.assign((0,le._)`${i}.schema`,r),t.assign((0,le._)`${i}.data`,n))})}nt.extendErrors=hC;function yx(t,e){let r=t.const("err",e);t.if((0,le._)`${ct.default.vErrors} === null`,()=>t.assign(ct.default.vErrors,(0,le._)`[${r}]`),(0,le._)`${ct.default.vErrors}.push(${r})`),t.code((0,le._)`${ct.default.errors}++`)}function _x(t,e){let{gen:r,validateName:n,schemaEnv:o}=t;o.$async?r.throw((0,le._)`new ${t.ValidationError}(${e})`):(r.assign((0,le._)`${n}.errors`,e),r.return(!1))}var Zn={keyword:new le.Name("keyword"),schemaPath:new le.Name("schemaPath"),params:new le.Name("params"),propertyName:new le.Name("propertyName"),message:new le.Name("message"),schema:new le.Name("schema"),parentSchema:new le.Name("parentSchema")};function xx(t,e,r){let{createErrors:n}=t.it;return n===!1?(0,le._)`{}`:gC(t,e,r)}function gC(t,e,r={}){let{gen:n,it:o}=t,s=[yC(o,r),_C(t,r)];return xC(t,e,s),n.object(...s)}function yC({errorPath:t},{instancePath:e}){let r=e?(0,le.str)`${t}${(0,ec.getErrorPath)(e,ec.Type.Str)}`:t;return[ct.default.instancePath,(0,le.strConcat)(ct.default.instancePath,r)]}function _C({keyword:t,it:{errSchemaPath:e}},{schemaPath:r,parentSchema:n}){let o=n?e:(0,le.str)`${e}/${t}`;return r&&(o=(0,le.str)`${o}${(0,ec.getErrorPath)(r,ec.Type.Str)}`),[Zn.schemaPath,o]}function xC(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([Zn.keyword,o],[Zn.params,typeof e=="function"?e(t):e||(0,le._)`{}`]),c.messages&&n.push([Zn.message,typeof r=="function"?r(t):r]),c.verbose&&n.push([Zn.schema,i],[Zn.parentSchema,(0,le._)`${l}${d}`],[ct.default.data,s]),u&&n.push([Zn.propertyName,u])}});var vx=N(Do=>{"use strict";Object.defineProperty(Do,"__esModule",{value:!0});Do.boolOrEmptySchema=Do.topBoolOrEmptySchema=void 0;var SC=ti(),vC=Q(),bC=Or(),kC={message:"boolean schema is false"};function EC(t){let{gen:e,schema:r,validateName:n}=t;r===!1?Sx(t,!1):typeof r=="object"&&r.$async===!0?e.return(bC.default.data):(e.assign((0,vC._)`${n}.errors`,null),e.return(!0))}Do.topBoolOrEmptySchema=EC;function wC(t,e){let{gen:r,schema:n}=t;n===!1?(r.var(e,!1),Sx(t)):r.var(e,!0)}Do.boolOrEmptySchema=wC;function Sx(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,SC.reportError)(o,kC,void 0,e)}});var jp=N(Mo=>{"use strict";Object.defineProperty(Mo,"__esModule",{value:!0});Mo.getRules=Mo.isJSONType=void 0;var TC=["string","number","integer","boolean","null","object","array"],PC=new Set(TC);function RC(t){return typeof t=="string"&&PC.has(t)}Mo.isJSONType=RC;function $C(){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:{}}}Mo.getRules=$C});var zp=N(en=>{"use strict";Object.defineProperty(en,"__esModule",{value:!0});en.shouldUseRule=en.shouldUseGroup=en.schemaHasRulesForType=void 0;function CC({schema:t,self:e},r){let n=e.RULES.types[r];return n&&n!==!0&&bx(t,n)}en.schemaHasRulesForType=CC;function bx(t,e){return e.rules.some(r=>kx(t,r))}en.shouldUseGroup=bx;function kx(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))}en.shouldUseRule=kx});var ri=N(ot=>{"use strict";Object.defineProperty(ot,"__esModule",{value:!0});ot.reportTypeError=ot.checkDataTypes=ot.checkDataType=ot.coerceAndCheckDataType=ot.getJSONTypes=ot.getSchemaTypes=ot.DataType=void 0;var OC=jp(),IC=zp(),AC=ti(),X=Q(),Ex=ue(),jo;(function(t){t[t.Correct=0]="Correct",t[t.Wrong=1]="Wrong"})(jo||(ot.DataType=jo={}));function NC(t){let e=wx(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}ot.getSchemaTypes=NC;function wx(t){let e=Array.isArray(t)?t:t?[t]:[];if(e.every(OC.isJSONType))return e;throw new Error("type must be JSONType or JSONType[]: "+e.join(","))}ot.getJSONTypes=wx;function DC(t,e){let{gen:r,data:n,opts:o}=t,s=MC(e,o.coerceTypes),i=e.length>0&&!(s.length===0&&e.length===1&&(0,IC.schemaHasRulesForType)(t,e[0]));if(i){let a=Hp(e,n,o.strictNumbers,jo.Wrong);r.if(a,()=>{s.length?jC(t,e,s):Up(t)})}return i}ot.coerceAndCheckDataType=DC;var Tx=new Set(["string","number","integer","boolean","null"]);function MC(t,e){return e?t.filter(r=>Tx.has(r)||e==="array"&&r==="array"):[]}function jC(t,e,r){let{gen:n,data:o,opts:s}=t,i=n.let("dataType",(0,X._)`typeof ${o}`),a=n.let("coerced",(0,X._)`undefined`);s.coerceTypes==="array"&&n.if((0,X._)`${i} == 'object' && Array.isArray(${o}) && ${o}.length == 1`,()=>n.assign(o,(0,X._)`${o}[0]`).assign(i,(0,X._)`typeof ${o}`).if(Hp(e,o,s.strictNumbers),()=>n.assign(a,o))),n.if((0,X._)`${a} !== undefined`);for(let u of r)(Tx.has(u)||u==="array"&&s.coerceTypes==="array")&&c(u);n.else(),Up(t),n.endIf(),n.if((0,X._)`${a} !== undefined`,()=>{n.assign(o,a),zC(t,a)});function c(u){switch(u){case"string":n.elseIf((0,X._)`${i} == "number" || ${i} == "boolean"`).assign(a,(0,X._)`"" + ${o}`).elseIf((0,X._)`${o} === null`).assign(a,(0,X._)`""`);return;case"number":n.elseIf((0,X._)`${i} == "boolean" || ${o} === null
|
|
4
4
|
|| (${i} == "string" && ${o} && ${o} == +${o})`).assign(a,(0,X._)`+${o}`);return;case"integer":n.elseIf((0,X._)`${i} === "boolean" || ${o} === null
|
|
5
5
|
|| (${i} === "string" && ${o} && ${o} == +${o} && !(${o} % 1))`).assign(a,(0,X._)`+${o}`);return;case"boolean":n.elseIf((0,X._)`${o} === "false" || ${o} === 0 || ${o} === null`).assign(a,!1).elseIf((0,X._)`${o} === "true" || ${o} === 1`).assign(a,!0);return;case"null":n.elseIf((0,X._)`${o} === "" || ${o} === 0 || ${o} === false`),n.assign(a,null);return;case"array":n.elseIf((0,X._)`${i} === "string" || ${i} === "number"
|
|
6
|
-
|| ${i} === "boolean" || ${o} === null`).assign(a,(0,X._)`[${o}]`)}}}function rC({gen:t,parentData:e,parentDataProperty:r},n){t.if((0,X._)`${e} !== undefined`,()=>t.assign((0,X._)`${e}[${r}]`,n))}function $p(t,e,r,n=Io.Correct){let o=n===Io.Correct?X.operators.EQ:X.operators.NEQ,s;switch(t){case"null":return(0,X._)`${e} ${o} null`;case"array":s=(0,X._)`Array.isArray(${e})`;break;case"object":s=(0,X._)`${e} && typeof ${e} == "object" && !Array.isArray(${e})`;break;case"integer":s=i((0,X._)`!(${e} % 1) && !isNaN(${e})`);break;case"number":s=i();break;default:return(0,X._)`typeof ${e} ${o} ${t}`}return n===Io.Correct?s:(0,X.not)(s);function i(a=X.nil){return(0,X.and)((0,X._)`typeof ${e} == "number"`,a,r?(0,X._)`isFinite(${e})`:X.nil)}}nt.checkDataType=$p;function Cp(t,e,r,n){if(t.length===1)return $p(t[0],e,r,n);let o,s=(0,ov.toHash)(t);if(s.array&&s.object){let i=(0,X._)`typeof ${e} != "object"`;o=s.null?i:(0,X._)`!${e} || ${i}`,delete s.null,delete s.array,delete s.object}else o=X.nil;s.number&&delete s.integer;for(let i in s)o=(0,X.and)(o,$p(i,e,r,n));return o}nt.checkDataTypes=Cp;var nC={message:({schema:t})=>`must be ${t}`,params:({schema:t,schemaValue:e})=>typeof t=="string"?(0,X._)`{type: ${t}}`:(0,X._)`{type: ${e}}`};function Op(t){let e=oC(t);(0,X$.reportError)(e,nC)}nt.reportTypeError=Op;function oC(t){let{gen:e,data:r,schema:n}=t,o=(0,ov.schemaRefOrVal)(t,n,"type");return{gen:e,keyword:"type",data:r,schema:n.type,schemaCode:o,schemaValue:o,parentSchema:n,params:{},it:t}}});var cv=O(Ka=>{"use strict";Object.defineProperty(Ka,"__esModule",{value:!0});Ka.assignDefaults=void 0;var Ao=Q(),sC=ue();function iC(t,e){let{properties:r,items:n}=t.schema;if(e==="object"&&r)for(let o in r)av(t,o,r[o].default);else e==="array"&&Array.isArray(n)&&n.forEach((o,s)=>av(t,s,o.default))}Ka.assignDefaults=iC;function av(t,e,r){let{gen:n,compositeRule:o,data:s,opts:i}=t;if(r===void 0)return;let a=(0,Ao._)`${s}${(0,Ao.getProperty)(e)}`;if(o){(0,sC.checkStrictMode)(t,`default is ignored for: ${a}`);return}let c=(0,Ao._)`${a} === undefined`;i.useDefaults==="empty"&&(c=(0,Ao._)`${c} || ${a} === null || ${a} === ""`),n.if(c,(0,Ao._)`${a} = ${(0,Ao.stringify)(r)}`)}});var It=O(me=>{"use strict";Object.defineProperty(me,"__esModule",{value:!0});me.validateUnion=me.validateArray=me.usePattern=me.callValidateCode=me.schemaProperties=me.allSchemaProperties=me.noPropertyInData=me.propertyInData=me.isOwnProperty=me.hasPropFunc=me.reportMissingProp=me.checkMissingProp=me.checkReportMissingProp=void 0;var ke=Q(),Ip=ue(),Jr=Tr(),aC=ue();function cC(t,e){let{gen:r,data:n,it:o}=t;r.if(Np(r,n,e,o.opts.ownProperties),()=>{t.setParams({missingProperty:(0,ke._)`${e}`},!0),t.error()})}me.checkReportMissingProp=cC;function uC({gen:t,data:e,it:{opts:r}},n,o){return(0,ke.or)(...n.map(s=>(0,ke.and)(Np(t,e,s,r.ownProperties),(0,ke._)`${o} = ${s}`)))}me.checkMissingProp=uC;function lC(t,e){t.setParams({missingProperty:e},!0),t.error()}me.reportMissingProp=lC;function uv(t){return t.scopeValue("func",{ref:Object.prototype.hasOwnProperty,code:(0,ke._)`Object.prototype.hasOwnProperty`})}me.hasPropFunc=uv;function Ap(t,e,r){return(0,ke._)`${uv(t)}.call(${e}, ${r})`}me.isOwnProperty=Ap;function dC(t,e,r,n){let o=(0,ke._)`${e}${(0,ke.getProperty)(r)} !== undefined`;return n?(0,ke._)`${o} && ${Ap(t,e,r)}`:o}me.propertyInData=dC;function Np(t,e,r,n){let o=(0,ke._)`${e}${(0,ke.getProperty)(r)} === undefined`;return n?(0,ke.or)(o,(0,ke.not)(Ap(t,e,r))):o}me.noPropertyInData=Np;function lv(t){return t?Object.keys(t).filter(e=>e!=="__proto__"):[]}me.allSchemaProperties=lv;function pC(t,e){return lv(e).filter(r=>!(0,Ip.alwaysValidSchema)(t,e[r]))}me.schemaProperties=pC;function fC({schemaCode:t,data:e,it:{gen:r,topSchemaRef:n,schemaPath:o,errorPath:s},it:i},a,c,u){let l=u?(0,ke._)`${t}, ${e}, ${n}${o}`:e,d=[[Jr.default.instancePath,(0,ke.strConcat)(Jr.default.instancePath,s)],[Jr.default.parentData,i.parentData],[Jr.default.parentDataProperty,i.parentDataProperty],[Jr.default.rootData,Jr.default.rootData]];i.opts.dynamicRef&&d.push([Jr.default.dynamicAnchors,Jr.default.dynamicAnchors]);let f=(0,ke._)`${l}, ${r.object(...d)}`;return c!==ke.nil?(0,ke._)`${a}.call(${c}, ${f})`:(0,ke._)`${a}(${f})`}me.callValidateCode=fC;var mC=(0,ke._)`new RegExp`;function hC({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,ke._)`${o.code==="new RegExp"?mC:(0,aC.useFunc)(t,o)}(${r}, ${n})`})}me.usePattern=hC;function gC(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,ke._)`${r}.length`);e.forRange("i",0,c,u=>{t.subschema({keyword:n,dataProp:u,dataPropType:Ip.Type.Num},s),e.if((0,ke.not)(s),a)})}}me.validateArray=gC;function yC(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,Ip.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,ke._)`${i} || ${a}`),t.mergeValidEvaluated(l,a)||e.if((0,ke.not)(i))})),t.result(i,()=>t.reset(),()=>t.error(!0))}me.validateUnion=yC});var fv=O(lr=>{"use strict";Object.defineProperty(lr,"__esModule",{value:!0});lr.validateKeywordUsage=lr.validSchemaType=lr.funcKeywordCode=lr.macroKeywordCode=void 0;var at=Q(),Un=Tr(),_C=It(),vC=Js();function xC(t,e){let{gen:r,keyword:n,schema:o,parentSchema:s,it:i}=t,a=e.macro.call(i.self,o,s,i),c=pv(r,n,a);i.opts.validateSchema!==!1&&i.self.validateSchema(a,!0);let u=r.name("valid");t.subschema({schema:a,schemaPath:at.nil,errSchemaPath:`${i.errSchemaPath}/${n}`,topSchemaRef:c,compositeRule:!0},u),t.pass(u,()=>t.error(!0))}lr.macroKeywordCode=xC;function bC(t,e){var r;let{gen:n,keyword:o,schema:s,parentSchema:i,$data:a,it:c}=t;kC(c,e);let u=!a&&e.compile?e.compile.call(c.self,s,i,c):e.validate,l=pv(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&&dv(t),g(()=>t.error());else{let y=e.async?m():p();e.modifying&&dv(t),g(()=>SC(t,y))}}function m(){let y=n.let("ruleErrs",null);return n.try(()=>h((0,at._)`await `),v=>n.assign(d,!1).if((0,at._)`${v} instanceof ${c.ValidationError}`,()=>n.assign(y,(0,at._)`${v}.errors`),()=>n.throw(v))),y}function p(){let y=(0,at._)`${l}.errors`;return n.assign(y,null),h(at.nil),y}function h(y=e.async?(0,at._)`await `:at.nil){let v=c.opts.passContext?Un.default.this:Un.default.self,_=!("compile"in e&&!a||e.schema===!1);n.assign(d,(0,at._)`${y}${(0,_C.callValidateCode)(t,l,v,_)}`,e.modifying)}function g(y){var v;n.if((0,at.not)((v=e.valid)!==null&&v!==void 0?v:d),y)}}lr.funcKeywordCode=bC;function dv(t){let{gen:e,data:r,it:n}=t;e.if(n.parentData,()=>e.assign(r,(0,at._)`${n.parentData}[${n.parentDataProperty}]`))}function SC(t,e){let{gen:r}=t;r.if((0,at._)`Array.isArray(${e})`,()=>{r.assign(Un.default.vErrors,(0,at._)`${Un.default.vErrors} === null ? ${e} : ${Un.default.vErrors}.concat(${e})`).assign(Un.default.errors,(0,at._)`${Un.default.vErrors}.length`),(0,vC.extendErrors)(t)},()=>t.error())}function kC({schemaEnv:t},e){if(e.async&&!t.$async)throw new Error("async keyword in sync schema")}function pv(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,at.stringify)(r)})}function EC(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")}lr.validSchemaType=EC;function wC({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)}}lr.validateKeywordUsage=wC});var hv=O(Xr=>{"use strict";Object.defineProperty(Xr,"__esModule",{value:!0});Xr.extendSubschemaMode=Xr.extendSubschemaData=Xr.getSubschema=void 0;var dr=Q(),mv=ue();function TC(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,dr._)`${t.schemaPath}${(0,dr.getProperty)(e)}`,errSchemaPath:`${t.errSchemaPath}/${e}`}:{schema:a[r],schemaPath:(0,dr._)`${t.schemaPath}${(0,dr.getProperty)(e)}${(0,dr.getProperty)(r)}`,errSchemaPath:`${t.errSchemaPath}/${e}/${(0,mv.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')}Xr.getSubschema=TC;function RC(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,dr._)`${e.data}${(0,dr.getProperty)(r)}`,!0);c(f),t.errorPath=(0,dr.str)`${u}${(0,mv.getErrorPath)(r,n,d.jsPropertySyntax)}`,t.parentDataProperty=(0,dr._)`${r}`,t.dataPathArr=[...l,t.parentDataProperty]}if(o!==void 0){let u=o instanceof dr.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]}}Xr.extendSubschemaData=RC;function PC(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}Xr.extendSubschemaMode=PC});var Dp=O((rq,gv)=>{"use strict";gv.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 _v=O((nq,yv)=>{"use strict";var Yr=yv.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(){};Ga(e,n,o,t,"",t)};Yr.keywords={additionalItems:!0,items:!0,contains:!0,additionalProperties:!0,propertyNames:!0,not:!0,if:!0,then:!0,else:!0};Yr.arrayKeywords={items:!0,allOf:!0,anyOf:!0,oneOf:!0};Yr.propsKeywords={$defs:!0,definitions:!0,properties:!0,patternProperties:!0,dependencies:!0};Yr.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 Ga(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 Yr.arrayKeywords)for(var f=0;f<d.length;f++)Ga(t,e,r,d[f],o+"/"+l+"/"+f,s,o,l,n,f)}else if(l in Yr.propsKeywords){if(d&&typeof d=="object")for(var m in d)Ga(t,e,r,d[m],o+"/"+l+"/"+$C(m),s,o,l,n,m)}else(l in Yr.keywords||t.allKeys&&!(l in Yr.skipKeywords))&&Ga(t,e,r,d,o+"/"+l,s,o,l,n)}r(n,o,s,i,a,c,u)}}function $C(t){return t.replace(/~/g,"~0").replace(/\//g,"~1")}});var Ys=O(gt=>{"use strict";Object.defineProperty(gt,"__esModule",{value:!0});gt.getSchemaRefs=gt.resolveUrl=gt.normalizeId=gt._getFullPath=gt.getFullPath=gt.inlineRef=void 0;var CC=ue(),OC=Dp(),IC=_v(),AC=new Set(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum","const"]);function NC(t,e=!0){return typeof t=="boolean"?!0:e===!0?!Mp(t):e?vv(t)<=e:!1}gt.inlineRef=NC;var DC=new Set(["$ref","$recursiveRef","$recursiveAnchor","$dynamicRef","$dynamicAnchor"]);function Mp(t){for(let e in t){if(DC.has(e))return!0;let r=t[e];if(Array.isArray(r)&&r.some(Mp)||typeof r=="object"&&Mp(r))return!0}return!1}function vv(t){let e=0;for(let r in t){if(r==="$ref")return 1/0;if(e++,!AC.has(r)&&(typeof t[r]=="object"&&(0,CC.eachItem)(t[r],n=>e+=vv(n)),e===1/0))return 1/0}return e}function xv(t,e="",r){r!==!1&&(e=No(e));let n=t.parse(e);return bv(t,n)}gt.getFullPath=xv;function bv(t,e){return t.serialize(e).split("#")[0]+"#"}gt._getFullPath=bv;var MC=/#\/?$/;function No(t){return t?t.replace(MC,""):""}gt.normalizeId=No;function jC(t,e,r){return r=No(r),t.resolve(e,r)}gt.resolveUrl=jC;var zC=/^[a-z_][-a-z0-9._]*$/i;function LC(t,e){if(typeof t=="boolean")return{};let{schemaId:r,uriResolver:n}=this.opts,o=No(t[r]||e),s={"":o},i=xv(n,o,!1),a={},c=new Set;return IC(t,{allKeys:!0},(d,f,m,p)=>{if(p===void 0)return;let h=i+f,g=s[p];typeof d[r]=="string"&&(g=y.call(this,d[r])),v.call(this,d.$anchor),v.call(this,d.$dynamicAnchor),s[f]=g;function y(_){let b=this.opts.uriResolver.resolve;if(_=No(g?b(g,_):_),c.has(_))throw l(_);c.add(_);let E=this.refs[_];return typeof E=="string"&&(E=this.refs[E]),typeof E=="object"?u(d,E.schema,_):_!==No(h)&&(_[0]==="#"?(u(d,a[_],_),a[_]=d):this.refs[_]=h),_}function v(_){if(typeof _=="string"){if(!zC.test(_))throw new Error(`invalid anchor "${_}"`);y.call(this,`#${_}`)}}}),a;function u(d,f,m){if(f!==void 0&&!OC(d,f))throw l(m)}function l(d){return new Error(`reference "${d}" resolves to more than one schema`)}}gt.getSchemaRefs=LC});var ti=O(Qr=>{"use strict";Object.defineProperty(Qr,"__esModule",{value:!0});Qr.getData=Qr.KeywordCxt=Qr.validateFunctionCode=void 0;var Tv=tv(),Sv=Xs(),zp=Pp(),Ja=Xs(),UC=cv(),ei=fv(),jp=hv(),H=Q(),G=Tr(),HC=Ys(),Rr=ue(),Qs=Js();function FC(t){if($v(t)&&(Cv(t),Pv(t))){BC(t);return}Rv(t,()=>(0,Tv.topBoolOrEmptySchema)(t))}Qr.validateFunctionCode=FC;function Rv({gen:t,validateName:e,schema:r,schemaEnv:n,opts:o},s){o.code.es5?t.func(e,(0,H._)`${G.default.data}, ${G.default.valCxt}`,n.$async,()=>{t.code((0,H._)`"use strict"; ${kv(r,o)}`),qC(t,o),t.code(s)}):t.func(e,(0,H._)`${G.default.data}, ${ZC(o)}`,n.$async,()=>t.code(kv(r,o)).code(s))}function ZC(t){return(0,H._)`{${G.default.instancePath}="", ${G.default.parentData}, ${G.default.parentDataProperty}, ${G.default.rootData}=${G.default.data}${t.dynamicRef?(0,H._)`, ${G.default.dynamicAnchors}={}`:H.nil}}={}`}function qC(t,e){t.if(G.default.valCxt,()=>{t.var(G.default.instancePath,(0,H._)`${G.default.valCxt}.${G.default.instancePath}`),t.var(G.default.parentData,(0,H._)`${G.default.valCxt}.${G.default.parentData}`),t.var(G.default.parentDataProperty,(0,H._)`${G.default.valCxt}.${G.default.parentDataProperty}`),t.var(G.default.rootData,(0,H._)`${G.default.valCxt}.${G.default.rootData}`),e.dynamicRef&&t.var(G.default.dynamicAnchors,(0,H._)`${G.default.valCxt}.${G.default.dynamicAnchors}`)},()=>{t.var(G.default.instancePath,(0,H._)`""`),t.var(G.default.parentData,(0,H._)`undefined`),t.var(G.default.parentDataProperty,(0,H._)`undefined`),t.var(G.default.rootData,G.default.data),e.dynamicRef&&t.var(G.default.dynamicAnchors,(0,H._)`{}`)})}function BC(t){let{schema:e,opts:r,gen:n}=t;Rv(t,()=>{r.$comment&&e.$comment&&Iv(t),JC(t),n.let(G.default.vErrors,null),n.let(G.default.errors,0),r.unevaluated&&VC(t),Ov(t),QC(t)})}function VC(t){let{gen:e,validateName:r}=t;t.evaluated=e.const("evaluated",(0,H._)`${r}.evaluated`),e.if((0,H._)`${t.evaluated}.dynamicProps`,()=>e.assign((0,H._)`${t.evaluated}.props`,(0,H._)`undefined`)),e.if((0,H._)`${t.evaluated}.dynamicItems`,()=>e.assign((0,H._)`${t.evaluated}.items`,(0,H._)`undefined`))}function kv(t,e){let r=typeof t=="object"&&t[e.schemaId];return r&&(e.code.source||e.code.process)?(0,H._)`/*# sourceURL=${r} */`:H.nil}function WC(t,e){if($v(t)&&(Cv(t),Pv(t))){KC(t,e);return}(0,Tv.boolOrEmptySchema)(t,e)}function Pv({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 $v(t){return typeof t.schema!="boolean"}function KC(t,e){let{schema:r,gen:n,opts:o}=t;o.$comment&&r.$comment&&Iv(t),XC(t),YC(t);let s=n.const("_errs",G.default.errors);Ov(t,s),n.var(e,(0,H._)`${s} === ${G.default.errors}`)}function Cv(t){(0,Rr.checkUnknownRules)(t),GC(t)}function Ov(t,e){if(t.opts.jtd)return Ev(t,[],!1,e);let r=(0,Sv.getSchemaTypes)(t.schema),n=(0,Sv.coerceAndCheckDataType)(t,r);Ev(t,r,!n,e)}function GC(t){let{schema:e,errSchemaPath:r,opts:n,self:o}=t;e.$ref&&n.ignoreKeywordsWithRef&&(0,Rr.schemaHasRulesButRef)(e,o.RULES)&&o.logger.warn(`$ref: keywords ignored in schema at path "${r}"`)}function JC(t){let{schema:e,opts:r}=t;e.default!==void 0&&r.useDefaults&&r.strictSchema&&(0,Rr.checkStrictMode)(t,"default is ignored in the schema root")}function XC(t){let e=t.schema[t.opts.schemaId];e&&(t.baseId=(0,HC.resolveUrl)(t.opts.uriResolver,t.baseId,e))}function YC(t){if(t.schema.$async&&!t.schemaEnv.$async)throw new Error("async schema in sync schema")}function Iv({gen:t,schemaEnv:e,schema:r,errSchemaPath:n,opts:o}){let s=r.$comment;if(o.$comment===!0)t.code((0,H._)`${G.default.self}.logger.log(${s})`);else if(typeof o.$comment=="function"){let i=(0,H.str)`${n}/$comment`,a=t.scopeValue("root",{ref:e.root});t.code((0,H._)`${G.default.self}.opts.$comment(${s}, ${i}, ${a}.schema)`)}}function QC(t){let{gen:e,schemaEnv:r,validateName:n,ValidationError:o,opts:s}=t;r.$async?e.if((0,H._)`${G.default.errors} === 0`,()=>e.return(G.default.data),()=>e.throw((0,H._)`new ${o}(${G.default.vErrors})`)):(e.assign((0,H._)`${n}.errors`,G.default.vErrors),s.unevaluated&&eO(t),e.return((0,H._)`${G.default.errors} === 0`))}function eO({gen:t,evaluated:e,props:r,items:n}){r instanceof H.Name&&t.assign((0,H._)`${e}.props`,r),n instanceof H.Name&&t.assign((0,H._)`${e}.items`,n)}function Ev(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,Rr.schemaHasRulesButRef)(s,l))){o.block(()=>Nv(t,"$ref",l.all.$ref.definition));return}c.jtd||tO(t,e),o.block(()=>{for(let f of l.rules)d(f);d(l.post)});function d(f){(0,zp.shouldUseGroup)(s,f)&&(f.type?(o.if((0,Ja.checkDataType)(f.type,i,c.strictNumbers)),wv(t,f),e.length===1&&e[0]===f.type&&r&&(o.else(),(0,Ja.reportTypeError)(t)),o.endIf()):wv(t,f),a||o.if((0,H._)`${G.default.errors} === ${n||0}`))}}function wv(t,e){let{gen:r,schema:n,opts:{useDefaults:o}}=t;o&&(0,UC.assignDefaults)(t,e.type),r.block(()=>{for(let s of e.rules)(0,zp.shouldUseRule)(n,s)&&Nv(t,s.keyword,s.definition,e.type)})}function tO(t,e){t.schemaEnv.meta||!t.opts.strictTypes||(rO(t,e),t.opts.allowUnionTypes||nO(t,e),oO(t,t.dataTypes))}function rO(t,e){if(e.length){if(!t.dataTypes.length){t.dataTypes=e;return}e.forEach(r=>{Av(t.dataTypes,r)||Lp(t,`type "${r}" not allowed by context "${t.dataTypes.join(",")}"`)}),iO(t,e)}}function nO(t,e){e.length>1&&!(e.length===2&&e.includes("null"))&&Lp(t,"use allowUnionTypes to allow union type keyword")}function oO(t,e){let r=t.self.RULES.all;for(let n in r){let o=r[n];if(typeof o=="object"&&(0,zp.shouldUseRule)(t.schema,o)){let{type:s}=o.definition;s.length&&!s.some(i=>sO(e,i))&&Lp(t,`missing type "${s.join(",")}" for keyword "${n}"`)}}}function sO(t,e){return t.includes(e)||e==="number"&&t.includes("integer")}function Av(t,e){return t.includes(e)||e==="integer"&&t.includes("number")}function iO(t,e){let r=[];for(let n of t.dataTypes)Av(e,n)?r.push(n):e.includes("integer")&&n==="number"&&r.push("integer");t.dataTypes=r}function Lp(t,e){let r=t.schemaEnv.baseId+t.errSchemaPath;e+=` at "${r}" (strictTypes)`,(0,Rr.checkStrictMode)(t,e,t.opts.strictTypes)}var Xa=class{constructor(e,r,n){if((0,ei.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,Rr.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",Dv(this.$data,e));else if(this.schemaCode=this.schemaValue,!(0,ei.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",G.default.errors))}result(e,r,n){this.failResult((0,H.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,H.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,H._)`${r} !== undefined && (${(0,H.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?Qs.reportExtraError:Qs.reportError)(this,this.def.error,r)}$dataError(){(0,Qs.reportError)(this,this.def.$dataError||Qs.keyword$DataError)}reset(){if(this.errsCount===void 0)throw new Error('add "trackErrors" to keyword definition');(0,Qs.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=H.nil){this.gen.block(()=>{this.check$data(e,n),r()})}check$data(e=H.nil,r=H.nil){if(!this.$data)return;let{gen:n,schemaCode:o,schemaType:s,def:i}=this;n.if((0,H.or)((0,H._)`${o} === undefined`,r)),e!==H.nil&&n.assign(e,!0),(s.length||i.validateSchema)&&(n.elseIf(this.invalid$data()),this.$dataError(),e!==H.nil&&n.assign(e,!1)),n.else()}invalid$data(){let{gen:e,schemaCode:r,schemaType:n,def:o,it:s}=this;return(0,H.or)(i(),a());function i(){if(n.length){if(!(r instanceof H.Name))throw new Error("ajv implementation error");let c=Array.isArray(n)?n:[n];return(0,H._)`${(0,Ja.checkDataTypes)(c,r,s.opts.strictNumbers,Ja.DataType.Wrong)}`}return H.nil}function a(){if(o.validateSchema){let c=e.scopeValue("validate$data",{ref:o.validateSchema});return(0,H._)`!${c}(${r})`}return H.nil}}subschema(e,r){let n=(0,jp.getSubschema)(this.it,e);(0,jp.extendSubschemaData)(n,this.it,e),(0,jp.extendSubschemaMode)(n,e);let o={...this.it,...n,items:void 0,props:void 0};return WC(o,r),o}mergeEvaluated(e,r){let{it:n,gen:o}=this;n.opts.unevaluated&&(n.props!==!0&&e.props!==void 0&&(n.props=Rr.mergeEvaluated.props(o,e.props,n.props,r)),n.items!==!0&&e.items!==void 0&&(n.items=Rr.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,H.Name)),!0}};Qr.KeywordCxt=Xa;function Nv(t,e,r,n){let o=new Xa(t,r,e);"code"in r?r.code(o,n):o.$data&&r.validate?(0,ei.funcKeywordCode)(o,r):"macro"in r?(0,ei.macroKeywordCode)(o,r):(r.compile||r.validate)&&(0,ei.funcKeywordCode)(o,r)}var aO=/^\/(?:[^~]|~0|~1)*$/,cO=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function Dv(t,{dataLevel:e,dataNames:r,dataPathArr:n}){let o,s;if(t==="")return G.default.rootData;if(t[0]==="/"){if(!aO.test(t))throw new Error(`Invalid JSON-pointer: ${t}`);o=t,s=G.default.rootData}else{let u=cO.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,H._)`${s}${(0,H.getProperty)((0,Rr.unescapeJsonPointer)(u))}`,i=(0,H._)`${i} && ${s}`);return i;function c(u,l){return`Cannot access ${u} ${l} levels up, current level is ${e}`}}Qr.getData=Dv});var Ya=O(Hp=>{"use strict";Object.defineProperty(Hp,"__esModule",{value:!0});var Up=class extends Error{constructor(e){super("validation failed"),this.errors=e,this.ajv=this.validation=!0}};Hp.default=Up});var ri=O(qp=>{"use strict";Object.defineProperty(qp,"__esModule",{value:!0});var Fp=Ys(),Zp=class extends Error{constructor(e,r,n,o){super(o||`can't resolve reference ${n} from id ${r}`),this.missingRef=(0,Fp.resolveUrl)(e,r,n),this.missingSchema=(0,Fp.normalizeId)((0,Fp.getFullPath)(e,this.missingRef))}};qp.default=Zp});var ec=O(At=>{"use strict";Object.defineProperty(At,"__esModule",{value:!0});At.resolveSchema=At.getCompilingSchema=At.resolveRef=At.compileSchema=At.SchemaEnv=void 0;var Gt=Q(),uO=Ya(),Hn=Tr(),Jt=Ys(),Mv=ue(),lO=ti(),Do=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,Jt.normalizeId)(n?.[e.schemaId||"$id"]),this.schemaPath=e.schemaPath,this.localRefs=e.localRefs,this.meta=e.meta,this.$async=n?.$async,this.refs={}}};At.SchemaEnv=Do;function Vp(t){let e=jv.call(this,t);if(e)return e;let r=(0,Jt.getFullPath)(this.opts.uriResolver,t.root.baseId),{es5:n,lines:o}=this.opts.code,{ownProperties:s}=this.opts,i=new Gt.CodeGen(this.scope,{es5:n,lines:o,ownProperties:s}),a;t.$async&&(a=i.scopeValue("Error",{ref:uO.default,code:(0,Gt._)`require("ajv/dist/runtime/validation_error").default`}));let c=i.scopeName("validate");t.validateName=c;let u={gen:i,allErrors:this.opts.allErrors,data:Hn.default.data,parentData:Hn.default.parentData,parentDataProperty:Hn.default.parentDataProperty,dataNames:[Hn.default.data],dataPathArr:[Gt.nil],dataLevel:0,dataTypes:[],definedProperties:new Set,topSchemaRef:i.scopeValue("schema",this.opts.code.source===!0?{ref:t.schema,code:(0,Gt.stringify)(t.schema)}:{ref:t.schema}),validateName:c,ValidationError:a,schema:t.schema,schemaEnv:t,rootId:r,baseId:t.baseId||r,schemaPath:Gt.nil,errSchemaPath:t.schemaPath||(this.opts.jtd?"":"#"),errorPath:(0,Gt._)`""`,opts:this.opts,self:this},l;try{this._compilations.add(t),(0,lO.validateFunctionCode)(u),i.optimize(this.opts.code.optimize);let d=i.toString();l=`${i.scopeRefs(Hn.default.scope)}return ${d}`,this.opts.code.process&&(l=this.opts.code.process(l,t));let m=new Function(`${Hn.default.self}`,`${Hn.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 Gt.Name?void 0:p,items:h instanceof Gt.Name?void 0:h,dynamicProps:p instanceof Gt.Name,dynamicItems:h instanceof Gt.Name},m.source&&(m.source.evaluated=(0,Gt.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)}}At.compileSchema=Vp;function dO(t,e,r){var n;r=(0,Jt.resolveUrl)(this.opts.uriResolver,e,r);let o=t.refs[r];if(o)return o;let s=mO.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 Do({schema:i,schemaId:a,root:t,baseId:e}))}if(s!==void 0)return t.refs[r]=pO.call(this,s)}At.resolveRef=dO;function pO(t){return(0,Jt.inlineRef)(t.schema,this.opts.inlineRefs)?t.schema:t.validate?t:Vp.call(this,t)}function jv(t){for(let e of this._compilations)if(fO(e,t))return e}At.getCompilingSchema=jv;function fO(t,e){return t.schema===e.schema&&t.root===e.root&&t.baseId===e.baseId}function mO(t,e){let r;for(;typeof(r=this.refs[e])=="string";)e=r;return r||this.schemas[e]||Qa.call(this,t,e)}function Qa(t,e){let r=this.opts.uriResolver.parse(e),n=(0,Jt._getFullPath)(this.opts.uriResolver,r),o=(0,Jt.getFullPath)(this.opts.uriResolver,t.baseId,void 0);if(Object.keys(t.schema).length>0&&n===o)return Bp.call(this,r,t);let s=(0,Jt.normalizeId)(n),i=this.refs[s]||this.schemas[s];if(typeof i=="string"){let a=Qa.call(this,t,i);return typeof a?.schema!="object"?void 0:Bp.call(this,r,a)}if(typeof i?.schema=="object"){if(i.validate||Vp.call(this,i),s===(0,Jt.normalizeId)(e)){let{schema:a}=i,{schemaId:c}=this.opts,u=a[c];return u&&(o=(0,Jt.resolveUrl)(this.opts.uriResolver,o,u)),new Do({schema:a,schemaId:c,root:t,baseId:o})}return Bp.call(this,r,i)}}At.resolveSchema=Qa;var hO=new Set(["properties","patternProperties","enum","dependencies","definitions"]);function Bp(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,Mv.unescapeFragment)(a)];if(c===void 0)return;r=c;let u=typeof r=="object"&&r[this.opts.schemaId];!hO.has(a)&&u&&(e=(0,Jt.resolveUrl)(this.opts.uriResolver,e,u))}let s;if(typeof r!="boolean"&&r.$ref&&!(0,Mv.schemaHasRulesButRef)(r,this.RULES)){let a=(0,Jt.resolveUrl)(this.opts.uriResolver,e,r.$ref);s=Qa.call(this,n,a)}let{schemaId:i}=this.opts;if(s=s||new Do({schema:r,schemaId:i,root:n,baseId:e}),s.schema!==s.root.schema)return s}});var zv=O((uq,gO)=>{gO.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 Kp=O((lq,Fv)=>{"use strict";var yO=RegExp.prototype.test.bind(/^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$/iu),Uv=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);function Wp(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 _O=RegExp.prototype.test.bind(/[^!"$&'()*+,\-.;=_`a-z{}~]/u);function Lv(t){return t.length=0,!0}function vO(t,e,r){if(t.length){let n=Wp(t);if(n!=="")e.push(n);else return r.error=!0,!1;t.length=0}return!0}function xO(t){let e=0,r={error:!1,address:"",zone:""},n=[],o=[],s=!1,i=!1,a=vO;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=Lv}else{o.push(u);continue}}return o.length&&(a===Lv?r.zone=o.join(""):i?n.push(o.join("")):n.push(Wp(o))),r.address=n.join(""),r}function Hv(t){if(bO(t,":")<2)return{host:t,isIPV6:!1};let e=xO(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 bO(t,e){let r=0;for(let n=0;n<t.length;n++)t[n]===e&&r++;return r}function SO(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("")}function kO(t,e){let r=e!==!0?escape:unescape;return t.scheme!==void 0&&(t.scheme=r(t.scheme)),t.userinfo!==void 0&&(t.userinfo=r(t.userinfo)),t.host!==void 0&&(t.host=r(t.host)),t.path!==void 0&&(t.path=r(t.path)),t.query!==void 0&&(t.query=r(t.query)),t.fragment!==void 0&&(t.fragment=r(t.fragment)),t}function EO(t){let e=[];if(t.userinfo!==void 0&&(e.push(t.userinfo),e.push("@")),t.host!==void 0){let r=unescape(t.host);if(!Uv(r)){let n=Hv(r);n.isIPV6===!0?r=`[${n.escapedHost}]`:r=t.host}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}Fv.exports={nonSimpleDomain:_O,recomposeAuthority:EO,normalizeComponentEncoding:kO,removeDotSegments:SO,isIPv4:Uv,isUUID:yO,normalizeIPv6:Hv,stringArrayToHexStripped:Wp}});var Wv=O((dq,Vv)=>{"use strict";var{isUUID:wO}=Kp(),TO=/([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu,RO=["http","https","ws","wss","urn","urn:uuid"];function PO(t){return RO.indexOf(t)!==-1}function Gp(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 Zv(t){return t.host||(t.error=t.error||"HTTP URIs must have a host."),t}function qv(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 $O(t){return t.secure=Gp(t),t.resourceName=(t.path||"/")+(t.query?"?"+t.query:""),t.path=void 0,t.query=void 0,t}function CO(t){if((t.port===(Gp(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 OO(t,e){if(!t.path)return t.error="URN can not be parsed",t;let r=t.path.match(TO);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=Jp(o);t.path=void 0,s&&(t=s.parse(t,e))}else t.error=t.error||"URN can not be parsed.";return t}function IO(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=Jp(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 AO(t,e){let r=t;return r.uuid=r.nss,r.nss=void 0,!e.tolerant&&(!r.uuid||!wO(r.uuid))&&(r.error=r.error||"UUID is not valid."),r}function NO(t){let e=t;return e.nss=(t.uuid||"").toLowerCase(),e}var Bv={scheme:"http",domainHost:!0,parse:Zv,serialize:qv},DO={scheme:"https",domainHost:Bv.domainHost,parse:Zv,serialize:qv},tc={scheme:"ws",domainHost:!0,parse:$O,serialize:CO},MO={scheme:"wss",domainHost:tc.domainHost,parse:tc.parse,serialize:tc.serialize},jO={scheme:"urn",parse:OO,serialize:IO,skipNormalize:!0},zO={scheme:"urn:uuid",parse:AO,serialize:NO,skipNormalize:!0},rc={http:Bv,https:DO,ws:tc,wss:MO,urn:jO,"urn:uuid":zO};Object.setPrototypeOf(rc,null);function Jp(t){return t&&(rc[t]||rc[t.toLowerCase()])||void 0}Vv.exports={wsIsSecure:Gp,SCHEMES:rc,isValidSchemeName:PO,getSchemeHandler:Jp}});var Jv=O((pq,oc)=>{"use strict";var{normalizeIPv6:LO,removeDotSegments:ni,recomposeAuthority:UO,normalizeComponentEncoding:nc,isIPv4:HO,nonSimpleDomain:FO}=Kp(),{SCHEMES:ZO,getSchemeHandler:Kv}=Wv();function qO(t,e){return typeof t=="string"?t=pr(Pr(t,e),e):typeof t=="object"&&(t=Pr(pr(t,e),e)),t}function BO(t,e,r){let n=r?Object.assign({scheme:"null"},r):{scheme:"null"},o=Gv(Pr(t,n),Pr(e,n),n,!0);return n.skipEscape=!0,pr(o,n)}function Gv(t,e,r,n){let o={};return n||(t=Pr(pr(t,r),r),e=Pr(pr(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=ni(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=ni(e.path||""),o.query=e.query):(e.path?(e.path[0]==="/"?o.path=ni(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=ni(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 VO(t,e,r){return typeof t=="string"?(t=unescape(t),t=pr(nc(Pr(t,r),!0),{...r,skipEscape:!0})):typeof t=="object"&&(t=pr(nc(t,!0),{...r,skipEscape:!0})),typeof e=="string"?(e=unescape(e),e=pr(nc(Pr(e,r),!0),{...r,skipEscape:!0})):typeof e=="object"&&(e=pr(nc(e,!0),{...r,skipEscape:!0})),t.toLowerCase()===e.toLowerCase()}function pr(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=Kv(n.scheme||r.scheme);s&&s.serialize&&s.serialize(r,n),r.path!==void 0&&(n.skipEscape?r.path=unescape(r.path):(r.path=escape(r.path),r.scheme!==void 0&&(r.path=r.path.split("%3A").join(":")))),n.reference!=="suffix"&&r.scheme&&o.push(r.scheme,":");let i=UO(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=ni(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 WO=/^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;function Pr(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;r.reference==="suffix"&&(r.scheme?t=r.scheme+":"+t:t="//"+t);let s=t.match(WO);if(s){if(n.scheme=s[1],n.userinfo=s[3],n.host=s[4],n.port=parseInt(s[5],10),n.path=s[6]||"",n.query=s[7],n.fragment=s[8],isNaN(n.port)&&(n.port=s[5]),n.host)if(HO(n.host)===!1){let c=LO(n.host);n.host=c.host.toLowerCase(),o=c.isIPV6}else o=!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 i=Kv(r.scheme||n.scheme);if(!r.unicodeSupport&&(!i||!i.unicodeSupport)&&n.host&&(r.domainHost||i&&i.domainHost)&&o===!1&&FO(n.host))try{n.host=URL.domainToASCII(n.host.toLowerCase())}catch(a){n.error=n.error||"Host's domain name can not be converted to ASCII: "+a}(!i||i&&!i.skipNormalize)&&(t.indexOf("%")!==-1&&(n.scheme!==void 0&&(n.scheme=unescape(n.scheme)),n.host!==void 0&&(n.host=unescape(n.host))),n.path&&(n.path=escape(unescape(n.path))),n.fragment&&(n.fragment=encodeURI(decodeURIComponent(n.fragment)))),i&&i.parse&&i.parse(n,r)}else n.error=n.error||"URI can not be parsed.";return n}var Xp={SCHEMES:ZO,normalize:qO,resolve:BO,resolveComponent:Gv,equal:VO,serialize:pr,parse:Pr};oc.exports=Xp;oc.exports.default=Xp;oc.exports.fastUri=Xp});var Yv=O(Yp=>{"use strict";Object.defineProperty(Yp,"__esModule",{value:!0});var Xv=Jv();Xv.code='require("ajv/dist/runtime/uri").default';Yp.default=Xv});var ix=O(Ge=>{"use strict";Object.defineProperty(Ge,"__esModule",{value:!0});Ge.CodeGen=Ge.Name=Ge.nil=Ge.stringify=Ge.str=Ge._=Ge.KeywordCxt=void 0;var KO=ti();Object.defineProperty(Ge,"KeywordCxt",{enumerable:!0,get:function(){return KO.KeywordCxt}});var Mo=Q();Object.defineProperty(Ge,"_",{enumerable:!0,get:function(){return Mo._}});Object.defineProperty(Ge,"str",{enumerable:!0,get:function(){return Mo.str}});Object.defineProperty(Ge,"stringify",{enumerable:!0,get:function(){return Mo.stringify}});Object.defineProperty(Ge,"nil",{enumerable:!0,get:function(){return Mo.nil}});Object.defineProperty(Ge,"Name",{enumerable:!0,get:function(){return Mo.Name}});Object.defineProperty(Ge,"CodeGen",{enumerable:!0,get:function(){return Mo.CodeGen}});var GO=Ya(),nx=ri(),JO=Rp(),oi=ec(),XO=Q(),si=Ys(),sc=Xs(),ef=ue(),Qv=zv(),YO=Yv(),ox=(t,e)=>new RegExp(t,e);ox.code="new RegExp";var QO=["removeAdditional","useDefaults","coerceTypes"],eI=new Set(["validate","serialize","parse","wrapper","root","schema","keyword","pattern","formats","validate$data","func","obj","Error"]),tI={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."},rI={ignoreKeywordsWithRef:"",jsPropertySyntax:"",unicode:'"minLength"/"maxLength" account for unicode characters by default.'},ex=200;function nI(t){var e,r,n,o,s,i,a,c,u,l,d,f,m,p,h,g,y,v,_,b,E,R,N,C,M;let W=t.strict,k=(e=t.code)===null||e===void 0?void 0:e.optimize,D=k===!0||k===void 0?1:k||0,L=(n=(r=t.code)===null||r===void 0?void 0:r.regExp)!==null&&n!==void 0?n:ox,qe=(o=t.uriResolver)!==null&&o!==void 0?o:YO.default;return{strictSchema:(i=(s=t.strictSchema)!==null&&s!==void 0?s:W)!==null&&i!==void 0?i:!0,strictNumbers:(c=(a=t.strictNumbers)!==null&&a!==void 0?a:W)!==null&&c!==void 0?c:!0,strictTypes:(l=(u=t.strictTypes)!==null&&u!==void 0?u:W)!==null&&l!==void 0?l:"log",strictTuples:(f=(d=t.strictTuples)!==null&&d!==void 0?d:W)!==null&&f!==void 0?f:"log",strictRequired:(p=(m=t.strictRequired)!==null&&m!==void 0?m:W)!==null&&p!==void 0?p:!1,code:t.code?{...t.code,optimize:D,regExp:L}:{optimize:D,regExp:L},loopRequired:(h=t.loopRequired)!==null&&h!==void 0?h:ex,loopEnum:(g=t.loopEnum)!==null&&g!==void 0?g:ex,meta:(y=t.meta)!==null&&y!==void 0?y:!0,messages:(v=t.messages)!==null&&v!==void 0?v:!0,inlineRefs:(_=t.inlineRefs)!==null&&_!==void 0?_:!0,schemaId:(b=t.schemaId)!==null&&b!==void 0?b:"$id",addUsedSchema:(E=t.addUsedSchema)!==null&&E!==void 0?E:!0,validateSchema:(R=t.validateSchema)!==null&&R!==void 0?R:!0,validateFormats:(N=t.validateFormats)!==null&&N!==void 0?N:!0,unicodeRegExp:(C=t.unicodeRegExp)!==null&&C!==void 0?C:!0,int32range:(M=t.int32range)!==null&&M!==void 0?M:!0,uriResolver:qe}}var ii=class{constructor(e={}){this.schemas={},this.refs={},this.formats={},this._compilations=new Set,this._loading={},this._cache=new Map,e=this.opts={...e,...nI(e)};let{es5:r,lines:n}=this.opts.code;this.scope=new XO.ValueScope({scope:{},prefixes:eI,es5:r,lines:n}),this.logger=uI(e.logger);let o=e.validateFormats;e.validateFormats=!1,this.RULES=(0,JO.getRules)(),tx.call(this,tI,e,"NOT SUPPORTED"),tx.call(this,rI,e,"DEPRECATED","warn"),this._metaOpts=aI.call(this),e.formats&&sI.call(this),this._addVocabularies(),this._addDefaultMetaSchema(),e.keywords&&iI.call(this,e.keywords),typeof e.meta=="object"&&this.addMetaSchema(e.meta),oI.call(this),e.validateFormats=o}_addVocabularies(){this.addKeyword("$async")}_addDefaultMetaSchema(){let{$data:e,meta:r,schemaId:n}=this.opts,o=Qv;n==="id"&&(o={...Qv},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 nx.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,si.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=rx.call(this,e))=="string";)e=r;if(r===void 0){let{schemaId:n}=this.opts,o=new oi.SchemaEnv({schema:{},schemaId:n});if(r=oi.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=rx.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,si.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(dI.call(this,n,r),!r)return(0,ef.eachItem)(n,s=>Qp.call(this,s)),this;fI.call(this,r);let o={...r,type:(0,sc.getJSONTypes)(r.type),schemaType:(0,sc.getJSONTypes)(r.schemaType)};return(0,ef.eachItem)(n,o.type.length===0?s=>Qp.call(this,s,o):s=>o.type.forEach(i=>Qp.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]=sx(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,si.normalizeId)(i||n);let u=si.getSchemaRefs.call(this,e,n);return c=new oi.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):oi.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{oi.compileSchema.call(this,e)}finally{this.opts=r}}};ii.ValidationError=GO.default;ii.MissingRefError=nx.default;Ge.default=ii;function tx(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 rx(t){return t=(0,si.normalizeId)(t),this.schemas[t]||this.refs[t]}function oI(){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 sI(){for(let t in this.opts.formats){let e=this.opts.formats[t];e&&this.addFormat(t,e)}}function iI(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 aI(){let t={...this.opts};for(let e of QO)delete t[e];return t}var cI={log(){},warn(){},error(){}};function uI(t){if(t===!1)return cI;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 lI=/^[a-z_$][a-z0-9_$:-]*$/i;function dI(t,e){let{RULES:r}=this;if((0,ef.eachItem)(t,n=>{if(r.keywords[n])throw new Error(`Keyword ${n} is already defined`);if(!lI.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 Qp(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,sc.getJSONTypes)(e.type),schemaType:(0,sc.getJSONTypes)(e.schemaType)}};e.before?pI.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 pI(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 fI(t){let{metaSchema:e}=t;e!==void 0&&(t.$data&&this.opts.$data&&(e=sx(e)),t.validateSchema=this.compile(e,!0))}var mI={$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"};function sx(t){return{anyOf:[t,mI]}}});var ax=O(tf=>{"use strict";Object.defineProperty(tf,"__esModule",{value:!0});var hI={keyword:"id",code(){throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')}};tf.default=hI});var dx=O(Fn=>{"use strict";Object.defineProperty(Fn,"__esModule",{value:!0});Fn.callRef=Fn.getValidate=void 0;var gI=ri(),cx=It(),yt=Q(),jo=Tr(),ux=ec(),ic=ue(),yI={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=ux.resolveRef.call(c,u,o,r);if(l===void 0)throw new gI.default(n.opts.uriResolver,o,r);if(l instanceof ux.SchemaEnv)return f(l);return m(l);function d(){if(s===u)return ac(t,i,s,s.$async);let p=e.scopeValue("root",{ref:u});return ac(t,(0,yt._)`${p}.validate`,u,u.$async)}function f(p){let h=lx(t,p);ac(t,h,p,p.$async)}function m(p){let h=e.scopeValue("schema",a.code.source===!0?{ref:p,code:(0,yt.stringify)(p)}:{ref:p}),g=e.name("valid"),y=t.subschema({schema:p,dataTypes:[],schemaPath:yt.nil,topSchemaRef:h,errSchemaPath:r},g);t.mergeEvaluated(y),t.ok(g)}}};function lx(t,e){let{gen:r}=t;return e.validate?r.scopeValue("validate",{ref:e.validate}):(0,yt._)`${r.scopeValue("wrapper",{ref:e})}.validate`}Fn.getValidate=lx;function ac(t,e,r,n){let{gen:o,it:s}=t,{allErrors:i,schemaEnv:a,opts:c}=s,u=c.passContext?jo.default.this:yt.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,yt._)`await ${(0,cx.callValidateCode)(t,e,u)}`),m(e),i||o.assign(p,!0)},h=>{o.if((0,yt._)`!(${h} instanceof ${s.ValidationError})`,()=>o.throw(h)),f(h),i||o.assign(p,!1)}),t.ok(p)}function d(){t.result((0,cx.callValidateCode)(t,e,u),()=>m(e),()=>f(e))}function f(p){let h=(0,yt._)`${p}.errors`;o.assign(jo.default.vErrors,(0,yt._)`${jo.default.vErrors} === null ? ${h} : ${jo.default.vErrors}.concat(${h})`),o.assign(jo.default.errors,(0,yt._)`${jo.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=ic.mergeEvaluated.props(o,g.props,s.props));else{let y=o.var("props",(0,yt._)`${p}.evaluated.props`);s.props=ic.mergeEvaluated.props(o,y,s.props,yt.Name)}if(s.items!==!0)if(g&&!g.dynamicItems)g.items!==void 0&&(s.items=ic.mergeEvaluated.items(o,g.items,s.items));else{let y=o.var("items",(0,yt._)`${p}.evaluated.items`);s.items=ic.mergeEvaluated.items(o,y,s.items,yt.Name)}}}Fn.callRef=ac;Fn.default=yI});var px=O(rf=>{"use strict";Object.defineProperty(rf,"__esModule",{value:!0});var _I=ax(),vI=dx(),xI=["$schema","$id","$defs","$vocabulary",{keyword:"$comment"},"definitions",_I.default,vI.default];rf.default=xI});var fx=O(nf=>{"use strict";Object.defineProperty(nf,"__esModule",{value:!0});var cc=Q(),en=cc.operators,uc={maximum:{okStr:"<=",ok:en.LTE,fail:en.GT},minimum:{okStr:">=",ok:en.GTE,fail:en.LT},exclusiveMaximum:{okStr:"<",ok:en.LT,fail:en.GTE},exclusiveMinimum:{okStr:">",ok:en.GT,fail:en.LTE}},bI={message:({keyword:t,schemaCode:e})=>(0,cc.str)`must be ${uc[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,cc._)`{comparison: ${uc[t].okStr}, limit: ${e}}`},SI={keyword:Object.keys(uc),type:"number",schemaType:"number",$data:!0,error:bI,code(t){let{keyword:e,data:r,schemaCode:n}=t;t.fail$data((0,cc._)`${r} ${uc[e].fail} ${n} || isNaN(${r})`)}};nf.default=SI});var mx=O(of=>{"use strict";Object.defineProperty(of,"__esModule",{value:!0});var ai=Q(),kI={message:({schemaCode:t})=>(0,ai.str)`must be multiple of ${t}`,params:({schemaCode:t})=>(0,ai._)`{multipleOf: ${t}}`},EI={keyword:"multipleOf",type:"number",schemaType:"number",$data:!0,error:kI,code(t){let{gen:e,data:r,schemaCode:n,it:o}=t,s=o.opts.multipleOfPrecision,i=e.let("res"),a=s?(0,ai._)`Math.abs(Math.round(${i}) - ${i}) > 1e-${s}`:(0,ai._)`${i} !== parseInt(${i})`;t.fail$data((0,ai._)`(${n} === 0 || (${i} = ${r}/${n}, ${a}))`)}};of.default=EI});var gx=O(sf=>{"use strict";Object.defineProperty(sf,"__esModule",{value:!0});function hx(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}sf.default=hx;hx.code='require("ajv/dist/runtime/ucs2length").default'});var yx=O(af=>{"use strict";Object.defineProperty(af,"__esModule",{value:!0});var Zn=Q(),wI=ue(),TI=gx(),RI={message({keyword:t,schemaCode:e}){let r=t==="maxLength"?"more":"fewer";return(0,Zn.str)`must NOT have ${r} than ${e} characters`},params:({schemaCode:t})=>(0,Zn._)`{limit: ${t}}`},PI={keyword:["maxLength","minLength"],type:"string",schemaType:"number",$data:!0,error:RI,code(t){let{keyword:e,data:r,schemaCode:n,it:o}=t,s=e==="maxLength"?Zn.operators.GT:Zn.operators.LT,i=o.opts.unicode===!1?(0,Zn._)`${r}.length`:(0,Zn._)`${(0,wI.useFunc)(t.gen,TI.default)}(${r})`;t.fail$data((0,Zn._)`${i} ${s} ${n}`)}};af.default=PI});var _x=O(cf=>{"use strict";Object.defineProperty(cf,"__esModule",{value:!0});var $I=It(),CI=ue(),zo=Q(),OI={message:({schemaCode:t})=>(0,zo.str)`must match pattern "${t}"`,params:({schemaCode:t})=>(0,zo._)`{pattern: ${t}}`},II={keyword:"pattern",type:"string",schemaType:"string",$data:!0,error:OI,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,zo._)`new RegExp`:(0,CI.useFunc)(e,c),l=e.let("valid");e.try(()=>e.assign(l,(0,zo._)`${u}(${s}, ${a}).test(${r})`),()=>e.assign(l,!1)),t.fail$data((0,zo._)`!${l}`)}else{let c=(0,$I.usePattern)(t,o);t.fail$data((0,zo._)`!${c}.test(${r})`)}}};cf.default=II});var vx=O(uf=>{"use strict";Object.defineProperty(uf,"__esModule",{value:!0});var ci=Q(),AI={message({keyword:t,schemaCode:e}){let r=t==="maxProperties"?"more":"fewer";return(0,ci.str)`must NOT have ${r} than ${e} properties`},params:({schemaCode:t})=>(0,ci._)`{limit: ${t}}`},NI={keyword:["maxProperties","minProperties"],type:"object",schemaType:"number",$data:!0,error:AI,code(t){let{keyword:e,data:r,schemaCode:n}=t,o=e==="maxProperties"?ci.operators.GT:ci.operators.LT;t.fail$data((0,ci._)`Object.keys(${r}).length ${o} ${n}`)}};uf.default=NI});var xx=O(lf=>{"use strict";Object.defineProperty(lf,"__esModule",{value:!0});var ui=It(),li=Q(),DI=ue(),MI={message:({params:{missingProperty:t}})=>(0,li.str)`must have required property '${t}'`,params:({params:{missingProperty:t}})=>(0,li._)`{missingProperty: ${t}}`},jI={keyword:"required",type:"object",schemaType:"array",$data:!0,error:MI,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,y=`required property "${h}" is not defined at "${g}" (strictRequired)`;(0,DI.checkStrictMode)(i,y,i.opts.strictRequired)}}function u(){if(c||s)t.block$data(li.nil,d);else for(let m of r)(0,ui.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,ui.checkMissingProp)(t,r,m)),(0,ui.reportMissingProp)(t,m),e.else()}function d(){e.forOf("prop",n,m=>{t.setParams({missingProperty:m}),e.if((0,ui.noPropertyInData)(e,o,m,a.ownProperties),()=>t.error())})}function f(m,p){t.setParams({missingProperty:m}),e.forOf(m,n,()=>{e.assign(p,(0,ui.propertyInData)(e,o,m,a.ownProperties)),e.if((0,li.not)(p),()=>{t.error(),e.break()})},li.nil)}}};lf.default=jI});var bx=O(df=>{"use strict";Object.defineProperty(df,"__esModule",{value:!0});var di=Q(),zI={message({keyword:t,schemaCode:e}){let r=t==="maxItems"?"more":"fewer";return(0,di.str)`must NOT have ${r} than ${e} items`},params:({schemaCode:t})=>(0,di._)`{limit: ${t}}`},LI={keyword:["maxItems","minItems"],type:"array",schemaType:"number",$data:!0,error:zI,code(t){let{keyword:e,data:r,schemaCode:n}=t,o=e==="maxItems"?di.operators.GT:di.operators.LT;t.fail$data((0,di._)`${r}.length ${o} ${n}`)}};df.default=LI});var lc=O(pf=>{"use strict";Object.defineProperty(pf,"__esModule",{value:!0});var Sx=Dp();Sx.code='require("ajv/dist/runtime/equal").default';pf.default=Sx});var kx=O(mf=>{"use strict";Object.defineProperty(mf,"__esModule",{value:!0});var ff=Xs(),Je=Q(),UI=ue(),HI=lc(),FI={message:({params:{i:t,j:e}})=>(0,Je.str)`must NOT have duplicate items (items ## ${e} and ${t} are identical)`,params:({params:{i:t,j:e}})=>(0,Je._)`{i: ${t}, j: ${e}}`},ZI={keyword:"uniqueItems",type:"array",schemaType:"boolean",$data:!0,error:FI,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,ff.getSchemaTypes)(s.items):[];t.block$data(c,l,(0,Je._)`${i} === false`),t.ok(c);function l(){let p=e.let("i",(0,Je._)`${r}.length`),h=e.let("j");t.setParams({i:p,j:h}),e.assign(c,!0),e.if((0,Je._)`${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"),y=(0,ff.checkDataTypes)(u,g,a.opts.strictNumbers,ff.DataType.Wrong),v=e.const("indices",(0,Je._)`{}`);e.for((0,Je._)`;${p}--;`,()=>{e.let(g,(0,Je._)`${r}[${p}]`),e.if(y,(0,Je._)`continue`),u.length>1&&e.if((0,Je._)`typeof ${g} == "string"`,(0,Je._)`${g} += "_"`),e.if((0,Je._)`typeof ${v}[${g}] == "number"`,()=>{e.assign(h,(0,Je._)`${v}[${g}]`),t.error(),e.assign(c,!1).break()}).code((0,Je._)`${v}[${g}] = ${p}`)})}function m(p,h){let g=(0,UI.useFunc)(e,HI.default),y=e.name("outer");e.label(y).for((0,Je._)`;${p}--;`,()=>e.for((0,Je._)`${h} = ${p}; ${h}--;`,()=>e.if((0,Je._)`${g}(${r}[${p}], ${r}[${h}])`,()=>{t.error(),e.assign(c,!1).break(y)})))}}};mf.default=ZI});var Ex=O(gf=>{"use strict";Object.defineProperty(gf,"__esModule",{value:!0});var hf=Q(),qI=ue(),BI=lc(),VI={message:"must be equal to constant",params:({schemaCode:t})=>(0,hf._)`{allowedValue: ${t}}`},WI={keyword:"const",$data:!0,error:VI,code(t){let{gen:e,data:r,$data:n,schemaCode:o,schema:s}=t;n||s&&typeof s=="object"?t.fail$data((0,hf._)`!${(0,qI.useFunc)(e,BI.default)}(${r}, ${o})`):t.fail((0,hf._)`${s} !== ${r}`)}};gf.default=WI});var wx=O(yf=>{"use strict";Object.defineProperty(yf,"__esModule",{value:!0});var pi=Q(),KI=ue(),GI=lc(),JI={message:"must be equal to one of the allowed values",params:({schemaCode:t})=>(0,pi._)`{allowedValues: ${t}}`},XI={keyword:"enum",schemaType:"array",$data:!0,error:JI,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,KI.useFunc)(e,GI.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,pi.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,pi._)`${u()}(${r}, ${m})`,()=>e.assign(l,!0).break()))}function f(m,p){let h=o[p];return typeof h=="object"&&h!==null?(0,pi._)`${u()}(${r}, ${m}[${p}])`:(0,pi._)`${r} === ${h}`}}};yf.default=XI});var Tx=O(_f=>{"use strict";Object.defineProperty(_f,"__esModule",{value:!0});var YI=fx(),QI=mx(),eA=yx(),tA=_x(),rA=vx(),nA=xx(),oA=bx(),sA=kx(),iA=Ex(),aA=wx(),cA=[YI.default,QI.default,eA.default,tA.default,rA.default,nA.default,oA.default,sA.default,{keyword:"type",schemaType:["string","array"]},{keyword:"nullable",schemaType:"boolean"},iA.default,aA.default];_f.default=cA});var xf=O(fi=>{"use strict";Object.defineProperty(fi,"__esModule",{value:!0});fi.validateAdditionalItems=void 0;var qn=Q(),vf=ue(),uA={message:({params:{len:t}})=>(0,qn.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,qn._)`{limit: ${t}}`},lA={keyword:"additionalItems",type:"array",schemaType:["boolean","object"],before:"uniqueItems",error:uA,code(t){let{parentSchema:e,it:r}=t,{items:n}=e;if(!Array.isArray(n)){(0,vf.checkStrictMode)(r,'"additionalItems" is ignored when "items" is not an array of schemas');return}Rx(t,n)}};function Rx(t,e){let{gen:r,schema:n,data:o,keyword:s,it:i}=t;i.items=!0;let a=r.const("len",(0,qn._)`${o}.length`);if(n===!1)t.setParams({len:e.length}),t.pass((0,qn._)`${a} <= ${e.length}`);else if(typeof n=="object"&&!(0,vf.alwaysValidSchema)(i,n)){let u=r.var("valid",(0,qn._)`${a} <= ${e.length}`);r.if((0,qn.not)(u),()=>c(u)),t.ok(u)}function c(u){r.forRange("i",e.length,a,l=>{t.subschema({keyword:s,dataProp:l,dataPropType:vf.Type.Num},u),i.allErrors||r.if((0,qn.not)(u),()=>r.break())})}}fi.validateAdditionalItems=Rx;fi.default=lA});var bf=O(mi=>{"use strict";Object.defineProperty(mi,"__esModule",{value:!0});mi.validateTuple=void 0;var Px=Q(),dc=ue(),dA=It(),pA={keyword:"items",type:"array",schemaType:["object","array","boolean"],before:"uniqueItems",code(t){let{schema:e,it:r}=t;if(Array.isArray(e))return $x(t,"additionalItems",e);r.items=!0,!(0,dc.alwaysValidSchema)(r,e)&&t.ok((0,dA.validateArray)(t))}};function $x(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=dc.mergeEvaluated.items(n,r.length,a.items));let c=n.name("valid"),u=n.const("len",(0,Px._)`${s}.length`);r.forEach((d,f)=>{(0,dc.alwaysValidSchema)(a,d)||(n.if((0,Px._)`${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,dc.checkStrictMode)(a,g,f.strictTuples)}}}mi.validateTuple=$x;mi.default=pA});var Cx=O(Sf=>{"use strict";Object.defineProperty(Sf,"__esModule",{value:!0});var fA=bf(),mA={keyword:"prefixItems",type:"array",schemaType:["array"],before:"uniqueItems",code:t=>(0,fA.validateTuple)(t,"items")};Sf.default=mA});var Ix=O(kf=>{"use strict";Object.defineProperty(kf,"__esModule",{value:!0});var Ox=Q(),hA=ue(),gA=It(),yA=xf(),_A={message:({params:{len:t}})=>(0,Ox.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,Ox._)`{limit: ${t}}`},vA={keyword:"items",type:"array",schemaType:["object","boolean"],before:"uniqueItems",error:_A,code(t){let{schema:e,parentSchema:r,it:n}=t,{prefixItems:o}=r;n.items=!0,!(0,hA.alwaysValidSchema)(n,e)&&(o?(0,yA.validateAdditionalItems)(t,o):t.ok((0,gA.validateArray)(t)))}};kf.default=vA});var Ax=O(Ef=>{"use strict";Object.defineProperty(Ef,"__esModule",{value:!0});var Nt=Q(),pc=ue(),xA={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}}`},bA={keyword:"contains",type:"array",schemaType:["object","boolean"],before:"uniqueItems",trackErrors:!0,error:xA,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,pc.checkStrictMode)(s,'"minContains" == 0 without "maxContains": "contains" keyword ignored');return}if(a!==void 0&&i>a){(0,pc.checkStrictMode)(s,'"minContains" > "maxContains" is always invalid'),t.fail();return}if((0,pc.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?m(d,()=>e.if(d,()=>e.break())):i===0?(e.let(d,!0),a!==void 0&&e.if((0,Nt._)`${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,y=>{t.subschema({keyword:"contains",dataProp:y,dataPropType:pc.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)))}}};Ef.default=bA});var Mx=O(fr=>{"use strict";Object.defineProperty(fr,"__esModule",{value:!0});fr.validateSchemaDeps=fr.validatePropertyDeps=fr.error=void 0;var wf=Q(),SA=ue(),hi=It();fr.error={message:({params:{property:t,depsCount:e,deps:r}})=>{let n=e===1?"property":"properties";return(0,wf.str)`must have ${n} ${r} when property ${t} is present`},params:({params:{property:t,depsCount:e,deps:r,missingProperty:n}})=>(0,wf._)`{property: ${t},
|
|
6
|
+
|| ${i} === "boolean" || ${o} === null`).assign(a,(0,X._)`[${o}]`)}}}function zC({gen:t,parentData:e,parentDataProperty:r},n){t.if((0,X._)`${e} !== undefined`,()=>t.assign((0,X._)`${e}[${r}]`,n))}function Lp(t,e,r,n=jo.Correct){let o=n===jo.Correct?X.operators.EQ:X.operators.NEQ,s;switch(t){case"null":return(0,X._)`${e} ${o} null`;case"array":s=(0,X._)`Array.isArray(${e})`;break;case"object":s=(0,X._)`${e} && typeof ${e} == "object" && !Array.isArray(${e})`;break;case"integer":s=i((0,X._)`!(${e} % 1) && !isNaN(${e})`);break;case"number":s=i();break;default:return(0,X._)`typeof ${e} ${o} ${t}`}return n===jo.Correct?s:(0,X.not)(s);function i(a=X.nil){return(0,X.and)((0,X._)`typeof ${e} == "number"`,a,r?(0,X._)`isFinite(${e})`:X.nil)}}ot.checkDataType=Lp;function Hp(t,e,r,n){if(t.length===1)return Lp(t[0],e,r,n);let o,s=(0,Ex.toHash)(t);if(s.array&&s.object){let i=(0,X._)`typeof ${e} != "object"`;o=s.null?i:(0,X._)`!${e} || ${i}`,delete s.null,delete s.array,delete s.object}else o=X.nil;s.number&&delete s.integer;for(let i in s)o=(0,X.and)(o,Lp(i,e,r,n));return o}ot.checkDataTypes=Hp;var LC={message:({schema:t})=>`must be ${t}`,params:({schema:t,schemaValue:e})=>typeof t=="string"?(0,X._)`{type: ${t}}`:(0,X._)`{type: ${e}}`};function Up(t){let e=HC(t);(0,AC.reportError)(e,LC)}ot.reportTypeError=Up;function HC(t){let{gen:e,data:r,schema:n}=t,o=(0,Ex.schemaRefOrVal)(t,n,"type");return{gen:e,keyword:"type",data:r,schema:n.type,schemaCode:o,schemaValue:o,parentSchema:n,params:{},it:t}}});var Rx=N(tc=>{"use strict";Object.defineProperty(tc,"__esModule",{value:!0});tc.assignDefaults=void 0;var zo=Q(),UC=ue();function FC(t,e){let{properties:r,items:n}=t.schema;if(e==="object"&&r)for(let o in r)Px(t,o,r[o].default);else e==="array"&&Array.isArray(n)&&n.forEach((o,s)=>Px(t,s,o.default))}tc.assignDefaults=FC;function Px(t,e,r){let{gen:n,compositeRule:o,data:s,opts:i}=t;if(r===void 0)return;let a=(0,zo._)`${s}${(0,zo.getProperty)(e)}`;if(o){(0,UC.checkStrictMode)(t,`default is ignored for: ${a}`);return}let c=(0,zo._)`${a} === undefined`;i.useDefaults==="empty"&&(c=(0,zo._)`${c} || ${a} === null || ${a} === ""`),n.if(c,(0,zo._)`${a} = ${(0,zo.stringify)(r)}`)}});var Mt=N(he=>{"use strict";Object.defineProperty(he,"__esModule",{value:!0});he.validateUnion=he.validateArray=he.usePattern=he.callValidateCode=he.schemaProperties=he.allSchemaProperties=he.noPropertyInData=he.propertyInData=he.isOwnProperty=he.hasPropFunc=he.reportMissingProp=he.checkMissingProp=he.checkReportMissingProp=void 0;var we=Q(),Fp=ue(),tn=Or(),ZC=ue();function BC(t,e){let{gen:r,data:n,it:o}=t;r.if(Bp(r,n,e,o.opts.ownProperties),()=>{t.setParams({missingProperty:(0,we._)`${e}`},!0),t.error()})}he.checkReportMissingProp=BC;function qC({gen:t,data:e,it:{opts:r}},n,o){return(0,we.or)(...n.map(s=>(0,we.and)(Bp(t,e,s,r.ownProperties),(0,we._)`${o} = ${s}`)))}he.checkMissingProp=qC;function VC(t,e){t.setParams({missingProperty:e},!0),t.error()}he.reportMissingProp=VC;function $x(t){return t.scopeValue("func",{ref:Object.prototype.hasOwnProperty,code:(0,we._)`Object.prototype.hasOwnProperty`})}he.hasPropFunc=$x;function Zp(t,e,r){return(0,we._)`${$x(t)}.call(${e}, ${r})`}he.isOwnProperty=Zp;function WC(t,e,r,n){let o=(0,we._)`${e}${(0,we.getProperty)(r)} !== undefined`;return n?(0,we._)`${o} && ${Zp(t,e,r)}`:o}he.propertyInData=WC;function Bp(t,e,r,n){let o=(0,we._)`${e}${(0,we.getProperty)(r)} === undefined`;return n?(0,we.or)(o,(0,we.not)(Zp(t,e,r))):o}he.noPropertyInData=Bp;function Cx(t){return t?Object.keys(t).filter(e=>e!=="__proto__"):[]}he.allSchemaProperties=Cx;function KC(t,e){return Cx(e).filter(r=>!(0,Fp.alwaysValidSchema)(t,e[r]))}he.schemaProperties=KC;function GC({schemaCode:t,data:e,it:{gen:r,topSchemaRef:n,schemaPath:o,errorPath:s},it:i},a,c,u){let l=u?(0,we._)`${t}, ${e}, ${n}${o}`:e,d=[[tn.default.instancePath,(0,we.strConcat)(tn.default.instancePath,s)],[tn.default.parentData,i.parentData],[tn.default.parentDataProperty,i.parentDataProperty],[tn.default.rootData,tn.default.rootData]];i.opts.dynamicRef&&d.push([tn.default.dynamicAnchors,tn.default.dynamicAnchors]);let f=(0,we._)`${l}, ${r.object(...d)}`;return c!==we.nil?(0,we._)`${a}.call(${c}, ${f})`:(0,we._)`${a}(${f})`}he.callValidateCode=GC;var JC=(0,we._)`new RegExp`;function XC({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,we._)`${o.code==="new RegExp"?JC:(0,ZC.useFunc)(t,o)}(${r}, ${n})`})}he.usePattern=XC;function YC(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,we._)`${r}.length`);e.forRange("i",0,c,u=>{t.subschema({keyword:n,dataProp:u,dataPropType:Fp.Type.Num},s),e.if((0,we.not)(s),a)})}}he.validateArray=YC;function QC(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,Fp.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,we._)`${i} || ${a}`),t.mergeValidEvaluated(l,a)||e.if((0,we.not)(i))})),t.result(i,()=>t.reset(),()=>t.error(!0))}he.validateUnion=QC});var Ax=N(fr=>{"use strict";Object.defineProperty(fr,"__esModule",{value:!0});fr.validateKeywordUsage=fr.validSchemaType=fr.funcKeywordCode=fr.macroKeywordCode=void 0;var ut=Q(),Bn=Or(),eO=Mt(),tO=ti();function rO(t,e){let{gen:r,keyword:n,schema:o,parentSchema:s,it:i}=t,a=e.macro.call(i.self,o,s,i),c=Ix(r,n,a);i.opts.validateSchema!==!1&&i.self.validateSchema(a,!0);let u=r.name("valid");t.subschema({schema:a,schemaPath:ut.nil,errSchemaPath:`${i.errSchemaPath}/${n}`,topSchemaRef:c,compositeRule:!0},u),t.pass(u,()=>t.error(!0))}fr.macroKeywordCode=rO;function nO(t,e){var r;let{gen:n,keyword:o,schema:s,parentSchema:i,$data:a,it:c}=t;sO(c,e);let u=!a&&e.compile?e.compile.call(c.self,s,i,c):e.validate,l=Ix(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)m(),e.modifying&&Ox(t),g(()=>t.error());else{let y=e.async?h():p();e.modifying&&Ox(t),g(()=>oO(t,y))}}function h(){let y=n.let("ruleErrs",null);return n.try(()=>m((0,ut._)`await `),_=>n.assign(d,!1).if((0,ut._)`${_} instanceof ${c.ValidationError}`,()=>n.assign(y,(0,ut._)`${_}.errors`),()=>n.throw(_))),y}function p(){let y=(0,ut._)`${l}.errors`;return n.assign(y,null),m(ut.nil),y}function m(y=e.async?(0,ut._)`await `:ut.nil){let _=c.opts.passContext?Bn.default.this:Bn.default.self,x=!("compile"in e&&!a||e.schema===!1);n.assign(d,(0,ut._)`${y}${(0,eO.callValidateCode)(t,l,_,x)}`,e.modifying)}function g(y){var _;n.if((0,ut.not)((_=e.valid)!==null&&_!==void 0?_:d),y)}}fr.funcKeywordCode=nO;function Ox(t){let{gen:e,data:r,it:n}=t;e.if(n.parentData,()=>e.assign(r,(0,ut._)`${n.parentData}[${n.parentDataProperty}]`))}function oO(t,e){let{gen:r}=t;r.if((0,ut._)`Array.isArray(${e})`,()=>{r.assign(Bn.default.vErrors,(0,ut._)`${Bn.default.vErrors} === null ? ${e} : ${Bn.default.vErrors}.concat(${e})`).assign(Bn.default.errors,(0,ut._)`${Bn.default.vErrors}.length`),(0,tO.extendErrors)(t)},()=>t.error())}function sO({schemaEnv:t},e){if(e.async&&!t.$async)throw new Error("async keyword in sync schema")}function Ix(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,ut.stringify)(r)})}function iO(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")}fr.validSchemaType=iO;function aO({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)}}fr.validateKeywordUsage=aO});var Dx=N(rn=>{"use strict";Object.defineProperty(rn,"__esModule",{value:!0});rn.extendSubschemaMode=rn.extendSubschemaData=rn.getSubschema=void 0;var mr=Q(),Nx=ue();function cO(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,mr._)`${t.schemaPath}${(0,mr.getProperty)(e)}`,errSchemaPath:`${t.errSchemaPath}/${e}`}:{schema:a[r],schemaPath:(0,mr._)`${t.schemaPath}${(0,mr.getProperty)(e)}${(0,mr.getProperty)(r)}`,errSchemaPath:`${t.errSchemaPath}/${e}/${(0,Nx.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')}rn.getSubschema=cO;function uO(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,mr._)`${e.data}${(0,mr.getProperty)(r)}`,!0);c(f),t.errorPath=(0,mr.str)`${u}${(0,Nx.getErrorPath)(r,n,d.jsPropertySyntax)}`,t.parentDataProperty=(0,mr._)`${r}`,t.dataPathArr=[...l,t.parentDataProperty]}if(o!==void 0){let u=o instanceof mr.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]}}rn.extendSubschemaData=uO;function lO(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}rn.extendSubschemaMode=lO});var qp=N((eq,Mx)=>{"use strict";Mx.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 zx=N((tq,jx)=>{"use strict";var nn=jx.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(){};rc(e,n,o,t,"",t)};nn.keywords={additionalItems:!0,items:!0,contains:!0,additionalProperties:!0,propertyNames:!0,not:!0,if:!0,then:!0,else:!0};nn.arrayKeywords={items:!0,allOf:!0,anyOf:!0,oneOf:!0};nn.propsKeywords={$defs:!0,definitions:!0,properties:!0,patternProperties:!0,dependencies:!0};nn.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 rc(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 nn.arrayKeywords)for(var f=0;f<d.length;f++)rc(t,e,r,d[f],o+"/"+l+"/"+f,s,o,l,n,f)}else if(l in nn.propsKeywords){if(d&&typeof d=="object")for(var h in d)rc(t,e,r,d[h],o+"/"+l+"/"+dO(h),s,o,l,n,h)}else(l in nn.keywords||t.allKeys&&!(l in nn.skipKeywords))&&rc(t,e,r,d,o+"/"+l,s,o,l,n)}r(n,o,s,i,a,c,u)}}function dO(t){return t.replace(/~/g,"~0").replace(/\//g,"~1")}});var ni=N(_t=>{"use strict";Object.defineProperty(_t,"__esModule",{value:!0});_t.getSchemaRefs=_t.resolveUrl=_t.normalizeId=_t._getFullPath=_t.getFullPath=_t.inlineRef=void 0;var pO=ue(),fO=qp(),mO=zx(),hO=new Set(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum","const"]);function gO(t,e=!0){return typeof t=="boolean"?!0:e===!0?!Vp(t):e?Lx(t)<=e:!1}_t.inlineRef=gO;var yO=new Set(["$ref","$recursiveRef","$recursiveAnchor","$dynamicRef","$dynamicAnchor"]);function Vp(t){for(let e in t){if(yO.has(e))return!0;let r=t[e];if(Array.isArray(r)&&r.some(Vp)||typeof r=="object"&&Vp(r))return!0}return!1}function Lx(t){let e=0;for(let r in t){if(r==="$ref")return 1/0;if(e++,!hO.has(r)&&(typeof t[r]=="object"&&(0,pO.eachItem)(t[r],n=>e+=Lx(n)),e===1/0))return 1/0}return e}function Hx(t,e="",r){r!==!1&&(e=Lo(e));let n=t.parse(e);return Ux(t,n)}_t.getFullPath=Hx;function Ux(t,e){return t.serialize(e).split("#")[0]+"#"}_t._getFullPath=Ux;var _O=/#\/?$/;function Lo(t){return t?t.replace(_O,""):""}_t.normalizeId=Lo;function xO(t,e,r){return r=Lo(r),t.resolve(e,r)}_t.resolveUrl=xO;var SO=/^[a-z_][-a-z0-9._]*$/i;function vO(t,e){if(typeof t=="boolean")return{};let{schemaId:r,uriResolver:n}=this.opts,o=Lo(t[r]||e),s={"":o},i=Hx(n,o,!1),a={},c=new Set;return mO(t,{allKeys:!0},(d,f,h,p)=>{if(p===void 0)return;let m=i+f,g=s[p];typeof d[r]=="string"&&(g=y.call(this,d[r])),_.call(this,d.$anchor),_.call(this,d.$dynamicAnchor),s[f]=g;function y(x){let S=this.opts.uriResolver.resolve;if(x=Lo(g?S(g,x):x),c.has(x))throw l(x);c.add(x);let k=this.refs[x];return typeof k=="string"&&(k=this.refs[k]),typeof k=="object"?u(d,k.schema,x):x!==Lo(m)&&(x[0]==="#"?(u(d,a[x],x),a[x]=d):this.refs[x]=m),x}function _(x){if(typeof x=="string"){if(!SO.test(x))throw new Error(`invalid anchor "${x}"`);y.call(this,`#${x}`)}}}),a;function u(d,f,h){if(f!==void 0&&!fO(d,f))throw l(h)}function l(d){return new Error(`reference "${d}" resolves to more than one schema`)}}_t.getSchemaRefs=vO});var ii=N(on=>{"use strict";Object.defineProperty(on,"__esModule",{value:!0});on.getData=on.KeywordCxt=on.validateFunctionCode=void 0;var Vx=vx(),Fx=ri(),Kp=zp(),nc=ri(),bO=Rx(),si=Ax(),Wp=Dx(),U=Q(),G=Or(),kO=ni(),Ir=ue(),oi=ti();function EO(t){if(Gx(t)&&(Jx(t),Kx(t))){PO(t);return}Wx(t,()=>(0,Vx.topBoolOrEmptySchema)(t))}on.validateFunctionCode=EO;function Wx({gen:t,validateName:e,schema:r,schemaEnv:n,opts:o},s){o.code.es5?t.func(e,(0,U._)`${G.default.data}, ${G.default.valCxt}`,n.$async,()=>{t.code((0,U._)`"use strict"; ${Zx(r,o)}`),TO(t,o),t.code(s)}):t.func(e,(0,U._)`${G.default.data}, ${wO(o)}`,n.$async,()=>t.code(Zx(r,o)).code(s))}function wO(t){return(0,U._)`{${G.default.instancePath}="", ${G.default.parentData}, ${G.default.parentDataProperty}, ${G.default.rootData}=${G.default.data}${t.dynamicRef?(0,U._)`, ${G.default.dynamicAnchors}={}`:U.nil}}={}`}function TO(t,e){t.if(G.default.valCxt,()=>{t.var(G.default.instancePath,(0,U._)`${G.default.valCxt}.${G.default.instancePath}`),t.var(G.default.parentData,(0,U._)`${G.default.valCxt}.${G.default.parentData}`),t.var(G.default.parentDataProperty,(0,U._)`${G.default.valCxt}.${G.default.parentDataProperty}`),t.var(G.default.rootData,(0,U._)`${G.default.valCxt}.${G.default.rootData}`),e.dynamicRef&&t.var(G.default.dynamicAnchors,(0,U._)`${G.default.valCxt}.${G.default.dynamicAnchors}`)},()=>{t.var(G.default.instancePath,(0,U._)`""`),t.var(G.default.parentData,(0,U._)`undefined`),t.var(G.default.parentDataProperty,(0,U._)`undefined`),t.var(G.default.rootData,G.default.data),e.dynamicRef&&t.var(G.default.dynamicAnchors,(0,U._)`{}`)})}function PO(t){let{schema:e,opts:r,gen:n}=t;Wx(t,()=>{r.$comment&&e.$comment&&Yx(t),IO(t),n.let(G.default.vErrors,null),n.let(G.default.errors,0),r.unevaluated&&RO(t),Xx(t),DO(t)})}function RO(t){let{gen:e,validateName:r}=t;t.evaluated=e.const("evaluated",(0,U._)`${r}.evaluated`),e.if((0,U._)`${t.evaluated}.dynamicProps`,()=>e.assign((0,U._)`${t.evaluated}.props`,(0,U._)`undefined`)),e.if((0,U._)`${t.evaluated}.dynamicItems`,()=>e.assign((0,U._)`${t.evaluated}.items`,(0,U._)`undefined`))}function Zx(t,e){let r=typeof t=="object"&&t[e.schemaId];return r&&(e.code.source||e.code.process)?(0,U._)`/*# sourceURL=${r} */`:U.nil}function $O(t,e){if(Gx(t)&&(Jx(t),Kx(t))){CO(t,e);return}(0,Vx.boolOrEmptySchema)(t,e)}function Kx({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 Gx(t){return typeof t.schema!="boolean"}function CO(t,e){let{schema:r,gen:n,opts:o}=t;o.$comment&&r.$comment&&Yx(t),AO(t),NO(t);let s=n.const("_errs",G.default.errors);Xx(t,s),n.var(e,(0,U._)`${s} === ${G.default.errors}`)}function Jx(t){(0,Ir.checkUnknownRules)(t),OO(t)}function Xx(t,e){if(t.opts.jtd)return Bx(t,[],!1,e);let r=(0,Fx.getSchemaTypes)(t.schema),n=(0,Fx.coerceAndCheckDataType)(t,r);Bx(t,r,!n,e)}function OO(t){let{schema:e,errSchemaPath:r,opts:n,self:o}=t;e.$ref&&n.ignoreKeywordsWithRef&&(0,Ir.schemaHasRulesButRef)(e,o.RULES)&&o.logger.warn(`$ref: keywords ignored in schema at path "${r}"`)}function IO(t){let{schema:e,opts:r}=t;e.default!==void 0&&r.useDefaults&&r.strictSchema&&(0,Ir.checkStrictMode)(t,"default is ignored in the schema root")}function AO(t){let e=t.schema[t.opts.schemaId];e&&(t.baseId=(0,kO.resolveUrl)(t.opts.uriResolver,t.baseId,e))}function NO(t){if(t.schema.$async&&!t.schemaEnv.$async)throw new Error("async schema in sync schema")}function Yx({gen:t,schemaEnv:e,schema:r,errSchemaPath:n,opts:o}){let s=r.$comment;if(o.$comment===!0)t.code((0,U._)`${G.default.self}.logger.log(${s})`);else if(typeof o.$comment=="function"){let i=(0,U.str)`${n}/$comment`,a=t.scopeValue("root",{ref:e.root});t.code((0,U._)`${G.default.self}.opts.$comment(${s}, ${i}, ${a}.schema)`)}}function DO(t){let{gen:e,schemaEnv:r,validateName:n,ValidationError:o,opts:s}=t;r.$async?e.if((0,U._)`${G.default.errors} === 0`,()=>e.return(G.default.data),()=>e.throw((0,U._)`new ${o}(${G.default.vErrors})`)):(e.assign((0,U._)`${n}.errors`,G.default.vErrors),s.unevaluated&&MO(t),e.return((0,U._)`${G.default.errors} === 0`))}function MO({gen:t,evaluated:e,props:r,items:n}){r instanceof U.Name&&t.assign((0,U._)`${e}.props`,r),n instanceof U.Name&&t.assign((0,U._)`${e}.items`,n)}function Bx(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,Ir.schemaHasRulesButRef)(s,l))){o.block(()=>eS(t,"$ref",l.all.$ref.definition));return}c.jtd||jO(t,e),o.block(()=>{for(let f of l.rules)d(f);d(l.post)});function d(f){(0,Kp.shouldUseGroup)(s,f)&&(f.type?(o.if((0,nc.checkDataType)(f.type,i,c.strictNumbers)),qx(t,f),e.length===1&&e[0]===f.type&&r&&(o.else(),(0,nc.reportTypeError)(t)),o.endIf()):qx(t,f),a||o.if((0,U._)`${G.default.errors} === ${n||0}`))}}function qx(t,e){let{gen:r,schema:n,opts:{useDefaults:o}}=t;o&&(0,bO.assignDefaults)(t,e.type),r.block(()=>{for(let s of e.rules)(0,Kp.shouldUseRule)(n,s)&&eS(t,s.keyword,s.definition,e.type)})}function jO(t,e){t.schemaEnv.meta||!t.opts.strictTypes||(zO(t,e),t.opts.allowUnionTypes||LO(t,e),HO(t,t.dataTypes))}function zO(t,e){if(e.length){if(!t.dataTypes.length){t.dataTypes=e;return}e.forEach(r=>{Qx(t.dataTypes,r)||Gp(t,`type "${r}" not allowed by context "${t.dataTypes.join(",")}"`)}),FO(t,e)}}function LO(t,e){e.length>1&&!(e.length===2&&e.includes("null"))&&Gp(t,"use allowUnionTypes to allow union type keyword")}function HO(t,e){let r=t.self.RULES.all;for(let n in r){let o=r[n];if(typeof o=="object"&&(0,Kp.shouldUseRule)(t.schema,o)){let{type:s}=o.definition;s.length&&!s.some(i=>UO(e,i))&&Gp(t,`missing type "${s.join(",")}" for keyword "${n}"`)}}}function UO(t,e){return t.includes(e)||e==="number"&&t.includes("integer")}function Qx(t,e){return t.includes(e)||e==="integer"&&t.includes("number")}function FO(t,e){let r=[];for(let n of t.dataTypes)Qx(e,n)?r.push(n):e.includes("integer")&&n==="number"&&r.push("integer");t.dataTypes=r}function Gp(t,e){let r=t.schemaEnv.baseId+t.errSchemaPath;e+=` at "${r}" (strictTypes)`,(0,Ir.checkStrictMode)(t,e,t.opts.strictTypes)}var oc=class{constructor(e,r,n){if((0,si.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,Ir.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",tS(this.$data,e));else if(this.schemaCode=this.schemaValue,!(0,si.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",G.default.errors))}result(e,r,n){this.failResult((0,U.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,U.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,U._)`${r} !== undefined && (${(0,U.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?oi.reportExtraError:oi.reportError)(this,this.def.error,r)}$dataError(){(0,oi.reportError)(this,this.def.$dataError||oi.keyword$DataError)}reset(){if(this.errsCount===void 0)throw new Error('add "trackErrors" to keyword definition');(0,oi.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=U.nil){this.gen.block(()=>{this.check$data(e,n),r()})}check$data(e=U.nil,r=U.nil){if(!this.$data)return;let{gen:n,schemaCode:o,schemaType:s,def:i}=this;n.if((0,U.or)((0,U._)`${o} === undefined`,r)),e!==U.nil&&n.assign(e,!0),(s.length||i.validateSchema)&&(n.elseIf(this.invalid$data()),this.$dataError(),e!==U.nil&&n.assign(e,!1)),n.else()}invalid$data(){let{gen:e,schemaCode:r,schemaType:n,def:o,it:s}=this;return(0,U.or)(i(),a());function i(){if(n.length){if(!(r instanceof U.Name))throw new Error("ajv implementation error");let c=Array.isArray(n)?n:[n];return(0,U._)`${(0,nc.checkDataTypes)(c,r,s.opts.strictNumbers,nc.DataType.Wrong)}`}return U.nil}function a(){if(o.validateSchema){let c=e.scopeValue("validate$data",{ref:o.validateSchema});return(0,U._)`!${c}(${r})`}return U.nil}}subschema(e,r){let n=(0,Wp.getSubschema)(this.it,e);(0,Wp.extendSubschemaData)(n,this.it,e),(0,Wp.extendSubschemaMode)(n,e);let o={...this.it,...n,items:void 0,props:void 0};return $O(o,r),o}mergeEvaluated(e,r){let{it:n,gen:o}=this;n.opts.unevaluated&&(n.props!==!0&&e.props!==void 0&&(n.props=Ir.mergeEvaluated.props(o,e.props,n.props,r)),n.items!==!0&&e.items!==void 0&&(n.items=Ir.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,U.Name)),!0}};on.KeywordCxt=oc;function eS(t,e,r,n){let o=new oc(t,r,e);"code"in r?r.code(o,n):o.$data&&r.validate?(0,si.funcKeywordCode)(o,r):"macro"in r?(0,si.macroKeywordCode)(o,r):(r.compile||r.validate)&&(0,si.funcKeywordCode)(o,r)}var ZO=/^\/(?:[^~]|~0|~1)*$/,BO=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function tS(t,{dataLevel:e,dataNames:r,dataPathArr:n}){let o,s;if(t==="")return G.default.rootData;if(t[0]==="/"){if(!ZO.test(t))throw new Error(`Invalid JSON-pointer: ${t}`);o=t,s=G.default.rootData}else{let u=BO.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,U._)`${s}${(0,U.getProperty)((0,Ir.unescapeJsonPointer)(u))}`,i=(0,U._)`${i} && ${s}`);return i;function c(u,l){return`Cannot access ${u} ${l} levels up, current level is ${e}`}}on.getData=tS});var sc=N(Xp=>{"use strict";Object.defineProperty(Xp,"__esModule",{value:!0});var Jp=class extends Error{constructor(e){super("validation failed"),this.errors=e,this.ajv=this.validation=!0}};Xp.default=Jp});var ai=N(ef=>{"use strict";Object.defineProperty(ef,"__esModule",{value:!0});var Yp=ni(),Qp=class extends Error{constructor(e,r,n,o){super(o||`can't resolve reference ${n} from id ${r}`),this.missingRef=(0,Yp.resolveUrl)(e,r,n),this.missingSchema=(0,Yp.normalizeId)((0,Yp.getFullPath)(e,this.missingRef))}};ef.default=Qp});var ac=N(jt=>{"use strict";Object.defineProperty(jt,"__esModule",{value:!0});jt.resolveSchema=jt.getCompilingSchema=jt.resolveRef=jt.compileSchema=jt.SchemaEnv=void 0;var Qt=Q(),qO=sc(),qn=Or(),er=ni(),rS=ue(),VO=ii(),Ho=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,er.normalizeId)(n?.[e.schemaId||"$id"]),this.schemaPath=e.schemaPath,this.localRefs=e.localRefs,this.meta=e.meta,this.$async=n?.$async,this.refs={}}};jt.SchemaEnv=Ho;function rf(t){let e=nS.call(this,t);if(e)return e;let r=(0,er.getFullPath)(this.opts.uriResolver,t.root.baseId),{es5:n,lines:o}=this.opts.code,{ownProperties:s}=this.opts,i=new Qt.CodeGen(this.scope,{es5:n,lines:o,ownProperties:s}),a;t.$async&&(a=i.scopeValue("Error",{ref:qO.default,code:(0,Qt._)`require("ajv/dist/runtime/validation_error").default`}));let c=i.scopeName("validate");t.validateName=c;let u={gen:i,allErrors:this.opts.allErrors,data:qn.default.data,parentData:qn.default.parentData,parentDataProperty:qn.default.parentDataProperty,dataNames:[qn.default.data],dataPathArr:[Qt.nil],dataLevel:0,dataTypes:[],definedProperties:new Set,topSchemaRef:i.scopeValue("schema",this.opts.code.source===!0?{ref:t.schema,code:(0,Qt.stringify)(t.schema)}:{ref:t.schema}),validateName:c,ValidationError:a,schema:t.schema,schemaEnv:t,rootId:r,baseId:t.baseId||r,schemaPath:Qt.nil,errSchemaPath:t.schemaPath||(this.opts.jtd?"":"#"),errorPath:(0,Qt._)`""`,opts:this.opts,self:this},l;try{this._compilations.add(t),(0,VO.validateFunctionCode)(u),i.optimize(this.opts.code.optimize);let d=i.toString();l=`${i.scopeRefs(qn.default.scope)}return ${d}`,this.opts.code.process&&(l=this.opts.code.process(l,t));let h=new Function(`${qn.default.self}`,`${qn.default.scope}`,l)(this,this.scope.get());if(this.scope.value(c,{ref:h}),h.errors=null,h.schema=t.schema,h.schemaEnv=t,t.$async&&(h.$async=!0),this.opts.code.source===!0&&(h.source={validateName:c,validateCode:d,scopeValues:i._values}),this.opts.unevaluated){let{props:p,items:m}=u;h.evaluated={props:p instanceof Qt.Name?void 0:p,items:m instanceof Qt.Name?void 0:m,dynamicProps:p instanceof Qt.Name,dynamicItems:m instanceof Qt.Name},h.source&&(h.source.evaluated=(0,Qt.stringify)(h.evaluated))}return t.validate=h,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)}}jt.compileSchema=rf;function WO(t,e,r){var n;r=(0,er.resolveUrl)(this.opts.uriResolver,e,r);let o=t.refs[r];if(o)return o;let s=JO.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 Ho({schema:i,schemaId:a,root:t,baseId:e}))}if(s!==void 0)return t.refs[r]=KO.call(this,s)}jt.resolveRef=WO;function KO(t){return(0,er.inlineRef)(t.schema,this.opts.inlineRefs)?t.schema:t.validate?t:rf.call(this,t)}function nS(t){for(let e of this._compilations)if(GO(e,t))return e}jt.getCompilingSchema=nS;function GO(t,e){return t.schema===e.schema&&t.root===e.root&&t.baseId===e.baseId}function JO(t,e){let r;for(;typeof(r=this.refs[e])=="string";)e=r;return r||this.schemas[e]||ic.call(this,t,e)}function ic(t,e){let r=this.opts.uriResolver.parse(e),n=(0,er._getFullPath)(this.opts.uriResolver,r),o=(0,er.getFullPath)(this.opts.uriResolver,t.baseId,void 0);if(Object.keys(t.schema).length>0&&n===o)return tf.call(this,r,t);let s=(0,er.normalizeId)(n),i=this.refs[s]||this.schemas[s];if(typeof i=="string"){let a=ic.call(this,t,i);return typeof a?.schema!="object"?void 0:tf.call(this,r,a)}if(typeof i?.schema=="object"){if(i.validate||rf.call(this,i),s===(0,er.normalizeId)(e)){let{schema:a}=i,{schemaId:c}=this.opts,u=a[c];return u&&(o=(0,er.resolveUrl)(this.opts.uriResolver,o,u)),new Ho({schema:a,schemaId:c,root:t,baseId:o})}return tf.call(this,r,i)}}jt.resolveSchema=ic;var XO=new Set(["properties","patternProperties","enum","dependencies","definitions"]);function tf(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,rS.unescapeFragment)(a)];if(c===void 0)return;r=c;let u=typeof r=="object"&&r[this.opts.schemaId];!XO.has(a)&&u&&(e=(0,er.resolveUrl)(this.opts.uriResolver,e,u))}let s;if(typeof r!="boolean"&&r.$ref&&!(0,rS.schemaHasRulesButRef)(r,this.RULES)){let a=(0,er.resolveUrl)(this.opts.uriResolver,e,r.$ref);s=ic.call(this,n,a)}let{schemaId:i}=this.opts;if(s=s||new Ho({schema:r,schemaId:i,root:n,baseId:e}),s.schema!==s.root.schema)return s}});var oS=N((aq,YO)=>{YO.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 of=N((cq,cS)=>{"use strict";var QO=RegExp.prototype.test.bind(/^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$/iu),iS=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);function nf(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 eI=RegExp.prototype.test.bind(/[^!"$&'()*+,\-.;=_`a-z{}~]/u);function sS(t){return t.length=0,!0}function tI(t,e,r){if(t.length){let n=nf(t);if(n!=="")e.push(n);else return r.error=!0,!1;t.length=0}return!0}function rI(t){let e=0,r={error:!1,address:"",zone:""},n=[],o=[],s=!1,i=!1,a=tI;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=sS}else{o.push(u);continue}}return o.length&&(a===sS?r.zone=o.join(""):i?n.push(o.join("")):n.push(nf(o))),r.address=n.join(""),r}function aS(t){if(nI(t,":")<2)return{host:t,isIPV6:!1};let e=rI(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 nI(t,e){let r=0;for(let n=0;n<t.length;n++)t[n]===e&&r++;return r}function oI(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("")}function sI(t,e){let r=e!==!0?escape:unescape;return t.scheme!==void 0&&(t.scheme=r(t.scheme)),t.userinfo!==void 0&&(t.userinfo=r(t.userinfo)),t.host!==void 0&&(t.host=r(t.host)),t.path!==void 0&&(t.path=r(t.path)),t.query!==void 0&&(t.query=r(t.query)),t.fragment!==void 0&&(t.fragment=r(t.fragment)),t}function iI(t){let e=[];if(t.userinfo!==void 0&&(e.push(t.userinfo),e.push("@")),t.host!==void 0){let r=unescape(t.host);if(!iS(r)){let n=aS(r);n.isIPV6===!0?r=`[${n.escapedHost}]`:r=t.host}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}cS.exports={nonSimpleDomain:eI,recomposeAuthority:iI,normalizeComponentEncoding:sI,removeDotSegments:oI,isIPv4:iS,isUUID:QO,normalizeIPv6:aS,stringArrayToHexStripped:nf}});var fS=N((uq,pS)=>{"use strict";var{isUUID:aI}=of(),cI=/([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu,uI=["http","https","ws","wss","urn","urn:uuid"];function lI(t){return uI.indexOf(t)!==-1}function sf(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 uS(t){return t.host||(t.error=t.error||"HTTP URIs must have a host."),t}function lS(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 dI(t){return t.secure=sf(t),t.resourceName=(t.path||"/")+(t.query?"?"+t.query:""),t.path=void 0,t.query=void 0,t}function pI(t){if((t.port===(sf(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 fI(t,e){if(!t.path)return t.error="URN can not be parsed",t;let r=t.path.match(cI);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=af(o);t.path=void 0,s&&(t=s.parse(t,e))}else t.error=t.error||"URN can not be parsed.";return t}function mI(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=af(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 hI(t,e){let r=t;return r.uuid=r.nss,r.nss=void 0,!e.tolerant&&(!r.uuid||!aI(r.uuid))&&(r.error=r.error||"UUID is not valid."),r}function gI(t){let e=t;return e.nss=(t.uuid||"").toLowerCase(),e}var dS={scheme:"http",domainHost:!0,parse:uS,serialize:lS},yI={scheme:"https",domainHost:dS.domainHost,parse:uS,serialize:lS},cc={scheme:"ws",domainHost:!0,parse:dI,serialize:pI},_I={scheme:"wss",domainHost:cc.domainHost,parse:cc.parse,serialize:cc.serialize},xI={scheme:"urn",parse:fI,serialize:mI,skipNormalize:!0},SI={scheme:"urn:uuid",parse:hI,serialize:gI,skipNormalize:!0},uc={http:dS,https:yI,ws:cc,wss:_I,urn:xI,"urn:uuid":SI};Object.setPrototypeOf(uc,null);function af(t){return t&&(uc[t]||uc[t.toLowerCase()])||void 0}pS.exports={wsIsSecure:sf,SCHEMES:uc,isValidSchemeName:lI,getSchemeHandler:af}});var gS=N((lq,dc)=>{"use strict";var{normalizeIPv6:vI,removeDotSegments:ci,recomposeAuthority:bI,normalizeComponentEncoding:lc,isIPv4:kI,nonSimpleDomain:EI}=of(),{SCHEMES:wI,getSchemeHandler:mS}=fS();function TI(t,e){return typeof t=="string"?t=hr(Ar(t,e),e):typeof t=="object"&&(t=Ar(hr(t,e),e)),t}function PI(t,e,r){let n=r?Object.assign({scheme:"null"},r):{scheme:"null"},o=hS(Ar(t,n),Ar(e,n),n,!0);return n.skipEscape=!0,hr(o,n)}function hS(t,e,r,n){let o={};return n||(t=Ar(hr(t,r),r),e=Ar(hr(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=ci(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=ci(e.path||""),o.query=e.query):(e.path?(e.path[0]==="/"?o.path=ci(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=ci(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 RI(t,e,r){return typeof t=="string"?(t=unescape(t),t=hr(lc(Ar(t,r),!0),{...r,skipEscape:!0})):typeof t=="object"&&(t=hr(lc(t,!0),{...r,skipEscape:!0})),typeof e=="string"?(e=unescape(e),e=hr(lc(Ar(e,r),!0),{...r,skipEscape:!0})):typeof e=="object"&&(e=hr(lc(e,!0),{...r,skipEscape:!0})),t.toLowerCase()===e.toLowerCase()}function hr(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=mS(n.scheme||r.scheme);s&&s.serialize&&s.serialize(r,n),r.path!==void 0&&(n.skipEscape?r.path=unescape(r.path):(r.path=escape(r.path),r.scheme!==void 0&&(r.path=r.path.split("%3A").join(":")))),n.reference!=="suffix"&&r.scheme&&o.push(r.scheme,":");let i=bI(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=ci(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 $I=/^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;function Ar(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;r.reference==="suffix"&&(r.scheme?t=r.scheme+":"+t:t="//"+t);let s=t.match($I);if(s){if(n.scheme=s[1],n.userinfo=s[3],n.host=s[4],n.port=parseInt(s[5],10),n.path=s[6]||"",n.query=s[7],n.fragment=s[8],isNaN(n.port)&&(n.port=s[5]),n.host)if(kI(n.host)===!1){let c=vI(n.host);n.host=c.host.toLowerCase(),o=c.isIPV6}else o=!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 i=mS(r.scheme||n.scheme);if(!r.unicodeSupport&&(!i||!i.unicodeSupport)&&n.host&&(r.domainHost||i&&i.domainHost)&&o===!1&&EI(n.host))try{n.host=URL.domainToASCII(n.host.toLowerCase())}catch(a){n.error=n.error||"Host's domain name can not be converted to ASCII: "+a}(!i||i&&!i.skipNormalize)&&(t.indexOf("%")!==-1&&(n.scheme!==void 0&&(n.scheme=unescape(n.scheme)),n.host!==void 0&&(n.host=unescape(n.host))),n.path&&(n.path=escape(unescape(n.path))),n.fragment&&(n.fragment=encodeURI(decodeURIComponent(n.fragment)))),i&&i.parse&&i.parse(n,r)}else n.error=n.error||"URI can not be parsed.";return n}var cf={SCHEMES:wI,normalize:TI,resolve:PI,resolveComponent:hS,equal:RI,serialize:hr,parse:Ar};dc.exports=cf;dc.exports.default=cf;dc.exports.fastUri=cf});var _S=N(uf=>{"use strict";Object.defineProperty(uf,"__esModule",{value:!0});var yS=gS();yS.code='require("ajv/dist/runtime/uri").default';uf.default=yS});var TS=N(Je=>{"use strict";Object.defineProperty(Je,"__esModule",{value:!0});Je.CodeGen=Je.Name=Je.nil=Je.stringify=Je.str=Je._=Je.KeywordCxt=void 0;var CI=ii();Object.defineProperty(Je,"KeywordCxt",{enumerable:!0,get:function(){return CI.KeywordCxt}});var Uo=Q();Object.defineProperty(Je,"_",{enumerable:!0,get:function(){return Uo._}});Object.defineProperty(Je,"str",{enumerable:!0,get:function(){return Uo.str}});Object.defineProperty(Je,"stringify",{enumerable:!0,get:function(){return Uo.stringify}});Object.defineProperty(Je,"nil",{enumerable:!0,get:function(){return Uo.nil}});Object.defineProperty(Je,"Name",{enumerable:!0,get:function(){return Uo.Name}});Object.defineProperty(Je,"CodeGen",{enumerable:!0,get:function(){return Uo.CodeGen}});var OI=sc(),kS=ai(),II=jp(),ui=ac(),AI=Q(),li=ni(),pc=ri(),df=ue(),xS=oS(),NI=_S(),ES=(t,e)=>new RegExp(t,e);ES.code="new RegExp";var DI=["removeAdditional","useDefaults","coerceTypes"],MI=new Set(["validate","serialize","parse","wrapper","root","schema","keyword","pattern","formats","validate$data","func","obj","Error"]),jI={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."},zI={ignoreKeywordsWithRef:"",jsPropertySyntax:"",unicode:'"minLength"/"maxLength" account for unicode characters by default.'},SS=200;function LI(t){var e,r,n,o,s,i,a,c,u,l,d,f,h,p,m,g,y,_,x,S,k,R,$,C,A;let W=t.strict,T=(e=t.code)===null||e===void 0?void 0:e.optimize,E=T===!0||T===void 0?1:T||0,L=(n=(r=t.code)===null||r===void 0?void 0:r.regExp)!==null&&n!==void 0?n:ES,pe=(o=t.uriResolver)!==null&&o!==void 0?o:NI.default;return{strictSchema:(i=(s=t.strictSchema)!==null&&s!==void 0?s:W)!==null&&i!==void 0?i:!0,strictNumbers:(c=(a=t.strictNumbers)!==null&&a!==void 0?a:W)!==null&&c!==void 0?c:!0,strictTypes:(l=(u=t.strictTypes)!==null&&u!==void 0?u:W)!==null&&l!==void 0?l:"log",strictTuples:(f=(d=t.strictTuples)!==null&&d!==void 0?d:W)!==null&&f!==void 0?f:"log",strictRequired:(p=(h=t.strictRequired)!==null&&h!==void 0?h:W)!==null&&p!==void 0?p:!1,code:t.code?{...t.code,optimize:E,regExp:L}:{optimize:E,regExp:L},loopRequired:(m=t.loopRequired)!==null&&m!==void 0?m:SS,loopEnum:(g=t.loopEnum)!==null&&g!==void 0?g:SS,meta:(y=t.meta)!==null&&y!==void 0?y:!0,messages:(_=t.messages)!==null&&_!==void 0?_:!0,inlineRefs:(x=t.inlineRefs)!==null&&x!==void 0?x:!0,schemaId:(S=t.schemaId)!==null&&S!==void 0?S:"$id",addUsedSchema:(k=t.addUsedSchema)!==null&&k!==void 0?k:!0,validateSchema:(R=t.validateSchema)!==null&&R!==void 0?R:!0,validateFormats:($=t.validateFormats)!==null&&$!==void 0?$:!0,unicodeRegExp:(C=t.unicodeRegExp)!==null&&C!==void 0?C:!0,int32range:(A=t.int32range)!==null&&A!==void 0?A:!0,uriResolver:pe}}var di=class{constructor(e={}){this.schemas={},this.refs={},this.formats={},this._compilations=new Set,this._loading={},this._cache=new Map,e=this.opts={...e,...LI(e)};let{es5:r,lines:n}=this.opts.code;this.scope=new AI.ValueScope({scope:{},prefixes:MI,es5:r,lines:n}),this.logger=qI(e.logger);let o=e.validateFormats;e.validateFormats=!1,this.RULES=(0,II.getRules)(),vS.call(this,jI,e,"NOT SUPPORTED"),vS.call(this,zI,e,"DEPRECATED","warn"),this._metaOpts=ZI.call(this),e.formats&&UI.call(this),this._addVocabularies(),this._addDefaultMetaSchema(),e.keywords&&FI.call(this,e.keywords),typeof e.meta=="object"&&this.addMetaSchema(e.meta),HI.call(this),e.validateFormats=o}_addVocabularies(){this.addKeyword("$async")}_addDefaultMetaSchema(){let{$data:e,meta:r,schemaId:n}=this.opts,o=xS;n==="id"&&(o={...xS},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 kS.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,li.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=bS.call(this,e))=="string";)e=r;if(r===void 0){let{schemaId:n}=this.opts,o=new ui.SchemaEnv({schema:{},schemaId:n});if(r=ui.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=bS.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,li.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(WI.call(this,n,r),!r)return(0,df.eachItem)(n,s=>lf.call(this,s)),this;GI.call(this,r);let o={...r,type:(0,pc.getJSONTypes)(r.type),schemaType:(0,pc.getJSONTypes)(r.schemaType)};return(0,df.eachItem)(n,o.type.length===0?s=>lf.call(this,s,o):s=>o.type.forEach(i=>lf.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]=wS(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,li.normalizeId)(i||n);let u=li.getSchemaRefs.call(this,e,n);return c=new ui.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):ui.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{ui.compileSchema.call(this,e)}finally{this.opts=r}}};di.ValidationError=OI.default;di.MissingRefError=kS.default;Je.default=di;function vS(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 bS(t){return t=(0,li.normalizeId)(t),this.schemas[t]||this.refs[t]}function HI(){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 UI(){for(let t in this.opts.formats){let e=this.opts.formats[t];e&&this.addFormat(t,e)}}function FI(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 ZI(){let t={...this.opts};for(let e of DI)delete t[e];return t}var BI={log(){},warn(){},error(){}};function qI(t){if(t===!1)return BI;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 VI=/^[a-z_$][a-z0-9_$:-]*$/i;function WI(t,e){let{RULES:r}=this;if((0,df.eachItem)(t,n=>{if(r.keywords[n])throw new Error(`Keyword ${n} is already defined`);if(!VI.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 lf(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,pc.getJSONTypes)(e.type),schemaType:(0,pc.getJSONTypes)(e.schemaType)}};e.before?KI.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 KI(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 GI(t){let{metaSchema:e}=t;e!==void 0&&(t.$data&&this.opts.$data&&(e=wS(e)),t.validateSchema=this.compile(e,!0))}var JI={$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"};function wS(t){return{anyOf:[t,JI]}}});var PS=N(pf=>{"use strict";Object.defineProperty(pf,"__esModule",{value:!0});var XI={keyword:"id",code(){throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')}};pf.default=XI});var OS=N(Vn=>{"use strict";Object.defineProperty(Vn,"__esModule",{value:!0});Vn.callRef=Vn.getValidate=void 0;var YI=ai(),RS=Mt(),xt=Q(),Fo=Or(),$S=ac(),fc=ue(),QI={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=$S.resolveRef.call(c,u,o,r);if(l===void 0)throw new YI.default(n.opts.uriResolver,o,r);if(l instanceof $S.SchemaEnv)return f(l);return h(l);function d(){if(s===u)return mc(t,i,s,s.$async);let p=e.scopeValue("root",{ref:u});return mc(t,(0,xt._)`${p}.validate`,u,u.$async)}function f(p){let m=CS(t,p);mc(t,m,p,p.$async)}function h(p){let m=e.scopeValue("schema",a.code.source===!0?{ref:p,code:(0,xt.stringify)(p)}:{ref:p}),g=e.name("valid"),y=t.subschema({schema:p,dataTypes:[],schemaPath:xt.nil,topSchemaRef:m,errSchemaPath:r},g);t.mergeEvaluated(y),t.ok(g)}}};function CS(t,e){let{gen:r}=t;return e.validate?r.scopeValue("validate",{ref:e.validate}):(0,xt._)`${r.scopeValue("wrapper",{ref:e})}.validate`}Vn.getValidate=CS;function mc(t,e,r,n){let{gen:o,it:s}=t,{allErrors:i,schemaEnv:a,opts:c}=s,u=c.passContext?Fo.default.this:xt.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,xt._)`await ${(0,RS.callValidateCode)(t,e,u)}`),h(e),i||o.assign(p,!0)},m=>{o.if((0,xt._)`!(${m} instanceof ${s.ValidationError})`,()=>o.throw(m)),f(m),i||o.assign(p,!1)}),t.ok(p)}function d(){t.result((0,RS.callValidateCode)(t,e,u),()=>h(e),()=>f(e))}function f(p){let m=(0,xt._)`${p}.errors`;o.assign(Fo.default.vErrors,(0,xt._)`${Fo.default.vErrors} === null ? ${m} : ${Fo.default.vErrors}.concat(${m})`),o.assign(Fo.default.errors,(0,xt._)`${Fo.default.vErrors}.length`)}function h(p){var m;if(!s.opts.unevaluated)return;let g=(m=r?.validate)===null||m===void 0?void 0:m.evaluated;if(s.props!==!0)if(g&&!g.dynamicProps)g.props!==void 0&&(s.props=fc.mergeEvaluated.props(o,g.props,s.props));else{let y=o.var("props",(0,xt._)`${p}.evaluated.props`);s.props=fc.mergeEvaluated.props(o,y,s.props,xt.Name)}if(s.items!==!0)if(g&&!g.dynamicItems)g.items!==void 0&&(s.items=fc.mergeEvaluated.items(o,g.items,s.items));else{let y=o.var("items",(0,xt._)`${p}.evaluated.items`);s.items=fc.mergeEvaluated.items(o,y,s.items,xt.Name)}}}Vn.callRef=mc;Vn.default=QI});var IS=N(ff=>{"use strict";Object.defineProperty(ff,"__esModule",{value:!0});var eA=PS(),tA=OS(),rA=["$schema","$id","$defs","$vocabulary",{keyword:"$comment"},"definitions",eA.default,tA.default];ff.default=rA});var AS=N(mf=>{"use strict";Object.defineProperty(mf,"__esModule",{value:!0});var hc=Q(),sn=hc.operators,gc={maximum:{okStr:"<=",ok:sn.LTE,fail:sn.GT},minimum:{okStr:">=",ok:sn.GTE,fail:sn.LT},exclusiveMaximum:{okStr:"<",ok:sn.LT,fail:sn.GTE},exclusiveMinimum:{okStr:">",ok:sn.GT,fail:sn.LTE}},nA={message:({keyword:t,schemaCode:e})=>(0,hc.str)`must be ${gc[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,hc._)`{comparison: ${gc[t].okStr}, limit: ${e}}`},oA={keyword:Object.keys(gc),type:"number",schemaType:"number",$data:!0,error:nA,code(t){let{keyword:e,data:r,schemaCode:n}=t;t.fail$data((0,hc._)`${r} ${gc[e].fail} ${n} || isNaN(${r})`)}};mf.default=oA});var NS=N(hf=>{"use strict";Object.defineProperty(hf,"__esModule",{value:!0});var pi=Q(),sA={message:({schemaCode:t})=>(0,pi.str)`must be multiple of ${t}`,params:({schemaCode:t})=>(0,pi._)`{multipleOf: ${t}}`},iA={keyword:"multipleOf",type:"number",schemaType:"number",$data:!0,error:sA,code(t){let{gen:e,data:r,schemaCode:n,it:o}=t,s=o.opts.multipleOfPrecision,i=e.let("res"),a=s?(0,pi._)`Math.abs(Math.round(${i}) - ${i}) > 1e-${s}`:(0,pi._)`${i} !== parseInt(${i})`;t.fail$data((0,pi._)`(${n} === 0 || (${i} = ${r}/${n}, ${a}))`)}};hf.default=iA});var MS=N(gf=>{"use strict";Object.defineProperty(gf,"__esModule",{value:!0});function DS(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}gf.default=DS;DS.code='require("ajv/dist/runtime/ucs2length").default'});var jS=N(yf=>{"use strict";Object.defineProperty(yf,"__esModule",{value:!0});var Wn=Q(),aA=ue(),cA=MS(),uA={message({keyword:t,schemaCode:e}){let r=t==="maxLength"?"more":"fewer";return(0,Wn.str)`must NOT have ${r} than ${e} characters`},params:({schemaCode:t})=>(0,Wn._)`{limit: ${t}}`},lA={keyword:["maxLength","minLength"],type:"string",schemaType:"number",$data:!0,error:uA,code(t){let{keyword:e,data:r,schemaCode:n,it:o}=t,s=e==="maxLength"?Wn.operators.GT:Wn.operators.LT,i=o.opts.unicode===!1?(0,Wn._)`${r}.length`:(0,Wn._)`${(0,aA.useFunc)(t.gen,cA.default)}(${r})`;t.fail$data((0,Wn._)`${i} ${s} ${n}`)}};yf.default=lA});var zS=N(_f=>{"use strict";Object.defineProperty(_f,"__esModule",{value:!0});var dA=Mt(),pA=ue(),Zo=Q(),fA={message:({schemaCode:t})=>(0,Zo.str)`must match pattern "${t}"`,params:({schemaCode:t})=>(0,Zo._)`{pattern: ${t}}`},mA={keyword:"pattern",type:"string",schemaType:"string",$data:!0,error:fA,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,Zo._)`new RegExp`:(0,pA.useFunc)(e,c),l=e.let("valid");e.try(()=>e.assign(l,(0,Zo._)`${u}(${s}, ${a}).test(${r})`),()=>e.assign(l,!1)),t.fail$data((0,Zo._)`!${l}`)}else{let c=(0,dA.usePattern)(t,o);t.fail$data((0,Zo._)`!${c}.test(${r})`)}}};_f.default=mA});var LS=N(xf=>{"use strict";Object.defineProperty(xf,"__esModule",{value:!0});var fi=Q(),hA={message({keyword:t,schemaCode:e}){let r=t==="maxProperties"?"more":"fewer";return(0,fi.str)`must NOT have ${r} than ${e} properties`},params:({schemaCode:t})=>(0,fi._)`{limit: ${t}}`},gA={keyword:["maxProperties","minProperties"],type:"object",schemaType:"number",$data:!0,error:hA,code(t){let{keyword:e,data:r,schemaCode:n}=t,o=e==="maxProperties"?fi.operators.GT:fi.operators.LT;t.fail$data((0,fi._)`Object.keys(${r}).length ${o} ${n}`)}};xf.default=gA});var HS=N(Sf=>{"use strict";Object.defineProperty(Sf,"__esModule",{value:!0});var mi=Mt(),hi=Q(),yA=ue(),_A={message:({params:{missingProperty:t}})=>(0,hi.str)`must have required property '${t}'`,params:({params:{missingProperty:t}})=>(0,hi._)`{missingProperty: ${t}}`},xA={keyword:"required",type:"object",schemaType:"array",$data:!0,error:_A,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 h=t.parentSchema.properties,{definedProperties:p}=t.it;for(let m of r)if(h?.[m]===void 0&&!p.has(m)){let g=i.schemaEnv.baseId+i.errSchemaPath,y=`required property "${m}" is not defined at "${g}" (strictRequired)`;(0,yA.checkStrictMode)(i,y,i.opts.strictRequired)}}function u(){if(c||s)t.block$data(hi.nil,d);else for(let h of r)(0,mi.checkReportMissingProp)(t,h)}function l(){let h=e.let("missing");if(c||s){let p=e.let("valid",!0);t.block$data(p,()=>f(h,p)),t.ok(p)}else e.if((0,mi.checkMissingProp)(t,r,h)),(0,mi.reportMissingProp)(t,h),e.else()}function d(){e.forOf("prop",n,h=>{t.setParams({missingProperty:h}),e.if((0,mi.noPropertyInData)(e,o,h,a.ownProperties),()=>t.error())})}function f(h,p){t.setParams({missingProperty:h}),e.forOf(h,n,()=>{e.assign(p,(0,mi.propertyInData)(e,o,h,a.ownProperties)),e.if((0,hi.not)(p),()=>{t.error(),e.break()})},hi.nil)}}};Sf.default=xA});var US=N(vf=>{"use strict";Object.defineProperty(vf,"__esModule",{value:!0});var gi=Q(),SA={message({keyword:t,schemaCode:e}){let r=t==="maxItems"?"more":"fewer";return(0,gi.str)`must NOT have ${r} than ${e} items`},params:({schemaCode:t})=>(0,gi._)`{limit: ${t}}`},vA={keyword:["maxItems","minItems"],type:"array",schemaType:"number",$data:!0,error:SA,code(t){let{keyword:e,data:r,schemaCode:n}=t,o=e==="maxItems"?gi.operators.GT:gi.operators.LT;t.fail$data((0,gi._)`${r}.length ${o} ${n}`)}};vf.default=vA});var yc=N(bf=>{"use strict";Object.defineProperty(bf,"__esModule",{value:!0});var FS=qp();FS.code='require("ajv/dist/runtime/equal").default';bf.default=FS});var ZS=N(Ef=>{"use strict";Object.defineProperty(Ef,"__esModule",{value:!0});var kf=ri(),Xe=Q(),bA=ue(),kA=yc(),EA={message:({params:{i:t,j:e}})=>(0,Xe.str)`must NOT have duplicate items (items ## ${e} and ${t} are identical)`,params:({params:{i:t,j:e}})=>(0,Xe._)`{i: ${t}, j: ${e}}`},wA={keyword:"uniqueItems",type:"array",schemaType:"boolean",$data:!0,error:EA,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,kf.getSchemaTypes)(s.items):[];t.block$data(c,l,(0,Xe._)`${i} === false`),t.ok(c);function l(){let p=e.let("i",(0,Xe._)`${r}.length`),m=e.let("j");t.setParams({i:p,j:m}),e.assign(c,!0),e.if((0,Xe._)`${p} > 1`,()=>(d()?f:h)(p,m))}function d(){return u.length>0&&!u.some(p=>p==="object"||p==="array")}function f(p,m){let g=e.name("item"),y=(0,kf.checkDataTypes)(u,g,a.opts.strictNumbers,kf.DataType.Wrong),_=e.const("indices",(0,Xe._)`{}`);e.for((0,Xe._)`;${p}--;`,()=>{e.let(g,(0,Xe._)`${r}[${p}]`),e.if(y,(0,Xe._)`continue`),u.length>1&&e.if((0,Xe._)`typeof ${g} == "string"`,(0,Xe._)`${g} += "_"`),e.if((0,Xe._)`typeof ${_}[${g}] == "number"`,()=>{e.assign(m,(0,Xe._)`${_}[${g}]`),t.error(),e.assign(c,!1).break()}).code((0,Xe._)`${_}[${g}] = ${p}`)})}function h(p,m){let g=(0,bA.useFunc)(e,kA.default),y=e.name("outer");e.label(y).for((0,Xe._)`;${p}--;`,()=>e.for((0,Xe._)`${m} = ${p}; ${m}--;`,()=>e.if((0,Xe._)`${g}(${r}[${p}], ${r}[${m}])`,()=>{t.error(),e.assign(c,!1).break(y)})))}}};Ef.default=wA});var BS=N(Tf=>{"use strict";Object.defineProperty(Tf,"__esModule",{value:!0});var wf=Q(),TA=ue(),PA=yc(),RA={message:"must be equal to constant",params:({schemaCode:t})=>(0,wf._)`{allowedValue: ${t}}`},$A={keyword:"const",$data:!0,error:RA,code(t){let{gen:e,data:r,$data:n,schemaCode:o,schema:s}=t;n||s&&typeof s=="object"?t.fail$data((0,wf._)`!${(0,TA.useFunc)(e,PA.default)}(${r}, ${o})`):t.fail((0,wf._)`${s} !== ${r}`)}};Tf.default=$A});var qS=N(Pf=>{"use strict";Object.defineProperty(Pf,"__esModule",{value:!0});var yi=Q(),CA=ue(),OA=yc(),IA={message:"must be equal to one of the allowed values",params:({schemaCode:t})=>(0,yi._)`{allowedValues: ${t}}`},AA={keyword:"enum",schemaType:"array",$data:!0,error:IA,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,CA.useFunc)(e,OA.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 h=e.const("vSchema",s);l=(0,yi.or)(...o.map((p,m)=>f(h,m)))}t.pass(l);function d(){e.assign(l,!1),e.forOf("v",s,h=>e.if((0,yi._)`${u()}(${r}, ${h})`,()=>e.assign(l,!0).break()))}function f(h,p){let m=o[p];return typeof m=="object"&&m!==null?(0,yi._)`${u()}(${r}, ${h}[${p}])`:(0,yi._)`${r} === ${m}`}}};Pf.default=AA});var VS=N(Rf=>{"use strict";Object.defineProperty(Rf,"__esModule",{value:!0});var NA=AS(),DA=NS(),MA=jS(),jA=zS(),zA=LS(),LA=HS(),HA=US(),UA=ZS(),FA=BS(),ZA=qS(),BA=[NA.default,DA.default,MA.default,jA.default,zA.default,LA.default,HA.default,UA.default,{keyword:"type",schemaType:["string","array"]},{keyword:"nullable",schemaType:"boolean"},FA.default,ZA.default];Rf.default=BA});var Cf=N(_i=>{"use strict";Object.defineProperty(_i,"__esModule",{value:!0});_i.validateAdditionalItems=void 0;var Kn=Q(),$f=ue(),qA={message:({params:{len:t}})=>(0,Kn.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,Kn._)`{limit: ${t}}`},VA={keyword:"additionalItems",type:"array",schemaType:["boolean","object"],before:"uniqueItems",error:qA,code(t){let{parentSchema:e,it:r}=t,{items:n}=e;if(!Array.isArray(n)){(0,$f.checkStrictMode)(r,'"additionalItems" is ignored when "items" is not an array of schemas');return}WS(t,n)}};function WS(t,e){let{gen:r,schema:n,data:o,keyword:s,it:i}=t;i.items=!0;let a=r.const("len",(0,Kn._)`${o}.length`);if(n===!1)t.setParams({len:e.length}),t.pass((0,Kn._)`${a} <= ${e.length}`);else if(typeof n=="object"&&!(0,$f.alwaysValidSchema)(i,n)){let u=r.var("valid",(0,Kn._)`${a} <= ${e.length}`);r.if((0,Kn.not)(u),()=>c(u)),t.ok(u)}function c(u){r.forRange("i",e.length,a,l=>{t.subschema({keyword:s,dataProp:l,dataPropType:$f.Type.Num},u),i.allErrors||r.if((0,Kn.not)(u),()=>r.break())})}}_i.validateAdditionalItems=WS;_i.default=VA});var Of=N(xi=>{"use strict";Object.defineProperty(xi,"__esModule",{value:!0});xi.validateTuple=void 0;var KS=Q(),_c=ue(),WA=Mt(),KA={keyword:"items",type:"array",schemaType:["object","array","boolean"],before:"uniqueItems",code(t){let{schema:e,it:r}=t;if(Array.isArray(e))return GS(t,"additionalItems",e);r.items=!0,!(0,_c.alwaysValidSchema)(r,e)&&t.ok((0,WA.validateArray)(t))}};function GS(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=_c.mergeEvaluated.items(n,r.length,a.items));let c=n.name("valid"),u=n.const("len",(0,KS._)`${s}.length`);r.forEach((d,f)=>{(0,_c.alwaysValidSchema)(a,d)||(n.if((0,KS._)`${u} > ${f}`,()=>t.subschema({keyword:i,schemaProp:f,dataProp:f},c)),t.ok(c))});function l(d){let{opts:f,errSchemaPath:h}=a,p=r.length,m=p===d.minItems&&(p===d.maxItems||d[e]===!1);if(f.strictTuples&&!m){let g=`"${i}" is ${p}-tuple, but minItems or maxItems/${e} are not specified or different at path "${h}"`;(0,_c.checkStrictMode)(a,g,f.strictTuples)}}}xi.validateTuple=GS;xi.default=KA});var JS=N(If=>{"use strict";Object.defineProperty(If,"__esModule",{value:!0});var GA=Of(),JA={keyword:"prefixItems",type:"array",schemaType:["array"],before:"uniqueItems",code:t=>(0,GA.validateTuple)(t,"items")};If.default=JA});var YS=N(Af=>{"use strict";Object.defineProperty(Af,"__esModule",{value:!0});var XS=Q(),XA=ue(),YA=Mt(),QA=Cf(),eN={message:({params:{len:t}})=>(0,XS.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,XS._)`{limit: ${t}}`},tN={keyword:"items",type:"array",schemaType:["object","boolean"],before:"uniqueItems",error:eN,code(t){let{schema:e,parentSchema:r,it:n}=t,{prefixItems:o}=r;n.items=!0,!(0,XA.alwaysValidSchema)(n,e)&&(o?(0,QA.validateAdditionalItems)(t,o):t.ok((0,YA.validateArray)(t)))}};Af.default=tN});var QS=N(Nf=>{"use strict";Object.defineProperty(Nf,"__esModule",{value:!0});var zt=Q(),xc=ue(),rN={message:({params:{min:t,max:e}})=>e===void 0?(0,zt.str)`must contain at least ${t} valid item(s)`:(0,zt.str)`must contain at least ${t} and no more than ${e} valid item(s)`,params:({params:{min:t,max:e}})=>e===void 0?(0,zt._)`{minContains: ${t}}`:(0,zt._)`{minContains: ${t}, maxContains: ${e}}`},nN={keyword:"contains",type:"array",schemaType:["object","boolean"],before:"uniqueItems",trackErrors:!0,error:rN,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,zt._)`${o}.length`);if(t.setParams({min:i,max:a}),a===void 0&&i===0){(0,xc.checkStrictMode)(s,'"minContains" == 0 without "maxContains": "contains" keyword ignored');return}if(a!==void 0&&i>a){(0,xc.checkStrictMode)(s,'"minContains" > "maxContains" is always invalid'),t.fail();return}if((0,xc.alwaysValidSchema)(s,r)){let m=(0,zt._)`${l} >= ${i}`;a!==void 0&&(m=(0,zt._)`${m} && ${l} <= ${a}`),t.pass(m);return}s.items=!0;let d=e.name("valid");a===void 0&&i===1?h(d,()=>e.if(d,()=>e.break())):i===0?(e.let(d,!0),a!==void 0&&e.if((0,zt._)`${o}.length > 0`,f)):(e.let(d,!1),f()),t.result(d,()=>t.reset());function f(){let m=e.name("_valid"),g=e.let("count",0);h(m,()=>e.if(m,()=>p(g)))}function h(m,g){e.forRange("i",0,l,y=>{t.subschema({keyword:"contains",dataProp:y,dataPropType:xc.Type.Num,compositeRule:!0},m),g()})}function p(m){e.code((0,zt._)`${m}++`),a===void 0?e.if((0,zt._)`${m} >= ${i}`,()=>e.assign(d,!0).break()):(e.if((0,zt._)`${m} > ${a}`,()=>e.assign(d,!1).break()),i===1?e.assign(d,!0):e.if((0,zt._)`${m} >= ${i}`,()=>e.assign(d,!0)))}}};Nf.default=nN});var rv=N(gr=>{"use strict";Object.defineProperty(gr,"__esModule",{value:!0});gr.validateSchemaDeps=gr.validatePropertyDeps=gr.error=void 0;var Df=Q(),oN=ue(),Si=Mt();gr.error={message:({params:{property:t,depsCount:e,deps:r}})=>{let n=e===1?"property":"properties";return(0,Df.str)`must have ${n} ${r} when property ${t} is present`},params:({params:{property:t,depsCount:e,deps:r,missingProperty:n}})=>(0,Df._)`{property: ${t},
|
|
7
7
|
missingProperty: ${n},
|
|
8
8
|
depsCount: ${e},
|
|
9
|
-
deps: ${r}}`};var kA={keyword:"dependencies",type:"object",schemaType:"object",error:fr.error,code(t){let[e,r]=EA(t);Nx(t,e),Dx(t,r)}};function EA({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 Nx(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,hi.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,hi.checkReportMissingProp)(t,u)}):(r.if((0,wf._)`${c} && (${(0,hi.checkMissingProp)(t,a,s)})`),(0,hi.reportMissingProp)(t,s),r.else())}}fr.validatePropertyDeps=Nx;function Dx(t,e=t.schema){let{gen:r,data:n,keyword:o,it:s}=t,i=r.name("valid");for(let a in e)(0,SA.alwaysValidSchema)(s,e[a])||(r.if((0,hi.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))}fr.validateSchemaDeps=Dx;fr.default=kA});var zx=O(Tf=>{"use strict";Object.defineProperty(Tf,"__esModule",{value:!0});var jx=Q(),wA=ue(),TA={message:"property name must be valid",params:({params:t})=>(0,jx._)`{propertyName: ${t.propertyName}}`},RA={keyword:"propertyNames",type:"object",schemaType:["object","boolean"],error:TA,code(t){let{gen:e,schema:r,data:n,it:o}=t;if((0,wA.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,jx.not)(s),()=>{t.error(!0),o.allErrors||e.break()})}),t.ok(s)}};Tf.default=RA});var Pf=O(Rf=>{"use strict";Object.defineProperty(Rf,"__esModule",{value:!0});var fc=It(),Xt=Q(),PA=Tr(),mc=ue(),$A={message:"must NOT have additional properties",params:({params:t})=>(0,Xt._)`{additionalProperty: ${t.additionalProperty}}`},CA={keyword:"additionalProperties",type:["object"],schemaType:["boolean","object"],allowUndefined:!0,trackErrors:!0,error:$A,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,mc.alwaysValidSchema)(i,r))return;let u=(0,fc.allSchemaProperties)(n.properties),l=(0,fc.allSchemaProperties)(n.patternProperties);d(),t.ok((0,Xt._)`${s} === ${PA.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 y;if(u.length>8){let v=(0,mc.schemaRefOrVal)(i,n.properties,"properties");y=(0,fc.isOwnProperty)(e,v,g)}else u.length?y=(0,Xt.or)(...u.map(v=>(0,Xt._)`${g} === ${v}`)):y=Xt.nil;return l.length&&(y=(0,Xt.or)(y,...l.map(v=>(0,Xt._)`${(0,fc.usePattern)(t,v)}.test(${g})`))),(0,Xt.not)(y)}function m(g){e.code((0,Xt._)`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,mc.alwaysValidSchema)(i,r)){let y=e.name("valid");c.removeAdditional==="failing"?(h(g,y,!1),e.if((0,Xt.not)(y),()=>{t.reset(),m(g)})):(h(g,y),a||e.if((0,Xt.not)(y),()=>e.break()))}}function h(g,y,v){let _={keyword:"additionalProperties",dataProp:g,dataPropType:mc.Type.Str};v===!1&&Object.assign(_,{compositeRule:!0,createErrors:!1,allErrors:!1}),t.subschema(_,y)}}};Rf.default=CA});var Hx=O(Cf=>{"use strict";Object.defineProperty(Cf,"__esModule",{value:!0});var OA=ti(),Lx=It(),$f=ue(),Ux=Pf(),IA={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&&Ux.default.code(new OA.KeywordCxt(s,Ux.default,"additionalProperties"));let i=(0,Lx.allSchemaProperties)(r);for(let d of i)s.definedProperties.add(d);s.opts.unevaluated&&i.length&&s.props!==!0&&(s.props=$f.mergeEvaluated.props(e,(0,$f.toHash)(i),s.props));let a=i.filter(d=>!(0,$f.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,Lx.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)}}};Cf.default=IA});var Bx=O(Of=>{"use strict";Object.defineProperty(Of,"__esModule",{value:!0});var Fx=It(),hc=Q(),Zx=ue(),qx=ue(),AA={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,Fx.allSchemaProperties)(r),c=a.filter(h=>(0,Zx.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 hc.Name)&&(s.props=(0,qx.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,Zx.checkStrictMode)(s,`property ${g} matches pattern ${h} (use allowMatchingProperties)`)}function p(h){e.forIn("key",n,g=>{e.if((0,hc._)`${(0,Fx.usePattern)(t,h)}.test(${g})`,()=>{let y=c.includes(h);y||t.subschema({keyword:"patternProperties",schemaProp:h,dataProp:g,dataPropType:qx.Type.Str},l),s.opts.unevaluated&&d!==!0?e.assign((0,hc._)`${d}[${g}]`,!0):!y&&!s.allErrors&&e.if((0,hc.not)(l),()=>e.break())})})}}};Of.default=AA});var Vx=O(If=>{"use strict";Object.defineProperty(If,"__esModule",{value:!0});var NA=ue(),DA={keyword:"not",schemaType:["object","boolean"],trackErrors:!0,code(t){let{gen:e,schema:r,it:n}=t;if((0,NA.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"}};If.default=DA});var Wx=O(Af=>{"use strict";Object.defineProperty(Af,"__esModule",{value:!0});var MA=It(),jA={keyword:"anyOf",schemaType:"array",trackErrors:!0,code:MA.validateUnion,error:{message:"must match a schema in anyOf"}};Af.default=jA});var Kx=O(Nf=>{"use strict";Object.defineProperty(Nf,"__esModule",{value:!0});var gc=Q(),zA=ue(),LA={message:"must match exactly one schema in oneOf",params:({params:t})=>(0,gc._)`{passingSchemas: ${t.passing}}`},UA={keyword:"oneOf",schemaType:"array",trackErrors:!0,error:LA,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,zA.alwaysValidSchema)(o,l)?e.var(c,!0):f=t.subschema({keyword:"oneOf",schemaProp:d,compositeRule:!0},c),d>0&&e.if((0,gc._)`${c} && ${i}`).assign(i,!1).assign(a,(0,gc._)`[${a}, ${d}]`).else(),e.if(c,()=>{e.assign(i,!0),e.assign(a,d),f&&t.mergeEvaluated(f,gc.Name)})})}}};Nf.default=UA});var Gx=O(Df=>{"use strict";Object.defineProperty(Df,"__esModule",{value:!0});var HA=ue(),FA={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,HA.alwaysValidSchema)(n,s))return;let a=t.subschema({keyword:"allOf",schemaProp:i},o);t.ok(o),t.mergeEvaluated(a)})}};Df.default=FA});var Yx=O(Mf=>{"use strict";Object.defineProperty(Mf,"__esModule",{value:!0});var yc=Q(),Xx=ue(),ZA={message:({params:t})=>(0,yc.str)`must match "${t.ifClause}" schema`,params:({params:t})=>(0,yc._)`{failingKeyword: ${t.ifClause}}`},qA={keyword:"if",schemaType:["object","boolean"],trackErrors:!0,error:ZA,code(t){let{gen:e,parentSchema:r,it:n}=t;r.then===void 0&&r.else===void 0&&(0,Xx.checkStrictMode)(n,'"if" without "then" and "else" is ignored');let o=Jx(n,"then"),s=Jx(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,yc.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,yc._)`${l}`):t.setParams({ifClause:l})}}}};function Jx(t,e){let r=t.schema[e];return r!==void 0&&!(0,Xx.alwaysValidSchema)(t,r)}Mf.default=qA});var Qx=O(jf=>{"use strict";Object.defineProperty(jf,"__esModule",{value:!0});var BA=ue(),VA={keyword:["then","else"],schemaType:["object","boolean"],code({keyword:t,parentSchema:e,it:r}){e.if===void 0&&(0,BA.checkStrictMode)(r,`"${t}" without "if" is ignored`)}};jf.default=VA});var eb=O(zf=>{"use strict";Object.defineProperty(zf,"__esModule",{value:!0});var WA=xf(),KA=Cx(),GA=bf(),JA=Ix(),XA=Ax(),YA=Mx(),QA=zx(),eN=Pf(),tN=Hx(),rN=Bx(),nN=Vx(),oN=Wx(),sN=Kx(),iN=Gx(),aN=Yx(),cN=Qx();function uN(t=!1){let e=[nN.default,oN.default,sN.default,iN.default,aN.default,cN.default,QA.default,eN.default,YA.default,tN.default,rN.default];return t?e.push(KA.default,JA.default):e.push(WA.default,GA.default),e.push(XA.default),e}zf.default=uN});var tb=O(Lf=>{"use strict";Object.defineProperty(Lf,"__esModule",{value:!0});var Me=Q(),lN={message:({schemaCode:t})=>(0,Me.str)`must match format "${t}"`,params:({schemaCode:t})=>(0,Me._)`{format: ${t}}`},dN={keyword:"format",type:["number","string"],schemaType:"string",$data:!0,error:lN,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,Me._)`${p}[${i}]`),g=r.let("fType"),y=r.let("format");r.if((0,Me._)`typeof ${h} == "object" && !(${h} instanceof RegExp)`,()=>r.assign(g,(0,Me._)`${h}.type || "string"`).assign(y,(0,Me._)`${h}.validate`),()=>r.assign(g,(0,Me._)`"string"`).assign(y,h)),t.fail$data((0,Me.or)(v(),_()));function v(){return c.strictSchema===!1?Me.nil:(0,Me._)`${i} && !${y}`}function _(){let b=l.$async?(0,Me._)`(${h}.async ? await ${y}(${n}) : ${y}(${n}))`:(0,Me._)`${y}(${n})`,E=(0,Me._)`(typeof ${y} == "function" ? ${b} : ${y}.test(${n}))`;return(0,Me._)`${y} && ${y} !== true && ${g} === ${e} && !${E}`}}function m(){let p=d.formats[s];if(!p){v();return}if(p===!0)return;let[h,g,y]=_(p);h===e&&t.pass(b());function v(){if(c.strictSchema===!1){d.logger.warn(E());return}throw new Error(E());function E(){return`unknown format "${s}" ignored in schema at path "${u}"`}}function _(E){let R=E instanceof RegExp?(0,Me.regexpCode)(E):c.code.formats?(0,Me._)`${c.code.formats}${(0,Me.getProperty)(s)}`:void 0,N=r.scopeValue("formats",{key:s,ref:E,code:R});return typeof E=="object"&&!(E instanceof RegExp)?[E.type||"string",E.validate,(0,Me._)`${N}.validate`]:["string",E,N]}function b(){if(typeof p=="object"&&!(p instanceof RegExp)&&p.async){if(!l.$async)throw new Error("async format in sync schema");return(0,Me._)`await ${y}(${n})`}return typeof g=="function"?(0,Me._)`${y}(${n})`:(0,Me._)`${y}.test(${n})`}}}};Lf.default=dN});var rb=O(Uf=>{"use strict";Object.defineProperty(Uf,"__esModule",{value:!0});var pN=tb(),fN=[pN.default];Uf.default=fN});var nb=O(Lo=>{"use strict";Object.defineProperty(Lo,"__esModule",{value:!0});Lo.contentVocabulary=Lo.metadataVocabulary=void 0;Lo.metadataVocabulary=["title","description","default","deprecated","readOnly","writeOnly","examples"];Lo.contentVocabulary=["contentMediaType","contentEncoding","contentSchema"]});var sb=O(Hf=>{"use strict";Object.defineProperty(Hf,"__esModule",{value:!0});var mN=px(),hN=Tx(),gN=eb(),yN=rb(),ob=nb(),_N=[mN.default,hN.default,(0,gN.default)(),yN.default,ob.metadataVocabulary,ob.contentVocabulary];Hf.default=_N});var ab=O(_c=>{"use strict";Object.defineProperty(_c,"__esModule",{value:!0});_c.DiscrError=void 0;var ib;(function(t){t.Tag="tag",t.Mapping="mapping"})(ib||(_c.DiscrError=ib={}))});var ub=O(Zf=>{"use strict";Object.defineProperty(Zf,"__esModule",{value:!0});var Uo=Q(),Ff=ab(),cb=ec(),vN=ri(),xN=ue(),bN={message:({params:{discrError:t,tagName:e}})=>t===Ff.DiscrError.Tag?`tag "${e}" must be string`:`value of tag "${e}" must be in oneOf`,params:({params:{discrError:t,tag:e,tagName:r}})=>(0,Uo._)`{error: ${t}, tag: ${r}, tagValue: ${e}}`},SN={keyword:"discriminator",type:"object",schemaType:"object",error:bN,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,Uo._)`${r}${(0,Uo.getProperty)(a)}`);e.if((0,Uo._)`typeof ${u} == "string"`,()=>l(),()=>t.error(!1,{discrError:Ff.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,Uo._)`${u} === ${p}`),e.assign(c,d(m[p]));e.else(),t.error(!1,{discrError:Ff.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,Uo.Name),p}function f(){var m;let p={},h=y(o),g=!0;for(let b=0;b<i.length;b++){let E=i[b];if(E?.$ref&&!(0,xN.schemaHasRulesButRef)(E,s.self.RULES)){let N=E.$ref;if(E=cb.resolveRef.call(s.self,s.schemaEnv.root,s.baseId,N),E instanceof cb.SchemaEnv&&(E=E.schema),E===void 0)throw new vN.default(s.opts.uriResolver,s.baseId,N)}let R=(m=E?.properties)===null||m===void 0?void 0:m[a];if(typeof R!="object")throw new Error(`discriminator: oneOf subschemas (or referenced schemas) must have "properties/${a}"`);g=g&&(h||y(E)),v(R,b)}if(!g)throw new Error(`discriminator: "${a}" must be required`);return p;function y({required:b}){return Array.isArray(b)&&b.includes(a)}function v(b,E){if(b.const)_(b.const,E);else if(b.enum)for(let R of b.enum)_(R,E);else throw new Error(`discriminator: "properties/${a}" must have "const" or "enum"`)}function _(b,E){if(typeof b!="string"||b in p)throw new Error(`discriminator: "${a}" values must be unique strings`);p[b]=E}}}};Zf.default=SN});var lb=O((eB,kN)=>{kN.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 Bf=O((Ee,qf)=>{"use strict";Object.defineProperty(Ee,"__esModule",{value:!0});Ee.MissingRefError=Ee.ValidationError=Ee.CodeGen=Ee.Name=Ee.nil=Ee.stringify=Ee.str=Ee._=Ee.KeywordCxt=Ee.Ajv=void 0;var EN=ix(),wN=sb(),TN=ub(),db=lb(),RN=["/properties"],vc="http://json-schema.org/draft-07/schema",Ho=class extends EN.default{_addVocabularies(){super._addVocabularies(),wN.default.forEach(e=>this.addVocabulary(e)),this.opts.discriminator&&this.addKeyword(TN.default)}_addDefaultMetaSchema(){if(super._addDefaultMetaSchema(),!this.opts.meta)return;let e=this.opts.$data?this.$dataMetaSchema(db,RN):db;this.addMetaSchema(e,vc,!1),this.refs["http://json-schema.org/schema"]=vc}defaultMeta(){return this.opts.defaultMeta=super.defaultMeta()||(this.getSchema(vc)?vc:void 0)}};Ee.Ajv=Ho;qf.exports=Ee=Ho;qf.exports.Ajv=Ho;Object.defineProperty(Ee,"__esModule",{value:!0});Ee.default=Ho;var PN=ti();Object.defineProperty(Ee,"KeywordCxt",{enumerable:!0,get:function(){return PN.KeywordCxt}});var Fo=Q();Object.defineProperty(Ee,"_",{enumerable:!0,get:function(){return Fo._}});Object.defineProperty(Ee,"str",{enumerable:!0,get:function(){return Fo.str}});Object.defineProperty(Ee,"stringify",{enumerable:!0,get:function(){return Fo.stringify}});Object.defineProperty(Ee,"nil",{enumerable:!0,get:function(){return Fo.nil}});Object.defineProperty(Ee,"Name",{enumerable:!0,get:function(){return Fo.Name}});Object.defineProperty(Ee,"CodeGen",{enumerable:!0,get:function(){return Fo.CodeGen}});var $N=Ya();Object.defineProperty(Ee,"ValidationError",{enumerable:!0,get:function(){return $N.default}});var CN=ri();Object.defineProperty(Ee,"MissingRefError",{enumerable:!0,get:function(){return CN.default}})});var vb=O(hr=>{"use strict";Object.defineProperty(hr,"__esModule",{value:!0});hr.formatNames=hr.fastFormats=hr.fullFormats=void 0;function mr(t,e){return{validate:t,compare:e}}hr.fullFormats={date:mr(hb,Gf),time:mr(Wf(!0),Jf),"date-time":mr(pb(!0),yb),"iso-time":mr(Wf(),gb),"iso-date-time":mr(pb(),_b),duration:/^P(?!$)((\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?|(\d+W)?)$/,uri:MN,"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:ZN,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:jN,int32:{type:"number",validate:UN},int64:{type:"number",validate:HN},float:{type:"number",validate:mb},double:{type:"number",validate:mb},password:!0,binary:!0};hr.fastFormats={...hr.fullFormats,date:mr(/^\d\d\d\d-[0-1]\d-[0-3]\d$/,Gf),time:mr(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,Jf),"date-time":mr(/^\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,yb),"iso-time":mr(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,gb),"iso-date-time":mr(/^\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,_b),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};hr.formatNames=Object.keys(hr.fullFormats);function ON(t){return t%4===0&&(t%100!==0||t%400===0)}var IN=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,AN=[0,31,28,31,30,31,30,31,31,30,31,30,31];function hb(t){let e=IN.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&&ON(r)?29:AN[n])}function Gf(t,e){if(t&&e)return t>e?1:t<e?-1:0}var Vf=/^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;function Wf(t){return function(r){let n=Vf.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 Jf(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 gb(t,e){if(!(t&&e))return;let r=Vf.exec(t),n=Vf.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 Kf=/t|\s/i;function pb(t){let e=Wf(t);return function(n){let o=n.split(Kf);return o.length===2&&hb(o[0])&&e(o[1])}}function yb(t,e){if(!(t&&e))return;let r=new Date(t).valueOf(),n=new Date(e).valueOf();if(r&&n)return r-n}function _b(t,e){if(!(t&&e))return;let[r,n]=t.split(Kf),[o,s]=e.split(Kf),i=Gf(r,o);if(i!==void 0)return i||Jf(n,s)}var NN=/\/|:/,DN=/^(?:[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 MN(t){return NN.test(t)&&DN.test(t)}var fb=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/gm;function jN(t){return fb.lastIndex=0,fb.test(t)}var zN=-(2**31),LN=2**31-1;function UN(t){return Number.isInteger(t)&&t<=LN&&t>=zN}function HN(t){return Number.isInteger(t)}function mb(){return!0}var FN=/[^\\]\\Z/;function ZN(t){if(FN.test(t))return!1;try{return new RegExp(t),!0}catch{return!1}}});var xb=O(Zo=>{"use strict";Object.defineProperty(Zo,"__esModule",{value:!0});Zo.formatLimitDefinition=void 0;var qN=Bf(),Yt=Q(),tn=Yt.operators,xc={formatMaximum:{okStr:"<=",ok:tn.LTE,fail:tn.GT},formatMinimum:{okStr:">=",ok:tn.GTE,fail:tn.LT},formatExclusiveMaximum:{okStr:"<",ok:tn.LT,fail:tn.GTE},formatExclusiveMinimum:{okStr:">",ok:tn.GT,fail:tn.LTE}},BN={message:({keyword:t,schemaCode:e})=>(0,Yt.str)`should be ${xc[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,Yt._)`{comparison: ${xc[t].okStr}, limit: ${e}}`};Zo.formatLimitDefinition={keyword:Object.keys(xc),type:"string",schemaType:"string",$data:!0,error:BN,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 qN.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,Yt._)`${f}[${c.schemaCode}]`);t.fail$data((0,Yt.or)((0,Yt._)`typeof ${m} != "object"`,(0,Yt._)`${m} instanceof RegExp`,(0,Yt._)`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,Yt._)`${i.code.formats}${(0,Yt.getProperty)(f)}`:void 0});t.fail$data(d(p))}function d(f){return(0,Yt._)`${f}.compare(${r}, ${n}) ${xc[o].fail} 0`}},dependencies:["format"]};var VN=t=>(t.addKeyword(Zo.formatLimitDefinition),t);Zo.default=VN});var Eb=O((gi,kb)=>{"use strict";Object.defineProperty(gi,"__esModule",{value:!0});var qo=vb(),WN=xb(),Xf=Q(),bb=new Xf.Name("fullFormats"),KN=new Xf.Name("fastFormats"),Yf=(t,e={keywords:!0})=>{if(Array.isArray(e))return Sb(t,e,qo.fullFormats,bb),t;let[r,n]=e.mode==="fast"?[qo.fastFormats,KN]:[qo.fullFormats,bb],o=e.formats||qo.formatNames;return Sb(t,o,r,n),e.keywords&&(0,WN.default)(t),t};Yf.get=(t,e="full")=>{let n=(e==="fast"?qo.fastFormats:qo.fullFormats)[t];if(!n)throw new Error(`Unknown format "${t}"`);return n};function Sb(t,e,r,n){var o,s;(o=(s=t.opts.code).formats)!==null&&o!==void 0||(s.formats=(0,Xf._)`require("ajv-formats/dist/formats").${n}`);for(let i of e)t.addFormat(i,r[i])}kb.exports=gi=Yf;Object.defineProperty(gi,"__esModule",{value:!0});gi.default=Yf});import{createRequire as gD}from"node:module";import{existsSync as yD,unlinkSync as Xb,renameSync as _D}from"node:fs";import{tmpdir as vD}from"node:os";import{join as xD}from"node:path";function bD(t){let e=null;try{return e=new t(":memory:"),e.exec("CREATE VIRTUAL TABLE __fts5_probe USING fts5(x)"),!0}catch{return!1}finally{try{e?.close()}catch{}}}function SD(t,e){let r=e!==void 0?e:globalThis.Bun;if(typeof r<"u"&&r!==null)return!0;let n=t??process.versions,[o,s]=(n.node??"0.0.0").split("."),i=Number(o),a=Number(s);return!Number.isFinite(i)||!Number.isFinite(a)?!1:i>22||i===22&&a>=5}function Ye(){if(!Bo){let t=gD(import.meta.url);if(globalThis.Bun){let e=t(["bun","sqlite"].join(":")).Database;Bo=function(n,o){let s=new e(n,{readonly:o?.readonly,create:!0}),i=new am(s);return o?.timeout&&i.pragma(`busy_timeout = ${o.timeout}`),i}}else if(SD()){let e=null;try{({DatabaseSync:e}=t(["node","sqlite"].join(":")))}catch{e=null}e&&bD(e)?Bo=function(n,o){let s=new e(n,{readOnly:o?.readonly??!1}),i=new cm(s);return o?.timeout&&i.pragma(`busy_timeout = ${o.timeout}`),i}:Bo=t("better-sqlite3")}else Bo=t("better-sqlite3")}return Bo}function Si(t){t.pragma("journal_mode = WAL"),t.pragma("synchronous = NORMAL");try{t.pragma("mmap_size = 268435456")}catch{}}function ki(t){if(!yD(t))for(let e of["-wal","-shm"])try{Xb(t+e)}catch{}}function um(t){for(let e of["","-wal","-shm"])try{Xb(t+e)}catch{}}function Ei(t){try{t.pragma("wal_checkpoint(TRUNCATE)")}catch{}try{t.close()}catch{}}function Yb(t="context-mode"){return xD(vD(),`${t}-${process.pid}.db`)}function Bn(t,e=[100,500,2e3]){let r;for(let n=0;n<=e.length;n++)try{return t()}catch(o){let s=o instanceof Error?o.message:String(o);if(!s.includes("SQLITE_BUSY")&&!s.includes("database is locked"))throw o;if(r=o instanceof Error?o:new Error(s),n<e.length){let i=e[n],a=Date.now();for(;Date.now()-a<i;);}}throw new Error(`SQLITE_BUSY: database is locked after ${e.length} retries. Original error: ${r?.message}`)}function lm(t){return t.includes("SQLITE_CORRUPT")||t.includes("SQLITE_NOTADB")||t.includes("database disk image is malformed")||t.includes("file is not a database")}function kD(t){let e=Date.now();for(let r of["","-wal","-shm"])try{_D(t+r,`${t}${r}.corrupt-${e}`)}catch{}}var am,cm,Bo,bi,im,Ic,Vo=ce(()=>{"use strict";am=class{#e;constructor(e){this.#e=e}pragma(e){let n=this.#e.prepare(`PRAGMA ${e}`).all();if(!n||n.length===0)return;if(n.length>1)return n;let o=Object.values(n[0]);return o.length===1?o[0]:n[0]}exec(e){let r="",n=null;for(let s=0;s<e.length;s++){let i=e[s];if(n)r+=i,i===n&&(n=null);else if(i==="'"||i==='"')r+=i,n=i;else if(i===";"){let a=r.trim();a&&this.#e.prepare(a).run(),r=""}else r+=i}let o=r.trim();return o&&this.#e.prepare(o).run(),this}prepare(e){let r=this.#e.prepare(e);return{run:(...n)=>r.run(...n),get:(...n)=>{let o=r.get(...n);return o===null?void 0:o},all:(...n)=>r.all(...n),iterate:(...n)=>r.iterate(...n)}}transaction(e){return this.#e.transaction(e)}close(){this.#e.close()}},cm=class{#e;constructor(e){this.#e=e}pragma(e){let n=this.#e.prepare(`PRAGMA ${e}`).all();if(!n||n.length===0)return;if(n.length>1)return n;let o=Object.values(n[0]);return o.length===1?o[0]:n[0]}exec(e){return this.#e.exec(e),this}prepare(e){let r=this.#e.prepare(e);return{run:(...n)=>r.run(...n),get:(...n)=>r.get(...n),all:(...n)=>r.all(...n),iterate:(...n)=>typeof r.iterate=="function"?r.iterate(...n):r.all(...n)[Symbol.iterator]()}}transaction(e){return(...r)=>{this.#e.exec("BEGIN");try{let n=e(...r);return this.#e.exec("COMMIT"),n}catch(n){throw this.#e.exec("ROLLBACK"),n}}}close(){this.#e.close()}},Bo=null;bi=Symbol.for("__context_mode_live_dbs_v3__"),im=(()=>{let t=globalThis;return t[bi]||(t[bi]=new Set,process.on("exit",()=>{for(let e of t[bi])Ei(e);t[bi].clear()})),t[bi]})(),Ic=class{#e;#t;constructor(e){let r=Ye();this.#e=e,ki(e);let n;try{n=new r(e,{timeout:3e4}),Si(n)}catch(o){let s=o instanceof Error?o.message:String(o);if(lm(s)){kD(e),ki(e);try{n=new r(e,{timeout:3e4}),Si(n)}catch(i){throw new Error(`Failed to create fresh DB after renaming corrupt file: ${i instanceof Error?i.message:String(i)}`)}}else throw o}this.#t=n,im.add(this.#t),this.initSchema(),this.prepareStatements()}get db(){return this.#t}get dbPath(){return this.#e}close(){im.delete(this.#t),Ei(this.#t)}withRetry(e){return Bn(e)}cleanup(){im.delete(this.#t),Ei(this.#t),um(this.#e)}}});var fS,mS=ce(()=>{"use strict";fS={"claude-code":"claude-code","gemini-cli-mcp-client":"gemini-cli","antigravity-client":"antigravity","cursor-vscode":"cursor","Visual-Studio-Code":"vscode-copilot","JetBrains Client":"jetbrains-copilot","IntelliJ IDEA":"jetbrains-copilot",PyCharm:"jetbrains-copilot",Codex:"codex","codex-mcp-client":"codex","Kilo Code":"kilo","Kiro CLI":"kiro","Pi CLI":"pi","Pi Coding Agent":"pi","omp-coding-agent":"omp",Zed:"zed",zed:"zed","qwen-code":"qwen-code","qwen-cli-mcp-client":"qwen-code"}});import{createHash as Ti}from"node:crypto";import{execFileSync as VD}from"node:child_process";import{accessSync as WD,constants as KD,existsSync as Mc,mkdirSync as GD,realpathSync as JD,renameSync as _m}from"node:fs";import{homedir as xS}from"node:os";import{dirname as XD,isAbsolute as bS,join as nn,resolve as Ko}from"node:path";function vm(t){let e=t.env??process.env,r=t.legacySessionDirEnv,n=r?e[r]?.trim():void 0;return n&&r?(t.onLegacySessionDir?.(r,n),n):nn(YD(t.configDir,t.configDirEnv,e),"context-mode","sessions")}function YD(t,e,r){let n=e?r[e]:void 0;return n&&n.trim()!==""?gS(n.trim()):gS(t,xS())}function gS(t,e){return t.startsWith("~")?Ko(xS(),t.replace(/^~[/\\]?/,"")):bS(t)?Ko(t):e?Ko(e,t):Ko(t)}function QD(t,e,r){return new on(t,e,gr,void 0,[`Invalid ${gr} for context-mode ${t} directory: ${r}`,TS()].join(`
|
|
10
|
-
`)
|
|
11
|
-
`)}function
|
|
9
|
+
deps: ${r}}`};var sN={keyword:"dependencies",type:"object",schemaType:"object",error:gr.error,code(t){let[e,r]=iN(t);ev(t,e),tv(t,r)}};function iN({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 ev(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,Si.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,Si.checkReportMissingProp)(t,u)}):(r.if((0,Df._)`${c} && (${(0,Si.checkMissingProp)(t,a,s)})`),(0,Si.reportMissingProp)(t,s),r.else())}}gr.validatePropertyDeps=ev;function tv(t,e=t.schema){let{gen:r,data:n,keyword:o,it:s}=t,i=r.name("valid");for(let a in e)(0,oN.alwaysValidSchema)(s,e[a])||(r.if((0,Si.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))}gr.validateSchemaDeps=tv;gr.default=sN});var ov=N(Mf=>{"use strict";Object.defineProperty(Mf,"__esModule",{value:!0});var nv=Q(),aN=ue(),cN={message:"property name must be valid",params:({params:t})=>(0,nv._)`{propertyName: ${t.propertyName}}`},uN={keyword:"propertyNames",type:"object",schemaType:["object","boolean"],error:cN,code(t){let{gen:e,schema:r,data:n,it:o}=t;if((0,aN.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,nv.not)(s),()=>{t.error(!0),o.allErrors||e.break()})}),t.ok(s)}};Mf.default=uN});var zf=N(jf=>{"use strict";Object.defineProperty(jf,"__esModule",{value:!0});var Sc=Mt(),tr=Q(),lN=Or(),vc=ue(),dN={message:"must NOT have additional properties",params:({params:t})=>(0,tr._)`{additionalProperty: ${t.additionalProperty}}`},pN={keyword:"additionalProperties",type:["object"],schemaType:["boolean","object"],allowUndefined:!0,trackErrors:!0,error:dN,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,vc.alwaysValidSchema)(i,r))return;let u=(0,Sc.allSchemaProperties)(n.properties),l=(0,Sc.allSchemaProperties)(n.patternProperties);d(),t.ok((0,tr._)`${s} === ${lN.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 y;if(u.length>8){let _=(0,vc.schemaRefOrVal)(i,n.properties,"properties");y=(0,Sc.isOwnProperty)(e,_,g)}else u.length?y=(0,tr.or)(...u.map(_=>(0,tr._)`${g} === ${_}`)):y=tr.nil;return l.length&&(y=(0,tr.or)(y,...l.map(_=>(0,tr._)`${(0,Sc.usePattern)(t,_)}.test(${g})`))),(0,tr.not)(y)}function h(g){e.code((0,tr._)`delete ${o}[${g}]`)}function p(g){if(c.removeAdditional==="all"||c.removeAdditional&&r===!1){h(g);return}if(r===!1){t.setParams({additionalProperty:g}),t.error(),a||e.break();return}if(typeof r=="object"&&!(0,vc.alwaysValidSchema)(i,r)){let y=e.name("valid");c.removeAdditional==="failing"?(m(g,y,!1),e.if((0,tr.not)(y),()=>{t.reset(),h(g)})):(m(g,y),a||e.if((0,tr.not)(y),()=>e.break()))}}function m(g,y,_){let x={keyword:"additionalProperties",dataProp:g,dataPropType:vc.Type.Str};_===!1&&Object.assign(x,{compositeRule:!0,createErrors:!1,allErrors:!1}),t.subschema(x,y)}}};jf.default=pN});var av=N(Hf=>{"use strict";Object.defineProperty(Hf,"__esModule",{value:!0});var fN=ii(),sv=Mt(),Lf=ue(),iv=zf(),mN={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&&iv.default.code(new fN.KeywordCxt(s,iv.default,"additionalProperties"));let i=(0,sv.allSchemaProperties)(r);for(let d of i)s.definedProperties.add(d);s.opts.unevaluated&&i.length&&s.props!==!0&&(s.props=Lf.mergeEvaluated.props(e,(0,Lf.toHash)(i),s.props));let a=i.filter(d=>!(0,Lf.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,sv.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)}}};Hf.default=mN});var dv=N(Uf=>{"use strict";Object.defineProperty(Uf,"__esModule",{value:!0});var cv=Mt(),bc=Q(),uv=ue(),lv=ue(),hN={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,cv.allSchemaProperties)(r),c=a.filter(m=>(0,uv.alwaysValidSchema)(s,r[m]));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 bc.Name)&&(s.props=(0,lv.evaluatedPropsToName)(e,s.props));let{props:d}=s;f();function f(){for(let m of a)u&&h(m),s.allErrors?p(m):(e.var(l,!0),p(m),e.if(l))}function h(m){for(let g in u)new RegExp(m).test(g)&&(0,uv.checkStrictMode)(s,`property ${g} matches pattern ${m} (use allowMatchingProperties)`)}function p(m){e.forIn("key",n,g=>{e.if((0,bc._)`${(0,cv.usePattern)(t,m)}.test(${g})`,()=>{let y=c.includes(m);y||t.subschema({keyword:"patternProperties",schemaProp:m,dataProp:g,dataPropType:lv.Type.Str},l),s.opts.unevaluated&&d!==!0?e.assign((0,bc._)`${d}[${g}]`,!0):!y&&!s.allErrors&&e.if((0,bc.not)(l),()=>e.break())})})}}};Uf.default=hN});var pv=N(Ff=>{"use strict";Object.defineProperty(Ff,"__esModule",{value:!0});var gN=ue(),yN={keyword:"not",schemaType:["object","boolean"],trackErrors:!0,code(t){let{gen:e,schema:r,it:n}=t;if((0,gN.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"}};Ff.default=yN});var fv=N(Zf=>{"use strict";Object.defineProperty(Zf,"__esModule",{value:!0});var _N=Mt(),xN={keyword:"anyOf",schemaType:"array",trackErrors:!0,code:_N.validateUnion,error:{message:"must match a schema in anyOf"}};Zf.default=xN});var mv=N(Bf=>{"use strict";Object.defineProperty(Bf,"__esModule",{value:!0});var kc=Q(),SN=ue(),vN={message:"must match exactly one schema in oneOf",params:({params:t})=>(0,kc._)`{passingSchemas: ${t.passing}}`},bN={keyword:"oneOf",schemaType:"array",trackErrors:!0,error:vN,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,SN.alwaysValidSchema)(o,l)?e.var(c,!0):f=t.subschema({keyword:"oneOf",schemaProp:d,compositeRule:!0},c),d>0&&e.if((0,kc._)`${c} && ${i}`).assign(i,!1).assign(a,(0,kc._)`[${a}, ${d}]`).else(),e.if(c,()=>{e.assign(i,!0),e.assign(a,d),f&&t.mergeEvaluated(f,kc.Name)})})}}};Bf.default=bN});var hv=N(qf=>{"use strict";Object.defineProperty(qf,"__esModule",{value:!0});var kN=ue(),EN={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,kN.alwaysValidSchema)(n,s))return;let a=t.subschema({keyword:"allOf",schemaProp:i},o);t.ok(o),t.mergeEvaluated(a)})}};qf.default=EN});var _v=N(Vf=>{"use strict";Object.defineProperty(Vf,"__esModule",{value:!0});var Ec=Q(),yv=ue(),wN={message:({params:t})=>(0,Ec.str)`must match "${t.ifClause}" schema`,params:({params:t})=>(0,Ec._)`{failingKeyword: ${t.ifClause}}`},TN={keyword:"if",schemaType:["object","boolean"],trackErrors:!0,error:wN,code(t){let{gen:e,parentSchema:r,it:n}=t;r.then===void 0&&r.else===void 0&&(0,yv.checkStrictMode)(n,'"if" without "then" and "else" is ignored');let o=gv(n,"then"),s=gv(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,Ec.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,Ec._)`${l}`):t.setParams({ifClause:l})}}}};function gv(t,e){let r=t.schema[e];return r!==void 0&&!(0,yv.alwaysValidSchema)(t,r)}Vf.default=TN});var xv=N(Wf=>{"use strict";Object.defineProperty(Wf,"__esModule",{value:!0});var PN=ue(),RN={keyword:["then","else"],schemaType:["object","boolean"],code({keyword:t,parentSchema:e,it:r}){e.if===void 0&&(0,PN.checkStrictMode)(r,`"${t}" without "if" is ignored`)}};Wf.default=RN});var Sv=N(Kf=>{"use strict";Object.defineProperty(Kf,"__esModule",{value:!0});var $N=Cf(),CN=JS(),ON=Of(),IN=YS(),AN=QS(),NN=rv(),DN=ov(),MN=zf(),jN=av(),zN=dv(),LN=pv(),HN=fv(),UN=mv(),FN=hv(),ZN=_v(),BN=xv();function qN(t=!1){let e=[LN.default,HN.default,UN.default,FN.default,ZN.default,BN.default,DN.default,MN.default,NN.default,jN.default,zN.default];return t?e.push(CN.default,IN.default):e.push($N.default,ON.default),e.push(AN.default),e}Kf.default=qN});var vv=N(Gf=>{"use strict";Object.defineProperty(Gf,"__esModule",{value:!0});var ze=Q(),VN={message:({schemaCode:t})=>(0,ze.str)`must match format "${t}"`,params:({schemaCode:t})=>(0,ze._)`{format: ${t}}`},WN={keyword:"format",type:["number","string"],schemaType:"string",$data:!0,error:VN,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():h();function f(){let p=r.scopeValue("formats",{ref:d.formats,code:c.code.formats}),m=r.const("fDef",(0,ze._)`${p}[${i}]`),g=r.let("fType"),y=r.let("format");r.if((0,ze._)`typeof ${m} == "object" && !(${m} instanceof RegExp)`,()=>r.assign(g,(0,ze._)`${m}.type || "string"`).assign(y,(0,ze._)`${m}.validate`),()=>r.assign(g,(0,ze._)`"string"`).assign(y,m)),t.fail$data((0,ze.or)(_(),x()));function _(){return c.strictSchema===!1?ze.nil:(0,ze._)`${i} && !${y}`}function x(){let S=l.$async?(0,ze._)`(${m}.async ? await ${y}(${n}) : ${y}(${n}))`:(0,ze._)`${y}(${n})`,k=(0,ze._)`(typeof ${y} == "function" ? ${S} : ${y}.test(${n}))`;return(0,ze._)`${y} && ${y} !== true && ${g} === ${e} && !${k}`}}function h(){let p=d.formats[s];if(!p){_();return}if(p===!0)return;let[m,g,y]=x(p);m===e&&t.pass(S());function _(){if(c.strictSchema===!1){d.logger.warn(k());return}throw new Error(k());function k(){return`unknown format "${s}" ignored in schema at path "${u}"`}}function x(k){let R=k instanceof RegExp?(0,ze.regexpCode)(k):c.code.formats?(0,ze._)`${c.code.formats}${(0,ze.getProperty)(s)}`:void 0,$=r.scopeValue("formats",{key:s,ref:k,code:R});return typeof k=="object"&&!(k instanceof RegExp)?[k.type||"string",k.validate,(0,ze._)`${$}.validate`]:["string",k,$]}function S(){if(typeof p=="object"&&!(p instanceof RegExp)&&p.async){if(!l.$async)throw new Error("async format in sync schema");return(0,ze._)`await ${y}(${n})`}return typeof g=="function"?(0,ze._)`${y}(${n})`:(0,ze._)`${y}.test(${n})`}}}};Gf.default=WN});var bv=N(Jf=>{"use strict";Object.defineProperty(Jf,"__esModule",{value:!0});var KN=vv(),GN=[KN.default];Jf.default=GN});var kv=N(Bo=>{"use strict";Object.defineProperty(Bo,"__esModule",{value:!0});Bo.contentVocabulary=Bo.metadataVocabulary=void 0;Bo.metadataVocabulary=["title","description","default","deprecated","readOnly","writeOnly","examples"];Bo.contentVocabulary=["contentMediaType","contentEncoding","contentSchema"]});var wv=N(Xf=>{"use strict";Object.defineProperty(Xf,"__esModule",{value:!0});var JN=IS(),XN=VS(),YN=Sv(),QN=bv(),Ev=kv(),eD=[JN.default,XN.default,(0,YN.default)(),QN.default,Ev.metadataVocabulary,Ev.contentVocabulary];Xf.default=eD});var Pv=N(wc=>{"use strict";Object.defineProperty(wc,"__esModule",{value:!0});wc.DiscrError=void 0;var Tv;(function(t){t.Tag="tag",t.Mapping="mapping"})(Tv||(wc.DiscrError=Tv={}))});var $v=N(Qf=>{"use strict";Object.defineProperty(Qf,"__esModule",{value:!0});var qo=Q(),Yf=Pv(),Rv=ac(),tD=ai(),rD=ue(),nD={message:({params:{discrError:t,tagName:e}})=>t===Yf.DiscrError.Tag?`tag "${e}" must be string`:`value of tag "${e}" must be in oneOf`,params:({params:{discrError:t,tag:e,tagName:r}})=>(0,qo._)`{error: ${t}, tag: ${r}, tagValue: ${e}}`},oD={keyword:"discriminator",type:"object",schemaType:"object",error:nD,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,qo._)`${r}${(0,qo.getProperty)(a)}`);e.if((0,qo._)`typeof ${u} == "string"`,()=>l(),()=>t.error(!1,{discrError:Yf.DiscrError.Tag,tag:u,tagName:a})),t.ok(c);function l(){let h=f();e.if(!1);for(let p in h)e.elseIf((0,qo._)`${u} === ${p}`),e.assign(c,d(h[p]));e.else(),t.error(!1,{discrError:Yf.DiscrError.Mapping,tag:u,tagName:a}),e.endIf()}function d(h){let p=e.name("valid"),m=t.subschema({keyword:"oneOf",schemaProp:h},p);return t.mergeEvaluated(m,qo.Name),p}function f(){var h;let p={},m=y(o),g=!0;for(let S=0;S<i.length;S++){let k=i[S];if(k?.$ref&&!(0,rD.schemaHasRulesButRef)(k,s.self.RULES)){let $=k.$ref;if(k=Rv.resolveRef.call(s.self,s.schemaEnv.root,s.baseId,$),k instanceof Rv.SchemaEnv&&(k=k.schema),k===void 0)throw new tD.default(s.opts.uriResolver,s.baseId,$)}let R=(h=k?.properties)===null||h===void 0?void 0:h[a];if(typeof R!="object")throw new Error(`discriminator: oneOf subschemas (or referenced schemas) must have "properties/${a}"`);g=g&&(m||y(k)),_(R,S)}if(!g)throw new Error(`discriminator: "${a}" must be required`);return p;function y({required:S}){return Array.isArray(S)&&S.includes(a)}function _(S,k){if(S.const)x(S.const,k);else if(S.enum)for(let R of S.enum)x(R,k);else throw new Error(`discriminator: "properties/${a}" must have "const" or "enum"`)}function x(S,k){if(typeof S!="string"||S in p)throw new Error(`discriminator: "${a}" values must be unique strings`);p[S]=k}}}};Qf.default=oD});var Cv=N((Yq,sD)=>{sD.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 tm=N((Te,em)=>{"use strict";Object.defineProperty(Te,"__esModule",{value:!0});Te.MissingRefError=Te.ValidationError=Te.CodeGen=Te.Name=Te.nil=Te.stringify=Te.str=Te._=Te.KeywordCxt=Te.Ajv=void 0;var iD=TS(),aD=wv(),cD=$v(),Ov=Cv(),uD=["/properties"],Tc="http://json-schema.org/draft-07/schema",Vo=class extends iD.default{_addVocabularies(){super._addVocabularies(),aD.default.forEach(e=>this.addVocabulary(e)),this.opts.discriminator&&this.addKeyword(cD.default)}_addDefaultMetaSchema(){if(super._addDefaultMetaSchema(),!this.opts.meta)return;let e=this.opts.$data?this.$dataMetaSchema(Ov,uD):Ov;this.addMetaSchema(e,Tc,!1),this.refs["http://json-schema.org/schema"]=Tc}defaultMeta(){return this.opts.defaultMeta=super.defaultMeta()||(this.getSchema(Tc)?Tc:void 0)}};Te.Ajv=Vo;em.exports=Te=Vo;em.exports.Ajv=Vo;Object.defineProperty(Te,"__esModule",{value:!0});Te.default=Vo;var lD=ii();Object.defineProperty(Te,"KeywordCxt",{enumerable:!0,get:function(){return lD.KeywordCxt}});var Wo=Q();Object.defineProperty(Te,"_",{enumerable:!0,get:function(){return Wo._}});Object.defineProperty(Te,"str",{enumerable:!0,get:function(){return Wo.str}});Object.defineProperty(Te,"stringify",{enumerable:!0,get:function(){return Wo.stringify}});Object.defineProperty(Te,"nil",{enumerable:!0,get:function(){return Wo.nil}});Object.defineProperty(Te,"Name",{enumerable:!0,get:function(){return Wo.Name}});Object.defineProperty(Te,"CodeGen",{enumerable:!0,get:function(){return Wo.CodeGen}});var dD=sc();Object.defineProperty(Te,"ValidationError",{enumerable:!0,get:function(){return dD.default}});var pD=ai();Object.defineProperty(Te,"MissingRefError",{enumerable:!0,get:function(){return pD.default}})});var Lv=N(_r=>{"use strict";Object.defineProperty(_r,"__esModule",{value:!0});_r.formatNames=_r.fastFormats=_r.fullFormats=void 0;function yr(t,e){return{validate:t,compare:e}}_r.fullFormats={date:yr(Dv,sm),time:yr(nm(!0),im),"date-time":yr(Iv(!0),jv),"iso-time":yr(nm(),Mv),"iso-date-time":yr(Iv(),zv),duration:/^P(?!$)((\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?|(\d+W)?)$/,uri:_D,"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:wD,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:xD,int32:{type:"number",validate:bD},int64:{type:"number",validate:kD},float:{type:"number",validate:Nv},double:{type:"number",validate:Nv},password:!0,binary:!0};_r.fastFormats={..._r.fullFormats,date:yr(/^\d\d\d\d-[0-1]\d-[0-3]\d$/,sm),time:yr(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,im),"date-time":yr(/^\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,jv),"iso-time":yr(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,Mv),"iso-date-time":yr(/^\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,zv),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};_r.formatNames=Object.keys(_r.fullFormats);function fD(t){return t%4===0&&(t%100!==0||t%400===0)}var mD=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,hD=[0,31,28,31,30,31,30,31,31,30,31,30,31];function Dv(t){let e=mD.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&&fD(r)?29:hD[n])}function sm(t,e){if(t&&e)return t>e?1:t<e?-1:0}var rm=/^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;function nm(t){return function(r){let n=rm.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 im(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 Mv(t,e){if(!(t&&e))return;let r=rm.exec(t),n=rm.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 om=/t|\s/i;function Iv(t){let e=nm(t);return function(n){let o=n.split(om);return o.length===2&&Dv(o[0])&&e(o[1])}}function jv(t,e){if(!(t&&e))return;let r=new Date(t).valueOf(),n=new Date(e).valueOf();if(r&&n)return r-n}function zv(t,e){if(!(t&&e))return;let[r,n]=t.split(om),[o,s]=e.split(om),i=sm(r,o);if(i!==void 0)return i||im(n,s)}var gD=/\/|:/,yD=/^(?:[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 _D(t){return gD.test(t)&&yD.test(t)}var Av=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/gm;function xD(t){return Av.lastIndex=0,Av.test(t)}var SD=-(2**31),vD=2**31-1;function bD(t){return Number.isInteger(t)&&t<=vD&&t>=SD}function kD(t){return Number.isInteger(t)}function Nv(){return!0}var ED=/[^\\]\\Z/;function wD(t){if(ED.test(t))return!1;try{return new RegExp(t),!0}catch{return!1}}});var Hv=N(Ko=>{"use strict";Object.defineProperty(Ko,"__esModule",{value:!0});Ko.formatLimitDefinition=void 0;var TD=tm(),rr=Q(),an=rr.operators,Pc={formatMaximum:{okStr:"<=",ok:an.LTE,fail:an.GT},formatMinimum:{okStr:">=",ok:an.GTE,fail:an.LT},formatExclusiveMaximum:{okStr:"<",ok:an.LT,fail:an.GTE},formatExclusiveMinimum:{okStr:">",ok:an.GT,fail:an.LTE}},PD={message:({keyword:t,schemaCode:e})=>(0,rr.str)`should be ${Pc[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,rr._)`{comparison: ${Pc[t].okStr}, limit: ${e}}`};Ko.formatLimitDefinition={keyword:Object.keys(Pc),type:"string",schemaType:"string",$data:!0,error:PD,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 TD.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}),h=e.const("fmt",(0,rr._)`${f}[${c.schemaCode}]`);t.fail$data((0,rr.or)((0,rr._)`typeof ${h} != "object"`,(0,rr._)`${h} instanceof RegExp`,(0,rr._)`typeof ${h}.compare != "function"`,d(h)))}function l(){let f=c.schema,h=a.formats[f];if(!h||h===!0)return;if(typeof h!="object"||h instanceof RegExp||typeof h.compare!="function")throw new Error(`"${o}": format "${f}" does not define "compare" function`);let p=e.scopeValue("formats",{key:f,ref:h,code:i.code.formats?(0,rr._)`${i.code.formats}${(0,rr.getProperty)(f)}`:void 0});t.fail$data(d(p))}function d(f){return(0,rr._)`${f}.compare(${r}, ${n}) ${Pc[o].fail} 0`}},dependencies:["format"]};var RD=t=>(t.addKeyword(Ko.formatLimitDefinition),t);Ko.default=RD});var Bv=N((vi,Zv)=>{"use strict";Object.defineProperty(vi,"__esModule",{value:!0});var Go=Lv(),$D=Hv(),am=Q(),Uv=new am.Name("fullFormats"),CD=new am.Name("fastFormats"),cm=(t,e={keywords:!0})=>{if(Array.isArray(e))return Fv(t,e,Go.fullFormats,Uv),t;let[r,n]=e.mode==="fast"?[Go.fastFormats,CD]:[Go.fullFormats,Uv],o=e.formats||Go.formatNames;return Fv(t,o,r,n),e.keywords&&(0,$D.default)(t),t};cm.get=(t,e="full")=>{let n=(e==="fast"?Go.fastFormats:Go.fullFormats)[t];if(!n)throw new Error(`Unknown format "${t}"`);return n};function Fv(t,e,r,n){var o,s;(o=(s=t.opts.code).formats)!==null&&o!==void 0||(s.formats=(0,am._)`require("ajv-formats/dist/formats").${n}`);for(let i of e)t.addFormat(i,r[i])}Zv.exports=vi=cm;Object.defineProperty(vi,"__esModule",{value:!0});vi.default=cm});function ki(t,e){let r=process.execPath.replace(/\\/g,"/");if(Mc(e?.platform)){let o=r.split("/").pop().replace(/\.exe$/i,"");pm.has(o)||(r=e?.jsRuntime?.replace(/\\/g,"/")??"node")}let n=t.replace(/\\/g,"/");return`"${r}" "${n}"`}function Ze(t,e){if(Mc(e?.platform))return ki(t,e);let n=ob().path.replace(/\\/g,"/"),o=t.replace(/\\/g,"/");return`"${n}" "${o}"`}function Dc(t){if(typeof t!="string"||t.length===0)return null;let e=t.match(/^"([^"]+)"\s+"([^"]+)"\s*$/);return e?{nodePath:e[1],scriptPath:e[2]}:null}function Mc(t){return!!t&&zD.has(t)}var pm,zD,Nr=ne(()=>{"use strict";jc();pm=new Set(["node","bun","deno"]),zD=new Set(["opencode","kilo"])});import{execFileSync as hm,execSync as Jo}from"node:child_process";import{existsSync as zc}from"node:fs";function mm(t){let e=t.split(/[\\/]/);return e[e.length-1]??t}function HD(t){return LD.test(mm(t))}function UD(t){let e=t.toLowerCase().replace(/\//g,"\\");return/\\windows\\(?:system32|sysnative)\\bash\.exe$/.test(e)||/\\microsoft\\windowsapps\\bash\.exe$/.test(e)}function qe(t){try{let e=Ei?`where ${t}`:`command -v ${t}`;return Jo(e,{stdio:"pipe"}),!0}catch{return!1}}function fm(t){if(Ei)try{let r=Jo(`where ${t}`,{encoding:"utf-8",stdio:"pipe"}).trim().split(/\r?\n/).map(o=>o.trim()).filter(Boolean);if(r.length===0||r.filter(o=>!/\\Microsoft\\WindowsApps\\/i.test(o)).length===0)return!1}catch{return!1}else if(!qe(t))return!1;try{return Ei?Jo(`"${t}" --version`,{stdio:"pipe",timeout:5e3}):hm(t,["--version"],{stdio:"pipe",timeout:1500}),!0}catch{return!1}}function gm(){if(qe("bun"))return!0;for(let t of ab())if(zc(t))return!0;return!1}function ib(){for(let e of ab())if(zc(e))return e;if(qe("bun"))return"bun";let t=process.env.HOME??process.env.USERPROFILE??"";return Ei?`${t}\\.bun\\bin\\bun.exe`:`${t}/.bun/bin/bun`}function ab(){let t=process.env.HOME??process.env.USERPROFILE??"";if(Ei){let e=process.env.LOCALAPPDATA??"",r=process.env.APPDATA??"";return[...t?[`${t}\\.bun\\bin\\bun.exe`]:[],...e?[`${e}\\bun\\bin\\bun.exe`]:[],...r?[`${r}\\npm\\node_modules\\bun\\bin\\bun.exe`]:[]]}return t?[`${t}/.bun/bin/bun`]:[]}function FD(){let t=["C:\\Program Files\\Git\\usr\\bin\\bash.exe","C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe"];for(let e of t)if(zc(e))return e;try{let r=Jo("where bash",{encoding:"utf-8",stdio:"pipe"}).trim().split(/\r?\n/).map(n=>n.trim()).filter(Boolean);for(let n of r){let o=n.toLowerCase();if(!(o.includes("system32")||o.includes("windowsapps")))return n}return null}catch{return null}}function Lt(t,e=["--version"]){try{if(process.platform==="win32"){let r=[t,...e].map(n=>/[\s"&|<>^()%!]/.test(n)?JSON.stringify(n):n).join(" ");return Jo(r,{encoding:"utf-8",stdio:["pipe","pipe","pipe"],timeout:5e3}).trim().split(/\r?\n/)[0]}else return hm(t,e,{encoding:"utf-8",stdio:["pipe","pipe","pipe"],timeout:5e3}).trim().split(/\r?\n/)[0]}catch{return"unknown"}}function ZD(t,e={}){if(t)return t;let r=e.execPath??process.execPath,n=e.commandExists??qe,o=r.split(/[\\/]/).pop().replace(/\.exe$/i,"");return pm.has(o)?r:n("node")?"node":null}function Lc(){let e=gm()?ib():null,r=process.env.SHELL,n=process.platform==="win32",o=r&&zc(r)&&HD(r)&&!(n&&UD(r))?r:null;return{javascript:ZD(e),typescript:e||(qe("tsx")?"tsx":qe("ts-node")?"ts-node":null),python:fm("python3")?"python3":fm("python")?"python":fm("py")?"py":null,shell:o??(n?FD()??(qe("sh")?"sh":qe("powershell")?"powershell":"cmd.exe"):qe("bash")?"bash":"sh"),ruby:qe("ruby")?"ruby":null,go:qe("go")?"go":null,rust:qe("rustc")?"rustc":null,php:qe("php")?"php":null,perl:qe("perl")?"perl":null,r:qe("Rscript")?"Rscript":qe("r")?"r":null,elixir:qe("elixir")?"elixir":null,csharp:qe("dotnet-script")?"dotnet-script":null}}function Hc(){return gm()}function BD(t){let e=t.trim(),r=/^(\d+)\.(\d+)\.(\d+)/.exec(e);if(!r)return!1;let n=Number(r[1]);return Number.isFinite(n)&&n>=1}function ob(){if(Ht)return Ht;let t={path:process.execPath,isBun:!1};try{if(!gm())return Ht=t,Ht;let e=ib(),r;try{if(process.platform==="win32"){let n=Jo(`"${e}" --version`,{encoding:"utf-8",stdio:["pipe","pipe","pipe"],timeout:5e3});r=String(n)}else{let n=hm(e,["--version"],{encoding:"utf-8",stdio:["pipe","pipe","pipe"],timeout:5e3});r=String(n)}}catch{return Ht=t,Ht}return BD(r)?(Ht={path:e,isBun:!0},Ht):(Ht=t,Ht)}catch{return Ht=t,Ht}}function cb(t){let e=[],r=t.javascript?.endsWith("bun")??!1;return t.javascript?e.push(` JavaScript: ${t.javascript} (${Lt(t.javascript)})${r?" \u26A1":""}`):e.push(" JavaScript: not available (install node or bun \u2014 host process is not a JS runtime)"),t.typescript?e.push(` TypeScript: ${t.typescript} (${Lt(t.typescript)})`):e.push(" TypeScript: not available (install bun, tsx, or ts-node)"),t.python?e.push(` Python: ${t.python} (${Lt(t.python)})`):e.push(" Python: not available"),e.push(` Shell: ${t.shell} (${Lt(t.shell)})`),t.ruby&&e.push(` Ruby: ${t.ruby} (${Lt(t.ruby)})`),t.go&&e.push(` Go: ${t.go} (${Lt(t.go,["version"])})`),t.rust&&e.push(` Rust: ${t.rust} (${Lt(t.rust)})`),t.php&&e.push(` PHP: ${t.php} (${Lt(t.php)})`),t.perl&&e.push(` Perl: ${t.perl} (${Lt(t.perl)})`),t.r&&e.push(` R: ${t.r} (${Lt(t.r)})`),t.elixir&&e.push(` Elixir: ${t.elixir} (${Lt(t.elixir)})`),t.csharp&&e.push(` C#: ${t.csharp} (${Lt(t.csharp)})`),r||(e.push(""),e.push(" Tip: Install Bun for 3-5x faster JS/TS execution \u2192 https://bun.sh")),e.join(`
|
|
10
|
+
`)}function ub(t){let e=["javascript","shell"];return t.typescript&&e.push("typescript"),t.python&&e.push("python"),t.ruby&&e.push("ruby"),t.go&&e.push("go"),t.rust&&e.push("rust"),t.php&&e.push("php"),t.perl&&e.push("perl"),t.r&&e.push("r"),t.elixir&&e.push("elixir"),t.csharp&&e.push("csharp"),e}function lb(t,e,r){switch(e){case"javascript":if(!t.javascript)throw new Error("No JavaScript runtime available. Install Node.js or Bun on PATH (the host process is not itself a JS runtime).");return sb.test(mm(t.javascript))?[t.javascript,"run",r]:[t.javascript,r];case"typescript":if(!t.typescript)throw new Error("No TypeScript runtime available. Install one of: bun (recommended), tsx (npm i -g tsx), or ts-node.");return sb.test(mm(t.typescript))?[t.typescript,"run",r]:t.typescript==="tsx"?["tsx",r]:["ts-node",r];case"python":if(!t.python)throw new Error("No Python runtime available. Install python3 or python.");return[t.python,r];case"shell":{if(process.platform==="win32"){let o=t.shell.toLowerCase();if(o.includes("bash")||o.endsWith("/sh")||o.endsWith("\\sh.exe")){let i=r.replace(/'/g,"'\\''");return[t.shell,"-c",`source '${i}'`]}if(o.includes("powershell")||o.includes("pwsh"))return[t.shell,"-NoProfile","-ExecutionPolicy","Bypass","-File",r];let s=o.split(/[\\/]/).pop()??o;if(s==="cmd"||s==="cmd.exe")return[t.shell,"/d","/s","/c",r]}return[t.shell,r]}case"ruby":if(!t.ruby)throw new Error("Ruby not available. Install ruby.");return[t.ruby,r];case"go":if(!t.go)throw new Error("Go not available. Install go.");return["go","run",r];case"rust":{if(!t.rust)throw new Error("Rust not available. Install rustc via https://rustup.rs");return["__rust_compile_run__",r]}case"php":if(!t.php)throw new Error("PHP not available. Install php.");return["php",r];case"perl":if(!t.perl)throw new Error("Perl not available. Install perl.");return["perl",r];case"r":if(!t.r)throw new Error("R not available. Install R / Rscript.");return[t.r,r];case"elixir":if(!t.elixir)throw new Error("Elixir not available. Install elixir.");return["elixir",r];case"csharp":if(!t.csharp)throw new Error("C# not available. Install dotnet-script via `dotnet tool install -g dotnet-script`.");return[t.csharp,r]}}var LD,sb,Ei,Ht,jc=ne(()=>{"use strict";Nr();LD=/^(bash|sh|zsh|dash|pwsh|powershell|cmd)(\.exe)?$/i,sb=/^bun(\.exe)?$/i;Ei=process.platform==="win32";Ht=null});import{createRequire as tM}from"node:module";import{existsSync as rM,unlinkSync as yb,renameSync as nM}from"node:fs";import{tmpdir as oM}from"node:os";import{join as sM}from"node:path";function iM(t){let e=null;try{return e=new t(":memory:"),e.exec("CREATE VIRTUAL TABLE __fts5_probe USING fts5(x)"),!0}catch{return!1}finally{try{e?.close()}catch{}}}function aM(t,e){let r=e!==void 0?e:globalThis.Bun;if(typeof r<"u"&&r!==null)return!0;let n=t??process.versions,[o,s]=(n.node??"0.0.0").split("."),i=Number(o),a=Number(s);return!Number.isFinite(i)||!Number.isFinite(a)?!1:i>22||i===22&&a>=5}function Ye(){if(!Xo){let t=tM(import.meta.url);if(globalThis.Bun){let e=t(["bun","sqlite"].join(":")).Database;Xo=function(n,o){let s=new e(n,{readonly:o?.readonly,create:!0}),i=new Sm(s);return o?.timeout&&i.pragma(`busy_timeout = ${o.timeout}`),i}}else if(aM()){let e=null;try{({DatabaseSync:e}=t(["node","sqlite"].join(":")))}catch{e=null}e&&iM(e)?Xo=function(n,o){let s=new e(n,{readOnly:o?.readonly??!1}),i=new vm(s);return o?.timeout&&i.pragma(`busy_timeout = ${o.timeout}`),i}:Xo=t("better-sqlite3")}else Xo=t("better-sqlite3")}return Xo}function Pi(t){t.pragma("journal_mode = WAL"),t.pragma("synchronous = NORMAL");try{t.pragma("mmap_size = 268435456")}catch{}}function Ri(t){if(!rM(t))for(let e of["-wal","-shm"])try{yb(t+e)}catch{}}function bm(t){for(let e of["","-wal","-shm"])try{yb(t+e)}catch{}}function $i(t){try{t.pragma("wal_checkpoint(TRUNCATE)")}catch{}try{t.close()}catch{}}function _b(t="context-mode"){return sM(oM(),`${t}-${process.pid}.db`)}function Gn(t,e=[100,500,2e3]){let r;for(let n=0;n<=e.length;n++)try{return t()}catch(o){let s=o instanceof Error?o.message:String(o);if(!s.includes("SQLITE_BUSY")&&!s.includes("database is locked"))throw o;if(r=o instanceof Error?o:new Error(s),n<e.length){let i=e[n],a=Date.now();for(;Date.now()-a<i;);}}throw new Error(`SQLITE_BUSY: database is locked after ${e.length} retries. Original error: ${r?.message}`)}function km(t){return t.includes("SQLITE_CORRUPT")||t.includes("SQLITE_NOTADB")||t.includes("database disk image is malformed")||t.includes("file is not a database")}function cM(t){let e=Date.now();for(let r of["","-wal","-shm"])try{nM(t+r,`${t}${r}.corrupt-${e}`)}catch{}}var Sm,vm,Xo,Ti,xm,Fc,Yo=ne(()=>{"use strict";Sm=class{#e;constructor(e){this.#e=e}pragma(e){let n=this.#e.prepare(`PRAGMA ${e}`).all();if(!n||n.length===0)return;if(n.length>1)return n;let o=Object.values(n[0]);return o.length===1?o[0]:n[0]}exec(e){let r="",n=null;for(let s=0;s<e.length;s++){let i=e[s];if(n)r+=i,i===n&&(n=null);else if(i==="'"||i==='"')r+=i,n=i;else if(i===";"){let a=r.trim();a&&this.#e.prepare(a).run(),r=""}else r+=i}let o=r.trim();return o&&this.#e.prepare(o).run(),this}prepare(e){let r=this.#e.prepare(e);return{run:(...n)=>r.run(...n),get:(...n)=>{let o=r.get(...n);return o===null?void 0:o},all:(...n)=>r.all(...n),iterate:(...n)=>r.iterate(...n)}}transaction(e){return this.#e.transaction(e)}close(){this.#e.close()}},vm=class{#e;constructor(e){this.#e=e}pragma(e){let n=this.#e.prepare(`PRAGMA ${e}`).all();if(!n||n.length===0)return;if(n.length>1)return n;let o=Object.values(n[0]);return o.length===1?o[0]:n[0]}exec(e){return this.#e.exec(e),this}prepare(e){let r=this.#e.prepare(e);return{run:(...n)=>r.run(...n),get:(...n)=>r.get(...n),all:(...n)=>r.all(...n),iterate:(...n)=>typeof r.iterate=="function"?r.iterate(...n):r.all(...n)[Symbol.iterator]()}}transaction(e){return(...r)=>{this.#e.exec("BEGIN");try{let n=e(...r);return this.#e.exec("COMMIT"),n}catch(n){throw this.#e.exec("ROLLBACK"),n}}}close(){this.#e.close()}},Xo=null;Ti=Symbol.for("__context_mode_live_dbs_v3__"),xm=(()=>{let t=globalThis;return t[Ti]||(t[Ti]=new Set,process.on("exit",()=>{for(let e of t[Ti])$i(e);t[Ti].clear()})),t[Ti]})(),Fc=class{#e;#t;constructor(e){let r=Ye();this.#e=e,Ri(e);let n;try{n=new r(e,{timeout:3e4}),Pi(n)}catch(o){let s=o instanceof Error?o.message:String(o);if(km(s)){cM(e),Ri(e);try{n=new r(e,{timeout:3e4}),Pi(n)}catch(i){throw new Error(`Failed to create fresh DB after renaming corrupt file: ${i instanceof Error?i.message:String(i)}`)}}else throw o}this.#t=n,xm.add(this.#t),this.initSchema(),this.prepareStatements()}get db(){return this.#t}get dbPath(){return this.#e}close(){xm.delete(this.#t),$i(this.#t)}withRetry(e){return Gn(e)}cleanup(){xm.delete(this.#t),$i(this.#t),bm(this.#e)}}});var Ab,Nb=ne(()=>{"use strict";Ab={"claude-code":"claude-code","gemini-cli-mcp-client":"gemini-cli","antigravity-client":"antigravity","cursor-vscode":"cursor","Visual-Studio-Code":"vscode-copilot","JetBrains Client":"jetbrains-copilot","IntelliJ IDEA":"jetbrains-copilot",PyCharm:"jetbrains-copilot",Codex:"codex","codex-mcp-client":"codex","Kilo Code":"kilo","Kiro CLI":"kiro","Pi CLI":"pi","Pi Coding Agent":"pi","omp-coding-agent":"omp",Zed:"zed",zed:"zed","qwen-code":"qwen-code","qwen-cli-mcp-client":"qwen-code","kimi-code":"kimi",kimi:"kimi","Kimi Code":"kimi"}});import{createHash as Oi}from"node:crypto";import{execFileSync as OM}from"node:child_process";import{accessSync as IM,constants as AM,existsSync as Vc,mkdirSync as NM,realpathSync as DM,renameSync as Om}from"node:fs";import{homedir as Hb}from"node:os";import{dirname as MM,isAbsolute as Ub,join as un,resolve as es}from"node:path";function Im(t){let e=t.env??process.env,r=t.legacySessionDirEnv,n=r?e[r]?.trim():void 0;return n&&r?(t.onLegacySessionDir?.(r,n),n):un(jM(t.configDir,t.configDirEnv,e),"context-mode","sessions")}function jM(t,e,r){let n=e?r[e]:void 0;return n&&n.trim()!==""?Mb(n.trim()):Mb(t,Hb())}function Mb(t,e){return t.startsWith("~")?es(Hb(),t.replace(/^~[/\\]?/,"")):Ub(t)?es(t):e?es(e,t):es(t)}function zM(t,e,r){return new ln(t,e,xr,void 0,[`Invalid ${xr} for context-mode ${t} directory: ${r}`,Vb()].join(`
|
|
11
|
+
`))}function Zb(t){let e=process.env[xr];if(e===void 0)return{kind:"unset"};let r=e.trim();if(!r)return{kind:"ignored-empty",ignoredEnvVar:xr,ignoredReason:"empty"};if(!Ub(r))throw zM(t,r,`${xr} must be an absolute path.`);return{kind:"override",root:es(r)}}function LM(t){return t.kind==="ignored-empty"?{ignoredEnvVar:t.ignoredEnvVar,ignoredReason:t.ignoredReason}:{}}function Bb(t,e){let r=Zb(t);return r.kind!=="override"?null:{kind:t,path:un(r.root,e),envVar:xr,source:"override"}}function HM(t,e,r){return{kind:t,path:es(e()),envVar:null,source:"default",...r}}function Ii(t){let e=Zb("session");return e.kind==="override"?{kind:"session",path:un(e.root,Fb),envVar:xr,source:"override"}:HM("session",t,LM(e))}function Am(t){let e=Bb("content",Db);if(e)return e;let r=Ii(t);return{kind:"content",path:un(MM(r.path),Db),envVar:r.envVar,source:r.source,ignoredEnvVar:r.ignoredEnvVar,ignoredReason:r.ignoredReason}}function Nm(t){let e=Bb("stats",Fb);if(e)return e;let r=Ii(t);return{kind:"stats",path:r.path,envVar:r.envVar,source:r.source,ignoredEnvVar:r.ignoredEnvVar,ignoredReason:r.ignoredReason}}function qb(t){return t.message}function Wc(t){return t.source==="override"&&t.envVar?`via ${t.envVar}`:t.ignoredEnvVar&&t.ignoredReason==="empty"?`default; ignored empty ${t.ignoredEnvVar}`:"default"}function Kc(t){let e=[t.kind,t.path,t.source,t.envVar??"",t.ignoredEnvVar??"",t.ignoredReason??""].join("\0"),r=Cm.get(e);if(r instanceof ln)throw r;if(r===t.path)return r;try{return NM(t.path,{recursive:!0}),IM(t.path,AM.W_OK),Cm.set(e,t.path),t.path}catch(n){let o=new ln(t.kind,ZM(n)??t.path,xr,n,void 0,{ignoredEnvVar:t.ignoredEnvVar,ignoredReason:t.ignoredReason});throw Cm.set(e,o),o}}function UM(t,e,r={}){return[`context-mode ${t} directory is not writable: ${e}`,FM(r),Vb()].filter(Boolean).join(`
|
|
12
|
+
`)}function FM(t){return t.ignoredEnvVar&&t.ignoredReason==="empty"?`Ignored empty ${t.ignoredEnvVar}; using adapter default.`:null}function Vb(){return`Set ${xr} to a writable absolute path.`}function ZM(t){if(!t||typeof t!="object")return null;let e=t.path;return typeof e=="string"&&e.length>0?e:null}function Ai(t){let e=t.replace(/\\/g,"/");return/^\/+$/.test(e)?"/":/^[A-Za-z]:\/+$/.test(e)?`${e.slice(0,2)}/`:e.replace(/\/+$/,"")}function jb(t){let e=t;try{e=DM.native(t)}catch{}let r=Ai(e);return process.platform==="win32"||process.platform==="darwin"?r.toLowerCase():r}function Wb(t,e){return OM("git",["-C",t,...e],{encoding:"utf-8",timeout:2e3,stdio:["ignore","pipe","ignore"]}).trim()}function BM(t){let e=Wb(t,["rev-parse","--show-toplevel"]);return e.length>0?Ai(e):null}function qM(t){let e=Wb(t,["worktree","list","--porcelain"]).split(/\r?\n/).find(r=>r.startsWith("worktree "))?.replace("worktree ","")?.trim();return e?Ai(e):null}function Gc(t=process.cwd()){let e=process.env.CONTEXT_MODE_SESSION_SUFFIX;if(Ci&&Ci.projectDir===t&&Ci.envSuffix===e)return Ci.suffix;let r="";if(e!==void 0)r=e?`__${e}`:"";else try{let n=BM(t),o=qM(t);if(n&&o){let s=jb(n),i=jb(o);s!==i&&(r=`__${Oi("sha256").update(s).digest("hex").slice(0,8)}`)}}catch{}return Ci={projectDir:t,envSuffix:e,suffix:r},r}function Dr(t){return Oi("sha256").update(Ai(t)).digest("hex").slice(0,16)}function Qe(t){let e=Ai(t),r=process.platform==="darwin"||process.platform==="win32"?e.toLowerCase():e;return Oi("sha256").update(r).digest("hex").slice(0,16)}function Kb(t){let{projectDir:e,contentDir:r}=t,n=Qe(e),o=un(r,`${n}.db`);if(Vc(o))return o;let s=Dr(e);if(s===n)return o;let i=un(r,`${s}.db`);if(Vc(i))try{Om(i,o);for(let a of["-wal","-shm"])try{Om(i+a,o+a)}catch{}}catch{}return o}function Ni(t){return VM({...t,ext:".db"})}function VM(t){let{projectDir:e,sessionsDir:r,ext:n}=t,o=t.suffix??Gc(e),s=Qe(e),i=un(r,`${s}${o}${n}`);if(Vc(i))return i;let a=Dr(e);if(a===s)return i;let c=un(r,`${a}${o}${n}`);if(Vc(c))try{Om(c,i)}catch{}return i}function qc(t){let e=Number(t);return!Number.isFinite(e)||e<=0?0:Math.floor(e)}function Gb(t){let e=t.pragma("table_xinfo(session_events)"),r=new Set(e.map(o=>o.name)),n=!1;for(let[o,s]of WM)r.has(o)||(t.exec(`ALTER TABLE session_events ADD COLUMN ${o} ${s}`),n=!0);return n&&t.exec("CREATE INDEX IF NOT EXISTS idx_session_events_project ON session_events(session_id, project_dir)"),n}function Jb(t,e){let r=null;try{r=new e(t),Gb(r)}catch{}finally{try{r?.close()}catch{}}}var xr,Fb,Db,ln,Cm,Ci,zb,Lb,F,WM,nr,Sr=ne(()=>{"use strict";Yo();xr="CONTEXT_MODE_DIR",Fb="sessions",Db="content",ln=class extends Error{kind;path;overrideEnvVar;ignoredEnvVar;ignoredReason;constructor(e,r,n=xr,o,s,i={}){super(s??UM(e,r,i),{cause:o}),this.name="StorageDirectoryError",this.kind=e,this.path=r,this.overrideEnvVar=n,this.ignoredEnvVar=i.ignoredEnvVar,this.ignoredReason=i.ignoredReason}},Cm=new Map;zb=1e3,Lb=5;F={insertEvent:"insertEvent",getEvents:"getEvents",getEventsByType:"getEventsByType",getEventsByPriority:"getEventsByPriority",getEventsByTypeAndPriority:"getEventsByTypeAndPriority",getEventCount:"getEventCount",getLatestAttributedProject:"getLatestAttributedProject",checkDuplicate:"checkDuplicate",evictLowestPriority:"evictLowestPriority",updateMetaLastEvent:"updateMetaLastEvent",ensureSession:"ensureSession",getSessionStats:"getSessionStats",incrementCompactCount:"incrementCompactCount",upsertResume:"upsertResume",getResume:"getResume",markResumeConsumed:"markResumeConsumed",claimLatestUnconsumedResume:"claimLatestUnconsumedResume",deleteEvents:"deleteEvents",deleteMeta:"deleteMeta",deleteResume:"deleteResume",getOldSessions:"getOldSessions",searchEvents:"searchEvents",incrementToolCall:"incrementToolCall",getToolCallTotals:"getToolCallTotals",getToolCallByTool:"getToolCallByTool",getEventBytesSummary:"getEventBytesSummary"},WM=[["project_dir","TEXT NOT NULL DEFAULT ''"],["attribution_source","TEXT NOT NULL DEFAULT 'unknown'"],["attribution_confidence","REAL NOT NULL DEFAULT 0"],["bytes_avoided","INTEGER NOT NULL DEFAULT 0"],["bytes_returned","INTEGER NOT NULL DEFAULT 0"]];nr=class extends Fc{constructor(e){super(e?.dbPath??_b("session"))}stmt(e){return this.stmts.get(e)}initSchema(){try{let r=this.db.pragma("table_xinfo(session_events)").find(n=>n.name==="data_hash");r&&r.hidden!==0&&this.db.exec("DROP TABLE session_events")}catch{}this.db.exec(`
|
|
12
13
|
CREATE TABLE IF NOT EXISTS session_events (
|
|
13
14
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
14
15
|
session_id TEXT NOT NULL,
|
|
@@ -58,7 +59,7 @@ var nw=Object.create;var wu=Object.defineProperty;var ow=Object.getOwnPropertyDe
|
|
|
58
59
|
);
|
|
59
60
|
|
|
60
61
|
CREATE INDEX IF NOT EXISTS idx_tool_calls_session ON tool_calls(session_id);
|
|
61
|
-
`);try{
|
|
62
|
+
`);try{Gb(this.db)}catch{}}prepareStatements(){this.stmts=new Map;let e=(r,n)=>{this.stmts.set(r,this.db.prepare(n))};e(F.insertEvent,`INSERT INTO session_events (
|
|
62
63
|
session_id, type, category, priority, data,
|
|
63
64
|
project_dir, attribution_source, attribution_confidence,
|
|
64
65
|
bytes_avoided, bytes_returned,
|
|
@@ -126,72 +127,77 @@ var nw=Object.create;var wu=Object.defineProperty;var ow=Object.getOwnPropertyDe
|
|
|
126
127
|
FROM tool_calls WHERE session_id = ?`),e(F.getToolCallByTool,`SELECT tool, calls, bytes_returned
|
|
127
128
|
FROM tool_calls WHERE session_id = ? ORDER BY calls DESC`),e(F.getEventBytesSummary,`SELECT COALESCE(SUM(bytes_avoided), 0) AS bytes_avoided,
|
|
128
129
|
COALESCE(SUM(bytes_returned), 0) AS bytes_returned
|
|
129
|
-
FROM session_events WHERE session_id = ?`)}insertEvent(e,r,n="PostToolUse",o,s){let i=Ti("sha256").update(r.data).digest("hex").slice(0,16).toUpperCase(),a=String(o?.projectDir??r.project_dir??this._getSessionProjectDir(e)).trim(),c=String(o?.source??r.attribution_source??"unknown"),u=Number(o?.confidence??r.attribution_confidence??0),l=Number.isFinite(u)?Math.max(0,Math.min(1,u)):0,d=Dc(s?.bytesAvoided),f=Dc(s?.bytesReturned),m=this.db.transaction(()=>{if(this.stmt(F.checkDuplicate).get(e,vS,r.type,i))return;this.stmt(F.getEventCount).get(e).cnt>=_S&&this.stmt(F.evictLowestPriority).run(e),this.stmt(F.insertEvent).run(e,r.type,r.category,r.priority,r.data,a,c,l,d,f,n,i),this.stmt(F.updateMetaLastEvent).run(e)});this.withRetry(()=>m())}bulkInsertEvents(e,r,n="PostToolUse",o,s){if(!r||r.length===0)return;if(r.length===1){this.insertEvent(e,r[0],n,o?.[0],s?.[0]);return}let i=r.map((c,u)=>{let l=Ti("sha256").update(c.data).digest("hex").slice(0,16).toUpperCase(),d=o?.[u],f=String(d?.projectDir??c.project_dir??this._getSessionProjectDir(e)??"").trim(),m=String(d?.source??c.attribution_source??"unknown"),p=Number(d?.confidence??c.attribution_confidence??0),h=Number.isFinite(p)?Math.max(0,Math.min(1,p)):0,g=s?.[u],y=Dc(g?.bytesAvoided),v=Dc(g?.bytesReturned);return{event:c,dataHash:l,projectDir:f,attributionSource:m,attributionConfidence:h,bytesAvoided:y,bytesReturned:v}}),a=this.db.transaction(()=>{let c=this.stmt(F.getEventCount).get(e).cnt;for(let u of i)this.stmt(F.checkDuplicate).get(e,vS,u.event.type,u.dataHash)||(c>=_S?this.stmt(F.evictLowestPriority).run(e):c++,this.stmt(F.insertEvent).run(e,u.event.type,u.event.category,u.event.priority,u.event.data,u.projectDir,u.attributionSource,u.attributionConfidence,u.bytesAvoided,u.bytesReturned,n,u.dataHash));this.stmt(F.updateMetaLastEvent).run(e)});this.withRetry(()=>a())}getEvents(e,r){let n=r?.limit??1e3,o=r?.type,s=r?.minPriority;return o&&s!==void 0?this.stmt(F.getEventsByTypeAndPriority).all(e,o,s,n):o?this.stmt(F.getEventsByType).all(e,o,n):s!==void 0?this.stmt(F.getEventsByPriority).all(e,s,n):this.stmt(F.getEvents).all(e,n)}getEventCount(e){return this.stmt(F.getEventCount).get(e).cnt}getEventBytesSummary(e){let r=this.stmt(F.getEventBytesSummary).get(e);return{bytesAvoided:Number(r?.bytes_avoided??0),bytesReturned:Number(r?.bytes_returned??0)}}getLatestAttributedProjectDir(e){return this.stmt(F.getLatestAttributedProject).get(e)?.project_dir||null}_getSessionProjectDir(e){try{return this.db.prepare("SELECT project_dir FROM session_meta WHERE session_id = ?").get(e)?.project_dir||""}catch{return""}}searchEvents(e,r,n,o){try{let s=e.replace(/[%_]/g,a=>"\\"+a),i=o??null;return this.stmt(F.searchEvents).all(n,s,s,i,i,r)}catch{return[]}}ensureSession(e,r){this.stmt(F.ensureSession).run(e,r)}getSessionStats(e){return this.stmt(F.getSessionStats).get(e)??null}incrementCompactCount(e){this.stmt(F.incrementCompactCount).run(e)}upsertResume(e,r,n){this.stmt(F.upsertResume).run(e,r,n??0)}getResume(e){return this.stmt(F.getResume).get(e)??null}markResumeConsumed(e){this.stmt(F.markResumeConsumed).run(e)}claimLatestUnconsumedResume(e){let r=this.stmt(F.claimLatestUnconsumedResume).get(e);return r?{sessionId:r.session_id,snapshot:r.snapshot}:null}getLatestSessionId(){try{return this.db.prepare("SELECT session_id FROM session_meta ORDER BY started_at DESC LIMIT 1").get()?.session_id??null}catch{return null}}incrementToolCall(e,r,n=0){let o=Number.isFinite(n)&&n>0?Math.round(n):0;try{this.stmt(F.incrementToolCall).run(e,r,o)}catch{}}getToolCallStats(e){try{let r=this.stmt(F.getToolCallTotals).get(e),n=this.stmt(F.getToolCallByTool).all(e),o={};for(let s of n)o[s.tool]={calls:s.calls,bytesReturned:s.bytes_returned};return{totalCalls:r?.calls??0,totalBytesReturned:r?.bytes_returned??0,byTool:o}}catch{return{totalCalls:0,totalBytesReturned:0,byTool:{}}}}deleteSession(e){this.db.transaction(()=>{this.stmt(F.deleteEvents).run(e),this.stmt(F.deleteResume).run(e),this.stmt(F.deleteMeta).run(e)})()}cleanupOldSessions(e=7){let r=`-${e}`,n=this.stmt(F.getOldSessions).all(r);for(let{session_id:o}of n)this.deleteSession(o);return n.length}}});import{join as Go,resolve as OS}from"node:path";import{accessSync as uM,copyFileSync as lM,constants as dM,mkdirSync as pM}from"node:fs";import{homedir as Sm}from"node:os";function er(t=process.env){let e=t.CONTEXT_MODE_DATA_DIR;return!e||e.trim()===""?null:e.startsWith("~")?OS(Sm(),e.replace(/^~[/\\]?/,"")):OS(e)}var xe,ut=ce(()=>{"use strict";Cr();xe=class{constructor(e){this.sessionDirSegments=e}getSessionDir(){let e=er(),r=e?Go(e,"context-mode","sessions"):Go(Sm(),...this.sessionDirSegments,"context-mode","sessions");return pM(r,{recursive:!0}),r}getConfigDir(e){return Go(Sm(),...this.sessionDirSegments)}getInstructionFiles(){return["CLAUDE.md"]}getMemoryDir(e){let r=er(),n=r?Go(r,"context-mode","memory"):Go(this.getConfigDir(),"memory");return e?Go(n,ct(e)):n}backupSettings(){let e=this.getSettingsPath();try{uM(e,dM.R_OK);let r=e+".bak";return lM(e,r),r}catch{return null}}}});var Jo,km=ce(()=>{"use strict";ut();Jo=class extends xe{parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:process.env[this.projectDirEnvVar]??process.cwd(),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:r.tool_output,isError:r.is_error,sessionId:this.extractSessionId(r),projectDir:process.env[this.projectDirEnvVar]??process.cwd(),raw:e}}parsePreCompactInput(e){let r=e;return{sessionId:this.extractSessionId(r),projectDir:process.env[this.projectDirEnvVar]??process.cwd(),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:process.env[this.projectDirEnvVar]??process.cwd(),raw:e}}formatPreToolUseResponse(e){if(e.decision==="deny")return{permissionDecision:"deny",reason:e.reason??"Blocked by context-mode hook"};if(e.decision==="modify"&&e.updatedInput)return{updatedInput:e.updatedInput};if(e.decision==="context"&&e.additionalContext)return{additionalContext:e.additionalContext};if(e.decision==="ask")return{permissionDecision:"ask"}}formatPostToolUseResponse(e){let r={};return e.additionalContext&&(r.additionalContext=e.additionalContext),e.updatedOutput&&(r.updatedMCPToolOutput=e.updatedOutput),Object.keys(r).length>0?r:void 0}formatPreCompactResponse(e){return e.context??""}formatSessionStartResponse(e){return e.context??""}}});import{existsSync as Em}from"node:fs";import{join as wm}from"node:path";async function fM(){if(Xo)return Xo;if(Yo)return null;try{let t=[new URL("../../scripts/plugin-cache-integrity.mjs",import.meta.url),new URL("./scripts/plugin-cache-integrity.mjs",import.meta.url)],e=null;for(let r of t)try{let n=await import(r.href);if(typeof n?.assertPluginCacheIntegrity=="function")return Xo=n,Xo}catch(n){e=n}return Yo=e instanceof Error?e.message:String(e??"not found"),null}catch(t){return Yo=t instanceof Error?t.message:String(t),null}}function mM(t){let e=[];return Em(wm(t,"start.mjs"))||e.push("start.mjs"),!Em(wm(t,"server.bundle.mjs"))&&!Em(wm(t,"build","server.js"))&&e.push("server.bundle.mjs (or build/server.js)"),e}function IS(t){if(Xo){let e=Xo.assertPluginCacheIntegrity({pluginRoot:t});return e.ok?{status:"OK",detail:`${t} (all required runtime siblings present)`}:{status:"FAIL",detail:`missing: ${e.missing.join(", ")}`}}if(Yo){let e=mM(t);return e.length>0?{status:"FAIL",detail:`partial install \u2014 critical launch files missing: ${e.join(", ")} (integrity helper also missing: ${Yo}); the MCP server cannot start. Reinstall: npm install -g context-mode@latest`}:{status:"FAIL",detail:`integrity helper unavailable: ${Yo}`}}return{status:"FAIL",detail:"integrity helper not yet loaded"}}var Xo,Yo,AS=ce(()=>{"use strict";Xo=null,Yo=null;fM()});function Ie(t){let e=process.execPath.replace(/\\/g,"/"),r=t.replace(/\\/g,"/");return`"${e}" "${r}"`}function Uc(t){if(typeof t!="string"||t.length===0)return null;let e=t.match(/^"([^"]+)"\s+"([^"]+)"\s*$/);return e?{nodePath:e[1],scriptPath:e[2]}:null}var sn=ce(()=>{"use strict"});function Ci(t,e){let r=Vn[e],n=Rm(e);return t.hooks?.some(o=>o.command?.includes(r)||o.command?.includes(n))??!1}function Rm(t,e){if(e){let r=Vn[t];return Ie(`${e}/hooks/${r}`)}return`context-mode hook claude-code ${t.toLowerCase()}`}function Pm(t){let e=Uc(t);if(e)return e.scriptPath.endsWith(".mjs")?e.scriptPath:null;let r=t.match(/^\s*node\s+"([^"]+\.mjs)"\s*$/);if(r)return r[1];let n=t.match(/^\s*node\s+(\S+\.mjs)\s*$/);return n?n[1]:null}function MS(t){let e=Object.values(Vn);return t.hooks?.some(r=>r.command!=null&&(e.some(n=>r.command.includes(n))||r.command.includes("context-mode hook")))??!1}var tr,hM,Tm,NS,gM,$2,Vn,DS,C2,jS=ce(()=>{"use strict";sn();tr={PRE_TOOL_USE:"PreToolUse",POST_TOOL_USE:"PostToolUse",PRE_COMPACT:"PreCompact",SESSION_START:"SessionStart",USER_PROMPT_SUBMIT:"UserPromptSubmit"},hM="mcp__",Tm=["Bash","WebFetch","Read","Grep","Agent","mcp__plugin_context-mode_context-mode__ctx_execute","mcp__plugin_context-mode_context-mode__ctx_execute_file","mcp__plugin_context-mode_context-mode__ctx_batch_execute",hM],NS=Tm.join("|"),gM=["Bash","Read","Write","Edit","NotebookEdit","Glob","Grep","TodoWrite","TaskCreate","TaskUpdate","EnterPlanMode","ExitPlanMode","Skill","Agent","AskUserQuestion","EnterWorktree","mcp__"],$2=gM.join("|"),Vn={PreToolUse:"pretooluse.mjs",PostToolUse:"posttooluse.mjs",PreCompact:"precompact.mjs",SessionStart:"sessionstart.mjs",UserPromptSubmit:"userpromptsubmit.mjs"},DS=[tr.PRE_TOOL_USE,tr.SESSION_START],C2=[tr.POST_TOOL_USE,tr.PRE_COMPACT,tr.USER_PROMPT_SUBMIT]});var Cm={};Fe(Cm,{ClaudeCodeAdapter:()=>$m});import{readFileSync as Hc,writeFileSync as zS,existsSync as LS,readdirSync as yM,chmodSync as _M,accessSync as vM,mkdirSync as xM,constants as bM}from"node:fs";import{resolve as Fc,join as an}from"node:path";import{homedir as US}from"node:os";var $m,Om=ce(()=>{"use strict";km();ut();Wn();AS();sn();jS();$m=class extends Jo{constructor(){super([".claude"])}name="Claude Code";paradigm="json-stdio";projectDirEnvVar="CLAUDE_PROJECT_DIR";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!0,canInjectSessionContext:!0};getConfigDir(e){return St()}getSessionDir(){let e=er(),r=e?an(e,"context-mode","sessions"):an(this.getConfigDir(),"context-mode","sessions");return xM(r,{recursive:!0}),r}getSettingsPath(){return an(this.getConfigDir(),"settings.json")}generateHookConfig(e){let r=Ie(`${e}/hooks/pretooluse.mjs`);return{PreToolUse:[...Tm].map(o=>({matcher:o,hooks:[{type:"command",command:r}]})),PostToolUse:[{matcher:"",hooks:[{type:"command",command:Ie(`${e}/hooks/posttooluse.mjs`)}]}],PreCompact:[{matcher:"",hooks:[{type:"command",command:Ie(`${e}/hooks/precompact.mjs`)}]}],UserPromptSubmit:[{matcher:"",hooks:[{type:"command",command:Ie(`${e}/hooks/userpromptsubmit.mjs`)}]}],SessionStart:[{matcher:"",hooks:[{type:"command",command:Ie(`${e}/hooks/sessionstart.mjs`)}]}]}}readSettings(){try{let e=Hc(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){zS(this.getSettingsPath(),JSON.stringify(e,null,2)+`
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
`,"utf-8")}validateHooks(e){let r=[],n=this.readSettings();if(!n)return r.push({check:"
|
|
133
|
-
`,"utf-8")}catch{}}
|
|
134
|
-
`,"utf-8")}validateHooks(e){let r=[],n=this.readSettings();if(!n)return r.push({check:"
|
|
135
|
-
`,"utf-8")}
|
|
136
|
-
|
|
130
|
+
FROM session_events WHERE session_id = ?`)}insertEvent(e,r,n="PostToolUse",o,s){let i=Oi("sha256").update(r.data).digest("hex").slice(0,16).toUpperCase(),a=String(o?.projectDir??r.project_dir??this._getSessionProjectDir(e)).trim(),c=String(o?.source??r.attribution_source??"unknown"),u=Number(o?.confidence??r.attribution_confidence??0),l=Number.isFinite(u)?Math.max(0,Math.min(1,u)):0,d=qc(s?.bytesAvoided),f=qc(s?.bytesReturned),h=this.db.transaction(()=>{if(this.stmt(F.checkDuplicate).get(e,Lb,r.type,i))return;this.stmt(F.getEventCount).get(e).cnt>=zb&&this.stmt(F.evictLowestPriority).run(e),this.stmt(F.insertEvent).run(e,r.type,r.category,r.priority,r.data,a,c,l,d,f,n,i),this.stmt(F.updateMetaLastEvent).run(e)});this.withRetry(()=>h())}bulkInsertEvents(e,r,n="PostToolUse",o,s){if(!r||r.length===0)return;if(r.length===1){this.insertEvent(e,r[0],n,o?.[0],s?.[0]);return}let i=r.map((c,u)=>{let l=Oi("sha256").update(c.data).digest("hex").slice(0,16).toUpperCase(),d=o?.[u],f=String(d?.projectDir??c.project_dir??this._getSessionProjectDir(e)??"").trim(),h=String(d?.source??c.attribution_source??"unknown"),p=Number(d?.confidence??c.attribution_confidence??0),m=Number.isFinite(p)?Math.max(0,Math.min(1,p)):0,g=s?.[u],y=qc(g?.bytesAvoided),_=qc(g?.bytesReturned);return{event:c,dataHash:l,projectDir:f,attributionSource:h,attributionConfidence:m,bytesAvoided:y,bytesReturned:_}}),a=this.db.transaction(()=>{let c=this.stmt(F.getEventCount).get(e).cnt;for(let u of i)this.stmt(F.checkDuplicate).get(e,Lb,u.event.type,u.dataHash)||(c>=zb?this.stmt(F.evictLowestPriority).run(e):c++,this.stmt(F.insertEvent).run(e,u.event.type,u.event.category,u.event.priority,u.event.data,u.projectDir,u.attributionSource,u.attributionConfidence,u.bytesAvoided,u.bytesReturned,n,u.dataHash));this.stmt(F.updateMetaLastEvent).run(e)});this.withRetry(()=>a())}getEvents(e,r){let n=r?.limit??1e3,o=r?.type,s=r?.minPriority;return o&&s!==void 0?this.stmt(F.getEventsByTypeAndPriority).all(e,o,s,n):o?this.stmt(F.getEventsByType).all(e,o,n):s!==void 0?this.stmt(F.getEventsByPriority).all(e,s,n):this.stmt(F.getEvents).all(e,n)}getEventCount(e){return this.stmt(F.getEventCount).get(e).cnt}getEventBytesSummary(e){let r=this.stmt(F.getEventBytesSummary).get(e);return{bytesAvoided:Number(r?.bytes_avoided??0),bytesReturned:Number(r?.bytes_returned??0)}}getLatestAttributedProjectDir(e){return this.stmt(F.getLatestAttributedProject).get(e)?.project_dir||null}_getSessionProjectDir(e){try{return this.db.prepare("SELECT project_dir FROM session_meta WHERE session_id = ?").get(e)?.project_dir||""}catch{return""}}searchEvents(e,r,n,o){try{let s=e.replace(/[%_]/g,a=>"\\"+a),i=o??null;return this.stmt(F.searchEvents).all(n,s,s,i,i,r)}catch{return[]}}getSessionIdsForProject(e){try{return this.db.prepare(`SELECT DISTINCT session_id
|
|
131
|
+
FROM session_events
|
|
132
|
+
WHERE project_dir = ?`).all(e).map(n=>n.session_id)}catch{return[]}}ensureSession(e,r){this.stmt(F.ensureSession).run(e,r)}getSessionStats(e){return this.stmt(F.getSessionStats).get(e)??null}incrementCompactCount(e){this.stmt(F.incrementCompactCount).run(e)}upsertResume(e,r,n){this.stmt(F.upsertResume).run(e,r,n??0)}getResume(e){return this.stmt(F.getResume).get(e)??null}markResumeConsumed(e){this.stmt(F.markResumeConsumed).run(e)}claimLatestUnconsumedResume(e){let r=this.stmt(F.claimLatestUnconsumedResume).get(e);return r?{sessionId:r.session_id,snapshot:r.snapshot}:null}getLatestSessionId(){try{return this.db.prepare("SELECT session_id FROM session_meta ORDER BY started_at DESC LIMIT 1").get()?.session_id??null}catch{return null}}incrementToolCall(e,r,n=0){let o=Number.isFinite(n)&&n>0?Math.round(n):0;try{this.stmt(F.incrementToolCall).run(e,r,o)}catch{}}getToolCallStats(e){try{let r=this.stmt(F.getToolCallTotals).get(e),n=this.stmt(F.getToolCallByTool).all(e),o={};for(let s of n)o[s.tool]={calls:s.calls,bytesReturned:s.bytes_returned};return{totalCalls:r?.calls??0,totalBytesReturned:r?.bytes_returned??0,byTool:o}}catch{return{totalCalls:0,totalBytesReturned:0,byTool:{}}}}deleteSession(e){this.db.transaction(()=>{this.stmt(F.deleteEvents).run(e),this.stmt(F.deleteResume).run(e),this.stmt(F.deleteMeta).run(e)})()}cleanupOldSessions(e=7){let r=`-${e}`,n=this.stmt(F.getOldSessions).all(r);for(let{session_id:o}of n)this.deleteSession(o);return n.length}pruneOrphanedEvents(){let e=this.db.prepare("DELETE FROM session_events WHERE session_id NOT IN (SELECT session_id FROM session_meta)").run();return Number(e.changes??0)}}});import{join as ts,resolve as Xb}from"node:path";import{accessSync as KM,copyFileSync as GM,constants as JM,mkdirSync as XM}from"node:fs";import{homedir as Dm}from"node:os";function St(t=process.env){let e=t.CONTEXT_MODE_DATA_DIR;return!e||e.trim()===""?null:e.startsWith("~")?Xb(Dm(),e.replace(/^~[/\\]?/,"")):Xb(e)}var ge,st=ne(()=>{"use strict";Sr();ge=class{constructor(e){this.sessionDirSegments=e}getSessionDir(){let e=St(),r=e?ts(e,"context-mode","sessions"):ts(Dm(),...this.sessionDirSegments,"context-mode","sessions");return XM(r,{recursive:!0}),r}getConfigDir(e){return ts(Dm(),...this.sessionDirSegments)}getInstructionFiles(){return["CLAUDE.md"]}getMemoryDir(e){let r=St(),n=r?ts(r,"context-mode","memory"):ts(this.getConfigDir(),"memory");return e?ts(n,Qe(e)):n}backupSettings(){let e=this.getSettingsPath();try{KM(e,JM.R_OK);let r=e+".bak";return GM(e,r),r}catch{return null}}}});var rs,Mm=ne(()=>{"use strict";st();rs=class extends ge{parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:process.env[this.projectDirEnvVar]??process.cwd(),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:r.tool_output,isError:r.is_error,sessionId:this.extractSessionId(r),projectDir:process.env[this.projectDirEnvVar]??process.cwd(),raw:e}}parsePreCompactInput(e){let r=e;return{sessionId:this.extractSessionId(r),projectDir:process.env[this.projectDirEnvVar]??process.cwd(),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:process.env[this.projectDirEnvVar]??process.cwd(),raw:e}}formatPreToolUseResponse(e){if(e.decision==="deny")return{permissionDecision:"deny",reason:e.reason??"Blocked by context-mode hook"};if(e.decision==="modify"&&e.updatedInput)return{updatedInput:e.updatedInput};if(e.decision==="context"&&e.additionalContext)return{additionalContext:e.additionalContext};if(e.decision==="ask")return{permissionDecision:"ask"}}formatPostToolUseResponse(e){let r={};return e.additionalContext&&(r.additionalContext=e.additionalContext),e.updatedOutput&&(r.updatedMCPToolOutput=e.updatedOutput),Object.keys(r).length>0?r:void 0}formatPreCompactResponse(e){return e.context??""}formatSessionStartResponse(e){return e.context??""}}});import{existsSync as jm}from"node:fs";import{join as zm}from"node:path";async function YM(){if(ns)return ns;if(os)return null;try{let t=[new URL("../../scripts/plugin-cache-integrity.mjs",import.meta.url),new URL("./scripts/plugin-cache-integrity.mjs",import.meta.url)],e=null;for(let r of t)try{let n=await import(r.href);if(typeof n?.assertPluginCacheIntegrity=="function")return ns=n,ns}catch(n){e=n}return os=e instanceof Error?e.message:String(e??"not found"),null}catch(t){return os=t instanceof Error?t.message:String(t),null}}function QM(t){let e=[];return jm(zm(t,"start.mjs"))||e.push("start.mjs"),!jm(zm(t,"server.bundle.mjs"))&&!jm(zm(t,"build","server.js"))&&e.push("server.bundle.mjs (or build/server.js)"),e}function Yb(t){if(ns){let e=ns.assertPluginCacheIntegrity({pluginRoot:t});return e.ok?{status:"OK",detail:`${t} (all required runtime siblings present)`}:{status:"FAIL",detail:`missing: ${e.missing.join(", ")}`}}if(os){let e=QM(t);return e.length>0?{status:"FAIL",detail:`partial install \u2014 critical launch files missing: ${e.join(", ")} (integrity helper also missing: ${os}); the MCP server cannot start. Reinstall: npm install -g context-mode@latest`}:{status:"FAIL",detail:`integrity helper unavailable: ${os}`}}return{status:"FAIL",detail:"integrity helper not yet loaded"}}var ns,os,Qb=ne(()=>{"use strict";ns=null,os=null;YM()});function Di(t,e){let r=Jn[e],n=Hm(e);return t.hooks?.some(o=>o.command?.includes(r)||o.command?.includes(n))??!1}function Hm(t,e){if(e){let r=Jn[t];return Ze(`${e}/hooks/${r}`)}return`context-mode hook claude-code ${t.toLowerCase()}`}function Um(t){let e=Dc(t);if(e)return e.scriptPath.endsWith(".mjs")?e.scriptPath:null;let r=t.match(/^\s*node\s+"([^"]+\.mjs)"\s*$/);if(r)return r[1];let n=t.match(/^\s*node\s+(\S+\.mjs)\s*$/);return n?n[1]:null}function rk(t){let e=Object.values(Jn);return t.hooks?.some(r=>r.command!=null&&(e.some(n=>r.command.includes(n))||r.command.includes("context-mode hook")))??!1}var or,ej,Lm,ek,tj,$4,Jn,tk,C4,nk=ne(()=>{"use strict";Nr();or={PRE_TOOL_USE:"PreToolUse",POST_TOOL_USE:"PostToolUse",PRE_COMPACT:"PreCompact",SESSION_START:"SessionStart",USER_PROMPT_SUBMIT:"UserPromptSubmit"},ej="mcp__",Lm=["Bash","WebFetch","Read","Grep","Agent","mcp__plugin_context-mode_context-mode__ctx_execute","mcp__plugin_context-mode_context-mode__ctx_execute_file","mcp__plugin_context-mode_context-mode__ctx_batch_execute",ej],ek=Lm.join("|"),tj=["Bash","Read","Write","Edit","NotebookEdit","Glob","Grep","TodoWrite","TaskCreate","TaskUpdate","EnterPlanMode","ExitPlanMode","Skill","Agent","AskUserQuestion","EnterWorktree","mcp__"],$4=tj.join("|"),Jn={PreToolUse:"pretooluse.mjs",PostToolUse:"posttooluse.mjs",PreCompact:"precompact.mjs",SessionStart:"sessionstart.mjs",UserPromptSubmit:"userpromptsubmit.mjs"},tk=[or.PRE_TOOL_USE,or.SESSION_START],C4=[or.POST_TOOL_USE,or.PRE_COMPACT,or.USER_PROMPT_SUBMIT]});var Zm={};He(Zm,{ClaudeCodeAdapter:()=>Fm});import{readFileSync as Jc,writeFileSync as ok,existsSync as sk,readdirSync as rj,chmodSync as nj,accessSync as oj,mkdirSync as sj,constants as ij}from"node:fs";import{resolve as Xc,join as dn}from"node:path";import{homedir as ik}from"node:os";var Fm,Bm=ne(()=>{"use strict";Mm();st();Xn();Qb();Nr();nk();Fm=class extends rs{constructor(){super([".claude"])}name="Claude Code";paradigm="json-stdio";projectDirEnvVar="CLAUDE_PROJECT_DIR";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!0,canInjectSessionContext:!0};getConfigDir(e){return wt()}getSessionDir(){let e=St(),r=e?dn(e,"context-mode","sessions"):dn(this.getConfigDir(),"context-mode","sessions");return sj(r,{recursive:!0}),r}getSettingsPath(){return dn(this.getConfigDir(),"settings.json")}generateHookConfig(e){let r=Ze(`${e}/hooks/pretooluse.mjs`);return{PreToolUse:[...Lm].map(o=>({matcher:o,hooks:[{type:"command",command:r}]})),PostToolUse:[{matcher:"",hooks:[{type:"command",command:Ze(`${e}/hooks/posttooluse.mjs`)}]}],PreCompact:[{matcher:"",hooks:[{type:"command",command:Ze(`${e}/hooks/precompact.mjs`)}]}],UserPromptSubmit:[{matcher:"",hooks:[{type:"command",command:Ze(`${e}/hooks/userpromptsubmit.mjs`)}]}],SessionStart:[{matcher:"",hooks:[{type:"command",command:Ze(`${e}/hooks/sessionstart.mjs`)}]}]}}readSettings(){try{let e=Jc(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){ok(this.getSettingsPath(),JSON.stringify(e,null,2)+`
|
|
133
|
+
`,"utf-8")}validateHooks(e){let r=[],n=this.readSettings();if(!n)return r.push({check:"PreToolUse hook",status:"fail",message:`Could not read ${this.getSettingsPath()}`,fix:"context-mode upgrade"}),r;let o=n.hooks,s=this.readPluginHooks(e),i=this.checkHookType(o,s,or.PRE_TOOL_USE);r.push({check:"PreToolUse hook",status:i?"pass":"fail",message:i?"PreToolUse hook configured":"No PreToolUse hooks found",fix:i?void 0:"context-mode upgrade"});let a=this.checkHookType(o,s,or.SESSION_START);return r.push({check:"SessionStart hook",status:a?"pass":"fail",message:a?"SessionStart hook configured":"No SessionStart hooks found",fix:a?void 0:"context-mode upgrade"}),r}getHealthChecks(e){let r=Object.entries(Jn).map(([o,s])=>{let i=dn(e,"hooks",s);return{name:`Hook script: ${o} (${s})`,check:()=>sk(i)?{status:"OK",detail:i}:{status:"FAIL",detail:`not found at ${i}`}}}),n={name:"Plugin cache integrity",check:()=>Yb(e)};return[...r,n]}readPluginHooks(e){let r=[dn(e,"hooks","hooks.json"),dn(e,".claude-plugin","hooks","hooks.json")];for(let n of r)try{let o=Jc(n,"utf-8"),s=JSON.parse(o);if(s.hooks)return s.hooks}catch{}}checkHookType(e,r,n){let o=e?.[n];if(o&&o.length>0&&o.some(i=>Di(i,n)))return!0;let s=r?.[n];return!!(s&&s.length>0&&s.some(i=>Di(i,n)))}checkPluginRegistration(){let e=this.readSettings();if(!e)return{check:"Plugin registration",status:"warn",message:"Could not read settings.json"};let r=e.enabledPlugins;if(!r)return{check:"Plugin registration",status:"warn",message:"No enabledPlugins section found (might be using standalone MCP mode)"};let n=Object.keys(r).find(o=>o.startsWith("context-mode"));return n&&r[n]?{check:"Plugin registration",status:"pass",message:`Plugin enabled: ${n}`}:{check:"Plugin registration",status:"warn",message:"context-mode not in enabledPlugins (might be using standalone MCP mode)"}}getInstalledVersion(){try{let r=dn(this.getConfigDir(),"plugins","installed_plugins.json"),o=JSON.parse(Jc(r,"utf-8")).plugins??{};for(let[s,i]of Object.entries(o)){if(!s.toLowerCase().includes("context-mode"))continue;let a=i;if(a.length>0&&typeof a[0].version=="string")return a[0].version}}catch{}let e=Array.from(new Set([this.getConfigDir(),wt(),Xc(ik(),".claude"),Xc(ik(),".config","claude")]));for(let r of e){let n=Xc(r,"plugins","cache","context-mode","context-mode");try{let s=rj(n).filter(i=>/^\d+\.\d+\.\d+/.test(i)).sort((i,a)=>{let c=i.split(".").map(Number),u=a.split(".").map(Number);for(let l=0;l<3;l++)if((c[l]??0)!==(u[l]??0))return(c[l]??0)-(u[l]??0);return 0});if(s.length>0)return s[s.length-1]}catch{}}return"not installed"}configureAllHooks(e){let r=this.readSettings()??{},n=r.hooks??{},o=[];for(let a of Object.keys(n)){let c=n[a];if(!Array.isArray(c))continue;let u=c.filter(d=>{let f=d;if(!rk(f))return!0;let h=f.hooks??[];return h.every(m=>!m.command||!Um(m.command))?!0:h.every(m=>{let g=m.command?Um(m.command):null;return g?sk(g):!0})}),l=c.length-u.length;l>0&&(n[a]=u,o.push(`Removed ${l} stale ${a} hook(s)`))}let s=this.readPluginHooks(e);if(s&&tk.every(c=>this.checkHookType(void 0,s,c))){let c=Object.values(Jn),u=l=>l!=null&&(c.some(d=>l.includes(d))||l.includes("context-mode hook"));for(let l of Object.keys(n)){let d=n[l];if(!Array.isArray(d))continue;let f=0;for(let p of d){let m=p,g=m.hooks??[],y=g.length;m.hooks=g.filter(_=>!u(_.command)),f+=y-m.hooks.length}let h=d.filter(p=>{let m=p.hooks;return Array.isArray(m)&&m.length>0});(f>0||h.length!==d.length)&&(n[l]=h,f>0&&o.push(`Removed ${f} duplicate ${l} hook(s) \u2014 covered by plugin hooks.json`))}return r.hooks=n,this.writeSettings(r),o.push("Skipped settings.json registration \u2014 plugin hooks.json is sufficient"),o}let i=[or.PRE_TOOL_USE,or.SESSION_START];for(let a of i){let c=Hm(a,e);if(a===or.PRE_TOOL_USE){let u={matcher:ek,hooks:[{type:"command",command:c}]},l=n.PreToolUse;if(l&&Array.isArray(l)){let d=l.findIndex(f=>Di(f,a));d>=0?(l[d]=u,o.push(`Updated existing ${a} hook entry`)):(l.push(u),o.push(`Added ${a} hook entry`)),n.PreToolUse=l}else n.PreToolUse=[u],o.push(`Created ${a} hooks section`)}else{let u={matcher:"",hooks:[{type:"command",command:c}]},l=n[a];if(l&&Array.isArray(l)){let d=l.findIndex(f=>Di(f,a));d>=0?(l[d]=u,o.push(`Updated existing ${a} hook entry`)):(l.push(u),o.push(`Added ${a} hook entry`)),n[a]=l}else n[a]=[u],o.push(`Created ${a} hooks section`)}}return r.hooks=n,this.writeSettings(r),o}setHookPermissions(e){let r=[];for(let[,n]of Object.entries(Jn)){let o=Xc(e,"hooks",n);try{oj(o,ij.R_OK),nj(o,493),r.push(o)}catch{}}return r}updatePluginRegistry(e,r){try{let n=dn(this.getConfigDir(),"plugins","installed_plugins.json"),o=JSON.parse(Jc(n,"utf-8"));for(let[s,i]of Object.entries(o.plugins||{}))if(s.toLowerCase().includes("context-mode"))for(let a of i)a.installPath=e,a.version=r,a.lastUpdated=new Date().toISOString();ok(n,JSON.stringify(o,null,2)+`
|
|
134
|
+
`,"utf-8")}catch{}}extractSessionId(e){if(e.transcript_path){let r=e.transcript_path.match(/([a-f0-9-]{36})\.jsonl$/);if(r)return r[1]}return e.session_id?e.session_id:process.env.CLAUDE_SESSION_ID?process.env.CLAUDE_SESSION_ID:`pid-${process.ppid}`}}});function Yn(t,e){let r=Yc[t];return e&&r?Ze(`${e}/hooks/gemini-cli/${r}`):`context-mode hook gemini-cli ${t.toLowerCase()}`}var Pe,ak,Yc,F4,Z4,ck=ne(()=>{"use strict";Nr();Pe={BEFORE_AGENT:"BeforeAgent",BEFORE_TOOL:"BeforeTool",AFTER_TOOL:"AfterTool",PRE_COMPRESS:"PreCompress",SESSION_START:"SessionStart"},ak="mcp__(?!.*context-mode)",Yc={[Pe.BEFORE_AGENT]:"beforeagent.mjs",[Pe.BEFORE_TOOL]:"beforetool.mjs",[Pe.AFTER_TOOL]:"aftertool.mjs",[Pe.PRE_COMPRESS]:"precompress.mjs",[Pe.SESSION_START]:"sessionstart.mjs"},F4=[Pe.BEFORE_TOOL,Pe.SESSION_START],Z4=[Pe.AFTER_TOOL,Pe.PRE_COMPRESS]});var dk={};He(dk,{GeminiCLIAdapter:()=>Vm});import{readFileSync as qm,writeFileSync as uk,mkdirSync as aj,accessSync as cj,chmodSync as uj,existsSync as lj,constants as dj}from"node:fs";import{resolve as Mi,join as lk}from"node:path";import{homedir as Qc}from"node:os";var Vm,pk=ne(()=>{"use strict";st();ck();Vm=class extends ge{constructor(){super([".gemini"])}name="Gemini CLI";paradigm="json-stdio";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!0,canInjectSessionContext:!0};parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:r.tool_output,isError:r.is_error,sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePreCompactInput(e){let r=e;return{sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:this.getProjectDir(r),raw:e}}formatPreToolUseResponse(e){if(e.decision==="deny")return{decision:"deny",reason:e.reason??"Blocked by context-mode hook"};if(e.decision==="modify"&&e.updatedInput)return{hookSpecificOutput:{tool_input:e.updatedInput}};if(e.decision==="context"&&e.additionalContext)return{hookSpecificOutput:{additionalContext:e.additionalContext}};if(e.decision==="ask")return{decision:"deny",reason:e.reason??"Action requires user confirmation (security policy)"}}formatPostToolUseResponse(e){if(e.updatedOutput)return{decision:"deny",reason:e.updatedOutput};if(e.additionalContext)return{hookSpecificOutput:{additionalContext:e.additionalContext}}}formatPreCompactResponse(e){return e.context??""}formatSessionStartResponse(e){return e.context??""}getSettingsPath(){return Mi(Qc(),".gemini","settings.json")}getInstructionFiles(){return["GEMINI.md"]}generateHookConfig(e){return{[Pe.BEFORE_AGENT]:[{matcher:"",hooks:[{type:"command",command:Yn(Pe.BEFORE_AGENT,e)}]}],[Pe.BEFORE_TOOL]:[{matcher:`run_shell_command|read_file|read_many_files|grep_search|search_file_content|web_fetch|activate_skill|mcp__plugin_context-mode|mcp__context-mode|${ak}`,hooks:[{type:"command",command:Yn(Pe.BEFORE_TOOL,e)}]}],[Pe.AFTER_TOOL]:[{matcher:"",hooks:[{type:"command",command:Yn(Pe.AFTER_TOOL,e)}]}],[Pe.PRE_COMPRESS]:[{matcher:"",hooks:[{type:"command",command:Yn(Pe.PRE_COMPRESS,e)}]}],[Pe.SESSION_START]:[{matcher:"",hooks:[{type:"command",command:Yn(Pe.SESSION_START,e)}]}]}}readSettings(){try{let e=qm(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){let r=Mi(Qc(),".gemini");aj(r,{recursive:!0}),uk(this.getSettingsPath(),JSON.stringify(e,null,2)+`
|
|
135
|
+
`,"utf-8")}validateHooks(e){let r=[],n=this.readSettings();if(!n)return r.push({check:"BeforeTool hook",status:"fail",message:"Could not read ~/.gemini/settings.json",fix:"context-mode upgrade"}),r;let o=n.hooks,s=o?.[Pe.BEFORE_TOOL];if(s&&s.length>0){let a=s.some(c=>c.hooks?.some(u=>u.command?.includes("context-mode")));r.push({check:"BeforeTool hook",status:a?"pass":"fail",message:a?"BeforeTool hook configured":"BeforeTool exists but does not point to context-mode",fix:a?void 0:"context-mode upgrade"})}else r.push({check:"BeforeTool hook",status:"fail",message:"No BeforeTool hooks found",fix:"context-mode upgrade"});let i=o?.[Pe.SESSION_START];if(i&&i.length>0){let a=i.some(c=>c.hooks?.some(u=>u.command?.includes("context-mode")));r.push({check:"SessionStart hook",status:a?"pass":"fail",message:a?"SessionStart hook configured":"SessionStart exists but does not point to context-mode",fix:a?void 0:"context-mode upgrade"})}else r.push({check:"SessionStart hook",status:"fail",message:"No SessionStart hooks found",fix:"context-mode upgrade"});return r}getHealthChecks(e){return Object.entries(Yc).map(([r,n])=>{let o=lk(e,"hooks","gemini-cli",n);return{name:`Hook script: ${r} (${n})`,check:()=>lj(o)?{status:"OK",detail:o}:{status:"FAIL",detail:`not found at ${o}`}}})}checkPluginRegistration(){let e=this.readSettings();if(!e)return{check:"Plugin registration",status:"warn",message:"Could not read ~/.gemini/settings.json"};let r=e.extensions;return r&&(Array.isArray(r)?r.some(o=>typeof o=="string"&&o.includes("context-mode")):Object.keys(r).some(o=>o.includes("context-mode")))?{check:"Plugin registration",status:"pass",message:"context-mode found in extensions"}:{check:"Plugin registration",status:"warn",message:"context-mode not found in extensions (might be using standalone MCP mode)"}}getInstalledVersion(){try{let e=Mi(Qc(),".gemini","extensions","context-mode","package.json"),r=JSON.parse(qm(e,"utf-8"));if(typeof r.version=="string")return r.version}catch{}return"not installed"}configureAllHooks(e){let r=this.readSettings()??{},n=r.hooks??{},o=[],s=[{name:Pe.BEFORE_AGENT},{name:Pe.BEFORE_TOOL},{name:Pe.SESSION_START}];for(let i of s){let c={matcher:"",hooks:[{type:"command",command:Yn(i.name,e)}]},u=n[i.name];if(u&&Array.isArray(u)){let l=u.findIndex(d=>d.hooks?.some(h=>h.command?.includes("context-mode")));l>=0?(u[l]=c,o.push(`Updated existing ${i.name} hook entry`)):(u.push(c),o.push(`Added ${i.name} hook entry`)),n[i.name]=u}else n[i.name]=[c],o.push(`Created ${i.name} hooks section`)}return r.hooks=n,this.writeSettings(r),o}setHookPermissions(e){let r=[],n=lk(e,"hooks","gemini-cli");for(let o of Object.values(Yc)){let s=Mi(n,o);try{cj(s,dj.R_OK),uj(s,493),r.push(s)}catch{}}return r}updatePluginRegistry(e,r){try{let n=Mi(Qc(),".gemini","extensions","context-mode","package.json"),o=JSON.parse(qm(n,"utf-8"));o.version=r,o.installPath=e,o.lastUpdated=new Date().toISOString(),uk(n,JSON.stringify(o,null,2)+`
|
|
136
|
+
`,"utf-8")}catch{}}getProjectDir(e){return e.cwd??process.env.GEMINI_PROJECT_DIR??process.env.CLAUDE_PROJECT_DIR??process.cwd()}extractSessionId(e){return e.session_id?e.session_id:`pid-${process.ppid}`}}});var Qn,J4,X4,fk=ne(()=>{"use strict";Qn={BEFORE:"tool.execute.before",AFTER:"tool.execute.after",COMPACTING:"experimental.session.compacting"},J4=[Qn.BEFORE,Qn.AFTER],X4=[Qn.COMPACTING]});var hk={};He(hk,{OpenCodeAdapter:()=>Wm});import{readFileSync as mk,writeFileSync as fj,mkdirSync as mj,copyFileSync as hj,accessSync as gj,constants as yj}from"node:fs";import{resolve as Ft,join as Mr}from"node:path";import{homedir as pn}from"node:os";function pj(t){return t.replace(/\/\/.*$/gm,"").replace(/\/\*[\s\S]*?\*\//g,"").replace(/,(\s*[}\]])/g,"$1")}var Wm,gk=ne(()=>{"use strict";st();fk();Wm=class extends ge{get name(){return this.platform==="kilo"?"KiloCode":"OpenCode"}paradigm="ts-plugin";settingsPath;capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!0,canInjectSessionContext:!0};platform;constructor(e="opencode"){super([".config",e]),this.platform=e}parsePreToolUseInput(e){let r=e;return{toolName:r.tool??"",toolInput:r.args??{},sessionId:this.extractSessionId(r),projectDir:process.env.OPENCODE_PROJECT_DIR||process.cwd(),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool??"",toolInput:r.args??{},toolOutput:r.output,isError:void 0,sessionId:this.extractSessionId(r),projectDir:process.env.OPENCODE_PROJECT_DIR||process.cwd(),raw:e}}parsePreCompactInput(e){let r=e;return{sessionId:this.extractSessionId(r),projectDir:process.env.OPENCODE_PROJECT_DIR||process.cwd(),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:process.env.OPENCODE_PROJECT_DIR||process.cwd(),raw:e}}formatPreToolUseResponse(e){if(e.decision==="deny")throw new Error(e.reason??"Blocked by context-mode hook");if(e.decision==="modify"&&e.updatedInput)return{args:e.updatedInput};if(e.decision==="ask")throw new Error(e.reason??"Action requires user confirmation (security policy)")}formatPostToolUseResponse(e){let r={};return e.updatedOutput&&(r.output=e.updatedOutput),e.additionalContext&&(r.additionalContext=e.additionalContext),Object.keys(r).length>0?r:void 0}formatPreCompactResponse(e){return e.context??""}formatSessionStartResponse(e){return e.context??""}getSettingsPath(){return this.settingsPath??Ft(`${this.platform}.json`)}paths(){return this.platform==="kilo"?[Ft("kilo.json"),Ft("kilo.jsonc"),Ft(".kilo","kilo.json"),Ft(".kilo","kilo.jsonc"),Ft(".kilocode","kilo.json"),Ft(".kilocode","kilo.jsonc"),Mr(pn(),".config","kilo","kilo.json"),Mr(pn(),".config","kilo","kilo.jsonc")]:[Ft("opencode.json"),Ft("opencode.jsonc"),Ft(".opencode","opencode.json"),Ft(".opencode","opencode.jsonc"),Mr(pn(),".config","opencode","opencode.json"),Mr(pn(),".config","opencode","opencode.jsonc")]}getSessionDir(){let e=St(),r=e?Mr(e,"context-mode","sessions"):Mr(this.getConfigDir(),"context-mode","sessions");return mj(r,{recursive:!0}),r}getConfigDir(e){let r;return process.platform==="win32"?r=process.env.APPDATA||Mr(pn(),"AppData","Roaming"):r=process.env.XDG_CONFIG_HOME||Mr(pn(),".config"),Mr(r,this.platform)}getInstructionFiles(){return["AGENTS.md"]}generateHookConfig(e){return{[Qn.BEFORE]:[{matcher:"",hooks:[{type:"plugin",command:"context-mode"}]}],[Qn.AFTER]:[{matcher:"",hooks:[{type:"plugin",command:"context-mode"}]}],[Qn.COMPACTING]:[{matcher:"",hooks:[{type:"plugin",command:"context-mode"}]}]}}readSettings(){this.settingsPath=void 0;let e=this.paths(),r=new Set(e.filter(s=>s.includes(pn()))),n=null,o;for(let s of e)try{let i=mk(s,"utf-8"),a=s.endsWith(".jsonc")?pj(i):i,c=JSON.parse(a);n||(n=c,o=s);let u=r.has(s);if(this.hasContextModePlugin(c)||u)return this.settingsPath=s,c}catch{continue}return n?(this.settingsPath=o,n):null}writeSettings(e){fj(this.getSettingsPath(),JSON.stringify(e,null,2)+`
|
|
137
|
+
`,"utf-8")}validateHooks(e){let r=[],n=this.readSettings();if(!n)return r.push({check:"Plugin configuration",status:"fail",message:`Could not read ${this.platform}.json or ${this.platform}.jsonc`,fix:"context-mode upgrade"}),r;let o=this.hasContextModePlugin(n);return Array.isArray(n.plugin)?r.push({check:"Plugin registration",status:o?"pass":"fail",message:o?"context-mode found in plugin array":"context-mode not found in plugin array",fix:o?void 0:"context-mode upgrade"}):r.push({check:"Plugin registration",status:"fail",message:`No plugin array found in ${this.platform}.json or ${this.platform}.jsonc`,fix:"context-mode upgrade"}),this.hasLegacyContextModeMcp(n)&&r.push({check:"Legacy MCP registration",status:"warn",message:"mcp.context-mode is redundant: ctx_* tools are now provided by the plugin",fix:"context-mode upgrade (removes only mcp.context-mode; preserves other MCP servers)"}),r.push({check:"SessionStart hook",status:"pass",message:"SessionStart via experimental.chat.system.transform surrogate (native hook pending #14808, #5409)"}),r}checkPluginRegistration(){let e=this.readSettings();return e?this.hasContextModePlugin(e)?{check:"Plugin registration",status:"pass",message:"context-mode found in plugin array"}:{check:"Plugin registration",status:"fail",message:`context-mode not found in ${this.platform}.json plugin array`,fix:"context-mode upgrade"}:{check:"Plugin registration",status:"warn",message:`Could not read ${this.platform}.json or ${this.platform}.jsonc`}}getInstalledVersion(){try{let e=Ft(pn(),".cache",this.platform,"node_modules","context-mode","package.json"),r=JSON.parse(mk(e,"utf-8"));if(typeof r.version=="string")return r.version}catch{}return"not installed"}configureAllHooks(e){let r=this.readSettings()??{},n=[],o=r.plugin??[];o.some(i=>i.includes("context-mode"))?n.push("context-mode already in plugin array"):(o.push("context-mode"),n.push("Added context-mode to plugin array")),r.plugin=o;let s=r.mcp;if(s&&typeof s=="object"&&!Array.isArray(s)){let i=s;Object.prototype.hasOwnProperty.call(i,"context-mode")&&(delete i["context-mode"],n.push("Removed legacy context-mode MCP block (plugin-native tools)")),Object.keys(i).length===0&&delete r.mcp}return this.writeSettings(r),n}backupSettings(){let e=this.checkPluginRegistration();if(!this.settingsPath)return null;if(e.status==="pass")return this.settingsPath;try{gj(this.settingsPath,yj.R_OK);let r=this.settingsPath+".bak";return hj(this.settingsPath,r),r}catch{return null}}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}hasContextModePlugin(e){let r=e.plugin;return Array.isArray(r)&&r.some(n=>typeof n=="string"&&n.includes("context-mode"))}hasLegacyContextModeMcp(e){let r=e.mcp;return!!(r&&typeof r=="object"&&!Array.isArray(r)&&Object.prototype.hasOwnProperty.call(r,"context-mode"))}extractSessionId(e){return e.sessionID?e.sessionID:`pid-${process.ppid}`}}});var eo,o9,s9,yk=ne(()=>{"use strict";eo={TOOL_CALL_BEFORE:"tool_call:before",TOOL_CALL_AFTER:"tool_call:after",COMMAND_NEW:"command:new",COMMAND_RESET:"command:reset",COMMAND_STOP:"command:stop"},o9=[eo.TOOL_CALL_BEFORE,eo.TOOL_CALL_AFTER],s9=[eo.COMMAND_NEW]});var _k={};He(_k,{OpenClawAdapter:()=>Xm});import{readFileSync as Km,writeFileSync as _j,copyFileSync as xj,accessSync as Sj,constants as vj}from"node:fs";import{resolve as jr,join as Gm}from"node:path";import{homedir as Jm}from"node:os";var Xm,xk=ne(()=>{"use strict";st();yk();Xm=class extends ge{constructor(){super([".openclaw"])}name="OpenClaw";paradigm="ts-plugin";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!1,canInjectSessionContext:!0};parsePreToolUseInput(e){let r=e;return{toolName:r.toolName??r.tool_name??"",toolInput:r.params??r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.toolName??r.tool_name??"",toolInput:r.params??r.tool_input??{},toolOutput:r.output??r.tool_output,isError:r.isError??r.is_error,sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePreCompactInput(e){let r=e;return{sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:this.getProjectDir(r),raw:e}}formatPreToolUseResponse(e){if(e.decision==="deny")return{block:!0,blockReason:e.reason??"Blocked by context-mode hook"};if(e.decision==="modify"&&e.updatedInput)return{params:e.updatedInput};if(e.decision==="ask")return{block:!0,blockReason:e.reason??"Action requires user confirmation (security policy)"};e.decision==="context"&&e.additionalContext}formatPostToolUseResponse(e){let r={};return e.additionalContext&&(r.additionalContext=e.additionalContext),Object.keys(r).length>0?r:void 0}formatPreCompactResponse(e){return e.context??""}formatSessionStartResponse(e){return e.context??""}getSettingsPath(){return jr("openclaw.json")}getConfigDir(e){return jr(e??process.cwd())}getInstructionFiles(){return["AGENTS.md"]}getMemoryDir(e){return Gm(this.getConfigDir(e),"memory")}generateHookConfig(e){return{[eo.TOOL_CALL_BEFORE]:[{matcher:"",hooks:[{type:"plugin",command:"context-mode"}]}],[eo.TOOL_CALL_AFTER]:[{matcher:"",hooks:[{type:"plugin",command:"context-mode"}]}],[eo.COMMAND_NEW]:[{matcher:"",hooks:[{type:"plugin",command:"context-mode"}]}]}}readSettings(){let e=[jr("openclaw.json"),jr(".openclaw","openclaw.json"),Gm(Jm(),".openclaw","openclaw.json")];for(let r of e)try{let n=Km(r,"utf-8");return JSON.parse(n)}catch{continue}return null}writeSettings(e){let r=jr("openclaw.json");_j(r,JSON.stringify(e,null,2)+`
|
|
138
|
+
`,"utf-8")}validateHooks(e){let r=[],n=this.readSettings();if(!n)return r.push({check:"Plugin configuration",status:"fail",message:"Could not read openclaw.json",fix:"context-mode upgrade"}),r;let o=n.plugins,s=o?.entries;if(s){let a=Object.keys(s).some(c=>c.includes("context-mode"));if(r.push({check:"Plugin registration",status:a?"pass":"fail",message:a?"context-mode found in plugins.entries":"context-mode not found in plugins.entries",fix:a?void 0:"context-mode upgrade"}),a){let u=s["context-mode"]?.enabled!==!1;r.push({check:"Plugin enabled",status:u?"pass":"warn",message:u?"context-mode plugin is enabled":"context-mode plugin is disabled"})}}else r.push({check:"Plugin registration",status:"fail",message:"No plugins.entries found in openclaw.json",fix:"context-mode upgrade"});return o?.slots?.contextEngine==="context-mode"?r.push({check:"Context engine",status:"pass",message:"context-mode registered as context engine (owns compaction)"}):r.push({check:"Context engine",status:"warn",message:"context-mode not set as context engine \u2014 compaction will use default engine"}),r}checkPluginRegistration(){let e=this.readSettings();if(!e)return{check:"Plugin registration",status:"warn",message:"Could not read openclaw.json"};let n=e.plugins?.entries;return n&&Object.keys(n).some(s=>s.includes("context-mode"))?{check:"Plugin registration",status:"pass",message:"context-mode found in plugins.entries"}:{check:"Plugin registration",status:"fail",message:"context-mode not found in openclaw.json plugins.entries",fix:"context-mode upgrade"}}getInstalledVersion(){try{let e=jr(Jm(),".openclaw","extensions","context-mode","package.json"),r=JSON.parse(Km(e,"utf-8"));if(typeof r.version=="string")return r.version}catch{}try{let e=jr("node_modules","context-mode","package.json"),r=JSON.parse(Km(e,"utf-8"));if(typeof r.version=="string")return r.version}catch{}return"not installed"}configureAllHooks(e){let r=this.readSettings()??{},n=[];r.plugins||(r.plugins={});let o=r.plugins;o.entries||(o.entries={});let s=o.entries;if(!s["context-mode"])s["context-mode"]={enabled:!0},n.push("Added context-mode to plugins.entries");else{let a=s["context-mode"];a.enabled===!1?(a.enabled=!0,n.push("Enabled context-mode plugin")):n.push("context-mode already configured in plugins.entries")}o.slots||(o.slots={});let i=o.slots;return i.contextEngine?i.contextEngine!=="context-mode"&&n.push(`Context engine already set to "${i.contextEngine}" \u2014 not overwriting`):(i.contextEngine="context-mode",n.push("Set context-mode as context engine (owns compaction)")),this.writeSettings(r),n}backupSettings(){let e=[jr("openclaw.json"),jr(".openclaw","openclaw.json"),Gm(Jm(),".openclaw","openclaw.json")];for(let r of e)try{Sj(r,vj.R_OK);let n=r+".bak";return xj(r,n),n}catch{continue}return null}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getProjectDir(e){return e.cwd??process.env.OPENCLAW_PROJECT_DIR??process.cwd()}extractSessionId(e){return e.sessionId?e.sessionId:`pid-${process.ppid}`}}});import{homedir as Sk}from"node:os";import{resolve as Ym}from"node:path";function vk(){let t=process.env.CODEX_HOME;return t?t.startsWith("~")?Ym(Sk(),t.replace(/^~[/\\]?/,"")):Ym(t):Ym(Sk(),".codex")}var bk=ne(()=>{"use strict"});var Pk={};He(Pk,{CodexAdapter:()=>th,probeCodexCliVersion:()=>Ek});import{execFileSync as bj}from"node:child_process";import{readFileSync as ss,writeFileSync as kk,accessSync as kj,copyFileSync as Ej,constants as wj,mkdirSync as Qm}from"node:fs";import{resolve as Tj,dirname as eh,join as to}from"node:path";import{fileURLToPath as Pj}from"node:url";function Ek(t=bj){try{let e=process.platform==="win32"?t("cmd.exe",["/d","/s","/c","codex --version"],{encoding:"utf-8",stdio:["ignore","pipe","ignore"],timeout:5e3}):t("codex",["--version"],{encoding:"utf-8",stdio:["ignore","pipe","ignore"],timeout:1500}),r=String(e).trim();return r.length>0?r:"available (version output empty)"}catch{return null}}function wk(t,e){let r=t.split(/\r?\n/),n=!1,o=[];for(let s of r){let i=s.match(/^\s*\[([^\]]+)\]\s*(?:#.*)?$/);if(i){if(n)break;n=i[1]?.trim()===e;continue}n&&o.push(s)}return n?o.join(`
|
|
139
|
+
`):null}function Tk(t){let e=wk(t,"features");return e!==null&&/^\s*hooks\s*=\s*true\s*(?:#.*)?$/mi.test(e)}function Cj(t){let e=wk(t,"features");return e!==null&&/^\s*codex_hooks\s*=\s*true\s*(?:#.*)?$/mi.test(e)}function Oj(t){if(Tk(t))return{text:t,changed:!1};let e=t.includes(`\r
|
|
137
140
|
`)?`\r
|
|
138
141
|
`:`
|
|
139
142
|
`,r=t.split(/\r?\n/),n=r.findIndex(s=>/^\s*\[features\]\s*(?:#.*)?$/.test(s));if(n===-1){let s=t.length>0&&!t.endsWith(`
|
|
140
|
-
`)?e:"";return{text:`${t}${s}[features]${e}hooks = true${e}`,changed:!0}}let o=r.length;for(let s=n+1;s<r.length;s++)if(/^\s*\[[^\]]+\]\s*(?:#.*)?$/.test(r[s]??"")){o=s;break}for(let s=n+1;s<o;s++)if(/^\s*hooks\s*=/.test(r[s]??""))return r[s]="hooks = true",{text:r.join(e),changed:!0};return r.splice(n+1,0,"hooks = true"),{text:r.join(e),changed:!0}}var
|
|
143
|
+
`)?e:"";return{text:`${t}${s}[features]${e}hooks = true${e}`,changed:!0}}let o=r.length;for(let s=n+1;s<r.length;s++)if(/^\s*\[[^\]]+\]\s*(?:#.*)?$/.test(r[s]??"")){o=s;break}for(let s=n+1;s<o;s++)if(/^\s*hooks\s*=/.test(r[s]??""))return r[s]="hooks = true",{text:r.join(e),changed:!0};return r.splice(n+1,0,"hooks = true"),{text:r.join(e),changed:!0}}var Rj,ro,$j,th,Rk=ne(()=>{"use strict";st();Sr();bk();Rj="local_shell|shell|shell_command|exec_command|Bash|Shell|apply_patch|Edit|Write|grep_files|ctx_execute|ctx_execute_file|ctx_batch_execute|ctx_fetch_and_index|ctx_search|ctx_index|mcp__",ro={PreToolUse:"context-mode hook codex pretooluse",PostToolUse:"context-mode hook codex posttooluse",SessionStart:"context-mode hook codex sessionstart",PreCompact:"context-mode hook codex precompact",UserPromptSubmit:"context-mode hook codex userpromptsubmit",Stop:"context-mode hook codex stop"},$j={PreToolUse:["hooks/pretooluse.mjs","hooks/codex/pretooluse.mjs"],PostToolUse:["hooks/posttooluse.mjs","hooks/codex/posttooluse.mjs"],SessionStart:["hooks/sessionstart.mjs","hooks/codex/sessionstart.mjs"],PreCompact:["hooks/precompact.mjs","hooks/codex/precompact.mjs"],UserPromptSubmit:["hooks/userpromptsubmit.mjs","hooks/codex/userpromptsubmit.mjs"],Stop:["hooks/stop.mjs","hooks/codex/stop.mjs"]};th=class extends ge{constructor(){super([".codex"])}name="Codex CLI";paradigm="json-stdio";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!1,canModifyOutput:!1,canInjectSessionContext:!0};parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:r.tool_response,sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePreCompactInput(e){let r=e;return{sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:this.getProjectDir(r),raw:e}}formatPreToolUseResponse(e){return e.decision==="deny"?{hookSpecificOutput:{hookEventName:"PreToolUse",permissionDecision:"deny",permissionDecisionReason:e.reason??"Blocked by context-mode hook"}}:e.decision==="context"&&e.additionalContext?{}:{}}formatPostToolUseResponse(e){return e.additionalContext?{hookSpecificOutput:{hookEventName:"PostToolUse",additionalContext:e.additionalContext}}:{}}formatPreCompactResponse(e){return{}}formatSessionStartResponse(e){return e.context?{hookSpecificOutput:{hookEventName:"SessionStart",additionalContext:e.context}}:{}}getConfigDir(e){return vk()}getSettingsPath(){return to(this.getConfigDir(),"config.toml")}getSessionDir(){let e=St(),r=e?to(e,"context-mode","sessions"):to(this.getConfigDir(),"context-mode","sessions");return Qm(r,{recursive:!0}),r}getInstructionFiles(){return["AGENTS.md","AGENTS.override.md"]}getMemoryDir(e){let r=St(),n=r?to(r,"context-mode","memories"):to(this.getConfigDir(),"memories");return e?to(n,Qe(e)):n}generateHookConfig(e){return{PreToolUse:[{matcher:Rj,hooks:[{type:"command",command:ro.PreToolUse}]}],PostToolUse:[{matcher:"",hooks:[{type:"command",command:ro.PostToolUse}]}],SessionStart:[{matcher:"",hooks:[{type:"command",command:ro.SessionStart}]}],PreCompact:[{matcher:"",hooks:[{type:"command",command:ro.PreCompact}]}],UserPromptSubmit:[{matcher:"",hooks:[{type:"command",command:ro.UserPromptSubmit}]}],Stop:[{matcher:"",hooks:[{type:"command",command:ro.Stop}]}]}}readSettings(){try{return{_raw_toml:ss(this.getSettingsPath(),"utf-8")}}catch{return null}}writeSettings(e){}validateHooks(e){let r=[],n=Ek();r.push({check:"Codex CLI binary",status:n?"pass":"warn",message:n?`codex --version resolved to ${n}`:"Could not run codex --version; hooks need the Codex CLI available on PATH",...n?{}:{fix:"Install Codex CLI or make codex available on PATH"}});try{let c=ss(this.getSettingsPath(),"utf-8"),u=Tk(c),l=!u&&Cj(c);r.push({check:"Codex hooks feature flag",status:u?"pass":"fail",message:u?`[features].hooks enabled in ${this.getSettingsPath()}`:l?`[features].codex_hooks is deprecated; [features].hooks is missing in ${this.getSettingsPath()}`:`[features].hooks missing from ${this.getSettingsPath()}`,...u?{}:{fix:"context-mode upgrade"}})}catch{r.push({check:"Codex hooks feature flag",status:"warn",message:`Could not read ${this.getSettingsPath()}`,fix:"context-mode upgrade"})}let o=this.readHooksConfig();if(!o.ok)return o.reason==="missing"?r.concat([{check:"Hooks config",status:"fail",message:`No readable ${this.getHooksPath()} found`,fix:"Copy configs/codex/hooks.json to hooks.json or run context-mode upgrade"}]):o.reason==="invalid_json"?r.concat([{check:"Hooks config",status:"fail",message:`${this.getHooksPath()} is not valid JSON: ${o.error}`,fix:"Repair hooks.json so it contains valid JSON, then rerun context-mode upgrade if needed"}]):r.concat([{check:"Hooks config",status:"fail",message:`Could not read ${this.getHooksPath()}: ${o.error}`,fix:"Check permissions and file accessibility for hooks.json, then rerun context-mode upgrade if needed"}]);if(!o.config.hooks)return r.concat([{check:"Hooks config",status:"fail",message:`${this.getHooksPath()} is missing the top-level hooks object`,fix:`Update ${this.getHooksPath()} to match configs/codex/hooks.json`}]);let s=this.generateHookConfig(""),i=Object.entries(s).map(([c,u])=>{let l=o.config.hooks?.[c],d=u[0],f=Array.isArray(l)&&l.some(p=>this.isExpectedHookEntry(c,p,d)),h=c==="PreCompact"?"warn":"fail";return{check:`${c} hook`,status:f?"pass":h,message:f?`${c} hook configured in ${this.getHooksPath()}`:c==="PreCompact"?`${c} hook missing or not pointing to context-mode; compaction snapshots require a Codex build that emits PreCompact`:`${c} hook missing or not pointing to context-mode`,fix:f?void 0:`Update ${this.getHooksPath()} to match configs/codex/hooks.json`}}),a=[];for(let c of Object.keys(s)){let u=o.config.hooks?.[c];if(!Array.isArray(u))continue;let l=u.filter(d=>this.isManagedContextModeEntry(c,d)).length;l>1&&a.push({check:`${c} duplicates`,status:"warn",message:`${l} context-mode entries found for ${c} in ${this.getHooksPath()}; Codex will fire all of them`,fix:"context-mode upgrade (collapses duplicate context-mode entries; preserves unrelated hooks)"})}return r.concat(i,a)}checkPluginRegistration(){try{let e=ss(this.getSettingsPath(),"utf-8"),r=e.includes("context-mode"),n=e.includes("[mcp_servers]")||e.includes("[mcp_servers.");return r&&n?{check:"MCP registration",status:"pass",message:"context-mode found in [mcp_servers] config"}:n?{check:"MCP registration",status:"fail",message:"[mcp_servers] section exists but context-mode not found",fix:`Add context-mode to [mcp_servers] in ${this.getSettingsPath()}`}:{check:"MCP registration",status:"fail",message:"No [mcp_servers] section in config.toml",fix:`Add [mcp_servers.context-mode] to ${this.getSettingsPath()}`}}catch{return{check:"MCP registration",status:"warn",message:`Could not read ${this.getSettingsPath()}`}}}getInstalledVersion(){return"standalone"}configureAllHooks(e){let r=this.readHooksConfig(),n=[],o;if(r.ok)o=r.config;else if(r.reason==="missing")o={hooks:{}};else if(r.reason==="invalid_json"){let l=this.backupFile(this.getHooksPath(),".broken");n.push(`Backed up malformed Codex hooks to ${l}`),o={hooks:{}}}else throw new Error(`Failed to update ${this.getHooksPath()}: ${r.error}`);let s=o.hooks&&typeof o.hooks=="object"&&!Array.isArray(o.hooks)?o.hooks:{},i=this.generateHookConfig(e);for(let[l,d]of Object.entries(i))this.upsertManagedHookEntry(s,l,d[0],n);n.length>0&&(o.hooks=s,this.writeHooksConfig(o),n.push(`Wrote native Codex hooks to ${this.getHooksPath()}`));let a=this.getSettingsPath(),c="";try{c=ss(a,"utf-8")}catch{c=""}let u=Oj(c);if(u.changed){let l=u.text.includes(`\r
|
|
141
144
|
`)?`\r
|
|
142
145
|
`:`
|
|
143
146
|
`,d=u.text.endsWith(`
|
|
144
|
-
`)?u.text:`${u.text}${l}`;
|
|
147
|
+
`)?u.text:`${u.text}${l}`;Qm(eh(a),{recursive:!0}),kk(a,d,"utf-8"),n.push("Enabled Codex hooks feature flag")}return n}backupSettings(){let e=null;for(let r of[this.getHooksPath(),this.getSettingsPath()])try{kj(r,wj.R_OK);let n=this.backupFile(r);e??=n}catch{continue}return e}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getRoutingInstructions(){let e=Tj(eh(Pj(import.meta.url)),"..","..","..","configs","codex","AGENTS.md");try{return ss(e,"utf-8")}catch{return`# context-mode
|
|
148
|
+
|
|
149
|
+
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of bash/cat/curl for data-heavy operations.`}}getProjectDir(e){return e.cwd??process.env.CODEX_PROJECT_DIR??process.cwd()}getHooksPath(){return to(this.getConfigDir(),"hooks.json")}backupFile(e,r=""){let n=r?`${e}${r}-${new Date().toISOString().replace(/[:.]/g,"-")}.bak`:`${e}.bak`;return Ej(e,n),n}readHooksConfig(){let e=this.getHooksPath();try{return{ok:!0,config:JSON.parse(ss(e,"utf-8"))}}catch(r){let n=r instanceof Error?r.message:String(r);return(typeof r=="object"&&r!==null&&"code"in r?String(r.code??""):"")==="ENOENT"?{ok:!1,reason:"missing"}:r instanceof SyntaxError?{ok:!1,reason:"invalid_json",error:n}:{ok:!1,reason:"read_error",error:n}}}writeHooksConfig(e){let r=this.getHooksPath();Qm(eh(r),{recursive:!0}),kk(r,JSON.stringify(e,null,2)+`
|
|
150
|
+
`,"utf-8")}upsertManagedHookEntry(e,r,n,o){let s=Array.isArray(e[r])?[...e[r]]:[],i=s.map((c,u)=>this.isManagedContextModeEntry(r,c)?u:-1).filter(c=>c>=0);if(i.length===0){s.push(n),e[r]=s,o.push(`Added ${r} hook`);return}let a=i[0];JSON.stringify(s[a])!==JSON.stringify(n)&&(s[a]=n,o.push(`Updated ${r} hook`));for(let c of i.slice(1).reverse())s.splice(c,1),o.push(`Removed duplicate ${r} context-mode hook`);e[r]=s}isExpectedHookEntry(e,r,n){return!r||typeof r!="object"||e==="PreToolUse"&&r.matcher!==n.matcher?!1:this.entryContainsManagedCommand(e,r)}isManagedContextModeEntry(e,r){return!r||typeof r!="object"?!1:this.entryContainsManagedCommand(e,r)}entryContainsManagedCommand(e,r){let n=(Array.isArray(r.hooks)?r.hooks:[]).map(i=>this.normalizeCommand(i.command)).filter(i=>i.length>0),o=this.normalizeCommand(ro[e]??""),s=$j[e]??[];return n.some(i=>i.includes(o)||s.some(a=>i.includes(a)))}normalizeCommand(e){return(e??"").replace(/\\/g,"/")}extractSessionId(e){return e.session_id?e.session_id:`pid-${process.ppid}`}}});import{readFileSync as $k,writeFileSync as Ij,mkdirSync as Aj,accessSync as Nj,chmodSync as Dj,constants as Mj}from"node:fs";import{resolve as eu,join as jj}from"node:path";var is,rh=ne(()=>{"use strict";st();is=class extends ge{paradigm="json-stdio";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!0,canInjectSessionContext:!0};parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:r.tool_output,isError:r.is_error,sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(),raw:e}}parsePreCompactInput(e){let r=e;return{sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:this.getProjectDir(),raw:e}}formatPreToolUseResponse(e){if(e.decision==="deny")return{permissionDecision:"deny",reason:e.reason??"Blocked by context-mode hook"};if(e.decision==="modify"&&e.updatedInput)return{hookSpecificOutput:{hookEventName:this.hookModule.HOOK_TYPES.PRE_TOOL_USE,updatedInput:e.updatedInput}};if(e.decision==="context"&&e.additionalContext)return{hookSpecificOutput:{hookEventName:this.hookModule.HOOK_TYPES.PRE_TOOL_USE,additionalContext:e.additionalContext}};if(e.decision==="ask")return{permissionDecision:"deny",reason:e.reason??"Action requires user confirmation (security policy)"}}formatPostToolUseResponse(e){if(e.updatedOutput)return{hookSpecificOutput:{hookEventName:this.hookModule.HOOK_TYPES.POST_TOOL_USE,decision:"block",reason:e.updatedOutput}};if(e.additionalContext)return{hookSpecificOutput:{hookEventName:this.hookModule.HOOK_TYPES.POST_TOOL_USE,additionalContext:e.additionalContext}}}formatPreCompactResponse(e){return e.context??""}formatSessionStartResponse(e){return e.context??""}getSettingsPath(e){return eu(e??process.cwd(),".github","hooks","context-mode.json")}generateHookConfig(e){let{HOOK_TYPES:r,buildHookCommand:n}=this.hookModule;return{[r.PRE_TOOL_USE]:[{matcher:"",hooks:[{type:"command",command:n(r.PRE_TOOL_USE,e)}]}],[r.POST_TOOL_USE]:[{matcher:"",hooks:[{type:"command",command:n(r.POST_TOOL_USE,e)}]}],[r.PRE_COMPACT]:[{matcher:"",hooks:[{type:"command",command:n(r.PRE_COMPACT,e)}]}],[r.SESSION_START]:[{matcher:"",hooks:[{type:"command",command:n(r.SESSION_START,e)}]}]}}readSettings(){try{let e=$k(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{}try{let e=$k(eu(".claude","settings.json"),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){let r=this.getSettingsPath();Aj(eu(".github","hooks"),{recursive:!0}),Ij(r,JSON.stringify(e,null,2)+`
|
|
151
|
+
`,"utf-8")}configureAllHooks(e){let r=[],n=this.readSettings()??{},o=n.hooks??{},{HOOK_TYPES:s,HOOK_SCRIPTS:i,buildHookCommand:a}=this.hookModule,c=[s.PRE_TOOL_USE,s.POST_TOOL_USE,s.PRE_COMPACT,s.SESSION_START];for(let u of c)i[u]&&(o[u]=[{matcher:"",hooks:[{type:"command",command:a(u,e)}]}],r.push(`Configured ${u} hook`));return n.hooks=o,this.writeSettings(n),r.push(`Wrote hook config to ${this.getSettingsPath()}`),r}setHookPermissions(e){let r=[],n=jj(e,"hooks",this.hookSubdir);for(let o of Object.values(this.hookModule.HOOK_SCRIPTS)){let s=eu(n,o);try{Nj(s,Mj.R_OK),Dj(s,493),r.push(s)}catch{}}return r}updatePluginRegistry(e,r){}}});function Ck(t,e){if(!nh[t])throw new Error(`No script defined for hook type: ${t}`);return`context-mode hook vscode-copilot ${t.toLowerCase()}`}var Zt,nh,T9,P9,Ok=ne(()=>{"use strict";Zt={PRE_TOOL_USE:"PreToolUse",POST_TOOL_USE:"PostToolUse",PRE_COMPACT:"PreCompact",SESSION_START:"SessionStart"},nh={[Zt.PRE_TOOL_USE]:"pretooluse.mjs",[Zt.POST_TOOL_USE]:"posttooluse.mjs",[Zt.PRE_COMPACT]:"precompact.mjs",[Zt.SESSION_START]:"sessionstart.mjs"},T9=[Zt.PRE_TOOL_USE,Zt.SESSION_START],P9=[Zt.POST_TOOL_USE,Zt.PRE_COMPACT]});var Ak={};He(Ak,{VSCodeCopilotAdapter:()=>ih});import{readFileSync as oh,mkdirSync as Ik,accessSync as zj,existsSync as Lj,constants as Hj}from"node:fs";import{resolve as as,join as ji}from"node:path";import{homedir as sh}from"node:os";var ih,Nk=ne(()=>{"use strict";rh();st();Ok();ih=class extends is{constructor(){super([".vscode"])}name="VS Code Copilot";hookModule={HOOK_TYPES:Zt,HOOK_SCRIPTS:nh,buildHookCommand:Ck};hookSubdir="vscode-copilot";extractSessionId(e){return e.sessionId?e.sessionId:process.env.VSCODE_PID?`vscode-${process.env.VSCODE_PID}`:`pid-${process.ppid}`}getProjectDir(){return process.env.CLAUDE_PROJECT_DIR||process.env.VSCODE_CWD||process.cwd()}getSessionDir(){let e=St();if(e){let s=ji(e,"context-mode","sessions");return Ik(s,{recursive:!0}),s}let r=as(".github","context-mode","sessions"),n=ji(sh(),".vscode","context-mode","sessions"),o=Lj(as(".github"))?r:n;return Ik(o,{recursive:!0}),o}getConfigDir(e){return as(e??process.cwd(),".github")}getInstructionFiles(){return["copilot-instructions.md"]}validateHooks(e){let r=[],n=as(".github","hooks");try{zj(n,Hj.R_OK)}catch{return r.push({check:"Hooks directory",status:"fail",message:".github/hooks/ directory not found",fix:"context-mode upgrade"}),r}let o=as(n,"context-mode.json");try{let s=oh(o,"utf-8"),a=JSON.parse(s).hooks;a?.[Zt.PRE_TOOL_USE]?r.push({check:"PreToolUse hook",status:"pass",message:"PreToolUse hook configured in context-mode.json"}):r.push({check:"PreToolUse hook",status:"fail",message:"PreToolUse not found in context-mode.json",fix:"context-mode upgrade"}),a?.[Zt.SESSION_START]?r.push({check:"SessionStart hook",status:"pass",message:"SessionStart hook configured in context-mode.json"}):r.push({check:"SessionStart hook",status:"fail",message:"SessionStart not found in context-mode.json",fix:"context-mode upgrade"})}catch{r.push({check:"Hook configuration",status:"fail",message:"Could not read .github/hooks/context-mode.json",fix:"context-mode upgrade"})}return r.push({check:"API stability",status:"warn",message:"VS Code Copilot hooks are in preview \u2014 API may change without notice"}),r.push({check:"Matcher support",status:"warn",message:"Matchers are parsed but IGNORED \u2014 all hooks fire on all tools"}),r}checkPluginRegistration(){try{let e=as(".vscode","mcp.json"),r=oh(e,"utf-8"),o=JSON.parse(r).servers;return o&&Object.keys(o).some(i=>i.includes("context-mode"))?{check:"MCP registration",status:"pass",message:"context-mode found in .vscode/mcp.json"}:{check:"MCP registration",status:"fail",message:"context-mode not found in .vscode/mcp.json",fix:"Add context-mode server to .vscode/mcp.json"}}catch{return{check:"MCP registration",status:"warn",message:"Could not read .vscode/mcp.json"}}}getInstalledVersion(){let e=[ji(sh(),".vscode","extensions"),ji(sh(),".vscode-insiders","extensions")];for(let r of e)try{let n=oh(ji(r,"extensions.json"),"utf-8"),s=JSON.parse(n).find(i=>typeof i.identifier=="object"&&i.identifier!==null&&i.identifier.id?.toString().includes("context-mode"));if(s&&typeof s.version=="string")return s.version}catch{continue}return"not installed"}}});function Dk(t,e){if(!ah[t])throw new Error(`No script defined for hook type: ${t}`);return`context-mode hook jetbrains-copilot ${t.toLowerCase()}`}var Bt,ah,D9,M9,Mk=ne(()=>{"use strict";Bt={PRE_TOOL_USE:"PreToolUse",POST_TOOL_USE:"PostToolUse",PRE_COMPACT:"PreCompact",SESSION_START:"SessionStart",STOP:"Stop",SUBAGENT_START:"SubagentStart",SUBAGENT_STOP:"SubagentStop"},ah={[Bt.PRE_TOOL_USE]:"pretooluse.mjs",[Bt.POST_TOOL_USE]:"posttooluse.mjs",[Bt.PRE_COMPACT]:"precompact.mjs",[Bt.SESSION_START]:"sessionstart.mjs"},D9=[Bt.PRE_TOOL_USE,Bt.SESSION_START],M9=[Bt.POST_TOOL_USE,Bt.PRE_COMPACT]});var jk={};He(jk,{JetBrainsCopilotAdapter:()=>ch});import{readFileSync as Uj}from"node:fs";import{resolve as Fj}from"node:path";var ch,zk=ne(()=>{"use strict";rh();Mk();ch=class extends is{constructor(){super([".config","JetBrains"])}name="JetBrains Copilot";hookModule={HOOK_TYPES:Bt,HOOK_SCRIPTS:ah,buildHookCommand:Dk};hookSubdir="jetbrains-copilot";extractSessionId(e){return e.sessionId?e.sessionId:process.env.JETBRAINS_CLIENT_ID?`jetbrains-${process.env.JETBRAINS_CLIENT_ID}`:process.env.IDEA_HOME?`idea-${process.pid}`:`pid-${process.ppid}`}getProjectDir(){return process.env.IDEA_INITIAL_DIRECTORY||process.env.CLAUDE_PROJECT_DIR||process.cwd()}getConfigDir(e){return Fj(e??this.getProjectDir(),".github")}getInstructionFiles(){return["copilot-instructions.md"]}validateHooks(e){let r=[];try{let n=Uj(this.getSettingsPath(),"utf-8"),s=JSON.parse(n).hooks;s?.[Bt.PRE_TOOL_USE]?r.push({check:"PreToolUse hook",status:"pass",message:"PreToolUse hook configured in .github/hooks/context-mode.json"}):r.push({check:"PreToolUse hook",status:"fail",message:"PreToolUse not found in .github/hooks/context-mode.json",fix:"context-mode upgrade"}),s?.[Bt.SESSION_START]?r.push({check:"SessionStart hook",status:"pass",message:"SessionStart hook configured in .github/hooks/context-mode.json"}):r.push({check:"SessionStart hook",status:"fail",message:"SessionStart not found in .github/hooks/context-mode.json",fix:"context-mode upgrade"})}catch{r.push({check:"Hook configuration",status:"fail",message:"Could not read .github/hooks/context-mode.json",fix:"context-mode upgrade"})}return r.push({check:"Hook scripts",status:"warn",message:`JetBrains hook wrappers should resolve to ${e}/hooks/jetbrains-copilot/*.mjs`}),r}checkPluginRegistration(){return{check:"MCP registration",status:"warn",message:"JetBrains stores MCP config via Settings UI \u2014 not CLI-inspectable",fix:"Verify in IDE: Settings > Tools > GitHub Copilot > MCP > ensure a context-mode server entry exists"}}getInstalledVersion(){let r=this.readSettings()?.hooks;return r&&Object.keys(r).length>0?"configured":"unknown"}}});function zi(t,e){let r=uh[e],n=qt(e);if("command"in t){let s=t.command??"";return r!=null&&s.includes(r)||s.includes(n)}return t.hooks?.some(s=>{let i=s.command??"";return r!=null&&i.includes(r)||i.includes(n)})??!1}function qt(t){return`context-mode hook cursor ${t.toLowerCase()}`}var ye,uh,Zj,Bj,lh,Lk,Hk,Uk=ne(()=>{"use strict";ye={PRE_TOOL_USE:"preToolUse",POST_TOOL_USE:"postToolUse",SESSION_START:"sessionStart",STOP:"stop",AFTER_AGENT_RESPONSE:"afterAgentResponse"},uh={[ye.PRE_TOOL_USE]:"pretooluse.mjs",[ye.POST_TOOL_USE]:"posttooluse.mjs",[ye.SESSION_START]:"sessionstart.mjs",[ye.STOP]:"stop.mjs",[ye.AFTER_AGENT_RESPONSE]:"afteragentresponse.mjs"},Zj="MCP:(?!ctx_)",Bj=["Shell","Read","Grep","WebFetch","mcp_web_fetch","mcp_fetch_tool","Task","MCP:ctx_execute","MCP:ctx_execute_file","MCP:ctx_batch_execute",Zj],lh=Bj.join("|"),Lk=[ye.PRE_TOOL_USE],Hk=[ye.POST_TOOL_USE]});var Vk={};He(Vk,{CursorAdapter:()=>dh});import{readFileSync as tu,writeFileSync as qj,mkdirSync as Vj,accessSync as Fk,chmodSync as Wj,constants as Zk,existsSync as Bk,readdirSync as Kj}from"node:fs";import{execSync as Gj}from"node:child_process";import{resolve as no,join as oo}from"node:path";import{homedir as ru}from"node:os";var qk,dh,Wk=ne(()=>{"use strict";st();Xn();Uk();qk="/Library/Application Support/Cursor/hooks.json",dh=class extends ge{constructor(){super([".cursor"])}name="Cursor";paradigm="json-stdio";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!1,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!1,canInjectSessionContext:!0};parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:r.tool_output??r.error_message,isError:!!r.error_message,sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??r.trigger??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:this.getProjectDir(r),raw:e}}formatPreToolUseResponse(e){return e.decision==="deny"?{permission:"deny",user_message:e.reason??"Blocked by context-mode hook"}:e.decision==="modify"&&e.updatedInput?{updated_input:e.updatedInput}:e.decision==="context"&&e.additionalContext?{agent_message:e.additionalContext}:e.decision==="ask"?{permission:"ask",user_message:e.reason??"Action requires user confirmation (security policy)"}:{agent_message:""}}formatPostToolUseResponse(e){return{additional_context:e.additionalContext??""}}formatSessionStartResponse(e){return{additional_context:e.context??""}}parseStopInput(e){let r=e;return{sessionId:r.conversation_id??`pid-${process.ppid}`,status:r.status??"completed",loopCount:r.loop_count??0,generationId:r.generation_id,transcriptPath:r.transcript_path??void 0}}formatStopResponse(e){return e.followupMessage?{followup_message:e.followupMessage}:{}}parseAfterAgentResponseInput(e){return{text:e.text??""}}getSettingsPath(){return no(".cursor","hooks.json")}getConfigDir(e){return no(e??process.cwd(),".cursor")}getInstructionFiles(){return["context-mode.mdc"]}generateHookConfig(e){return{[ye.PRE_TOOL_USE]:[{type:"command",command:qt(ye.PRE_TOOL_USE),matcher:lh,loop_limit:null,failClosed:!1}],[ye.POST_TOOL_USE]:[{type:"command",command:qt(ye.POST_TOOL_USE),loop_limit:null,failClosed:!1}],[ye.SESSION_START]:[{type:"command",command:qt(ye.SESSION_START),loop_limit:null,failClosed:!1}],[ye.STOP]:[{type:"command",command:qt(ye.STOP),loop_limit:null,failClosed:!1}],[ye.AFTER_AGENT_RESPONSE]:[{type:"command",command:qt(ye.AFTER_AGENT_RESPONSE),loop_limit:null,failClosed:!1}]}}readSettings(){for(let e of this.getCandidateHookConfigPaths())try{let r=tu(e,"utf-8");return JSON.parse(r)}catch{continue}return null}writeSettings(e){let r=this.getSettingsPath();Vj(no(".cursor"),{recursive:!0}),qj(r,JSON.stringify(e,null,2)+`
|
|
152
|
+
`,"utf-8")}validateHooks(e){let r=[],n=this.loadNativeHookConfig();if(!n)r.push({check:"Native hook config",status:"fail",message:"No readable native Cursor hook config found in .cursor/hooks.json or ~/.cursor/hooks.json",fix:"context-mode upgrade"});else{let s=n.config.hooks??{};r.push({check:"Native hook config",status:"pass",message:`Loaded ${n.path}`});for(let i of Lk){let a=s[i],c=Array.isArray(a)&&a.some(u=>zi(u,i));r.push({check:i,status:c?"pass":"fail",message:c?`${i} hook configured`:`${i} hook not configured in ${n.path}`,fix:c?void 0:"context-mode upgrade"})}for(let i of Hk){let a=s[i],c=Array.isArray(a)&&a.some(u=>zi(u,i));r.push({check:i,status:c?"pass":"warn",message:c?`${i} hook configured`:`${i} hook missing \u2014 session event capture will be reduced`})}}Bk(qk)&&r.push({check:"Enterprise hook config",status:"warn",message:"Enterprise Cursor hook config detected at /Library/Application Support/Cursor/hooks.json (read-only informational layer)"}),this.hasClaudeCompatibilityHooks()&&r.push({check:"Claude compatibility",status:"warn",message:"Claude-compatible hooks detected; native Cursor hooks are the supported configuration"});let o=this.detectPluginInstalls();return o.length>0&&((n?Object.entries(n.config.hooks??{}).some(([i,a])=>Array.isArray(a)&&a.some(c=>zi(c,i))):!1)&&n?r.push({check:"Plugin/native hook duplication",status:"warn",message:`context-mode plugin detected at ${o[0]} alongside native hooks in ${n.path} \u2014 each event will fire twice. Remove one configuration to avoid duplicate routing.`,fix:"Remove the native .cursor/hooks.json entries OR uninstall the plugin"}):r.push({check:"Plugin install",status:"pass",message:`context-mode plugin installed at ${o[0]}`})),r}detectPluginInstalls(){let e=[oo(ru(),".cursor","plugins","local"),oo(ru(),".cursor","plugins","cache")],r=[];for(let n of e){try{Fk(n,Zk.F_OK)}catch{continue}let o=[];try{o=Kj(n)}catch{continue}for(let s of o){let i=oo(n,s,".cursor-plugin","plugin.json");try{let a=tu(i,"utf-8");JSON.parse(a)?.name==="context-mode"&&r.push(i)}catch{continue}}}return r}checkPluginRegistration(){let e=[no(".cursor","mcp.json"),oo(ru(),".cursor","mcp.json")];for(let n of e)try{let o=tu(n,"utf-8"),s=JSON.parse(o),i=s.mcpServers??s.servers;if(!i)continue;if(Object.entries(i).some(([c,u])=>c.includes("context-mode")?!0:!u||typeof u!="object"?!1:u.command==="context-mode"))return{check:"MCP registration",status:"pass",message:`context-mode found in ${n}`}}catch{continue}let r=this.detectPluginInstalls();return r.length>0?{check:"MCP registration",status:"pass",message:`context-mode registered via plugin manifest at ${r[0]}`}:{check:"MCP registration",status:"warn",message:"Could not find context-mode in .cursor/mcp.json or ~/.cursor/mcp.json"}}getInstalledVersion(){try{return Gj("cursor --version",{encoding:"utf-8",stdio:["ignore","pipe","ignore"]}).trim().split(/\r?\n/)[0]||"unknown"}catch{return"not installed"}}configureAllHooks(e){let r=this.readSettings()??{version:1,hooks:{}},n=r.hooks??{},o=[];return this.upsertHookEntry(n,ye.PRE_TOOL_USE,{type:"command",command:qt(ye.PRE_TOOL_USE),matcher:lh,loop_limit:null,failClosed:!1},o),this.upsertHookEntry(n,ye.POST_TOOL_USE,{type:"command",command:qt(ye.POST_TOOL_USE),loop_limit:null,failClosed:!1},o),this.upsertHookEntry(n,ye.SESSION_START,{type:"command",command:qt(ye.SESSION_START),loop_limit:null,failClosed:!1},o),this.upsertHookEntry(n,ye.STOP,{type:"command",command:qt(ye.STOP),loop_limit:null,failClosed:!1},o),this.upsertHookEntry(n,ye.AFTER_AGENT_RESPONSE,{type:"command",command:qt(ye.AFTER_AGENT_RESPONSE),loop_limit:null,failClosed:!1},o),r.version=1,r.hooks=n,this.writeSettings(r),o.push(`Wrote native Cursor hooks to ${this.getSettingsPath()}`),o}setHookPermissions(e){let r=[],n=oo(e,"hooks","cursor");for(let o of Object.values(uh)){let s=no(n,o);try{Fk(s,Zk.R_OK),Wj(s,493),r.push(s)}catch{}}return r}updatePluginRegistry(e,r){}getCandidateHookConfigPaths(){let e=[this.getSettingsPath(),oo(ru(),".cursor","hooks.json")];return process.platform==="darwin"&&e.push(qk),e}getProjectDir(e){return e.cwd||e.workspace_roots?.[0]||process.env.CURSOR_CWD||process.cwd()}extractSessionId(e){return e.conversation_id?e.conversation_id:e.session_id?e.session_id:process.env.CURSOR_SESSION_ID?process.env.CURSOR_SESSION_ID:process.env.CURSOR_TRACE_ID?process.env.CURSOR_TRACE_ID:`pid-${process.ppid}`}loadNativeHookConfig(){for(let e of this.getCandidateHookConfigPaths())try{let r=tu(e,"utf-8"),n=JSON.parse(r);if(n&&typeof n=="object")return{path:e,config:n}}catch{continue}return null}hasClaudeCompatibilityHooks(){return[no(".claude","settings.json"),no(".claude","settings.local.json"),oo(wt(),"settings.json")].some(r=>Bk(r))}upsertHookEntry(e,r,n,o){let s=e[r],i=Array.isArray(s)?[...s]:[],a=i.findIndex(c=>zi(c,r));a>=0?(i[a]=n,o.push(`Updated existing ${r} hook entry`)):(i.push(n),o.push(`Added ${r} hook entry`)),e[r]=i}}});var Gk={};He(Gk,{AntigravityAdapter:()=>fh});import{readFileSync as nu,writeFileSync as Jj,mkdirSync as Xj}from"node:fs";import{resolve as ou,dirname as Kk}from"node:path";import{fileURLToPath as Yj}from"node:url";import{homedir as ph}from"node:os";var fh,Jk=ne(()=>{"use strict";st();fh=class extends ge{constructor(){super([".gemini"])}name="Antigravity";paradigm="mcp-only";capabilities={preToolUse:!1,postToolUse:!1,preCompact:!1,sessionStart:!1,canModifyArgs:!1,canModifyOutput:!1,canInjectSessionContext:!1};parsePreToolUseInput(e){throw new Error("Antigravity does not support hooks")}parsePostToolUseInput(e){throw new Error("Antigravity does not support hooks")}parsePreCompactInput(e){throw new Error("Antigravity does not support hooks")}parseSessionStartInput(e){throw new Error("Antigravity does not support hooks")}formatPreToolUseResponse(e){}formatPostToolUseResponse(e){}formatPreCompactResponse(e){}formatSessionStartResponse(e){}getSettingsPath(){return ou(ph(),".gemini","antigravity","mcp_config.json")}getConfigDir(e){return ou(ph(),".gemini","antigravity")}getInstructionFiles(){return["GEMINI.md"]}generateHookConfig(e){return{}}readSettings(){try{let e=nu(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){let r=this.getSettingsPath();Xj(Kk(r),{recursive:!0}),Jj(r,JSON.stringify(e,null,2),"utf-8")}validateHooks(e){return[{check:"Hook support",status:"warn",message:"Antigravity does not support hooks. Only MCP integration is available."}]}checkPluginRegistration(){try{let e=nu(this.getSettingsPath(),"utf-8");return"context-mode"in(JSON.parse(e)?.mcpServers??{})?{check:"MCP registration",status:"pass",message:"context-mode found in mcpServers config"}:{check:"MCP registration",status:"fail",message:"context-mode not found in mcpServers",fix:"Add context-mode to mcpServers in ~/.gemini/antigravity/mcp_config.json"}}catch{return{check:"MCP registration",status:"warn",message:"Could not read ~/.gemini/antigravity/mcp_config.json"}}}getInstalledVersion(){try{let e=ou(ph(),".gemini","extensions","context-mode","package.json");return JSON.parse(nu(e,"utf-8")).version??"unknown"}catch{return"not installed"}}configureAllHooks(e){return[]}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getRoutingInstructions(){let e=ou(Kk(Yj(import.meta.url)),"..","..","..","configs","antigravity","GEMINI.md");try{return nu(e,"utf-8")}catch{return`# context-mode
|
|
145
153
|
|
|
146
|
-
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of
|
|
147
|
-
`,"utf-8")}upsertManagedHookEntry(e,r,n,o){let s=Array.isArray(e[r])?[...e[r]]:[],i=s.map((c,u)=>this.isManagedContextModeEntry(r,c)?u:-1).filter(c=>c>=0);if(i.length===0){s.push(n),e[r]=s,o.push(`Added ${r} hook`);return}let a=i[0];JSON.stringify(s[a])!==JSON.stringify(n)&&(s[a]=n,o.push(`Updated ${r} hook`));for(let c of i.slice(1).reverse())s.splice(c,1),o.push(`Removed duplicate ${r} context-mode hook`);e[r]=s}isExpectedHookEntry(e,r,n){return!r||typeof r!="object"||e==="PreToolUse"&&r.matcher!==n.matcher?!1:this.entryContainsManagedCommand(e,r)}isManagedContextModeEntry(e,r){return!r||typeof r!="object"?!1:this.entryContainsManagedCommand(e,r)}entryContainsManagedCommand(e,r){let n=(Array.isArray(r.hooks)?r.hooks:[]).map(i=>this.normalizeCommand(i.command)).filter(i=>i.length>0),o=this.normalizeCommand(Yn[e]??""),s=qM[e]??[];return n.some(i=>i.includes(o)||s.some(a=>i.includes(a)))}normalizeCommand(e){return(e??"").replace(/\\/g,"/")}extractSessionId(e){return e.session_id?e.session_id:`pid-${process.ppid}`}}});import{readFileSync as ck,writeFileSync as WM,mkdirSync as KM,accessSync as GM,chmodSync as JM,constants as XM}from"node:fs";import{resolve as qc,join as YM}from"node:path";var es,qm=ce(()=>{"use strict";ut();es=class extends xe{paradigm="json-stdio";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!0,canInjectSessionContext:!0};parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:r.tool_output,isError:r.is_error,sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(),raw:e}}parsePreCompactInput(e){let r=e;return{sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:this.getProjectDir(),raw:e}}formatPreToolUseResponse(e){if(e.decision==="deny")return{permissionDecision:"deny",reason:e.reason??"Blocked by context-mode hook"};if(e.decision==="modify"&&e.updatedInput)return{hookSpecificOutput:{hookEventName:this.hookModule.HOOK_TYPES.PRE_TOOL_USE,updatedInput:e.updatedInput}};if(e.decision==="context"&&e.additionalContext)return{hookSpecificOutput:{hookEventName:this.hookModule.HOOK_TYPES.PRE_TOOL_USE,additionalContext:e.additionalContext}};if(e.decision==="ask")return{permissionDecision:"deny",reason:e.reason??"Action requires user confirmation (security policy)"}}formatPostToolUseResponse(e){if(e.updatedOutput)return{hookSpecificOutput:{hookEventName:this.hookModule.HOOK_TYPES.POST_TOOL_USE,decision:"block",reason:e.updatedOutput}};if(e.additionalContext)return{hookSpecificOutput:{hookEventName:this.hookModule.HOOK_TYPES.POST_TOOL_USE,additionalContext:e.additionalContext}}}formatPreCompactResponse(e){return e.context??""}formatSessionStartResponse(e){return e.context??""}getSettingsPath(e){return qc(e??process.cwd(),".github","hooks","context-mode.json")}generateHookConfig(e){let{HOOK_TYPES:r,buildHookCommand:n}=this.hookModule;return{[r.PRE_TOOL_USE]:[{matcher:"",hooks:[{type:"command",command:n(r.PRE_TOOL_USE,e)}]}],[r.POST_TOOL_USE]:[{matcher:"",hooks:[{type:"command",command:n(r.POST_TOOL_USE,e)}]}],[r.PRE_COMPACT]:[{matcher:"",hooks:[{type:"command",command:n(r.PRE_COMPACT,e)}]}],[r.SESSION_START]:[{matcher:"",hooks:[{type:"command",command:n(r.SESSION_START,e)}]}]}}readSettings(){try{let e=ck(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{}try{let e=ck(qc(".claude","settings.json"),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){let r=this.getSettingsPath();KM(qc(".github","hooks"),{recursive:!0}),WM(r,JSON.stringify(e,null,2)+`
|
|
148
|
-
`,"utf-8")}configureAllHooks(e){let r=[],n=this.readSettings()??{},o=n.hooks??{},{HOOK_TYPES:s,HOOK_SCRIPTS:i,buildHookCommand:a}=this.hookModule,c=[s.PRE_TOOL_USE,s.POST_TOOL_USE,s.PRE_COMPACT,s.SESSION_START];for(let u of c)i[u]&&(o[u]=[{matcher:"",hooks:[{type:"command",command:a(u,e)}]}],r.push(`Configured ${u} hook`));return n.hooks=o,this.writeSettings(n),r.push(`Wrote hook config to ${this.getSettingsPath()}`),r}setHookPermissions(e){let r=[],n=YM(e,"hooks",this.hookSubdir);for(let o of Object.values(this.hookModule.HOOK_SCRIPTS)){let s=qc(n,o);try{GM(s,XM.R_OK),JM(s,493),r.push(s)}catch{}}return r}updatePluginRegistry(e,r){}}});function uk(t,e){if(!Bm[t])throw new Error(`No script defined for hook type: ${t}`);return`context-mode hook vscode-copilot ${t.toLowerCase()}`}var zt,Bm,R4,P4,lk=ce(()=>{"use strict";zt={PRE_TOOL_USE:"PreToolUse",POST_TOOL_USE:"PostToolUse",PRE_COMPACT:"PreCompact",SESSION_START:"SessionStart"},Bm={[zt.PRE_TOOL_USE]:"pretooluse.mjs",[zt.POST_TOOL_USE]:"posttooluse.mjs",[zt.PRE_COMPACT]:"precompact.mjs",[zt.SESSION_START]:"sessionstart.mjs"},R4=[zt.PRE_TOOL_USE,zt.SESSION_START],P4=[zt.POST_TOOL_USE,zt.PRE_COMPACT]});var pk={};Fe(pk,{VSCodeCopilotAdapter:()=>Km});import{readFileSync as Vm,mkdirSync as dk,accessSync as QM,existsSync as ej,constants as tj}from"node:fs";import{resolve as ts,join as Ii}from"node:path";import{homedir as Wm}from"node:os";var Km,fk=ce(()=>{"use strict";qm();ut();lk();Km=class extends es{constructor(){super([".vscode"])}name="VS Code Copilot";hookModule={HOOK_TYPES:zt,HOOK_SCRIPTS:Bm,buildHookCommand:uk};hookSubdir="vscode-copilot";extractSessionId(e){return e.sessionId?e.sessionId:process.env.VSCODE_PID?`vscode-${process.env.VSCODE_PID}`:`pid-${process.ppid}`}getProjectDir(){return process.env.CLAUDE_PROJECT_DIR||process.cwd()}getSessionDir(){let e=er();if(e){let s=Ii(e,"context-mode","sessions");return dk(s,{recursive:!0}),s}let r=ts(".github","context-mode","sessions"),n=Ii(Wm(),".vscode","context-mode","sessions"),o=ej(ts(".github"))?r:n;return dk(o,{recursive:!0}),o}getConfigDir(e){return ts(e??process.cwd(),".github")}getInstructionFiles(){return["copilot-instructions.md"]}validateHooks(e){let r=[],n=ts(".github","hooks");try{QM(n,tj.R_OK)}catch{return r.push({check:"Hooks directory",status:"fail",message:".github/hooks/ directory not found",fix:"context-mode upgrade"}),r}let o=ts(n,"context-mode.json");try{let s=Vm(o,"utf-8"),a=JSON.parse(s).hooks;a?.[zt.PRE_TOOL_USE]?r.push({check:"PreToolUse hook",status:"pass",message:"PreToolUse hook configured in context-mode.json"}):r.push({check:"PreToolUse hook",status:"fail",message:"PreToolUse not found in context-mode.json",fix:"context-mode upgrade"}),a?.[zt.SESSION_START]?r.push({check:"SessionStart hook",status:"pass",message:"SessionStart hook configured in context-mode.json"}):r.push({check:"SessionStart hook",status:"fail",message:"SessionStart not found in context-mode.json",fix:"context-mode upgrade"})}catch{r.push({check:"Hook configuration",status:"fail",message:"Could not read .github/hooks/context-mode.json",fix:"context-mode upgrade"})}return r.push({check:"API stability",status:"warn",message:"VS Code Copilot hooks are in preview \u2014 API may change without notice"}),r.push({check:"Matcher support",status:"warn",message:"Matchers are parsed but IGNORED \u2014 all hooks fire on all tools"}),r}checkPluginRegistration(){try{let e=ts(".vscode","mcp.json"),r=Vm(e,"utf-8"),o=JSON.parse(r).servers;return o&&Object.keys(o).some(i=>i.includes("context-mode"))?{check:"MCP registration",status:"pass",message:"context-mode found in .vscode/mcp.json"}:{check:"MCP registration",status:"fail",message:"context-mode not found in .vscode/mcp.json",fix:"Add context-mode server to .vscode/mcp.json"}}catch{return{check:"MCP registration",status:"warn",message:"Could not read .vscode/mcp.json"}}}getInstalledVersion(){let e=[Ii(Wm(),".vscode","extensions"),Ii(Wm(),".vscode-insiders","extensions")];for(let r of e)try{let n=Vm(Ii(r,"extensions.json"),"utf-8"),s=JSON.parse(n).find(i=>typeof i.identifier=="object"&&i.identifier!==null&&i.identifier.id?.toString().includes("context-mode"));if(s&&typeof s.version=="string")return s.version}catch{continue}return"not installed"}}});function mk(t,e){if(!Gm[t])throw new Error(`No script defined for hook type: ${t}`);return`context-mode hook jetbrains-copilot ${t.toLowerCase()}`}var Lt,Gm,M4,j4,hk=ce(()=>{"use strict";Lt={PRE_TOOL_USE:"PreToolUse",POST_TOOL_USE:"PostToolUse",PRE_COMPACT:"PreCompact",SESSION_START:"SessionStart",STOP:"Stop",SUBAGENT_START:"SubagentStart",SUBAGENT_STOP:"SubagentStop"},Gm={[Lt.PRE_TOOL_USE]:"pretooluse.mjs",[Lt.POST_TOOL_USE]:"posttooluse.mjs",[Lt.PRE_COMPACT]:"precompact.mjs",[Lt.SESSION_START]:"sessionstart.mjs"},M4=[Lt.PRE_TOOL_USE,Lt.SESSION_START],j4=[Lt.POST_TOOL_USE,Lt.PRE_COMPACT]});var gk={};Fe(gk,{JetBrainsCopilotAdapter:()=>Jm});import{readFileSync as rj}from"node:fs";import{resolve as nj}from"node:path";var Jm,yk=ce(()=>{"use strict";qm();hk();Jm=class extends es{constructor(){super([".config","JetBrains"])}name="JetBrains Copilot";hookModule={HOOK_TYPES:Lt,HOOK_SCRIPTS:Gm,buildHookCommand:mk};hookSubdir="jetbrains-copilot";extractSessionId(e){return e.sessionId?e.sessionId:process.env.JETBRAINS_CLIENT_ID?`jetbrains-${process.env.JETBRAINS_CLIENT_ID}`:process.env.IDEA_HOME?`idea-${process.pid}`:`pid-${process.ppid}`}getProjectDir(){return process.env.IDEA_INITIAL_DIRECTORY||process.env.CLAUDE_PROJECT_DIR||process.cwd()}getConfigDir(e){return nj(e??this.getProjectDir(),".github")}getInstructionFiles(){return["copilot-instructions.md"]}validateHooks(e){let r=[];try{let n=rj(this.getSettingsPath(),"utf-8"),s=JSON.parse(n).hooks;s?.[Lt.PRE_TOOL_USE]?r.push({check:"PreToolUse hook",status:"pass",message:"PreToolUse hook configured in .github/hooks/context-mode.json"}):r.push({check:"PreToolUse hook",status:"fail",message:"PreToolUse not found in .github/hooks/context-mode.json",fix:"context-mode upgrade"}),s?.[Lt.SESSION_START]?r.push({check:"SessionStart hook",status:"pass",message:"SessionStart hook configured in .github/hooks/context-mode.json"}):r.push({check:"SessionStart hook",status:"fail",message:"SessionStart not found in .github/hooks/context-mode.json",fix:"context-mode upgrade"})}catch{r.push({check:"Hook configuration",status:"fail",message:"Could not read .github/hooks/context-mode.json",fix:"context-mode upgrade"})}return r.push({check:"Hook scripts",status:"warn",message:`JetBrains hook wrappers should resolve to ${e}/hooks/jetbrains-copilot/*.mjs`}),r}checkPluginRegistration(){return{check:"MCP registration",status:"warn",message:"JetBrains stores MCP config via Settings UI \u2014 not CLI-inspectable",fix:"Verify in IDE: Settings > Tools > GitHub Copilot > MCP > ensure a context-mode server entry exists"}}getInstalledVersion(){let r=this.readSettings()?.hooks;return r&&Object.keys(r).length>0?"configured":"unknown"}}});function Ai(t,e){let r=Xm[e],n=Ut(e);if("command"in t){let s=t.command??"";return r!=null&&s.includes(r)||s.includes(n)}return t.hooks?.some(s=>{let i=s.command??"";return r!=null&&i.includes(r)||i.includes(n)})??!1}function Ut(t){return`context-mode hook cursor ${t.toLowerCase()}`}var he,Xm,oj,sj,Ym,_k,vk,xk=ce(()=>{"use strict";he={PRE_TOOL_USE:"preToolUse",POST_TOOL_USE:"postToolUse",SESSION_START:"sessionStart",STOP:"stop",AFTER_AGENT_RESPONSE:"afterAgentResponse"},Xm={[he.PRE_TOOL_USE]:"pretooluse.mjs",[he.POST_TOOL_USE]:"posttooluse.mjs",[he.SESSION_START]:"sessionstart.mjs",[he.STOP]:"stop.mjs",[he.AFTER_AGENT_RESPONSE]:"afteragentresponse.mjs"},oj="MCP:(?!ctx_)",sj=["Shell","Read","Grep","WebFetch","mcp_web_fetch","mcp_fetch_tool","Task","MCP:ctx_execute","MCP:ctx_execute_file","MCP:ctx_batch_execute",oj],Ym=sj.join("|"),_k=[he.PRE_TOOL_USE],vk=[he.POST_TOOL_USE]});var wk={};Fe(wk,{CursorAdapter:()=>Qm});import{readFileSync as Bc,writeFileSync as ij,mkdirSync as aj,accessSync as bk,chmodSync as cj,constants as Sk,existsSync as kk,readdirSync as uj}from"node:fs";import{execSync as lj}from"node:child_process";import{resolve as Qn,join as eo}from"node:path";import{homedir as Vc}from"node:os";var Ek,Qm,Tk=ce(()=>{"use strict";ut();Wn();xk();Ek="/Library/Application Support/Cursor/hooks.json",Qm=class extends xe{constructor(){super([".cursor"])}name="Cursor";paradigm="json-stdio";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!1,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!1,canInjectSessionContext:!0};parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:r.tool_output??r.error_message,isError:!!r.error_message,sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parseSessionStartInput(e){let r=e,n=r.source??r.trigger??"startup",o;switch(n){case"compact":o="compact";break;case"resume":o="resume";break;case"clear":o="clear";break;default:o="startup"}return{sessionId:this.extractSessionId(r),source:o,projectDir:this.getProjectDir(r),raw:e}}formatPreToolUseResponse(e){return e.decision==="deny"?{permission:"deny",user_message:e.reason??"Blocked by context-mode hook"}:e.decision==="modify"&&e.updatedInput?{updated_input:e.updatedInput}:e.decision==="context"&&e.additionalContext?{agent_message:e.additionalContext}:e.decision==="ask"?{permission:"ask",user_message:e.reason??"Action requires user confirmation (security policy)"}:{agent_message:""}}formatPostToolUseResponse(e){return{additional_context:e.additionalContext??""}}formatSessionStartResponse(e){return{additional_context:e.context??""}}parseStopInput(e){let r=e;return{sessionId:r.conversation_id??`pid-${process.ppid}`,status:r.status??"completed",loopCount:r.loop_count??0,generationId:r.generation_id,transcriptPath:r.transcript_path??void 0}}formatStopResponse(e){return e.followupMessage?{followup_message:e.followupMessage}:{}}parseAfterAgentResponseInput(e){return{text:e.text??""}}getSettingsPath(){return Qn(".cursor","hooks.json")}getConfigDir(e){return Qn(e??process.cwd(),".cursor")}getInstructionFiles(){return["context-mode.mdc"]}generateHookConfig(e){return{[he.PRE_TOOL_USE]:[{type:"command",command:Ut(he.PRE_TOOL_USE),matcher:Ym,loop_limit:null,failClosed:!1}],[he.POST_TOOL_USE]:[{type:"command",command:Ut(he.POST_TOOL_USE),loop_limit:null,failClosed:!1}],[he.SESSION_START]:[{type:"command",command:Ut(he.SESSION_START),loop_limit:null,failClosed:!1}],[he.STOP]:[{type:"command",command:Ut(he.STOP),loop_limit:null,failClosed:!1}],[he.AFTER_AGENT_RESPONSE]:[{type:"command",command:Ut(he.AFTER_AGENT_RESPONSE),loop_limit:null,failClosed:!1}]}}readSettings(){for(let e of this.getCandidateHookConfigPaths())try{let r=Bc(e,"utf-8");return JSON.parse(r)}catch{continue}return null}writeSettings(e){let r=this.getSettingsPath();aj(Qn(".cursor"),{recursive:!0}),ij(r,JSON.stringify(e,null,2)+`
|
|
149
|
-
`,"utf-8")}validateHooks(e){let r=[],n=this.loadNativeHookConfig();if(!n)r.push({check:"Native hook config",status:"fail",message:"No readable native Cursor hook config found in .cursor/hooks.json or ~/.cursor/hooks.json",fix:"context-mode upgrade"});else{let s=n.config.hooks??{};r.push({check:"Native hook config",status:"pass",message:`Loaded ${n.path}`});for(let i of _k){let a=s[i],c=Array.isArray(a)&&a.some(u=>Ai(u,i));r.push({check:i,status:c?"pass":"fail",message:c?`${i} hook configured`:`${i} hook not configured in ${n.path}`,fix:c?void 0:"context-mode upgrade"})}for(let i of vk){let a=s[i],c=Array.isArray(a)&&a.some(u=>Ai(u,i));r.push({check:i,status:c?"pass":"warn",message:c?`${i} hook configured`:`${i} hook missing \u2014 session event capture will be reduced`})}}kk(Ek)&&r.push({check:"Enterprise hook config",status:"warn",message:"Enterprise Cursor hook config detected at /Library/Application Support/Cursor/hooks.json (read-only informational layer)"}),this.hasClaudeCompatibilityHooks()&&r.push({check:"Claude compatibility",status:"warn",message:"Claude-compatible hooks detected; native Cursor hooks are the supported configuration"});let o=this.detectPluginInstalls();return o.length>0&&((n?Object.entries(n.config.hooks??{}).some(([i,a])=>Array.isArray(a)&&a.some(c=>Ai(c,i))):!1)&&n?r.push({check:"Plugin/native hook duplication",status:"warn",message:`context-mode plugin detected at ${o[0]} alongside native hooks in ${n.path} \u2014 each event will fire twice. Remove one configuration to avoid duplicate routing.`,fix:"Remove the native .cursor/hooks.json entries OR uninstall the plugin"}):r.push({check:"Plugin install",status:"pass",message:`context-mode plugin installed at ${o[0]}`})),r}detectPluginInstalls(){let e=[eo(Vc(),".cursor","plugins","local"),eo(Vc(),".cursor","plugins","cache")],r=[];for(let n of e){try{bk(n,Sk.F_OK)}catch{continue}let o=[];try{o=uj(n)}catch{continue}for(let s of o){let i=eo(n,s,".cursor-plugin","plugin.json");try{let a=Bc(i,"utf-8");JSON.parse(a)?.name==="context-mode"&&r.push(i)}catch{continue}}}return r}checkPluginRegistration(){let e=[Qn(".cursor","mcp.json"),eo(Vc(),".cursor","mcp.json")];for(let n of e)try{let o=Bc(n,"utf-8"),s=JSON.parse(o),i=s.mcpServers??s.servers;if(!i)continue;if(Object.entries(i).some(([c,u])=>c.includes("context-mode")?!0:!u||typeof u!="object"?!1:u.command==="context-mode"))return{check:"MCP registration",status:"pass",message:`context-mode found in ${n}`}}catch{continue}let r=this.detectPluginInstalls();return r.length>0?{check:"MCP registration",status:"pass",message:`context-mode registered via plugin manifest at ${r[0]}`}:{check:"MCP registration",status:"warn",message:"Could not find context-mode in .cursor/mcp.json or ~/.cursor/mcp.json"}}getInstalledVersion(){try{return lj("cursor --version",{encoding:"utf-8",stdio:["ignore","pipe","ignore"]}).trim().split(/\r?\n/)[0]||"unknown"}catch{return"not installed"}}configureAllHooks(e){let r=this.readSettings()??{version:1,hooks:{}},n=r.hooks??{},o=[];return this.upsertHookEntry(n,he.PRE_TOOL_USE,{type:"command",command:Ut(he.PRE_TOOL_USE),matcher:Ym,loop_limit:null,failClosed:!1},o),this.upsertHookEntry(n,he.POST_TOOL_USE,{type:"command",command:Ut(he.POST_TOOL_USE),loop_limit:null,failClosed:!1},o),this.upsertHookEntry(n,he.SESSION_START,{type:"command",command:Ut(he.SESSION_START),loop_limit:null,failClosed:!1},o),this.upsertHookEntry(n,he.STOP,{type:"command",command:Ut(he.STOP),loop_limit:null,failClosed:!1},o),this.upsertHookEntry(n,he.AFTER_AGENT_RESPONSE,{type:"command",command:Ut(he.AFTER_AGENT_RESPONSE),loop_limit:null,failClosed:!1},o),r.version=1,r.hooks=n,this.writeSettings(r),o.push(`Wrote native Cursor hooks to ${this.getSettingsPath()}`),o}setHookPermissions(e){let r=[],n=eo(e,"hooks","cursor");for(let o of Object.values(Xm)){let s=Qn(n,o);try{bk(s,Sk.R_OK),cj(s,493),r.push(s)}catch{}}return r}updatePluginRegistry(e,r){}getCandidateHookConfigPaths(){let e=[this.getSettingsPath(),eo(Vc(),".cursor","hooks.json")];return process.platform==="darwin"&&e.push(Ek),e}getProjectDir(e){return e.cwd||e.workspace_roots?.[0]||process.env.CURSOR_CWD||process.cwd()}extractSessionId(e){return e.conversation_id?e.conversation_id:e.session_id?e.session_id:process.env.CURSOR_SESSION_ID?process.env.CURSOR_SESSION_ID:process.env.CURSOR_TRACE_ID?process.env.CURSOR_TRACE_ID:`pid-${process.ppid}`}loadNativeHookConfig(){for(let e of this.getCandidateHookConfigPaths())try{let r=Bc(e,"utf-8"),n=JSON.parse(r);if(n&&typeof n=="object")return{path:e,config:n}}catch{continue}return null}hasClaudeCompatibilityHooks(){return[Qn(".claude","settings.json"),Qn(".claude","settings.local.json"),eo(St(),"settings.json")].some(r=>kk(r))}upsertHookEntry(e,r,n,o){let s=e[r],i=Array.isArray(s)?[...s]:[],a=i.findIndex(c=>Ai(c,r));a>=0?(i[a]=n,o.push(`Updated existing ${r} hook entry`)):(i.push(n),o.push(`Added ${r} hook entry`)),e[r]=i}}});var Pk={};Fe(Pk,{AntigravityAdapter:()=>th});import{readFileSync as Wc,writeFileSync as dj,mkdirSync as pj}from"node:fs";import{resolve as Kc,dirname as Rk}from"node:path";import{fileURLToPath as fj}from"node:url";import{homedir as eh}from"node:os";var th,$k=ce(()=>{"use strict";ut();th=class extends xe{constructor(){super([".gemini"])}name="Antigravity";paradigm="mcp-only";capabilities={preToolUse:!1,postToolUse:!1,preCompact:!1,sessionStart:!1,canModifyArgs:!1,canModifyOutput:!1,canInjectSessionContext:!1};parsePreToolUseInput(e){throw new Error("Antigravity does not support hooks")}parsePostToolUseInput(e){throw new Error("Antigravity does not support hooks")}parsePreCompactInput(e){throw new Error("Antigravity does not support hooks")}parseSessionStartInput(e){throw new Error("Antigravity does not support hooks")}formatPreToolUseResponse(e){}formatPostToolUseResponse(e){}formatPreCompactResponse(e){}formatSessionStartResponse(e){}getSettingsPath(){return Kc(eh(),".gemini","antigravity","mcp_config.json")}getConfigDir(e){return Kc(eh(),".gemini","antigravity")}getInstructionFiles(){return["GEMINI.md"]}generateHookConfig(e){return{}}readSettings(){try{let e=Wc(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){let r=this.getSettingsPath();pj(Rk(r),{recursive:!0}),dj(r,JSON.stringify(e,null,2),"utf-8")}validateHooks(e){return[{check:"Hook support",status:"warn",message:"Antigravity does not support hooks. Only MCP integration is available."}]}checkPluginRegistration(){try{let e=Wc(this.getSettingsPath(),"utf-8");return"context-mode"in(JSON.parse(e)?.mcpServers??{})?{check:"MCP registration",status:"pass",message:"context-mode found in mcpServers config"}:{check:"MCP registration",status:"fail",message:"context-mode not found in mcpServers",fix:"Add context-mode to mcpServers in ~/.gemini/antigravity/mcp_config.json"}}catch{return{check:"MCP registration",status:"warn",message:"Could not read ~/.gemini/antigravity/mcp_config.json"}}}getInstalledVersion(){try{let e=Kc(eh(),".gemini","extensions","context-mode","package.json");return JSON.parse(Wc(e,"utf-8")).version??"unknown"}catch{return"not installed"}}configureAllHooks(e){return[]}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getRoutingInstructions(){let e=Kc(Rk(fj(import.meta.url)),"..","..","..","configs","antigravity","GEMINI.md");try{return Wc(e,"utf-8")}catch{return`# context-mode
|
|
154
|
+
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of run_command/view_file for data-heavy operations.`}}}});function su(t,e){let r=Xk[e];return r&&(t.command?.includes(r)||t.command?.includes("context-mode hook kiro"))||!1}function cs(t,e){let r=Xk[t];return e&&r?Ze(`${e}/hooks/kiro/${r}`):`context-mode hook kiro ${t.toLowerCase()}`}var Ae,Xk,Qj,ez,mh,nV,oV,Yk=ne(()=>{"use strict";Nr();Ae={PRE_TOOL_USE:"preToolUse",POST_TOOL_USE:"postToolUse",AGENT_SPAWN:"agentSpawn",USER_PROMPT_SUBMIT:"userPromptSubmit"},Xk={[Ae.PRE_TOOL_USE]:"pretooluse.mjs",[Ae.POST_TOOL_USE]:"posttooluse.mjs",[Ae.USER_PROMPT_SUBMIT]:"userpromptsubmit.mjs",[Ae.AGENT_SPAWN]:"agentspawn.mjs"},Qj="@(?!context-mode/)",ez=["execute_bash","fs_read","@context-mode/ctx_execute","@context-mode/ctx_execute_file","@context-mode/ctx_batch_execute",Qj],mh=ez.join("|"),nV=[Ae.PRE_TOOL_USE,Ae.AGENT_SPAWN],oV=[Ae.POST_TOOL_USE,Ae.USER_PROMPT_SUBMIT]});var rE={};He(rE,{KiroAdapter:()=>hh});import{readFileSync as us,writeFileSync as Qk,mkdirSync as eE}from"node:fs";import{resolve as so,dirname as tE}from"node:path";import{fileURLToPath as tz}from"node:url";import{homedir as iu}from"node:os";var hh,nE=ne(()=>{"use strict";st();Yk();hh=class extends ge{constructor(){super([".kiro"])}name="Kiro";paradigm="json-stdio";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!1,sessionStart:!0,canModifyArgs:!1,canModifyOutput:!1,canInjectSessionContext:!0};parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:`pid-${process.ppid}`,projectDir:r.cwd??process.cwd(),raw:e}}parsePostToolUseInput(e){let r=e,n=r.tool_response;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:typeof n=="string"?n:JSON.stringify(n??""),sessionId:`pid-${process.ppid}`,projectDir:r.cwd??process.cwd(),raw:e}}parsePreCompactInput(e){throw new Error("Kiro does not support PreCompact hooks")}parseSessionStartInput(e){let r=e??{};return{source:r.source??"startup",sessionId:`pid-${process.ppid}`,projectDir:r.cwd??process.cwd(),raw:e}}formatPreToolUseResponse(e){switch(e.decision){case"deny":return{exitCode:2,stderr:e.reason??"Blocked by context-mode"};case"context":return{exitCode:0,stdout:e.additionalContext??""};default:return}}formatPostToolUseResponse(e){}formatPreCompactResponse(e){}formatSessionStartResponse(e){if(e?.context)return{hookSpecificOutput:{hookEventName:"agentSpawn",additionalContext:e.context}}}getSettingsPath(){return so(iu(),".kiro","settings","mcp.json")}getConfigDir(e){return so(e??process.cwd(),".kiro")}getInstructionFiles(){return["KIRO.md"]}generateHookConfig(e){return{[Ae.PRE_TOOL_USE]:[{matcher:mh,hooks:[{type:"command",command:cs(Ae.PRE_TOOL_USE,e)}]}],[Ae.POST_TOOL_USE]:[{matcher:"*",hooks:[{type:"command",command:cs(Ae.POST_TOOL_USE,e)}]}],[Ae.AGENT_SPAWN]:[{matcher:"*",hooks:[{type:"command",command:cs(Ae.AGENT_SPAWN,e)}]}],[Ae.USER_PROMPT_SUBMIT]:[{matcher:"*",hooks:[{type:"command",command:cs(Ae.USER_PROMPT_SUBMIT,e)}]}]}}readSettings(){try{let e=us(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){let r=this.getSettingsPath();eE(tE(r),{recursive:!0}),Qk(r,JSON.stringify(e,null,2),"utf-8")}validateHooks(e){let r=[],n=so(iu(),".kiro","agents","default.json");try{let s=JSON.parse(us(n,"utf-8")).hooks??{};for(let i of[Ae.PRE_TOOL_USE]){let c=(s[i]??[]).some(u=>su(u,i));r.push({check:`Hook: ${i}`,status:c?"pass":"fail",message:c?`context-mode ${i} hook found`:`context-mode ${i} hook not configured`,...c?{}:{fix:"Run: context-mode upgrade"}})}for(let i of[Ae.POST_TOOL_USE]){let c=(s[i]??[]).some(u=>su(u,i));r.push({check:`Hook: ${i}`,status:c?"pass":"warn",message:c?`context-mode ${i} hook found`:`context-mode ${i} hook not configured (optional)`})}}catch{r.push({check:"Hook configuration",status:"warn",message:"Could not read ~/.kiro/agents/default.json",fix:"Run: context-mode upgrade"})}return r}checkPluginRegistration(){try{let e=us(this.getSettingsPath(),"utf-8");return"context-mode"in(JSON.parse(e)?.mcpServers??{})?{check:"MCP registration",status:"pass",message:"context-mode found in mcpServers config"}:{check:"MCP registration",status:"fail",message:"context-mode not found in mcpServers",fix:"Add context-mode to mcpServers in ~/.kiro/settings/mcp.json"}}catch{return{check:"MCP registration",status:"warn",message:"Could not read ~/.kiro/settings/mcp.json"}}}getInstalledVersion(){try{let e=so(iu(),".kiro","extensions","context-mode","package.json");return JSON.parse(us(e,"utf-8")).version??"unknown"}catch{return"not installed"}}configureAllHooks(e){let r=[],n=so(iu(),".kiro","agents"),o=so(n,"default.json");try{eE(n,{recursive:!0});let s={};try{s=JSON.parse(us(o,"utf-8"))}catch{}let i=s.hooks??{},a=[[Ae.PRE_TOOL_USE,mh],[Ae.POST_TOOL_USE,"*"],[Ae.AGENT_SPAWN,"*"],[Ae.USER_PROMPT_SUBMIT,"*"]];for(let[c,u]of a){let l=i[c]??[];l.some(d=>su(d,c))||(l.push({matcher:u,command:cs(c,e)}),i[c]=l,r.push(`Added ${c} hook to ${o}`))}s.hooks=i,Qk(o,JSON.stringify(s,null,2),"utf-8")}catch(s){r.push(`Failed to configure hooks: ${s.message}`)}return r}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getRoutingInstructions(){let e=so(tE(tz(import.meta.url)),"..","..","..","configs","kiro","KIRO.md");try{return us(e,"utf-8")}catch{return`# context-mode
|
|
150
155
|
|
|
151
|
-
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of run_command/view_file for data-heavy operations.`}}}});
|
|
156
|
+
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of run_command/view_file for data-heavy operations.`}}}});var iE={};He(iE,{ZedAdapter:()=>yh});import{readFileSync as gh,writeFileSync as rz,mkdirSync as nz}from"node:fs";import{resolve as oE,dirname as sE}from"node:path";import{fileURLToPath as oz}from"node:url";import{homedir as sz}from"node:os";var yh,aE=ne(()=>{"use strict";st();yh=class extends ge{constructor(){super([".config","zed"])}name="Zed";paradigm="mcp-only";capabilities={preToolUse:!1,postToolUse:!1,preCompact:!1,sessionStart:!1,canModifyArgs:!1,canModifyOutput:!1,canInjectSessionContext:!1};parsePreToolUseInput(e){throw new Error("Zed does not support hooks")}parsePostToolUseInput(e){throw new Error("Zed does not support hooks")}parsePreCompactInput(e){throw new Error("Zed does not support hooks")}parseSessionStartInput(e){throw new Error("Zed does not support hooks")}formatPreToolUseResponse(e){}formatPostToolUseResponse(e){}formatPreCompactResponse(e){}formatSessionStartResponse(e){}getSettingsPath(){return oE(sz(),".config","zed","settings.json")}getInstructionFiles(){return["AGENTS.md"]}generateHookConfig(e){return{}}readSettings(){try{let e=gh(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){let r=this.getSettingsPath();nz(sE(r),{recursive:!0}),rz(r,JSON.stringify(e,null,2),"utf-8")}validateHooks(e){return[{check:"Hook support",status:"warn",message:"Zed does not support hooks. Only MCP integration is available."}]}checkPluginRegistration(){try{let e=gh(this.getSettingsPath(),"utf-8"),n=JSON.parse(e).context_servers!==void 0,o=e.includes("context-mode");return n&&o?{check:"MCP registration",status:"pass",message:"context-mode found in context_servers config"}:n?{check:"MCP registration",status:"fail",message:"context_servers section exists but context-mode not found",fix:"Add context-mode to context_servers in ~/.config/zed/settings.json"}:{check:"MCP registration",status:"fail",message:"No context_servers section in settings.json",fix:"Add context_servers.context-mode to ~/.config/zed/settings.json"}}catch{return{check:"MCP registration",status:"warn",message:"Could not read ~/.config/zed/settings.json"}}}getInstalledVersion(){return"not installed"}configureAllHooks(e){return[]}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getRoutingInstructions(){let e=oE(sE(oz(import.meta.url)),"..","..","..","configs","zed","AGENTS.md");try{return gh(e,"utf-8")}catch{return`# context-mode
|
|
152
157
|
|
|
153
|
-
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of
|
|
158
|
+
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of bash/cat/curl for data-heavy operations.`}}}});var _h,cE=ne(()=>{"use strict";_h="mcp__(?!.*context-mode)"});var dE={};He(dE,{QwenCodeAdapter:()=>xh});import{readFileSync as iz,writeFileSync as az,existsSync as cz}from"node:fs";import{resolve as uE,join as uz}from"node:path";import{homedir as lE}from"node:os";var xh,pE=ne(()=>{"use strict";Mm();cE();Nr();xh=class extends rs{constructor(){super([".qwen"])}name="Qwen Code";paradigm="json-stdio";projectDirEnvVar="QWEN_PROJECT_DIR";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!0,canModifyOutput:!0,canInjectSessionContext:!0};getSettingsPath(){return uE(lE(),".qwen","settings.json")}getInstructionFiles(){return["QWEN.md"]}generateHookConfig(e){return{PreToolUse:[{matcher:["run_shell_command","read_file","read_many_files","grep_search","web_fetch","agent","mcp__plugin_context-mode_context-mode__ctx_execute","mcp__plugin_context-mode_context-mode__ctx_execute_file","mcp__plugin_context-mode_context-mode__ctx_batch_execute",_h].join("|"),hooks:[{type:"command",command:Ze(`${e}/hooks/pretooluse.mjs`)}]}],PostToolUse:[{matcher:"run_shell_command|read_file|write_file|edit|glob|grep_search|todo_write|agent|ask_user_question|mcp__",hooks:[{type:"command",command:Ze(`${e}/hooks/posttooluse.mjs`)}]}],SessionStart:[{matcher:"",hooks:[{type:"command",command:Ze(`${e}/hooks/sessionstart.mjs`)}]}],PreCompact:[{matcher:"",hooks:[{type:"command",command:Ze(`${e}/hooks/precompact.mjs`)}]}],UserPromptSubmit:[{matcher:"",hooks:[{type:"command",command:Ze(`${e}/hooks/userpromptsubmit.mjs`)}]}]}}readSettings(){try{let e=iz(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){az(this.getSettingsPath(),JSON.stringify(e,null,2))}validateHooks(e){let r=[],o=this.readSettings()?.hooks??{};for(let s of["PreToolUse","PostToolUse","SessionStart","PreCompact","UserPromptSubmit"]){let i=Array.isArray(o[s])&&o[s].length>0;r.push({check:`${s} hook`,status:i?"pass":"fail",message:i?`${s} hook configured in ~/.qwen/settings.json`:`${s} hook not found in ~/.qwen/settings.json`,...i?{}:{fix:`Add ${s} hook to ~/.qwen/settings.json`}})}return r}checkPluginRegistration(){try{let e=this.readSettings();if(e?.mcpServers&&typeof e.mcpServers=="object"){let r=e.mcpServers;return Object.keys(r).some(n=>n.includes("context-mode"))?{check:"Plugin registration",status:"pass",message:"context-mode found in mcpServers"}:{check:"Plugin registration",status:"fail",message:"mcpServers exists but context-mode not found",fix:"Add context-mode to mcpServers in ~/.qwen/settings.json"}}return{check:"Plugin registration",status:"warn",message:"No mcpServers in ~/.qwen/settings.json"}}catch{return{check:"Plugin registration",status:"warn",message:"Could not read ~/.qwen/settings.json"}}}getInstalledVersion(){let e=this.readSettings();if(!e)return"not installed";let r=e.hooks;if(!r)return"not installed";let n=["pretooluse.mjs","posttooluse.mjs","precompact.mjs","sessionstart.mjs","userpromptsubmit.mjs"];for(let[,o]of Object.entries(r))if(Array.isArray(o)){for(let s of o)if(s.hooks?.some(a=>a.command&&n.some(c=>a.command.includes(c))))return"installed (hooks configured)"}return"not installed"}configureAllHooks(e){let r=this.readSettings()??{},n=r.hooks??{},o=[];for(let i of Object.keys(n)){let a=n[i];if(!Array.isArray(a))continue;let c=a.filter(l=>{let f=l.hooks??[];return f.some(p=>p.command&&/context-mode|pretooluse|posttooluse|precompact|sessionstart|userpromptsubmit/i.test(p.command))?f.every(p=>{if(!p.command)return!0;let m=p.command.match(/"[^"]+"\s+"([^"]+\.mjs)"/),g=p.command.match(/node\s+"?([^"]+\.mjs)"?/),y=m||g;return y?cz(y[1]):!0}):!0}),u=a.length-c.length;u>0&&(n[i]=c,o.push(`Removed ${u} stale ${i} hook(s)`))}let s=[{name:"PreToolUse",script:"pretooluse.mjs",matcher:["run_shell_command","read_file","read_many_files","grep_search","web_fetch","agent","mcp__plugin_context-mode_context-mode__ctx_execute","mcp__plugin_context-mode_context-mode__ctx_execute_file","mcp__plugin_context-mode_context-mode__ctx_batch_execute",_h].join("|")},{name:"PostToolUse",script:"posttooluse.mjs",matcher:"run_shell_command|read_file|write_file|edit|glob|grep_search|todo_write|agent|ask_user_question|mcp__"},{name:"SessionStart",script:"sessionstart.mjs",matcher:""},{name:"PreCompact",script:"precompact.mjs",matcher:""},{name:"UserPromptSubmit",script:"userpromptsubmit.mjs",matcher:""}];for(let{name:i,script:a,matcher:c}of s){let u={matcher:c,hooks:[{type:"command",command:Ze(`${e}/hooks/${a}`)}]},l=n[i];if(l&&Array.isArray(l)){let d=l.findIndex(f=>f.hooks?.some(p=>p.command?.includes(a))??!1);d>=0?(l[d]=u,o.push(`Updated ${i} hook`)):(l.push(u),o.push(`Added ${i} hook`)),n[i]=l}else n[i]=[u],o.push(`Created ${i} hooks`)}return r.hooks=n,this.writeSettings(r),o}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getRoutingInstructionsConfig(){return{instructionsPath:uE(uz(lE(),".qwen","QWEN.md")),targetPath:"QWEN.md",platformName:"Qwen Code"}}extractSessionId(e){if(e.session_id)return e.session_id;if(e.transcript_path){let r=e.transcript_path.match(/([a-f0-9-]{36})\.jsonl$/);if(r)return r[1]}return process.env.QWEN_SESSION_ID?process.env.QWEN_SESSION_ID:`pid-${process.ppid}`}}});var fE={};He(fE,{OMPAdapter:()=>bh});import{readFileSync as Sh,writeFileSync as lz,mkdirSync as dz}from"node:fs";import{resolve as vh,dirname as pz}from"node:path";import{homedir as fz}from"node:os";var bh,mE=ne(()=>{"use strict";st();bh=class extends ge{constructor(){super([".omp"])}name="OMP";paradigm="mcp-only";capabilities={preToolUse:!1,postToolUse:!1,preCompact:!1,sessionStart:!1,canModifyArgs:!1,canModifyOutput:!1,canInjectSessionContext:!1};parsePreToolUseInput(e){throw new Error("OMP hooks not wired by this adapter (MCP-only delivery)")}parsePostToolUseInput(e){throw new Error("OMP hooks not wired by this adapter (MCP-only delivery)")}parsePreCompactInput(e){throw new Error("OMP hooks not wired by this adapter (MCP-only delivery)")}parseSessionStartInput(e){throw new Error("OMP hooks not wired by this adapter (MCP-only delivery)")}formatPreToolUseResponse(e){}formatPostToolUseResponse(e){}formatPreCompactResponse(e){}formatSessionStartResponse(e){}getAgentDir(){return process.env.PI_CODING_AGENT_DIR??vh(fz(),".omp","agent")}getSettingsPath(){return vh(this.getAgentDir(),"mcp.json")}getConfigDir(e){return this.getAgentDir()}getInstructionFiles(){return["SYSTEM.md","AGENTS.md"]}generateHookConfig(e){return{}}readSettings(){try{let e=Sh(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){let r=this.getSettingsPath();dz(pz(r),{recursive:!0}),lz(r,JSON.stringify(e,null,2),"utf-8")}validateHooks(e){return[{check:"Hook support",status:"warn",message:"context-mode delivers via MCP for OMP. Native OMP pre/post tool-call hooks are not yet wired by this adapter."}]}checkPluginRegistration(){try{let e=Sh(this.getSettingsPath(),"utf-8");return"context-mode"in(JSON.parse(e)?.mcpServers??{})?{check:"MCP registration",status:"pass",message:"context-mode found in mcpServers config"}:{check:"MCP registration",status:"fail",message:"context-mode not found in mcpServers",fix:`Add context-mode to mcpServers in ${this.getSettingsPath()}`}}catch{return{check:"MCP registration",status:"warn",message:`Could not read ${this.getSettingsPath()}`}}}getInstalledVersion(){try{let e=vh(this.getAgentDir(),"extensions","context-mode","package.json");return JSON.parse(Sh(e,"utf-8")).version??"unknown"}catch{return"not installed"}}configureAllHooks(e){return[]}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getRoutingInstructions(){return`# context-mode
|
|
154
159
|
|
|
155
|
-
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of
|
|
160
|
+
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of run_command/view_file for data-heavy operations.`}}});var hE={};He(hE,{PiAdapter:()=>Th});import{readFileSync as kh,writeFileSync as mz,mkdirSync as hz}from"node:fs";import{resolve as Eh,dirname as gz}from"node:path";import{homedir as wh}from"node:os";var Th,gE=ne(()=>{"use strict";st();Th=class extends ge{constructor(){super([".pi"])}name="Pi";paradigm="mcp-only";capabilities={preToolUse:!1,postToolUse:!1,preCompact:!1,sessionStart:!1,canModifyArgs:!1,canModifyOutput:!1,canInjectSessionContext:!1};parsePreToolUseInput(e){throw new Error("Pi does not support JSON-stdio hooks (wired via extension.ts)")}parsePostToolUseInput(e){throw new Error("Pi does not support JSON-stdio hooks (wired via extension.ts)")}parsePreCompactInput(e){throw new Error("Pi does not support JSON-stdio hooks (wired via extension.ts)")}parseSessionStartInput(e){throw new Error("Pi does not support JSON-stdio hooks (wired via extension.ts)")}formatPreToolUseResponse(e){}formatPostToolUseResponse(e){}formatPreCompactResponse(e){}formatSessionStartResponse(e){}getSettingsPath(){return Eh(wh(),".pi","settings.json")}getInstructionFiles(){return["AGENTS.md"]}generateHookConfig(e){return{}}readSettings(){try{let e=kh(this.getSettingsPath(),"utf-8");return JSON.parse(e)}catch{return null}}writeSettings(e){let r=this.getSettingsPath();hz(gz(r),{recursive:!0}),mz(r,JSON.stringify(e,null,2),"utf-8")}validateHooks(e){return[{check:"Hook support",status:"pass",message:"Pi hooks are wired via the context-mode Pi extension (~/.pi/extensions/context-mode/), not via JSON-stdio."}]}checkPluginRegistration(){let e=Eh(wh(),".pi","extensions","context-mode","package.json");try{return JSON.parse(kh(e,"utf-8"))?.name==="context-mode"?{check:"Pi extension registration",status:"pass",message:`context-mode extension installed at ${e}`}:{check:"Pi extension registration",status:"warn",message:`Unexpected package at ${e}`}}catch{return{check:"Pi extension registration",status:"fail",message:`context-mode not found at ${e}`,fix:"Run: context-mode upgrade"}}}getInstalledVersion(){try{let e=Eh(wh(),".pi","extensions","context-mode","package.json");return JSON.parse(kh(e,"utf-8")).version??"unknown"}catch{return"not installed"}}configureAllHooks(e){return[]}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getRoutingInstructions(){return`# context-mode
|
|
156
161
|
|
|
157
|
-
Use context-mode MCP tools (
|
|
162
|
+
Use context-mode MCP tools (ctx_execute, ctx_execute_file, ctx_batch_execute, ctx_fetch_and_index, ctx_search) instead of inline shell/HTTP calls for data-heavy operations.`}}});import{homedir as yE}from"node:os";import{resolve as Ph}from"node:path";function _E(){let t=process.env.KIMI_CODE_HOME;return t?t.startsWith("~")?Ph(yE(),t.replace(/^~[/\\]?/,"")):Ph(t):Ph(yE(),".kimi-code")}var xE=ne(()=>{"use strict"});var EE={};He(EE,{KimiAdapter:()=>$h,probeKimiCliVersion:()=>kE});import{execFileSync as yz}from"node:child_process";import{readFileSync as Li,writeFileSync as _z,accessSync as xz,copyFileSync as Sz,constants as vz,mkdirSync as SE}from"node:fs";import{resolve as bz,dirname as vE,join as io}from"node:path";import{fileURLToPath as kz}from"node:url";function kE(t=yz){try{let e=process.platform==="win32"?t("cmd.exe",["/d","/s","/c","kimi --version"],{encoding:"utf-8",stdio:["ignore","pipe","ignore"],timeout:5e3}):t("kimi",["--version"],{encoding:"utf-8",stdio:["ignore","pipe","ignore"],timeout:1500}),r=String(e).trim();return r.length>0?r:"available (version output empty)"}catch{return null}}function bE(t){let e=[],r=t.split(/\r?\n/),n=null;for(let o of r){if(/^\s*\[\[hooks\]\]\s*(?:#.*)?$/.test(o)){n&&n.event&&n.command&&e.push(n),n={};continue}if(!n)continue;let s=o.match(/^\s*(\w+)\s*=\s*(?:"([^"]*)"|(\d+))\s*(?:#.*)?$/);if(s){let i=s[1],a=s[2],c=s[3];a!==void 0?n[i]=a:c!==void 0&&(n[i]=Number(c))}}return n&&n.event&&n.command&&e.push(n),e}function Tz(t){let e=["[[hooks]]"];return e.push(`event = "${t.event}"`),t.matcher&&e.push(`matcher = "${t.matcher}"`),e.push(`command = "${t.command}"`),t.timeout!==void 0&&e.push(`timeout = ${t.timeout}`),e.join(`
|
|
163
|
+
`)}function Rh(t){return t.command.includes("context-mode hook kimi")}function Pz(t,e){let r=(e.hooks?.[0]?.command??"").trim();return r?{event:t,matcher:e.matcher||void 0,command:r,timeout:30}:null}var Ez,fn,wz,$h,wE=ne(()=>{"use strict";st();Sr();xE();Ez="Bash|Shell|Read|Edit|Write|WebFetch|Agent|ctx_execute|ctx_execute_file|ctx_batch_execute|ctx_fetch_and_index|ctx_search|ctx_index|mcp__",fn={PreToolUse:"context-mode hook kimi pretooluse",PostToolUse:"context-mode hook kimi posttooluse",SessionStart:"context-mode hook kimi sessionstart",SessionEnd:"context-mode hook kimi sessionend",PreCompact:"context-mode hook kimi precompact",UserPromptSubmit:"context-mode hook kimi userpromptsubmit",Stop:"context-mode hook kimi stop"},wz={PreToolUse:["hooks/pretooluse.mjs","hooks/kimi/pretooluse.mjs"],PostToolUse:["hooks/posttooluse.mjs","hooks/kimi/posttooluse.mjs"],SessionStart:["hooks/sessionstart.mjs","hooks/kimi/sessionstart.mjs"],SessionEnd:["hooks/sessionend.mjs","hooks/kimi/sessionend.mjs"],PreCompact:["hooks/precompact.mjs","hooks/kimi/precompact.mjs"],UserPromptSubmit:["hooks/userpromptsubmit.mjs","hooks/kimi/userpromptsubmit.mjs"],Stop:["hooks/stop.mjs","hooks/kimi/stop.mjs"]};$h=class extends ge{constructor(){super([".kimi-code"])}name="Kimi Code CLI";paradigm="json-stdio";capabilities={preToolUse:!0,postToolUse:!0,preCompact:!0,sessionStart:!0,canModifyArgs:!1,canModifyOutput:!1,canInjectSessionContext:!1};parsePreToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePostToolUseInput(e){let r=e;return{toolName:r.tool_name??"",toolInput:r.tool_input??{},toolOutput:r.tool_response,sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parsePreCompactInput(e){let r=e;return{sessionId:this.extractSessionId(r),projectDir:this.getProjectDir(r),raw:e}}parseSessionStartInput(e){let r=e,o=(r.source??"startup")==="resume"?"resume":"startup";return{sessionId:this.extractSessionId(r),source:o,projectDir:this.getProjectDir(r),raw:e}}formatPreToolUseResponse(e){return e.decision==="deny"?{hookSpecificOutput:{hookEventName:"PreToolUse",permissionDecision:"deny",permissionDecisionReason:e.reason??"Blocked by context-mode hook"}}:{}}formatPostToolUseResponse(e){return e.additionalContext?{hookSpecificOutput:{hookEventName:"PostToolUse",additionalContext:e.additionalContext}}:{}}formatPreCompactResponse(e){return{}}formatSessionStartResponse(e){return e.context?{hookSpecificOutput:{hookEventName:"SessionStart",additionalContext:e.context}}:{}}getConfigDir(e){return _E()}getSettingsPath(){return io(this.getConfigDir(),"config.toml")}getMcpPath(){return io(this.getConfigDir(),"mcp.json")}getSessionDir(){let e=St(),r=e?io(e,"context-mode","sessions"):io(this.getConfigDir(),"context-mode","sessions");return SE(r,{recursive:!0}),r}getInstructionFiles(){return["AGENTS.md","AGENTS.override.md"]}getMemoryDir(e){let r=St(),n=r?io(r,"context-mode","memory"):io(this.getConfigDir(),"memory");return e?io(n,Qe(e)):n}generateHookConfig(e){return{PreToolUse:[{matcher:Ez,hooks:[{type:"command",command:fn.PreToolUse}]}],PostToolUse:[{matcher:"",hooks:[{type:"command",command:fn.PostToolUse}]}],SessionStart:[{matcher:"",hooks:[{type:"command",command:fn.SessionStart}]}],SessionEnd:[{matcher:"",hooks:[{type:"command",command:fn.SessionEnd}]}],PreCompact:[{matcher:"",hooks:[{type:"command",command:fn.PreCompact}]}],UserPromptSubmit:[{matcher:"",hooks:[{type:"command",command:fn.UserPromptSubmit}]}],Stop:[{matcher:"",hooks:[{type:"command",command:fn.Stop}]}]}}readSettings(){try{return{_raw_toml:Li(this.getSettingsPath(),"utf-8")}}catch{return null}}writeSettings(e){}validateHooks(e){let r=[],n=kE();r.push({check:"Kimi Code CLI binary",status:n?"pass":"warn",message:n?`kimi --version resolved to ${n}`:"Could not run kimi --version; hooks need the Kimi Code CLI available on PATH",...n?{}:{fix:"Install Kimi Code CLI or make kimi available on PATH"}});let o="";try{o=Li(this.getSettingsPath(),"utf-8")}catch{return r.push({check:"Hooks config",status:"fail",message:`No readable ${this.getSettingsPath()} found`,fix:"Run context-mode upgrade to generate the initial config.toml"}),r}let s=bE(o),i=this.generateHookConfig("");for(let[a,c]of Object.entries(i)){let u=c[0],l=s.some(f=>f.event===a&&this.isExpectedHookEntry(a,f,u)),d=a==="PreCompact"?"warn":"fail";r.push({check:`${a} hook`,status:l?"pass":d,message:l?`${a} hook configured in ${this.getSettingsPath()}`:a==="PreCompact"?`${a} hook missing or not pointing to context-mode; compaction snapshots require a Kimi build that emits PreCompact`:`${a} hook missing or not pointing to context-mode`,fix:l?void 0:`Update ${this.getSettingsPath()} to include the managed ${a} [[hooks]] entry`})}for(let a of Object.keys(i)){let c=s.filter(u=>u.event===a&&Rh(u)).length;c>1&&r.push({check:`${a} duplicates`,status:"warn",message:`${c} context-mode entries found for ${a} in ${this.getSettingsPath()}; Kimi will fire all of them`,fix:"context-mode upgrade (collapses duplicate context-mode entries; preserves unrelated hooks)"})}return r}checkPluginRegistration(){try{let e=Li(this.getMcpPath(),"utf-8"),r=JSON.parse(e),n=e.includes("context-mode"),o=r.mcpServers!==void 0||r.mcp_servers!==void 0;return n&&o?{check:"MCP registration",status:"pass",message:"context-mode found in mcp.json"}:o?{check:"MCP registration",status:"fail",message:"mcpServers section exists but context-mode not found",fix:`Add context-mode to mcpServers in ${this.getMcpPath()}`}:{check:"MCP registration",status:"fail",message:"No mcpServers section in mcp.json",fix:`Add mcpServers.context-mode to ${this.getMcpPath()}`}}catch{return{check:"MCP registration",status:"warn",message:`Could not read ${this.getMcpPath()}`}}}getInstalledVersion(){return"standalone"}configureAllHooks(e){let r=[],n=this.generateHookConfig(""),o="";try{o=Li(this.getSettingsPath(),"utf-8")}catch{o=""}let s=bE(o),i=s.filter(l=>!Rh(l)),a=[];for(let[l,d]of Object.entries(n)){let f=Pz(l,d[0]);f&&a.push(f)}let c=s.some(Rh),u=this.rebuildToml(o,i,a);return u!==o&&(SE(vE(this.getSettingsPath()),{recursive:!0}),_z(this.getSettingsPath(),u,"utf-8"),c?r.push(`Updated managed Kimi hooks in ${this.getSettingsPath()}`):r.push(`Wrote managed Kimi hooks to ${this.getSettingsPath()}`)),r}backupSettings(){let e=null;for(let r of[this.getSettingsPath(),this.getMcpPath()])try{xz(r,vz.R_OK);let n=this.backupFile(r);e??=n}catch{continue}return e}setHookPermissions(e){return[]}updatePluginRegistry(e,r){}getRoutingInstructions(){let e=bz(vE(kz(import.meta.url)),"..","..","..","configs","kimi","AGENTS.md");try{return Li(e,"utf-8")}catch{return`# context-mode
|
|
158
164
|
|
|
159
|
-
Use context-mode MCP tools (ctx_execute, ctx_execute_file, ctx_batch_execute, ctx_fetch_and_index, ctx_search) instead of inline shell/HTTP calls for data-heavy operations.`}}});var Xc={};Fe(Xc,{PLATFORM_ENV_VARS:()=>os,__resetClaudeCodePluginCacheForTests:()=>Nj,__seedClaudeCodePluginCacheMissForTests:()=>Dj,detectPlatform:()=>Ar,foreignIdentificationEnv:()=>Lj,foreignWorkspaceEnv:()=>zj,getAdapter:()=>Uj,getEnvVarNames:()=>jj,getSessionDirSegments:()=>Ni,workspaceEnvVarsFor:()=>hh});import{existsSync as kt,readFileSync as Ij}from"node:fs";import{resolve as _t}from"node:path";import{homedir as Jk}from"node:os";function Aj(){if(ro!==null)return ro!=="miss"&&ro.hasCM;try{let t=_t(Jk(),".claude","plugins","installed_plugins.json"),e=Ij(t,"utf-8"),r=JSON.parse(e),o=[...Object.keys(r.plugins??{}),...Object.keys(r.enabledPlugins??{})].some(s=>s.includes("context-mode"));return ro={hasCM:o},o}catch{return ro="miss",!1}}function Nj(){ro=null}function Dj(){ro="miss"}function jj(t){return(os.get(t)??[]).map(e=>e.name)}function hh(t){return(os.get(t)??[]).filter(e=>e.role==="workspace").map(e=>e.name)}function zj(t){let e=new Set;for(let[r,n]of os)if(r!==t)for(let o of n)o.role==="workspace"&&e.add(o.name);return e}function Lj(t){let e=new Set;for(let[r,n]of os)if(r!==t)for(let o of n)o.role==="identification"&&e.add(o.name);return e}function Ni(t){switch(t){case"claude-code":return[".claude"];case"gemini-cli":return[".gemini"];case"antigravity":return[".gemini"];case"openclaw":return[".openclaw"];case"codex":return[".codex"];case"cursor":return[".cursor"];case"vscode-copilot":return[".vscode"];case"kiro":return[".kiro"];case"pi":return[".pi"];case"omp":return[".omp"];case"qwen-code":return[".qwen"];case"kilo":return[".config","kilo"];case"opencode":return[".config","opencode"];case"zed":return[".config","zed"];case"jetbrains-copilot":return[".config","JetBrains"];default:return null}}function Ar(t){if(t?.name){let n=fS[t.name];if(n)return{platform:n,confidence:"high",reason:`MCP clientInfo.name="${t.name}"`};if(t.name.startsWith("qwen-cli-mcp-client"))return{platform:"qwen-code",confidence:"high",reason:`MCP clientInfo.name="${t.name}" (qwen-cli pattern)`}}let e=process.env.CONTEXT_MODE_PLATFORM;if(e&&["claude-code","gemini-cli","kilo","opencode","codex","vscode-copilot","jetbrains-copilot","cursor","antigravity","kiro","pi","omp","zed","qwen-code"].includes(e))return{platform:e,confidence:"high",reason:`CONTEXT_MODE_PLATFORM=${e} override`};for(let[n,o]of os)if(o.some(s=>s.detect!==!1&&process.env[s.name]))return n==="vscode-copilot"&&Aj()?{platform:"claude-code",confidence:"high",reason:"VSCODE_PID set but ~/.claude/plugins/installed_plugins.json lists context-mode (issue #539 fallback)"}:{platform:n,confidence:"high",reason:`${o.filter(s=>s.detect!==!1).map(s=>s.name).join(" or ")} env var set`};let r=Jk();return kt(_t(r,".claude"))?{platform:"claude-code",confidence:"medium",reason:"~/.claude/ directory exists"}:kt(_t(r,".gemini"))?{platform:"gemini-cli",confidence:"medium",reason:"~/.gemini/ directory exists"}:kt(_t(r,".codex"))?{platform:"codex",confidence:"medium",reason:"~/.codex/ directory exists"}:kt(_t(r,".kiro"))?{platform:"kiro",confidence:"medium",reason:"~/.kiro/ directory exists"}:kt(_t(r,".omp"))?{platform:"omp",confidence:"medium",reason:"~/.omp/ directory exists"}:kt(_t(r,".pi"))?{platform:"pi",confidence:"medium",reason:"~/.pi/ directory exists"}:kt(_t(r,".qwen"))?{platform:"qwen-code",confidence:"medium",reason:"~/.qwen/ directory exists"}:kt(_t(r,".openclaw"))?{platform:"openclaw",confidence:"medium",reason:"~/.openclaw/ directory exists"}:kt(_t(r,".cursor"))?{platform:"cursor",confidence:"medium",reason:"~/.cursor/ directory exists"}:kt(_t(r,".config","kilo"))?{platform:"kilo",confidence:"medium",reason:"~/.config/kilo/ directory exists"}:kt(_t(r,".config","JetBrains"))?{platform:"jetbrains-copilot",confidence:"medium",reason:"~/.config/JetBrains/ directory exists"}:kt(_t(r,".config","opencode"))?{platform:"opencode",confidence:"medium",reason:"~/.config/opencode/ directory exists"}:kt(_t(r,".config","zed"))?{platform:"zed",confidence:"medium",reason:"~/.config/zed/ directory exists"}:{platform:"claude-code",confidence:"low",reason:"No platform detected, defaulting to Claude Code"}}async function Uj(t){let e=t??Ar().platform;switch(e){case"claude-code":{let{ClaudeCodeAdapter:r}=await Promise.resolve().then(()=>(Om(),Cm));return new r}case"gemini-cli":{let{GeminiCLIAdapter:r}=await Promise.resolve().then(()=>(BS(),qS));return new r}case"kilo":case"opencode":{let{OpenCodeAdapter:r}=await Promise.resolve().then(()=>(GS(),KS));return new r(e)}case"openclaw":{let{OpenClawAdapter:r}=await Promise.resolve().then(()=>(YS(),XS));return new r}case"codex":{let{CodexAdapter:r}=await Promise.resolve().then(()=>(ak(),ik));return new r}case"vscode-copilot":{let{VSCodeCopilotAdapter:r}=await Promise.resolve().then(()=>(fk(),pk));return new r}case"jetbrains-copilot":{let{JetBrainsCopilotAdapter:r}=await Promise.resolve().then(()=>(yk(),gk));return new r}case"cursor":{let{CursorAdapter:r}=await Promise.resolve().then(()=>(Tk(),wk));return new r}case"antigravity":{let{AntigravityAdapter:r}=await Promise.resolve().then(()=>($k(),Pk));return new r}case"kiro":{let{KiroAdapter:r}=await Promise.resolve().then(()=>(Mk(),Dk));return new r}case"zed":{let{ZedAdapter:r}=await Promise.resolve().then(()=>(Uk(),Lk));return new r}case"qwen-code":{let{QwenCodeAdapter:r}=await Promise.resolve().then(()=>(Bk(),qk));return new r}case"omp":{let{OMPAdapter:r}=await Promise.resolve().then(()=>(Wk(),Vk));return new r}case"pi":{let{PiAdapter:r}=await Promise.resolve().then(()=>(Gk(),Kk));return new r}default:{let{ClaudeCodeAdapter:r}=await Promise.resolve().then(()=>(Om(),Cm));return new r}}}var ro,Mj,os,no=ce(()=>{"use strict";mS();ro=null;Mj=[["claude-code",[{name:"CLAUDE_CODE_ENTRYPOINT",role:"identification"},{name:"CLAUDE_PLUGIN_ROOT",role:"identification"},{name:"CLAUDE_PROJECT_DIR",role:"workspace"},{name:"CLAUDE_SESSION_ID",role:"identification"}]],["antigravity",[{name:"ANTIGRAVITY_CLI_ALIAS",role:"identification"}]],["cursor",[{name:"CURSOR_CWD",role:"workspace"},{name:"CURSOR_TRACE_ID",role:"identification"},{name:"CURSOR_CLI",role:"identification"}]],["kilo",[{name:"KILO",role:"identification"},{name:"KILO_PID",role:"identification"}]],["opencode",[{name:"OPENCODE_PROJECT_DIR",role:"workspace"},{name:"OPENCODE_CLIENT",role:"identification"},{name:"OPENCODE_TERMINAL",role:"identification"},{name:"OPENCODE",role:"identification"},{name:"OPENCODE_PID",role:"identification"}]],["zed",[{name:"ZED_SESSION_ID",role:"identification"},{name:"ZED_TERM",role:"identification"}]],["codex",[{name:"CODEX_THREAD_ID",role:"identification"},{name:"CODEX_CI",role:"identification"}]],["gemini-cli",[{name:"GEMINI_PROJECT_DIR",role:"workspace"},{name:"GEMINI_CLI",role:"identification"}]],["vscode-copilot",[{name:"VSCODE_CWD",role:"workspace"},{name:"VSCODE_PID",role:"identification"}]],["jetbrains-copilot",[{name:"IDEA_INITIAL_DIRECTORY",role:"workspace"}]],["qwen-code",[{name:"QWEN_PROJECT_DIR",role:"workspace"}]],["omp",[{name:"PI_CODING_AGENT_DIR",role:"workspace"}]],["pi",[{name:"PI_WORKSPACE_DIR",role:"workspace",detect:!1},{name:"PI_PROJECT_DIR",role:"workspace",detect:!1},{name:"PI_CONFIG_DIR",role:"identification"},{name:"PI_SESSION_FILE",role:"identification"},{name:"PI_COMPILED",role:"identification"}]]],os=new Map(Mj)});import{resolve as Di}from"node:path";import{homedir as gh}from"node:os";function St(t=process.env){let e=t.CLAUDE_CONFIG_DIR;return e&&e.trim()!==""?e.startsWith("~")?Di(gh(),e.replace(/^~[/\\]?/,"")):Di(e):Di(gh(),".claude")}function Hj(t=process.env){return Di(St(t),"settings.json")}function yh(t=process.env){let e=[],r=Ar();if(r.platform!=="claude-code"){let o=Ni(r.platform);o&&o.length>0&&e.push(Di(gh(),...o,"settings.json"))}let n=Hj(t);return e.includes(n)||e.push(n),e}var Wn=ce(()=>{"use strict";no()});var $={};Fe($,{BRAND:()=>Nw,DIRTY:()=>pn,EMPTY_PATH:()=>pw,INVALID:()=>B,NEVER:()=>yT,OK:()=>et,ParseStatus:()=>Be,Schema:()=>Y,ZodAny:()=>Ur,ZodArray:()=>Sr,ZodBigInt:()=>mn,ZodBoolean:()=>hn,ZodBranded:()=>hs,ZodCatch:()=>Tn,ZodDate:()=>gn,ZodDefault:()=>wn,ZodDiscriminatedUnion:()=>Vi,ZodEffects:()=>Rt,ZodEnum:()=>kn,ZodError:()=>lt,ZodFirstPartyTypeKind:()=>T,ZodFunction:()=>Ki,ZodIntersection:()=>xn,ZodIssueCode:()=>w,ZodLazy:()=>bn,ZodLiteral:()=>Sn,ZodMap:()=>po,ZodNaN:()=>mo,ZodNativeEnum:()=>En,ZodNever:()=>qt,ZodNull:()=>_n,ZodNullable:()=>cr,ZodNumber:()=>fn,ZodObject:()=>pt,ZodOptional:()=>dt,ZodParsedType:()=>I,ZodPipeline:()=>gs,ZodPromise:()=>Hr,ZodReadonly:()=>Rn,ZodRecord:()=>Wi,ZodSchema:()=>Y,ZodSet:()=>fo,ZodString:()=>Lr,ZodSymbol:()=>uo,ZodTransformer:()=>Rt,ZodTuple:()=>ar,ZodType:()=>Y,ZodUndefined:()=>yn,ZodUnion:()=>vn,ZodUnknown:()=>br,ZodVoid:()=>lo,addIssueToContext:()=>P,any:()=>Zw,array:()=>Ww,bigint:()=>zw,boolean:()=>tg,coerce:()=>gT,custom:()=>Yh,date:()=>Lw,datetimeRegex:()=>Jh,defaultErrorMap:()=>vr,discriminatedUnion:()=>Jw,effect:()=>cT,enum:()=>sT,function:()=>rT,getErrorMap:()=>io,getParsedType:()=>ir,instanceof:()=>Mw,intersection:()=>Xw,isAborted:()=>qi,isAsync:()=>ao,isDirty:()=>Bi,isValid:()=>zr,late:()=>Dw,lazy:()=>nT,literal:()=>oT,makeIssue:()=>ms,map:()=>eT,nan:()=>jw,nativeEnum:()=>iT,never:()=>Bw,null:()=>Fw,nullable:()=>lT,number:()=>eg,object:()=>$u,objectUtil:()=>Tu,oboolean:()=>hT,onumber:()=>mT,optional:()=>uT,ostring:()=>fT,pipeline:()=>pT,preprocess:()=>dT,promise:()=>aT,quotelessJson:()=>uw,record:()=>Qw,set:()=>tT,setErrorMap:()=>dw,strictObject:()=>Kw,string:()=>Qh,symbol:()=>Uw,transformer:()=>cT,tuple:()=>Yw,undefined:()=>Hw,union:()=>Gw,unknown:()=>qw,util:()=>ne,void:()=>Vw});var ne;(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})(ne||(ne={}));var Tu;(function(t){t.mergeShapes=(e,r)=>({...e,...r})})(Tu||(Tu={}));var I=ne.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),ir=t=>{switch(typeof t){case"undefined":return I.undefined;case"string":return I.string;case"number":return Number.isNaN(t)?I.nan:I.number;case"boolean":return I.boolean;case"function":return I.function;case"bigint":return I.bigint;case"symbol":return I.symbol;case"object":return Array.isArray(t)?I.array:t===null?I.null:t.then&&typeof t.then=="function"&&t.catch&&typeof t.catch=="function"?I.promise:typeof Map<"u"&&t instanceof Map?I.map:typeof Set<"u"&&t instanceof Set?I.set:typeof Date<"u"&&t instanceof Date?I.date:I.object;default:return I.unknown}};var w=ne.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"]),uw=t=>JSON.stringify(t,null,2).replace(/"([^"]+)":/g,"$1:"),lt=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,ne.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()}};lt.create=t=>new lt(t);var lw=(t,e)=>{let r;switch(t.code){case w.invalid_type:t.received===I.undefined?r="Required":r=`Expected ${t.expected}, received ${t.received}`;break;case w.invalid_literal:r=`Invalid literal value, expected ${JSON.stringify(t.expected,ne.jsonStringifyReplacer)}`;break;case w.unrecognized_keys:r=`Unrecognized key(s) in object: ${ne.joinValues(t.keys,", ")}`;break;case w.invalid_union:r="Invalid input";break;case w.invalid_union_discriminator:r=`Invalid discriminator value. Expected ${ne.joinValues(t.options)}`;break;case w.invalid_enum_value:r=`Invalid enum value. Expected ${ne.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}"`:ne.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,ne.assertNever(t)}return{message:r}},vr=lw;var Bh=vr;function dw(t){Bh=t}function io(){return Bh}var ms=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}},pw=[];function P(t,e){let r=io(),n=ms({issueData:e,data:t.data,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,r,r===vr?void 0:vr].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 B;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 B;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}}},B=Object.freeze({status:"aborted"}),pn=t=>({status:"dirty",value:t}),et=t=>({status:"valid",value:t}),qi=t=>t.status==="aborted",Bi=t=>t.status==="dirty",zr=t=>t.status==="valid",ao=t=>typeof Promise<"u"&&t instanceof Promise;var j;(function(t){t.errToObj=e=>typeof e=="string"?{message:e}:e||{},t.toString=e=>typeof e=="string"?e:e?.message})(j||(j={}));var Tt=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}},Vh=(t,e)=>{if(zr(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 lt(t.common.issues);return this._error=r,this._error}}};function J(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 Y=class{get description(){return this._def.description}_getType(e){return ir(e.data)}_getOrReturnCtx(e,r){return r||{common:e.parent.common,data:e.data,parsedType:ir(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:ir(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}}_parseSync(e){let r=this._parse(e);if(ao(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:ir(e)},o=this._parseSync({data:e,path:n.path,parent:n});return Vh(n,o)}"~validate"(e){let r={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:ir(e)};if(!this["~standard"].async)try{let n=this._parseSync({data:e,path:[],parent:r});return zr(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=>zr(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:ir(e)},o=this._parse({data:e,path:n.path,parent:n}),s=await(ao(o)?o:Promise.resolve(o));return Vh(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 Rt({schema:this,typeName:T.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 dt.create(this,this._def)}nullable(){return cr.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return Sr.create(this)}promise(){return Hr.create(this,this._def)}or(e){return vn.create([this,e],this._def)}and(e){return xn.create(this,e,this._def)}transform(e){return new Rt({...J(this._def),schema:this,typeName:T.ZodEffects,effect:{type:"transform",transform:e}})}default(e){let r=typeof e=="function"?e:()=>e;return new wn({...J(this._def),innerType:this,defaultValue:r,typeName:T.ZodDefault})}brand(){return new hs({typeName:T.ZodBranded,type:this,...J(this._def)})}catch(e){let r=typeof e=="function"?e:()=>e;return new Tn({...J(this._def),innerType:this,catchValue:r,typeName:T.ZodCatch})}describe(e){let r=this.constructor;return new r({...this._def,description:e})}pipe(e){return gs.create(this,e)}readonly(){return Rn.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}},fw=/^c[^\s-]{8,}$/i,mw=/^[0-9a-z]+$/,hw=/^[0-9A-HJKMNP-TV-Z]{26}$/i,gw=/^[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,yw=/^[a-z0-9_-]{21}$/i,_w=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/,vw=/^[-+]?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)?)??$/,xw=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,bw="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$",Ru,Sw=/^(?:(?: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])$/,kw=/^(?:(?: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])$/,Ew=/^(([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]))$/,ww=/^(([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])$/,Tw=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,Rw=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,Kh="((\\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])))",Pw=new RegExp(`^${Kh}$`);function Gh(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 $w(t){return new RegExp(`^${Gh(t)}$`)}function Jh(t){let e=`${Kh}T${Gh(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 Cw(t,e){return!!((e==="v4"||!e)&&Sw.test(t)||(e==="v6"||!e)&&Ew.test(t))}function Ow(t,e){if(!_w.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 Iw(t,e){return!!((e==="v4"||!e)&&kw.test(t)||(e==="v6"||!e)&&ww.test(t))}var Lr=class t extends Y{_parse(e){if(this._def.coerce&&(e.data=String(e.data)),this._getType(e)!==I.string){let s=this._getOrReturnCtx(e);return P(s,{code:w.invalid_type,expected:I.string,received:s.parsedType}),B}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),P(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),P(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?P(o,{code:w.too_big,maximum:s.value,type:"string",inclusive:!0,exact:!0,message:s.message}):a&&P(o,{code:w.too_small,minimum:s.value,type:"string",inclusive:!0,exact:!0,message:s.message}),n.dirty())}else if(s.kind==="email")xw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"email",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="emoji")Ru||(Ru=new RegExp(bw,"u")),Ru.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"emoji",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="uuid")gw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"uuid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="nanoid")yw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"nanoid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="cuid")fw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"cuid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="cuid2")mw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"cuid2",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="ulid")hw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(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),P(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),P(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),P(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),P(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),P(o,{code:w.invalid_string,validation:{endsWith:s.value},message:s.message}),n.dirty()):s.kind==="datetime"?Jh(s).test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{code:w.invalid_string,validation:"datetime",message:s.message}),n.dirty()):s.kind==="date"?Pw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{code:w.invalid_string,validation:"date",message:s.message}),n.dirty()):s.kind==="time"?$w(s).test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{code:w.invalid_string,validation:"time",message:s.message}),n.dirty()):s.kind==="duration"?vw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"duration",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="ip"?Cw(e.data,s.version)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"ip",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="jwt"?Ow(e.data,s.alg)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"jwt",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="cidr"?Iw(e.data,s.version)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"cidr",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="base64"?Tw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"base64",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="base64url"?Rw.test(e.data)||(o=this._getOrReturnCtx(e,o),P(o,{validation:"base64url",code:w.invalid_string,message:s.message}),n.dirty()):ne.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,...j.errToObj(n)})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}email(e){return this._addCheck({kind:"email",...j.errToObj(e)})}url(e){return this._addCheck({kind:"url",...j.errToObj(e)})}emoji(e){return this._addCheck({kind:"emoji",...j.errToObj(e)})}uuid(e){return this._addCheck({kind:"uuid",...j.errToObj(e)})}nanoid(e){return this._addCheck({kind:"nanoid",...j.errToObj(e)})}cuid(e){return this._addCheck({kind:"cuid",...j.errToObj(e)})}cuid2(e){return this._addCheck({kind:"cuid2",...j.errToObj(e)})}ulid(e){return this._addCheck({kind:"ulid",...j.errToObj(e)})}base64(e){return this._addCheck({kind:"base64",...j.errToObj(e)})}base64url(e){return this._addCheck({kind:"base64url",...j.errToObj(e)})}jwt(e){return this._addCheck({kind:"jwt",...j.errToObj(e)})}ip(e){return this._addCheck({kind:"ip",...j.errToObj(e)})}cidr(e){return this._addCheck({kind:"cidr",...j.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,...j.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,...j.errToObj(e?.message)})}duration(e){return this._addCheck({kind:"duration",...j.errToObj(e)})}regex(e,r){return this._addCheck({kind:"regex",regex:e,...j.errToObj(r)})}includes(e,r){return this._addCheck({kind:"includes",value:e,position:r?.position,...j.errToObj(r?.message)})}startsWith(e,r){return this._addCheck({kind:"startsWith",value:e,...j.errToObj(r)})}endsWith(e,r){return this._addCheck({kind:"endsWith",value:e,...j.errToObj(r)})}min(e,r){return this._addCheck({kind:"min",value:e,...j.errToObj(r)})}max(e,r){return this._addCheck({kind:"max",value:e,...j.errToObj(r)})}length(e,r){return this._addCheck({kind:"length",value:e,...j.errToObj(r)})}nonempty(e){return this.min(1,j.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}};Lr.create=t=>new Lr({checks:[],typeName:T.ZodString,coerce:t?.coerce??!1,...J(t)});function Aw(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 fn=class t extends Y{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)!==I.number){let s=this._getOrReturnCtx(e);return P(s,{code:w.invalid_type,expected:I.number,received:s.parsedType}),B}let n,o=new Be;for(let s of this._def.checks)s.kind==="int"?ne.isInteger(e.data)||(n=this._getOrReturnCtx(e,n),P(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),P(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),P(n,{code:w.too_big,maximum:s.value,type:"number",inclusive:s.inclusive,exact:!1,message:s.message}),o.dirty()):s.kind==="multipleOf"?Aw(e.data,s.value)!==0&&(n=this._getOrReturnCtx(e,n),P(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),P(n,{code:w.not_finite,message:s.message}),o.dirty()):ne.assertNever(s);return{status:o.value,value:e.data}}gte(e,r){return this.setLimit("min",e,!0,j.toString(r))}gt(e,r){return this.setLimit("min",e,!1,j.toString(r))}lte(e,r){return this.setLimit("max",e,!0,j.toString(r))}lt(e,r){return this.setLimit("max",e,!1,j.toString(r))}setLimit(e,r,n,o){return new t({...this._def,checks:[...this._def.checks,{kind:e,value:r,inclusive:n,message:j.toString(o)}]})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}int(e){return this._addCheck({kind:"int",message:j.toString(e)})}positive(e){return this._addCheck({kind:"min",value:0,inclusive:!1,message:j.toString(e)})}negative(e){return this._addCheck({kind:"max",value:0,inclusive:!1,message:j.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:0,inclusive:!0,message:j.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:0,inclusive:!0,message:j.toString(e)})}multipleOf(e,r){return this._addCheck({kind:"multipleOf",value:e,message:j.toString(r)})}finite(e){return this._addCheck({kind:"finite",message:j.toString(e)})}safe(e){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:j.toString(e)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:j.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"&&ne.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)}};fn.create=t=>new fn({checks:[],typeName:T.ZodNumber,coerce:t?.coerce||!1,...J(t)});var mn=class t extends Y{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)!==I.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),P(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),P(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),P(n,{code:w.not_multiple_of,multipleOf:s.value,message:s.message}),o.dirty()):ne.assertNever(s);return{status:o.value,value:e.data}}_getInvalidInput(e){let r=this._getOrReturnCtx(e);return P(r,{code:w.invalid_type,expected:I.bigint,received:r.parsedType}),B}gte(e,r){return this.setLimit("min",e,!0,j.toString(r))}gt(e,r){return this.setLimit("min",e,!1,j.toString(r))}lte(e,r){return this.setLimit("max",e,!0,j.toString(r))}lt(e,r){return this.setLimit("max",e,!1,j.toString(r))}setLimit(e,r,n,o){return new t({...this._def,checks:[...this._def.checks,{kind:e,value:r,inclusive:n,message:j.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:j.toString(e)})}negative(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:j.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:j.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:j.toString(e)})}multipleOf(e,r){return this._addCheck({kind:"multipleOf",value:e,message:j.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}};mn.create=t=>new mn({checks:[],typeName:T.ZodBigInt,coerce:t?.coerce??!1,...J(t)});var hn=class extends Y{_parse(e){if(this._def.coerce&&(e.data=!!e.data),this._getType(e)!==I.boolean){let n=this._getOrReturnCtx(e);return P(n,{code:w.invalid_type,expected:I.boolean,received:n.parsedType}),B}return et(e.data)}};hn.create=t=>new hn({typeName:T.ZodBoolean,coerce:t?.coerce||!1,...J(t)});var gn=class t extends Y{_parse(e){if(this._def.coerce&&(e.data=new Date(e.data)),this._getType(e)!==I.date){let s=this._getOrReturnCtx(e);return P(s,{code:w.invalid_type,expected:I.date,received:s.parsedType}),B}if(Number.isNaN(e.data.getTime())){let s=this._getOrReturnCtx(e);return P(s,{code:w.invalid_date}),B}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),P(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),P(o,{code:w.too_big,message:s.message,inclusive:!0,exact:!1,maximum:s.value,type:"date"}),n.dirty()):ne.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:j.toString(r)})}max(e,r){return this._addCheck({kind:"max",value:e.getTime(),message:j.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}};gn.create=t=>new gn({checks:[],coerce:t?.coerce||!1,typeName:T.ZodDate,...J(t)});var uo=class extends Y{_parse(e){if(this._getType(e)!==I.symbol){let n=this._getOrReturnCtx(e);return P(n,{code:w.invalid_type,expected:I.symbol,received:n.parsedType}),B}return et(e.data)}};uo.create=t=>new uo({typeName:T.ZodSymbol,...J(t)});var yn=class extends Y{_parse(e){if(this._getType(e)!==I.undefined){let n=this._getOrReturnCtx(e);return P(n,{code:w.invalid_type,expected:I.undefined,received:n.parsedType}),B}return et(e.data)}};yn.create=t=>new yn({typeName:T.ZodUndefined,...J(t)});var _n=class extends Y{_parse(e){if(this._getType(e)!==I.null){let n=this._getOrReturnCtx(e);return P(n,{code:w.invalid_type,expected:I.null,received:n.parsedType}),B}return et(e.data)}};_n.create=t=>new _n({typeName:T.ZodNull,...J(t)});var Ur=class extends Y{constructor(){super(...arguments),this._any=!0}_parse(e){return et(e.data)}};Ur.create=t=>new Ur({typeName:T.ZodAny,...J(t)});var br=class extends Y{constructor(){super(...arguments),this._unknown=!0}_parse(e){return et(e.data)}};br.create=t=>new br({typeName:T.ZodUnknown,...J(t)});var qt=class extends Y{_parse(e){let r=this._getOrReturnCtx(e);return P(r,{code:w.invalid_type,expected:I.never,received:r.parsedType}),B}};qt.create=t=>new qt({typeName:T.ZodNever,...J(t)});var lo=class extends Y{_parse(e){if(this._getType(e)!==I.undefined){let n=this._getOrReturnCtx(e);return P(n,{code:w.invalid_type,expected:I.void,received:n.parsedType}),B}return et(e.data)}};lo.create=t=>new lo({typeName:T.ZodVoid,...J(t)});var Sr=class t extends Y{_parse(e){let{ctx:r,status:n}=this._processInputParams(e),o=this._def;if(r.parsedType!==I.array)return P(r,{code:w.invalid_type,expected:I.array,received:r.parsedType}),B;if(o.exactLength!==null){let i=r.data.length>o.exactLength.value,a=r.data.length<o.exactLength.value;(i||a)&&(P(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&&(P(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&&(P(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 Tt(r,i,r.path,a)))).then(i=>Be.mergeArray(n,i));let s=[...r.data].map((i,a)=>o.type._parseSync(new Tt(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:j.toString(r)}})}max(e,r){return new t({...this._def,maxLength:{value:e,message:j.toString(r)}})}length(e,r){return new t({...this._def,exactLength:{value:e,message:j.toString(r)}})}nonempty(e){return this.min(1,e)}};Sr.create=(t,e)=>new Sr({type:t,minLength:null,maxLength:null,exactLength:null,typeName:T.ZodArray,...J(e)});function co(t){if(t instanceof pt){let e={};for(let r in t.shape){let n=t.shape[r];e[r]=dt.create(co(n))}return new pt({...t._def,shape:()=>e})}else return t instanceof Sr?new Sr({...t._def,type:co(t.element)}):t instanceof dt?dt.create(co(t.unwrap())):t instanceof cr?cr.create(co(t.unwrap())):t instanceof ar?ar.create(t.items.map(e=>co(e))):t}var pt=class t extends Y{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=ne.objectKeys(e);return this._cached={shape:e,keys:r},this._cached}_parse(e){if(this._getType(e)!==I.object){let u=this._getOrReturnCtx(e);return P(u,{code:w.invalid_type,expected:I.object,received:u.parsedType}),B}let{status:n,ctx:o}=this._processInputParams(e),{shape:s,keys:i}=this._getCached(),a=[];if(!(this._def.catchall instanceof qt&&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 Tt(o,d,o.path,u)),alwaysSet:u in o.data})}if(this._def.catchall instanceof qt){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&&(P(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 Tt(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=>Be.mergeObjectSync(n,u)):Be.mergeObjectSync(n,c)}get shape(){return this._def.shape()}strict(e){return j.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:j.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:T.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 ne.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 ne.objectKeys(this.shape))e[n]||(r[n]=this.shape[n]);return new t({...this._def,shape:()=>r})}deepPartial(){return co(this)}partial(e){let r={};for(let n of ne.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 ne.objectKeys(this.shape))if(e&&!e[n])r[n]=this.shape[n];else{let s=this.shape[n];for(;s instanceof dt;)s=s._def.innerType;r[n]=s}return new t({...this._def,shape:()=>r})}keyof(){return Xh(ne.objectKeys(this.shape))}};pt.create=(t,e)=>new pt({shape:()=>t,unknownKeys:"strip",catchall:qt.create(),typeName:T.ZodObject,...J(e)});pt.strictCreate=(t,e)=>new pt({shape:()=>t,unknownKeys:"strict",catchall:qt.create(),typeName:T.ZodObject,...J(e)});pt.lazycreate=(t,e)=>new pt({shape:t,unknownKeys:"strip",catchall:qt.create(),typeName:T.ZodObject,...J(e)});var vn=class extends Y{_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 lt(a.ctx.common.issues));return P(r,{code:w.invalid_union,unionErrors:i}),B}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 lt(c));return P(r,{code:w.invalid_union,unionErrors:a}),B}}get options(){return this._def.options}};vn.create=(t,e)=>new vn({options:t,typeName:T.ZodUnion,...J(e)});var xr=t=>t instanceof bn?xr(t.schema):t instanceof Rt?xr(t.innerType()):t instanceof Sn?[t.value]:t instanceof kn?t.options:t instanceof En?ne.objectValues(t.enum):t instanceof wn?xr(t._def.innerType):t instanceof yn?[void 0]:t instanceof _n?[null]:t instanceof dt?[void 0,...xr(t.unwrap())]:t instanceof cr?[null,...xr(t.unwrap())]:t instanceof hs||t instanceof Rn?xr(t.unwrap()):t instanceof Tn?xr(t._def.innerType):[],Vi=class t extends Y{_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==I.object)return P(r,{code:w.invalid_type,expected:I.object,received:r.parsedType}),B;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}):(P(r,{code:w.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[n]}),B)}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=xr(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:T.ZodDiscriminatedUnion,discriminator:e,options:r,optionsMap:o,...J(n)})}};function Pu(t,e){let r=ir(t),n=ir(e);if(t===e)return{valid:!0,data:t};if(r===I.object&&n===I.object){let o=ne.objectKeys(e),s=ne.objectKeys(t).filter(a=>o.indexOf(a)!==-1),i={...t,...e};for(let a of s){let c=Pu(t[a],e[a]);if(!c.valid)return{valid:!1};i[a]=c.data}return{valid:!0,data:i}}else if(r===I.array&&n===I.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=Pu(i,a);if(!c.valid)return{valid:!1};o.push(c.data)}return{valid:!0,data:o}}else return r===I.date&&n===I.date&&+t==+e?{valid:!0,data:t}:{valid:!1}}var xn=class extends Y{_parse(e){let{status:r,ctx:n}=this._processInputParams(e),o=(s,i)=>{if(qi(s)||qi(i))return B;let a=Pu(s.value,i.value);return a.valid?((Bi(s)||Bi(i))&&r.dirty(),{status:r.value,value:a.data}):(P(n,{code:w.invalid_intersection_types}),B)};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}))}};xn.create=(t,e,r)=>new xn({left:t,right:e,typeName:T.ZodIntersection,...J(r)});var ar=class t extends Y{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==I.array)return P(n,{code:w.invalid_type,expected:I.array,received:n.parsedType}),B;if(n.data.length<this._def.items.length)return P(n,{code:w.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),B;!this._def.rest&&n.data.length>this._def.items.length&&(P(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 Tt(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})}};ar.create=(t,e)=>{if(!Array.isArray(t))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new ar({items:t,typeName:T.ZodTuple,rest:null,...J(e)})};var Wi=class t extends Y{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!==I.object)return P(n,{code:w.invalid_type,expected:I.object,received:n.parsedType}),B;let o=[],s=this._def.keyType,i=this._def.valueType;for(let a in n.data)o.push({key:s._parse(new Tt(n,a,n.path,a)),value:i._parse(new Tt(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 Y?new t({keyType:e,valueType:r,typeName:T.ZodRecord,...J(n)}):new t({keyType:Lr.create(),valueType:e,typeName:T.ZodRecord,...J(r)})}},po=class extends Y{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!==I.map)return P(n,{code:w.invalid_type,expected:I.map,received:n.parsedType}),B;let o=this._def.keyType,s=this._def.valueType,i=[...n.data.entries()].map(([a,c],u)=>({key:o._parse(new Tt(n,a,n.path,[u,"key"])),value:s._parse(new Tt(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 B;(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 B;(u.status==="dirty"||l.status==="dirty")&&r.dirty(),a.set(u.value,l.value)}return{status:r.value,value:a}}}};po.create=(t,e,r)=>new po({valueType:e,keyType:t,typeName:T.ZodMap,...J(r)});var fo=class t extends Y{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==I.set)return P(n,{code:w.invalid_type,expected:I.set,received:n.parsedType}),B;let o=this._def;o.minSize!==null&&n.data.size<o.minSize.value&&(P(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&&(P(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 B;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 Tt(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:j.toString(r)}})}max(e,r){return new t({...this._def,maxSize:{value:e,message:j.toString(r)}})}size(e,r){return this.min(e,r).max(e,r)}nonempty(e){return this.min(1,e)}};fo.create=(t,e)=>new fo({valueType:t,minSize:null,maxSize:null,typeName:T.ZodSet,...J(e)});var Ki=class t extends Y{constructor(){super(...arguments),this.validate=this.implement}_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==I.function)return P(r,{code:w.invalid_type,expected:I.function,received:r.parsedType}),B;function n(a,c){return ms({data:a,path:r.path,errorMaps:[r.common.contextualErrorMap,r.schemaErrorMap,io(),vr].filter(u=>!!u),issueData:{code:w.invalid_arguments,argumentsError:c}})}function o(a,c){return ms({data:a,path:r.path,errorMaps:[r.common.contextualErrorMap,r.schemaErrorMap,io(),vr].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 Hr){let a=this;return et(async function(...c){let u=new lt([]),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 et(function(...c){let u=a._def.args.safeParse(c,s);if(!u.success)throw new lt([n(c,u.error)]);let l=Reflect.apply(i,this,u.data),d=a._def.returns.safeParse(l,s);if(!d.success)throw new lt([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:ar.create(e).rest(br.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||ar.create([]).rest(br.create()),returns:r||br.create(),typeName:T.ZodFunction,...J(n)})}},bn=class extends Y{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})}};bn.create=(t,e)=>new bn({getter:t,typeName:T.ZodLazy,...J(e)});var Sn=class extends Y{_parse(e){if(e.data!==this._def.value){let r=this._getOrReturnCtx(e);return P(r,{received:r.data,code:w.invalid_literal,expected:this._def.value}),B}return{status:"valid",value:e.data}}get value(){return this._def.value}};Sn.create=(t,e)=>new Sn({value:t,typeName:T.ZodLiteral,...J(e)});function Xh(t,e){return new kn({values:t,typeName:T.ZodEnum,...J(e)})}var kn=class t extends Y{_parse(e){if(typeof e.data!="string"){let r=this._getOrReturnCtx(e),n=this._def.values;return P(r,{expected:ne.joinValues(n),received:r.parsedType,code:w.invalid_type}),B}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 P(r,{received:r.data,code:w.invalid_enum_value,options:n}),B}return et(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})}};kn.create=Xh;var En=class extends Y{_parse(e){let r=ne.getValidEnumValues(this._def.values),n=this._getOrReturnCtx(e);if(n.parsedType!==I.string&&n.parsedType!==I.number){let o=ne.objectValues(r);return P(n,{expected:ne.joinValues(o),received:n.parsedType,code:w.invalid_type}),B}if(this._cache||(this._cache=new Set(ne.getValidEnumValues(this._def.values))),!this._cache.has(e.data)){let o=ne.objectValues(r);return P(n,{received:n.data,code:w.invalid_enum_value,options:o}),B}return et(e.data)}get enum(){return this._def.values}};En.create=(t,e)=>new En({values:t,typeName:T.ZodNativeEnum,...J(e)});var Hr=class extends Y{unwrap(){return this._def.type}_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==I.promise&&r.common.async===!1)return P(r,{code:w.invalid_type,expected:I.promise,received:r.parsedType}),B;let n=r.parsedType===I.promise?r.data:Promise.resolve(r.data);return et(n.then(o=>this._def.type.parseAsync(o,{path:r.path,errorMap:r.common.contextualErrorMap})))}};Hr.create=(t,e)=>new Hr({type:t,typeName:T.ZodPromise,...J(e)});var Rt=class extends Y{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===T.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=>{P(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 B;let c=await this._def.schema._parseAsync({data:a,path:n.path,parent:n});return c.status==="aborted"?B:c.status==="dirty"?pn(c.value):r.value==="dirty"?pn(c.value):c});{if(r.value==="aborted")return B;let a=this._def.schema._parseSync({data:i,path:n.path,parent:n});return a.status==="aborted"?B:a.status==="dirty"?pn(a.value):r.value==="dirty"?pn(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"?B:(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"?B:(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(!zr(i))return B;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=>zr(i)?Promise.resolve(o.transform(i.value,s)).then(a=>({status:r.value,value:a})):B);ne.assertNever(o)}};Rt.create=(t,e,r)=>new Rt({schema:t,typeName:T.ZodEffects,effect:e,...J(r)});Rt.createWithPreprocess=(t,e,r)=>new Rt({schema:e,effect:{type:"preprocess",transform:t},typeName:T.ZodEffects,...J(r)});var dt=class extends Y{_parse(e){return this._getType(e)===I.undefined?et(void 0):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};dt.create=(t,e)=>new dt({innerType:t,typeName:T.ZodOptional,...J(e)});var cr=class extends Y{_parse(e){return this._getType(e)===I.null?et(null):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};cr.create=(t,e)=>new cr({innerType:t,typeName:T.ZodNullable,...J(e)});var wn=class extends Y{_parse(e){let{ctx:r}=this._processInputParams(e),n=r.data;return r.parsedType===I.undefined&&(n=this._def.defaultValue()),this._def.innerType._parse({data:n,path:r.path,parent:r})}removeDefault(){return this._def.innerType}};wn.create=(t,e)=>new wn({innerType:t,typeName:T.ZodDefault,defaultValue:typeof e.default=="function"?e.default:()=>e.default,...J(e)});var Tn=class extends Y{_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 ao(o)?o.then(s=>({status:"valid",value:s.status==="valid"?s.value:this._def.catchValue({get error(){return new lt(n.common.issues)},input:n.data})})):{status:"valid",value:o.status==="valid"?o.value:this._def.catchValue({get error(){return new lt(n.common.issues)},input:n.data})}}removeCatch(){return this._def.innerType}};Tn.create=(t,e)=>new Tn({innerType:t,typeName:T.ZodCatch,catchValue:typeof e.catch=="function"?e.catch:()=>e.catch,...J(e)});var mo=class extends Y{_parse(e){if(this._getType(e)!==I.nan){let n=this._getOrReturnCtx(e);return P(n,{code:w.invalid_type,expected:I.nan,received:n.parsedType}),B}return{status:"valid",value:e.data}}};mo.create=t=>new mo({typeName:T.ZodNaN,...J(t)});var Nw=Symbol("zod_brand"),hs=class extends Y{_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}},gs=class t extends Y{_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"?B:s.status==="dirty"?(r.dirty(),pn(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"?B: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:T.ZodPipeline})}},Rn=class extends Y{_parse(e){let r=this._def.innerType._parse(e),n=o=>(zr(o)&&(o.value=Object.freeze(o.value)),o);return ao(r)?r.then(o=>n(o)):n(r)}unwrap(){return this._def.innerType}};Rn.create=(t,e)=>new Rn({innerType:t,typeName:T.ZodReadonly,...J(e)});function Wh(t,e){let r=typeof t=="function"?t(e):typeof t=="string"?{message:t}:t;return typeof r=="string"?{message:r}:r}function Yh(t,e={},r){return t?Ur.create().superRefine((n,o)=>{let s=t(n);if(s instanceof Promise)return s.then(i=>{if(!i){let a=Wh(e,n),c=a.fatal??r??!0;o.addIssue({code:"custom",...a,fatal:c})}});if(!s){let i=Wh(e,n),a=i.fatal??r??!0;o.addIssue({code:"custom",...i,fatal:a})}}):Ur.create()}var Dw={object:pt.lazycreate},T;(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"})(T||(T={}));var Mw=(t,e={message:`Input not instance of ${t.name}`})=>Yh(r=>r instanceof t,e),Qh=Lr.create,eg=fn.create,jw=mo.create,zw=mn.create,tg=hn.create,Lw=gn.create,Uw=uo.create,Hw=yn.create,Fw=_n.create,Zw=Ur.create,qw=br.create,Bw=qt.create,Vw=lo.create,Ww=Sr.create,$u=pt.create,Kw=pt.strictCreate,Gw=vn.create,Jw=Vi.create,Xw=xn.create,Yw=ar.create,Qw=Wi.create,eT=po.create,tT=fo.create,rT=Ki.create,nT=bn.create,oT=Sn.create,sT=kn.create,iT=En.create,aT=Hr.create,cT=Rt.create,uT=dt.create,lT=cr.create,dT=Rt.createWithPreprocess,pT=gs.create,fT=()=>Qh().optional(),mT=()=>eg().optional(),hT=()=>tg().optional(),gT={string:(t=>Lr.create({...t,coerce:!0})),number:(t=>fn.create({...t,coerce:!0})),boolean:(t=>hn.create({...t,coerce:!0})),bigint:(t=>mn.create({...t,coerce:!0})),date:(t=>gn.create({...t,coerce:!0}))};var yT=B;var _T=Object.freeze({status:"aborted"});function S(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 kr=class extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}},Gi={};function vt(t){return t&&Object.assign(Gi,t),Gi}var oe={};Fe(oe,{BIGINT_FORMAT_RANGES:()=>ng,Class:()=>Ou,NUMBER_FORMAT_RANGES:()=>zu,aborted:()=>$n,allowsEval:()=>Du,assert:()=>kT,assertEqual:()=>vT,assertIs:()=>bT,assertNever:()=>ST,assertNotEqual:()=>xT,assignProp:()=>Nu,cached:()=>vs,captureStackTrace:()=>Xi,cleanEnum:()=>MT,cleanRegex:()=>bs,clone:()=>xt,createTransparentProxy:()=>$T,defineLazy:()=>ye,esc:()=>Pn,escapeRegex:()=>Fr,extend:()=>IT,finalizeIssue:()=>Bt,floatSafeRemainder:()=>Au,getElementAtPath:()=>ET,getEnumValues:()=>_s,getLengthableOrigin:()=>Ss,getParsedType:()=>PT,getSizableOrigin:()=>og,isObject:()=>ho,isPlainObject:()=>go,issue:()=>Lu,joinValues:()=>Ji,jsonStringifyReplacer:()=>Iu,merge:()=>AT,normalizeParams:()=>V,nullish:()=>xs,numKeys:()=>RT,omit:()=>OT,optionalKeys:()=>ju,partial:()=>NT,pick:()=>CT,prefixIssues:()=>ur,primitiveTypes:()=>rg,promiseAllObject:()=>wT,propertyKeyTypes:()=>Mu,randomString:()=>TT,required:()=>DT,stringifyPrimitive:()=>Yi,unwrapMessage:()=>ys});function vT(t){return t}function xT(t){return t}function bT(t){}function ST(t){throw new Error}function kT(t){}function _s(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 Ji(t,e="|"){return t.map(r=>Yi(r)).join(e)}function Iu(t,e){return typeof e=="bigint"?e.toString():e}function vs(t){return{get value(){{let r=t();return Object.defineProperty(this,"value",{value:r}),r}throw new Error("cached value already set")}}}function xs(t){return t==null}function bs(t){let e=t.startsWith("^")?1:0,r=t.endsWith("$")?t.length-1:t.length;return t.slice(e,r)}function Au(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 ye(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 Nu(t,e,r){Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!0,configurable:!0})}function ET(t,e){return e?e.reduce((r,n)=>r?.[n],t):t}function wT(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 TT(t=10){let e="abcdefghijklmnopqrstuvwxyz",r="";for(let n=0;n<t;n++)r+=e[Math.floor(Math.random()*e.length)];return r}function Pn(t){return JSON.stringify(t)}var Xi=Error.captureStackTrace?Error.captureStackTrace:(...t)=>{};function ho(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}var Du=vs(()=>{if(typeof navigator<"u"&&navigator?.userAgent?.includes("Cloudflare"))return!1;try{let t=Function;return new t(""),!0}catch{return!1}});function go(t){if(ho(t)===!1)return!1;let e=t.constructor;if(e===void 0)return!0;let r=e.prototype;return!(ho(r)===!1||Object.prototype.hasOwnProperty.call(r,"isPrototypeOf")===!1)}function RT(t){let e=0;for(let r in t)Object.prototype.hasOwnProperty.call(t,r)&&e++;return e}var PT=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}`)}},Mu=new Set(["string","number","symbol"]),rg=new Set(["string","number","bigint","boolean","symbol","undefined"]);function Fr(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function xt(t,e,r){let n=new t._zod.constr(e??t._zod.def);return(!e||r?.parent)&&(n._zod.parent=t),n}function V(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 $T(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 Yi(t){return typeof t=="bigint"?t.toString()+"n":typeof t=="string"?`"${t}"`:`${t}`}function ju(t){return Object.keys(t).filter(e=>t[e]._zod.optin==="optional"&&t[e]._zod.optout==="optional")}var zu={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]},ng={int64:[BigInt("-9223372036854775808"),BigInt("9223372036854775807")],uint64:[BigInt(0),BigInt("18446744073709551615")]};function CT(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 xt(t,{...t._zod.def,shape:r,checks:[]})}function OT(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 xt(t,{...t._zod.def,shape:r,checks:[]})}function IT(t,e){if(!go(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 Nu(this,"shape",n),n},checks:[]};return xt(t,r)}function AT(t,e){return xt(t,{...t._zod.def,get shape(){let r={...t._zod.def.shape,...e._zod.def.shape};return Nu(this,"shape",r),r},catchall:e._zod.def.catchall,checks:[]})}function NT(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 xt(e,{...e._zod.def,shape:o,checks:[]})}function DT(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 xt(e,{...e._zod.def,shape:o,checks:[]})}function $n(t,e=0){for(let r=e;r<t.issues.length;r++)if(t.issues[r]?.continue!==!0)return!0;return!1}function ur(t,e){return e.map(r=>{var n;return(n=r).path??(n.path=[]),r.path.unshift(t),r})}function ys(t){return typeof t=="string"?t:t?.message}function Bt(t,e,r){let n={...t,path:t.path??[]};if(!t.message){let o=ys(t.inst?._zod.def?.error?.(t))??ys(e?.error?.(t))??ys(r.customError?.(t))??ys(r.localeError?.(t))??"Invalid input";n.message=o}return delete n.inst,delete n.continue,e?.reportInput||delete n.input,n}function og(t){return t instanceof Set?"set":t instanceof Map?"map":t instanceof File?"file":"unknown"}function Ss(t){return Array.isArray(t)?"array":typeof t=="string"?"string":"unknown"}function Lu(...t){let[e,r,n]=t;return typeof e=="string"?{message:e,code:"custom",input:r,inst:n}:{...e}}function MT(t){return Object.entries(t).filter(([e,r])=>Number.isNaN(Number.parseInt(e,10))).map(e=>e[1])}var Ou=class{constructor(...e){}};var sg=(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,Iu,2)},enumerable:!0}),Object.defineProperty(t,"toString",{value:()=>t.message,enumerable:!1})},Qi=S("$ZodError",sg),ks=S("$ZodError",sg,{Parent:Error});function Uu(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 Hu(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 Fu=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 kr;if(i.issues.length){let a=new(o?.Err??t)(i.issues.map(c=>Bt(c,s,vt())));throw Xi(a,o?.callee),a}return i.value},Zu=Fu(ks),qu=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=>Bt(c,s,vt())));throw Xi(a,o?.callee),a}return i.value},Bu=qu(ks),Vu=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 kr;return s.issues.length?{success:!1,error:new(t??Qi)(s.issues.map(i=>Bt(i,o,vt())))}:{success:!0,data:s.value}},Cn=Vu(ks),Wu=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=>Bt(i,o,vt())))}:{success:!0,data:s.value}},On=Wu(ks);var ig=/^[cC][^\s-]{8,}$/,ag=/^[0-9a-z]+$/,cg=/^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/,ug=/^[0-9a-vA-V]{20}$/,lg=/^[A-Za-z0-9]{27}$/,dg=/^[a-zA-Z0-9_-]{21}$/,pg=/^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/;var fg=/^([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})$/,Ku=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 mg=/^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/;var zT="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";function hg(){return new RegExp(zT,"u")}var gg=/^(?:(?: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])$/,yg=/^(([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})$/,_g=/^((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])$/,vg=/^(([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])$/,xg=/^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,Gu=/^[A-Za-z0-9_-]*$/,bg=/^([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+$/;var Sg=/^\+(?:[0-9]){6,14}[0-9]$/,kg="(?:(?:\\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])))",Eg=new RegExp(`^${kg}$`);function wg(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 Tg(t){return new RegExp(`^${wg(t)}$`)}function Rg(t){let e=wg({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(`^${kg}T(?:${n})$`)}var Pg=t=>{let e=t?`[\\s\\S]{${t?.minimum??0},${t?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${e}$`)};var $g=/^\d+$/,Cg=/^-?\d+(?:\.\d+)?/i,Og=/true|false/i,Ig=/null/i;var Ag=/^[^A-Z]*$/,Ng=/^[^a-z]*$/;var Ve=S("$ZodCheck",(t,e)=>{var r;t._zod??(t._zod={}),t._zod.def=e,(r=t._zod).onattach??(r.onattach=[])}),Dg={number:"number",bigint:"bigint",object:"date"},Ju=S("$ZodCheckLessThan",(t,e)=>{Ve.init(t,e);let r=Dg[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})}}),Xu=S("$ZodCheckGreaterThan",(t,e)=>{Ve.init(t,e);let r=Dg[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})}}),Mg=S("$ZodCheckMultipleOf",(t,e)=>{Ve.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):Au(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})}}),jg=S("$ZodCheckNumberFormat",(t,e)=>{Ve.init(t,e),e.format=e.format||"float64";let r=e.format?.includes("int"),n=r?"int":"number",[o,s]=zu[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=$g)}),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 zg=S("$ZodCheckMaxLength",(t,e)=>{var r;Ve.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!xs(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=Ss(o);n.issues.push({origin:i,code:"too_big",maximum:e.maximum,inclusive:!0,input:o,inst:t,continue:!e.abort})}}),Lg=S("$ZodCheckMinLength",(t,e)=>{var r;Ve.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!xs(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=Ss(o);n.issues.push({origin:i,code:"too_small",minimum:e.minimum,inclusive:!0,input:o,inst:t,continue:!e.abort})}}),Ug=S("$ZodCheckLengthEquals",(t,e)=>{var r;Ve.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!xs(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=Ss(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})}}),Es=S("$ZodCheckStringFormat",(t,e)=>{var r,n;Ve.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=()=>{})}),Hg=S("$ZodCheckRegex",(t,e)=>{Es.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})}}),Fg=S("$ZodCheckLowerCase",(t,e)=>{e.pattern??(e.pattern=Ag),Es.init(t,e)}),Zg=S("$ZodCheckUpperCase",(t,e)=>{e.pattern??(e.pattern=Ng),Es.init(t,e)}),qg=S("$ZodCheckIncludes",(t,e)=>{Ve.init(t,e);let r=Fr(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})}}),Bg=S("$ZodCheckStartsWith",(t,e)=>{Ve.init(t,e);let r=new RegExp(`^${Fr(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})}}),Vg=S("$ZodCheckEndsWith",(t,e)=>{Ve.init(t,e);let r=new RegExp(`.*${Fr(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 Wg=S("$ZodCheckOverwrite",(t,e)=>{Ve.init(t,e),t._zod.check=r=>{r.value=e.tx(r.value)}});var ta=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(`
|
|
165
|
+
Use context-mode MCP tools (execute, execute_file, batch_execute, fetch_and_index, search) instead of bash/cat/curl for data-heavy operations.`}}getProjectDir(e){return e.cwd??process.env.KIMI_PROJECT_DIR??process.cwd()}extractSessionId(e){return e.session_id?e.session_id:`pid-${process.ppid}`}backupFile(e,r=""){let n=r?`${e}${r}-${new Date().toISOString().replace(/[:.]/g,"-")}.bak`:`${e}.bak`;return Sz(e,n),n}isExpectedHookEntry(e,r,n){return e==="PreToolUse"&&r.matcher!==n.matcher?!1:this.entryContainsManagedCommand(e,r)}entryContainsManagedCommand(e,r){let n=(r.command??"").replace(/\\/g,"/"),o=(fn[e]??"").replace(/\\/g,"/"),s=wz[e]??[];return n.includes(o)||s.some(i=>n.includes(i))}rebuildToml(e,r,n){let o=e.split(/\r?\n/),s=[],i=!1;for(let c of o){if(/^\s*\[\[hooks\]\]\s*(?:#.*)?$/.test(c)){i=!0;continue}if(i){/^\s*\[/.test(c)&&(i=!1,s.push(c));continue}s.push(c)}for(;s.length>0&&s[s.length-1]==="";)s.pop();s.length>0&&s.push("");let a=[...r,...n];if(a.length>0)for(let c of a)s.push(Tz(c)),s.push("");return s.join(`
|
|
166
|
+
`)}}});var au={};He(au,{PLATFORM_ENV_VARS:()=>ls,__resetClaudeCodePluginCacheForTests:()=>Cz,__seedClaudeCodePluginCacheMissForTests:()=>Oz,detectPlatform:()=>zr,foreignIdentificationEnv:()=>Dz,foreignWorkspaceEnv:()=>Nz,getAdapter:()=>Mz,getEnvVarNames:()=>Az,getSessionDirSegments:()=>Hi,workspaceEnvVarsFor:()=>Ch});import{existsSync as vt,readFileSync as Rz}from"node:fs";import{resolve as lt}from"node:path";import{homedir as TE}from"node:os";function $z(){if(ao!==null)return ao!=="miss"&&ao.hasCM;try{let t=lt(TE(),".claude","plugins","installed_plugins.json"),e=Rz(t,"utf-8"),r=JSON.parse(e),o=[...Object.keys(r.plugins??{}),...Object.keys(r.enabledPlugins??{})].some(s=>s.includes("context-mode"));return ao={hasCM:o},o}catch{return ao="miss",!1}}function Cz(){ao=null}function Oz(){ao="miss"}function Az(t){return(ls.get(t)??[]).map(e=>e.name)}function Ch(t){return(ls.get(t)??[]).filter(e=>e.role==="workspace").map(e=>e.name)}function Nz(t){let e=new Set;for(let[r,n]of ls)if(r!==t)for(let o of n)o.role==="workspace"&&e.add(o.name);return e}function Dz(t){let e=new Set;for(let[r,n]of ls)if(r!==t)for(let o of n)o.role==="identification"&&e.add(o.name);return e}function Hi(t){switch(t){case"claude-code":return[".claude"];case"gemini-cli":return[".gemini"];case"antigravity":return[".gemini"];case"openclaw":return[".openclaw"];case"codex":return[".codex"];case"cursor":return[".cursor"];case"vscode-copilot":return[".vscode"];case"kiro":return[".kiro"];case"pi":return[".pi"];case"omp":return[".omp"];case"qwen-code":return[".qwen"];case"kimi":return[".kimi-code"];case"kilo":return[".config","kilo"];case"opencode":return[".config","opencode"];case"zed":return[".config","zed"];case"jetbrains-copilot":return[".config","JetBrains"];default:return null}}function zr(t){if(t?.name){let n=Ab[t.name];if(n)return{platform:n,confidence:"high",reason:`MCP clientInfo.name="${t.name}"`};if(t.name.startsWith("qwen-cli-mcp-client"))return{platform:"qwen-code",confidence:"high",reason:`MCP clientInfo.name="${t.name}" (qwen-cli pattern)`}}let e=process.env.CONTEXT_MODE_PLATFORM;if(e&&["claude-code","gemini-cli","kilo","opencode","codex","vscode-copilot","jetbrains-copilot","cursor","antigravity","kiro","pi","omp","zed","qwen-code","kimi"].includes(e))return{platform:e,confidence:"high",reason:`CONTEXT_MODE_PLATFORM=${e} override`};for(let[n,o]of ls)if(o.some(s=>s.detect!==!1&&process.env[s.name]))return n==="vscode-copilot"&&$z()?{platform:"claude-code",confidence:"high",reason:"VSCODE_PID set but ~/.claude/plugins/installed_plugins.json lists context-mode (issue #539 fallback)"}:{platform:n,confidence:"high",reason:`${o.filter(s=>s.detect!==!1).map(s=>s.name).join(" or ")} env var set`};let r=TE();return vt(lt(r,".claude"))?{platform:"claude-code",confidence:"medium",reason:"~/.claude/ directory exists"}:vt(lt(r,".gemini"))?{platform:"gemini-cli",confidence:"medium",reason:"~/.gemini/ directory exists"}:vt(lt(r,".codex"))?{platform:"codex",confidence:"medium",reason:"~/.codex/ directory exists"}:vt(lt(r,".kiro"))?{platform:"kiro",confidence:"medium",reason:"~/.kiro/ directory exists"}:vt(lt(r,".omp"))?{platform:"omp",confidence:"medium",reason:"~/.omp/ directory exists"}:vt(lt(r,".pi"))?{platform:"pi",confidence:"medium",reason:"~/.pi/ directory exists"}:vt(lt(r,".qwen"))?{platform:"qwen-code",confidence:"medium",reason:"~/.qwen/ directory exists"}:vt(lt(r,".kimi-code"))?{platform:"kimi",confidence:"medium",reason:"~/.kimi-code/ directory exists"}:vt(lt(r,".openclaw"))?{platform:"openclaw",confidence:"medium",reason:"~/.openclaw/ directory exists"}:vt(lt(r,".cursor"))?{platform:"cursor",confidence:"medium",reason:"~/.cursor/ directory exists"}:vt(lt(r,".config","kilo"))?{platform:"kilo",confidence:"medium",reason:"~/.config/kilo/ directory exists"}:vt(lt(r,".config","JetBrains"))?{platform:"jetbrains-copilot",confidence:"medium",reason:"~/.config/JetBrains/ directory exists"}:vt(lt(r,".config","opencode"))?{platform:"opencode",confidence:"medium",reason:"~/.config/opencode/ directory exists"}:vt(lt(r,".config","zed"))?{platform:"zed",confidence:"medium",reason:"~/.config/zed/ directory exists"}:{platform:"claude-code",confidence:"low",reason:"No platform detected, defaulting to Claude Code"}}async function Mz(t){let e=t??zr().platform;switch(e){case"claude-code":{let{ClaudeCodeAdapter:r}=await Promise.resolve().then(()=>(Bm(),Zm));return new r}case"gemini-cli":{let{GeminiCLIAdapter:r}=await Promise.resolve().then(()=>(pk(),dk));return new r}case"kilo":case"opencode":{let{OpenCodeAdapter:r}=await Promise.resolve().then(()=>(gk(),hk));return new r(e)}case"openclaw":{let{OpenClawAdapter:r}=await Promise.resolve().then(()=>(xk(),_k));return new r}case"codex":{let{CodexAdapter:r}=await Promise.resolve().then(()=>(Rk(),Pk));return new r}case"vscode-copilot":{let{VSCodeCopilotAdapter:r}=await Promise.resolve().then(()=>(Nk(),Ak));return new r}case"jetbrains-copilot":{let{JetBrainsCopilotAdapter:r}=await Promise.resolve().then(()=>(zk(),jk));return new r}case"cursor":{let{CursorAdapter:r}=await Promise.resolve().then(()=>(Wk(),Vk));return new r}case"antigravity":{let{AntigravityAdapter:r}=await Promise.resolve().then(()=>(Jk(),Gk));return new r}case"kiro":{let{KiroAdapter:r}=await Promise.resolve().then(()=>(nE(),rE));return new r}case"zed":{let{ZedAdapter:r}=await Promise.resolve().then(()=>(aE(),iE));return new r}case"qwen-code":{let{QwenCodeAdapter:r}=await Promise.resolve().then(()=>(pE(),dE));return new r}case"omp":{let{OMPAdapter:r}=await Promise.resolve().then(()=>(mE(),fE));return new r}case"pi":{let{PiAdapter:r}=await Promise.resolve().then(()=>(gE(),hE));return new r}case"kimi":{let{KimiAdapter:r}=await Promise.resolve().then(()=>(wE(),EE));return new r}default:{let{ClaudeCodeAdapter:r}=await Promise.resolve().then(()=>(Bm(),Zm));return new r}}}var ao,Iz,ls,co=ne(()=>{"use strict";Nb();ao=null;Iz=[["claude-code",[{name:"CLAUDE_CODE_ENTRYPOINT",role:"identification"},{name:"CLAUDE_PLUGIN_ROOT",role:"identification"},{name:"CLAUDE_PROJECT_DIR",role:"workspace"},{name:"CLAUDE_SESSION_ID",role:"identification"}]],["antigravity",[{name:"ANTIGRAVITY_CLI_ALIAS",role:"identification"}]],["cursor",[{name:"CURSOR_CWD",role:"workspace"},{name:"CURSOR_TRACE_ID",role:"identification"},{name:"CURSOR_CLI",role:"identification"}]],["kilo",[{name:"KILO",role:"identification"},{name:"KILO_PID",role:"identification"}]],["opencode",[{name:"OPENCODE_PROJECT_DIR",role:"workspace"},{name:"OPENCODE_CLIENT",role:"identification"},{name:"OPENCODE_TERMINAL",role:"identification"},{name:"OPENCODE",role:"identification"},{name:"OPENCODE_PID",role:"identification"}]],["zed",[{name:"ZED_SESSION_ID",role:"identification"},{name:"ZED_TERM",role:"identification"}]],["codex",[{name:"CODEX_THREAD_ID",role:"identification"},{name:"CODEX_CI",role:"identification"}]],["gemini-cli",[{name:"GEMINI_PROJECT_DIR",role:"workspace"},{name:"GEMINI_CLI",role:"identification"}]],["vscode-copilot",[{name:"VSCODE_CWD",role:"workspace"},{name:"VSCODE_PID",role:"identification"}]],["jetbrains-copilot",[{name:"IDEA_INITIAL_DIRECTORY",role:"workspace"}]],["qwen-code",[{name:"QWEN_PROJECT_DIR",role:"workspace"}]],["omp",[{name:"PI_CODING_AGENT_DIR",role:"workspace"}]],["pi",[{name:"PI_WORKSPACE_DIR",role:"workspace",detect:!1},{name:"PI_PROJECT_DIR",role:"workspace",detect:!1},{name:"PI_CONFIG_DIR",role:"identification"},{name:"PI_SESSION_FILE",role:"identification"},{name:"PI_COMPILED",role:"identification"}]]],ls=new Map(Iz)});import{resolve as Ui}from"node:path";import{homedir as Oh}from"node:os";function wt(t=process.env){let e=t.CLAUDE_CONFIG_DIR;return e&&e.trim()!==""?e.startsWith("~")?Ui(Oh(),e.replace(/^~[/\\]?/,"")):Ui(e):Ui(Oh(),".claude")}function jz(t=process.env){return Ui(wt(t),"settings.json")}function Ih(t=process.env){let e=[],r=zr();if(r.platform!=="claude-code"){let o=Hi(r.platform);o&&o.length>0&&e.push(Ui(Oh(),...o,"settings.json"))}let n=jz(t);return e.includes(n)||e.push(n),e}var Xn=ne(()=>{"use strict";co()});var O={};He(O,{BRAND:()=>gT,DIRTY:()=>gn,EMPTY_PATH:()=>Kw,INVALID:()=>q,NEVER:()=>QT,OK:()=>tt,ParseStatus:()=>Ve,Schema:()=>Y,ZodAny:()=>qr,ZodArray:()=>Pr,ZodBigInt:()=>_n,ZodBoolean:()=>xn,ZodBranded:()=>Ss,ZodCatch:()=>Cn,ZodDate:()=>Sn,ZodDefault:()=>$n,ZodDiscriminatedUnion:()=>Qi,ZodEffects:()=>Ot,ZodEnum:()=>Pn,ZodError:()=>pt,ZodFirstPartyTypeKind:()=>P,ZodFunction:()=>ta,ZodIntersection:()=>En,ZodIssueCode:()=>w,ZodLazy:()=>wn,ZodLiteral:()=>Tn,ZodMap:()=>yo,ZodNaN:()=>xo,ZodNativeEnum:()=>Rn,ZodNever:()=>Kt,ZodNull:()=>bn,ZodNullable:()=>dr,ZodNumber:()=>yn,ZodObject:()=>mt,ZodOptional:()=>ft,ZodParsedType:()=>D,ZodPipeline:()=>vs,ZodPromise:()=>Vr,ZodReadonly:()=>On,ZodRecord:()=>ea,ZodSchema:()=>Y,ZodSet:()=>_o,ZodString:()=>Br,ZodSymbol:()=>ho,ZodTransformer:()=>Ot,ZodTuple:()=>lr,ZodType:()=>Y,ZodUndefined:()=>vn,ZodUnion:()=>kn,ZodUnknown:()=>Tr,ZodVoid:()=>go,addIssueToContext:()=>I,any:()=>wT,array:()=>$T,bigint:()=>ST,boolean:()=>vg,coerce:()=>YT,custom:()=>_g,date:()=>vT,datetimeRegex:()=>gg,defaultErrorMap:()=>Er,discriminatedUnion:()=>IT,effect:()=>BT,enum:()=>UT,function:()=>zT,getErrorMap:()=>po,getParsedType:()=>ur,instanceof:()=>_T,intersection:()=>AT,isAborted:()=>Xi,isAsync:()=>fo,isDirty:()=>Yi,isValid:()=>Zr,late:()=>yT,lazy:()=>LT,literal:()=>HT,makeIssue:()=>xs,map:()=>MT,nan:()=>xT,nativeEnum:()=>FT,never:()=>PT,null:()=>ET,nullable:()=>VT,number:()=>Sg,object:()=>Lu,objectUtil:()=>Mu,oboolean:()=>XT,onumber:()=>JT,optional:()=>qT,ostring:()=>GT,pipeline:()=>KT,preprocess:()=>WT,promise:()=>ZT,quotelessJson:()=>qw,record:()=>DT,set:()=>jT,setErrorMap:()=>Ww,strictObject:()=>CT,string:()=>xg,symbol:()=>bT,transformer:()=>BT,tuple:()=>NT,undefined:()=>kT,union:()=>OT,unknown:()=>TT,util:()=>oe,void:()=>RT});var oe;(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})(oe||(oe={}));var Mu;(function(t){t.mergeShapes=(e,r)=>({...e,...r})})(Mu||(Mu={}));var D=oe.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),ur=t=>{switch(typeof t){case"undefined":return D.undefined;case"string":return D.string;case"number":return Number.isNaN(t)?D.nan:D.number;case"boolean":return D.boolean;case"function":return D.function;case"bigint":return D.bigint;case"symbol":return D.symbol;case"object":return Array.isArray(t)?D.array:t===null?D.null:t.then&&typeof t.then=="function"&&t.catch&&typeof t.catch=="function"?D.promise:typeof Map<"u"&&t instanceof Map?D.map:typeof Set<"u"&&t instanceof Set?D.set:typeof Date<"u"&&t instanceof Date?D.date:D.object;default:return D.unknown}};var w=oe.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"]),qw=t=>JSON.stringify(t,null,2).replace(/"([^"]+)":/g,"$1:"),pt=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,oe.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()}};pt.create=t=>new pt(t);var Vw=(t,e)=>{let r;switch(t.code){case w.invalid_type:t.received===D.undefined?r="Required":r=`Expected ${t.expected}, received ${t.received}`;break;case w.invalid_literal:r=`Invalid literal value, expected ${JSON.stringify(t.expected,oe.jsonStringifyReplacer)}`;break;case w.unrecognized_keys:r=`Unrecognized key(s) in object: ${oe.joinValues(t.keys,", ")}`;break;case w.invalid_union:r="Invalid input";break;case w.invalid_union_discriminator:r=`Invalid discriminator value. Expected ${oe.joinValues(t.options)}`;break;case w.invalid_enum_value:r=`Invalid enum value. Expected ${oe.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}"`:oe.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,oe.assertNever(t)}return{message:r}},Er=Vw;var dg=Er;function Ww(t){dg=t}function po(){return dg}var xs=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}},Kw=[];function I(t,e){let r=po(),n=xs({issueData:e,data:t.data,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,r,r===Er?void 0:Er].filter(o=>!!o)});t.common.issues.push(n)}var Ve=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 q;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 q;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}}},q=Object.freeze({status:"aborted"}),gn=t=>({status:"dirty",value:t}),tt=t=>({status:"valid",value:t}),Xi=t=>t.status==="aborted",Yi=t=>t.status==="dirty",Zr=t=>t.status==="valid",fo=t=>typeof Promise<"u"&&t instanceof Promise;var j;(function(t){t.errToObj=e=>typeof e=="string"?{message:e}:e||{},t.toString=e=>typeof e=="string"?e:e?.message})(j||(j={}));var Ct=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}},pg=(t,e)=>{if(Zr(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 pt(t.common.issues);return this._error=r,this._error}}};function J(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 Y=class{get description(){return this._def.description}_getType(e){return ur(e.data)}_getOrReturnCtx(e,r){return r||{common:e.parent.common,data:e.data,parsedType:ur(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}_processInputParams(e){return{status:new Ve,ctx:{common:e.parent.common,data:e.data,parsedType:ur(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}}_parseSync(e){let r=this._parse(e);if(fo(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:ur(e)},o=this._parseSync({data:e,path:n.path,parent:n});return pg(n,o)}"~validate"(e){let r={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:ur(e)};if(!this["~standard"].async)try{let n=this._parseSync({data:e,path:[],parent:r});return Zr(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=>Zr(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:ur(e)},o=this._parse({data:e,path:n.path,parent:n}),s=await(fo(o)?o:Promise.resolve(o));return pg(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 Ot({schema:this,typeName:P.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 ft.create(this,this._def)}nullable(){return dr.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return Pr.create(this)}promise(){return Vr.create(this,this._def)}or(e){return kn.create([this,e],this._def)}and(e){return En.create(this,e,this._def)}transform(e){return new Ot({...J(this._def),schema:this,typeName:P.ZodEffects,effect:{type:"transform",transform:e}})}default(e){let r=typeof e=="function"?e:()=>e;return new $n({...J(this._def),innerType:this,defaultValue:r,typeName:P.ZodDefault})}brand(){return new Ss({typeName:P.ZodBranded,type:this,...J(this._def)})}catch(e){let r=typeof e=="function"?e:()=>e;return new Cn({...J(this._def),innerType:this,catchValue:r,typeName:P.ZodCatch})}describe(e){let r=this.constructor;return new r({...this._def,description:e})}pipe(e){return vs.create(this,e)}readonly(){return On.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}},Gw=/^c[^\s-]{8,}$/i,Jw=/^[0-9a-z]+$/,Xw=/^[0-9A-HJKMNP-TV-Z]{26}$/i,Yw=/^[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,Qw=/^[a-z0-9_-]{21}$/i,eT=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/,tT=/^[-+]?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)?)??$/,rT=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,nT="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$",ju,oT=/^(?:(?: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])$/,sT=/^(?:(?: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])$/,iT=/^(([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]))$/,aT=/^(([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])$/,cT=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,uT=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,mg="((\\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])))",lT=new RegExp(`^${mg}$`);function hg(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 dT(t){return new RegExp(`^${hg(t)}$`)}function gg(t){let e=`${mg}T${hg(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 pT(t,e){return!!((e==="v4"||!e)&&oT.test(t)||(e==="v6"||!e)&&iT.test(t))}function fT(t,e){if(!eT.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 mT(t,e){return!!((e==="v4"||!e)&&sT.test(t)||(e==="v6"||!e)&&aT.test(t))}var Br=class t extends Y{_parse(e){if(this._def.coerce&&(e.data=String(e.data)),this._getType(e)!==D.string){let s=this._getOrReturnCtx(e);return I(s,{code:w.invalid_type,expected:D.string,received:s.parsedType}),q}let n=new Ve,o;for(let s of this._def.checks)if(s.kind==="min")e.data.length<s.value&&(o=this._getOrReturnCtx(e,o),I(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),I(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?I(o,{code:w.too_big,maximum:s.value,type:"string",inclusive:!0,exact:!0,message:s.message}):a&&I(o,{code:w.too_small,minimum:s.value,type:"string",inclusive:!0,exact:!0,message:s.message}),n.dirty())}else if(s.kind==="email")rT.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"email",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="emoji")ju||(ju=new RegExp(nT,"u")),ju.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"emoji",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="uuid")Yw.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"uuid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="nanoid")Qw.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"nanoid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="cuid")Gw.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"cuid",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="cuid2")Jw.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"cuid2",code:w.invalid_string,message:s.message}),n.dirty());else if(s.kind==="ulid")Xw.test(e.data)||(o=this._getOrReturnCtx(e,o),I(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),I(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),I(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),I(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),I(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),I(o,{code:w.invalid_string,validation:{endsWith:s.value},message:s.message}),n.dirty()):s.kind==="datetime"?gg(s).test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{code:w.invalid_string,validation:"datetime",message:s.message}),n.dirty()):s.kind==="date"?lT.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{code:w.invalid_string,validation:"date",message:s.message}),n.dirty()):s.kind==="time"?dT(s).test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{code:w.invalid_string,validation:"time",message:s.message}),n.dirty()):s.kind==="duration"?tT.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"duration",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="ip"?pT(e.data,s.version)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"ip",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="jwt"?fT(e.data,s.alg)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"jwt",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="cidr"?mT(e.data,s.version)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"cidr",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="base64"?cT.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"base64",code:w.invalid_string,message:s.message}),n.dirty()):s.kind==="base64url"?uT.test(e.data)||(o=this._getOrReturnCtx(e,o),I(o,{validation:"base64url",code:w.invalid_string,message:s.message}),n.dirty()):oe.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,...j.errToObj(n)})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}email(e){return this._addCheck({kind:"email",...j.errToObj(e)})}url(e){return this._addCheck({kind:"url",...j.errToObj(e)})}emoji(e){return this._addCheck({kind:"emoji",...j.errToObj(e)})}uuid(e){return this._addCheck({kind:"uuid",...j.errToObj(e)})}nanoid(e){return this._addCheck({kind:"nanoid",...j.errToObj(e)})}cuid(e){return this._addCheck({kind:"cuid",...j.errToObj(e)})}cuid2(e){return this._addCheck({kind:"cuid2",...j.errToObj(e)})}ulid(e){return this._addCheck({kind:"ulid",...j.errToObj(e)})}base64(e){return this._addCheck({kind:"base64",...j.errToObj(e)})}base64url(e){return this._addCheck({kind:"base64url",...j.errToObj(e)})}jwt(e){return this._addCheck({kind:"jwt",...j.errToObj(e)})}ip(e){return this._addCheck({kind:"ip",...j.errToObj(e)})}cidr(e){return this._addCheck({kind:"cidr",...j.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,...j.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,...j.errToObj(e?.message)})}duration(e){return this._addCheck({kind:"duration",...j.errToObj(e)})}regex(e,r){return this._addCheck({kind:"regex",regex:e,...j.errToObj(r)})}includes(e,r){return this._addCheck({kind:"includes",value:e,position:r?.position,...j.errToObj(r?.message)})}startsWith(e,r){return this._addCheck({kind:"startsWith",value:e,...j.errToObj(r)})}endsWith(e,r){return this._addCheck({kind:"endsWith",value:e,...j.errToObj(r)})}min(e,r){return this._addCheck({kind:"min",value:e,...j.errToObj(r)})}max(e,r){return this._addCheck({kind:"max",value:e,...j.errToObj(r)})}length(e,r){return this._addCheck({kind:"length",value:e,...j.errToObj(r)})}nonempty(e){return this.min(1,j.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}};Br.create=t=>new Br({checks:[],typeName:P.ZodString,coerce:t?.coerce??!1,...J(t)});function hT(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 yn=class t extends Y{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)!==D.number){let s=this._getOrReturnCtx(e);return I(s,{code:w.invalid_type,expected:D.number,received:s.parsedType}),q}let n,o=new Ve;for(let s of this._def.checks)s.kind==="int"?oe.isInteger(e.data)||(n=this._getOrReturnCtx(e,n),I(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),I(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),I(n,{code:w.too_big,maximum:s.value,type:"number",inclusive:s.inclusive,exact:!1,message:s.message}),o.dirty()):s.kind==="multipleOf"?hT(e.data,s.value)!==0&&(n=this._getOrReturnCtx(e,n),I(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),I(n,{code:w.not_finite,message:s.message}),o.dirty()):oe.assertNever(s);return{status:o.value,value:e.data}}gte(e,r){return this.setLimit("min",e,!0,j.toString(r))}gt(e,r){return this.setLimit("min",e,!1,j.toString(r))}lte(e,r){return this.setLimit("max",e,!0,j.toString(r))}lt(e,r){return this.setLimit("max",e,!1,j.toString(r))}setLimit(e,r,n,o){return new t({...this._def,checks:[...this._def.checks,{kind:e,value:r,inclusive:n,message:j.toString(o)}]})}_addCheck(e){return new t({...this._def,checks:[...this._def.checks,e]})}int(e){return this._addCheck({kind:"int",message:j.toString(e)})}positive(e){return this._addCheck({kind:"min",value:0,inclusive:!1,message:j.toString(e)})}negative(e){return this._addCheck({kind:"max",value:0,inclusive:!1,message:j.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:0,inclusive:!0,message:j.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:0,inclusive:!0,message:j.toString(e)})}multipleOf(e,r){return this._addCheck({kind:"multipleOf",value:e,message:j.toString(r)})}finite(e){return this._addCheck({kind:"finite",message:j.toString(e)})}safe(e){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:j.toString(e)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:j.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"&&oe.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)}};yn.create=t=>new yn({checks:[],typeName:P.ZodNumber,coerce:t?.coerce||!1,...J(t)});var _n=class t extends Y{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)!==D.bigint)return this._getInvalidInput(e);let n,o=new Ve;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),I(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),I(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),I(n,{code:w.not_multiple_of,multipleOf:s.value,message:s.message}),o.dirty()):oe.assertNever(s);return{status:o.value,value:e.data}}_getInvalidInput(e){let r=this._getOrReturnCtx(e);return I(r,{code:w.invalid_type,expected:D.bigint,received:r.parsedType}),q}gte(e,r){return this.setLimit("min",e,!0,j.toString(r))}gt(e,r){return this.setLimit("min",e,!1,j.toString(r))}lte(e,r){return this.setLimit("max",e,!0,j.toString(r))}lt(e,r){return this.setLimit("max",e,!1,j.toString(r))}setLimit(e,r,n,o){return new t({...this._def,checks:[...this._def.checks,{kind:e,value:r,inclusive:n,message:j.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:j.toString(e)})}negative(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:j.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:j.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:j.toString(e)})}multipleOf(e,r){return this._addCheck({kind:"multipleOf",value:e,message:j.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}};_n.create=t=>new _n({checks:[],typeName:P.ZodBigInt,coerce:t?.coerce??!1,...J(t)});var xn=class extends Y{_parse(e){if(this._def.coerce&&(e.data=!!e.data),this._getType(e)!==D.boolean){let n=this._getOrReturnCtx(e);return I(n,{code:w.invalid_type,expected:D.boolean,received:n.parsedType}),q}return tt(e.data)}};xn.create=t=>new xn({typeName:P.ZodBoolean,coerce:t?.coerce||!1,...J(t)});var Sn=class t extends Y{_parse(e){if(this._def.coerce&&(e.data=new Date(e.data)),this._getType(e)!==D.date){let s=this._getOrReturnCtx(e);return I(s,{code:w.invalid_type,expected:D.date,received:s.parsedType}),q}if(Number.isNaN(e.data.getTime())){let s=this._getOrReturnCtx(e);return I(s,{code:w.invalid_date}),q}let n=new Ve,o;for(let s of this._def.checks)s.kind==="min"?e.data.getTime()<s.value&&(o=this._getOrReturnCtx(e,o),I(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),I(o,{code:w.too_big,message:s.message,inclusive:!0,exact:!1,maximum:s.value,type:"date"}),n.dirty()):oe.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:j.toString(r)})}max(e,r){return this._addCheck({kind:"max",value:e.getTime(),message:j.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}};Sn.create=t=>new Sn({checks:[],coerce:t?.coerce||!1,typeName:P.ZodDate,...J(t)});var ho=class extends Y{_parse(e){if(this._getType(e)!==D.symbol){let n=this._getOrReturnCtx(e);return I(n,{code:w.invalid_type,expected:D.symbol,received:n.parsedType}),q}return tt(e.data)}};ho.create=t=>new ho({typeName:P.ZodSymbol,...J(t)});var vn=class extends Y{_parse(e){if(this._getType(e)!==D.undefined){let n=this._getOrReturnCtx(e);return I(n,{code:w.invalid_type,expected:D.undefined,received:n.parsedType}),q}return tt(e.data)}};vn.create=t=>new vn({typeName:P.ZodUndefined,...J(t)});var bn=class extends Y{_parse(e){if(this._getType(e)!==D.null){let n=this._getOrReturnCtx(e);return I(n,{code:w.invalid_type,expected:D.null,received:n.parsedType}),q}return tt(e.data)}};bn.create=t=>new bn({typeName:P.ZodNull,...J(t)});var qr=class extends Y{constructor(){super(...arguments),this._any=!0}_parse(e){return tt(e.data)}};qr.create=t=>new qr({typeName:P.ZodAny,...J(t)});var Tr=class extends Y{constructor(){super(...arguments),this._unknown=!0}_parse(e){return tt(e.data)}};Tr.create=t=>new Tr({typeName:P.ZodUnknown,...J(t)});var Kt=class extends Y{_parse(e){let r=this._getOrReturnCtx(e);return I(r,{code:w.invalid_type,expected:D.never,received:r.parsedType}),q}};Kt.create=t=>new Kt({typeName:P.ZodNever,...J(t)});var go=class extends Y{_parse(e){if(this._getType(e)!==D.undefined){let n=this._getOrReturnCtx(e);return I(n,{code:w.invalid_type,expected:D.void,received:n.parsedType}),q}return tt(e.data)}};go.create=t=>new go({typeName:P.ZodVoid,...J(t)});var Pr=class t extends Y{_parse(e){let{ctx:r,status:n}=this._processInputParams(e),o=this._def;if(r.parsedType!==D.array)return I(r,{code:w.invalid_type,expected:D.array,received:r.parsedType}),q;if(o.exactLength!==null){let i=r.data.length>o.exactLength.value,a=r.data.length<o.exactLength.value;(i||a)&&(I(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&&(I(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&&(I(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 Ct(r,i,r.path,a)))).then(i=>Ve.mergeArray(n,i));let s=[...r.data].map((i,a)=>o.type._parseSync(new Ct(r,i,r.path,a)));return Ve.mergeArray(n,s)}get element(){return this._def.type}min(e,r){return new t({...this._def,minLength:{value:e,message:j.toString(r)}})}max(e,r){return new t({...this._def,maxLength:{value:e,message:j.toString(r)}})}length(e,r){return new t({...this._def,exactLength:{value:e,message:j.toString(r)}})}nonempty(e){return this.min(1,e)}};Pr.create=(t,e)=>new Pr({type:t,minLength:null,maxLength:null,exactLength:null,typeName:P.ZodArray,...J(e)});function mo(t){if(t instanceof mt){let e={};for(let r in t.shape){let n=t.shape[r];e[r]=ft.create(mo(n))}return new mt({...t._def,shape:()=>e})}else return t instanceof Pr?new Pr({...t._def,type:mo(t.element)}):t instanceof ft?ft.create(mo(t.unwrap())):t instanceof dr?dr.create(mo(t.unwrap())):t instanceof lr?lr.create(t.items.map(e=>mo(e))):t}var mt=class t extends Y{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=oe.objectKeys(e);return this._cached={shape:e,keys:r},this._cached}_parse(e){if(this._getType(e)!==D.object){let u=this._getOrReturnCtx(e);return I(u,{code:w.invalid_type,expected:D.object,received:u.parsedType}),q}let{status:n,ctx:o}=this._processInputParams(e),{shape:s,keys:i}=this._getCached(),a=[];if(!(this._def.catchall instanceof Kt&&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 Ct(o,d,o.path,u)),alwaysSet:u in o.data})}if(this._def.catchall instanceof Kt){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&&(I(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 Ct(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=>Ve.mergeObjectSync(n,u)):Ve.mergeObjectSync(n,c)}get shape(){return this._def.shape()}strict(e){return j.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:j.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:P.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 oe.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 oe.objectKeys(this.shape))e[n]||(r[n]=this.shape[n]);return new t({...this._def,shape:()=>r})}deepPartial(){return mo(this)}partial(e){let r={};for(let n of oe.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 oe.objectKeys(this.shape))if(e&&!e[n])r[n]=this.shape[n];else{let s=this.shape[n];for(;s instanceof ft;)s=s._def.innerType;r[n]=s}return new t({...this._def,shape:()=>r})}keyof(){return yg(oe.objectKeys(this.shape))}};mt.create=(t,e)=>new mt({shape:()=>t,unknownKeys:"strip",catchall:Kt.create(),typeName:P.ZodObject,...J(e)});mt.strictCreate=(t,e)=>new mt({shape:()=>t,unknownKeys:"strict",catchall:Kt.create(),typeName:P.ZodObject,...J(e)});mt.lazycreate=(t,e)=>new mt({shape:t,unknownKeys:"strip",catchall:Kt.create(),typeName:P.ZodObject,...J(e)});var kn=class extends Y{_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 pt(a.ctx.common.issues));return I(r,{code:w.invalid_union,unionErrors:i}),q}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 pt(c));return I(r,{code:w.invalid_union,unionErrors:a}),q}}get options(){return this._def.options}};kn.create=(t,e)=>new kn({options:t,typeName:P.ZodUnion,...J(e)});var wr=t=>t instanceof wn?wr(t.schema):t instanceof Ot?wr(t.innerType()):t instanceof Tn?[t.value]:t instanceof Pn?t.options:t instanceof Rn?oe.objectValues(t.enum):t instanceof $n?wr(t._def.innerType):t instanceof vn?[void 0]:t instanceof bn?[null]:t instanceof ft?[void 0,...wr(t.unwrap())]:t instanceof dr?[null,...wr(t.unwrap())]:t instanceof Ss||t instanceof On?wr(t.unwrap()):t instanceof Cn?wr(t._def.innerType):[],Qi=class t extends Y{_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==D.object)return I(r,{code:w.invalid_type,expected:D.object,received:r.parsedType}),q;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}):(I(r,{code:w.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[n]}),q)}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=wr(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:P.ZodDiscriminatedUnion,discriminator:e,options:r,optionsMap:o,...J(n)})}};function zu(t,e){let r=ur(t),n=ur(e);if(t===e)return{valid:!0,data:t};if(r===D.object&&n===D.object){let o=oe.objectKeys(e),s=oe.objectKeys(t).filter(a=>o.indexOf(a)!==-1),i={...t,...e};for(let a of s){let c=zu(t[a],e[a]);if(!c.valid)return{valid:!1};i[a]=c.data}return{valid:!0,data:i}}else if(r===D.array&&n===D.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=zu(i,a);if(!c.valid)return{valid:!1};o.push(c.data)}return{valid:!0,data:o}}else return r===D.date&&n===D.date&&+t==+e?{valid:!0,data:t}:{valid:!1}}var En=class extends Y{_parse(e){let{status:r,ctx:n}=this._processInputParams(e),o=(s,i)=>{if(Xi(s)||Xi(i))return q;let a=zu(s.value,i.value);return a.valid?((Yi(s)||Yi(i))&&r.dirty(),{status:r.value,value:a.data}):(I(n,{code:w.invalid_intersection_types}),q)};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}))}};En.create=(t,e,r)=>new En({left:t,right:e,typeName:P.ZodIntersection,...J(r)});var lr=class t extends Y{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==D.array)return I(n,{code:w.invalid_type,expected:D.array,received:n.parsedType}),q;if(n.data.length<this._def.items.length)return I(n,{code:w.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),q;!this._def.rest&&n.data.length>this._def.items.length&&(I(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 Ct(n,i,n.path,a)):null}).filter(i=>!!i);return n.common.async?Promise.all(s).then(i=>Ve.mergeArray(r,i)):Ve.mergeArray(r,s)}get items(){return this._def.items}rest(e){return new t({...this._def,rest:e})}};lr.create=(t,e)=>{if(!Array.isArray(t))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new lr({items:t,typeName:P.ZodTuple,rest:null,...J(e)})};var ea=class t extends Y{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!==D.object)return I(n,{code:w.invalid_type,expected:D.object,received:n.parsedType}),q;let o=[],s=this._def.keyType,i=this._def.valueType;for(let a in n.data)o.push({key:s._parse(new Ct(n,a,n.path,a)),value:i._parse(new Ct(n,n.data[a],n.path,a)),alwaysSet:a in n.data});return n.common.async?Ve.mergeObjectAsync(r,o):Ve.mergeObjectSync(r,o)}get element(){return this._def.valueType}static create(e,r,n){return r instanceof Y?new t({keyType:e,valueType:r,typeName:P.ZodRecord,...J(n)}):new t({keyType:Br.create(),valueType:e,typeName:P.ZodRecord,...J(r)})}},yo=class extends Y{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!==D.map)return I(n,{code:w.invalid_type,expected:D.map,received:n.parsedType}),q;let o=this._def.keyType,s=this._def.valueType,i=[...n.data.entries()].map(([a,c],u)=>({key:o._parse(new Ct(n,a,n.path,[u,"key"])),value:s._parse(new Ct(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 q;(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 q;(u.status==="dirty"||l.status==="dirty")&&r.dirty(),a.set(u.value,l.value)}return{status:r.value,value:a}}}};yo.create=(t,e,r)=>new yo({valueType:e,keyType:t,typeName:P.ZodMap,...J(r)});var _o=class t extends Y{_parse(e){let{status:r,ctx:n}=this._processInputParams(e);if(n.parsedType!==D.set)return I(n,{code:w.invalid_type,expected:D.set,received:n.parsedType}),q;let o=this._def;o.minSize!==null&&n.data.size<o.minSize.value&&(I(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&&(I(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 q;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 Ct(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:j.toString(r)}})}max(e,r){return new t({...this._def,maxSize:{value:e,message:j.toString(r)}})}size(e,r){return this.min(e,r).max(e,r)}nonempty(e){return this.min(1,e)}};_o.create=(t,e)=>new _o({valueType:t,minSize:null,maxSize:null,typeName:P.ZodSet,...J(e)});var ta=class t extends Y{constructor(){super(...arguments),this.validate=this.implement}_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==D.function)return I(r,{code:w.invalid_type,expected:D.function,received:r.parsedType}),q;function n(a,c){return xs({data:a,path:r.path,errorMaps:[r.common.contextualErrorMap,r.schemaErrorMap,po(),Er].filter(u=>!!u),issueData:{code:w.invalid_arguments,argumentsError:c}})}function o(a,c){return xs({data:a,path:r.path,errorMaps:[r.common.contextualErrorMap,r.schemaErrorMap,po(),Er].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 Vr){let a=this;return tt(async function(...c){let u=new pt([]),l=await a._def.args.parseAsync(c,s).catch(h=>{throw u.addIssue(n(c,h)),u}),d=await Reflect.apply(i,this,l);return await a._def.returns._def.type.parseAsync(d,s).catch(h=>{throw u.addIssue(o(d,h)),u})})}else{let a=this;return tt(function(...c){let u=a._def.args.safeParse(c,s);if(!u.success)throw new pt([n(c,u.error)]);let l=Reflect.apply(i,this,u.data),d=a._def.returns.safeParse(l,s);if(!d.success)throw new pt([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:lr.create(e).rest(Tr.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||lr.create([]).rest(Tr.create()),returns:r||Tr.create(),typeName:P.ZodFunction,...J(n)})}},wn=class extends Y{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})}};wn.create=(t,e)=>new wn({getter:t,typeName:P.ZodLazy,...J(e)});var Tn=class extends Y{_parse(e){if(e.data!==this._def.value){let r=this._getOrReturnCtx(e);return I(r,{received:r.data,code:w.invalid_literal,expected:this._def.value}),q}return{status:"valid",value:e.data}}get value(){return this._def.value}};Tn.create=(t,e)=>new Tn({value:t,typeName:P.ZodLiteral,...J(e)});function yg(t,e){return new Pn({values:t,typeName:P.ZodEnum,...J(e)})}var Pn=class t extends Y{_parse(e){if(typeof e.data!="string"){let r=this._getOrReturnCtx(e),n=this._def.values;return I(r,{expected:oe.joinValues(n),received:r.parsedType,code:w.invalid_type}),q}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 I(r,{received:r.data,code:w.invalid_enum_value,options:n}),q}return tt(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})}};Pn.create=yg;var Rn=class extends Y{_parse(e){let r=oe.getValidEnumValues(this._def.values),n=this._getOrReturnCtx(e);if(n.parsedType!==D.string&&n.parsedType!==D.number){let o=oe.objectValues(r);return I(n,{expected:oe.joinValues(o),received:n.parsedType,code:w.invalid_type}),q}if(this._cache||(this._cache=new Set(oe.getValidEnumValues(this._def.values))),!this._cache.has(e.data)){let o=oe.objectValues(r);return I(n,{received:n.data,code:w.invalid_enum_value,options:o}),q}return tt(e.data)}get enum(){return this._def.values}};Rn.create=(t,e)=>new Rn({values:t,typeName:P.ZodNativeEnum,...J(e)});var Vr=class extends Y{unwrap(){return this._def.type}_parse(e){let{ctx:r}=this._processInputParams(e);if(r.parsedType!==D.promise&&r.common.async===!1)return I(r,{code:w.invalid_type,expected:D.promise,received:r.parsedType}),q;let n=r.parsedType===D.promise?r.data:Promise.resolve(r.data);return tt(n.then(o=>this._def.type.parseAsync(o,{path:r.path,errorMap:r.common.contextualErrorMap})))}};Vr.create=(t,e)=>new Vr({type:t,typeName:P.ZodPromise,...J(e)});var Ot=class extends Y{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===P.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=>{I(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 q;let c=await this._def.schema._parseAsync({data:a,path:n.path,parent:n});return c.status==="aborted"?q:c.status==="dirty"?gn(c.value):r.value==="dirty"?gn(c.value):c});{if(r.value==="aborted")return q;let a=this._def.schema._parseSync({data:i,path:n.path,parent:n});return a.status==="aborted"?q:a.status==="dirty"?gn(a.value):r.value==="dirty"?gn(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"?q:(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"?q:(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(!Zr(i))return q;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=>Zr(i)?Promise.resolve(o.transform(i.value,s)).then(a=>({status:r.value,value:a})):q);oe.assertNever(o)}};Ot.create=(t,e,r)=>new Ot({schema:t,typeName:P.ZodEffects,effect:e,...J(r)});Ot.createWithPreprocess=(t,e,r)=>new Ot({schema:e,effect:{type:"preprocess",transform:t},typeName:P.ZodEffects,...J(r)});var ft=class extends Y{_parse(e){return this._getType(e)===D.undefined?tt(void 0):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};ft.create=(t,e)=>new ft({innerType:t,typeName:P.ZodOptional,...J(e)});var dr=class extends Y{_parse(e){return this._getType(e)===D.null?tt(null):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};dr.create=(t,e)=>new dr({innerType:t,typeName:P.ZodNullable,...J(e)});var $n=class extends Y{_parse(e){let{ctx:r}=this._processInputParams(e),n=r.data;return r.parsedType===D.undefined&&(n=this._def.defaultValue()),this._def.innerType._parse({data:n,path:r.path,parent:r})}removeDefault(){return this._def.innerType}};$n.create=(t,e)=>new $n({innerType:t,typeName:P.ZodDefault,defaultValue:typeof e.default=="function"?e.default:()=>e.default,...J(e)});var Cn=class extends Y{_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 fo(o)?o.then(s=>({status:"valid",value:s.status==="valid"?s.value:this._def.catchValue({get error(){return new pt(n.common.issues)},input:n.data})})):{status:"valid",value:o.status==="valid"?o.value:this._def.catchValue({get error(){return new pt(n.common.issues)},input:n.data})}}removeCatch(){return this._def.innerType}};Cn.create=(t,e)=>new Cn({innerType:t,typeName:P.ZodCatch,catchValue:typeof e.catch=="function"?e.catch:()=>e.catch,...J(e)});var xo=class extends Y{_parse(e){if(this._getType(e)!==D.nan){let n=this._getOrReturnCtx(e);return I(n,{code:w.invalid_type,expected:D.nan,received:n.parsedType}),q}return{status:"valid",value:e.data}}};xo.create=t=>new xo({typeName:P.ZodNaN,...J(t)});var gT=Symbol("zod_brand"),Ss=class extends Y{_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}},vs=class t extends Y{_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"?q:s.status==="dirty"?(r.dirty(),gn(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"?q: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:P.ZodPipeline})}},On=class extends Y{_parse(e){let r=this._def.innerType._parse(e),n=o=>(Zr(o)&&(o.value=Object.freeze(o.value)),o);return fo(r)?r.then(o=>n(o)):n(r)}unwrap(){return this._def.innerType}};On.create=(t,e)=>new On({innerType:t,typeName:P.ZodReadonly,...J(e)});function fg(t,e){let r=typeof t=="function"?t(e):typeof t=="string"?{message:t}:t;return typeof r=="string"?{message:r}:r}function _g(t,e={},r){return t?qr.create().superRefine((n,o)=>{let s=t(n);if(s instanceof Promise)return s.then(i=>{if(!i){let a=fg(e,n),c=a.fatal??r??!0;o.addIssue({code:"custom",...a,fatal:c})}});if(!s){let i=fg(e,n),a=i.fatal??r??!0;o.addIssue({code:"custom",...i,fatal:a})}}):qr.create()}var yT={object:mt.lazycreate},P;(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"})(P||(P={}));var _T=(t,e={message:`Input not instance of ${t.name}`})=>_g(r=>r instanceof t,e),xg=Br.create,Sg=yn.create,xT=xo.create,ST=_n.create,vg=xn.create,vT=Sn.create,bT=ho.create,kT=vn.create,ET=bn.create,wT=qr.create,TT=Tr.create,PT=Kt.create,RT=go.create,$T=Pr.create,Lu=mt.create,CT=mt.strictCreate,OT=kn.create,IT=Qi.create,AT=En.create,NT=lr.create,DT=ea.create,MT=yo.create,jT=_o.create,zT=ta.create,LT=wn.create,HT=Tn.create,UT=Pn.create,FT=Rn.create,ZT=Vr.create,BT=Ot.create,qT=ft.create,VT=dr.create,WT=Ot.createWithPreprocess,KT=vs.create,GT=()=>xg().optional(),JT=()=>Sg().optional(),XT=()=>vg().optional(),YT={string:(t=>Br.create({...t,coerce:!0})),number:(t=>yn.create({...t,coerce:!0})),boolean:(t=>xn.create({...t,coerce:!0})),bigint:(t=>_n.create({...t,coerce:!0})),date:(t=>Sn.create({...t,coerce:!0}))};var QT=q;var eP=Object.freeze({status:"aborted"});function b(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 Rr=class extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}},ra={};function bt(t){return t&&Object.assign(ra,t),ra}var se={};He(se,{BIGINT_FORMAT_RANGES:()=>kg,Class:()=>Uu,NUMBER_FORMAT_RANGES:()=>Ku,aborted:()=>An,allowsEval:()=>qu,assert:()=>sP,assertEqual:()=>tP,assertIs:()=>nP,assertNever:()=>oP,assertNotEqual:()=>rP,assignProp:()=>Bu,cached:()=>Es,captureStackTrace:()=>oa,cleanEnum:()=>_P,cleanRegex:()=>Ts,clone:()=>kt,createTransparentProxy:()=>dP,defineLazy:()=>Se,esc:()=>In,escapeRegex:()=>Wr,extend:()=>mP,finalizeIssue:()=>Gt,floatSafeRemainder:()=>Zu,getElementAtPath:()=>iP,getEnumValues:()=>ks,getLengthableOrigin:()=>Ps,getParsedType:()=>lP,getSizableOrigin:()=>Eg,isObject:()=>So,isPlainObject:()=>vo,issue:()=>Gu,joinValues:()=>na,jsonStringifyReplacer:()=>Fu,merge:()=>hP,normalizeParams:()=>V,nullish:()=>ws,numKeys:()=>uP,omit:()=>fP,optionalKeys:()=>Wu,partial:()=>gP,pick:()=>pP,prefixIssues:()=>pr,primitiveTypes:()=>bg,promiseAllObject:()=>aP,propertyKeyTypes:()=>Vu,randomString:()=>cP,required:()=>yP,stringifyPrimitive:()=>sa,unwrapMessage:()=>bs});function tP(t){return t}function rP(t){return t}function nP(t){}function oP(t){throw new Error}function sP(t){}function ks(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 na(t,e="|"){return t.map(r=>sa(r)).join(e)}function Fu(t,e){return typeof e=="bigint"?e.toString():e}function Es(t){return{get value(){{let r=t();return Object.defineProperty(this,"value",{value:r}),r}throw new Error("cached value already set")}}}function ws(t){return t==null}function Ts(t){let e=t.startsWith("^")?1:0,r=t.endsWith("$")?t.length-1:t.length;return t.slice(e,r)}function Zu(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 Se(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 Bu(t,e,r){Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!0,configurable:!0})}function iP(t,e){return e?e.reduce((r,n)=>r?.[n],t):t}function aP(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 cP(t=10){let e="abcdefghijklmnopqrstuvwxyz",r="";for(let n=0;n<t;n++)r+=e[Math.floor(Math.random()*e.length)];return r}function In(t){return JSON.stringify(t)}var oa=Error.captureStackTrace?Error.captureStackTrace:(...t)=>{};function So(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}var qu=Es(()=>{if(typeof navigator<"u"&&navigator?.userAgent?.includes("Cloudflare"))return!1;try{let t=Function;return new t(""),!0}catch{return!1}});function vo(t){if(So(t)===!1)return!1;let e=t.constructor;if(e===void 0)return!0;let r=e.prototype;return!(So(r)===!1||Object.prototype.hasOwnProperty.call(r,"isPrototypeOf")===!1)}function uP(t){let e=0;for(let r in t)Object.prototype.hasOwnProperty.call(t,r)&&e++;return e}var lP=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}`)}},Vu=new Set(["string","number","symbol"]),bg=new Set(["string","number","bigint","boolean","symbol","undefined"]);function Wr(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function kt(t,e,r){let n=new t._zod.constr(e??t._zod.def);return(!e||r?.parent)&&(n._zod.parent=t),n}function V(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 dP(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 sa(t){return typeof t=="bigint"?t.toString()+"n":typeof t=="string"?`"${t}"`:`${t}`}function Wu(t){return Object.keys(t).filter(e=>t[e]._zod.optin==="optional"&&t[e]._zod.optout==="optional")}var Ku={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]},kg={int64:[BigInt("-9223372036854775808"),BigInt("9223372036854775807")],uint64:[BigInt(0),BigInt("18446744073709551615")]};function pP(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 kt(t,{...t._zod.def,shape:r,checks:[]})}function fP(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 kt(t,{...t._zod.def,shape:r,checks:[]})}function mP(t,e){if(!vo(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 Bu(this,"shape",n),n},checks:[]};return kt(t,r)}function hP(t,e){return kt(t,{...t._zod.def,get shape(){let r={...t._zod.def.shape,...e._zod.def.shape};return Bu(this,"shape",r),r},catchall:e._zod.def.catchall,checks:[]})}function gP(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 kt(e,{...e._zod.def,shape:o,checks:[]})}function yP(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 kt(e,{...e._zod.def,shape:o,checks:[]})}function An(t,e=0){for(let r=e;r<t.issues.length;r++)if(t.issues[r]?.continue!==!0)return!0;return!1}function pr(t,e){return e.map(r=>{var n;return(n=r).path??(n.path=[]),r.path.unshift(t),r})}function bs(t){return typeof t=="string"?t:t?.message}function Gt(t,e,r){let n={...t,path:t.path??[]};if(!t.message){let o=bs(t.inst?._zod.def?.error?.(t))??bs(e?.error?.(t))??bs(r.customError?.(t))??bs(r.localeError?.(t))??"Invalid input";n.message=o}return delete n.inst,delete n.continue,e?.reportInput||delete n.input,n}function Eg(t){return t instanceof Set?"set":t instanceof Map?"map":t instanceof File?"file":"unknown"}function Ps(t){return Array.isArray(t)?"array":typeof t=="string"?"string":"unknown"}function Gu(...t){let[e,r,n]=t;return typeof e=="string"?{message:e,code:"custom",input:r,inst:n}:{...e}}function _P(t){return Object.entries(t).filter(([e,r])=>Number.isNaN(Number.parseInt(e,10))).map(e=>e[1])}var Uu=class{constructor(...e){}};var wg=(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,Fu,2)},enumerable:!0}),Object.defineProperty(t,"toString",{value:()=>t.message,enumerable:!1})},ia=b("$ZodError",wg),Rs=b("$ZodError",wg,{Parent:Error});function Ju(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 Xu(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 Yu=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 Rr;if(i.issues.length){let a=new(o?.Err??t)(i.issues.map(c=>Gt(c,s,bt())));throw oa(a,o?.callee),a}return i.value},Qu=Yu(Rs),el=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=>Gt(c,s,bt())));throw oa(a,o?.callee),a}return i.value},tl=el(Rs),rl=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 Rr;return s.issues.length?{success:!1,error:new(t??ia)(s.issues.map(i=>Gt(i,o,bt())))}:{success:!0,data:s.value}},Nn=rl(Rs),nl=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=>Gt(i,o,bt())))}:{success:!0,data:s.value}},Dn=nl(Rs);var Tg=/^[cC][^\s-]{8,}$/,Pg=/^[0-9a-z]+$/,Rg=/^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/,$g=/^[0-9a-vA-V]{20}$/,Cg=/^[A-Za-z0-9]{27}$/,Og=/^[a-zA-Z0-9_-]{21}$/,Ig=/^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/;var Ag=/^([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})$/,ol=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 Ng=/^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/;var SP="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";function Dg(){return new RegExp(SP,"u")}var Mg=/^(?:(?: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])$/,jg=/^(([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})$/,zg=/^((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])$/,Lg=/^(([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])$/,Hg=/^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,sl=/^[A-Za-z0-9_-]*$/,Ug=/^([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+$/;var Fg=/^\+(?:[0-9]){6,14}[0-9]$/,Zg="(?:(?:\\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])))",Bg=new RegExp(`^${Zg}$`);function qg(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 Vg(t){return new RegExp(`^${qg(t)}$`)}function Wg(t){let e=qg({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(`^${Zg}T(?:${n})$`)}var Kg=t=>{let e=t?`[\\s\\S]{${t?.minimum??0},${t?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${e}$`)};var Gg=/^\d+$/,Jg=/^-?\d+(?:\.\d+)?/i,Xg=/true|false/i,Yg=/null/i;var Qg=/^[^A-Z]*$/,ey=/^[^a-z]*$/;var We=b("$ZodCheck",(t,e)=>{var r;t._zod??(t._zod={}),t._zod.def=e,(r=t._zod).onattach??(r.onattach=[])}),ty={number:"number",bigint:"bigint",object:"date"},il=b("$ZodCheckLessThan",(t,e)=>{We.init(t,e);let r=ty[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})}}),al=b("$ZodCheckGreaterThan",(t,e)=>{We.init(t,e);let r=ty[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})}}),ry=b("$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):Zu(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})}}),ny=b("$ZodCheckNumberFormat",(t,e)=>{We.init(t,e),e.format=e.format||"float64";let r=e.format?.includes("int"),n=r?"int":"number",[o,s]=Ku[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=Gg)}),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 oy=b("$ZodCheckMaxLength",(t,e)=>{var r;We.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!ws(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=Ps(o);n.issues.push({origin:i,code:"too_big",maximum:e.maximum,inclusive:!0,input:o,inst:t,continue:!e.abort})}}),sy=b("$ZodCheckMinLength",(t,e)=>{var r;We.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!ws(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=Ps(o);n.issues.push({origin:i,code:"too_small",minimum:e.minimum,inclusive:!0,input:o,inst:t,continue:!e.abort})}}),iy=b("$ZodCheckLengthEquals",(t,e)=>{var r;We.init(t,e),(r=t._zod.def).when??(r.when=n=>{let o=n.value;return!ws(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=Ps(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})}}),$s=b("$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=()=>{})}),ay=b("$ZodCheckRegex",(t,e)=>{$s.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})}}),cy=b("$ZodCheckLowerCase",(t,e)=>{e.pattern??(e.pattern=Qg),$s.init(t,e)}),uy=b("$ZodCheckUpperCase",(t,e)=>{e.pattern??(e.pattern=ey),$s.init(t,e)}),ly=b("$ZodCheckIncludes",(t,e)=>{We.init(t,e);let r=Wr(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})}}),dy=b("$ZodCheckStartsWith",(t,e)=>{We.init(t,e);let r=new RegExp(`^${Wr(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})}}),py=b("$ZodCheckEndsWith",(t,e)=>{We.init(t,e);let r=new RegExp(`.*${Wr(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 fy=b("$ZodCheckOverwrite",(t,e)=>{We.init(t,e),t._zod.check=r=>{r.value=e.tx(r.value)}});var ca=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(`
|
|
160
167
|
`).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(`
|
|
161
|
-
`))}};var
|
|
162
|
-
if (${
|
|
163
|
-
if (input[${
|
|
164
|
-
if (${
|
|
165
|
-
newResult[${
|
|
168
|
+
`))}};var hy={major:4,minor:0,patch:0};var me=b("$ZodType",(t,e)=>{var r;t??(t={}),t._zod.def=e,t._zod.bag=t._zod.bag||{},t._zod.version=hy;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=An(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 Rr;if(u||f instanceof Promise)u=(u??Promise.resolve()).then(async()=>{await f,s.issues.length!==d&&(c||(c=An(s,d)))});else{if(s.issues.length===d)continue;c||(c=An(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 Rr;return a.then(c=>o(c,n,i))}return o(a,n,i)}}t["~standard"]={validate:o=>{try{let s=Nn(t,o);return s.success?{value:s.data}:{issues:s.error?.issues}}catch{return Dn(t,o).then(i=>i.success?{value:i.data}:{issues:i.error?.issues})}},vendor:"zod",version:1}}),Cs=b("$ZodString",(t,e)=>{me.init(t,e),t._zod.pattern=[...t?._zod.bag?.patterns??[]].pop()??Kg(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}}),ve=b("$ZodStringFormat",(t,e)=>{$s.init(t,e),Cs.init(t,e)}),ul=b("$ZodGUID",(t,e)=>{e.pattern??(e.pattern=Ag),ve.init(t,e)}),ll=b("$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=ol(n))}else e.pattern??(e.pattern=ol());ve.init(t,e)}),dl=b("$ZodEmail",(t,e)=>{e.pattern??(e.pattern=Ng),ve.init(t,e)}),pl=b("$ZodURL",(t,e)=>{ve.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:Ug.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})}}}),fl=b("$ZodEmoji",(t,e)=>{e.pattern??(e.pattern=Dg()),ve.init(t,e)}),ml=b("$ZodNanoID",(t,e)=>{e.pattern??(e.pattern=Og),ve.init(t,e)}),hl=b("$ZodCUID",(t,e)=>{e.pattern??(e.pattern=Tg),ve.init(t,e)}),gl=b("$ZodCUID2",(t,e)=>{e.pattern??(e.pattern=Pg),ve.init(t,e)}),yl=b("$ZodULID",(t,e)=>{e.pattern??(e.pattern=Rg),ve.init(t,e)}),_l=b("$ZodXID",(t,e)=>{e.pattern??(e.pattern=$g),ve.init(t,e)}),xl=b("$ZodKSUID",(t,e)=>{e.pattern??(e.pattern=Cg),ve.init(t,e)}),wy=b("$ZodISODateTime",(t,e)=>{e.pattern??(e.pattern=Wg(e)),ve.init(t,e)}),Ty=b("$ZodISODate",(t,e)=>{e.pattern??(e.pattern=Bg),ve.init(t,e)}),Py=b("$ZodISOTime",(t,e)=>{e.pattern??(e.pattern=Vg(e)),ve.init(t,e)}),Ry=b("$ZodISODuration",(t,e)=>{e.pattern??(e.pattern=Ig),ve.init(t,e)}),Sl=b("$ZodIPv4",(t,e)=>{e.pattern??(e.pattern=Mg),ve.init(t,e),t._zod.onattach.push(r=>{let n=r._zod.bag;n.format="ipv4"})}),vl=b("$ZodIPv6",(t,e)=>{e.pattern??(e.pattern=jg),ve.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})}}}),bl=b("$ZodCIDRv4",(t,e)=>{e.pattern??(e.pattern=zg),ve.init(t,e)}),kl=b("$ZodCIDRv6",(t,e)=>{e.pattern??(e.pattern=Lg),ve.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 $y(t){if(t==="")return!0;if(t.length%4!==0)return!1;try{return atob(t),!0}catch{return!1}}var El=b("$ZodBase64",(t,e)=>{e.pattern??(e.pattern=Hg),ve.init(t,e),t._zod.onattach.push(r=>{r._zod.bag.contentEncoding="base64"}),t._zod.check=r=>{$y(r.value)||r.issues.push({code:"invalid_format",format:"base64",input:r.value,inst:t,continue:!e.abort})}});function vP(t){if(!sl.test(t))return!1;let e=t.replace(/[-_]/g,n=>n==="-"?"+":"/"),r=e.padEnd(Math.ceil(e.length/4)*4,"=");return $y(r)}var wl=b("$ZodBase64URL",(t,e)=>{e.pattern??(e.pattern=sl),ve.init(t,e),t._zod.onattach.push(r=>{r._zod.bag.contentEncoding="base64url"}),t._zod.check=r=>{vP(r.value)||r.issues.push({code:"invalid_format",format:"base64url",input:r.value,inst:t,continue:!e.abort})}}),Tl=b("$ZodE164",(t,e)=>{e.pattern??(e.pattern=Fg),ve.init(t,e)});function bP(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 Pl=b("$ZodJWT",(t,e)=>{ve.init(t,e),t._zod.check=r=>{bP(r.value,e.alg)||r.issues.push({code:"invalid_format",format:"jwt",input:r.value,inst:t,continue:!e.abort})}});var la=b("$ZodNumber",(t,e)=>{me.init(t,e),t._zod.pattern=t._zod.bag.pattern??Jg,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}}),Rl=b("$ZodNumber",(t,e)=>{ny.init(t,e),la.init(t,e)}),$l=b("$ZodBoolean",(t,e)=>{me.init(t,e),t._zod.pattern=Xg,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 Cl=b("$ZodNull",(t,e)=>{me.init(t,e),t._zod.pattern=Yg,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 Ol=b("$ZodUnknown",(t,e)=>{me.init(t,e),t._zod.parse=r=>r}),Il=b("$ZodNever",(t,e)=>{me.init(t,e),t._zod.parse=(r,n)=>(r.issues.push({expected:"never",code:"invalid_type",input:r.value,inst:t}),r)});function gy(t,e,r){t.issues.length&&e.issues.push(...pr(r,t.issues)),e.value[r]=t.value}var Al=b("$ZodArray",(t,e)=>{me.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=>gy(u,r,i))):gy(c,r,i)}return s.length?Promise.all(s).then(()=>r):r}});function ua(t,e,r){t.issues.length&&e.issues.push(...pr(r,t.issues)),e.value[r]=t.value}function yy(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(...pr(r,t.issues)):t.value===void 0?r in n&&(e.value[r]=void 0):e.value[r]=t.value}var da=b("$ZodObject",(t,e)=>{me.init(t,e);let r=Es(()=>{let d=Object.keys(e.shape);for(let h of d)if(!(e.shape[h]instanceof me))throw new Error(`Invalid element at key "${h}": expected a Zod schema`);let f=Wu(e.shape);return{shape:e.shape,keys:d,keySet:new Set(d),numKeys:d.length,optionalKeys:new Set(f)}});Se(t._zod,"propValues",()=>{let d=e.shape,f={};for(let h in d){let p=d[h]._zod;if(p.values){f[h]??(f[h]=new Set);for(let m of p.values)f[h].add(m)}}return f});let n=d=>{let f=new ca(["shape","payload","ctx"]),h=r.value,p=_=>{let x=In(_);return`shape[${x}]._zod.run({ value: input[${x}], issues: [] }, ctx)`};f.write("const input = payload.value;");let m=Object.create(null),g=0;for(let _ of h.keys)m[_]=`key_${g++}`;f.write("const newResult = {}");for(let _ of h.keys)if(h.optionalKeys.has(_)){let x=m[_];f.write(`const ${x} = ${p(_)};`);let S=In(_);f.write(`
|
|
169
|
+
if (${x}.issues.length) {
|
|
170
|
+
if (input[${S}] === undefined) {
|
|
171
|
+
if (${S} in input) {
|
|
172
|
+
newResult[${S}] = undefined;
|
|
166
173
|
}
|
|
167
174
|
} else {
|
|
168
175
|
payload.issues = payload.issues.concat(
|
|
169
|
-
${
|
|
176
|
+
${x}.issues.map((iss) => ({
|
|
170
177
|
...iss,
|
|
171
|
-
path: iss.path ? [${
|
|
178
|
+
path: iss.path ? [${S}, ...iss.path] : [${S}],
|
|
172
179
|
}))
|
|
173
180
|
);
|
|
174
181
|
}
|
|
175
|
-
} else if (${
|
|
176
|
-
if (${
|
|
182
|
+
} else if (${x}.value === undefined) {
|
|
183
|
+
if (${S} in input) newResult[${S}] = undefined;
|
|
177
184
|
} else {
|
|
178
|
-
newResult[${
|
|
185
|
+
newResult[${S}] = ${x}.value;
|
|
179
186
|
}
|
|
180
|
-
`)}else{let
|
|
181
|
-
if (${
|
|
187
|
+
`)}else{let x=m[_];f.write(`const ${x} = ${p(_)};`),f.write(`
|
|
188
|
+
if (${x}.issues.length) payload.issues = payload.issues.concat(${x}.issues.map(iss => ({
|
|
182
189
|
...iss,
|
|
183
|
-
path: iss.path ? [${
|
|
184
|
-
})));`),f.write(`newResult[${Pn(v)}] = ${_}.value`)}f.write("payload.value = newResult;"),f.write("return payload;");let y=f.compile();return(v,_)=>y(d,v,_)},o,s=ho,i=!Gi.jitless,c=i&&Du.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 _=l.shape;for(let b of l.keys){let E=_[b],R=E._zod.run({value:m[b],issues:[]},f),N=E._zod.optin==="optional"&&E._zod.optout==="optional";R instanceof Promise?p.push(R.then(C=>N?Xg(C,d,b,m):ra(C,d,b))):N?Xg(R,d,b,m):ra(R,d,b)}}if(!u)return p.length?Promise.all(p).then(()=>d):d;let h=[],g=l.keySet,y=u._zod,v=y.def.type;for(let _ of Object.keys(m)){if(g.has(_))continue;if(v==="never"){h.push(_);continue}let b=y.run({value:m[_],issues:[]},f);b instanceof Promise?p.push(b.then(E=>ra(E,d,_))):ra(b,d,_)}return h.length&&d.issues.push({code:"unrecognized_keys",keys:h,input:m,inst:t}),p.length?Promise.all(p).then(()=>d):d}});function Yg(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=>Bt(s,n,vt())))}),e}var sa=S("$ZodUnion",(t,e)=>{fe.init(t,e),ye(t._zod,"optin",()=>e.options.some(r=>r._zod.optin==="optional")?"optional":void 0),ye(t._zod,"optout",()=>e.options.some(r=>r._zod.optout==="optional")?"optional":void 0),ye(t._zod,"values",()=>{if(e.options.every(r=>r._zod.values))return new Set(e.options.flatMap(r=>Array.from(r._zod.values)))}),ye(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=>bs(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=>Yg(i,r,t,n)):Yg(s,r,t,n)}}),El=S("$ZodDiscriminatedUnion",(t,e)=>{sa.init(t,e);let r=t._zod.parse;ye(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=vs(()=>{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(!ho(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)}}),wl=S("$ZodIntersection",(t,e)=>{fe.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])=>Qg(r,c,u)):Qg(r,s,i)}});function Yu(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(go(t)&&go(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=Yu(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=Yu(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 Qg(t,e,r){if(e.issues.length&&t.issues.push(...e.issues),r.issues.length&&t.issues.push(...r.issues),$n(t))return t;let n=Yu(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 Tl=S("$ZodRecord",(t,e)=>{fe.init(t,e),t._zod.parse=(r,n)=>{let o=r.value;if(!go(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(...ur(c,l.issues)),r.value[c]=l.value})):(u.issues.length&&r.issues.push(...ur(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=>Bt(u,n,vt())),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(...ur(i,u.issues)),r.value[a.value]=u.value})):(c.issues.length&&r.issues.push(...ur(i,c.issues)),r.value[a.value]=c.value)}}return s.length?Promise.all(s).then(()=>r):r}});var Rl=S("$ZodEnum",(t,e)=>{fe.init(t,e);let r=_s(e.entries);t._zod.values=new Set(r),t._zod.pattern=new RegExp(`^(${r.filter(n=>Mu.has(typeof n)).map(n=>typeof n=="string"?Fr(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}}),Pl=S("$ZodLiteral",(t,e)=>{fe.init(t,e),t._zod.values=new Set(e.values),t._zod.pattern=new RegExp(`^(${e.values.map(r=>typeof r=="string"?Fr(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 $l=S("$ZodTransform",(t,e)=>{fe.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 kr;return r.value=o,r}}),Cl=S("$ZodOptional",(t,e)=>{fe.init(t,e),t._zod.optin="optional",t._zod.optout="optional",ye(t._zod,"values",()=>e.innerType._zod.values?new Set([...e.innerType._zod.values,void 0]):void 0),ye(t._zod,"pattern",()=>{let r=e.innerType._zod.pattern;return r?new RegExp(`^(${bs(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)}),Ol=S("$ZodNullable",(t,e)=>{fe.init(t,e),ye(t._zod,"optin",()=>e.innerType._zod.optin),ye(t._zod,"optout",()=>e.innerType._zod.optout),ye(t._zod,"pattern",()=>{let r=e.innerType._zod.pattern;return r?new RegExp(`^(${bs(r.source)}|null)$`):void 0}),ye(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)}),Il=S("$ZodDefault",(t,e)=>{fe.init(t,e),t._zod.optin="optional",ye(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=>ey(s,e)):ey(o,e)}});function ey(t,e){return t.value===void 0&&(t.value=e.defaultValue),t}var Al=S("$ZodPrefault",(t,e)=>{fe.init(t,e),t._zod.optin="optional",ye(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))}),Nl=S("$ZodNonOptional",(t,e)=>{fe.init(t,e),ye(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=>ty(s,t)):ty(o,t)}});function ty(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 Dl=S("$ZodCatch",(t,e)=>{fe.init(t,e),t._zod.optin="optional",ye(t._zod,"optout",()=>e.innerType._zod.optout),ye(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=>Bt(i,n,vt()))},input:r.value}),r.issues=[]),r)):(r.value=o.value,o.issues.length&&(r.value=e.catchValue({...r,error:{issues:o.issues.map(s=>Bt(s,n,vt()))},input:r.value}),r.issues=[]),r)}});var Ml=S("$ZodPipe",(t,e)=>{fe.init(t,e),ye(t._zod,"values",()=>e.in._zod.values),ye(t._zod,"optin",()=>e.in._zod.optin),ye(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=>ry(s,e,n)):ry(o,e,n)}});function ry(t,e,r){return $n(t)?t:e.out._zod.run({value:t.value,issues:t.issues},r)}var jl=S("$ZodReadonly",(t,e)=>{fe.init(t,e),ye(t._zod,"propValues",()=>e.innerType._zod.propValues),ye(t._zod,"values",()=>e.innerType._zod.values),ye(t._zod,"optin",()=>e.innerType._zod.optin),ye(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(ny):ny(o)}});function ny(t){return t.value=Object.freeze(t.value),t}var zl=S("$ZodCustom",(t,e)=>{Ve.init(t,e),fe.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=>oy(s,r,n,t));oy(o,r,n,t)}});function oy(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(Lu(o))}}var HT=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},FT=()=>{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 ${HT(n.input)}`;case"invalid_value":return n.values.length===1?`Invalid input: expected ${Yi(n.values[0])}`:`Invalid option: expected one of ${Ji(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":""}: ${Ji(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 ly(){return{localeError:FT()}}var Ts=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 dy(){return new Ts}var Zr=dy();function Ll(t,e){return new t({type:"string",...V(e)})}function Ul(t,e){return new t({type:"string",format:"email",check:"string_format",abort:!1,...V(e)})}function ia(t,e){return new t({type:"string",format:"guid",check:"string_format",abort:!1,...V(e)})}function Hl(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,...V(e)})}function Fl(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v4",...V(e)})}function Zl(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v6",...V(e)})}function ql(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v7",...V(e)})}function Bl(t,e){return new t({type:"string",format:"url",check:"string_format",abort:!1,...V(e)})}function Vl(t,e){return new t({type:"string",format:"emoji",check:"string_format",abort:!1,...V(e)})}function Wl(t,e){return new t({type:"string",format:"nanoid",check:"string_format",abort:!1,...V(e)})}function Kl(t,e){return new t({type:"string",format:"cuid",check:"string_format",abort:!1,...V(e)})}function Gl(t,e){return new t({type:"string",format:"cuid2",check:"string_format",abort:!1,...V(e)})}function Jl(t,e){return new t({type:"string",format:"ulid",check:"string_format",abort:!1,...V(e)})}function Xl(t,e){return new t({type:"string",format:"xid",check:"string_format",abort:!1,...V(e)})}function Yl(t,e){return new t({type:"string",format:"ksuid",check:"string_format",abort:!1,...V(e)})}function Ql(t,e){return new t({type:"string",format:"ipv4",check:"string_format",abort:!1,...V(e)})}function ed(t,e){return new t({type:"string",format:"ipv6",check:"string_format",abort:!1,...V(e)})}function td(t,e){return new t({type:"string",format:"cidrv4",check:"string_format",abort:!1,...V(e)})}function rd(t,e){return new t({type:"string",format:"cidrv6",check:"string_format",abort:!1,...V(e)})}function nd(t,e){return new t({type:"string",format:"base64",check:"string_format",abort:!1,...V(e)})}function od(t,e){return new t({type:"string",format:"base64url",check:"string_format",abort:!1,...V(e)})}function sd(t,e){return new t({type:"string",format:"e164",check:"string_format",abort:!1,...V(e)})}function id(t,e){return new t({type:"string",format:"jwt",check:"string_format",abort:!1,...V(e)})}function py(t,e){return new t({type:"string",format:"datetime",check:"string_format",offset:!1,local:!1,precision:null,...V(e)})}function fy(t,e){return new t({type:"string",format:"date",check:"string_format",...V(e)})}function my(t,e){return new t({type:"string",format:"time",check:"string_format",precision:null,...V(e)})}function hy(t,e){return new t({type:"string",format:"duration",check:"string_format",...V(e)})}function ad(t,e){return new t({type:"number",checks:[],...V(e)})}function cd(t,e){return new t({type:"number",check:"number_format",abort:!1,format:"safeint",...V(e)})}function ud(t,e){return new t({type:"boolean",...V(e)})}function ld(t,e){return new t({type:"null",...V(e)})}function dd(t){return new t({type:"unknown"})}function pd(t,e){return new t({type:"never",...V(e)})}function aa(t,e){return new Ju({check:"less_than",...V(e),value:t,inclusive:!1})}function Rs(t,e){return new Ju({check:"less_than",...V(e),value:t,inclusive:!0})}function ca(t,e){return new Xu({check:"greater_than",...V(e),value:t,inclusive:!1})}function Ps(t,e){return new Xu({check:"greater_than",...V(e),value:t,inclusive:!0})}function ua(t,e){return new Mg({check:"multiple_of",...V(e),value:t})}function la(t,e){return new zg({check:"max_length",...V(e),maximum:t})}function yo(t,e){return new Lg({check:"min_length",...V(e),minimum:t})}function da(t,e){return new Ug({check:"length_equals",...V(e),length:t})}function fd(t,e){return new Hg({check:"string_format",format:"regex",...V(e),pattern:t})}function md(t){return new Fg({check:"string_format",format:"lowercase",...V(t)})}function hd(t){return new Zg({check:"string_format",format:"uppercase",...V(t)})}function gd(t,e){return new qg({check:"string_format",format:"includes",...V(e),includes:t})}function yd(t,e){return new Bg({check:"string_format",format:"starts_with",...V(e),prefix:t})}function _d(t,e){return new Vg({check:"string_format",format:"ends_with",...V(e),suffix:t})}function In(t){return new Wg({check:"overwrite",tx:t})}function vd(t){return In(e=>e.normalize(t))}function xd(){return In(t=>t.trim())}function bd(){return In(t=>t.toLowerCase())}function Sd(){return In(t=>t.toUpperCase())}function gy(t,e,r){return new t({type:"array",element:e,...V(r)})}function kd(t,e,r){let n=V(r);return n.abort??(n.abort=!0),new t({type:"custom",check:"custom",fn:e,...n})}function Ed(t,e,r){return new t({type:"custom",check:"custom",fn:e,...V(r)})}var pa=class{constructor(e){this.counter=0,this.metadataRegistry=e?.metadata??Zr,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:y,patterns:v,contentEncoding:_}=e._zod.bag;if(typeof h=="number"&&(p.minLength=h),typeof g=="number"&&(p.maxLength=g),y&&(p.format=s[y]??y,p.format===""&&delete p.format),_&&(p.contentEncoding=_),v&&v.size>0){let b=[...v];b.length===1?p.pattern=b[0].source:b.length>1&&(a.schema.allOf=[...b.map(E=>({...this.target==="draft-7"?{type:"string"}:{},pattern:E.source}))])}break}case"number":{let p=m,{minimum:h,maximum:g,format:y,multipleOf:v,exclusiveMaximum:_,exclusiveMinimum:b}=e._zod.bag;typeof y=="string"&&y.includes("int")?p.type="integer":p.type="number",typeof b=="number"&&(p.exclusiveMinimum=b),typeof h=="number"&&(p.minimum=h,typeof b=="number"&&(b>=h?delete p.minimum:delete p.exclusiveMinimum)),typeof _=="number"&&(p.exclusiveMaximum=_),typeof g=="number"&&(p.maximum=g,typeof _=="number"&&(_<=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)),y=new Set([...g].filter(v=>{let _=o.shape[v]._zod;return this.io==="input"?_.optin===void 0:_.optout===void 0}));y.size>0&&(p.required=Array.from(y)),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]}),y=_=>"allOf"in _&&Object.keys(_).length===1,v=[...y(h)?h.allOf:[h],...y(g)?g.allOf:[g]];p.allOf=v;break}case"tuple":{let p=m;p.type="array";let h=o.items.map((v,_)=>this.process(v,{...d,path:[...d.path,"prefixItems",_]}));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:y}=e._zod.bag;typeof g=="number"&&(p.minItems=g),typeof y=="number"&&(p.maxItems=y);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=_s(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:y,mime:v}=e._zod.bag;g!==void 0&&(h.minLength=g),y!==void 0&&(h.maxLength=y),v?v.length===1?(h.contentMediaType=v[0],Object.assign(p,h)):p.anyOf=v.map(_=>({...h,contentMediaType:_})):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"&&Le(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 y=l[1].defId??l[1].schema.id??`schema${this.counter++}`;return l[1].defId=y,{defId:y,ref:`${g("__shared")}#/${d}/${y}`}}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>
|
|
190
|
+
path: iss.path ? [${In(_)}, ...iss.path] : [${In(_)}]
|
|
191
|
+
})));`),f.write(`newResult[${In(_)}] = ${x}.value`)}f.write("payload.value = newResult;"),f.write("return payload;");let y=f.compile();return(_,x)=>y(d,_,x)},o,s=So,i=!ra.jitless,c=i&&qu.value,u=e.catchall,l;t._zod.parse=(d,f)=>{l??(l=r.value);let h=d.value;if(!s(h))return d.issues.push({expected:"object",code:"invalid_type",input:h,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 S of l.keys){let k=x[S],R=k._zod.run({value:h[S],issues:[]},f),$=k._zod.optin==="optional"&&k._zod.optout==="optional";R instanceof Promise?p.push(R.then(C=>$?yy(C,d,S,h):ua(C,d,S))):$?yy(R,d,S,h):ua(R,d,S)}}if(!u)return p.length?Promise.all(p).then(()=>d):d;let m=[],g=l.keySet,y=u._zod,_=y.def.type;for(let x of Object.keys(h)){if(g.has(x))continue;if(_==="never"){m.push(x);continue}let S=y.run({value:h[x],issues:[]},f);S instanceof Promise?p.push(S.then(k=>ua(k,d,x))):ua(S,d,x)}return m.length&&d.issues.push({code:"unrecognized_keys",keys:m,input:h,inst:t}),p.length?Promise.all(p).then(()=>d):d}});function _y(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=>Gt(s,n,bt())))}),e}var pa=b("$ZodUnion",(t,e)=>{me.init(t,e),Se(t._zod,"optin",()=>e.options.some(r=>r._zod.optin==="optional")?"optional":void 0),Se(t._zod,"optout",()=>e.options.some(r=>r._zod.optout==="optional")?"optional":void 0),Se(t._zod,"values",()=>{if(e.options.every(r=>r._zod.values))return new Set(e.options.flatMap(r=>Array.from(r._zod.values)))}),Se(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=>Ts(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=>_y(i,r,t,n)):_y(s,r,t,n)}}),Nl=b("$ZodDiscriminatedUnion",(t,e)=>{pa.init(t,e);let r=t._zod.parse;Se(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=Es(()=>{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(!So(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)}}),Dl=b("$ZodIntersection",(t,e)=>{me.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])=>xy(r,c,u)):xy(r,s,i)}});function cl(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(vo(t)&&vo(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=cl(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=cl(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 xy(t,e,r){if(e.issues.length&&t.issues.push(...e.issues),r.issues.length&&t.issues.push(...r.issues),An(t))return t;let n=cl(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 Ml=b("$ZodRecord",(t,e)=>{me.init(t,e),t._zod.parse=(r,n)=>{let o=r.value;if(!vo(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(...pr(c,l.issues)),r.value[c]=l.value})):(u.issues.length&&r.issues.push(...pr(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=>Gt(u,n,bt())),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(...pr(i,u.issues)),r.value[a.value]=u.value})):(c.issues.length&&r.issues.push(...pr(i,c.issues)),r.value[a.value]=c.value)}}return s.length?Promise.all(s).then(()=>r):r}});var jl=b("$ZodEnum",(t,e)=>{me.init(t,e);let r=ks(e.entries);t._zod.values=new Set(r),t._zod.pattern=new RegExp(`^(${r.filter(n=>Vu.has(typeof n)).map(n=>typeof n=="string"?Wr(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}}),zl=b("$ZodLiteral",(t,e)=>{me.init(t,e),t._zod.values=new Set(e.values),t._zod.pattern=new RegExp(`^(${e.values.map(r=>typeof r=="string"?Wr(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 Ll=b("$ZodTransform",(t,e)=>{me.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 Rr;return r.value=o,r}}),Hl=b("$ZodOptional",(t,e)=>{me.init(t,e),t._zod.optin="optional",t._zod.optout="optional",Se(t._zod,"values",()=>e.innerType._zod.values?new Set([...e.innerType._zod.values,void 0]):void 0),Se(t._zod,"pattern",()=>{let r=e.innerType._zod.pattern;return r?new RegExp(`^(${Ts(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)}),Ul=b("$ZodNullable",(t,e)=>{me.init(t,e),Se(t._zod,"optin",()=>e.innerType._zod.optin),Se(t._zod,"optout",()=>e.innerType._zod.optout),Se(t._zod,"pattern",()=>{let r=e.innerType._zod.pattern;return r?new RegExp(`^(${Ts(r.source)}|null)$`):void 0}),Se(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)}),Fl=b("$ZodDefault",(t,e)=>{me.init(t,e),t._zod.optin="optional",Se(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=>Sy(s,e)):Sy(o,e)}});function Sy(t,e){return t.value===void 0&&(t.value=e.defaultValue),t}var Zl=b("$ZodPrefault",(t,e)=>{me.init(t,e),t._zod.optin="optional",Se(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))}),Bl=b("$ZodNonOptional",(t,e)=>{me.init(t,e),Se(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=>vy(s,t)):vy(o,t)}});function vy(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 ql=b("$ZodCatch",(t,e)=>{me.init(t,e),t._zod.optin="optional",Se(t._zod,"optout",()=>e.innerType._zod.optout),Se(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=>Gt(i,n,bt()))},input:r.value}),r.issues=[]),r)):(r.value=o.value,o.issues.length&&(r.value=e.catchValue({...r,error:{issues:o.issues.map(s=>Gt(s,n,bt()))},input:r.value}),r.issues=[]),r)}});var Vl=b("$ZodPipe",(t,e)=>{me.init(t,e),Se(t._zod,"values",()=>e.in._zod.values),Se(t._zod,"optin",()=>e.in._zod.optin),Se(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=>by(s,e,n)):by(o,e,n)}});function by(t,e,r){return An(t)?t:e.out._zod.run({value:t.value,issues:t.issues},r)}var Wl=b("$ZodReadonly",(t,e)=>{me.init(t,e),Se(t._zod,"propValues",()=>e.innerType._zod.propValues),Se(t._zod,"values",()=>e.innerType._zod.values),Se(t._zod,"optin",()=>e.innerType._zod.optin),Se(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(ky):ky(o)}});function ky(t){return t.value=Object.freeze(t.value),t}var Kl=b("$ZodCustom",(t,e)=>{We.init(t,e),me.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=>Ey(s,r,n,t));Ey(o,r,n,t)}});function Ey(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(Gu(o))}}var kP=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},EP=()=>{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 ${kP(n.input)}`;case"invalid_value":return n.values.length===1?`Invalid input: expected ${sa(n.values[0])}`:`Invalid option: expected one of ${na(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":""}: ${na(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 Cy(){return{localeError:EP()}}var Os=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 Oy(){return new Os}var Kr=Oy();function Gl(t,e){return new t({type:"string",...V(e)})}function Jl(t,e){return new t({type:"string",format:"email",check:"string_format",abort:!1,...V(e)})}function fa(t,e){return new t({type:"string",format:"guid",check:"string_format",abort:!1,...V(e)})}function Xl(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,...V(e)})}function Yl(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v4",...V(e)})}function Ql(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v6",...V(e)})}function ed(t,e){return new t({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v7",...V(e)})}function td(t,e){return new t({type:"string",format:"url",check:"string_format",abort:!1,...V(e)})}function rd(t,e){return new t({type:"string",format:"emoji",check:"string_format",abort:!1,...V(e)})}function nd(t,e){return new t({type:"string",format:"nanoid",check:"string_format",abort:!1,...V(e)})}function od(t,e){return new t({type:"string",format:"cuid",check:"string_format",abort:!1,...V(e)})}function sd(t,e){return new t({type:"string",format:"cuid2",check:"string_format",abort:!1,...V(e)})}function id(t,e){return new t({type:"string",format:"ulid",check:"string_format",abort:!1,...V(e)})}function ad(t,e){return new t({type:"string",format:"xid",check:"string_format",abort:!1,...V(e)})}function cd(t,e){return new t({type:"string",format:"ksuid",check:"string_format",abort:!1,...V(e)})}function ud(t,e){return new t({type:"string",format:"ipv4",check:"string_format",abort:!1,...V(e)})}function ld(t,e){return new t({type:"string",format:"ipv6",check:"string_format",abort:!1,...V(e)})}function dd(t,e){return new t({type:"string",format:"cidrv4",check:"string_format",abort:!1,...V(e)})}function pd(t,e){return new t({type:"string",format:"cidrv6",check:"string_format",abort:!1,...V(e)})}function fd(t,e){return new t({type:"string",format:"base64",check:"string_format",abort:!1,...V(e)})}function md(t,e){return new t({type:"string",format:"base64url",check:"string_format",abort:!1,...V(e)})}function hd(t,e){return new t({type:"string",format:"e164",check:"string_format",abort:!1,...V(e)})}function gd(t,e){return new t({type:"string",format:"jwt",check:"string_format",abort:!1,...V(e)})}function Iy(t,e){return new t({type:"string",format:"datetime",check:"string_format",offset:!1,local:!1,precision:null,...V(e)})}function Ay(t,e){return new t({type:"string",format:"date",check:"string_format",...V(e)})}function Ny(t,e){return new t({type:"string",format:"time",check:"string_format",precision:null,...V(e)})}function Dy(t,e){return new t({type:"string",format:"duration",check:"string_format",...V(e)})}function yd(t,e){return new t({type:"number",checks:[],...V(e)})}function _d(t,e){return new t({type:"number",check:"number_format",abort:!1,format:"safeint",...V(e)})}function xd(t,e){return new t({type:"boolean",...V(e)})}function Sd(t,e){return new t({type:"null",...V(e)})}function vd(t){return new t({type:"unknown"})}function bd(t,e){return new t({type:"never",...V(e)})}function ma(t,e){return new il({check:"less_than",...V(e),value:t,inclusive:!1})}function Is(t,e){return new il({check:"less_than",...V(e),value:t,inclusive:!0})}function ha(t,e){return new al({check:"greater_than",...V(e),value:t,inclusive:!1})}function As(t,e){return new al({check:"greater_than",...V(e),value:t,inclusive:!0})}function ga(t,e){return new ry({check:"multiple_of",...V(e),value:t})}function ya(t,e){return new oy({check:"max_length",...V(e),maximum:t})}function bo(t,e){return new sy({check:"min_length",...V(e),minimum:t})}function _a(t,e){return new iy({check:"length_equals",...V(e),length:t})}function kd(t,e){return new ay({check:"string_format",format:"regex",...V(e),pattern:t})}function Ed(t){return new cy({check:"string_format",format:"lowercase",...V(t)})}function wd(t){return new uy({check:"string_format",format:"uppercase",...V(t)})}function Td(t,e){return new ly({check:"string_format",format:"includes",...V(e),includes:t})}function Pd(t,e){return new dy({check:"string_format",format:"starts_with",...V(e),prefix:t})}function Rd(t,e){return new py({check:"string_format",format:"ends_with",...V(e),suffix:t})}function Mn(t){return new fy({check:"overwrite",tx:t})}function $d(t){return Mn(e=>e.normalize(t))}function Cd(){return Mn(t=>t.trim())}function Od(){return Mn(t=>t.toLowerCase())}function Id(){return Mn(t=>t.toUpperCase())}function My(t,e,r){return new t({type:"array",element:e,...V(r)})}function Ad(t,e,r){let n=V(r);return n.abort??(n.abort=!0),new t({type:"custom",check:"custom",fn:e,...n})}function Nd(t,e,r){return new t({type:"custom",check:"custom",fn:e,...V(r)})}var xa=class{constructor(e){this.counter=0,this.metadataRegistry=e?.metadata??Kr,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 h=a.schema;switch(o.type){case"string":{let p=h;p.type="string";let{minimum:m,maximum:g,format:y,patterns:_,contentEncoding:x}=e._zod.bag;if(typeof m=="number"&&(p.minLength=m),typeof g=="number"&&(p.maxLength=g),y&&(p.format=s[y]??y,p.format===""&&delete p.format),x&&(p.contentEncoding=x),_&&_.size>0){let S=[..._];S.length===1?p.pattern=S[0].source:S.length>1&&(a.schema.allOf=[...S.map(k=>({...this.target==="draft-7"?{type:"string"}:{},pattern:k.source}))])}break}case"number":{let p=h,{minimum:m,maximum:g,format:y,multipleOf:_,exclusiveMaximum:x,exclusiveMinimum:S}=e._zod.bag;typeof y=="string"&&y.includes("int")?p.type="integer":p.type="number",typeof S=="number"&&(p.exclusiveMinimum=S),typeof m=="number"&&(p.minimum=m,typeof S=="number"&&(S>=m?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 _=="number"&&(p.multipleOf=_);break}case"boolean":{let p=h;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":{h.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":{h.not={};break}case"date":{if(this.unrepresentable==="throw")throw new Error("Date cannot be represented in JSON Schema");break}case"array":{let p=h,{minimum:m,maximum:g}=e._zod.bag;typeof m=="number"&&(p.minItems=m),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=h;p.type="object",p.properties={};let m=o.shape;for(let _ in m)p.properties[_]=this.process(m[_],{...d,path:[...d.path,"properties",_]});let g=new Set(Object.keys(m)),y=new Set([...g].filter(_=>{let x=o.shape[_]._zod;return this.io==="input"?x.optin===void 0:x.optout===void 0}));y.size>0&&(p.required=Array.from(y)),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=h;p.anyOf=o.options.map((m,g)=>this.process(m,{...d,path:[...d.path,"anyOf",g]}));break}case"intersection":{let p=h,m=this.process(o.left,{...d,path:[...d.path,"allOf",0]}),g=this.process(o.right,{...d,path:[...d.path,"allOf",1]}),y=x=>"allOf"in x&&Object.keys(x).length===1,_=[...y(m)?m.allOf:[m],...y(g)?g.allOf:[g]];p.allOf=_;break}case"tuple":{let p=h;p.type="array";let m=o.items.map((_,x)=>this.process(_,{...d,path:[...d.path,"prefixItems",x]}));if(this.target==="draft-2020-12"?p.prefixItems=m:p.items=m,o.rest){let _=this.process(o.rest,{...d,path:[...d.path,"items"]});this.target==="draft-2020-12"?p.items=_:p.additionalItems=_}o.rest&&(p.items=this.process(o.rest,{...d,path:[...d.path,"items"]}));let{minimum:g,maximum:y}=e._zod.bag;typeof g=="number"&&(p.minItems=g),typeof y=="number"&&(p.maxItems=y);break}case"record":{let p=h;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=h,m=ks(o.entries);m.every(g=>typeof g=="number")&&(p.type="number"),m.every(g=>typeof g=="string")&&(p.type="string"),p.enum=m;break}case"literal":{let p=h,m=[];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");m.push(Number(g))}else m.push(g);if(m.length!==0)if(m.length===1){let g=m[0];p.type=g===null?"null":typeof g,p.const=g}else m.every(g=>typeof g=="number")&&(p.type="number"),m.every(g=>typeof g=="string")&&(p.type="string"),m.every(g=>typeof g=="boolean")&&(p.type="string"),m.every(g=>g===null)&&(p.type="null"),p.enum=m;break}case"file":{let p=h,m={type:"string",format:"binary",contentEncoding:"binary"},{minimum:g,maximum:y,mime:_}=e._zod.bag;g!==void 0&&(m.minLength=g),y!==void 0&&(m.maxLength=y),_?_.length===1?(m.contentMediaType=_[0],Object.assign(p,m)):p.anyOf=_.map(x=>({...m,contentMediaType:x})):Object.assign(p,m);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);h.anyOf=[p,{type:"null"}];break}case"nonoptional":{this.process(o.innerType,d),a.ref=o.innerType;break}case"success":{let p=h;p.type="boolean";break}case"default":{this.process(o.innerType,d),a.ref=o.innerType,h.default=JSON.parse(JSON.stringify(o.defaultValue));break}case"prefault":{this.process(o.innerType,d),a.ref=o.innerType,this.io==="input"&&(h._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")}h.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=h,m=e._zod.pattern;if(!m)throw new Error("Pattern not found in template literal");p.type="string",p.pattern=m.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,h.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"&&Ue(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 m=n.external.registry.get(l[0])?.id,g=n.external.uri??(_=>_);if(m)return{ref:g(m)};let y=l[1].defId??l[1].schema.id??`schema${this.counter++}`;return l[1].defId=y,{defId:y,ref:`${g("__shared")}#/${d}/${y}`}}if(l[1]===o)return{ref:"#"};let h=`#/${d}/`,p=l[1].schema.id??`__schema${this.counter++}`;return{defId:p,ref:h+p}},i=l=>{if(l[1].schema.$ref)return;let d=l[1],{ref:f,defId:h}=s(l);d.def={...d.schema},h&&(d.defId=h);let p=d.schema;for(let m in p)delete p[m];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>
|
|
185
192
|
|
|
186
|
-
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 wd(t,e){if(t instanceof Ts){let n=new pa(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 pa(e);return r.process(t),r.emit(t,e)}function Le(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 Le(o.element,r);case"object":{for(let s in o.shape)if(Le(o.shape[s],r))return!0;return!1}case"union":{for(let s of o.options)if(Le(s,r))return!0;return!1}case"intersection":return Le(o.left,r)||Le(o.right,r);case"tuple":{for(let s of o.items)if(Le(s,r))return!0;return!!(o.rest&&Le(o.rest,r))}case"record":return Le(o.keyType,r)||Le(o.valueType,r);case"map":return Le(o.keyType,r)||Le(o.valueType,r);case"set":return Le(o.valueType,r);case"promise":case"optional":case"nonoptional":case"nullable":case"readonly":return Le(o.innerType,r);case"lazy":return Le(o.getter(),r);case"default":return Le(o.innerType,r);case"prefault":return Le(o.innerType,r);case"custom":return!1;case"transform":return!0;case"pipe":return Le(o.in,r)||Le(o.out,r);case"success":return!1;case"catch":return!1;default:}throw new Error(`Unknown schema type: ${o.type}`)}var k0=S("ZodMiniType",(t,e)=>{if(!t._zod)throw new Error("Uninitialized schema in ZodMiniType.");fe.init(t,e),t.def=e,t.parse=(r,n)=>Zu(t,r,n,{callee:t.parse}),t.safeParse=(r,n)=>Cn(t,r,n),t.parseAsync=async(r,n)=>Bu(t,r,n,{callee:t.parseAsync}),t.safeParseAsync=async(r,n)=>On(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)=>xt(t,r,n),t.brand=()=>t,t.register=((r,n)=>(r.add(t,n),t))});var E0=S("ZodMiniObject",(t,e)=>{oa.init(t,e),k0.init(t,e),oe.defineLazy(t,"shape",()=>e.shape)});function Td(t,e){let r={type:"object",get shape(){return oe.assignProp(this,"shape",{...t}),this.shape},...oe.normalizeParams(e)};return new E0(r)}function Pt(t){return!!t._zod}function Nn(t){let e=Object.values(t);if(e.length===0)return Td({});let r=e.every(Pt),n=e.every(o=>!Pt(o));if(r)return Td(t);if(n)return $u(t);throw new Error("Mixed Zod versions detected in object shape.")}function qr(t,e){return Pt(t)?Cn(t,e):t.safeParse(e)}async function fa(t,e){return Pt(t)?await On(t,e):await t.safeParseAsync(e)}function Br(t){if(!t)return;let e;if(Pt(t)?e=t._zod?.def?.shape:e=t.shape,!!e){if(typeof e=="function")try{return e()}catch{return}return e}}function _o(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 Nn(t)}}if(Pt(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 ma(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 _y(t){return t.description}function vy(t){if(Pt(t))return t._zod?.def?.type==="optional";let e=t;return typeof t.isOptional=="function"?t.isOptional():e._def?.typeName==="ZodOptional"}function ha(t){if(Pt(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 $s={};Fe($s,{ZodISODate:()=>by,ZodISODateTime:()=>xy,ZodISODuration:()=>ky,ZodISOTime:()=>Sy,date:()=>Pd,datetime:()=>Rd,duration:()=>Cd,time:()=>$d});var xy=S("ZodISODateTime",(t,e)=>{sy.init(t,e),Re.init(t,e)});function Rd(t){return py(xy,t)}var by=S("ZodISODate",(t,e)=>{iy.init(t,e),Re.init(t,e)});function Pd(t){return fy(by,t)}var Sy=S("ZodISOTime",(t,e)=>{ay.init(t,e),Re.init(t,e)});function $d(t){return my(Sy,t)}var ky=S("ZodISODuration",(t,e)=>{cy.init(t,e),Re.init(t,e)});function Cd(t){return hy(ky,t)}var Ey=(t,e)=>{Qi.init(t,e),t.name="ZodError",Object.defineProperties(t,{format:{value:r=>Hu(t,r)},flatten:{value:r=>Uu(t,r)},addIssue:{value:r=>t.issues.push(r)},addIssues:{value:r=>t.issues.push(...r)},isEmpty:{get(){return t.issues.length===0}}})},gU=S("ZodError",Ey),Cs=S("ZodError",Ey,{Parent:Error});var wy=Fu(Cs),Ty=qu(Cs),Ry=Vu(Cs),Py=Wu(Cs);var Oe=S("ZodType",(t,e)=>(fe.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)=>xt(t,r,n),t.brand=()=>t,t.register=((r,n)=>(r.add(t,n),t)),t.parse=(r,n)=>wy(t,r,n,{callee:t.parse}),t.safeParse=(r,n)=>Ry(t,r,n),t.parseAsync=async(r,n)=>Ty(t,r,n,{callee:t.parseAsync}),t.safeParseAsync=async(r,n)=>Py(t,r,n),t.spa=t.safeParseAsync,t.refine=(r,n)=>t.check(bR(r,n)),t.superRefine=r=>t.check(SR(r)),t.overwrite=r=>t.check(In(r)),t.optional=()=>$e(t),t.nullable=()=>Oy(t),t.nullish=()=>$e(Oy(t)),t.nonoptional=r=>mR(t,r),t.array=()=>se(t),t.or=r=>Se([t,r]),t.and=r=>ya(t,r),t.transform=r=>Id(t,jy(r)),t.default=r=>dR(t,r),t.prefault=r=>fR(t,r),t.catch=r=>gR(t,r),t.pipe=r=>Id(t,r),t.readonly=()=>vR(t),t.describe=r=>{let n=t.clone();return Zr.add(n,{description:r}),n},Object.defineProperty(t,"description",{get(){return Zr.get(t)?.description},configurable:!0}),t.meta=(...r)=>{if(r.length===0)return Zr.get(t);let n=t.clone();return Zr.add(n,r[0]),n},t.isOptional=()=>t.safeParse(void 0).success,t.isNullable=()=>t.safeParse(null).success,t)),Iy=S("_ZodString",(t,e)=>{ws.init(t,e),Oe.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(fd(...n)),t.includes=(...n)=>t.check(gd(...n)),t.startsWith=(...n)=>t.check(yd(...n)),t.endsWith=(...n)=>t.check(_d(...n)),t.min=(...n)=>t.check(yo(...n)),t.max=(...n)=>t.check(la(...n)),t.length=(...n)=>t.check(da(...n)),t.nonempty=(...n)=>t.check(yo(1,...n)),t.lowercase=n=>t.check(md(n)),t.uppercase=n=>t.check(hd(n)),t.trim=()=>t.check(xd()),t.normalize=(...n)=>t.check(vd(...n)),t.toLowerCase=()=>t.check(bd()),t.toUpperCase=()=>t.check(Sd())}),A0=S("ZodString",(t,e)=>{ws.init(t,e),Iy.init(t,e),t.email=r=>t.check(Ul(N0,r)),t.url=r=>t.check(Bl(D0,r)),t.jwt=r=>t.check(id(J0,r)),t.emoji=r=>t.check(Vl(M0,r)),t.guid=r=>t.check(ia($y,r)),t.uuid=r=>t.check(Hl(ga,r)),t.uuidv4=r=>t.check(Fl(ga,r)),t.uuidv6=r=>t.check(Zl(ga,r)),t.uuidv7=r=>t.check(ql(ga,r)),t.nanoid=r=>t.check(Wl(j0,r)),t.guid=r=>t.check(ia($y,r)),t.cuid=r=>t.check(Kl(z0,r)),t.cuid2=r=>t.check(Gl(L0,r)),t.ulid=r=>t.check(Jl(U0,r)),t.base64=r=>t.check(nd(W0,r)),t.base64url=r=>t.check(od(K0,r)),t.xid=r=>t.check(Xl(H0,r)),t.ksuid=r=>t.check(Yl(F0,r)),t.ipv4=r=>t.check(Ql(Z0,r)),t.ipv6=r=>t.check(ed(q0,r)),t.cidrv4=r=>t.check(td(B0,r)),t.cidrv6=r=>t.check(rd(V0,r)),t.e164=r=>t.check(sd(G0,r)),t.datetime=r=>t.check(Rd(r)),t.date=r=>t.check(Pd(r)),t.time=r=>t.check($d(r)),t.duration=r=>t.check(Cd(r))});function x(t){return Ll(A0,t)}var Re=S("ZodStringFormat",(t,e)=>{_e.init(t,e),Iy.init(t,e)}),N0=S("ZodEmail",(t,e)=>{tl.init(t,e),Re.init(t,e)});var $y=S("ZodGUID",(t,e)=>{Qu.init(t,e),Re.init(t,e)});var ga=S("ZodUUID",(t,e)=>{el.init(t,e),Re.init(t,e)});var D0=S("ZodURL",(t,e)=>{rl.init(t,e),Re.init(t,e)});var M0=S("ZodEmoji",(t,e)=>{nl.init(t,e),Re.init(t,e)});var j0=S("ZodNanoID",(t,e)=>{ol.init(t,e),Re.init(t,e)});var z0=S("ZodCUID",(t,e)=>{sl.init(t,e),Re.init(t,e)});var L0=S("ZodCUID2",(t,e)=>{il.init(t,e),Re.init(t,e)});var U0=S("ZodULID",(t,e)=>{al.init(t,e),Re.init(t,e)});var H0=S("ZodXID",(t,e)=>{cl.init(t,e),Re.init(t,e)});var F0=S("ZodKSUID",(t,e)=>{ul.init(t,e),Re.init(t,e)});var Z0=S("ZodIPv4",(t,e)=>{ll.init(t,e),Re.init(t,e)});var q0=S("ZodIPv6",(t,e)=>{dl.init(t,e),Re.init(t,e)});var B0=S("ZodCIDRv4",(t,e)=>{pl.init(t,e),Re.init(t,e)});var V0=S("ZodCIDRv6",(t,e)=>{fl.init(t,e),Re.init(t,e)});var W0=S("ZodBase64",(t,e)=>{ml.init(t,e),Re.init(t,e)});var K0=S("ZodBase64URL",(t,e)=>{hl.init(t,e),Re.init(t,e)});var G0=S("ZodE164",(t,e)=>{gl.init(t,e),Re.init(t,e)});var J0=S("ZodJWT",(t,e)=>{yl.init(t,e),Re.init(t,e)});var Ay=S("ZodNumber",(t,e)=>{na.init(t,e),Oe.init(t,e),t.gt=(n,o)=>t.check(ca(n,o)),t.gte=(n,o)=>t.check(Ps(n,o)),t.min=(n,o)=>t.check(Ps(n,o)),t.lt=(n,o)=>t.check(aa(n,o)),t.lte=(n,o)=>t.check(Rs(n,o)),t.max=(n,o)=>t.check(Rs(n,o)),t.int=n=>t.check(Cy(n)),t.safe=n=>t.check(Cy(n)),t.positive=n=>t.check(ca(0,n)),t.nonnegative=n=>t.check(Ps(0,n)),t.negative=n=>t.check(aa(0,n)),t.nonpositive=n=>t.check(Rs(0,n)),t.multipleOf=(n,o)=>t.check(ua(n,o)),t.step=(n,o)=>t.check(ua(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 pe(t){return ad(Ay,t)}var X0=S("ZodNumberFormat",(t,e)=>{_l.init(t,e),Ay.init(t,e)});function Cy(t){return cd(X0,t)}var Y0=S("ZodBoolean",(t,e)=>{vl.init(t,e),Oe.init(t,e)});function Ze(t){return ud(Y0,t)}var Q0=S("ZodNull",(t,e)=>{xl.init(t,e),Oe.init(t,e)});function Ny(t){return ld(Q0,t)}var eR=S("ZodUnknown",(t,e)=>{bl.init(t,e),Oe.init(t,e)});function Pe(){return dd(eR)}var tR=S("ZodNever",(t,e)=>{Sl.init(t,e),Oe.init(t,e)});function rR(t){return pd(tR,t)}var nR=S("ZodArray",(t,e)=>{kl.init(t,e),Oe.init(t,e),t.element=e.element,t.min=(r,n)=>t.check(yo(r,n)),t.nonempty=r=>t.check(yo(1,r)),t.max=(r,n)=>t.check(la(r,n)),t.length=(r,n)=>t.check(da(r,n)),t.unwrap=()=>t.element});function se(t,e){return gy(nR,t,e)}var Dy=S("ZodObject",(t,e)=>{oa.init(t,e),Oe.init(t,e),oe.defineLazy(t,"shape",()=>e.shape),t.keyof=()=>ft(Object.keys(t._zod.def.shape)),t.catchall=r=>t.clone({...t._zod.def,catchall:r}),t.passthrough=()=>t.clone({...t._zod.def,catchall:Pe()}),t.loose=()=>t.clone({...t._zod.def,catchall:Pe()}),t.strict=()=>t.clone({...t._zod.def,catchall:rR()}),t.strip=()=>t.clone({...t._zod.def,catchall:void 0}),t.extend=r=>oe.extend(t,r),t.merge=r=>oe.merge(t,r),t.pick=r=>oe.pick(t,r),t.omit=r=>oe.omit(t,r),t.partial=(...r)=>oe.partial(zy,t,r[0]),t.required=(...r)=>oe.required(Ly,t,r[0])});function A(t,e){let r={type:"object",get shape(){return oe.assignProp(this,"shape",{...t}),this.shape},...oe.normalizeParams(e)};return new Dy(r)}function ot(t,e){return new Dy({type:"object",get shape(){return oe.assignProp(this,"shape",{...t}),this.shape},catchall:Pe(),...oe.normalizeParams(e)})}var My=S("ZodUnion",(t,e)=>{sa.init(t,e),Oe.init(t,e),t.options=e.options});function Se(t,e){return new My({type:"union",options:t,...oe.normalizeParams(e)})}var oR=S("ZodDiscriminatedUnion",(t,e)=>{My.init(t,e),El.init(t,e)});function Ad(t,e,r){return new oR({type:"union",options:e,discriminator:t,...oe.normalizeParams(r)})}var sR=S("ZodIntersection",(t,e)=>{wl.init(t,e),Oe.init(t,e)});function ya(t,e){return new sR({type:"intersection",left:t,right:e})}var iR=S("ZodRecord",(t,e)=>{Tl.init(t,e),Oe.init(t,e),t.keyType=e.keyType,t.valueType=e.valueType});function ve(t,e,r){return new iR({type:"record",keyType:t,valueType:e,...oe.normalizeParams(r)})}var Od=S("ZodEnum",(t,e)=>{Rl.init(t,e),Oe.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 Od({...e,checks:[],...oe.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 Od({...e,checks:[],...oe.normalizeParams(o),entries:s})}});function ft(t,e){let r=Array.isArray(t)?Object.fromEntries(t.map(n=>[n,n])):t;return new Od({type:"enum",entries:r,...oe.normalizeParams(e)})}var aR=S("ZodLiteral",(t,e)=>{Pl.init(t,e),Oe.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 U(t,e){return new aR({type:"literal",values:Array.isArray(t)?t:[t],...oe.normalizeParams(e)})}var cR=S("ZodTransform",(t,e)=>{$l.init(t,e),Oe.init(t,e),t._zod.parse=(r,n)=>{r.addIssue=s=>{if(typeof s=="string")r.issues.push(oe.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(oe.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 jy(t){return new cR({type:"transform",transform:t})}var zy=S("ZodOptional",(t,e)=>{Cl.init(t,e),Oe.init(t,e),t.unwrap=()=>t._zod.def.innerType});function $e(t){return new zy({type:"optional",innerType:t})}var uR=S("ZodNullable",(t,e)=>{Ol.init(t,e),Oe.init(t,e),t.unwrap=()=>t._zod.def.innerType});function Oy(t){return new uR({type:"nullable",innerType:t})}var lR=S("ZodDefault",(t,e)=>{Il.init(t,e),Oe.init(t,e),t.unwrap=()=>t._zod.def.innerType,t.removeDefault=t.unwrap});function dR(t,e){return new lR({type:"default",innerType:t,get defaultValue(){return typeof e=="function"?e():e}})}var pR=S("ZodPrefault",(t,e)=>{Al.init(t,e),Oe.init(t,e),t.unwrap=()=>t._zod.def.innerType});function fR(t,e){return new pR({type:"prefault",innerType:t,get defaultValue(){return typeof e=="function"?e():e}})}var Ly=S("ZodNonOptional",(t,e)=>{Nl.init(t,e),Oe.init(t,e),t.unwrap=()=>t._zod.def.innerType});function mR(t,e){return new Ly({type:"nonoptional",innerType:t,...oe.normalizeParams(e)})}var hR=S("ZodCatch",(t,e)=>{Dl.init(t,e),Oe.init(t,e),t.unwrap=()=>t._zod.def.innerType,t.removeCatch=t.unwrap});function gR(t,e){return new hR({type:"catch",innerType:t,catchValue:typeof e=="function"?e:()=>e})}var yR=S("ZodPipe",(t,e)=>{Ml.init(t,e),Oe.init(t,e),t.in=e.in,t.out=e.out});function Id(t,e){return new yR({type:"pipe",in:t,out:e})}var _R=S("ZodReadonly",(t,e)=>{jl.init(t,e),Oe.init(t,e)});function vR(t){return new _R({type:"readonly",innerType:t})}var Uy=S("ZodCustom",(t,e)=>{zl.init(t,e),Oe.init(t,e)});function xR(t){let e=new Ve({check:"custom"});return e._zod.check=t,e}function Hy(t,e){return kd(Uy,t??(()=>!0),e)}function bR(t,e={}){return Ed(Uy,t,e)}function SR(t){let e=xR(r=>(r.addIssue=n=>{if(typeof n=="string")r.issues.push(oe.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(oe.issue(o))}},t(r.value,r)));return e}function Nd(t,e){return Id(jy(t),e)}vt(ly());var Md="2025-11-25";var Fy=[Md,"2025-06-18","2025-03-26","2024-11-05","2024-10-07"],Vr="io.modelcontextprotocol/related-task",va="2.0",Ue=Hy(t=>t!==null&&(typeof t=="object"||typeof t=="function")),Zy=Se([x(),pe().int()]),qy=x(),CU=ot({ttl:pe().optional(),pollInterval:pe().optional()}),kR=A({ttl:pe().optional()}),ER=A({taskId:x()}),jd=ot({progressToken:Zy.optional(),[Vr]:ER.optional()}),bt=A({_meta:jd.optional()}),Os=bt.extend({task:kR.optional()}),By=t=>Os.safeParse(t).success,We=A({method:x(),params:bt.loose().optional()}),$t=A({_meta:jd.optional()}),Ct=A({method:x(),params:$t.loose().optional()}),Ke=ot({_meta:jd.optional()}),xa=Se([x(),pe().int()]),Vy=A({jsonrpc:U(va),id:xa,...We.shape}).strict(),zd=t=>Vy.safeParse(t).success,Wy=A({jsonrpc:U(va),...Ct.shape}).strict(),Ky=t=>Wy.safeParse(t).success,Ld=A({jsonrpc:U(va),id:xa,result:Ke}).strict(),Is=t=>Ld.safeParse(t).success;var Z;(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"})(Z||(Z={}));var Ud=A({jsonrpc:U(va),id:xa.optional(),error:A({code:pe().int(),message:x(),data:Pe().optional()})}).strict();var Gy=t=>Ud.safeParse(t).success;var Jy=Se([Vy,Wy,Ld,Ud]),OU=Se([Ld,Ud]),ba=Ke.strict(),wR=$t.extend({requestId:xa.optional(),reason:x().optional()}),Sa=Ct.extend({method:U("notifications/cancelled"),params:wR}),TR=A({src:x(),mimeType:x().optional(),sizes:se(x()).optional(),theme:ft(["light","dark"]).optional()}),As=A({icons:se(TR).optional()}),vo=A({name:x(),title:x().optional()}),Xy=vo.extend({...vo.shape,...As.shape,version:x(),websiteUrl:x().optional(),description:x().optional()}),RR=ya(A({applyDefaults:Ze().optional()}),ve(x(),Pe())),PR=Nd(t=>t&&typeof t=="object"&&!Array.isArray(t)&&Object.keys(t).length===0?{form:{}}:t,ya(A({form:RR.optional(),url:Ue.optional()}),ve(x(),Pe()).optional())),$R=ot({list:Ue.optional(),cancel:Ue.optional(),requests:ot({sampling:ot({createMessage:Ue.optional()}).optional(),elicitation:ot({create:Ue.optional()}).optional()}).optional()}),CR=ot({list:Ue.optional(),cancel:Ue.optional(),requests:ot({tools:ot({call:Ue.optional()}).optional()}).optional()}),OR=A({experimental:ve(x(),Ue).optional(),sampling:A({context:Ue.optional(),tools:Ue.optional()}).optional(),elicitation:PR.optional(),roots:A({listChanged:Ze().optional()}).optional(),tasks:$R.optional(),extensions:ve(x(),Ue).optional()}),IR=bt.extend({protocolVersion:x(),capabilities:OR,clientInfo:Xy}),Hd=We.extend({method:U("initialize"),params:IR});var AR=A({experimental:ve(x(),Ue).optional(),logging:Ue.optional(),completions:Ue.optional(),prompts:A({listChanged:Ze().optional()}).optional(),resources:A({subscribe:Ze().optional(),listChanged:Ze().optional()}).optional(),tools:A({listChanged:Ze().optional()}).optional(),tasks:CR.optional(),extensions:ve(x(),Ue).optional()}),NR=Ke.extend({protocolVersion:x(),capabilities:AR,serverInfo:Xy,instructions:x().optional()}),Fd=Ct.extend({method:U("notifications/initialized"),params:$t.optional()});var ka=We.extend({method:U("ping"),params:bt.optional()}),DR=A({progress:pe(),total:$e(pe()),message:$e(x())}),MR=A({...$t.shape,...DR.shape,progressToken:Zy}),Ea=Ct.extend({method:U("notifications/progress"),params:MR}),jR=bt.extend({cursor:qy.optional()}),Ns=We.extend({params:jR.optional()}),Ds=Ke.extend({nextCursor:qy.optional()}),zR=ft(["working","input_required","completed","failed","cancelled"]),Ms=A({taskId:x(),status:zR,ttl:Se([pe(),Ny()]),createdAt:x(),lastUpdatedAt:x(),pollInterval:$e(pe()),statusMessage:$e(x())}),xo=Ke.extend({task:Ms}),LR=$t.merge(Ms),js=Ct.extend({method:U("notifications/tasks/status"),params:LR}),wa=We.extend({method:U("tasks/get"),params:bt.extend({taskId:x()})}),Ta=Ke.merge(Ms),Ra=We.extend({method:U("tasks/result"),params:bt.extend({taskId:x()})}),IU=Ke.loose(),Pa=Ns.extend({method:U("tasks/list")}),$a=Ds.extend({tasks:se(Ms)}),Ca=We.extend({method:U("tasks/cancel"),params:bt.extend({taskId:x()})}),Yy=Ke.merge(Ms),Qy=A({uri:x(),mimeType:$e(x()),_meta:ve(x(),Pe()).optional()}),e_=Qy.extend({text:x()}),Zd=x().refine(t=>{try{return atob(t),!0}catch{return!1}},{message:"Invalid Base64 string"}),t_=Qy.extend({blob:Zd}),zs=ft(["user","assistant"]),bo=A({audience:se(zs).optional(),priority:pe().min(0).max(1).optional(),lastModified:$s.datetime({offset:!0}).optional()}),r_=A({...vo.shape,...As.shape,uri:x(),description:$e(x()),mimeType:$e(x()),size:$e(pe()),annotations:bo.optional(),_meta:$e(ot({}))}),UR=A({...vo.shape,...As.shape,uriTemplate:x(),description:$e(x()),mimeType:$e(x()),annotations:bo.optional(),_meta:$e(ot({}))}),So=Ns.extend({method:U("resources/list")}),HR=Ds.extend({resources:se(r_)}),ko=Ns.extend({method:U("resources/templates/list")}),FR=Ds.extend({resourceTemplates:se(UR)}),qd=bt.extend({uri:x()}),ZR=qd,Oa=We.extend({method:U("resources/read"),params:ZR}),qR=Ke.extend({contents:se(Se([e_,t_]))}),BR=Ct.extend({method:U("notifications/resources/list_changed"),params:$t.optional()}),VR=qd,WR=We.extend({method:U("resources/subscribe"),params:VR}),KR=qd,GR=We.extend({method:U("resources/unsubscribe"),params:KR}),JR=$t.extend({uri:x()}),XR=Ct.extend({method:U("notifications/resources/updated"),params:JR}),YR=A({name:x(),description:$e(x()),required:$e(Ze())}),QR=A({...vo.shape,...As.shape,description:$e(x()),arguments:$e(se(YR)),_meta:$e(ot({}))}),Eo=Ns.extend({method:U("prompts/list")}),eP=Ds.extend({prompts:se(QR)}),tP=bt.extend({name:x(),arguments:ve(x(),x()).optional()}),Ia=We.extend({method:U("prompts/get"),params:tP}),Bd=A({type:U("text"),text:x(),annotations:bo.optional(),_meta:ve(x(),Pe()).optional()}),Vd=A({type:U("image"),data:Zd,mimeType:x(),annotations:bo.optional(),_meta:ve(x(),Pe()).optional()}),Wd=A({type:U("audio"),data:Zd,mimeType:x(),annotations:bo.optional(),_meta:ve(x(),Pe()).optional()}),rP=A({type:U("tool_use"),name:x(),id:x(),input:ve(x(),Pe()),_meta:ve(x(),Pe()).optional()}),nP=A({type:U("resource"),resource:Se([e_,t_]),annotations:bo.optional(),_meta:ve(x(),Pe()).optional()}),oP=r_.extend({type:U("resource_link")}),Kd=Se([Bd,Vd,Wd,oP,nP]),sP=A({role:zs,content:Kd}),iP=Ke.extend({description:x().optional(),messages:se(sP)}),aP=Ct.extend({method:U("notifications/prompts/list_changed"),params:$t.optional()}),cP=A({title:x().optional(),readOnlyHint:Ze().optional(),destructiveHint:Ze().optional(),idempotentHint:Ze().optional(),openWorldHint:Ze().optional()}),uP=A({taskSupport:ft(["required","optional","forbidden"]).optional()}),n_=A({...vo.shape,...As.shape,description:x().optional(),inputSchema:A({type:U("object"),properties:ve(x(),Ue).optional(),required:se(x()).optional()}).catchall(Pe()),outputSchema:A({type:U("object"),properties:ve(x(),Ue).optional(),required:se(x()).optional()}).catchall(Pe()).optional(),annotations:cP.optional(),execution:uP.optional(),_meta:ve(x(),Pe()).optional()}),wo=Ns.extend({method:U("tools/list")}),lP=Ds.extend({tools:se(n_)}),Aa=Ke.extend({content:se(Kd).default([]),structuredContent:ve(x(),Pe()).optional(),isError:Ze().optional()}),AU=Aa.or(Ke.extend({toolResult:Pe()})),dP=Os.extend({name:x(),arguments:ve(x(),Pe()).optional()}),To=We.extend({method:U("tools/call"),params:dP}),pP=Ct.extend({method:U("notifications/tools/list_changed"),params:$t.optional()}),NU=A({autoRefresh:Ze().default(!0),debounceMs:pe().int().nonnegative().default(300)}),Ls=ft(["debug","info","notice","warning","error","critical","alert","emergency"]),fP=bt.extend({level:Ls}),Gd=We.extend({method:U("logging/setLevel"),params:fP}),mP=$t.extend({level:Ls,logger:x().optional(),data:Pe()}),hP=Ct.extend({method:U("notifications/message"),params:mP}),gP=A({name:x().optional()}),yP=A({hints:se(gP).optional(),costPriority:pe().min(0).max(1).optional(),speedPriority:pe().min(0).max(1).optional(),intelligencePriority:pe().min(0).max(1).optional()}),_P=A({mode:ft(["auto","required","none"]).optional()}),vP=A({type:U("tool_result"),toolUseId:x().describe("The unique identifier for the corresponding tool call."),content:se(Kd).default([]),structuredContent:A({}).loose().optional(),isError:Ze().optional(),_meta:ve(x(),Pe()).optional()}),xP=Ad("type",[Bd,Vd,Wd]),_a=Ad("type",[Bd,Vd,Wd,rP,vP]),bP=A({role:zs,content:Se([_a,se(_a)]),_meta:ve(x(),Pe()).optional()}),SP=Os.extend({messages:se(bP),modelPreferences:yP.optional(),systemPrompt:x().optional(),includeContext:ft(["none","thisServer","allServers"]).optional(),temperature:pe().optional(),maxTokens:pe().int(),stopSequences:se(x()).optional(),metadata:Ue.optional(),tools:se(n_).optional(),toolChoice:_P.optional()}),kP=We.extend({method:U("sampling/createMessage"),params:SP}),Us=Ke.extend({model:x(),stopReason:$e(ft(["endTurn","stopSequence","maxTokens"]).or(x())),role:zs,content:xP}),Jd=Ke.extend({model:x(),stopReason:$e(ft(["endTurn","stopSequence","maxTokens","toolUse"]).or(x())),role:zs,content:Se([_a,se(_a)])}),EP=A({type:U("boolean"),title:x().optional(),description:x().optional(),default:Ze().optional()}),wP=A({type:U("string"),title:x().optional(),description:x().optional(),minLength:pe().optional(),maxLength:pe().optional(),format:ft(["email","uri","date","date-time"]).optional(),default:x().optional()}),TP=A({type:ft(["number","integer"]),title:x().optional(),description:x().optional(),minimum:pe().optional(),maximum:pe().optional(),default:pe().optional()}),RP=A({type:U("string"),title:x().optional(),description:x().optional(),enum:se(x()),default:x().optional()}),PP=A({type:U("string"),title:x().optional(),description:x().optional(),oneOf:se(A({const:x(),title:x()})),default:x().optional()}),$P=A({type:U("string"),title:x().optional(),description:x().optional(),enum:se(x()),enumNames:se(x()).optional(),default:x().optional()}),CP=Se([RP,PP]),OP=A({type:U("array"),title:x().optional(),description:x().optional(),minItems:pe().optional(),maxItems:pe().optional(),items:A({type:U("string"),enum:se(x())}),default:se(x()).optional()}),IP=A({type:U("array"),title:x().optional(),description:x().optional(),minItems:pe().optional(),maxItems:pe().optional(),items:A({anyOf:se(A({const:x(),title:x()}))}),default:se(x()).optional()}),AP=Se([OP,IP]),NP=Se([$P,CP,AP]),DP=Se([NP,EP,wP,TP]),MP=Os.extend({mode:U("form").optional(),message:x(),requestedSchema:A({type:U("object"),properties:ve(x(),DP),required:se(x()).optional()})}),jP=Os.extend({mode:U("url"),message:x(),elicitationId:x(),url:x().url()}),zP=Se([MP,jP]),LP=We.extend({method:U("elicitation/create"),params:zP}),UP=$t.extend({elicitationId:x()}),HP=Ct.extend({method:U("notifications/elicitation/complete"),params:UP}),Ro=Ke.extend({action:ft(["accept","decline","cancel"]),content:Nd(t=>t===null?void 0:t,ve(x(),Se([x(),pe(),Ze(),se(x())])).optional())}),FP=A({type:U("ref/resource"),uri:x()});var ZP=A({type:U("ref/prompt"),name:x()}),qP=bt.extend({ref:Se([ZP,FP]),argument:A({name:x(),value:x()}),context:A({arguments:ve(x(),x()).optional()}).optional()}),Na=We.extend({method:U("completion/complete"),params:qP});function o_(t){if(t.params.ref.type!=="ref/prompt")throw new TypeError(`Expected CompleteRequestPrompt, but got ${t.params.ref.type}`)}function s_(t){if(t.params.ref.type!=="ref/resource")throw new TypeError(`Expected CompleteRequestResourceTemplate, but got ${t.params.ref.type}`)}var BP=Ke.extend({completion:ot({values:se(x()).max(100),total:$e(pe().int()),hasMore:$e(Ze())})}),VP=A({uri:x().startsWith("file://"),name:x().optional(),_meta:ve(x(),Pe()).optional()}),WP=We.extend({method:U("roots/list"),params:bt.optional()}),Xd=Ke.extend({roots:se(VP)}),KP=Ct.extend({method:U("notifications/roots/list_changed"),params:$t.optional()}),DU=Se([ka,Hd,Na,Gd,Ia,Eo,So,ko,Oa,WR,GR,To,wo,wa,Ra,Pa,Ca]),MU=Se([Sa,Ea,Fd,KP,js]),jU=Se([ba,Us,Jd,Ro,Xd,Ta,$a,xo]),zU=Se([ka,kP,LP,WP,wa,Ra,Pa,Ca]),LU=Se([Sa,Ea,hP,XR,BR,pP,aP,js,HP]),UU=Se([ba,NR,BP,iP,eP,HR,FR,qR,Aa,lP,Ta,$a,xo]),z=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===Z.UrlElicitationRequired&&n){let o=n;if(o.elicitations)return new Dd(o.elicitations,r)}return new t(e,r,n)}},Dd=class extends z{constructor(e,r=`URL elicitation${e.length>1?"s":""} required`){super(Z.UrlElicitationRequired,r,{elicitations:e})}get elicitations(){return this.data?.elicitations??[]}};function Wr(t){return t==="completed"||t==="failed"||t==="cancelled"}var a_=Symbol("Let zodToJsonSchema decide on which parser to use");var i_={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"},c_=t=>typeof t=="string"?{...i_,name:t}:{...i_,...t};var u_=t=>{let e=c_(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 Yd(t,e,r,n){n?.errorMessages&&r&&(t.errorMessage={...t.errorMessage,[e]:r})}function ie(t,e,r,n,o){t[e]=r,Yd(t,e,n,o)}var Da=(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 Ce(t){if(t.target!=="openAi")return{};let e=[...t.basePath,t.definitionPath,t.openAiAnyTypeName];return t.flags.hasReferencedOpenAiAnyType=!0,{$ref:t.$refStrategy==="relative"?Da(e,t.currentPath):e.join("/")}}function l_(t,e){let r={type:"array"};return t.type?._def&&t.type?._def?.typeName!==T.ZodAny&&(r.items=K(t.type._def,{...e,currentPath:[...e.currentPath,"items"]})),t.minLength&&ie(r,"minItems",t.minLength.value,t.minLength.message,e),t.maxLength&&ie(r,"maxItems",t.maxLength.value,t.maxLength.message,e),t.exactLength&&(ie(r,"minItems",t.exactLength.value,t.exactLength.message,e),ie(r,"maxItems",t.exactLength.value,t.exactLength.message,e)),r}function d_(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?ie(r,"minimum",n.value,n.message,e):ie(r,"exclusiveMinimum",n.value,n.message,e):(n.inclusive||(r.exclusiveMinimum=!0),ie(r,"minimum",n.value,n.message,e));break;case"max":e.target==="jsonSchema7"?n.inclusive?ie(r,"maximum",n.value,n.message,e):ie(r,"exclusiveMaximum",n.value,n.message,e):(n.inclusive||(r.exclusiveMaximum=!0),ie(r,"maximum",n.value,n.message,e));break;case"multipleOf":ie(r,"multipleOf",n.value,n.message,e);break}return r}function p_(){return{type:"boolean"}}function Ma(t,e){return K(t.type._def,e)}var f_=(t,e)=>K(t.innerType._def,e);function Qd(t,e,r){let n=r??e.dateStrategy;if(Array.isArray(n))return{anyOf:n.map((o,s)=>Qd(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 GP(t,e)}}var GP=(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":ie(r,"minimum",n.value,n.message,e);break;case"max":ie(r,"maximum",n.value,n.message,e);break}return r};function m_(t,e){return{...K(t.innerType._def,e),default:t.defaultValue()}}function h_(t,e){return e.effectStrategy==="input"?K(t.schema._def,e):Ce(e)}function g_(t){return{type:"string",enum:Array.from(t.values)}}var JP=t=>"type"in t&&t.type==="string"?!1:"allOf"in t;function y_(t,e){let r=[K(t.left._def,{...e,currentPath:[...e.currentPath,"allOf","0"]}),K(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(JP(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 __(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 ep,Vt={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:()=>(ep===void 0&&(ep=RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),ep),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 ja(t,e){let r={type:"string"};if(t.checks)for(let n of t.checks)switch(n.kind){case"min":ie(r,"minLength",typeof r.minLength=="number"?Math.max(r.minLength,n.value):n.value,n.message,e);break;case"max":ie(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":Wt(r,"email",n.message,e);break;case"format:idn-email":Wt(r,"idn-email",n.message,e);break;case"pattern:zod":st(r,Vt.email,n.message,e);break}break;case"url":Wt(r,"uri",n.message,e);break;case"uuid":Wt(r,"uuid",n.message,e);break;case"regex":st(r,n.regex,n.message,e);break;case"cuid":st(r,Vt.cuid,n.message,e);break;case"cuid2":st(r,Vt.cuid2,n.message,e);break;case"startsWith":st(r,RegExp(`^${tp(n.value,e)}`),n.message,e);break;case"endsWith":st(r,RegExp(`${tp(n.value,e)}$`),n.message,e);break;case"datetime":Wt(r,"date-time",n.message,e);break;case"date":Wt(r,"date",n.message,e);break;case"time":Wt(r,"time",n.message,e);break;case"duration":Wt(r,"duration",n.message,e);break;case"length":ie(r,"minLength",typeof r.minLength=="number"?Math.max(r.minLength,n.value):n.value,n.message,e),ie(r,"maxLength",typeof r.maxLength=="number"?Math.min(r.maxLength,n.value):n.value,n.message,e);break;case"includes":{st(r,RegExp(tp(n.value,e)),n.message,e);break}case"ip":{n.version!=="v6"&&Wt(r,"ipv4",n.message,e),n.version!=="v4"&&Wt(r,"ipv6",n.message,e);break}case"base64url":st(r,Vt.base64url,n.message,e);break;case"jwt":st(r,Vt.jwt,n.message,e);break;case"cidr":{n.version!=="v6"&&st(r,Vt.ipv4Cidr,n.message,e),n.version!=="v4"&&st(r,Vt.ipv6Cidr,n.message,e);break}case"emoji":st(r,Vt.emoji(),n.message,e);break;case"ulid":{st(r,Vt.ulid,n.message,e);break}case"base64":{switch(e.base64Strategy){case"format:binary":{Wt(r,"binary",n.message,e);break}case"contentEncoding:base64":{ie(r,"contentEncoding","base64",n.message,e);break}case"pattern:zod":{st(r,Vt.base64,n.message,e);break}}break}case"nanoid":st(r,Vt.nanoid,n.message,e);case"toLowerCase":case"toUpperCase":case"trim":break;default:}return r}function tp(t,e){return e.patternStrategy==="escape"?YP(t):t}var XP=new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");function YP(t){let e="";for(let r=0;r<t.length;r++)XP.has(t[r])||(e+="\\"),e+=t[r];return e}function Wt(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}}})):ie(t,"format",e,r,n)}function st(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:v_(e,n),...r&&n.errorMessages&&{errorMessage:{pattern:r}}})):ie(t,"pattern",v_(e,n),r,n)}function v_(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
|
|
193
|
+
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 h=n.external.registry.get(l[0])?.id;if(e!==l[0]&&h){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),h=f.def??f.schema,p={...h};if(f.ref===null)return;let m=f.ref;if(f.ref=null,m){a(m,d);let g=this.seen.get(m).schema;g.$ref&&d.target==="draft-7"?(h.allOf=h.allOf??[],h.allOf.push(g)):(Object.assign(h,g),Object.assign(h,p))}f.isParent||this.override({zodSchema:l,jsonSchema:h,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 Dd(t,e){if(t instanceof Os){let n=new xa(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 xa(e);return r.process(t),r.emit(t,e)}function Ue(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 Ue(o.element,r);case"object":{for(let s in o.shape)if(Ue(o.shape[s],r))return!0;return!1}case"union":{for(let s of o.options)if(Ue(s,r))return!0;return!1}case"intersection":return Ue(o.left,r)||Ue(o.right,r);case"tuple":{for(let s of o.items)if(Ue(s,r))return!0;return!!(o.rest&&Ue(o.rest,r))}case"record":return Ue(o.keyType,r)||Ue(o.valueType,r);case"map":return Ue(o.keyType,r)||Ue(o.valueType,r);case"set":return Ue(o.valueType,r);case"promise":case"optional":case"nonoptional":case"nullable":case"readonly":return Ue(o.innerType,r);case"lazy":return Ue(o.getter(),r);case"default":return Ue(o.innerType,r);case"prefault":return Ue(o.innerType,r);case"custom":return!1;case"transform":return!0;case"pipe":return Ue(o.in,r)||Ue(o.out,r);case"success":return!1;case"catch":return!1;default:}throw new Error(`Unknown schema type: ${o.type}`)}var sR=b("ZodMiniType",(t,e)=>{if(!t._zod)throw new Error("Uninitialized schema in ZodMiniType.");me.init(t,e),t.def=e,t.parse=(r,n)=>Qu(t,r,n,{callee:t.parse}),t.safeParse=(r,n)=>Nn(t,r,n),t.parseAsync=async(r,n)=>tl(t,r,n,{callee:t.parseAsync}),t.safeParseAsync=async(r,n)=>Dn(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)=>kt(t,r,n),t.brand=()=>t,t.register=((r,n)=>(r.add(t,n),t))});var iR=b("ZodMiniObject",(t,e)=>{da.init(t,e),sR.init(t,e),se.defineLazy(t,"shape",()=>e.shape)});function Md(t,e){let r={type:"object",get shape(){return se.assignProp(this,"shape",{...t}),this.shape},...se.normalizeParams(e)};return new iR(r)}function It(t){return!!t._zod}function zn(t){let e=Object.values(t);if(e.length===0)return Md({});let r=e.every(It),n=e.every(o=>!It(o));if(r)return Md(t);if(n)return Lu(t);throw new Error("Mixed Zod versions detected in object shape.")}function Gr(t,e){return It(t)?Nn(t,e):t.safeParse(e)}async function Sa(t,e){return It(t)?await Dn(t,e):await t.safeParseAsync(e)}function Jr(t){if(!t)return;let e;if(It(t)?e=t._zod?.def?.shape:e=t.shape,!!e){if(typeof e=="function")try{return e()}catch{return}return e}}function ko(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 zn(t)}}if(It(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 va(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 zy(t){return t.description}function Ly(t){if(It(t))return t._zod?.def?.type==="optional";let e=t;return typeof t.isOptional=="function"?t.isOptional():e._def?.typeName==="ZodOptional"}function ba(t){if(It(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 Ns={};He(Ns,{ZodISODate:()=>Uy,ZodISODateTime:()=>Hy,ZodISODuration:()=>Zy,ZodISOTime:()=>Fy,date:()=>zd,datetime:()=>jd,duration:()=>Hd,time:()=>Ld});var Hy=b("ZodISODateTime",(t,e)=>{wy.init(t,e),Re.init(t,e)});function jd(t){return Iy(Hy,t)}var Uy=b("ZodISODate",(t,e)=>{Ty.init(t,e),Re.init(t,e)});function zd(t){return Ay(Uy,t)}var Fy=b("ZodISOTime",(t,e)=>{Py.init(t,e),Re.init(t,e)});function Ld(t){return Ny(Fy,t)}var Zy=b("ZodISODuration",(t,e)=>{Ry.init(t,e),Re.init(t,e)});function Hd(t){return Dy(Zy,t)}var By=(t,e)=>{ia.init(t,e),t.name="ZodError",Object.defineProperties(t,{format:{value:r=>Xu(t,r)},flatten:{value:r=>Ju(t,r)},addIssue:{value:r=>t.issues.push(r)},addIssues:{value:r=>t.issues.push(...r)},isEmpty:{get(){return t.issues.length===0}}})},mU=b("ZodError",By),Ds=b("ZodError",By,{Parent:Error});var qy=Yu(Ds),Vy=el(Ds),Wy=rl(Ds),Ky=nl(Ds);var Ie=b("ZodType",(t,e)=>(me.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)=>kt(t,r,n),t.brand=()=>t,t.register=((r,n)=>(r.add(t,n),t)),t.parse=(r,n)=>qy(t,r,n,{callee:t.parse}),t.safeParse=(r,n)=>Wy(t,r,n),t.parseAsync=async(r,n)=>Vy(t,r,n,{callee:t.parseAsync}),t.safeParseAsync=async(r,n)=>Ky(t,r,n),t.spa=t.safeParseAsync,t.refine=(r,n)=>t.check(n0(r,n)),t.superRefine=r=>t.check(o0(r)),t.overwrite=r=>t.check(Mn(r)),t.optional=()=>Ce(t),t.nullable=()=>Xy(t),t.nullish=()=>Ce(Xy(t)),t.nonoptional=r=>JR(t,r),t.array=()=>ie(t),t.or=r=>Ee([t,r]),t.and=r=>Ea(t,r),t.transform=r=>Fd(t,n_(r)),t.default=r=>WR(t,r),t.prefault=r=>GR(t,r),t.catch=r=>YR(t,r),t.pipe=r=>Fd(t,r),t.readonly=()=>t0(t),t.describe=r=>{let n=t.clone();return Kr.add(n,{description:r}),n},Object.defineProperty(t,"description",{get(){return Kr.get(t)?.description},configurable:!0}),t.meta=(...r)=>{if(r.length===0)return Kr.get(t);let n=t.clone();return Kr.add(n,r[0]),n},t.isOptional=()=>t.safeParse(void 0).success,t.isNullable=()=>t.safeParse(null).success,t)),Yy=b("_ZodString",(t,e)=>{Cs.init(t,e),Ie.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(kd(...n)),t.includes=(...n)=>t.check(Td(...n)),t.startsWith=(...n)=>t.check(Pd(...n)),t.endsWith=(...n)=>t.check(Rd(...n)),t.min=(...n)=>t.check(bo(...n)),t.max=(...n)=>t.check(ya(...n)),t.length=(...n)=>t.check(_a(...n)),t.nonempty=(...n)=>t.check(bo(1,...n)),t.lowercase=n=>t.check(Ed(n)),t.uppercase=n=>t.check(wd(n)),t.trim=()=>t.check(Cd()),t.normalize=(...n)=>t.check($d(...n)),t.toLowerCase=()=>t.check(Od()),t.toUpperCase=()=>t.check(Id())}),hR=b("ZodString",(t,e)=>{Cs.init(t,e),Yy.init(t,e),t.email=r=>t.check(Jl(gR,r)),t.url=r=>t.check(td(yR,r)),t.jwt=r=>t.check(gd(IR,r)),t.emoji=r=>t.check(rd(_R,r)),t.guid=r=>t.check(fa(Gy,r)),t.uuid=r=>t.check(Xl(ka,r)),t.uuidv4=r=>t.check(Yl(ka,r)),t.uuidv6=r=>t.check(Ql(ka,r)),t.uuidv7=r=>t.check(ed(ka,r)),t.nanoid=r=>t.check(nd(xR,r)),t.guid=r=>t.check(fa(Gy,r)),t.cuid=r=>t.check(od(SR,r)),t.cuid2=r=>t.check(sd(vR,r)),t.ulid=r=>t.check(id(bR,r)),t.base64=r=>t.check(fd($R,r)),t.base64url=r=>t.check(md(CR,r)),t.xid=r=>t.check(ad(kR,r)),t.ksuid=r=>t.check(cd(ER,r)),t.ipv4=r=>t.check(ud(wR,r)),t.ipv6=r=>t.check(ld(TR,r)),t.cidrv4=r=>t.check(dd(PR,r)),t.cidrv6=r=>t.check(pd(RR,r)),t.e164=r=>t.check(hd(OR,r)),t.datetime=r=>t.check(jd(r)),t.date=r=>t.check(zd(r)),t.time=r=>t.check(Ld(r)),t.duration=r=>t.check(Hd(r))});function v(t){return Gl(hR,t)}var Re=b("ZodStringFormat",(t,e)=>{ve.init(t,e),Yy.init(t,e)}),gR=b("ZodEmail",(t,e)=>{dl.init(t,e),Re.init(t,e)});var Gy=b("ZodGUID",(t,e)=>{ul.init(t,e),Re.init(t,e)});var ka=b("ZodUUID",(t,e)=>{ll.init(t,e),Re.init(t,e)});var yR=b("ZodURL",(t,e)=>{pl.init(t,e),Re.init(t,e)});var _R=b("ZodEmoji",(t,e)=>{fl.init(t,e),Re.init(t,e)});var xR=b("ZodNanoID",(t,e)=>{ml.init(t,e),Re.init(t,e)});var SR=b("ZodCUID",(t,e)=>{hl.init(t,e),Re.init(t,e)});var vR=b("ZodCUID2",(t,e)=>{gl.init(t,e),Re.init(t,e)});var bR=b("ZodULID",(t,e)=>{yl.init(t,e),Re.init(t,e)});var kR=b("ZodXID",(t,e)=>{_l.init(t,e),Re.init(t,e)});var ER=b("ZodKSUID",(t,e)=>{xl.init(t,e),Re.init(t,e)});var wR=b("ZodIPv4",(t,e)=>{Sl.init(t,e),Re.init(t,e)});var TR=b("ZodIPv6",(t,e)=>{vl.init(t,e),Re.init(t,e)});var PR=b("ZodCIDRv4",(t,e)=>{bl.init(t,e),Re.init(t,e)});var RR=b("ZodCIDRv6",(t,e)=>{kl.init(t,e),Re.init(t,e)});var $R=b("ZodBase64",(t,e)=>{El.init(t,e),Re.init(t,e)});var CR=b("ZodBase64URL",(t,e)=>{wl.init(t,e),Re.init(t,e)});var OR=b("ZodE164",(t,e)=>{Tl.init(t,e),Re.init(t,e)});var IR=b("ZodJWT",(t,e)=>{Pl.init(t,e),Re.init(t,e)});var Qy=b("ZodNumber",(t,e)=>{la.init(t,e),Ie.init(t,e),t.gt=(n,o)=>t.check(ha(n,o)),t.gte=(n,o)=>t.check(As(n,o)),t.min=(n,o)=>t.check(As(n,o)),t.lt=(n,o)=>t.check(ma(n,o)),t.lte=(n,o)=>t.check(Is(n,o)),t.max=(n,o)=>t.check(Is(n,o)),t.int=n=>t.check(Jy(n)),t.safe=n=>t.check(Jy(n)),t.positive=n=>t.check(ha(0,n)),t.nonnegative=n=>t.check(As(0,n)),t.negative=n=>t.check(ma(0,n)),t.nonpositive=n=>t.check(Is(0,n)),t.multipleOf=(n,o)=>t.check(ga(n,o)),t.step=(n,o)=>t.check(ga(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 fe(t){return yd(Qy,t)}var AR=b("ZodNumberFormat",(t,e)=>{Rl.init(t,e),Qy.init(t,e)});function Jy(t){return _d(AR,t)}var NR=b("ZodBoolean",(t,e)=>{$l.init(t,e),Ie.init(t,e)});function Be(t){return xd(NR,t)}var DR=b("ZodNull",(t,e)=>{Cl.init(t,e),Ie.init(t,e)});function e_(t){return Sd(DR,t)}var MR=b("ZodUnknown",(t,e)=>{Ol.init(t,e),Ie.init(t,e)});function $e(){return vd(MR)}var jR=b("ZodNever",(t,e)=>{Il.init(t,e),Ie.init(t,e)});function zR(t){return bd(jR,t)}var LR=b("ZodArray",(t,e)=>{Al.init(t,e),Ie.init(t,e),t.element=e.element,t.min=(r,n)=>t.check(bo(r,n)),t.nonempty=r=>t.check(bo(1,r)),t.max=(r,n)=>t.check(ya(r,n)),t.length=(r,n)=>t.check(_a(r,n)),t.unwrap=()=>t.element});function ie(t,e){return My(LR,t,e)}var t_=b("ZodObject",(t,e)=>{da.init(t,e),Ie.init(t,e),se.defineLazy(t,"shape",()=>e.shape),t.keyof=()=>ht(Object.keys(t._zod.def.shape)),t.catchall=r=>t.clone({...t._zod.def,catchall:r}),t.passthrough=()=>t.clone({...t._zod.def,catchall:$e()}),t.loose=()=>t.clone({...t._zod.def,catchall:$e()}),t.strict=()=>t.clone({...t._zod.def,catchall:zR()}),t.strip=()=>t.clone({...t._zod.def,catchall:void 0}),t.extend=r=>se.extend(t,r),t.merge=r=>se.merge(t,r),t.pick=r=>se.pick(t,r),t.omit=r=>se.omit(t,r),t.partial=(...r)=>se.partial(o_,t,r[0]),t.required=(...r)=>se.required(s_,t,r[0])});function M(t,e){let r={type:"object",get shape(){return se.assignProp(this,"shape",{...t}),this.shape},...se.normalizeParams(e)};return new t_(r)}function it(t,e){return new t_({type:"object",get shape(){return se.assignProp(this,"shape",{...t}),this.shape},catchall:$e(),...se.normalizeParams(e)})}var r_=b("ZodUnion",(t,e)=>{pa.init(t,e),Ie.init(t,e),t.options=e.options});function Ee(t,e){return new r_({type:"union",options:t,...se.normalizeParams(e)})}var HR=b("ZodDiscriminatedUnion",(t,e)=>{r_.init(t,e),Nl.init(t,e)});function Zd(t,e,r){return new HR({type:"union",options:e,discriminator:t,...se.normalizeParams(r)})}var UR=b("ZodIntersection",(t,e)=>{Dl.init(t,e),Ie.init(t,e)});function Ea(t,e){return new UR({type:"intersection",left:t,right:e})}var FR=b("ZodRecord",(t,e)=>{Ml.init(t,e),Ie.init(t,e),t.keyType=e.keyType,t.valueType=e.valueType});function be(t,e,r){return new FR({type:"record",keyType:t,valueType:e,...se.normalizeParams(r)})}var Ud=b("ZodEnum",(t,e)=>{jl.init(t,e),Ie.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 Ud({...e,checks:[],...se.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 Ud({...e,checks:[],...se.normalizeParams(o),entries:s})}});function ht(t,e){let r=Array.isArray(t)?Object.fromEntries(t.map(n=>[n,n])):t;return new Ud({type:"enum",entries:r,...se.normalizeParams(e)})}var ZR=b("ZodLiteral",(t,e)=>{zl.init(t,e),Ie.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 H(t,e){return new ZR({type:"literal",values:Array.isArray(t)?t:[t],...se.normalizeParams(e)})}var BR=b("ZodTransform",(t,e)=>{Ll.init(t,e),Ie.init(t,e),t._zod.parse=(r,n)=>{r.addIssue=s=>{if(typeof s=="string")r.issues.push(se.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(se.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 n_(t){return new BR({type:"transform",transform:t})}var o_=b("ZodOptional",(t,e)=>{Hl.init(t,e),Ie.init(t,e),t.unwrap=()=>t._zod.def.innerType});function Ce(t){return new o_({type:"optional",innerType:t})}var qR=b("ZodNullable",(t,e)=>{Ul.init(t,e),Ie.init(t,e),t.unwrap=()=>t._zod.def.innerType});function Xy(t){return new qR({type:"nullable",innerType:t})}var VR=b("ZodDefault",(t,e)=>{Fl.init(t,e),Ie.init(t,e),t.unwrap=()=>t._zod.def.innerType,t.removeDefault=t.unwrap});function WR(t,e){return new VR({type:"default",innerType:t,get defaultValue(){return typeof e=="function"?e():e}})}var KR=b("ZodPrefault",(t,e)=>{Zl.init(t,e),Ie.init(t,e),t.unwrap=()=>t._zod.def.innerType});function GR(t,e){return new KR({type:"prefault",innerType:t,get defaultValue(){return typeof e=="function"?e():e}})}var s_=b("ZodNonOptional",(t,e)=>{Bl.init(t,e),Ie.init(t,e),t.unwrap=()=>t._zod.def.innerType});function JR(t,e){return new s_({type:"nonoptional",innerType:t,...se.normalizeParams(e)})}var XR=b("ZodCatch",(t,e)=>{ql.init(t,e),Ie.init(t,e),t.unwrap=()=>t._zod.def.innerType,t.removeCatch=t.unwrap});function YR(t,e){return new XR({type:"catch",innerType:t,catchValue:typeof e=="function"?e:()=>e})}var QR=b("ZodPipe",(t,e)=>{Vl.init(t,e),Ie.init(t,e),t.in=e.in,t.out=e.out});function Fd(t,e){return new QR({type:"pipe",in:t,out:e})}var e0=b("ZodReadonly",(t,e)=>{Wl.init(t,e),Ie.init(t,e)});function t0(t){return new e0({type:"readonly",innerType:t})}var i_=b("ZodCustom",(t,e)=>{Kl.init(t,e),Ie.init(t,e)});function r0(t){let e=new We({check:"custom"});return e._zod.check=t,e}function a_(t,e){return Ad(i_,t??(()=>!0),e)}function n0(t,e={}){return Nd(i_,t,e)}function o0(t){let e=r0(r=>(r.addIssue=n=>{if(typeof n=="string")r.issues.push(se.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(se.issue(o))}},t(r.value,r)));return e}function Bd(t,e){return Fd(n_(t),e)}bt(Cy());var Vd="2025-11-25";var c_=[Vd,"2025-06-18","2025-03-26","2024-11-05","2024-10-07"],Xr="io.modelcontextprotocol/related-task",Ta="2.0",Fe=a_(t=>t!==null&&(typeof t=="object"||typeof t=="function")),u_=Ee([v(),fe().int()]),l_=v(),RU=it({ttl:fe().optional(),pollInterval:fe().optional()}),s0=M({ttl:fe().optional()}),i0=M({taskId:v()}),Wd=it({progressToken:u_.optional(),[Xr]:i0.optional()}),Et=M({_meta:Wd.optional()}),Ms=Et.extend({task:s0.optional()}),d_=t=>Ms.safeParse(t).success,Ke=M({method:v(),params:Et.loose().optional()}),At=M({_meta:Wd.optional()}),Nt=M({method:v(),params:At.loose().optional()}),Ge=it({_meta:Wd.optional()}),Pa=Ee([v(),fe().int()]),p_=M({jsonrpc:H(Ta),id:Pa,...Ke.shape}).strict(),Kd=t=>p_.safeParse(t).success,f_=M({jsonrpc:H(Ta),...Nt.shape}).strict(),m_=t=>f_.safeParse(t).success,Gd=M({jsonrpc:H(Ta),id:Pa,result:Ge}).strict(),js=t=>Gd.safeParse(t).success;var B;(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"})(B||(B={}));var Jd=M({jsonrpc:H(Ta),id:Pa.optional(),error:M({code:fe().int(),message:v(),data:$e().optional()})}).strict();var h_=t=>Jd.safeParse(t).success;var g_=Ee([p_,f_,Gd,Jd]),$U=Ee([Gd,Jd]),Ra=Ge.strict(),a0=At.extend({requestId:Pa.optional(),reason:v().optional()}),$a=Nt.extend({method:H("notifications/cancelled"),params:a0}),c0=M({src:v(),mimeType:v().optional(),sizes:ie(v()).optional(),theme:ht(["light","dark"]).optional()}),zs=M({icons:ie(c0).optional()}),Eo=M({name:v(),title:v().optional()}),y_=Eo.extend({...Eo.shape,...zs.shape,version:v(),websiteUrl:v().optional(),description:v().optional()}),u0=Ea(M({applyDefaults:Be().optional()}),be(v(),$e())),l0=Bd(t=>t&&typeof t=="object"&&!Array.isArray(t)&&Object.keys(t).length===0?{form:{}}:t,Ea(M({form:u0.optional(),url:Fe.optional()}),be(v(),$e()).optional())),d0=it({list:Fe.optional(),cancel:Fe.optional(),requests:it({sampling:it({createMessage:Fe.optional()}).optional(),elicitation:it({create:Fe.optional()}).optional()}).optional()}),p0=it({list:Fe.optional(),cancel:Fe.optional(),requests:it({tools:it({call:Fe.optional()}).optional()}).optional()}),f0=M({experimental:be(v(),Fe).optional(),sampling:M({context:Fe.optional(),tools:Fe.optional()}).optional(),elicitation:l0.optional(),roots:M({listChanged:Be().optional()}).optional(),tasks:d0.optional(),extensions:be(v(),Fe).optional()}),m0=Et.extend({protocolVersion:v(),capabilities:f0,clientInfo:y_}),Xd=Ke.extend({method:H("initialize"),params:m0});var h0=M({experimental:be(v(),Fe).optional(),logging:Fe.optional(),completions:Fe.optional(),prompts:M({listChanged:Be().optional()}).optional(),resources:M({subscribe:Be().optional(),listChanged:Be().optional()}).optional(),tools:M({listChanged:Be().optional()}).optional(),tasks:p0.optional(),extensions:be(v(),Fe).optional()}),g0=Ge.extend({protocolVersion:v(),capabilities:h0,serverInfo:y_,instructions:v().optional()}),Yd=Nt.extend({method:H("notifications/initialized"),params:At.optional()});var Ca=Ke.extend({method:H("ping"),params:Et.optional()}),y0=M({progress:fe(),total:Ce(fe()),message:Ce(v())}),_0=M({...At.shape,...y0.shape,progressToken:u_}),Oa=Nt.extend({method:H("notifications/progress"),params:_0}),x0=Et.extend({cursor:l_.optional()}),Ls=Ke.extend({params:x0.optional()}),Hs=Ge.extend({nextCursor:l_.optional()}),S0=ht(["working","input_required","completed","failed","cancelled"]),Us=M({taskId:v(),status:S0,ttl:Ee([fe(),e_()]),createdAt:v(),lastUpdatedAt:v(),pollInterval:Ce(fe()),statusMessage:Ce(v())}),wo=Ge.extend({task:Us}),v0=At.merge(Us),Fs=Nt.extend({method:H("notifications/tasks/status"),params:v0}),Ia=Ke.extend({method:H("tasks/get"),params:Et.extend({taskId:v()})}),Aa=Ge.merge(Us),Na=Ke.extend({method:H("tasks/result"),params:Et.extend({taskId:v()})}),CU=Ge.loose(),Da=Ls.extend({method:H("tasks/list")}),Ma=Hs.extend({tasks:ie(Us)}),ja=Ke.extend({method:H("tasks/cancel"),params:Et.extend({taskId:v()})}),__=Ge.merge(Us),x_=M({uri:v(),mimeType:Ce(v()),_meta:be(v(),$e()).optional()}),S_=x_.extend({text:v()}),Qd=v().refine(t=>{try{return atob(t),!0}catch{return!1}},{message:"Invalid Base64 string"}),v_=x_.extend({blob:Qd}),Zs=ht(["user","assistant"]),To=M({audience:ie(Zs).optional(),priority:fe().min(0).max(1).optional(),lastModified:Ns.datetime({offset:!0}).optional()}),b_=M({...Eo.shape,...zs.shape,uri:v(),description:Ce(v()),mimeType:Ce(v()),size:Ce(fe()),annotations:To.optional(),_meta:Ce(it({}))}),b0=M({...Eo.shape,...zs.shape,uriTemplate:v(),description:Ce(v()),mimeType:Ce(v()),annotations:To.optional(),_meta:Ce(it({}))}),Po=Ls.extend({method:H("resources/list")}),k0=Hs.extend({resources:ie(b_)}),Ro=Ls.extend({method:H("resources/templates/list")}),E0=Hs.extend({resourceTemplates:ie(b0)}),ep=Et.extend({uri:v()}),w0=ep,za=Ke.extend({method:H("resources/read"),params:w0}),T0=Ge.extend({contents:ie(Ee([S_,v_]))}),P0=Nt.extend({method:H("notifications/resources/list_changed"),params:At.optional()}),R0=ep,$0=Ke.extend({method:H("resources/subscribe"),params:R0}),C0=ep,O0=Ke.extend({method:H("resources/unsubscribe"),params:C0}),I0=At.extend({uri:v()}),A0=Nt.extend({method:H("notifications/resources/updated"),params:I0}),N0=M({name:v(),description:Ce(v()),required:Ce(Be())}),D0=M({...Eo.shape,...zs.shape,description:Ce(v()),arguments:Ce(ie(N0)),_meta:Ce(it({}))}),$o=Ls.extend({method:H("prompts/list")}),M0=Hs.extend({prompts:ie(D0)}),j0=Et.extend({name:v(),arguments:be(v(),v()).optional()}),La=Ke.extend({method:H("prompts/get"),params:j0}),tp=M({type:H("text"),text:v(),annotations:To.optional(),_meta:be(v(),$e()).optional()}),rp=M({type:H("image"),data:Qd,mimeType:v(),annotations:To.optional(),_meta:be(v(),$e()).optional()}),np=M({type:H("audio"),data:Qd,mimeType:v(),annotations:To.optional(),_meta:be(v(),$e()).optional()}),z0=M({type:H("tool_use"),name:v(),id:v(),input:be(v(),$e()),_meta:be(v(),$e()).optional()}),L0=M({type:H("resource"),resource:Ee([S_,v_]),annotations:To.optional(),_meta:be(v(),$e()).optional()}),H0=b_.extend({type:H("resource_link")}),op=Ee([tp,rp,np,H0,L0]),U0=M({role:Zs,content:op}),F0=Ge.extend({description:v().optional(),messages:ie(U0)}),Z0=Nt.extend({method:H("notifications/prompts/list_changed"),params:At.optional()}),B0=M({title:v().optional(),readOnlyHint:Be().optional(),destructiveHint:Be().optional(),idempotentHint:Be().optional(),openWorldHint:Be().optional()}),q0=M({taskSupport:ht(["required","optional","forbidden"]).optional()}),k_=M({...Eo.shape,...zs.shape,description:v().optional(),inputSchema:M({type:H("object"),properties:be(v(),Fe).optional(),required:ie(v()).optional()}).catchall($e()),outputSchema:M({type:H("object"),properties:be(v(),Fe).optional(),required:ie(v()).optional()}).catchall($e()).optional(),annotations:B0.optional(),execution:q0.optional(),_meta:be(v(),$e()).optional()}),Co=Ls.extend({method:H("tools/list")}),V0=Hs.extend({tools:ie(k_)}),Ha=Ge.extend({content:ie(op).default([]),structuredContent:be(v(),$e()).optional(),isError:Be().optional()}),OU=Ha.or(Ge.extend({toolResult:$e()})),W0=Ms.extend({name:v(),arguments:be(v(),$e()).optional()}),Oo=Ke.extend({method:H("tools/call"),params:W0}),K0=Nt.extend({method:H("notifications/tools/list_changed"),params:At.optional()}),IU=M({autoRefresh:Be().default(!0),debounceMs:fe().int().nonnegative().default(300)}),Bs=ht(["debug","info","notice","warning","error","critical","alert","emergency"]),G0=Et.extend({level:Bs}),sp=Ke.extend({method:H("logging/setLevel"),params:G0}),J0=At.extend({level:Bs,logger:v().optional(),data:$e()}),X0=Nt.extend({method:H("notifications/message"),params:J0}),Y0=M({name:v().optional()}),Q0=M({hints:ie(Y0).optional(),costPriority:fe().min(0).max(1).optional(),speedPriority:fe().min(0).max(1).optional(),intelligencePriority:fe().min(0).max(1).optional()}),e$=M({mode:ht(["auto","required","none"]).optional()}),t$=M({type:H("tool_result"),toolUseId:v().describe("The unique identifier for the corresponding tool call."),content:ie(op).default([]),structuredContent:M({}).loose().optional(),isError:Be().optional(),_meta:be(v(),$e()).optional()}),r$=Zd("type",[tp,rp,np]),wa=Zd("type",[tp,rp,np,z0,t$]),n$=M({role:Zs,content:Ee([wa,ie(wa)]),_meta:be(v(),$e()).optional()}),o$=Ms.extend({messages:ie(n$),modelPreferences:Q0.optional(),systemPrompt:v().optional(),includeContext:ht(["none","thisServer","allServers"]).optional(),temperature:fe().optional(),maxTokens:fe().int(),stopSequences:ie(v()).optional(),metadata:Fe.optional(),tools:ie(k_).optional(),toolChoice:e$.optional()}),s$=Ke.extend({method:H("sampling/createMessage"),params:o$}),qs=Ge.extend({model:v(),stopReason:Ce(ht(["endTurn","stopSequence","maxTokens"]).or(v())),role:Zs,content:r$}),ip=Ge.extend({model:v(),stopReason:Ce(ht(["endTurn","stopSequence","maxTokens","toolUse"]).or(v())),role:Zs,content:Ee([wa,ie(wa)])}),i$=M({type:H("boolean"),title:v().optional(),description:v().optional(),default:Be().optional()}),a$=M({type:H("string"),title:v().optional(),description:v().optional(),minLength:fe().optional(),maxLength:fe().optional(),format:ht(["email","uri","date","date-time"]).optional(),default:v().optional()}),c$=M({type:ht(["number","integer"]),title:v().optional(),description:v().optional(),minimum:fe().optional(),maximum:fe().optional(),default:fe().optional()}),u$=M({type:H("string"),title:v().optional(),description:v().optional(),enum:ie(v()),default:v().optional()}),l$=M({type:H("string"),title:v().optional(),description:v().optional(),oneOf:ie(M({const:v(),title:v()})),default:v().optional()}),d$=M({type:H("string"),title:v().optional(),description:v().optional(),enum:ie(v()),enumNames:ie(v()).optional(),default:v().optional()}),p$=Ee([u$,l$]),f$=M({type:H("array"),title:v().optional(),description:v().optional(),minItems:fe().optional(),maxItems:fe().optional(),items:M({type:H("string"),enum:ie(v())}),default:ie(v()).optional()}),m$=M({type:H("array"),title:v().optional(),description:v().optional(),minItems:fe().optional(),maxItems:fe().optional(),items:M({anyOf:ie(M({const:v(),title:v()}))}),default:ie(v()).optional()}),h$=Ee([f$,m$]),g$=Ee([d$,p$,h$]),y$=Ee([g$,i$,a$,c$]),_$=Ms.extend({mode:H("form").optional(),message:v(),requestedSchema:M({type:H("object"),properties:be(v(),y$),required:ie(v()).optional()})}),x$=Ms.extend({mode:H("url"),message:v(),elicitationId:v(),url:v().url()}),S$=Ee([_$,x$]),v$=Ke.extend({method:H("elicitation/create"),params:S$}),b$=At.extend({elicitationId:v()}),k$=Nt.extend({method:H("notifications/elicitation/complete"),params:b$}),Io=Ge.extend({action:ht(["accept","decline","cancel"]),content:Bd(t=>t===null?void 0:t,be(v(),Ee([v(),fe(),Be(),ie(v())])).optional())}),E$=M({type:H("ref/resource"),uri:v()});var w$=M({type:H("ref/prompt"),name:v()}),T$=Et.extend({ref:Ee([w$,E$]),argument:M({name:v(),value:v()}),context:M({arguments:be(v(),v()).optional()}).optional()}),Ua=Ke.extend({method:H("completion/complete"),params:T$});function E_(t){if(t.params.ref.type!=="ref/prompt")throw new TypeError(`Expected CompleteRequestPrompt, but got ${t.params.ref.type}`)}function w_(t){if(t.params.ref.type!=="ref/resource")throw new TypeError(`Expected CompleteRequestResourceTemplate, but got ${t.params.ref.type}`)}var P$=Ge.extend({completion:it({values:ie(v()).max(100),total:Ce(fe().int()),hasMore:Ce(Be())})}),R$=M({uri:v().startsWith("file://"),name:v().optional(),_meta:be(v(),$e()).optional()}),$$=Ke.extend({method:H("roots/list"),params:Et.optional()}),ap=Ge.extend({roots:ie(R$)}),C$=Nt.extend({method:H("notifications/roots/list_changed"),params:At.optional()}),AU=Ee([Ca,Xd,Ua,sp,La,$o,Po,Ro,za,$0,O0,Oo,Co,Ia,Na,Da,ja]),NU=Ee([$a,Oa,Yd,C$,Fs]),DU=Ee([Ra,qs,ip,Io,ap,Aa,Ma,wo]),MU=Ee([Ca,s$,v$,$$,Ia,Na,Da,ja]),jU=Ee([$a,Oa,X0,A0,P0,K0,Z0,Fs,k$]),zU=Ee([Ra,g0,P$,F0,M0,k0,E0,T0,Ha,V0,Aa,Ma,wo]),z=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===B.UrlElicitationRequired&&n){let o=n;if(o.elicitations)return new qd(o.elicitations,r)}return new t(e,r,n)}},qd=class extends z{constructor(e,r=`URL elicitation${e.length>1?"s":""} required`){super(B.UrlElicitationRequired,r,{elicitations:e})}get elicitations(){return this.data?.elicitations??[]}};function Yr(t){return t==="completed"||t==="failed"||t==="cancelled"}var P_=Symbol("Let zodToJsonSchema decide on which parser to use");var T_={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"},R_=t=>typeof t=="string"?{...T_,name:t}:{...T_,...t};var $_=t=>{let e=R_(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 cp(t,e,r,n){n?.errorMessages&&r&&(t.errorMessage={...t.errorMessage,[e]:r})}function ae(t,e,r,n,o){t[e]=r,cp(t,e,n,o)}var Fa=(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 Oe(t){if(t.target!=="openAi")return{};let e=[...t.basePath,t.definitionPath,t.openAiAnyTypeName];return t.flags.hasReferencedOpenAiAnyType=!0,{$ref:t.$refStrategy==="relative"?Fa(e,t.currentPath):e.join("/")}}function C_(t,e){let r={type:"array"};return t.type?._def&&t.type?._def?.typeName!==P.ZodAny&&(r.items=K(t.type._def,{...e,currentPath:[...e.currentPath,"items"]})),t.minLength&&ae(r,"minItems",t.minLength.value,t.minLength.message,e),t.maxLength&&ae(r,"maxItems",t.maxLength.value,t.maxLength.message,e),t.exactLength&&(ae(r,"minItems",t.exactLength.value,t.exactLength.message,e),ae(r,"maxItems",t.exactLength.value,t.exactLength.message,e)),r}function O_(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?ae(r,"minimum",n.value,n.message,e):ae(r,"exclusiveMinimum",n.value,n.message,e):(n.inclusive||(r.exclusiveMinimum=!0),ae(r,"minimum",n.value,n.message,e));break;case"max":e.target==="jsonSchema7"?n.inclusive?ae(r,"maximum",n.value,n.message,e):ae(r,"exclusiveMaximum",n.value,n.message,e):(n.inclusive||(r.exclusiveMaximum=!0),ae(r,"maximum",n.value,n.message,e));break;case"multipleOf":ae(r,"multipleOf",n.value,n.message,e);break}return r}function I_(){return{type:"boolean"}}function Za(t,e){return K(t.type._def,e)}var A_=(t,e)=>K(t.innerType._def,e);function up(t,e,r){let n=r??e.dateStrategy;if(Array.isArray(n))return{anyOf:n.map((o,s)=>up(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 O$(t,e)}}var O$=(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":ae(r,"minimum",n.value,n.message,e);break;case"max":ae(r,"maximum",n.value,n.message,e);break}return r};function N_(t,e){return{...K(t.innerType._def,e),default:t.defaultValue()}}function D_(t,e){return e.effectStrategy==="input"?K(t.schema._def,e):Oe(e)}function M_(t){return{type:"string",enum:Array.from(t.values)}}var I$=t=>"type"in t&&t.type==="string"?!1:"allOf"in t;function j_(t,e){let r=[K(t.left._def,{...e,currentPath:[...e.currentPath,"allOf","0"]}),K(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(I$(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 z_(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 lp,Jt={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:()=>(lp===void 0&&(lp=RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),lp),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 Ba(t,e){let r={type:"string"};if(t.checks)for(let n of t.checks)switch(n.kind){case"min":ae(r,"minLength",typeof r.minLength=="number"?Math.max(r.minLength,n.value):n.value,n.message,e);break;case"max":ae(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":Xt(r,"email",n.message,e);break;case"format:idn-email":Xt(r,"idn-email",n.message,e);break;case"pattern:zod":at(r,Jt.email,n.message,e);break}break;case"url":Xt(r,"uri",n.message,e);break;case"uuid":Xt(r,"uuid",n.message,e);break;case"regex":at(r,n.regex,n.message,e);break;case"cuid":at(r,Jt.cuid,n.message,e);break;case"cuid2":at(r,Jt.cuid2,n.message,e);break;case"startsWith":at(r,RegExp(`^${dp(n.value,e)}`),n.message,e);break;case"endsWith":at(r,RegExp(`${dp(n.value,e)}$`),n.message,e);break;case"datetime":Xt(r,"date-time",n.message,e);break;case"date":Xt(r,"date",n.message,e);break;case"time":Xt(r,"time",n.message,e);break;case"duration":Xt(r,"duration",n.message,e);break;case"length":ae(r,"minLength",typeof r.minLength=="number"?Math.max(r.minLength,n.value):n.value,n.message,e),ae(r,"maxLength",typeof r.maxLength=="number"?Math.min(r.maxLength,n.value):n.value,n.message,e);break;case"includes":{at(r,RegExp(dp(n.value,e)),n.message,e);break}case"ip":{n.version!=="v6"&&Xt(r,"ipv4",n.message,e),n.version!=="v4"&&Xt(r,"ipv6",n.message,e);break}case"base64url":at(r,Jt.base64url,n.message,e);break;case"jwt":at(r,Jt.jwt,n.message,e);break;case"cidr":{n.version!=="v6"&&at(r,Jt.ipv4Cidr,n.message,e),n.version!=="v4"&&at(r,Jt.ipv6Cidr,n.message,e);break}case"emoji":at(r,Jt.emoji(),n.message,e);break;case"ulid":{at(r,Jt.ulid,n.message,e);break}case"base64":{switch(e.base64Strategy){case"format:binary":{Xt(r,"binary",n.message,e);break}case"contentEncoding:base64":{ae(r,"contentEncoding","base64",n.message,e);break}case"pattern:zod":{at(r,Jt.base64,n.message,e);break}}break}case"nanoid":at(r,Jt.nanoid,n.message,e);case"toLowerCase":case"toUpperCase":case"trim":break;default:}return r}function dp(t,e){return e.patternStrategy==="escape"?N$(t):t}var A$=new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");function N$(t){let e="";for(let r=0;r<t.length;r++)A$.has(t[r])||(e+="\\"),e+=t[r];return e}function Xt(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}}})):ae(t,"format",e,r,n)}function at(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:L_(e,n),...r&&n.errorMessages&&{errorMessage:{pattern:r}}})):ae(t,"pattern",L_(e,n),r,n)}function L_(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
|
|
187
194
|
]))`;continue}else if(n[c]==="$"){o+=`($|(?=[\r
|
|
188
195
|
]))`;continue}}if(r.s&&n[c]==="."){o+=i?`${n[c]}\r
|
|
189
196
|
`:`[${n[c]}\r
|
|
190
|
-
]`;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 za(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===T.ZodEnum)return{type:"object",required:t.keyType._def.values,properties:t.keyType._def.values.reduce((n,o)=>({...n,[o]:K(t.valueType._def,{...e,currentPath:[...e.currentPath,"properties",o]})??Ce(e)}),{}),additionalProperties:e.rejectedAdditionalProperties};let r={type:"object",additionalProperties:K(t.valueType._def,{...e,currentPath:[...e.currentPath,"additionalProperties"]})??e.allowedAdditionalProperties};if(e.target==="openApi3")return r;if(t.keyType?._def.typeName===T.ZodString&&t.keyType._def.checks?.length){let{type:n,...o}=ja(t.keyType._def,e);return{...r,propertyNames:o}}else{if(t.keyType?._def.typeName===T.ZodEnum)return{...r,propertyNames:{enum:t.keyType._def.values}};if(t.keyType?._def.typeName===T.ZodBranded&&t.keyType._def.type._def.typeName===T.ZodString&&t.keyType._def.type._def.checks?.length){let{type:n,...o}=Ma(t.keyType._def,e);return{...r,propertyNames:o}}}return r}function x_(t,e){if(e.mapStrategy==="record")return za(t,e);let r=K(t.keyType._def,{...e,currentPath:[...e.currentPath,"items","items","0"]})||Ce(e),n=K(t.valueType._def,{...e,currentPath:[...e.currentPath,"items","items","1"]})||Ce(e);return{type:"array",maxItems:125,items:{type:"array",items:[r,n],minItems:2,maxItems:2}}}function b_(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 S_(t){return t.target==="openAi"?void 0:{not:Ce({...t,currentPath:[...t.currentPath,"not"]})}}function k_(t){return t.target==="openApi3"?{enum:["null"],nullable:!0}:{type:"null"}}var Hs={ZodString:"string",ZodNumber:"number",ZodBigInt:"integer",ZodBoolean:"boolean",ZodNull:"null"};function w_(t,e){if(e.target==="openApi3")return E_(t,e);let r=t.options instanceof Map?Array.from(t.options.values()):t.options;if(r.every(n=>n._def.typeName in Hs&&(!n._def.checks||!n._def.checks.length))){let n=r.reduce((o,s)=>{let i=Hs[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 E_(t,e)}var E_=(t,e)=>{let r=(t.options instanceof Map?Array.from(t.options.values()):t.options).map((n,o)=>K(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 T_(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:Hs[t.innerType._def.typeName],nullable:!0}:{type:[Hs[t.innerType._def.typeName],"null"]};if(e.target==="openApi3"){let n=K(t.innerType._def,{...e,currentPath:[...e.currentPath]});return n&&"$ref"in n?{allOf:[n],nullable:!0}:n&&{...n,nullable:!0}}let r=K(t.innerType._def,{...e,currentPath:[...e.currentPath,"anyOf","0"]});return r&&{anyOf:[r,{type:"null"}]}}function R_(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",Yd(r,"type",n.message,e);break;case"min":e.target==="jsonSchema7"?n.inclusive?ie(r,"minimum",n.value,n.message,e):ie(r,"exclusiveMinimum",n.value,n.message,e):(n.inclusive||(r.exclusiveMinimum=!0),ie(r,"minimum",n.value,n.message,e));break;case"max":e.target==="jsonSchema7"?n.inclusive?ie(r,"maximum",n.value,n.message,e):ie(r,"exclusiveMaximum",n.value,n.message,e):(n.inclusive||(r.exclusiveMaximum=!0),ie(r,"maximum",n.value,n.message,e));break;case"multipleOf":ie(r,"multipleOf",n.value,n.message,e);break}return r}function P_(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=e$(c);u&&r&&(c._def.typeName==="ZodOptional"&&(c=c._def.innerType),c.isNullable()||(c=c.nullable()),u=!1);let l=K(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=QP(t,e);return i!==void 0&&(n.additionalProperties=i),n}function QP(t,e){if(t.catchall._def.typeName!=="ZodNever")return K(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 e$(t){try{return t.isOptional()}catch{return!0}}var $_=(t,e)=>{if(e.currentPath.toString()===e.propertyPath?.toString())return K(t.innerType._def,e);let r=K(t.innerType._def,{...e,currentPath:[...e.currentPath,"anyOf","1"]});return r?{anyOf:[{not:Ce(e)},r]}:Ce(e)};var C_=(t,e)=>{if(e.pipeStrategy==="input")return K(t.in._def,e);if(e.pipeStrategy==="output")return K(t.out._def,e);let r=K(t.in._def,{...e,currentPath:[...e.currentPath,"allOf","0"]}),n=K(t.out._def,{...e,currentPath:[...e.currentPath,"allOf",r?"1":"0"]});return{allOf:[r,n].filter(o=>o!==void 0)}};function O_(t,e){return K(t.type._def,e)}function I_(t,e){let n={type:"array",uniqueItems:!0,items:K(t.valueType._def,{...e,currentPath:[...e.currentPath,"items"]})};return t.minSize&&ie(n,"minItems",t.minSize.value,t.minSize.message,e),t.maxSize&&ie(n,"maxItems",t.maxSize.value,t.maxSize.message,e),n}function A_(t,e){return t.rest?{type:"array",minItems:t.items.length,items:t.items.map((r,n)=>K(r._def,{...e,currentPath:[...e.currentPath,"items",`${n}`]})).reduce((r,n)=>n===void 0?r:[...r,n],[]),additionalItems:K(t.rest._def,{...e,currentPath:[...e.currentPath,"additionalItems"]})}:{type:"array",minItems:t.items.length,maxItems:t.items.length,items:t.items.map((r,n)=>K(r._def,{...e,currentPath:[...e.currentPath,"items",`${n}`]})).reduce((r,n)=>n===void 0?r:[...r,n],[])}}function N_(t){return{not:Ce(t)}}function D_(t){return Ce(t)}var M_=(t,e)=>K(t.innerType._def,e);var j_=(t,e,r)=>{switch(e){case T.ZodString:return ja(t,r);case T.ZodNumber:return R_(t,r);case T.ZodObject:return P_(t,r);case T.ZodBigInt:return d_(t,r);case T.ZodBoolean:return p_();case T.ZodDate:return Qd(t,r);case T.ZodUndefined:return N_(r);case T.ZodNull:return k_(r);case T.ZodArray:return l_(t,r);case T.ZodUnion:case T.ZodDiscriminatedUnion:return w_(t,r);case T.ZodIntersection:return y_(t,r);case T.ZodTuple:return A_(t,r);case T.ZodRecord:return za(t,r);case T.ZodLiteral:return __(t,r);case T.ZodEnum:return g_(t);case T.ZodNativeEnum:return b_(t);case T.ZodNullable:return T_(t,r);case T.ZodOptional:return $_(t,r);case T.ZodMap:return x_(t,r);case T.ZodSet:return I_(t,r);case T.ZodLazy:return()=>t.getter()._def;case T.ZodPromise:return O_(t,r);case T.ZodNaN:case T.ZodNever:return S_(r);case T.ZodEffects:return h_(t,r);case T.ZodAny:return Ce(r);case T.ZodUnknown:return D_(r);case T.ZodDefault:return m_(t,r);case T.ZodBranded:return Ma(t,r);case T.ZodReadonly:return M_(t,r);case T.ZodCatch:return f_(t,r);case T.ZodPipeline:return C_(t,r);case T.ZodFunction:case T.ZodVoid:case T.ZodSymbol:return;default:return(n=>{})(e)}};function K(t,e,r=!1){let n=e.seen.get(t);if(e.override){let a=e.override?.(t,e,n,r);if(a!==a_)return a}if(n&&!r){let a=t$(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=j_(t,t.typeName,e),i=typeof s=="function"?K(s(),e):s;if(i&&r$(t,e,i),e.postProcess){let a=e.postProcess(i,t,e);return o.jsonSchema=i,a}return o.jsonSchema=i,i}var t$=(t,e)=>{switch(e.$refStrategy){case"root":return{$ref:t.path.join("/")};case"relative":return{$ref:Da(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`),Ce(e)):e.$refStrategy==="seen"?Ce(e):void 0}},r$=(t,e,r)=>(t.description&&(r.description=t.description,e.markdownDescription&&(r.markdownDescription=t.description)),r);var rp=(t,e)=>{let r=u_(e),n=typeof e=="object"&&e.definitions?Object.entries(e.definitions).reduce((c,[u,l])=>({...c,[u]:K(l._def,{...r,currentPath:[...r.basePath,r.definitionPath,u]},!0)??Ce(r)}),{}):void 0,o=typeof e=="string"?e:e?.nameStrategy==="title"?void 0:e?.name,s=K(t._def,o===void 0?r:{...r,currentPath:[...r.basePath,r.definitionPath,o]},!1)??Ce(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 n$(t){return!t||t==="jsonSchema7"||t==="draft-7"?"draft-7":t==="jsonSchema2019-09"||t==="draft-2020-12"?"draft-2020-12":"draft-7"}function np(t,e){return Pt(t)?wd(t,{target:n$(e?.target),io:e?.pipeStrategy??"input"}):rp(t,{strictUnions:e?.strictUnions??!0,pipeStrategy:e?.pipeStrategy??"input"})}function op(t){let r=Br(t)?.method;if(!r)throw new Error("Schema is missing a method literal");let n=ha(r);if(typeof n!="string")throw new Error("Schema method literal must be a string");return n}function sp(t,e){let r=qr(t,e);if(!r.success)throw r.error;return r.data}var o$=6e4,La=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(Sa,r=>{this._oncancel(r)}),this.setNotificationHandler(Ea,r=>{this._onprogress(r)}),this.setRequestHandler(ka,r=>({})),this._taskStore=e?.taskStore,this._taskMessageQueue=e?.taskMessageQueue,this._taskStore&&(this.setRequestHandler(wa,async(r,n)=>{let o=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!o)throw new z(Z.InvalidParams,"Failed to retrieve task: Task not found");return{...o}}),this.setRequestHandler(Ra,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 z(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 z(Z.InvalidParams,`Task not found: ${s}`);if(!Wr(i.status))return await this._waitForTaskUpdate(s,n.signal),await o();if(Wr(i.status)){let a=await this._taskStore.getTaskResult(s,n.sessionId);return this._clearTaskQueue(s),{...a,_meta:{...a._meta,[Vr]:{taskId:s}}}}return await o()};return await o()}),this.setRequestHandler(Pa,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 z(Z.InvalidParams,`Failed to list tasks: ${o instanceof Error?o.message:String(o)}`)}}),this.setRequestHandler(Ca,async(r,n)=>{try{let o=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!o)throw new z(Z.InvalidParams,`Task not found: ${r.params.taskId}`);if(Wr(o.status))throw new z(Z.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 z(Z.InvalidParams,`Task not found after cancellation: ${r.params.taskId}`);return{_meta:{},...s}}catch(o){throw o instanceof z?o:new z(Z.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),z.fromError(Z.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),Is(s)||Gy(s)?this._onresponse(s):zd(s)?this._onrequest(s,i):Ky(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=z.fromError(Z.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?.[Vr]?.taskId;if(n===void 0){let l={jsonrpc:"2.0",id:e.id,error:{code:Z.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=By(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 z(Z.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:Z.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),Is(e))n(e);else{let i=new z(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(Is(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),Is(e))o(e);else{let i=z.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 z?i:new z(Z.InternalError,String(i))}}return}let s;try{let i=await this.request(e,xo,n);if(i.task)s=i.task.taskId,yield{type:"taskCreated",task:i.task};else throw new z(Z.InternalError,"Task creation did not return a task");for(;;){let a=await this.getTask({taskId:s},n);if(yield{type:"taskStatus",task:a},Wr(a.status)){a.status==="completed"?yield{type:"result",result:await this.getTaskResult({taskId:s},r,n)}:a.status==="failed"?yield{type:"error",error:new z(Z.InternalError,`Task ${s} failed`)}:a.status==="cancelled"&&(yield{type:"error",error:new z(Z.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 z?i:new z(Z.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||{},[Vr]: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(b=>this._onerror(new Error(`Failed to send cancellation: ${b}`)));let _=v instanceof z?v:new z(Z.RequestTimeout,String(v));l(_)};this._responseHandlers.set(f,v=>{if(!n?.signal?.aborted){if(v instanceof Error)return l(v);try{let _=qr(r,v.result);_.success?u(_.data):l(_.error)}catch(_){l(_)}}}),n?.signal?.addEventListener("abort",()=>{p(n?.signal?.reason)});let h=n?.timeout??o$,g=()=>p(z.fromError(Z.RequestTimeout,"Request timed out",{timeout:h}));this._setupTimeout(f,h,n?.maxTotalTimeout,g,n?.resetTimeoutOnProgress??!1);let y=c?.taskId;if(y){let v=_=>{let b=this._responseHandlers.get(f);b?b(_):this._onerror(new Error(`Response handler missing for side-channeled request ${f}`))};this._requestResolvers.set(f,v),this._enqueueTaskMessage(y,{type:"request",message:m,timestamp:Date.now()}).catch(_=>{this._cleanupTimeout(f),l(_)})}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},Ta,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},$a,r)}async cancelTask(e,r){return this.request({method:"tasks/cancel",params:e},Yy,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||{},[Vr]: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||{},[Vr]: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||{},[Vr]:r.relatedTask}}}),await this._transport.send(i,r)}setRequestHandler(e,r){let n=op(e);this.assertRequestHandlerCapability(n),this._requestHandlers.set(n,(o,s)=>{let i=sp(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=op(e);this._notificationHandlers.set(n,o=>{let s=sp(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"&&zd(o.message)){let s=o.message.id,i=this._requestResolvers.get(s);i?(i(new z(Z.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 z(Z.InvalidRequest,"Request cancelled"));return}let i=setTimeout(o,n);r.addEventListener("abort",()=>{clearTimeout(i),s(new z(Z.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 z(Z.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=js.parse({method:"notifications/tasks/status",params:a});await this.notification(c),Wr(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 z(Z.InvalidParams,`Task "${o}" not found - it may have been cleaned up`);if(Wr(a.status))throw new z(Z.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=js.parse({method:"notifications/tasks/status",params:c});await this.notification(u),Wr(c.status)&&this._cleanupTaskProgressHandler(o)}},listTasks:o=>n.listTasks(o,r)}}};function z_(t){return t!==null&&typeof t=="object"&&!Array.isArray(t)}function L_(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];z_(i)&&z_(s)?r[o]={...i,...s}:r[o]=s}return r}var wb=qh(Bf(),1),Tb=qh(Eb(),1);function GN(){let t=new wb.default({strict:!1,validateFormats:!0,validateSchema:!1,allErrors:!0});return(0,Tb.default)(t),t}var bc=class{constructor(e){this._ajv=e??GN()}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 Sc=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},Us,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},Ro,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 Rb(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 Pb(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 kc=class extends La{constructor(e,r){super(r),this._serverInfo=e,this._loggingLevels=new Map,this.LOG_LEVEL_SEVERITY=new Map(Ls.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 bc,this.setRequestHandler(Hd,n=>this._oninitialize(n)),this.setNotificationHandler(Fd,()=>this.oninitialized?.()),this._capabilities.logging&&this.setRequestHandler(Gd,async(n,o)=>{let s=o.sessionId||o.requestInfo?.headers["mcp-session-id"]||void 0,{level:i}=n.params,a=Ls.safeParse(i);return a.success&&this._loggingLevels.set(s,a.data),{}})}get experimental(){return this._experimental||(this._experimental={tasks:new Sc(this)}),this._experimental}registerCapabilities(e){if(this.transport)throw new Error("Cannot register capabilities after connecting to transport");this._capabilities=L_(this._capabilities,e)}setRequestHandler(e,r){let o=Br(e)?.method;if(!o)throw new Error("Schema is missing a method literal");let s;if(Pt(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=qr(To,c);if(!l.success){let p=l.error instanceof Error?l.error.message:String(l.error);throw new z(Z.InvalidParams,`Invalid tools/call request: ${p}`)}let{params:d}=l.data,f=await Promise.resolve(r(c,u));if(d.task){let p=qr(xo,f);if(!p.success){let h=p.error instanceof Error?p.error.message:String(p.error);throw new z(Z.InvalidParams,`Invalid task creation result: ${h}`)}return p.data}let m=qr(Aa,f);if(!m.success){let p=m.error instanceof Error?m.error.message:String(m.error);throw new z(Z.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){Pb(this._clientCapabilities?.tasks?.requests,e,"Client")}assertTaskHandlerCapability(e){this._capabilities&&Rb(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:Fy.includes(r)?r:Md,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"},ba)}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},Jd,r):this.request({method:"sampling/createMessage",params:e},Us,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},Ro,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},Ro,r);if(s.action==="accept"&&s.content&&o.requestedSchema)try{let a=this._jsonSchemaValidator.getValidator(o.requestedSchema)(s.content);if(!a.valid)throw new z(Z.InvalidParams,`Elicitation response content does not match requested schema: ${a.errorMessage}`)}catch(i){throw i instanceof z?i:new z(Z.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},Xd,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 Cb=Symbol.for("mcp.completable");function Qf(t){return!!t&&typeof t=="object"&&Cb in t}function Ob(t){return t[Cb]?.complete}var $b;(function(t){t.Completable="McpCompletable"})($b||($b={}));var JN=/^[A-Za-z0-9._-]{1,128}$/;function XN(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"),!JN.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 YN(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 em(t){let e=XN(t);return YN(t,e.warnings),e.isValid}var Ec=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 wc=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 kc(e,r)}get experimental(){return this._experimental||(this._experimental={tasks:new Ec(this)}),this._experimental}async connect(e){return await this.server.connect(e)}async close(){await this.server.close()}setToolRequestHandlers(){this._toolHandlersInitialized||(this.server.assertCanSetRequestHandler(rn(wo)),this.server.assertCanSetRequestHandler(rn(To)),this.server.registerCapabilities({tools:{listChanged:!0}}),this.server.setRequestHandler(wo,()=>({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=_o(r.inputSchema);return o?np(o,{strictUnions:!0,pipeStrategy:"input"}):QN})(),annotations:r.annotations,execution:r.execution,_meta:r._meta};if(r.outputSchema){let o=_o(r.outputSchema);o&&(n.outputSchema=np(o,{strictUnions:!0,pipeStrategy:"output"}))}return n})})),this.server.setRequestHandler(To,async(e,r)=>{try{let n=this._registeredTools[e.params.name];if(!n)throw new z(Z.InvalidParams,`Tool ${e.params.name} not found`);if(!n.enabled)throw new z(Z.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 z(Z.InternalError,`Tool ${e.params.name} has taskSupport '${s}' but was not registered with registerToolTask`);if(s==="required"&&!o)throw new z(Z.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 z&&n.code===Z.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=_o(e.inputSchema)??e.inputSchema,i=await fa(s,r);if(!i.success){let a="error"in i?i.error:"Unknown error",c=ma(a);throw new z(Z.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 z(Z.InvalidParams,`Output validation error: Tool ${n} has an output schema but no structured content was provided`);let o=_o(e.outputSchema),s=await fa(o,r.structuredContent);if(!s.success){let i="error"in s?s.error:"Unknown error",a=ma(i);throw new z(Z.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 z(Z.InternalError,`Task ${c} not found during polling`);u=d}return await n.taskStore.getTaskResult(c)}setCompletionRequestHandler(){this._completionHandlerInitialized||(this.server.assertCanSetRequestHandler(rn(Na)),this.server.registerCapabilities({completions:{}}),this.server.setRequestHandler(Na,async e=>{switch(e.params.ref.type){case"ref/prompt":return o_(e),this.handlePromptCompletion(e,e.params.ref);case"ref/resource":return s_(e),this.handleResourceCompletion(e,e.params.ref);default:throw new z(Z.InvalidParams,`Invalid completion reference: ${e.params.ref}`)}}),this._completionHandlerInitialized=!0)}async handlePromptCompletion(e,r){let n=this._registeredPrompts[r.name];if(!n)throw new z(Z.InvalidParams,`Prompt ${r.name} not found`);if(!n.enabled)throw new z(Z.InvalidParams,`Prompt ${r.name} disabled`);if(!n.argsSchema)return yi;let s=Br(n.argsSchema)?.[e.params.argument.name];if(!Qf(s))return yi;let i=Ob(s);if(!i)return yi;let a=await i(e.params.argument.value,e.params.context);return Ab(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 yi;throw new z(Z.InvalidParams,`Resource template ${e.params.ref.uri} not found`)}let o=n.resourceTemplate.completeCallback(e.params.argument.name);if(!o)return yi;let s=await o(e.params.argument.value,e.params.context);return Ab(s)}setResourceRequestHandlers(){this._resourceHandlersInitialized||(this.server.assertCanSetRequestHandler(rn(So)),this.server.assertCanSetRequestHandler(rn(ko)),this.server.assertCanSetRequestHandler(rn(Oa)),this.server.registerCapabilities({resources:{listChanged:!0}}),this.server.setRequestHandler(So,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(ko,async()=>({resourceTemplates:Object.entries(this._registeredResourceTemplates).map(([r,n])=>({name:r,uriTemplate:n.resourceTemplate.uriTemplate.toString(),...n.metadata}))})),this.server.setRequestHandler(Oa,async(e,r)=>{let n=new URL(e.params.uri),o=this._registeredResources[n.toString()];if(o){if(!o.enabled)throw new z(Z.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 z(Z.InvalidParams,`Resource ${n} not found`)}),this._resourceHandlersInitialized=!0)}setPromptRequestHandlers(){this._promptHandlersInitialized||(this.server.assertCanSetRequestHandler(rn(Eo)),this.server.assertCanSetRequestHandler(rn(Ia)),this.server.registerCapabilities({prompts:{listChanged:!0}}),this.server.setRequestHandler(Eo,()=>({prompts:Object.entries(this._registeredPrompts).filter(([,e])=>e.enabled).map(([e,r])=>({name:e,title:r.title,description:r.description,arguments:r.argsSchema?eD(r.argsSchema):void 0}))})),this.server.setRequestHandler(Ia,async(e,r)=>{let n=this._registeredPrompts[e.params.name];if(!n)throw new z(Z.InvalidParams,`Prompt ${e.params.name} not found`);if(!n.enabled)throw new z(Z.InvalidParams,`Prompt ${e.params.name} disabled`);if(n.argsSchema){let o=_o(n.argsSchema),s=await fa(o,e.params.arguments);if(!s.success){let c="error"in s?s.error:"Unknown error",u=ma(c);throw new z(Z.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:Nn(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=Nn(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 dt?c._def?.innerType:c;return Qf(u)})&&this.setCompletionRequestHandler(),i}_createRegisteredTool(e,r,n,o,s,i,a,c,u){em(e);let l={title:r,description:n,inputSchema:Ib(o),outputSchema:Ib(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"&&em(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=Nn(d.paramsSchema)),typeof d.outputSchema<"u"&&(l.outputSchema=Nn(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(tm(c))o=r.shift(),r.length>1&&typeof r[0]=="object"&&r[0]!==null&&!tm(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 QN={type:"object",properties:{}};function Nb(t){return t!==null&&typeof t=="object"&&"parse"in t&&typeof t.parse=="function"&&"safeParse"in t&&typeof t.safeParse=="function"}function Db(t){return"_def"in t||"_zod"in t||Nb(t)}function tm(t){return typeof t!="object"||t===null||Db(t)?!1:Object.keys(t).length===0?!0:Object.values(t).some(Nb)}function Ib(t){if(t){if(tm(t))return Nn(t);if(!Db(t))throw new Error("inputSchema must be a Zod schema or raw shape, received an unrecognized object");return t}}function eD(t){let e=Br(t);return e?Object.entries(e).map(([r,n])=>{let o=_y(n),s=vy(n);return{name:r,description:o,required:!s}}):[]}function rn(t){let r=Br(t)?.method;if(!r)throw new Error("Schema is missing a method literal");let n=ha(r);if(typeof n=="string")return n;throw new Error("Schema method literal must be a string")}function Ab(t){return{completion:{values:t.slice(0,100),total:t.length,hasMore:t.length>100}}}var yi={completion:{values:[],hasMore:!1}};import jb from"node:process";var Tc=class{append(e){this._buffer=this._buffer?Buffer.concat([this._buffer,e]):e}readMessage(){if(!this._buffer)return null;let e=this._buffer.indexOf(`
|
|
191
|
-
`);if(e===-1)return null;let r=this._buffer.toString("utf8",0,e).replace(/\r$/,"");return this._buffer=this._buffer.subarray(e+1),
|
|
192
|
-
`}var
|
|
193
|
-
`
|
|
194
|
-
${t}`}var mD=(()=>{if(Mt)return process.env.TEMP??process.env.TMP??cD();try{let t=Gb(process.platform==="darwin"?"getconf":"mktemp",process.platform==="darwin"?["DARWIN_USER_TEMP_DIR"]:["-u","-d"],{env:{...process.env,TMPDIR:void 0},encoding:"utf-8"}).trim(),e=process.platform==="darwin"?t:Jb(t,"..");if(e&&e!==process.cwd())return e}catch{}return"/tmp"})();function om(t){if(Mt&&t.pid)try{iD(`taskkill /F /T /PID ${t.pid}`,{stdio:"pipe"})}catch{}else if(t.pid)try{process.kill(-t.pid,"SIGKILL")}catch{}}var xi=class{#e;#t;#n;#s=new Set;constructor(e){this.#e=e?.hardCapBytes??100*1024*1024;let r=e?.projectRoot;typeof r=="function"?this.#t=r:typeof r=="string"?this.#t=()=>r:this.#t=()=>process.cwd(),this.#n=e?.runtimes??$c()}get#o(){return this.#t()}get runtimes(){return{...this.#n}}cleanupBackgrounded(){for(let e of this.#s)try{process.kill(Mt?e:-e,"SIGTERM")}catch{}this.#s.clear()}async execute(e){let{language:r,code:n,timeout:o,background:s=!1,cwd:i}=e,a=aD(Oc(mD,".ctx-mode-"));try{let c=this.#a(a,n,r),u=qb(this.#n,r,c);if(u[0]==="__rust_compile_run__")return await this.#c(c,a,o);let l=r==="shell"?i??this.#o:a,d=await this.#i(u,l,a,o,s);if(!d.backgrounded)try{Wb(a,{recursive:!0,force:!0})}catch{}return d}catch(c){try{Wb(a,{recursive:!0,force:!0})}catch{}throw c}}async executeFile(e){let{path:r,language:n,code:o,timeout:s}=e,i=Jb(this.#o,r),a=this.#l(i,n,o);return this.execute({language:n,code:a,timeout:s})}#a(e,r,n){n==="go"&&!r.includes("package ")&&(r=`package main
|
|
197
|
+
]`;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 qa(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===P.ZodEnum)return{type:"object",required:t.keyType._def.values,properties:t.keyType._def.values.reduce((n,o)=>({...n,[o]:K(t.valueType._def,{...e,currentPath:[...e.currentPath,"properties",o]})??Oe(e)}),{}),additionalProperties:e.rejectedAdditionalProperties};let r={type:"object",additionalProperties:K(t.valueType._def,{...e,currentPath:[...e.currentPath,"additionalProperties"]})??e.allowedAdditionalProperties};if(e.target==="openApi3")return r;if(t.keyType?._def.typeName===P.ZodString&&t.keyType._def.checks?.length){let{type:n,...o}=Ba(t.keyType._def,e);return{...r,propertyNames:o}}else{if(t.keyType?._def.typeName===P.ZodEnum)return{...r,propertyNames:{enum:t.keyType._def.values}};if(t.keyType?._def.typeName===P.ZodBranded&&t.keyType._def.type._def.typeName===P.ZodString&&t.keyType._def.type._def.checks?.length){let{type:n,...o}=Za(t.keyType._def,e);return{...r,propertyNames:o}}}return r}function H_(t,e){if(e.mapStrategy==="record")return qa(t,e);let r=K(t.keyType._def,{...e,currentPath:[...e.currentPath,"items","items","0"]})||Oe(e),n=K(t.valueType._def,{...e,currentPath:[...e.currentPath,"items","items","1"]})||Oe(e);return{type:"array",maxItems:125,items:{type:"array",items:[r,n],minItems:2,maxItems:2}}}function U_(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 F_(t){return t.target==="openAi"?void 0:{not:Oe({...t,currentPath:[...t.currentPath,"not"]})}}function Z_(t){return t.target==="openApi3"?{enum:["null"],nullable:!0}:{type:"null"}}var Vs={ZodString:"string",ZodNumber:"number",ZodBigInt:"integer",ZodBoolean:"boolean",ZodNull:"null"};function q_(t,e){if(e.target==="openApi3")return B_(t,e);let r=t.options instanceof Map?Array.from(t.options.values()):t.options;if(r.every(n=>n._def.typeName in Vs&&(!n._def.checks||!n._def.checks.length))){let n=r.reduce((o,s)=>{let i=Vs[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 B_(t,e)}var B_=(t,e)=>{let r=(t.options instanceof Map?Array.from(t.options.values()):t.options).map((n,o)=>K(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 V_(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:Vs[t.innerType._def.typeName],nullable:!0}:{type:[Vs[t.innerType._def.typeName],"null"]};if(e.target==="openApi3"){let n=K(t.innerType._def,{...e,currentPath:[...e.currentPath]});return n&&"$ref"in n?{allOf:[n],nullable:!0}:n&&{...n,nullable:!0}}let r=K(t.innerType._def,{...e,currentPath:[...e.currentPath,"anyOf","0"]});return r&&{anyOf:[r,{type:"null"}]}}function W_(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",cp(r,"type",n.message,e);break;case"min":e.target==="jsonSchema7"?n.inclusive?ae(r,"minimum",n.value,n.message,e):ae(r,"exclusiveMinimum",n.value,n.message,e):(n.inclusive||(r.exclusiveMinimum=!0),ae(r,"minimum",n.value,n.message,e));break;case"max":e.target==="jsonSchema7"?n.inclusive?ae(r,"maximum",n.value,n.message,e):ae(r,"exclusiveMaximum",n.value,n.message,e):(n.inclusive||(r.exclusiveMaximum=!0),ae(r,"maximum",n.value,n.message,e));break;case"multipleOf":ae(r,"multipleOf",n.value,n.message,e);break}return r}function K_(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=M$(c);u&&r&&(c._def.typeName==="ZodOptional"&&(c=c._def.innerType),c.isNullable()||(c=c.nullable()),u=!1);let l=K(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=D$(t,e);return i!==void 0&&(n.additionalProperties=i),n}function D$(t,e){if(t.catchall._def.typeName!=="ZodNever")return K(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 M$(t){try{return t.isOptional()}catch{return!0}}var G_=(t,e)=>{if(e.currentPath.toString()===e.propertyPath?.toString())return K(t.innerType._def,e);let r=K(t.innerType._def,{...e,currentPath:[...e.currentPath,"anyOf","1"]});return r?{anyOf:[{not:Oe(e)},r]}:Oe(e)};var J_=(t,e)=>{if(e.pipeStrategy==="input")return K(t.in._def,e);if(e.pipeStrategy==="output")return K(t.out._def,e);let r=K(t.in._def,{...e,currentPath:[...e.currentPath,"allOf","0"]}),n=K(t.out._def,{...e,currentPath:[...e.currentPath,"allOf",r?"1":"0"]});return{allOf:[r,n].filter(o=>o!==void 0)}};function X_(t,e){return K(t.type._def,e)}function Y_(t,e){let n={type:"array",uniqueItems:!0,items:K(t.valueType._def,{...e,currentPath:[...e.currentPath,"items"]})};return t.minSize&&ae(n,"minItems",t.minSize.value,t.minSize.message,e),t.maxSize&&ae(n,"maxItems",t.maxSize.value,t.maxSize.message,e),n}function Q_(t,e){return t.rest?{type:"array",minItems:t.items.length,items:t.items.map((r,n)=>K(r._def,{...e,currentPath:[...e.currentPath,"items",`${n}`]})).reduce((r,n)=>n===void 0?r:[...r,n],[]),additionalItems:K(t.rest._def,{...e,currentPath:[...e.currentPath,"additionalItems"]})}:{type:"array",minItems:t.items.length,maxItems:t.items.length,items:t.items.map((r,n)=>K(r._def,{...e,currentPath:[...e.currentPath,"items",`${n}`]})).reduce((r,n)=>n===void 0?r:[...r,n],[])}}function ex(t){return{not:Oe(t)}}function tx(t){return Oe(t)}var rx=(t,e)=>K(t.innerType._def,e);var nx=(t,e,r)=>{switch(e){case P.ZodString:return Ba(t,r);case P.ZodNumber:return W_(t,r);case P.ZodObject:return K_(t,r);case P.ZodBigInt:return O_(t,r);case P.ZodBoolean:return I_();case P.ZodDate:return up(t,r);case P.ZodUndefined:return ex(r);case P.ZodNull:return Z_(r);case P.ZodArray:return C_(t,r);case P.ZodUnion:case P.ZodDiscriminatedUnion:return q_(t,r);case P.ZodIntersection:return j_(t,r);case P.ZodTuple:return Q_(t,r);case P.ZodRecord:return qa(t,r);case P.ZodLiteral:return z_(t,r);case P.ZodEnum:return M_(t);case P.ZodNativeEnum:return U_(t);case P.ZodNullable:return V_(t,r);case P.ZodOptional:return G_(t,r);case P.ZodMap:return H_(t,r);case P.ZodSet:return Y_(t,r);case P.ZodLazy:return()=>t.getter()._def;case P.ZodPromise:return X_(t,r);case P.ZodNaN:case P.ZodNever:return F_(r);case P.ZodEffects:return D_(t,r);case P.ZodAny:return Oe(r);case P.ZodUnknown:return tx(r);case P.ZodDefault:return N_(t,r);case P.ZodBranded:return Za(t,r);case P.ZodReadonly:return rx(t,r);case P.ZodCatch:return A_(t,r);case P.ZodPipeline:return J_(t,r);case P.ZodFunction:case P.ZodVoid:case P.ZodSymbol:return;default:return(n=>{})(e)}};function K(t,e,r=!1){let n=e.seen.get(t);if(e.override){let a=e.override?.(t,e,n,r);if(a!==P_)return a}if(n&&!r){let a=j$(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=nx(t,t.typeName,e),i=typeof s=="function"?K(s(),e):s;if(i&&z$(t,e,i),e.postProcess){let a=e.postProcess(i,t,e);return o.jsonSchema=i,a}return o.jsonSchema=i,i}var j$=(t,e)=>{switch(e.$refStrategy){case"root":return{$ref:t.path.join("/")};case"relative":return{$ref:Fa(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`),Oe(e)):e.$refStrategy==="seen"?Oe(e):void 0}},z$=(t,e,r)=>(t.description&&(r.description=t.description,e.markdownDescription&&(r.markdownDescription=t.description)),r);var pp=(t,e)=>{let r=$_(e),n=typeof e=="object"&&e.definitions?Object.entries(e.definitions).reduce((c,[u,l])=>({...c,[u]:K(l._def,{...r,currentPath:[...r.basePath,r.definitionPath,u]},!0)??Oe(r)}),{}):void 0,o=typeof e=="string"?e:e?.nameStrategy==="title"?void 0:e?.name,s=K(t._def,o===void 0?r:{...r,currentPath:[...r.basePath,r.definitionPath,o]},!1)??Oe(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 L$(t){return!t||t==="jsonSchema7"||t==="draft-7"?"draft-7":t==="jsonSchema2019-09"||t==="draft-2020-12"?"draft-2020-12":"draft-7"}function fp(t,e){return It(t)?Dd(t,{target:L$(e?.target),io:e?.pipeStrategy??"input"}):pp(t,{strictUnions:e?.strictUnions??!0,pipeStrategy:e?.pipeStrategy??"input"})}function mp(t){let r=Jr(t)?.method;if(!r)throw new Error("Schema is missing a method literal");let n=ba(r);if(typeof n!="string")throw new Error("Schema method literal must be a string");return n}function hp(t,e){let r=Gr(t,e);if(!r.success)throw r.error;return r.data}var H$=6e4,Va=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($a,r=>{this._oncancel(r)}),this.setNotificationHandler(Oa,r=>{this._onprogress(r)}),this.setRequestHandler(Ca,r=>({})),this._taskStore=e?.taskStore,this._taskMessageQueue=e?.taskMessageQueue,this._taskStore&&(this.setRequestHandler(Ia,async(r,n)=>{let o=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!o)throw new z(B.InvalidParams,"Failed to retrieve task: Task not found");return{...o}}),this.setRequestHandler(Na,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 z(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 z(B.InvalidParams,`Task not found: ${s}`);if(!Yr(i.status))return await this._waitForTaskUpdate(s,n.signal),await o();if(Yr(i.status)){let a=await this._taskStore.getTaskResult(s,n.sessionId);return this._clearTaskQueue(s),{...a,_meta:{...a._meta,[Xr]:{taskId:s}}}}return await o()};return await o()}),this.setRequestHandler(Da,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 z(B.InvalidParams,`Failed to list tasks: ${o instanceof Error?o.message:String(o)}`)}}),this.setRequestHandler(ja,async(r,n)=>{try{let o=await this._taskStore.getTask(r.params.taskId,n.sessionId);if(!o)throw new z(B.InvalidParams,`Task not found: ${r.params.taskId}`);if(Yr(o.status))throw new z(B.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 z(B.InvalidParams,`Task not found after cancellation: ${r.params.taskId}`);return{_meta:{},...s}}catch(o){throw o instanceof z?o:new z(B.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),z.fromError(B.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),js(s)||h_(s)?this._onresponse(s):Kd(s)?this._onrequest(s,i):m_(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=z.fromError(B.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?.[Xr]?.taskId;if(n===void 0){let l={jsonrpc:"2.0",id:e.id,error:{code:B.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=d_(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 z(B.ConnectionClosed,"Request was cancelled");let h={...f,relatedRequestId:e.id};s&&!h.relatedTask&&(h.relatedTask={taskId:s});let p=h.relatedTask?.taskId??s;return p&&c&&await c.updateTaskStatus(p,"input_required"),await this.request(l,d,h)},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:B.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),js(e))n(e);else{let i=new z(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(js(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),js(e))o(e);else{let i=z.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 z?i:new z(B.InternalError,String(i))}}return}let s;try{let i=await this.request(e,wo,n);if(i.task)s=i.task.taskId,yield{type:"taskCreated",task:i.task};else throw new z(B.InternalError,"Task creation did not return a task");for(;;){let a=await this.getTask({taskId:s},n);if(yield{type:"taskStatus",task:a},Yr(a.status)){a.status==="completed"?yield{type:"result",result:await this.getTaskResult({taskId:s},r,n)}:a.status==="failed"?yield{type:"error",error:new z(B.InternalError,`Task ${s} failed`)}:a.status==="cancelled"&&(yield{type:"error",error:new z(B.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 z?i:new z(B.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=_=>{l(_)};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(_){d(_);return}n?.signal?.throwIfAborted();let f=this._requestMessageId++,h={...e,jsonrpc:"2.0",id:f};n?.onprogress&&(this._progressHandlers.set(f,n.onprogress),h.params={...e.params,_meta:{...e.params?._meta||{},progressToken:f}}),a&&(h.params={...h.params,task:a}),c&&(h.params={...h.params,_meta:{...h.params?._meta||{},[Xr]:c}});let p=_=>{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(_)}},{relatedRequestId:o,resumptionToken:s,onresumptiontoken:i}).catch(S=>this._onerror(new Error(`Failed to send cancellation: ${S}`)));let x=_ instanceof z?_:new z(B.RequestTimeout,String(_));l(x)};this._responseHandlers.set(f,_=>{if(!n?.signal?.aborted){if(_ instanceof Error)return l(_);try{let x=Gr(r,_.result);x.success?u(x.data):l(x.error)}catch(x){l(x)}}}),n?.signal?.addEventListener("abort",()=>{p(n?.signal?.reason)});let m=n?.timeout??H$,g=()=>p(z.fromError(B.RequestTimeout,"Request timed out",{timeout:m}));this._setupTimeout(f,m,n?.maxTotalTimeout,g,n?.resetTimeoutOnProgress??!1);let y=c?.taskId;if(y){let _=x=>{let S=this._responseHandlers.get(f);S?S(x):this._onerror(new Error(`Response handler missing for side-channeled request ${f}`))};this._requestResolvers.set(f,_),this._enqueueTaskMessage(y,{type:"request",message:h,timestamp:Date.now()}).catch(x=>{this._cleanupTimeout(f),l(x)})}else this._transport.send(h,{relatedRequestId:o,resumptionToken:s,onresumptiontoken:i}).catch(_=>{this._cleanupTimeout(f),l(_)})})}async getTask(e,r){return this.request({method:"tasks/get",params:e},Aa,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},Ma,r)}async cancelTask(e,r){return this.request({method:"tasks/cancel",params:e},__,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||{},[Xr]: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||{},[Xr]: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||{},[Xr]:r.relatedTask}}}),await this._transport.send(i,r)}setRequestHandler(e,r){let n=mp(e);this.assertRequestHandlerCapability(n),this._requestHandlers.set(n,(o,s)=>{let i=hp(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=mp(e);this._notificationHandlers.set(n,o=>{let s=hp(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"&&Kd(o.message)){let s=o.message.id,i=this._requestResolvers.get(s);i?(i(new z(B.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 z(B.InvalidRequest,"Request cancelled"));return}let i=setTimeout(o,n);r.addEventListener("abort",()=>{clearTimeout(i),s(new z(B.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 z(B.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=Fs.parse({method:"notifications/tasks/status",params:a});await this.notification(c),Yr(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 z(B.InvalidParams,`Task "${o}" not found - it may have been cleaned up`);if(Yr(a.status))throw new z(B.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=Fs.parse({method:"notifications/tasks/status",params:c});await this.notification(u),Yr(c.status)&&this._cleanupTaskProgressHandler(o)}},listTasks:o=>n.listTasks(o,r)}}};function ox(t){return t!==null&&typeof t=="object"&&!Array.isArray(t)}function sx(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];ox(i)&&ox(s)?r[o]={...i,...s}:r[o]=s}return r}var qv=lg(tm(),1),Vv=lg(Bv(),1);function OD(){let t=new qv.default({strict:!1,validateFormats:!0,validateSchema:!1,allErrors:!0});return(0,Vv.default)(t),t}var Rc=class{constructor(e){this._ajv=e??OD()}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 $c=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},qs,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},Io,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 Wv(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 Kv(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 Cc=class extends Va{constructor(e,r){super(r),this._serverInfo=e,this._loggingLevels=new Map,this.LOG_LEVEL_SEVERITY=new Map(Bs.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 Rc,this.setRequestHandler(Xd,n=>this._oninitialize(n)),this.setNotificationHandler(Yd,()=>this.oninitialized?.()),this._capabilities.logging&&this.setRequestHandler(sp,async(n,o)=>{let s=o.sessionId||o.requestInfo?.headers["mcp-session-id"]||void 0,{level:i}=n.params,a=Bs.safeParse(i);return a.success&&this._loggingLevels.set(s,a.data),{}})}get experimental(){return this._experimental||(this._experimental={tasks:new $c(this)}),this._experimental}registerCapabilities(e){if(this.transport)throw new Error("Cannot register capabilities after connecting to transport");this._capabilities=sx(this._capabilities,e)}setRequestHandler(e,r){let o=Jr(e)?.method;if(!o)throw new Error("Schema is missing a method literal");let s;if(It(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=Gr(Oo,c);if(!l.success){let p=l.error instanceof Error?l.error.message:String(l.error);throw new z(B.InvalidParams,`Invalid tools/call request: ${p}`)}let{params:d}=l.data,f=await Promise.resolve(r(c,u));if(d.task){let p=Gr(wo,f);if(!p.success){let m=p.error instanceof Error?p.error.message:String(p.error);throw new z(B.InvalidParams,`Invalid task creation result: ${m}`)}return p.data}let h=Gr(Ha,f);if(!h.success){let p=h.error instanceof Error?h.error.message:String(h.error);throw new z(B.InvalidParams,`Invalid tools/call result: ${p}`)}return h.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){Kv(this._clientCapabilities?.tasks?.requests,e,"Client")}assertTaskHandlerCapability(e){this._capabilities&&Wv(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:c_.includes(r)?r:Vd,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"},Ra)}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},ip,r):this.request({method:"sampling/createMessage",params:e},qs,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},Io,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},Io,r);if(s.action==="accept"&&s.content&&o.requestedSchema)try{let a=this._jsonSchemaValidator.getValidator(o.requestedSchema)(s.content);if(!a.valid)throw new z(B.InvalidParams,`Elicitation response content does not match requested schema: ${a.errorMessage}`)}catch(i){throw i instanceof z?i:new z(B.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},ap,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 Jv=Symbol.for("mcp.completable");function um(t){return!!t&&typeof t=="object"&&Jv in t}function Xv(t){return t[Jv]?.complete}var Gv;(function(t){t.Completable="McpCompletable"})(Gv||(Gv={}));var ID=/^[A-Za-z0-9._-]{1,128}$/;function AD(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"),!ID.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 ND(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 lm(t){let e=AD(t);return ND(t,e.warnings),e.isValid}var Oc=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 Ic=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 Cc(e,r)}get experimental(){return this._experimental||(this._experimental={tasks:new Oc(this)}),this._experimental}async connect(e){return await this.server.connect(e)}async close(){await this.server.close()}setToolRequestHandlers(){this._toolHandlersInitialized||(this.server.assertCanSetRequestHandler(cn(Co)),this.server.assertCanSetRequestHandler(cn(Oo)),this.server.registerCapabilities({tools:{listChanged:!0}}),this.server.setRequestHandler(Co,()=>({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=ko(r.inputSchema);return o?fp(o,{strictUnions:!0,pipeStrategy:"input"}):DD})(),annotations:r.annotations,execution:r.execution,_meta:r._meta};if(r.outputSchema){let o=ko(r.outputSchema);o&&(n.outputSchema=fp(o,{strictUnions:!0,pipeStrategy:"output"}))}return n})})),this.server.setRequestHandler(Oo,async(e,r)=>{try{let n=this._registeredTools[e.params.name];if(!n)throw new z(B.InvalidParams,`Tool ${e.params.name} not found`);if(!n.enabled)throw new z(B.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 z(B.InternalError,`Tool ${e.params.name} has taskSupport '${s}' but was not registered with registerToolTask`);if(s==="required"&&!o)throw new z(B.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 z&&n.code===B.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=ko(e.inputSchema)??e.inputSchema,i=await Sa(s,r);if(!i.success){let a="error"in i?i.error:"Unknown error",c=va(a);throw new z(B.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 z(B.InvalidParams,`Output validation error: Tool ${n} has an output schema but no structured content was provided`);let o=ko(e.outputSchema),s=await Sa(o,r.structuredContent);if(!s.success){let i="error"in s?s.error:"Unknown error",a=va(i);throw new z(B.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 z(B.InternalError,`Task ${c} not found during polling`);u=d}return await n.taskStore.getTaskResult(c)}setCompletionRequestHandler(){this._completionHandlerInitialized||(this.server.assertCanSetRequestHandler(cn(Ua)),this.server.registerCapabilities({completions:{}}),this.server.setRequestHandler(Ua,async e=>{switch(e.params.ref.type){case"ref/prompt":return E_(e),this.handlePromptCompletion(e,e.params.ref);case"ref/resource":return w_(e),this.handleResourceCompletion(e,e.params.ref);default:throw new z(B.InvalidParams,`Invalid completion reference: ${e.params.ref}`)}}),this._completionHandlerInitialized=!0)}async handlePromptCompletion(e,r){let n=this._registeredPrompts[r.name];if(!n)throw new z(B.InvalidParams,`Prompt ${r.name} not found`);if(!n.enabled)throw new z(B.InvalidParams,`Prompt ${r.name} disabled`);if(!n.argsSchema)return bi;let s=Jr(n.argsSchema)?.[e.params.argument.name];if(!um(s))return bi;let i=Xv(s);if(!i)return bi;let a=await i(e.params.argument.value,e.params.context);return Qv(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 bi;throw new z(B.InvalidParams,`Resource template ${e.params.ref.uri} not found`)}let o=n.resourceTemplate.completeCallback(e.params.argument.name);if(!o)return bi;let s=await o(e.params.argument.value,e.params.context);return Qv(s)}setResourceRequestHandlers(){this._resourceHandlersInitialized||(this.server.assertCanSetRequestHandler(cn(Po)),this.server.assertCanSetRequestHandler(cn(Ro)),this.server.assertCanSetRequestHandler(cn(za)),this.server.registerCapabilities({resources:{listChanged:!0}}),this.server.setRequestHandler(Po,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(Ro,async()=>({resourceTemplates:Object.entries(this._registeredResourceTemplates).map(([r,n])=>({name:r,uriTemplate:n.resourceTemplate.uriTemplate.toString(),...n.metadata}))})),this.server.setRequestHandler(za,async(e,r)=>{let n=new URL(e.params.uri),o=this._registeredResources[n.toString()];if(o){if(!o.enabled)throw new z(B.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 z(B.InvalidParams,`Resource ${n} not found`)}),this._resourceHandlersInitialized=!0)}setPromptRequestHandlers(){this._promptHandlersInitialized||(this.server.assertCanSetRequestHandler(cn($o)),this.server.assertCanSetRequestHandler(cn(La)),this.server.registerCapabilities({prompts:{listChanged:!0}}),this.server.setRequestHandler($o,()=>({prompts:Object.entries(this._registeredPrompts).filter(([,e])=>e.enabled).map(([e,r])=>({name:e,title:r.title,description:r.description,arguments:r.argsSchema?MD(r.argsSchema):void 0}))})),this.server.setRequestHandler(La,async(e,r)=>{let n=this._registeredPrompts[e.params.name];if(!n)throw new z(B.InvalidParams,`Prompt ${e.params.name} not found`);if(!n.enabled)throw new z(B.InvalidParams,`Prompt ${e.params.name} disabled`);if(n.argsSchema){let o=ko(n.argsSchema),s=await Sa(o,e.params.arguments);if(!s.success){let c="error"in s?s.error:"Unknown error",u=va(c);throw new z(B.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:zn(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=zn(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 ft?c._def?.innerType:c;return um(u)})&&this.setCompletionRequestHandler(),i}_createRegisteredTool(e,r,n,o,s,i,a,c,u){lm(e);let l={title:r,description:n,inputSchema:Yv(o),outputSchema:Yv(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"&&lm(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=zn(d.paramsSchema)),typeof d.outputSchema<"u"&&(l.outputSchema=zn(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(dm(c))o=r.shift(),r.length>1&&typeof r[0]=="object"&&r[0]!==null&&!dm(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 DD={type:"object",properties:{}};function eb(t){return t!==null&&typeof t=="object"&&"parse"in t&&typeof t.parse=="function"&&"safeParse"in t&&typeof t.safeParse=="function"}function tb(t){return"_def"in t||"_zod"in t||eb(t)}function dm(t){return typeof t!="object"||t===null||tb(t)?!1:Object.keys(t).length===0?!0:Object.values(t).some(eb)}function Yv(t){if(t){if(dm(t))return zn(t);if(!tb(t))throw new Error("inputSchema must be a Zod schema or raw shape, received an unrecognized object");return t}}function MD(t){let e=Jr(t);return e?Object.entries(e).map(([r,n])=>{let o=zy(n),s=Ly(n);return{name:r,description:o,required:!s}}):[]}function cn(t){let r=Jr(t)?.method;if(!r)throw new Error("Schema is missing a method literal");let n=ba(r);if(typeof n=="string")return n;throw new Error("Schema method literal must be a string")}function Qv(t){return{completion:{values:t.slice(0,100),total:t.length,hasMore:t.length>100}}}var bi={completion:{values:[],hasMore:!1}};import nb from"node:process";var Ac=class{append(e){this._buffer=this._buffer?Buffer.concat([this._buffer,e]):e}readMessage(){if(!this._buffer)return null;let e=this._buffer.indexOf(`
|
|
198
|
+
`);if(e===-1)return null;let r=this._buffer.toString("utf8",0,e).replace(/\r$/,"");return this._buffer=this._buffer.subarray(e+1),jD(r)}clear(){this._buffer=void 0}};function jD(t){return g_.parse(JSON.parse(t))}function rb(t){return JSON.stringify(t)+`
|
|
199
|
+
`}var Nc=class{constructor(e=nb.stdin,r=nb.stdout){this._stdin=e,this._stdout=r,this._readBuffer=new Ac,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=rb(e);this._stdout.write(n)?r():this._stdout.once("drain",r)})}};import{createRequire as _w}from"node:module";import{existsSync as _e,unlinkSync as ys,readdirSync as xw,readFileSync as Gi,writeFileSync as Xh,renameSync as RL,rmSync as wu,mkdirSync as Sw,cpSync as $L,statSync as Tu,symlinkSync as CL,lstatSync as vw,realpathSync as OL}from"node:fs";import{execSync as aw,spawnSync as bw}from"node:child_process";import{join as ke,dirname as Pt,resolve as je,sep as Wh,isAbsolute as IL}from"node:path";import{fileURLToPath as AL}from"node:url";import{homedir as _s,tmpdir as Yh,cpus as NL}from"node:os";import{request as DL}from"node:https";import{AsyncLocalStorage as ML}from"node:async_hooks";jc();import{spawn as db,execSync as qD,execFileSync as hb}from"node:child_process";import{mkdtempSync as VD,writeFileSync as pb,rmSync as fb,existsSync as mb}from"node:fs";import{join as Uc,resolve as gb}from"node:path";import{tmpdir as WD}from"node:os";var Ut=process.platform==="win32",KD={javascript:"js",typescript:"ts",python:"py",shell:"sh",ruby:"rb",go:"go",rust:"rs",php:"php",perl:"pl",r:"R",elixir:"exs",csharp:"csx"};function GD(t,e,r){if(e==="win32"&&t==="shell"){let n=r?.toLowerCase()??"";if(n.includes("powershell")||n.includes("pwsh"))return"script.ps1";let o=n.split(/[\\/]/).pop()??n;return o==="cmd"||o==="cmd.exe"?"script.cmd":"script"}return`script.${KD[t]}`}function JD(t){return{windowsHide:t==="win32"}}function XD(t){return`'${t.replace(/'/g,"'\\''")}'`}function YD(t,e,r){return r==="win32"||!e?t:`export PATH=${XD(e)}
|
|
200
|
+
${t}`}var QD=(()=>{if(Ut)return process.env.TEMP??process.env.TMP??WD();try{let t=hb(process.platform==="darwin"?"getconf":"mktemp",process.platform==="darwin"?["DARWIN_USER_TEMP_DIR"]:["-u","-d"],{env:{...process.env,TMPDIR:void 0},encoding:"utf-8"}).trim(),e=process.platform==="darwin"?t:gb(t,"..");if(e&&e!==process.cwd())return e}catch{}return"/tmp"})();function ym(t){if(Ut&&t.pid)try{qD(`taskkill /F /T /PID ${t.pid}`,{stdio:"pipe"})}catch{}else if(t.pid)try{process.kill(-t.pid,"SIGKILL")}catch{}}var wi=class{#e;#t;#n;#s=new Set;constructor(e){this.#e=e?.hardCapBytes??100*1024*1024;let r=e?.projectRoot;typeof r=="function"?this.#t=r:typeof r=="string"?this.#t=()=>r:this.#t=()=>process.cwd(),this.#n=e?.runtimes??Lc()}get#o(){return this.#t()}get runtimes(){return{...this.#n}}cleanupBackgrounded(){for(let e of this.#s)try{process.kill(Ut?e:-e,"SIGTERM")}catch{}this.#s.clear()}async execute(e){let{language:r,code:n,timeout:o,background:s=!1,cwd:i}=e,a=VD(Uc(QD,".ctx-mode-"));try{let c=this.#a(a,n,r),u=lb(this.#n,r,c);if(u[0]==="__rust_compile_run__")return await this.#c(c,a,o);let l=r==="shell"?i??this.#o:a,d=await this.#i(u,l,a,o,s);if(!d.backgrounded)try{fb(a,{recursive:!0,force:!0})}catch{}return d}catch(c){try{fb(a,{recursive:!0,force:!0})}catch{}throw c}}async executeFile(e){let{path:r,language:n,code:o,timeout:s}=e,i=gb(this.#o,r),a=this.#l(i,n,o);return this.execute({language:n,code:a,timeout:s})}#a(e,r,n){n==="go"&&!r.includes("package ")&&(r=`package main
|
|
195
201
|
|
|
196
202
|
import "fmt"
|
|
197
203
|
|
|
@@ -199,12 +205,12 @@ func main() {
|
|
|
199
205
|
${r}
|
|
200
206
|
}
|
|
201
207
|
`),n==="php"&&!r.trimStart().startsWith("<?")&&(r=`<?php
|
|
202
|
-
${r}`),n==="elixir"&&
|
|
208
|
+
${r}`),n==="elixir"&&mb(Uc(this.#o,"mix.exs"))&&(r=`Path.wildcard(Path.join(${JSON.stringify(Uc(this.#o,"_build/dev/lib"))}, "*/ebin"))
|
|
203
209
|
|> Enum.each(&Code.prepend_path/1)
|
|
204
210
|
|
|
205
|
-
${r}`);let o=
|
|
206
|
-
${i instanceof Error?i.stderr||i.message:String(i)}`,exitCode:1,timedOut:!1}}return this.#i([s],r,r,n)}async#i(e,r,n,o,s=!1){return new Promise(i=>{let a=
|
|
207
|
-
[output capped at ${(this.#e/1024/1024).toFixed(0)}MB \u2014 process killed]`),i({stdout:
|
|
211
|
+
${r}`);let o=Uc(e,GD(n,process.platform,n==="shell"?this.#n.shell:null));return n==="shell"?pb(o,YD(r,process.env.PATH,process.platform),{encoding:"utf-8",mode:448}):pb(o,r,"utf-8"),o}async#c(e,r,n){let o=Ut?".exe":"",s=e.replace(/\.rs$/,"")+o;try{hb("rustc",[e,"-o",s],{cwd:r,timeout:n===void 0?6e4:Math.min(n,6e4),encoding:"utf-8",stdio:["pipe","pipe","pipe"]})}catch(i){return{stdout:"",stderr:`Compilation failed:
|
|
212
|
+
${i instanceof Error?i.stderr||i.message:String(i)}`,exitCode:1,timedOut:!1}}return this.#i([s],r,r,n)}async#i(e,r,n,o,s=!1){return new Promise(i=>{let a=Ut&&["tsx","ts-node","elixir","bun","dotnet-script"].includes(e[0]),c=e[0],u;Ut&&e.length===2&&e[1]?u=[e[1].replace(/\\/g,"/")]:u=Ut?e.slice(1).map(x=>x.replace(/\\/g,"/")):e.slice(1);let l={cwd:r,stdio:["ignore","pipe","pipe"],env:this.#u(n),detached:!Ut,...JD(process.platform)},d;if(a){let x=[c,...u].map(S=>/\s/.test(S)?JSON.stringify(S):S).join(" ");d=db(x,[],{...l,shell:!0})}else d=db(c,u,{...l,shell:!1});let f=!1,h=!1,p=o===void 0?void 0:setTimeout(()=>{if(f=!0,s){h=!0,d.pid&&this.#s.add(d.pid),d.unref(),d.stdout.destroy(),d.stderr.destroy();let x=Buffer.concat(m).toString("utf-8"),S=Buffer.concat(g).toString("utf-8");i({stdout:x,stderr:S,exitCode:0,timedOut:!0,backgrounded:!0})}else ym(d)},o),m=[],g=[],y=0,_=!1;d.stdout.on("data",x=>{y+=x.length,y<=this.#e?m.push(x):_||(_=!0,ym(d))}),d.stderr.on("data",x=>{y+=x.length,y<=this.#e?g.push(x):_||(_=!0,ym(d))}),d.on("close",x=>{if(clearTimeout(p),h)return;let S=Buffer.concat(m).toString("utf-8"),k=Buffer.concat(g).toString("utf-8");_&&(k+=`
|
|
213
|
+
[output capped at ${(this.#e/1024/1024).toFixed(0)}MB \u2014 process killed]`),i({stdout:S,stderr:k,exitCode:f?1:x??1,timedOut:f})}),d.on("error",x=>{clearTimeout(p),!h&&i({stdout:"",stderr:x.message,exitCode:1,timedOut:!1})})})}#u(e){let r=process.env.HOME??process.env.USERPROFILE??e,n=new Set(["BASH_ENV","ENV","PROMPT_COMMAND","PS4","SHELLOPTS","BASHOPTS","CDPATH","INPUTRC","BASH_XTRACEFD","NODE_OPTIONS","NODE_PATH","PYTHONSTARTUP","PYTHONHOME","PYTHONWARNINGS","PYTHONBREAKPOINT","PYTHONINSPECT","RUBYOPT","RUBYLIB","PERL5OPT","PERL5LIB","PERLLIB","PERL5DB","ERL_AFLAGS","ERL_FLAGS","ELIXIR_ERL_OPTIONS","ERL_LIBS","GOFLAGS","CGO_CFLAGS","CGO_LDFLAGS","RUSTC","RUSTC_WRAPPER","RUSTC_WORKSPACE_WRAPPER","CARGO_BUILD_RUSTC","CARGO_BUILD_RUSTC_WRAPPER","RUSTFLAGS","PHPRC","PHP_INI_SCAN_DIR","R_PROFILE","R_PROFILE_USER","R_HOME","DOTNET_STARTUP_HOOKS","DOTNET_ADDITIONAL_DEPS","DOTNET_SHARED_STORE","DOTNET_ROOT","DOTNET_ROOT(x86)","DOTNET_HOST_PATH","CORECLR_PROFILER","CORECLR_PROFILER_PATH","CORECLR_PROFILER_PATH_32","CORECLR_PROFILER_PATH_64","CORECLR_PROFILER_PATH_ARM32","CORECLR_PROFILER_PATH_ARM64","CORECLR_ENABLE_PROFILING","DOTNET_PROFILER_PATH","DOTNET_PROFILER_PATH_32","DOTNET_PROFILER_PATH_64","DOTNET_PROFILER_PATH_ARM32","DOTNET_PROFILER_PATH_ARM64","DOTNET_DiagnosticPorts","DOTNET_BUNDLE_EXTRACT_BASE_DIR","LD_PRELOAD","DYLD_INSERT_LIBRARIES","OPENSSL_CONF","OPENSSL_ENGINES","CC","CXX","AR","GIT_TEMPLATE_DIR","GIT_CONFIG_GLOBAL","GIT_CONFIG_SYSTEM","GIT_EXEC_PATH","GIT_SSH","GIT_SSH_COMMAND","GIT_ASKPASS"]),o={};for(let[s,i]of Object.entries(process.env))i!==void 0&&!n.has(s)&&!s.startsWith("BASH_FUNC_")&&!/^COMPlus_/i.test(s)&&(o[s]=i);if(o.TMPDIR=e,o.HOME=r,o.LANG="en_US.UTF-8",o.PYTHONDONTWRITEBYTECODE="1",o.PYTHONUNBUFFERED="1",o.PYTHONUTF8="1",o.NO_COLOR="1",Ut&&!o.PATH&&o.Path&&(o.PATH=o.Path,delete o.Path),o.PATH||(o.PATH=Ut?"":"/usr/local/bin:/usr/bin:/bin"),Ut){o.MSYS_NO_PATHCONV="1",o.MSYS2_ARG_CONV_EXCL="*";let s="C:\\Program Files\\Git\\usr\\bin",i="C:\\Program Files\\Git\\bin";o.PATH.includes(s)||(o.PATH=`${s};${i};${o.PATH}`)}if(!o.SSL_CERT_FILE){let s=Ut?[]:["/etc/ssl/cert.pem","/etc/ssl/certs/ca-certificates.crt","/etc/pki/tls/certs/ca-bundle.crt","/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem"];for(let i of s)if(mb(i)){o.SSL_CERT_FILE=i;break}}return o}#l(e,r,n){let o=JSON.stringify(e);switch(r){case"javascript":case"typescript":return`const FILE_CONTENT_PATH = ${o};
|
|
208
214
|
const file_path = FILE_CONTENT_PATH;
|
|
209
215
|
const FILE_CONTENT = require("fs").readFileSync(FILE_CONTENT_PATH, "utf-8");
|
|
210
216
|
${n}`;case"python":return`FILE_CONTENT_PATH = ${o}
|
|
@@ -262,7 +268,7 @@ file_content = File.read!(file_content_path)
|
|
|
262
268
|
${n}`;case"csharp":return`var FILE_CONTENT_PATH = ${o};
|
|
263
269
|
var file_path = FILE_CONTENT_PATH;
|
|
264
270
|
var FILE_CONTENT = System.IO.File.ReadAllText(FILE_CONTENT_PATH);
|
|
265
|
-
${n}`}}};import{cpus as
|
|
271
|
+
${n}`}}};import{cpus as eM}from"node:os";async function _m(t,e){let{concurrency:r,capByCpuCount:n=!1,onSettled:o}=e;if(t.length===0)return{settled:[],effectiveConcurrency:0,capped:!1};let s=Math.max(1,r),i=n?Math.max(1,eM().length):s,a=Math.min(s,i,t.length),c=a<s,u=new Array(t.length),l=0;async function d(){for(;;){let h=l++;if(h>=t.length)return;try{let p=await t[h].run();u[h]={status:"fulfilled",value:p}}catch(p){u[h]={status:"rejected",reason:p}}o?.(h,u[h])}}let f=[];for(let h=0;h<a;h++)f.push(d());return await Promise.allSettled(f),{settled:u,effectiveConcurrency:a,capped:c}}Yo();import{readFileSync as Eb,readdirSync as Cb,unlinkSync as wm,existsSync as Em,statSync as Zc,openSync as wb,fstatSync as Tb,closeSync as Pb}from"node:fs";import{createHash as Rb}from"node:crypto";import{tmpdir as Ob}from"node:os";import{join as Tm}from"node:path";import{readdirSync as uM,statSync as lM,lstatSync as dM,realpathSync as xb,existsSync as pM,readFileSync as fM}from"node:fs";import{join as vb,extname as mM,relative as bb,sep as hM,resolve as gM}from"node:path";var yM=["node_modules",".git","dist","build",".next","coverage",".venv","__pycache__",".DS_Store"],_M=[".md",".mdx",".txt",".json",".yaml",".yml",".ts",".tsx",".js",".jsx",".py",".rs",".go",".sh"],xM=5,SM=200;function vM(t){let e="";for(let r=0;r<t.length;r++){let n=t[r];n==="*"?t[r+1]==="*"?(e+=".*",r++):e+="[^/]*":n==="?"?e+="[^/]":"\\^$.|+()[]{}".includes(n)?e+="\\"+n:e+=n}return new RegExp(`^${e}$`)}function Sb(t,e){if(e.length===0)return!1;let r=t.split("/").pop()??t;for(let n of e){if(!n.includes("/")&&!n.includes("*")){if(r===n||t.split("/").includes(n))return!0;continue}let o=vM(n);if(o.test(t)||o.test(r))return!0}return!1}function bM(t){let e=vb(t,".gitignore");if(!pM(e))return[];try{return fM(e,"utf-8").split(/\r?\n/).map(n=>n.trim()).filter(n=>n.length>0&&!n.startsWith("#")&&!n.startsWith("!")).map(n=>n.replace(/^\//,"").replace(/\/$/,""))}catch{return[]}}function kM(t,e){return bb(t,e).split(hM).join("/")}function kb(t,e={}){let{include:r,exclude:n,maxDepth:o=xM,maxFiles:s=SM,extensions:i,respectGitignore:a=!0,followSymlinks:c=!1}=e,u;try{u=xb(t)}catch{return{files:[],capped:!1,totalSeen:0}}let l=(i&&i.length>0?i:_M).map(_=>(_.startsWith(".")?_:"."+_).toLowerCase()),d=[...yM,...n??[],...a?bM(u):[]],f=r??[],h=[],p=new Set([u]),m=0,g=!1;function y(_,x){if(g||x>o)return;let S;try{S=uM(_,{withFileTypes:!0})}catch{return}for(let k of S){if(g)return;let R=vb(_,k.name),$=kM(u,R);if(Sb($,d))continue;let C=k.isDirectory(),A=k.isFile(),W=!1;try{W=dM(R).isSymbolicLink()}catch{continue}if(W){if(!c)continue;let E;try{E=xb(R)}catch{continue}let L=bb(u,E);if((L.startsWith("..")||gM(L)===E)&&L.startsWith("..")||p.has(E))continue;p.add(E);try{let pe=lM(E);C=pe.isDirectory(),A=pe.isFile()}catch{continue}}if(C){y(R,x+1);continue}if(!A)continue;let T=mM(R).toLowerCase();if(l.includes(T)&&!(f.length>0&&!Sb($,f))){if(m++,h.length>=s){g=!0;return}h.push(R)}}}return y(u,0),{files:h,capped:g,totalSeen:m}}var Qo=new Set(["the","and","for","are","but","not","you","all","can","had","her","was","one","our","out","has","his","how","its","may","new","now","old","see","way","who","did","get","got","let","say","she","too","use","will","with","this","that","from","they","been","have","many","some","them","than","each","make","like","just","over","such","take","into","year","your","good","could","would","about","which","their","there","other","after","should","through","also","more","most","only","very","when","what","then","these","those","being","does","done","both","same","still","while","where","here","were","much","update","updates","updated","deps","dev","tests","test","add","added","fix","fixed","run","running","using"]);function Ib(t){let e=new Set,r=[];for(let n of t){let o=n.toLowerCase();e.has(o)||(e.add(o),r.push(n))}return r}function EM(t,e="AND"){let r=Ib(t.replace(/['"(){}[\]*:^~]/g," ").split(/\s+/).filter(s=>s.length>0&&!["AND","OR","NOT","NEAR"].includes(s.toUpperCase())));if(r.length===0)return'""';let n=r.filter(s=>!Qo.has(s.toLowerCase()));return(n.length>0?n:r).map(s=>`"${s}"`).join(e==="OR"?" OR ":" ")}function wM(t,e="AND"){let r=t.replace(/["'(){}[\]*:^~]/g,"").trim();if(r.length<3)return"";let n=Ib(r.split(/\s+/).filter(i=>i.length>=3));if(n.length===0)return"";let o=n.filter(i=>!Qo.has(i.toLowerCase()));return(o.length>0?o:n).map(i=>`"${i}"`).join(e==="OR"?" OR ":" ")}function TM(t,e){if(t.length===0)return e.length;if(e.length===0)return t.length;let r=Array.from({length:e.length+1},(n,o)=>o);for(let n=1;n<=t.length;n++){let o=[n];for(let s=1;s<=e.length;s++)o[s]=t[n-1]===e[s-1]?r[s-1]:1+Math.min(r[s],o[s-1],r[s-1]);r=o}return r[e.length]}function PM(t){return t<=4?1:t<=12?2:3}var $b=4096;function Pm(){let t=Ob(),e=0;try{let r=Cb(t);for(let n of r){let o=n.match(/^context-mode-(\d+)\.db$/);if(!o)continue;let s=parseInt(o[1],10);if(s!==process.pid)try{process.kill(s,0)}catch{let i=Tm(t,n);for(let a of["","-wal","-shm"])try{wm(i+a)}catch{}e++}}}catch{}return e}function Rm(t,e){let r=0;try{if(!Em(t))return 0;let n=Date.now()-e*24*60*60*1e3,o=Cb(t).filter(s=>s.endsWith(".db"));for(let s of o)try{let i=Tm(t,s),c=Zc(i).mtimeMs<n;if(!c){let u=i+"-wal";if(Em(u))try{let l=Zc(u);l.size>0&&Date.now()-l.mtimeMs>36e5&&(c=!0)}catch{}}if(c){for(let u of["","-wal","-shm"])try{wm(i+u)}catch{}r++}}catch{}}catch{}return r}function RM(t,e){let r=[],n=t.indexOf(e);for(;n!==-1;)r.push(n),n=t.indexOf(e,n+1);return r}function $M(t,e,r=30){if(t.length<2||e.length<2)return 0;let n=0,o=Math.min(t.length,e.length)-1;for(let s=0;s<o;s++){let i=t[s],a=t[s+1],c=e[s].length,u=0;for(let l of i){let d=l+c,f=d+r;for(;u<a.length&&a[u]<d;)u++;u<a.length&&a[u]<=f&&(n++,u++)}}return n}function CM(t){if(t.length===0)return 1/0;if(t.length===1)return 0;let e=t,r=new Array(e.length).fill(0),n=1/0;for(;;){let o=1/0,s=-1/0,i=0;for(let c=0;c<e.length;c++){let u=e[c][r[c]];u<o&&(o=u,i=c),u>s&&(s=u)}let a=s-o;if(a<n&&(n=a),r[i]++,r[i]>=e[i].length)break}return n}var Bc=class t{#e;#t;#n;#s;#o;#a;#c;#i;#u;#l;#f;#m;#h;#g;#y;#_;#x;#S;#v;#b;#k;#E;#w;#T;#P;#R;#$;#C;#O;#I;#A;#N;#D;#M=0;static OPTIMIZE_EVERY=50;#r=new Map;static FUZZY_CACHE_SIZE=256;constructor(e){let r=Ye();this.#t=e??Tm(Ob(),`context-mode-${process.pid}.db`),Ri(this.#t);let n;try{n=new r(this.#t,{timeout:3e4}),Pi(n)}catch(o){let s=o instanceof Error?o.message:String(o);if(km(s)){bm(this.#t),Ri(this.#t);try{n=new r(this.#t,{timeout:3e4}),Pi(n)}catch(i){throw new Error(`Failed to create fresh DB after deleting corrupt file: ${i instanceof Error?i.message:String(i)}`)}}else throw o}this.#e=n,this.#F(),this.#Z()}cleanup(){try{this.#e.close()}catch{}for(let e of["","-wal","-shm"])try{wm(this.#t+e)}catch{}}#F(){this.#e.exec(`
|
|
266
272
|
CREATE TABLE IF NOT EXISTS sources (
|
|
267
273
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
268
274
|
label TEXT NOT NULL,
|
|
@@ -333,7 +339,8 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
333
339
|
chunks.timestamp,
|
|
334
340
|
sources.label,
|
|
335
341
|
bm25(chunks, 5.0, 1.0) AS rank,
|
|
336
|
-
highlight(chunks, 1, char(2), char(3)) AS highlighted
|
|
342
|
+
highlight(chunks, 1, char(2), char(3)) AS highlighted,
|
|
343
|
+
chunks.session_id
|
|
337
344
|
FROM chunks
|
|
338
345
|
JOIN sources ON sources.id = chunks.source_id
|
|
339
346
|
WHERE chunks MATCH ?
|
|
@@ -347,7 +354,8 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
347
354
|
chunks.timestamp,
|
|
348
355
|
sources.label,
|
|
349
356
|
bm25(chunks, 5.0, 1.0) AS rank,
|
|
350
|
-
highlight(chunks, 1, char(2), char(3)) AS highlighted
|
|
357
|
+
highlight(chunks, 1, char(2), char(3)) AS highlighted,
|
|
358
|
+
chunks.session_id
|
|
351
359
|
FROM chunks
|
|
352
360
|
JOIN sources ON sources.id = chunks.source_id
|
|
353
361
|
WHERE chunks MATCH ? AND sources.label LIKE ? ESCAPE '\\'
|
|
@@ -361,7 +369,8 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
361
369
|
chunks.timestamp,
|
|
362
370
|
sources.label,
|
|
363
371
|
bm25(chunks, 5.0, 1.0) AS rank,
|
|
364
|
-
highlight(chunks, 1, char(2), char(3)) AS highlighted
|
|
372
|
+
highlight(chunks, 1, char(2), char(3)) AS highlighted,
|
|
373
|
+
chunks.session_id
|
|
365
374
|
FROM chunks
|
|
366
375
|
JOIN sources ON sources.id = chunks.source_id
|
|
367
376
|
WHERE chunks MATCH ? AND sources.label = ?
|
|
@@ -375,7 +384,8 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
375
384
|
chunks_trigram.timestamp,
|
|
376
385
|
sources.label,
|
|
377
386
|
bm25(chunks_trigram, 5.0, 1.0) AS rank,
|
|
378
|
-
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted
|
|
387
|
+
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted,
|
|
388
|
+
chunks_trigram.session_id
|
|
379
389
|
FROM chunks_trigram
|
|
380
390
|
JOIN sources ON sources.id = chunks_trigram.source_id
|
|
381
391
|
WHERE chunks_trigram MATCH ?
|
|
@@ -389,13 +399,14 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
389
399
|
chunks_trigram.timestamp,
|
|
390
400
|
sources.label,
|
|
391
401
|
bm25(chunks_trigram, 5.0, 1.0) AS rank,
|
|
392
|
-
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted
|
|
402
|
+
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted,
|
|
403
|
+
chunks_trigram.session_id
|
|
393
404
|
FROM chunks_trigram
|
|
394
405
|
JOIN sources ON sources.id = chunks_trigram.source_id
|
|
395
406
|
WHERE chunks_trigram MATCH ? AND sources.label LIKE ? ESCAPE '\\'
|
|
396
407
|
ORDER BY rank
|
|
397
408
|
LIMIT ?
|
|
398
|
-
`),this.#
|
|
409
|
+
`),this.#x=this.#e.prepare(`
|
|
399
410
|
SELECT
|
|
400
411
|
chunks_trigram.title,
|
|
401
412
|
chunks_trigram.content,
|
|
@@ -403,13 +414,14 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
403
414
|
chunks_trigram.timestamp,
|
|
404
415
|
sources.label,
|
|
405
416
|
bm25(chunks_trigram, 5.0, 1.0) AS rank,
|
|
406
|
-
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted
|
|
417
|
+
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted,
|
|
418
|
+
chunks_trigram.session_id
|
|
407
419
|
FROM chunks_trigram
|
|
408
420
|
JOIN sources ON sources.id = chunks_trigram.source_id
|
|
409
421
|
WHERE chunks_trigram MATCH ? AND sources.label = ?
|
|
410
422
|
ORDER BY rank
|
|
411
423
|
LIMIT ?
|
|
412
|
-
`),this.#
|
|
424
|
+
`),this.#v=this.#e.prepare(`
|
|
413
425
|
SELECT
|
|
414
426
|
chunks.title,
|
|
415
427
|
chunks.content,
|
|
@@ -417,13 +429,14 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
417
429
|
chunks.timestamp,
|
|
418
430
|
sources.label,
|
|
419
431
|
bm25(chunks, 5.0, 1.0) AS rank,
|
|
420
|
-
highlight(chunks, 1, char(2), char(3)) AS highlighted
|
|
432
|
+
highlight(chunks, 1, char(2), char(3)) AS highlighted,
|
|
433
|
+
chunks.session_id
|
|
421
434
|
FROM chunks
|
|
422
435
|
JOIN sources ON sources.id = chunks.source_id
|
|
423
436
|
WHERE chunks MATCH ? AND chunks.content_type = ?
|
|
424
437
|
ORDER BY rank
|
|
425
438
|
LIMIT ?
|
|
426
|
-
`),this.#
|
|
439
|
+
`),this.#b=this.#e.prepare(`
|
|
427
440
|
SELECT
|
|
428
441
|
chunks.title,
|
|
429
442
|
chunks.content,
|
|
@@ -431,7 +444,8 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
431
444
|
chunks.timestamp,
|
|
432
445
|
sources.label,
|
|
433
446
|
bm25(chunks, 5.0, 1.0) AS rank,
|
|
434
|
-
highlight(chunks, 1, char(2), char(3)) AS highlighted
|
|
447
|
+
highlight(chunks, 1, char(2), char(3)) AS highlighted,
|
|
448
|
+
chunks.session_id
|
|
435
449
|
FROM chunks
|
|
436
450
|
JOIN sources ON sources.id = chunks.source_id
|
|
437
451
|
WHERE chunks MATCH ? AND sources.label LIKE ? ESCAPE '\\' AND chunks.content_type = ?
|
|
@@ -445,7 +459,8 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
445
459
|
chunks.timestamp,
|
|
446
460
|
sources.label,
|
|
447
461
|
bm25(chunks, 5.0, 1.0) AS rank,
|
|
448
|
-
highlight(chunks, 1, char(2), char(3)) AS highlighted
|
|
462
|
+
highlight(chunks, 1, char(2), char(3)) AS highlighted,
|
|
463
|
+
chunks.session_id
|
|
449
464
|
FROM chunks
|
|
450
465
|
JOIN sources ON sources.id = chunks.source_id
|
|
451
466
|
WHERE chunks MATCH ? AND sources.label = ? AND chunks.content_type = ?
|
|
@@ -459,7 +474,8 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
459
474
|
chunks_trigram.timestamp,
|
|
460
475
|
sources.label,
|
|
461
476
|
bm25(chunks_trigram, 5.0, 1.0) AS rank,
|
|
462
|
-
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted
|
|
477
|
+
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted,
|
|
478
|
+
chunks_trigram.session_id
|
|
463
479
|
FROM chunks_trigram
|
|
464
480
|
JOIN sources ON sources.id = chunks_trigram.source_id
|
|
465
481
|
WHERE chunks_trigram MATCH ? AND chunks_trigram.content_type = ?
|
|
@@ -473,7 +489,8 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
473
489
|
chunks_trigram.timestamp,
|
|
474
490
|
sources.label,
|
|
475
491
|
bm25(chunks_trigram, 5.0, 1.0) AS rank,
|
|
476
|
-
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted
|
|
492
|
+
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted,
|
|
493
|
+
chunks_trigram.session_id
|
|
477
494
|
FROM chunks_trigram
|
|
478
495
|
JOIN sources ON sources.id = chunks_trigram.source_id
|
|
479
496
|
WHERE chunks_trigram MATCH ? AND sources.label LIKE ? ESCAPE '\\' AND chunks_trigram.content_type = ?
|
|
@@ -487,13 +504,14 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
487
504
|
chunks_trigram.timestamp,
|
|
488
505
|
sources.label,
|
|
489
506
|
bm25(chunks_trigram, 5.0, 1.0) AS rank,
|
|
490
|
-
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted
|
|
507
|
+
highlight(chunks_trigram, 1, char(2), char(3)) AS highlighted,
|
|
508
|
+
chunks_trigram.session_id
|
|
491
509
|
FROM chunks_trigram
|
|
492
510
|
JOIN sources ON sources.id = chunks_trigram.source_id
|
|
493
511
|
WHERE chunks_trigram MATCH ? AND sources.label = ? AND chunks_trigram.content_type = ?
|
|
494
512
|
ORDER BY rank
|
|
495
513
|
LIMIT ?
|
|
496
|
-
`),this.#
|
|
514
|
+
`),this.#S=this.#e.prepare("SELECT word FROM vocabulary WHERE length(word) BETWEEN ? AND ?"),this.#P=this.#e.prepare("SELECT label, chunk_count as chunkCount FROM sources ORDER BY id DESC"),this.#R=this.#e.prepare(`SELECT c.title, c.content, c.content_type, s.label
|
|
497
515
|
FROM chunks c
|
|
498
516
|
JOIN sources s ON s.id = c.source_id
|
|
499
517
|
WHERE c.source_id = ?
|
|
@@ -502,86 +520,96 @@ ${n}`}}};import{cpus as hD}from"node:os";async function sm(t,e){let{concurrency:
|
|
|
502
520
|
(SELECT COUNT(*) FROM sources) AS sources,
|
|
503
521
|
(SELECT COUNT(*) FROM chunks) AS chunks,
|
|
504
522
|
(SELECT COUNT(*) FROM chunks WHERE content_type = 'code') AS codeChunks
|
|
505
|
-
`),this.#A=this.#e.prepare("DELETE FROM chunks WHERE source_id IN (SELECT id FROM sources WHERE datetime(indexed_at) < datetime('now', '-' || ? || ' days'))"),this.#N=this.#e.prepare("DELETE FROM chunks_trigram WHERE source_id IN (SELECT id FROM sources WHERE datetime(indexed_at) < datetime('now', '-' || ? || ' days'))"),this.#D=this.#e.prepare("DELETE FROM sources WHERE datetime(indexed_at) < datetime('now', '-' || ? || ' days')")}setDenyChecker(e){this.#n=e}index(e){let{content:r,path:n,source:o,attribution:s}=e,i=typeof r=="string"&&r.length>0;if(!i&&!n)throw new Error("Either content or path must be provided");let a;if(i)a=r;else{let f=
|
|
523
|
+
`),this.#A=this.#e.prepare("DELETE FROM chunks WHERE source_id IN (SELECT id FROM sources WHERE datetime(indexed_at) < datetime('now', '-' || ? || ' days'))"),this.#N=this.#e.prepare("DELETE FROM chunks_trigram WHERE source_id IN (SELECT id FROM sources WHERE datetime(indexed_at) < datetime('now', '-' || ? || ' days'))"),this.#D=this.#e.prepare("DELETE FROM sources WHERE datetime(indexed_at) < datetime('now', '-' || ? || ' days')")}setDenyChecker(e){this.#n=e}index(e){let{content:r,path:n,source:o,attribution:s}=e,i=typeof r=="string"&&r.length>0;if(!i&&!n)throw new Error("Either content or path must be provided");let a;if(i)a=r;else{let f=wb(n,"r");try{if(!Tb(f).isFile())throw new Error(`refusing to index ${n}: not a regular file`);a=Eb(f,"utf-8")}finally{Pb(f)}}let c=o??n??"untitled",u=this.#W(a),l=n??void 0,d=l?Rb("sha256").update(a).digest("hex"):void 0;return Gn(()=>this.#d(u,c,a,l,d,s))}indexDirectory(e){let{path:r,source:n,attribution:o,perFileDeny:s,...i}=e,a=kb(r,i),c=0,u=0,l=0,d=0;for(let f of a.files){if(s&&s(f)){l++;continue}try{let h=n?`${n}:${f}`:f,p=this.index({path:f,source:h,attribution:o});c++,u+=p.totalChunks}catch{d++}}return{filesIndexed:c,totalChunks:u,capped:a.capped,totalSeen:a.totalSeen,denied:l,failed:d,label:n??r}}indexPlainText(e,r,n=20,o){if(!e||e.trim().length===0)return this.#d([],r,"",void 0,void 0,o);let s=this.#K(e,n);return Gn(()=>this.#d(s.map(i=>({...i,hasCode:!1})),r,e,void 0,void 0,o))}indexJSON(e,r,n=$b,o){if(!e||e.trim().length===0)return this.indexPlainText("",r,void 0,o);let s;try{s=JSON.parse(e)}catch{return this.indexPlainText(e,r,void 0,o)}let i=[];return this.#U(s,[],i,n),i.length===0?this.indexPlainText(e,r,void 0,o):Gn(()=>this.#d(i,r,e,void 0,void 0,o))}#d(e,r,n,o,s,i){let a=e.filter(f=>f.hasCode).length,c=i?.sessionId??"",u=i?.eventId??"",d=this.#e.transaction(()=>{if(this.#u.run(r),this.#l.run(r),this.#f.run(r),e.length===0){let m=this.#s.run(r,o??null,s??null);return Number(m.lastInsertRowid)}let f=this.#o.run(r,e.length,a,o??null,s??null),h=Number(f.lastInsertRowid),p=new Date().toISOString();for(let m of e){let g=m.hasCode?"code":"prose";this.#a.run(m.title,m.content,h,g,null,c,u,p),this.#c.run(m.title,m.content,h,g,null,c,u,p)}return h})();return n&&this.#V(n),this.#M++,this.#M%t.OPTIMIZE_EVERY===0&&this.#H(),{sourceId:d,label:r,totalChunks:e.length,codeChunks:a}}#j(e){return e.map(r=>({title:r.title,content:r.content,source:r.label,rank:r.rank,contentType:r.content_type,highlighted:r.highlighted,timestamp:r.timestamp??void 0,sessionId:r.session_id??""}))}#p(e,r){return r==="exact"?e:`%${e.replace(/\\/g,"\\\\").replace(/%/g,"\\%").replace(/_/g,"\\_")}%`}search(e,r=3,n,o="AND",s,i="like"){let a=EM(e,o),c,u;return n&&s?(c=i==="exact"?this.#k:this.#b,u=[a,this.#p(n,i),s,r]):n?(c=i==="exact"?this.#g:this.#h,u=[a,this.#p(n,i),r]):s?(c=this.#v,u=[a,s,r]):(c=this.#m,u=[a,r]),Gn(()=>this.#j(c.all(...u)))}searchTrigram(e,r=3,n,o="AND",s,i="like"){let a=wM(e,o);if(!a)return[];let c,u;return n&&s?(c=i==="exact"?this.#T:this.#w,u=[a,this.#p(n,i),s,r]):n?(c=i==="exact"?this.#x:this.#_,u=[a,this.#p(n,i),r]):s?(c=this.#E,u=[a,s,r]):(c=this.#y,u=[a,r]),Gn(()=>this.#j(c.all(...u)))}fuzzyCorrect(e){let r=e.toLowerCase().trim();if(r.length<3)return null;if(this.#r.has(r)){let u=this.#r.get(r)??null;return this.#r.delete(r),this.#r.set(r,u),u}let n=PM(r.length),o=this.#S.all(r.length-n,r.length+n),s=null,i=n+1,a=!1;for(let{word:u}of o){if(u===r){a=!0;break}let l=TM(r,u);l<i&&(i=l,s=u)}let c=a?null:i<=n?s:null;if(this.#r.size>=t.FUZZY_CACHE_SIZE){let u=this.#r.keys().next().value;u!==void 0&&this.#r.delete(u)}return this.#r.set(r,c),c}#z(e,r,n,o,s="like"){let a=Math.max(r*2,10),c=this.search(e,a,n,"OR",o,s),u=this.searchTrigram(e,a,n,"OR",o,s),l=new Map,d=f=>`${f.source}::${f.title}`;for(let[f,h]of c.entries()){let p=d(h),m=l.get(p);m?m.score+=1/(60+f+1):l.set(p,{result:h,score:1/(60+f+1)})}for(let[f,h]of u.entries()){let p=d(h),m=l.get(p);m?m.score+=1/(60+f+1):l.set(p,{result:h,score:1/(60+f+1)})}return Array.from(l.values()).sort((f,h)=>h.score-f.score).slice(0,r).map(({result:f,score:h})=>({...f,rank:-h}))}#L(e,r){let n=r.toLowerCase().split(/\s+/).filter(i=>i.length>=2),o=n.filter(i=>!Qo.has(i)),s=o.length>0?o:n;return e.map(i=>{let a=i.title.toLowerCase(),c=s.filter(h=>a.includes(h)).length,u=i.contentType==="code"?.6:.3,l=c>0?u*(c/s.length):0,d=0,f=0;if(s.length>=2){let h=i.content.toLowerCase(),p=s.map(m=>RM(h,m));if(!p.some(m=>m.length===0)){d=1/(1+CM(p)/Math.max(h.length,1));let g=$M(p,s);f=.5*Math.min(1,g/4)}}return{result:i,boost:l+d+f}}).sort((i,a)=>a.boost-i.boost||i.result.rank-a.result.rank).map(({result:i})=>i)}searchWithFallback(e,r=3,n,o,s="like",i){this.#q();let a=i?Math.max(r*8,40):r,c=this.#B(i),u=this.#z(e,a,n,o,s),l=c?u.filter(c):u;if(l.length>0)return this.#L(l.slice(0,r),e).map(g=>({...g,matchLayer:"rrf"}));let d=e.toLowerCase().trim().split(/\s+/).filter(m=>m.length>=3&&!Qo.has(m)),f=d.join(" "),p=d.map(m=>this.fuzzyCorrect(m)??m).join(" ");if(p!==f){let m=this.#z(p,a,n,o,s),g=c?m.filter(c):m;if(g.length>0)return this.#L(g.slice(0,r),p).map(_=>({..._,matchLayer:"rrf-fuzzy"}))}return[]}#B(e){return e?r=>{let n=r.sessionId??"";return n===""||e.has(n)}:null}lastRefreshCount=0;#q(){this.lastRefreshCount=0;let e=this.#e.prepare("SELECT label, file_path, content_hash, indexed_at FROM sources WHERE file_path IS NOT NULL").all();for(let r of e)try{if(!Em(r.file_path)||this.#n&&this.#n(r.file_path))continue;let n=Zc(r.file_path).mtime,o=new Date(r.indexed_at+"Z");if(n<=o)continue;let s=wb(r.file_path,"r"),i;try{if(!Tb(s).isFile())continue;i=Eb(s,"utf-8")}finally{Pb(s)}if(Rb("sha256").update(i).digest("hex")===r.content_hash)continue;this.index({content:i,path:r.file_path,source:r.label}),this.lastRefreshCount++}catch{}}getSourceMeta(e){let r=this.#I.get(e);return r?{label:r.label,chunkCount:r.chunk_count,codeChunkCount:r.code_chunk_count,indexedAt:r.indexed_at,filePath:r.file_path??null,contentHash:r.content_hash??null}:null}listSources(){return this.#P.all()}getIndexState(){let e=this.#e.prepare("SELECT COALESCE(SUM(chunk_count), 0) AS total_chunks, COUNT(*) AS total_sources, MAX(indexed_at) AS last_indexed_at FROM sources").get();return{totalChunks:e.total_chunks??0,totalSources:e.total_sources??0,lastIndexedAt:e.last_indexed_at??void 0}}getChunksBySource(e){return this.#R.all(e).map(n=>({title:n.title,content:n.content,source:n.label,rank:0,contentType:n.content_type}))}getDistinctiveTerms(e,r=40){let n=this.#$.get(e);if(!n||n.chunk_count<3)return[];let o=n.chunk_count,s=2,i=Math.max(3,Math.ceil(o*.4)),a=new Map;for(let l of this.#C.iterate(e)){let d=new Set(l.content.toLowerCase().split(/[^\p{L}\p{N}_-]+/u).filter(f=>f.length>=3&&!Qo.has(f)));for(let f of d)a.set(f,(a.get(f)??0)+1)}return Array.from(a.entries()).filter(([,l])=>l>=s&&l<=i).map(([l,d])=>{let f=Math.log(o/d),h=Math.min(l.length/20,.5),p=/[_]/.test(l),m=l.length>=12,g=p?1.5:m?.8:0;return{word:l,score:f+h+g}}).sort((l,d)=>d.score-l.score).slice(0,r).map(l=>l.word)}getStats(){let e=this.#O.get();return{sources:e?.sources??0,chunks:e?.chunks??0,codeChunks:e?.codeChunks??0}}cleanupStaleSources(e){return this.#e.transaction(o=>(this.#A.run(o),this.#N.run(o),this.#D.run(o)))(e).changes}getDBSizeBytes(){try{return Zc(this.#t).size}catch{return 0}}#H(){try{this.#e.exec("INSERT INTO chunks(chunks) VALUES('optimize')"),this.#e.exec("INSERT INTO chunks_trigram(chunks_trigram) VALUES('optimize')")}catch{}}close(){this.#H(),$i(this.#e)}#V(e){let r=e.toLowerCase().split(/[^\p{L}\p{N}_-]+/u).filter(s=>s.length>=3&&!Qo.has(s)),n=[...new Set(r)],o=0;this.#e.transaction(()=>{for(let s of n){let i=this.#i.run(s);o+=i.changes}})(),o>0&&this.#r.clear()}#W(e,r=$b){let n=[],o=e.split(`
|
|
506
524
|
`),s=[],i=[],a="",c=()=>{let l=i.join(`
|
|
507
|
-
`).trim();if(l.length===0)return;let d=this.#
|
|
525
|
+
`).trim();if(l.length===0)return;let d=this.#Y(s,a),f=i.some(y=>/^`{3,}/.test(y));if(Buffer.byteLength(l)<=r){n.push({title:d,content:l,hasCode:f}),i=[];return}let h=l.split(/\n\n+/),p=[],m=1,g=()=>{if(p.length===0)return;let y=p.join(`
|
|
508
526
|
|
|
509
|
-
`).trim();if(y.length===0)return;let
|
|
527
|
+
`).trim();if(y.length===0)return;let _=h.length>1?`${d} (${m})`:d;m++,n.push({title:_,content:y,hasCode:y.includes("```")}),p=[]};for(let y of h){p.push(y);let _=p.join(`
|
|
510
528
|
|
|
511
|
-
`);Buffer.byteLength(
|
|
529
|
+
`);Buffer.byteLength(_)>r&&p.length>1&&(p.pop(),g(),p=[y])}g(),i=[]},u=0;for(;u<o.length;){let l=o[u];if(/^[-_*]{3,}\s*$/.test(l)){c(),u++;continue}let d=l.match(/^(#{1,4})\s+(.+)$/);if(d){c();let h=d[1].length,p=d[2].trim();for(;s.length>0&&s[s.length-1].level>=h;)s.pop();s.push({level:h,text:p}),a=p,i.push(l),u++;continue}let f=l.match(/^(`{3,})(.*)?$/);if(f){let h=f[1],p=[l];for(u++;u<o.length;){if(p.push(o[u]),o[u].startsWith(h)&&o[u].trim()===h){u++;break}u++}i.push(...p);continue}i.push(l),u++}return c(),n}#K(e,r){let n=e.split(/\n\s*\n/);if(n.length>=3&&n.length<=200&&n.every(c=>Buffer.byteLength(c)<5e3))return n.map((c,u)=>{let l=c.trim();return{title:l.split(`
|
|
512
530
|
`)[0].slice(0,80)||`Section ${u+1}`,content:l}}).filter(c=>c.content.length>0);let o=e.split(`
|
|
513
531
|
`);if(o.length<=r)return[{title:"Output",content:e}];let s=[],a=Math.max(r-2,1);for(let c=0;c<o.length;c+=a){let u=o.slice(c,c+r);if(u.length===0)break;let l=c+1,d=Math.min(c+u.length,o.length),f=u[0]?.trim().slice(0,80);s.push({title:f||`Lines ${l}-${d}`,content:u.join(`
|
|
514
|
-
`)})}return s}#
|
|
532
|
+
`)})}return s}#U(e,r,n,o){let s=r.length>0?r.join(" > "):"(root)",i=JSON.stringify(e,null,2);if(Buffer.byteLength(i)<=o&&!(typeof e=="object"&&e!==null&&!Array.isArray(e)&&Object.values(e).some(c=>typeof c=="object"&&c!==null))){n.push({title:s,content:i,hasCode:!0});return}if(typeof e=="object"&&e!==null&&!Array.isArray(e)){let a=Object.entries(e);if(a.length>0){for(let[c,u]of a)this.#U(u,[...r,c],n,o);return}n.push({title:s,content:i,hasCode:!0});return}if(Array.isArray(e)){this.#X(e,r,n,o);return}n.push({title:s,content:i,hasCode:!1})}#G(e){if(e.length===0)return null;let r=e[0];if(typeof r!="object"||r===null||Array.isArray(r))return null;let n=["id","name","title","path","slug","key","label"],o=r;for(let s of n)if(s in o&&(typeof o[s]=="string"||typeof o[s]=="number"))return s;return null}#J(e,r,n,o,s){let i=e?`${e} > `:"";if(!s)return r===n?`${i}[${r}]`:`${i}[${r}-${n}]`;let a=c=>String(c[s]);return o.length===1?`${i}${a(o[0])}`:o.length<=3?i+o.map(a).join(", "):`${i}${a(o[0])}\u2026${a(o[o.length-1])}`}#X(e,r,n,o){let s=r.length>0?r.join(" > "):"(root)",i=this.#G(e),a=[],c=0,u=l=>{if(a.length===0)return;let d=this.#J(s,c,l,a,i);n.push({title:d,content:JSON.stringify(a,null,2),hasCode:!0})};for(let l=0;l<e.length;l++){a.push(e[l]);let d=JSON.stringify(a,null,2);Buffer.byteLength(d)>o&&a.length>1&&(a.pop(),u(l-1),a=[e[l]],c=l)}u(c+a.length-1)}#Y(e,r){return e.length===0?r||"Untitled":e.map(n=>n.text).join(" > ")}};function $m(t,e){return t===void 0?e:`${t}::${e}`}Xn();import{readFileSync as RE,realpathSync as zz}from"node:fs";import{resolve as Fi}from"node:path";function $E(t){let e=t.match(/^Bash\((.+)\)$/);return e?e[1]:null}function Lz(t){let e=t.match(/^(\w+)\((.+)\)$/);return e?{tool:e[1],glob:e[2]}:null}function Hz(t){return t.replace(/[.*+?^${}()|[\]\\\/\-]/g,"\\$&")}function PE(t){return t.replace(/[.+?^${}()|[\]\\\/\-]/g,"\\$&").replace(/\*/g,".*")}function Uz(t,e=!1){let r,n=t.indexOf(":");if(n!==-1){let o=t.slice(0,n),s=t.slice(n+1),i=Hz(o),a=PE(s);r=`^${i}(\\s${a})?$`}else r=`^${PE(t)}$`;return new RegExp(r,e?"i":"")}function Fz(t,e=!1){let r="",n=0;for(;n<t.length;)t[n]==="*"&&t[n+1]==="*"?n+2<t.length&&t[n+2]==="/"?(r+="(.*/)?",n+=3):(r+=".*",n+=2):t[n]==="*"?(r+="[^/]*",n++):t[n]==="?"?(r+="[^/]",n++):(r+=t[n].replace(/[.+^${}()|[\]\\\/\-]/g,"\\$&"),n++);return new RegExp(`^${r}$`,e?"i":"")}function Zz(t,e,r=!1){for(let n of e){let o=$E(n);if(o&&Uz(o,r).test(t))return n}return null}function Bz(t){let e=[],r="",n=!1,o=!1,s=!1;for(let i=0;i<t.length;i++){let a=t[i],c=i>0?t[i-1]:"";a==="'"&&!o&&!s&&c!=="\\"?(n=!n,r+=a):a==='"'&&!n&&!s&&c!=="\\"?(o=!o,r+=a):a==="`"&&!n&&!o&&c!=="\\"?(s=!s,r+=a):!n&&!o&&!s?a===";"?(e.push(r.trim()),r=""):a==="|"&&t[i+1]==="|"||a==="&"&&t[i+1]==="&"?(e.push(r.trim()),r="",i++):a==="|"?(e.push(r.trim()),r=""):r+=a:r+=a}return r.trim()&&e.push(r.trim()),e.filter(i=>i.length>0)}function Ah(t){let e;try{e=RE(t,"utf-8")}catch{return null}let r;try{r=JSON.parse(e)}catch{return null}let n=r?.permissions;if(!n||typeof n!="object")return null;let o=s=>Array.isArray(s)?s.filter(i=>typeof i=="string"&&$E(i)!==null):[];return{allow:o(n.allow),deny:o(n.deny),ask:o(n.ask)}}function Nh(t,e){let r=[];if(t){let o=Fi(t,".claude","settings.local.json"),s=Ah(o);s&&r.push(s);let i=Fi(t,".claude","settings.json"),a=Ah(i);a&&r.push(a)}let n=e!==void 0?[e]:Ih();for(let o of n){let s=Ah(o);s&&r.push(s)}return r}function cu(t,e,r){let n=[],o=i=>{let a;try{a=RE(i,"utf-8")}catch{return null}let c;try{c=JSON.parse(a)}catch{return null}let u=c?.permissions?.deny;if(!Array.isArray(u))return[];let l=[];for(let d of u){if(typeof d!="string")continue;let f=Lz(d);f&&f.tool===t&&l.push(f.glob)}return l};if(e){let i=o(Fi(e,".claude","settings.local.json"));i!==null&&n.push(i);let a=o(Fi(e,".claude","settings.json"));a!==null&&n.push(a)}let s=r!==void 0?[r]:Ih();for(let i of s){let a=o(i);a!==null&&n.push(a)}return n}function Dh(t,e,r=process.platform==="win32"){let n=Bz(t);for(let o of n)for(let s of e){let i=Zz(o,s.deny,r);if(i)return{decision:"deny",matchedPattern:i}}return{decision:"allow"}}function uu(t,e,r=process.platform==="win32",n){let o=i=>i.replace(/\\/g,"/"),s=new Set;if(s.add(o(t)),n){let i=Fi(n,t);s.add(o(i));try{s.add(o(zz(i)))}catch{}}for(let i of e)for(let a of i){let c=Fz(o(a),r);for(let u of s)if(c.test(u))return{denied:!0,matchedPattern:a}}return{denied:!1}}var qz={python:[/os\.system\(\s*(['"])(.*?)\1\s*\)/g,/subprocess\.(?:run|call|Popen|check_output|check_call)\(\s*(['"])(.*?)\1/g],javascript:[/exec(?:Sync|File|FileSync)?\(\s*(['"`])(.*?)\1/g,/spawn(?:Sync)?\(\s*(['"`])(.*?)\1/g],typescript:[/exec(?:Sync|File|FileSync)?\(\s*(['"`])(.*?)\1/g,/spawn(?:Sync)?\(\s*(['"`])(.*?)\1/g],ruby:[/system\(\s*(['"])(.*?)\1/g,/`(.*?)`/g],go:[/exec\.Command\(\s*(['"`])(.*?)\1/g],php:[/shell_exec\(\s*(['"`])(.*?)\1/g,/(?:^|[^.])exec\(\s*(['"`])(.*?)\1/g,/(?:^|[^.])system\(\s*(['"`])(.*?)\1/g,/passthru\(\s*(['"`])(.*?)\1/g,/proc_open\(\s*(['"`])(.*?)\1/g],rust:[/Command::new\(\s*(['"`])(.*?)\1/g]};function Vz(t){let e=[],r=/subprocess\.(?:run|call|Popen|check_output|check_call)\(\s*\[([^\]]+)\]/g,n;for(;(n=r.exec(t))!==null;){let s=[...n[1].matchAll(/(['"])(.*?)\1/g)].map(i=>i[2]);s.length>0&&e.push(s.join(" "))}return e}function CE(t,e){let r=qz[e];if(!r&&e!=="python")return[];let n=[];if(r)for(let o of r){o.lastIndex=0;let s;for(;(s=o.exec(t))!==null;){let i=s[s.length-1];i&&n.push(i)}}return e==="python"&&n.push(...Vz(t)),n}jc();function Mh(t){let{language:e,exitCode:r,stdout:n,stderr:o}=t,s=e==="shell"&&r===1&&n.trim().length>0;return{isError:!s,output:s?n:`Exit code: ${r}
|
|
515
533
|
|
|
516
534
|
stdout:
|
|
517
535
|
${n}
|
|
518
536
|
|
|
519
537
|
stderr:
|
|
520
|
-
${o}`}}import{execFileSync as
|
|
521
|
-
`)}for(let
|
|
522
|
-
|
|
523
|
-
`,C),
|
|
524
|
-
|
|
525
|
-
`,
|
|
526
|
-
`)}}return s.slice(0,e)}function
|
|
527
|
-
`)}
|
|
528
|
-
`)}try{let m=
|
|
529
|
-
`)}
|
|
530
|
-
`).slice(0,
|
|
531
|
-
`,1)[0];if(!u||!u.trim())return null;try{let d=JSON.parse(u)?.meta?.cwd;return typeof d!="string"||d.length===0||tu(d)?null:d}catch{return null}}finally{je.closeSync(s)}}catch{return null}}function gE(t){let{env:e,cwd:r,pwd:n,transcriptsRoot:o,transcriptMaxAgeMs:s,nowMs:i,strictPlatform:a,codexHome:c}=t,u=a?[...hh(a),...dz]:pz;for(let l of u){let d=e[l];if(d&&!tu(d))return d}if(o){let l=fz({projectsRoot:o,maxAgeMs:s,nowMs:i});if(l&&!tu(l))return l}if(a==="codex"){let l=mz({codexHome:c,transcriptMaxAgeMs:s,now:i});if(l)return l}return n&&!tu(n)?n:r}Vo();Vo();Cr();Wn();import{execFileSync as hz}from"node:child_process";import{existsSync as Nr,readdirSync as as,statSync as gz}from"node:fs";import{homedir as iu}from"node:os";import{join as Et,sep as yz}from"node:path";function EE(t,e){let r=t.split(".").map(Number),n=e.split(".").map(Number);for(let o=0;o<3;o++){if((r[o]??0)>(n[o]??0))return!0;if((r[o]??0)<(n[o]??0))return!1}return!1}var nu={file:"Files tracked",cwd:"Working directory",rule:"Project rules (CLAUDE.md)",prompt:"Your requests saved",intent:"Session goal",role:"Behavior rules",constraint:"Constraints you set",mcp:"MCP tools called",skill:"Skills used",subagent:"Delegated work",decision:"Your decisions","agent-finding":"Agent insights kept","rejected-approach":"Approaches you rejected","external-ref":"External docs indexed",data:"Data references",git:"Git operations",env:"Environment setup",task:"Tasks in progress",error:"Errors caught",compact:"Compactions weathered",resume:"Sessions resumed cleanly",snapshot:"Snapshots restored",cache:"Cache hits saved",latency:"Slow tools recorded","user-prompt":"Your messages remembered",plan:"Plans drafted","blocked-on":"Blockers logged"},_z={file:"Restored after compact \u2014 no need to re-read",rule:"Your project instructions survive context resets",prompt:"Continues exactly where you left off",decision:"Applied automatically \u2014 won\u2019t ask again",task:"Picks up from where it stopped",error:"Tracked and monitored across compacts",git:"Branch, commit, and repo state preserved",env:"Runtime config carried forward",mcp:"Tool usage patterns remembered",subagent:"Delegation history preserved",skill:"Skill invocations tracked"},cs=class{db;constructor(e){this.db=e}static contextSavingsTotal(e,r){let n=e-r,o=e>0?Math.round(n/e*1e3)/10:0;return{rawBytes:e,contextBytes:r,savedBytes:n,savedPercent:o}}static thinkInCodeComparison(e,r){let n=r>0?Math.round(e/r*10)/10:0;return{fileBytes:e,outputBytes:r,ratio:n}}static toolSavings(e){return e.map(r=>({...r,savedBytes:r.rawBytes-r.contextBytes}))}static sandboxIO(e,r){return{inputBytes:e,outputBytes:r}}getMcpToolUsage(){let e;try{e=this.db.prepare("SELECT data FROM session_events WHERE category = 'mcp_tool_call'").all()}catch{return[]}let r=new Map;for(let o of e){let s;try{s=JSON.parse(o.data)}catch{continue}let i=typeof s.tool_name=="string"?s.tool_name:null;if(!i)continue;let a=r.get(i)??{calls:0,concurrencies:[]};if(a.calls+=1,s.truncated!==!0&&s.params&&typeof s.params=="object"){let c=s.params.concurrency;typeof c=="number"&&Number.isFinite(c)&&c>0&&a.concurrencies.push(c)}r.set(i,a)}let n=[];for(let[o,s]of r){let i=null,a=null;if(s.concurrencies.length>0){let c=[...s.concurrencies].sort((l,d)=>l-d),u=Math.floor(c.length/2);i=c.length%2===0?(c[u-1]+c[u])/2:c[u],a=c[c.length-1]}n.push({tool_name:o,calls:s.calls,median_concurrency:i,max_concurrency:a})}return n.sort((o,s)=>s.calls-o.calls||o.tool_name.localeCompare(s.tool_name)),n}queryAll(e){let n=this.db.prepare("SELECT session_id FROM session_meta ORDER BY started_at DESC LIMIT 1").get()?.session_id??"",o=Object.values(e.bytesReturned).reduce((k,D)=>k+D,0),s=Object.values(e.calls).reduce((k,D)=>k+D,0),i=e.bytesIndexed+e.bytesSandboxed,a=i+o,c=a/Math.max(o,1),u=a>0?Math.round((1-o/a)*100):0,l=new Set([...Object.keys(e.calls),...Object.keys(e.bytesReturned)]),d=Array.from(l).sort().map(k=>({tool:k,calls:e.calls[k]||0,context_kb:Math.round((e.bytesReturned[k]||0)/1024*10)/10,tokens:Math.round((e.bytesReturned[k]||0)/4)})),m=((Date.now()-e.sessionStart)/6e4).toFixed(1),p;if(e.cacheHits>0||e.cacheBytesSaved>0){let k=a+e.cacheBytesSaved,D=k/Math.max(o,1),L=Math.max(0,24-Math.floor((Date.now()-e.sessionStart)/(3600*1e3)));p={hits:e.cacheHits,bytes_saved:e.cacheBytesSaved,ttl_hours_left:L,total_with_cache:k,total_savings_ratio:D}}let h=this.db.prepare("SELECT COUNT(*) as cnt FROM session_events WHERE session_id = ?").get(n).cnt,g=this.db.prepare("SELECT category, COUNT(*) as cnt FROM session_events WHERE session_id = ? GROUP BY category ORDER BY cnt DESC").all(n),v=this.db.prepare("SELECT compact_count FROM session_meta WHERE session_id = ?").get(n)?.compact_count??0,_=this.db.prepare("SELECT event_count, consumed FROM session_resume WHERE session_id = ? ORDER BY created_at DESC LIMIT 1").get(n),b=_?!_.consumed:!1,E=this.db.prepare("SELECT category, type, data FROM session_events WHERE session_id = ? ORDER BY id DESC").all(n),R=new Map;for(let k of E){R.has(k.category)||R.set(k.category,new Set);let D=R.get(k.category);if(D.size<5){let L=k.data;k.category==="file"?L=k.data.split("/").pop()||k.data:(k.category==="prompt"||k.category==="user-prompt")&&(L=L.length>50?L.slice(0,47)+"...":L),L.length>40&&(L=L.slice(0,37)+"..."),D.add(L)}}let N=g.map(k=>({category:k.category,count:k.cnt,label:nu[k.category]||k.category,preview:R.get(k.category)?Array.from(R.get(k.category)).join(", "):"",why:_z[k.category]||"Survives context resets"})),C=this.db.prepare("SELECT COUNT(*) as cnt, COUNT(DISTINCT session_id) as sessions FROM session_events").get(),W=this.db.prepare("SELECT category, COUNT(*) as cnt FROM session_events GROUP BY category ORDER BY cnt DESC").all().filter(k=>k.cnt>0).map(k=>({category:k.category,count:k.cnt,label:nu[k.category]||k.category}));return{savings:{processed_kb:Math.round(a/1024*10)/10,entered_kb:Math.round(o/1024*10)/10,saved_kb:Math.round(i/1024*10)/10,pct:u,savings_ratio:Math.round(c*10)/10,by_tool:d,total_calls:s,total_bytes_returned:o,kept_out:i,total_processed:a},cache:p,session:{id:n,uptime_min:m},continuity:{total_events:h,by_category:N,compact_count:v,resume_ready:b},projectMemory:{total_events:C.cnt,session_count:C.sessions,by_category:W}}}};function vz(t){let e=t?.home??iu();return[["claude-code",[".claude"]],["gemini-cli",[".gemini"]],["antigravity",[".gemini"]],["openclaw",[".openclaw"]],["codex",[".codex"]],["cursor",[".cursor"]],["vscode-copilot",[".vscode"]],["kiro",[".kiro"]],["pi",[".pi"]],["omp",[".omp"]],["qwen-code",[".qwen"]],["kilo",[".config","kilo"]],["opencode",[".config","opencode"]],["zed",[".config","zed"]],["jetbrains-copilot",[".config","JetBrains"]]].map(([n,o])=>{let s=Et(e,...o,"context-mode");return{name:n,sessionsDir:Et(s,"sessions"),contentDir:Et(s,"content")}})}function xz(t){let r=t.replace(/\.md$/i,"").match(/^([a-z]+)/i);return r?r[1].toLowerCase():"other"}function zi(t){let e=St(),r=t?.sessionsDir??Et(e,"context-mode","sessions"),n=t?.memoryRoot??Et(e,"projects"),o=0,s=0,i=0,a=Number.POSITIVE_INFINITY,c=new Set,u={};if(Nr(r)){let m=[];try{m=as(r).filter(p=>p.endsWith(".db"))}catch{}if(m.length>0){let p=null;try{p=t?.loadDatabase?t.loadDatabase():Ye()}catch{}if(p)for(let h of m){let g=Et(r,h);try{let y=new p(g,{readonly:!0});try{let v=y.prepare("SELECT COUNT(*) AS cnt FROM session_events").get(),_=y.prepare("SELECT COUNT(*) AS cnt FROM session_meta").get();o+=v?.cnt??0,s+=_?.cnt??0;try{let b=y.prepare("SELECT category, COUNT(*) AS cnt FROM session_events GROUP BY category").all();for(let E of b)E.category&&(u[E.category]=(u[E.category]??0)+(E.cnt??0))}catch{}try{let b=y.prepare("SELECT COALESCE(SUM(length(snapshot)), 0) AS bytes FROM session_resume WHERE consumed = 1").get();b?.bytes&&(i+=b.bytes)}catch{}try{let b=y.prepare("SELECT MIN(created_at) AS t FROM session_events").get();if(b?.t){let E=b.t.endsWith("Z")?b.t:b.t+"Z",R=Date.parse(E);Number.isFinite(R)&&R<a&&(a=R)}}catch{}try{let b=y.prepare("SELECT DISTINCT project_dir AS p FROM session_events WHERE project_dir != ''").all();for(let E of b)E.p&&c.add(E.p)}catch{}}finally{y.close()}}catch{}}}}let l=0,d=0,f={};if(Nr(n)){let m=[];try{m=as(n).filter(p=>{try{return gz(Et(n,p)).isDirectory()}catch{return!1}})}catch{}for(let p of m){let h=Et(n,p,"memory");if(!Nr(h))continue;let g=[];try{g=as(h).filter(y=>y.endsWith(".md"))}catch{continue}if(g.length!==0){d++,l+=g.length;for(let y of g){let v=xz(y);f[v]=(f[v]??0)+1}}}}return{totalEvents:o,totalSessions:s,autoMemoryCount:l,autoMemoryProjects:d,autoMemoryByPrefix:f,categoryCounts:u,rescueBytes:i,firstEventMs:Number.isFinite(a)?a:0,distinctProjects:c.size}}function wE(t){let e=t.sessionsDir??Et(iu(),".claude","context-mode","sessions"),r=t.sessionId,n={sessionId:r,events:0,dbCount:0,daysAlive:0,snapshotBytes:0,snapshotsConsumed:0,byCategory:[]};if(!r||!Nr(e))return n;let o=[];try{o=as(e).filter(_=>!(!_.endsWith(".db")||t.worktreeHash&&!_.startsWith(t.worktreeHash)))}catch{return n}if(o.length===0)return n;let s=null;try{s=t.loadDatabase?t.loadDatabase():Ye()}catch{return n}if(!s)return n;let i={},a=0,c=0,u=0,l=0,d=Number.POSITIVE_INFINITY,f=0,m=0,p=new Map,h=_=>Math.floor(_/864e5)*864e5;for(let _ of o){let b=Et(e,_),E=!1;try{let R=new s(b,{readonly:!0});try{let N=R.prepare("SELECT category, COUNT(*) AS cnt FROM session_events WHERE session_id = ? GROUP BY category").all(r);for(let M of N)M.category&&(i[M.category]=(i[M.category]??0)+(M.cnt??0),a+=M.cnt??0,E=!0);let C=R.prepare("SELECT MIN(created_at) AS mn, MAX(created_at) AS mx FROM session_events WHERE session_id = ?").get(r);if(C?.mn){let M=Date.parse(C.mn+(C.mn.endsWith("Z")?"":"Z"));Number.isFinite(M)&&M<d&&(d=M)}if(C?.mx){let M=Date.parse(C.mx+(C.mx.endsWith("Z")?"":"Z"));Number.isFinite(M)&&M>f&&(f=M)}try{let M=R.prepare("SELECT strftime('%s', created_at) AS sec, COUNT(*) AS cnt FROM session_events WHERE session_id = ? GROUP BY date(created_at)").all(r);for(let W of M){if(!W.sec)continue;let k=parseInt(W.sec,10)*1e3;if(!Number.isFinite(k))continue;let D=h(k),L=p.get(D)??{count:0,rescueBytes:0};L.count+=W.cnt??0,p.set(D,L)}}catch{}try{let M=R.prepare("SELECT COALESCE(SUM(length(snapshot)), 0) AS bytes, COUNT(*) AS n, MAX(strftime('%s', created_at)) AS lastSec FROM session_resume WHERE session_id = ? AND consumed = 1").get(r);if(M?.bytes&&(u+=M.bytes),M?.n&&(l+=M.n),M?.lastSec){let W=parseInt(M.lastSec,10)*1e3;if(Number.isFinite(W)&&W>m&&(m=W),Number.isFinite(W)&&(M?.bytes??0)>0){let k=h(W),D=p.get(k)??{count:0,rescueBytes:0};D.rescueBytes=Math.max(D.rescueBytes,M.bytes),p.set(k,D)}}}catch{}}finally{R.close()}}catch{}E&&c++}let g=d<f?(f-d)/864e5:0,y=Object.entries(i).filter(([,_])=>_>0).map(([_,b])=>({category:_,count:b,label:nu[_]||_})).sort((_,b)=>b.count-_.count),v=[...p.entries()].sort((_,b)=>_[0]-b[0]).map(([_,b])=>({ms:_,count:b.count,...b.rescueBytes>0?{rescueBytes:b.rescueBytes}:{}}));return{sessionId:r,events:a,dbCount:c,daysAlive:g,snapshotBytes:u,snapshotsConsumed:l,byCategory:y,firstEventMs:Number.isFinite(d)?d:0,lastEventMs:f>0?f:0,lastRescueMs:m>0?m:void 0,byDay:v}}function bz(t,e,r){if(!t||!e||!Nr(e))return 0;let n=null;try{n=r?.loadDatabase?r.loadDatabase():Ye()}catch{return 0}if(!n)return 0;try{let o=new n(e,{readonly:!0});try{let s=o.prepare(`SELECT COALESCE(SUM(LENGTH(content) + LENGTH(title)), 0) AS bytes
|
|
532
|
-
FROM chunks WHERE session_id = ?`).get(t);return Number(s?.bytes??0)}finally{o.close()}}catch{return 0}}function TE(t,e){if(!t||!Nr(t))return 0;let r=null;try{r=e?.loadDatabase?e.loadDatabase():Ye()}catch{return 0}if(!r)return 0;try{let n=new r(t,{readonly:!0});try{let o=n.prepare(`SELECT COALESCE(SUM(LENGTH(content) + LENGTH(title)), 0) AS bytes
|
|
533
|
-
FROM chunks
|
|
538
|
+
${o}`}}import{execFileSync as Wz}from"node:child_process";function Kz(){if(process.platform==="win32")return NaN;let t=process.ppid;if(!t||t<=1)return NaN;try{let e=Wz("ps",["-o","ppid=","-p",String(t)],{encoding:"utf-8",timeout:2e3,stdio:["ignore","pipe","ignore"]}).trim(),r=parseInt(e,10);return Number.isFinite(r)?r:NaN}catch{return NaN}}function Gz(t={}){let e=t.getPpid??(()=>process.ppid),r=t.readGrandparentPpid??Kz,n=e(),o=r();return()=>{let s=e();return!(s!==n||s===0||s===1||!Number.isNaN(o)&&o>1&&r()===1)}}var Jz=Gz();function Xz(t=process.env){let e=t.CONTEXT_MODE_BRIDGE_DEPTH;if(e===void 0)return 3e4;let r=Number.parseInt(e,10);return!Number.isFinite(r)||r<=0?3e4:1e3}function OE(t){let e=t.checkIntervalMs??Xz(),r=t.isParentAlive??Jz,n=!1,o=()=>{n||(n=!0,t.onShutdown())},s=setInterval(()=>{r()||o()},e);s.unref();let i=["SIGTERM","SIGINT"];process.platform!=="win32"&&i.push("SIGHUP");for(let c of i)process.on(c,o);let a=()=>{r()||o()};return process.stdin.isTTY||process.stdin.on("end",a),()=>{n=!0,clearInterval(s);for(let c of i)process.removeListener(c,o);process.stdin.removeListener("end",a)}}function IE(t,e){if(e<=0)return"";if(t.length<=e)return t;let r=e,n=t.charCodeAt(r-1);return n>=55296&&n<=56319&&(r-=1),t.slice(0,r)}Sr();Yo();Sr();import{existsSync as jh,unlinkSync as Yz}from"node:fs";import{join as Zi}from"node:path";var Qz=["","-wal","-shm"];function zh(t,e){try{return Yz(t),e.push(t),!0}catch{return!1}}function lu(t,e){let r=!1;for(let n of Qz)zh(`${t}${n}`,e)&&n===""&&(r=!0);return r}function AE(t){let{projectDir:e,sessionsDir:r,storePath:n,contentDir:o,legacyContentDir:s,contentHash:i,sessionId:a,scope:c}=t,u=[],l=[],d=c??(a?"session":"project");if(d==="session"&&!a)throw new TypeError("purgeSession: scope:'session' requires sessionId. Pass scope:'project' for the legacy whole-project wipe.");if(d==="session"&&a){let x=Gc(e),S=Qe(e),k=Dr(e),R=S===k?[S]:[S,k],$=!1;for(let W of R){let T=Zi(r,`${W}${x}.db`);if(!jh(T))continue;let E=null;try{E=new nr({dbPath:T});let L=E.getEvents(a).length;E.deleteSession(a),L>0&&($=!0)}catch{}finally{try{E?.close()}catch{}}}$&&u.push(`session rows for ${a}`);let C=[];if(n&&jh(n)&&C.push(n),o){let W=Qe(e),T=Dr(e),E=W===T?[W]:[W,T];for(let L of E){let pe=Zi(o,`${L}.db`);jh(pe)&&!C.includes(pe)&&C.push(pe)}}let A=!1;for(let W of C)try{let T=Ye(),E=new T(W,{timeout:3e4});try{let L=E.prepare("SELECT COUNT(*) AS c FROM chunks WHERE session_id = ?").get(a).c;E.prepare("DELETE FROM chunks WHERE session_id = ?").run(a),E.prepare("DELETE FROM chunks_trigram WHERE session_id = ?").run(a),L>0&&(A=!0)}finally{try{E.close()}catch{}}}catch{}return A&&u.push(`FTS5 chunks for ${a}`),{deleted:u,wipedPaths:l}}let f=!1;if(n&&lu(n,l)&&(f=!0),o){let x=Qe(e),S=Dr(e),k=x===S?[x]:[x,S];for(let R of k){let $=Zi(o,`${R}.db`);lu($,l)&&(f=!0)}}if(f&&u.push("knowledge base (FTS5)"),s){if(!i)throw new TypeError("purgeSession: contentHash is required when legacyContentDir is provided");let x=Zi(s,`${i}.db`);lu(x,l)}let h=Gc(e),p=Qe(e),m=Dr(e),g=p===m?[p]:[p,m],y=!1,_=!1;for(let x of g){let S=Zi(r,`${x}${h}`);lu(`${S}.db`,l)&&(y=!0),zh(`${S}-events.md`,l)&&(_=!0),zh(`${S}.cleanup`,l)}return y&&u.push("session events DB"),_&&u.push("session events markdown"),{deleted:u,wipedPaths:l}}Sr();import{existsSync as eL}from"node:fs";function Lh(t,e){try{if(!eL(t))return;let r=new nr({dbPath:t});try{let n=r.getLatestSessionId();if(!n)return;e(r,n)}finally{try{r.close()}catch{}}}catch{}}function NE(t){Lh(t.sessionDbPath,(e,r)=>{e.insertEvent(r,{type:"sandbox-execute",category:"sandbox",priority:1,data:t.toolName,project_dir:"",attribution_source:"server",attribution_confidence:1},"ctx-server",void 0,{bytesReturned:t.bytesReturned})})}function DE(t){Lh(t.sessionDbPath,(e,r)=>{e.insertEvent(r,{type:"index-write",category:"sandbox",priority:1,data:t.source,project_dir:"",attribution_source:"server",attribution_confidence:1},"ctx-server",void 0,{bytesAvoided:t.bytesAvoided})})}function ME(t){Lh(t.sessionDbPath,(e,r)=>{e.insertEvent(r,{type:"cache-hit",category:"cache",priority:1,data:t.source,project_dir:"",attribution_source:"server",attribution_confidence:1},"ctx-server",void 0,{bytesAvoided:t.bytesAvoided})})}Sr();import{existsSync as jE}from"node:fs";function zE(t,e,r){try{if(!jE(t))return;let n=new nr({dbPath:t});try{let o=n.getLatestSessionId();if(!o)return;n.incrementToolCall(o,e,r)}finally{n.close()}}catch{}}function LE(t){try{if(!jE(t))return null;let e=new nr({dbPath:t});try{let r=e.getLatestSessionId();if(!r)return null;let n=e.getToolCallStats(r),o={},s={};for(let[a,c]of Object.entries(n.byTool))o[a]=c.calls,s[a]=c.bytesReturned;let i=Date.now();try{let a=e.getSessionStats(r);if(a?.started_at){let c=Date.parse(`${a.started_at}Z`);Number.isFinite(c)&&c>0&&(i=c)}}catch{}return Object.keys(o).length===0&&Object.keys(s).length===0?{calls:o,bytesReturned:s,sessionStart:i}:{calls:o,bytesReturned:s,sessionStart:i}}finally{e.close()}}catch{return null}}Xn();Sr();import{existsSync as Hh,readFileSync as tL,readdirSync as rL,statSync as nL}from"node:fs";import{join as ds,isAbsolute as oL}from"node:path";var HE=process.env.DEBUG?.includes("context-mode");function FE(t,e=5,r,n,o){let s=[],i=o?.getInstructionFiles()??["CLAUDE.md"],a=o?.getConfigDir(),u=(a?UE(r,a):null)??n??wt(),l=o?.getMemoryDir(r),d=ds(u,"memory"),f=r?ds(d,Qe(r)):d,h=l?UE(r,l):f,p=[];if(r)for(let m of i){let g=ds(r,m);Hh(g)&&p.push({path:g,label:`project/${m}`})}if(u&&u!==r)for(let m of i){let g=ds(u,m);Hh(g)&&p.push({path:g,label:`user/${m}`})}if(h&&Hh(h))try{let m=rL(h).filter(g=>g.endsWith(".md"));for(let g of m)p.push({path:ds(h,g),label:`memory/${g}`})}catch(m){HE&&process.stderr.write(`[ctx] auto-memory dir scan failed: ${m}
|
|
539
|
+
`)}for(let m of p){if(s.length>=e)break;try{let g;try{if(g=nL(m.path),g.size>1e6)continue}catch{continue}let y=tL(m.path,"utf-8"),_=y.toLowerCase();for(let x of t){if(s.length>=e)break;let k=x.toLowerCase().split(/\s+/).filter($=>$.length>=3);if(k.some($=>{try{return new RegExp(`\\b${$.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}\\b`,"i").test(y)}catch{return _.includes($)}})){let $=k.reduce((L,pe)=>{let dt=_.indexOf(pe);return dt>=0&&(L<0||dt<L)?dt:L},-1),C=Math.max(0,$-200),A=Math.min(y.length,$+500),W=y.lastIndexOf(`
|
|
540
|
+
|
|
541
|
+
`,C),T=y.indexOf(`
|
|
542
|
+
|
|
543
|
+
`,A);W>=0&&(C=W+2),T>=0&&(A=T);let E=y.slice(C,A).trim();s.push({title:`[auto-memory] ${m.label}`,content:E,source:m.label,origin:"auto-memory",timestamp:g.mtime.toISOString()});break}}}catch(g){HE&&process.stderr.write(`[ctx] auto-memory file read failed: ${g}
|
|
544
|
+
`)}}return s.slice(0,e)}function UE(t,e){return e?oL(e)||!t?e:ds(t,e):t??""}var du=process.env.DEBUG?.includes("context-mode");function ZE(t){let{query:e,limit:r,store:n,sort:o="relevance",source:s,contentType:i,sessionDB:a,projectDir:c,configDir:u,adapter:l,projectScope:d}=t,f=[],h=new Date().toISOString(),p;if(typeof d=="string"&&a)try{p=new Set(a.getSessionIdsForProject(d))}catch(m){du&&process.stderr.write(`[ctx] getSessionIdsForProject failed: ${m}
|
|
545
|
+
`)}try{let m=n.searchWithFallback(e,r,s,i,"like",p);f.push(...m.map(g=>({title:g.title,content:g.content,source:g.source,origin:"current-session",timestamp:g.timestamp||h,rank:g.rank,matchLayer:g.matchLayer,highlighted:g.highlighted,contentType:g.contentType})))}catch(m){du&&process.stderr.write(`[ctx] ContentStore search failed: ${m}
|
|
546
|
+
`)}if(o==="timeline"){try{if(a){let m=a.searchEvents(e,r,c||"",s);f.push(...m.map(g=>({title:`[${g.category}] ${g.type}`,content:g.data,source:"prior-session",origin:"prior-session",timestamp:g.created_at})))}}catch(m){du&&process.stderr.write(`[ctx] SessionDB search failed: ${m}
|
|
547
|
+
`)}try{let m=FE([e],r,c,u,l);f.push(...m)}catch(m){du&&process.stderr.write(`[ctx] auto-memory search failed: ${m}
|
|
548
|
+
`)}}for(let m of f)m.timestamp&&!m.timestamp.includes("T")&&(m.timestamp=m.timestamp.replace(" ","T")+"Z");return o==="timeline"&&f.sort((m,g)=>(m.timestamp||"").localeCompare(g.timestamp||"")),f.slice(0,r)}function sL(t){if(typeof t=="string"){if(t.trim().length===0)return t;try{let r=JSON.parse(t);if(Array.isArray(r))return r}catch{}return[t]}return t}function BE(t){let e=t?{project:O.string().optional().describe("Project scope. Default (omit): this session's project \u2014 auto-resolved from the host adapter. 'global': span every project in the shared store (cross-project recall). <absolute-path>: scope to that specific project directory.")}:{};return O.object({queries:O.preprocess(sL,O.array(O.string()).optional().describe("Array of search queries. Batch ALL questions in one call.")),limit:O.coerce.number().optional().default(3).describe("Results per query (default: 3)"),source:O.string().optional().describe("Filter to a specific indexed source (partial match)."),contentType:O.enum(["code","prose"]).optional().describe("Filter results by content type: 'code' or 'prose'."),sort:O.enum(["relevance","timeline"]).optional().default("relevance").describe("Sort mode. 'relevance' (default): BM25 ranked, current session only. 'timeline': chronological across current session, prior sessions, and auto-memory."),...e})}function qE(t,e,r){if(e)return t===void 0?r():t==="global"?null:t}var Uh=!!process.env.CONTEXT_MODE_PROJECT_DIR;Nr();co();Nr();function iL(t){let e=[];if(t&&typeof t=="object"){let r=t.command;typeof r=="string"&&e.push(r);let n=t.hooks;if(Array.isArray(n)){for(let o of n)if(o&&typeof o=="object"){let s=o.command;typeof s=="string"&&e.push(s)}}}return e}function aL(t){let e=Dc(t);if(e)return e.scriptPath.endsWith(".mjs")?e.scriptPath:null;let r=t.match(/^\s*node\s+"([^"]+\.mjs)"\s*$/);if(r)return r[1];let n=t.match(/^\s*node\s+(\S+\.mjs)\s*$/);return n?n[1]:null}function VE(t,e){let r=new Set,n=t.generateHookConfig(e);for(let o of Object.values(n))if(Array.isArray(o))for(let s of o)for(let i of iL(s)){let a=aL(i);a&&r.add(a)}return[...r]}Xn();co();import*as Le from"node:fs";import*as WE from"node:os";import*as ps from"node:path";var cL=["CONTEXT_MODE_PROJECT_DIR"],uL=["CLAUDE_PROJECT_DIR","GEMINI_PROJECT_DIR","VSCODE_CWD","OPENCODE_PROJECT_DIR","PI_PROJECT_DIR","IDEA_INITIAL_DIRECTORY","CURSOR_CWD","CONTEXT_MODE_PROJECT_DIR"];function pu(t){return t?/[/\\]\.(claude|codex)[/\\]plugins[/\\](cache|marketplaces)[/\\]/.test(t):!1}function lL(t){if(!Le.existsSync(t.projectsRoot))return;let e,r=0;try{for(let n of Le.readdirSync(t.projectsRoot)){let o=ps.join(t.projectsRoot,n),s;try{s=Le.statSync(o)}catch{continue}if(!s.isDirectory())continue;let i;try{i=Le.readdirSync(o)}catch{continue}for(let a of i){if(!a.endsWith(".jsonl"))continue;let c=ps.join(o,a);try{let u=Le.statSync(c).mtimeMs;u>r&&(r=u,e=c)}catch{}}}}catch{return}if(e&&!(typeof t.maxAgeMs=="number"&&(t.nowMs??Date.now())-r>t.maxAgeMs))try{let n=Le.openSync(e,"r");try{let o=Buffer.alloc(8192),s=Le.readSync(n,o,0,o.length,0),i=o.subarray(0,s).toString("utf-8");for(let a of i.split(`
|
|
549
|
+
`).slice(0,10))if(a.trim())try{let c=JSON.parse(a);if(typeof c.cwd=="string"&&c.cwd.length>0)return c.cwd}catch{}}finally{Le.closeSync(n)}}catch{}}function dL(t){let e=t?.codexHome??process.env.CODEX_HOME??ps.join(WE.homedir(),".codex"),r=ps.join(e,"sessions");if(!Le.existsSync(r))return null;let n=4,o=1e4,s=0,i,a=0,c=(u,l)=>{if(s>=o)return;let d;try{d=Le.readdirSync(u)}catch{return}d.sort().reverse();for(let f of d){if(s>=o)return;s++;let h=ps.join(u,f),p;try{p=Le.statSync(h)}catch{continue}if(p.isDirectory()){l<n&&c(h,l+1);continue}if(!p.isFile()||!f.endsWith(".jsonl"))continue;let m=p.mtimeMs;m>a&&(a=m,i=h)}};try{c(r,0)}catch{return null}if(!i||typeof t?.transcriptMaxAgeMs=="number"&&(t.now??Date.now())-a>t.transcriptMaxAgeMs)return null;try{let u=Le.openSync(i,"r");try{let l=Buffer.alloc(1048576),d=Le.readSync(u,l,0,l.length,0),f=l.subarray(0,d).toString("utf-8");for(let h of f.split(`
|
|
550
|
+
`).slice(0,10))if(h.trim())try{let p=JSON.parse(h),m=p?.meta?.cwd??(p?.type==="session_meta"?p?.payload?.cwd:void 0);if(typeof m!="string"||m.length===0)continue;return pu(m)?null:m}catch{return null}}finally{Le.closeSync(u)}}catch{return null}return null}function KE(t){let{env:e,cwd:r,pwd:n,transcriptsRoot:o,transcriptMaxAgeMs:s,nowMs:i,strictPlatform:a,codexHome:c}=t,u=a?[...Ch(a),...cL]:uL;for(let l of u){let d=e[l];if(d&&!pu(d))return d}if(o){let l=lL({projectsRoot:o,maxAgeMs:s,nowMs:i});if(l&&!pu(l))return l}if(a==="codex"){let l=dL({codexHome:c,transcriptMaxAgeMs:s,now:i});if(l)return l}return n&&!pu(n)?n:r}Yo();Yo();Sr();Xn();import{execFileSync as pL}from"node:child_process";import{existsSync as Lr,readdirSync as fs,statSync as fL}from"node:fs";import{homedir as yu}from"node:os";import{join as Tt,sep as mL}from"node:path";function nw(t,e){let r=t.split(".").map(Number),n=e.split(".").map(Number);for(let o=0;o<3;o++){if((r[o]??0)>(n[o]??0))return!0;if((r[o]??0)<(n[o]??0))return!1}return!1}var mu={file:"Files tracked",cwd:"Working directory",rule:"Project rules (CLAUDE.md)",prompt:"Your requests saved",intent:"Session intent",goal:"Session goal",role:"Behavior rules",constraint:"Constraints you set",mcp:"MCP tools called",skill:"Skills used",subagent:"Delegated work",decision:"Your decisions","agent-finding":"Agent insights kept","rejected-approach":"Approaches you rejected","external-ref":"External docs indexed",data:"Data references",git:"Git operations",env:"Environment setup",task:"Tasks in progress",error:"Errors caught",compact:"Compactions weathered",resume:"Sessions resumed cleanly",snapshot:"Snapshots restored",cache:"Cache hits saved",latency:"Slow tools recorded","user-prompt":"Your messages remembered",plan:"Plans drafted","blocked-on":"Blockers logged"},hL={file:"Restored after compact \u2014 no need to re-read",rule:"Your project instructions survive context resets",prompt:"Continues exactly where you left off",decision:"Applied automatically \u2014 won\u2019t ask again",task:"Picks up from where it stopped",error:"Tracked and monitored across compacts",git:"Branch, commit, and repo state preserved",env:"Runtime config carried forward",mcp:"Tool usage patterns remembered",subagent:"Delegation history preserved",skill:"Skill invocations tracked"},ms=class{db;constructor(e){this.db=e}static contextSavingsTotal(e,r){let n=e-r,o=e>0?Math.round(n/e*1e3)/10:0;return{rawBytes:e,contextBytes:r,savedBytes:n,savedPercent:o}}static thinkInCodeComparison(e,r){let n=r>0?Math.round(e/r*10)/10:0;return{fileBytes:e,outputBytes:r,ratio:n}}static toolSavings(e){return e.map(r=>({...r,savedBytes:r.rawBytes-r.contextBytes}))}static sandboxIO(e,r){return{inputBytes:e,outputBytes:r}}getMcpToolUsage(){let e;try{e=this.db.prepare("SELECT data FROM session_events WHERE category = 'mcp_tool_call'").all()}catch{return[]}let r=new Map;for(let o of e){let s;try{s=JSON.parse(o.data)}catch{continue}let i=typeof s.tool_name=="string"?s.tool_name:null;if(!i)continue;let a=r.get(i)??{calls:0,concurrencies:[]};if(a.calls+=1,s.truncated!==!0&&s.params&&typeof s.params=="object"){let c=s.params.concurrency;typeof c=="number"&&Number.isFinite(c)&&c>0&&a.concurrencies.push(c)}r.set(i,a)}let n=[];for(let[o,s]of r){let i=null,a=null;if(s.concurrencies.length>0){s.concurrencies.sort((l,d)=>l-d);let c=s.concurrencies,u=Math.floor(c.length/2);i=c.length%2===0?(c[u-1]+c[u])/2:c[u],a=c[c.length-1]}n.push({tool_name:o,calls:s.calls,median_concurrency:i,max_concurrency:a})}return n.sort((o,s)=>s.calls-o.calls||o.tool_name.localeCompare(s.tool_name)),n}queryAll(e){let n=this.db.prepare("SELECT session_id FROM session_meta ORDER BY started_at DESC LIMIT 1").get()?.session_id??"",o=Object.values(e.bytesReturned).reduce((E,L)=>E+L,0),s=Object.values(e.calls).reduce((E,L)=>E+L,0),i=e.bytesIndexed+e.bytesSandboxed,a=i+o,c=a/Math.max(o,1),u=a>0?Math.round((1-o/a)*100):0,l=new Set([...Object.keys(e.calls),...Object.keys(e.bytesReturned)]),d=Array.from(l).sort().map(E=>({tool:E,calls:e.calls[E]||0,context_kb:Math.round((e.bytesReturned[E]||0)/1024*10)/10,tokens:Math.round((e.bytesReturned[E]||0)/4)})),h=((Date.now()-e.sessionStart)/6e4).toFixed(1),p,m=e.cacheMisses??0;if(e.cacheHits>0||e.cacheBytesSaved>0||m>0){let E=a+e.cacheBytesSaved,L=E/Math.max(o,1),pe=Math.max(0,24-Math.floor((Date.now()-e.sessionStart)/(3600*1e3))),dt=e.cacheHits+m,hn=dt>0?e.cacheHits/dt:0;p={hits:e.cacheHits,misses:m,hit_rate:hn,bytes_saved:e.cacheBytesSaved,ttl_hours_left:pe,total_with_cache:E,total_savings_ratio:L}}let g=this.db.prepare("SELECT COUNT(*) as cnt FROM session_events WHERE session_id = ?").get(n).cnt,y=this.db.prepare("SELECT category, COUNT(*) as cnt FROM session_events WHERE session_id = ? GROUP BY category ORDER BY cnt DESC").all(n),x=this.db.prepare("SELECT compact_count FROM session_meta WHERE session_id = ?").get(n)?.compact_count??0,S=this.db.prepare("SELECT event_count, consumed FROM session_resume WHERE session_id = ? ORDER BY created_at DESC LIMIT 1").get(n),k=S?!S.consumed:!1,R=this.db.prepare("SELECT category, type, data FROM session_events WHERE session_id = ? ORDER BY id DESC").all(n),$=new Map;for(let E of R){$.has(E.category)||$.set(E.category,new Set);let L=$.get(E.category);if(L.size<5){let pe=E.data;E.category==="file"?pe=E.data.split("/").pop()||E.data:(E.category==="prompt"||E.category==="user-prompt")&&(pe=pe.length>50?pe.slice(0,47)+"...":pe),pe.length>40&&(pe=pe.slice(0,37)+"..."),L.add(pe)}}let C=y.map(E=>({category:E.category,count:E.cnt,label:mu[E.category]||E.category,preview:$.get(E.category)?Array.from($.get(E.category)).join(", "):"",why:hL[E.category]||"Survives context resets"})),A=this.db.prepare("SELECT COUNT(*) as cnt, COUNT(DISTINCT session_id) as sessions FROM session_events").get(),T=this.db.prepare("SELECT category, COUNT(*) as cnt FROM session_events GROUP BY category ORDER BY cnt DESC").all().filter(E=>E.cnt>0).map(E=>({category:E.category,count:E.cnt,label:mu[E.category]||E.category}));return{savings:{processed_kb:Math.round(a/1024*10)/10,entered_kb:Math.round(o/1024*10)/10,saved_kb:Math.round(i/1024*10)/10,pct:u,savings_ratio:Math.round(c*10)/10,by_tool:d,total_calls:s,total_bytes_returned:o,kept_out:i,total_processed:a},cache:p,session:{id:n,uptime_min:h},continuity:{total_events:g,by_category:C,compact_count:x,resume_ready:k},projectMemory:{total_events:A.cnt,session_count:A.sessions,by_category:T}}}};function gL(t){let e=t?.home??yu();return[["claude-code",[".claude"]],["gemini-cli",[".gemini"]],["antigravity",[".gemini"]],["openclaw",[".openclaw"]],["codex",[".codex"]],["cursor",[".cursor"]],["vscode-copilot",[".vscode"]],["kiro",[".kiro"]],["pi",[".pi"]],["omp",[".omp"]],["qwen-code",[".qwen"]],["kilo",[".config","kilo"]],["opencode",[".config","opencode"]],["zed",[".config","zed"]],["jetbrains-copilot",[".config","JetBrains"]]].map(([n,o])=>{let s=Tt(e,...o,"context-mode");return{name:n,sessionsDir:Tt(s,"sessions"),contentDir:Tt(s,"content")}})}function yL(t){let r=t.replace(/\.md$/i,"").match(/^([a-z]+)/i);return r?r[1].toLowerCase():"other"}function Bi(t){let e=wt(),r=t?.sessionsDir??Tt(e,"context-mode","sessions"),n=t?.memoryRoot??Tt(e,"projects"),o=0,s=0,i=0,a=Number.POSITIVE_INFINITY,c=new Set,u={};if(Lr(r)){let h=[];try{h=fs(r).filter(p=>p.endsWith(".db"))}catch{}if(h.length>0){let p=null;try{p=t?.loadDatabase?t.loadDatabase():Ye()}catch{}if(p)for(let m of h){let g=Tt(r,m);try{let y=new p(g,{readonly:!0});try{let _=y.prepare("SELECT COUNT(*) AS cnt FROM session_events").get(),x=y.prepare("SELECT COUNT(*) AS cnt FROM session_meta").get();o+=_?.cnt??0,s+=x?.cnt??0;try{let S=y.prepare("SELECT category, COUNT(*) AS cnt FROM session_events GROUP BY category").all();for(let k of S)k.category&&(u[k.category]=(u[k.category]??0)+(k.cnt??0))}catch{}try{let S=y.prepare("SELECT COALESCE(SUM(length(snapshot)), 0) AS bytes FROM session_resume WHERE consumed = 1").get();S?.bytes&&(i+=S.bytes)}catch{}try{let S=y.prepare("SELECT MIN(created_at) AS t FROM session_events").get();if(S?.t){let k=S.t.endsWith("Z")?S.t:S.t+"Z",R=Date.parse(k);Number.isFinite(R)&&R<a&&(a=R)}}catch{}try{let S=y.prepare("SELECT DISTINCT project_dir AS p FROM session_events WHERE project_dir != ''").all();for(let k of S)k.p&&c.add(k.p)}catch{}}finally{y.close()}}catch{}}}}let l=0,d=0,f={};if(Lr(n)){let h=[];try{h=fs(n).filter(p=>{try{return fL(Tt(n,p)).isDirectory()}catch{return!1}})}catch{}for(let p of h){let m=Tt(n,p,"memory");if(!Lr(m))continue;let g=[];try{g=fs(m).filter(y=>y.endsWith(".md"))}catch{continue}if(g.length!==0){d++,l+=g.length;for(let y of g){let _=yL(y);f[_]=(f[_]??0)+1}}}}return{totalEvents:o,totalSessions:s,autoMemoryCount:l,autoMemoryProjects:d,autoMemoryByPrefix:f,categoryCounts:u,rescueBytes:i,firstEventMs:Number.isFinite(a)?a:0,distinctProjects:c.size}}function ow(t){let e=t.sessionsDir??Tt(yu(),".claude","context-mode","sessions"),r=t.sessionId,n={sessionId:r,events:0,dbCount:0,daysAlive:0,snapshotBytes:0,snapshotsConsumed:0,byCategory:[]};if(!r||!Lr(e))return n;let o=[];try{o=fs(e).filter(x=>!(!x.endsWith(".db")||t.worktreeHash&&!x.startsWith(t.worktreeHash)))}catch{return n}if(o.length===0)return n;let s=null;try{s=t.loadDatabase?t.loadDatabase():Ye()}catch{return n}if(!s)return n;let i={},a=0,c=0,u=0,l=0,d=Number.POSITIVE_INFINITY,f=0,h=0,p=new Map,m=x=>Math.floor(x/864e5)*864e5;for(let x of o){let S=Tt(e,x),k=!1;try{let R=new s(S,{readonly:!0});try{let $=R.prepare("SELECT category, COUNT(*) AS cnt FROM session_events WHERE session_id = ? GROUP BY category").all(r);for(let A of $)A.category&&(i[A.category]=(i[A.category]??0)+(A.cnt??0),a+=A.cnt??0,k=!0);let C=R.prepare("SELECT MIN(created_at) AS mn, MAX(created_at) AS mx FROM session_events WHERE session_id = ?").get(r);if(C?.mn){let A=Date.parse(C.mn+(C.mn.endsWith("Z")?"":"Z"));Number.isFinite(A)&&A<d&&(d=A)}if(C?.mx){let A=Date.parse(C.mx+(C.mx.endsWith("Z")?"":"Z"));Number.isFinite(A)&&A>f&&(f=A)}try{let A=R.prepare("SELECT strftime('%s', created_at) AS sec, COUNT(*) AS cnt FROM session_events WHERE session_id = ? GROUP BY date(created_at)").all(r);for(let W of A){if(!W.sec)continue;let T=parseInt(W.sec,10)*1e3;if(!Number.isFinite(T))continue;let E=m(T),L=p.get(E)??{count:0,rescueBytes:0};L.count+=W.cnt??0,p.set(E,L)}}catch{}try{let A=R.prepare("SELECT COALESCE(SUM(length(snapshot)), 0) AS bytes, COUNT(*) AS n, MAX(strftime('%s', created_at)) AS lastSec FROM session_resume WHERE session_id = ? AND consumed = 1").get(r);if(A?.bytes&&(u+=A.bytes),A?.n&&(l+=A.n),A?.lastSec){let W=parseInt(A.lastSec,10)*1e3;if(Number.isFinite(W)&&W>h&&(h=W),Number.isFinite(W)&&(A?.bytes??0)>0){let T=m(W),E=p.get(T)??{count:0,rescueBytes:0};E.rescueBytes=Math.max(E.rescueBytes,A.bytes),p.set(T,E)}}}catch{}}finally{R.close()}}catch{}k&&c++}let g=d<f?(f-d)/864e5:0,y=Object.entries(i).filter(([,x])=>x>0).map(([x,S])=>({category:x,count:S,label:mu[x]||x})).sort((x,S)=>S.count-x.count),_=[...p.entries()].sort((x,S)=>x[0]-S[0]).map(([x,S])=>({ms:x,count:S.count,...S.rescueBytes>0?{rescueBytes:S.rescueBytes}:{}}));return{sessionId:r,events:a,dbCount:c,daysAlive:g,snapshotBytes:u,snapshotsConsumed:l,byCategory:y,firstEventMs:Number.isFinite(d)?d:0,lastEventMs:f>0?f:0,lastRescueMs:h>0?h:void 0,byDay:_}}function _L(t,e,r){if(!t||!e||!Lr(e))return 0;let n=null;try{n=r?.loadDatabase?r.loadDatabase():Ye()}catch{return 0}if(!n)return 0;try{let o=new n(e,{readonly:!0});try{let s=o.prepare(`SELECT COALESCE(SUM(LENGTH(content) + LENGTH(title)), 0) AS bytes
|
|
551
|
+
FROM chunks WHERE session_id = ?`).get(t);return Number(s?.bytes??0)}finally{o.close()}}catch{return 0}}function sw(t,e){if(!t||!Lr(t))return 0;let r=null;try{r=e?.loadDatabase?e.loadDatabase():Ye()}catch{return 0}if(!r)return 0;try{let n=new r(t,{readonly:!0});try{let o=n.prepare(`SELECT COALESCE(SUM(LENGTH(content) + LENGTH(title)), 0) AS bytes
|
|
552
|
+
FROM chunks`).get();return Number(o?.bytes??0)}finally{n.close()}}catch{return 0}}function qi(t){let e={eventDataBytes:0,bytesAvoided:0,bytesReturned:0,snapshotBytes:0,contentBytes:0,totalSavedTokens:0},r=t.sessionsDir??Tt(yu(),".claude","context-mode","sessions");if(!Lr(r))return e;let n=[];try{n=fs(r).filter(d=>!(!d.endsWith(".db")||t.worktreeHash&&!d.startsWith(t.worktreeHash)))}catch{return e}if(n.length===0)return e;let o=null;try{o=t.loadDatabase?t.loadDatabase():Ye()}catch{return e}if(!o)return e;let s=0,i=0,a=0,c=0;for(let d of n){let f=Tt(r,d);Jb(f,o);try{let h=new o(f,{readonly:!0});try{if(t.sessionId){let p=h.prepare(`SELECT
|
|
534
553
|
COALESCE(SUM(LENGTH(data)), 0) AS data_bytes,
|
|
535
554
|
COALESCE(SUM(bytes_avoided), 0) AS bytes_avoided,
|
|
536
555
|
COALESCE(SUM(bytes_returned), 0) AS bytes_returned
|
|
537
|
-
FROM session_events WHERE session_id = ?`).get(t.sessionId);p&&(s+=Number(p.data_bytes??0),i+=Number(p.bytes_avoided??0),a+=Number(p.bytes_returned??0));try{let h
|
|
556
|
+
FROM session_events WHERE session_id = ?`).get(t.sessionId);p&&(s+=Number(p.data_bytes??0),i+=Number(p.bytes_avoided??0),a+=Number(p.bytes_returned??0));try{let m=h.prepare("SELECT COALESCE(SUM(LENGTH(snapshot)), 0) AS bytes FROM session_resume WHERE session_id = ?").get(t.sessionId);m?.bytes&&(c+=Number(m.bytes))}catch{}}else if(t.projectDir){let p=h.prepare(`SELECT
|
|
538
557
|
COALESCE(SUM(LENGTH(data)), 0) AS data_bytes,
|
|
539
558
|
COALESCE(SUM(bytes_avoided), 0) AS bytes_avoided,
|
|
540
559
|
COALESCE(SUM(bytes_returned), 0) AS bytes_returned
|
|
541
560
|
FROM session_events
|
|
542
561
|
WHERE session_id IN (
|
|
543
562
|
SELECT session_id FROM session_meta WHERE project_dir = ?
|
|
544
|
-
)`).get(t.projectDir);p&&(s+=Number(p.data_bytes??0),i+=Number(p.bytes_avoided??0),a+=Number(p.bytes_returned??0));try{let h
|
|
563
|
+
)`).get(t.projectDir);p&&(s+=Number(p.data_bytes??0),i+=Number(p.bytes_avoided??0),a+=Number(p.bytes_returned??0));try{let m=h.prepare(`SELECT COALESCE(SUM(LENGTH(snapshot)), 0) AS bytes
|
|
545
564
|
FROM session_resume
|
|
546
565
|
WHERE session_id IN (
|
|
547
566
|
SELECT session_id FROM session_meta WHERE project_dir = ?
|
|
548
|
-
)`).get(t.projectDir);
|
|
567
|
+
)`).get(t.projectDir);m?.bytes&&(c+=Number(m.bytes))}catch{}}else{let p=h.prepare(`SELECT
|
|
549
568
|
COALESCE(SUM(LENGTH(data)), 0) AS data_bytes,
|
|
550
569
|
COALESCE(SUM(bytes_avoided), 0) AS bytes_avoided,
|
|
551
570
|
COALESCE(SUM(bytes_returned), 0) AS bytes_returned
|
|
552
|
-
FROM session_events`).get();p&&(s+=Number(p.data_bytes??0),i+=Number(p.bytes_avoided??0),a+=Number(p.bytes_returned??0));try{let h=m.prepare("SELECT COALESCE(SUM(LENGTH(snapshot)), 0) AS bytes FROM session_resume").get();h?.bytes&&(c+=Number(h.bytes))}catch{}}}finally{m.close()}}catch{}}let u=0;t.sessionId&&t.contentDbPath&&(u=bz(t.sessionId,t.contentDbPath,{loadDatabase:t.loadDatabase}),i+=u);let l=Math.floor((s+i+c)/4);return{eventDataBytes:s,bytesAvoided:i,bytesReturned:a,snapshotBytes:c,contentBytes:u,totalSavedTokens:l}}var Sz={minEvents:100,minProjects:5,recencyMs:30*864e5,minAvgBytes:50};function kz(t,e,r){let n={name:t.name,eventCount:0,sessionCount:0,dataBytes:0,rescueBytes:0,contentBytes:0,uuidConvs:0,projectDirs:[],firstMs:Number.POSITIVE_INFINITY,lastMs:0,isReal:!1};if(!Nr(t.sessionsDir))return n;let o=[];try{o=as(t.sessionsDir).filter(l=>l.endsWith(".db"))}catch{return n}if(o.length===0)return n;let s=null;try{s=e()}catch{return n}if(!s)return n;let i=new Set,a=new Set;for(let l of o){let d=Et(t.sessionsDir,l);try{let f=new s(d,{readonly:!0});try{let m=f.prepare("SELECT COUNT(*) AS cnt, COALESCE(SUM(LENGTH(data)), 0) AS bytes FROM session_events").get();m&&(n.eventCount+=Number(m.cnt??0),n.dataBytes+=Number(m.bytes??0));try{let p=f.prepare("SELECT COUNT(*) AS cnt FROM session_meta").get();n.sessionCount+=Number(p?.cnt??0)}catch{}try{let p=f.prepare("SELECT COALESCE(SUM(length(snapshot)), 0) AS bytes FROM session_resume WHERE consumed = 1").get();p?.bytes&&(n.rescueBytes+=Number(p.bytes))}catch{}try{let p=f.prepare("SELECT MIN(created_at) AS mn, MAX(created_at) AS mx FROM session_events").get();if(p?.mn){let h=Date.parse(p.mn+(p.mn.endsWith("Z")?"":"Z"));Number.isFinite(h)&&h<n.firstMs&&(n.firstMs=h)}if(p?.mx){let h=Date.parse(p.mx+(p.mx.endsWith("Z")?"":"Z"));Number.isFinite(h)&&h>n.lastMs&&(n.lastMs=h)}}catch{}try{let p=f.prepare("SELECT DISTINCT project_dir AS p FROM session_events WHERE project_dir != ''").all();for(let h of p)h.p&&i.add(h.p)}catch{}try{let p=f.prepare("SELECT DISTINCT session_id AS s FROM session_events").all();for(let h of p)h.s&&a.add(h.s)}catch{}}finally{f.close()}}catch{}}n.projectDirs=Array.from(i),n.uuidConvs=a.size;let c=n.eventCount>0?n.dataBytes/n.eventCount:0,u=n.lastMs>0&&r.nowMs-n.lastMs<=r.recencyMs;return n.isReal=n.eventCount>=r.minEvents&&i.size>=r.minProjects&&u&&c>=r.minAvgBytes,n}function au(t){let e=vz({home:t?.home}),r=t?.loadDatabase??Ye,n={...Sz,...t?.filter??{},nowMs:t?.filter?.nowMs??Date.now()},o=[],s=0,i=0,a=0;for(let c of e){if(!Nr(c.sessionsDir))continue;let u=kz(c,r,n);o.push(u),s+=u.eventCount,i+=u.sessionCount,a+=u.dataBytes+u.rescueBytes}return{totalEvents:s,totalSessions:i,totalBytes:a,perAdapter:o}}var RE={project:"What you're building",feedback:"How you work",user:"Who you are",reference:"Where to look",memory:"Long-term context",other:"Other notes"},Ez={"claude-code":"Claude Code","gemini-cli":"Gemini CLI",antigravity:"Antigravity",openclaw:"Openclaw",codex:"Codex CLI",cursor:"Cursor","vscode-copilot":"VS Code Copilot",kiro:"Kiro",pi:"Pi",omp:"OMP","qwen-code":"Qwen Code",kilo:"Kilo",opencode:"OpenCode",zed:"Zed","jetbrains-copilot":"JetBrains"};function ou(t){return Ez[t]??t}function Qe(t){if(!Number.isFinite(t)||t<=0)return"0 B";if(t<1024)return`${Math.round(t)} B`;let e=t/1024;if(e<1024)return e<100?`${e.toFixed(1)} KB`:`${Math.round(e)} KB`;let r=e/1024;if(r<1024)return r<100?`${r.toFixed(1)} MB`:`${Math.round(r)} MB`;let n=r/1024;return n<100?`${n.toFixed(2)} GB`:`${n.toFixed(1)} GB`}function wz(t){let e=parseFloat(t);if(isNaN(e)||e<1)return"< 1 min";if(e<60)return`${Math.round(e)} min`;let r=Math.floor(e/60),n=Math.round(e%60);return n>0?`${r}h ${n}m`:`${r}h`}function ru(t){if(!t)return!1;try{return Intl.DateTimeFormat.supportedLocalesOf(t).length===0?!1:(new Intl.DateTimeFormat(t),!0)}catch{return!1}}function Tz(){let t=process.env??{},e=t.CONTEXT_MODE_LOCALE??"";if(e&&!ru(e)&&(e=""),!e){if(process.platform==="darwin"){try{let n=hz("defaults",["read","-g","AppleLocale"],{encoding:"utf8",timeout:500}).trim();n&&(e=n.replace(/_/g,"-"))}catch{}e&&!ru(e)&&(e="")}if(!e&&(t.LC_TIME||t.LANG)){let n=(t.LC_TIME||t.LANG||"").split(".")[0];n&&(e=n.replace(/_/g,"-")),e&&!ru(e)&&(e="")}if(!e)try{e=new Intl.DateTimeFormat().resolvedOptions().locale}catch{e="en-US"}}let r=t.CONTEXT_MODE_TZ??"";if(!r)try{r=new Intl.DateTimeFormat().resolvedOptions().timeZone}catch{r="UTC"}return ru(e)||(e="en-US"),{locale:e,tz:r||"UTC"}}function yE(t){let e=iu();return e?t===e?"~":t.startsWith(e+yz)?"~"+t.slice(e.length):t:t}function Rz(t,e,r){if(!Number.isFinite(e)||e<=0)return[];let n=e*15/1e6,o=(h,g=2)=>h.toFixed(g),s=Math.round(n/20),i=(n/200).toFixed(1),a=Math.round(n/73.67),c=Math.round(n*10),u=r>0?Math.round(n*10/r*365):0,l=(e*3/1e6).toFixed(2),d=(e*2.5/1e6).toFixed(2),f=(e*1.25/1e6).toFixed(2),m=(e*.8/1e6).toFixed(2),p=[];return p.push(` $${o(n)} of Opus 4 tokens your team didn't burn.`),p.push(` context-mode kept ${Qe(t)} out of context \u2014 that's ${s} months of Cursor Pro paid for itself.`),c>0&&u>0&&(p.push(""),p.push(` Scale across a 10-dev team and that's ~$${u.toLocaleString("en-US")}/year saved.`)),p.push(""),p.push(" (Opus rates shown for context. On cheaper models the dollar number drops; the savings ratio holds.)"),p}function Pz(t){let{conversation:e,lifetime:r,multiAdapter:n,realBytes:o,cwd:s,locale:i,tz:a,now:c,version:u,latestVersion:l}=t,d=[],f=e.events*SE,m=Math.round((e.snapshotBytes??0)/4),p=f+m,h=o?.conversation?.totalSavedTokens??0,g=Math.max(p,h),y=(r?.totalEvents??0)*SE,v=Math.round((r?.rescueBytes??0)/4),_=y+v,b=o?.lifetime?.totalSavedTokens??0,E=Math.max(_,b),R=o?.lifetime?.bytesReturned??0,N=o?.lifetime?.bytesAvoided??0,C=R+N>0?Math.max(1,Math.floor(R/4)):Math.max(1,Math.round(E*.02)),M=n?.totalBytes&&n.totalBytes>0?n.totalBytes:E*4,W=o?.conversation?o.conversation.eventDataBytes+o.conversation.bytesAvoided+o.conversation.snapshotBytes:g*4,k=e.daysAlive>=1?`${e.daysAlive.toFixed(1)} days alive \xB7 still going`:`${Math.max(1,Math.round(e.daysAlive*24))} hr alive \xB7 still going`,D=r?.firstEventMs??n?.perAdapter?.[0]?.firstMs??0,L=D>0?Math.max(1,Math.round((c-D)/864e5)):0,qe=n?.totalSessions??r?.totalSessions??1,yr=n?.perAdapter.filter(De=>De.isReal).length??0,fs;if(n&&yr>=2)fs=`across ${yr} AI tools`;else if(n&&yr===1){let De=n.perAdapter.find(Ft=>Ft.isReal);fs=`in ${De?ou(De.name):"Claude Code"}`}else fs="in Claude Code";L>0?d.push(` Across ${L} days you ran ${rr(qe)} conversations ${fs}.`):d.push(` You ran ${rr(qe)} conversations ${fs}.`);let GE=L>0?M/L:0;d.push(` context-mode kept ${Qe(M)} out of your context window \u2014 about ${Qe(GE)} every single day.`),d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 1. Where you are now \u2500\u2500\u2500"),d.push("");let zh=e.firstEventMs&&e.firstEventMs>0?_E(e.firstEventMs,i,a):"";if(zh?d.push(` This conversation started ${zh} in ${yE(s)}.`):d.push(` This conversation lives in ${yE(s)}.`),d.push(` ${k}.`),e.snapshotsConsumed>0&&e.snapshotBytes>0){let De=e.lastRescueMs&&e.lastRescueMs>0?_E(e.lastRescueMs,i,a):"",Ft=Math.round(e.snapshotBytes/1024);De?d.push(` On ${De}, /compact fired \u2014 ${Ft} KB rescued from snapshot.`):d.push(` /compact fired \u2014 ${Ft} KB rescued from snapshot.`),d.push(" Without that, you'd be re-explaining everything to a blank model right now.")}d.push("");let Lh=o?.conversation,Uh=Lh?.bytesAvoided??0,ku=Lh?.bytesReturned??0;if(Uh+ku===0)d.push(" No measurable redirect activity captured yet \u2014 bars will appear once context-mode diverts its first payload."),d.push("");else{let De=Uh+ku,Ft=Math.max(1,ku),Zt=Math.max(1,Math.floor(De/4)),_r=Math.max(1,Math.floor(Ft/4)),Eu=un(Zt,Zt,32),ew=un(_r,Zt,32),tw=(1-_r/Zt)*100,rw=Math.max(1,Math.round(Zt/_r));d.push(` Without context-mode ${Qe(De).padStart(8)} ${Eu} ${rr(Zt).padStart(7)} tokens`),d.push(` With context-mode ${Qe(Ft).padStart(8)} ${ew} ${rr(_r).padStart(7)} tokens`),d.push(` ${tw.toFixed(0)}% kept out of context \xB7 your AI ran ${rw}\xD7 longer before /compact fired`),d.push("")}if(e.byDay&&e.byDay.length>0){let De=e.lastEventMs&&e.firstEventMs?Math.max(1,Math.round((e.lastEventMs-e.firstEventMs)/864e5)+1):e.byDay.length;d.push(` How that ${Qe(W)} built up \u2014 ${De} days, ${e.byDay.length} active:`),d.push(""),d.push(...Cz(e.byDay,i,a))}d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 2. What this chat captured (used when you --continue or /resume here) \u2500\u2500\u2500"),d.push("");let JE=e.byCategory.reduce((De,Ft)=>De+Ft.count,0).toLocaleString(i);d.push(` ${JE} things \u2014 files, errors, decisions, agent runs:`),d.push("");let XE=e.byCategory[0]?.count??1;for(let De of e.byCategory)d.push(` ${De.label.padEnd(26)} ${String(De.count).padStart(5)} ${un(De.count,XE,28)}`);d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 3. The scope, getting wider \u2500\u2500\u2500"),d.push("");let Hh=e.firstEventMs&&e.firstEventMs>0?new Intl.DateTimeFormat(i,{timeZone:a,year:"numeric",month:"short",day:"numeric"}).format(new Date(e.firstEventMs)):"",Fh=D>0?new Intl.DateTimeFormat(i,{timeZone:a,year:"numeric",month:"short",day:"numeric"}).format(new Date(D)):"",Zh=r?.distinctProjects??0,YE=r?.totalEvents??n?.totalEvents??0;if(d.push(` This chat: ${Qe(W)} kept out \xB7 ${e.events.toLocaleString(i)} captures${Hh?` \xB7 started ${Hh}`:""}.`),d.push(` All your work: ${Qe(M)} kept out \xB7 ${YE.toLocaleString(i)} captures across ${Zh} project${Zh===1?"":"s"}${Fh?` \xB7 since ${Fh}`:""}.`),d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 4. The bottom line \u2500\u2500\u2500"),d.push(""),d.push(...Rz(M,E,L)),d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 5. What context-mode learned about how you work \u2500\u2500\u2500"),d.push(""),r&&r.autoMemoryCount>0){d.push(` ${r.autoMemoryCount} preferences picked up across ${r.autoMemoryProjects} project${r.autoMemoryProjects===1?"":"s"}:`);let De=Object.entries(r.autoMemoryByPrefix).sort((Zt,_r)=>_r[1]-Zt[1]),Ft=De.length>0?De[0][1]:1;for(let[Zt,_r]of De){let Eu=RE[Zt]??Zt;d.push(` ${Eu.padEnd(26)} ${String(_r).padStart(2)} ${un(_r,Ft,20)}`)}}else d.push(" No preferences learned yet \u2014 context-mode picks them up automatically.");d.push(""),d.push(""),d.push(" Your AI talks less, remembers more, costs less."),d.push(` Locale ${i} \xB7 timezone ${a} \xB7 pricing examples for illustration only.`),d.push("");let QE=u?`v${u}`:"context-mode";return d.push(` ${QE}`),u&&l&&l!=="unknown"&&EE(l,u)&&d.push(` Update available: v${u} -> v${l} | ctx_upgrade`),$z(d)}function $z(t){let e=[],r=0;for(let n of t)n===""?(r++,r<=2&&e.push(n)):(r=0,e.push(n));for(;e.length>0&&e[e.length-1]==="";)e.pop();return e}function Cz(t,e,r){if(t.length===0)return[];let n=[...t].sort((f,m)=>f.ms-m.ms),o=n[0],s=n[n.length-1],i=Math.max(1,s.ms-o.ms),a=n[0];for(let f of n)f.count>a.count&&(a=f);let c=56,u=Array.from({length:c},()=>"\u2500");for(let f of n){let m=Math.round((f.ms-o.ms)/i*(c-1)),p="\u25CF";f===a&&(p="\u2588"),(f.rescueBytes??0)>0&&(p="\u25C6"),u[m]=p}let l=f=>{let m=new Intl.DateTimeFormat(e,{timeZone:r,month:"short",day:"numeric"}).formatToParts(new Date(f)),p=(m.find(g=>g.type==="month")?.value??"").toLowerCase(),h=m.find(g=>g.type==="day")?.value??"";return`${p} ${h}`},d=[];d.push(` ${l(o.ms)} ${u.join("")} ${l(s.ms)}`),d.push("");for(let f of n){let m=l(f.ms).padEnd(7),p=`${f.count} captures`,h=f===a?" \u2190 peak":"",g=(f.rescueBytes??0)>0?` \u25C6 /compact rescued ${Math.round((f.rescueBytes??0)/1024)} KB`:"";d.push(` ${m} ${p}${h}${g}`)}return d.push(""),d.push(" \u25CF active day \u2588 peak day \u25C6 /compact rescue"),d}function _E(t,e,r){if(!Number.isFinite(t)||t<=0)return"";let n=new Date(t);if(Number.isNaN(n.getTime()))return"";let o=new Intl.DateTimeFormat(e,{timeZone:r,year:"numeric",month:"short",day:"numeric",hour:"2-digit",minute:"2-digit",hour12:!1}).formatToParts(n),s=d=>o.find(f=>f.type===d)?.value??"",i=s("day"),a=s("month"),c=s("year"),u=s("hour"),l=s("minute");return u==="24"&&(u="00"),`${i} ${a} ${c} at ${u}:${l} (${r})`}function rr(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e3?`${(t/1e3).toFixed(1)}K`:String(t)}var cu=15/1e6;function su(t){return`$${((Number.isFinite(t)&&t>0?t:0)*cu).toFixed(2)}`}function un(t,e,r=40){if(e<=0)return"\u2591".repeat(r);let n=Math.max(1,Math.round(t/e*r));return"\u2588".repeat(Math.min(n,r))+"\u2591".repeat(Math.max(0,r-n))}function vE(t,e){let r=e?.sessionTokensSaved??0;if(t.total_events===0&&(e?.lifetime?.totalEvents??0)===0&&r===0&&(e?.multiAdapter?.totalEvents??0)===0)return[];let n=e?.topN??Number.POSITIVE_INFINITY,o=[];o.push("");let s=e?.multiAdapter,i=s?.perAdapter.filter(h=>h.isReal).length??0,a=s?.totalEvents??e?.lifetime?.totalEvents??t.total_events,c=s?.totalSessions??e?.lifetime?.totalSessions??t.session_count,u=e?.lifetime?.distinctProjects;if(a>0&&u&&u>0){let h=i>=2?" everywhere":"";o.push(` All your work${h} \xB7 ${rr(a)} events captured across ${u} project${u===1?"":"s"} \xB7 ${rr(c)} conversations`)}else{o.push("Persistent memory \u2713 preserved across compact, restart & upgrade");let h=c===0&&r>0?1:c,g=h===1?"1 session":`${rr(h)} sessions`,y=a*256+r;o.push(` ${rr(a)} events \xB7 ${g} \xB7 ~${su(y)} saved lifetime`)}o.push("");let l=e?.lifetime?.categoryCounts,d;l&&Object.keys(l).length>0?d=Object.entries(l).filter(([,h])=>h>0).map(([h,g])=>({category:h,count:g,label:nu[h]||h})).sort((h,g)=>g.count-h.count):d=(t.by_category??[]).filter(h=>h&&h.count>0);let f=d.slice(0,n),m=f.length>0?f[0].count:1;for(let h of f)o.push(` ${h.label.padEnd(26)} ${String(h.count).padStart(5)} ${un(h.count,m,30)}`);let p=Math.max(0,d.length-n);return p>0&&o.push(` ... ${p} more categor${p===1?"y":"ies"}`),o}function xE(t){if(!t||t.autoMemoryCount===0)return[];let e=[];e.push(""),e.push(` Preferences learned \xB7 ${t.autoMemoryCount} across ${t.autoMemoryProjects} project${t.autoMemoryProjects===1?"":"s"}`);let r=Object.entries(t.autoMemoryByPrefix).sort((o,s)=>s[1]-o[1]).slice(0,6),n=r.length>0?r[0][1]:1;for(let[o,s]of r){let i=RE[o]??o;e.push(` ${i.padEnd(26)} ${String(s).padStart(2)} ${un(s,n,20)}`)}return e}function bE(t,e){let r=[],n=su(t),o=(e?.totalEvents??0)*256+t,s=su(o);return r.push(""),r.push("\u2500".repeat(65)),r.push("Your AI talks less, remembers more, costs less."),r.push(`${n} this session \xB7 ${s} lifetime`),r.push("\u2500".repeat(65)),r}var SE=256;function kE(t){if(!t)return[];let e=t.perAdapter.filter(o=>o.isReal),r=t.perAdapter.filter(o=>!o.isReal);if(e.length===0&&r.length===0)return[];let n=[];if(e.length>0){n.push(""),n.push("Where it came from (tools you actually used \u2014 fixtures + probes filtered):"),n.push("");let o=16,s=10,i=10,a=16;n.push(` ${"Tool".padEnd(o)}${"Captures".padStart(s)}${"Indexed".padStart(i)}${"Total kept out".padStart(a)}`);let c=[...e].sort((u,l)=>l.dataBytes+l.rescueBytes-(u.dataBytes+u.rescueBytes));for(let u of c){let l=u.dataBytes+u.rescueBytes,d=u.eventCount>0?rr(u.eventCount):"\u2014",f=Qe(u.dataBytes),m=Qe(l);n.push(` ${ou(u.name).padEnd(o)}${d.padStart(s)}${f.padStart(i)}${m.padStart(a)}`)}}if(r.length>0){e.length>0&&n.push("");let o=r.map(s=>ou(s.name)).join(", ");n.push(` Skipped (${r.length}): ${o}`),n.push(" These adapters have DBs on disk but only test fixtures, dev skeletons,"),n.push(" or detection probes \u2014 no real chat activity.")}return n}function uu(t,e,r,n){let o=[],s=wz(t.session.uptime_min),i=n?.lifetime,a=n?.mcpUsage,c=n?.conversation,u=n?.realBytes,l=n?.multiAdapter,d=l?.perAdapter.filter(R=>R.isReal).length??0;if(l&&d>0){let R=l.totalSessions||i?.totalSessions||0,N=i?.firstEventMs??0,C=N>0?Math.max(1,Math.round((Date.now()-N)/864e5)):0,M=C>0?`Across ${C} day${C===1?"":"s"} `:"",W=R>0?`you ran ${rr(R)} conversation${R===1?"":"s"} `:"you ran ",k;if(d>=2)k=`across ${d} AI tools`;else{let D=l.perAdapter.find(L=>L.isReal);k=`in ${D?ou(D.name):"Claude Code"}`}o.push(`${M}${W}${k}.`),o.push("")}if(c&&c.events>0){o.length>0&&(o.length=0);let R=Tz(),N=n?.cwd??process.cwd(),C=n?.now??Date.now(),M=n?.locale??R.locale,W=n?.tz??R.tz;return o.push(...Pz({conversation:c,lifetime:i,multiAdapter:l,realBytes:u,cwd:N,locale:M,tz:W,now:C,version:e,latestVersion:r})),o.join(`
|
|
553
|
-
`)}let f=t.savings.kept_out+(t.cache?t.cache.bytes_saved:0),
|
|
554
|
-
`)}o.push(`${
|
|
555
|
-
`)}var
|
|
571
|
+
FROM session_events`).get();p&&(s+=Number(p.data_bytes??0),i+=Number(p.bytes_avoided??0),a+=Number(p.bytes_returned??0));try{let m=h.prepare("SELECT COALESCE(SUM(LENGTH(snapshot)), 0) AS bytes FROM session_resume").get();m?.bytes&&(c+=Number(m.bytes))}catch{}}}finally{h.close()}}catch{}}let u=0;t.sessionId&&t.contentDbPath&&(u=_L(t.sessionId,t.contentDbPath,{loadDatabase:t.loadDatabase}),i+=u);let l=Math.floor((s+i+c)/4);return{eventDataBytes:s,bytesAvoided:i,bytesReturned:a,snapshotBytes:c,contentBytes:u,totalSavedTokens:l}}var xL={minEvents:100,minProjects:5,recencyMs:30*864e5,minAvgBytes:50};function SL(t,e,r){let n={name:t.name,eventCount:0,sessionCount:0,dataBytes:0,rescueBytes:0,contentBytes:0,uuidConvs:0,projectDirs:[],firstMs:Number.POSITIVE_INFINITY,lastMs:0,isReal:!1};if(!Lr(t.sessionsDir))return n;let o=[];try{o=fs(t.sessionsDir).filter(l=>l.endsWith(".db"))}catch{return n}if(o.length===0)return n;let s=null;try{s=e()}catch{return n}if(!s)return n;let i=new Set,a=new Set;for(let l of o){let d=Tt(t.sessionsDir,l);try{let f=new s(d,{readonly:!0});try{let h=f.prepare("SELECT COUNT(*) AS cnt, COALESCE(SUM(LENGTH(data)), 0) AS bytes FROM session_events").get();h&&(n.eventCount+=Number(h.cnt??0),n.dataBytes+=Number(h.bytes??0));try{let p=f.prepare("SELECT COUNT(*) AS cnt FROM session_meta").get();n.sessionCount+=Number(p?.cnt??0)}catch{}try{let p=f.prepare("SELECT COALESCE(SUM(length(snapshot)), 0) AS bytes FROM session_resume WHERE consumed = 1").get();p?.bytes&&(n.rescueBytes+=Number(p.bytes))}catch{}try{let p=f.prepare("SELECT MIN(created_at) AS mn, MAX(created_at) AS mx FROM session_events").get();if(p?.mn){let m=Date.parse(p.mn+(p.mn.endsWith("Z")?"":"Z"));Number.isFinite(m)&&m<n.firstMs&&(n.firstMs=m)}if(p?.mx){let m=Date.parse(p.mx+(p.mx.endsWith("Z")?"":"Z"));Number.isFinite(m)&&m>n.lastMs&&(n.lastMs=m)}}catch{}try{let p=f.prepare("SELECT DISTINCT project_dir AS p FROM session_events WHERE project_dir != ''").all();for(let m of p)m.p&&i.add(m.p)}catch{}try{let p=f.prepare("SELECT DISTINCT session_id AS s FROM session_events").all();for(let m of p)m.s&&a.add(m.s)}catch{}}finally{f.close()}}catch{}}n.projectDirs=Array.from(i),n.uuidConvs=a.size;let c=n.eventCount>0?n.dataBytes/n.eventCount:0,u=n.lastMs>0&&r.nowMs-n.lastMs<=r.recencyMs;return n.isReal=n.eventCount>=r.minEvents&&i.size>=r.minProjects&&u&&c>=r.minAvgBytes,n}function _u(t){let e=gL({home:t?.home}),r=t?.loadDatabase??Ye,n={...xL,...t?.filter??{},nowMs:t?.filter?.nowMs??Date.now()},o=[],s=0,i=0,a=0;for(let c of e){if(!Lr(c.sessionsDir))continue;let u=SL(c,r,n);o.push(u),s+=u.eventCount,i+=u.sessionCount,a+=u.dataBytes+u.rescueBytes}return{totalEvents:s,totalSessions:i,totalBytes:a,perAdapter:o}}var iw={project:"What you're building",feedback:"How you work",user:"Who you are",reference:"Where to look",memory:"Long-term context",other:"Other notes"},vL={"claude-code":"Claude Code","gemini-cli":"Gemini CLI",antigravity:"Antigravity",openclaw:"Openclaw",codex:"Codex CLI",cursor:"Cursor","vscode-copilot":"VS Code Copilot",kiro:"Kiro",pi:"Pi",omp:"OMP","qwen-code":"Qwen Code",kilo:"Kilo",opencode:"OpenCode",zed:"Zed","jetbrains-copilot":"JetBrains"};function hu(t){return vL[t]??t}function et(t){if(!Number.isFinite(t)||t<=0)return"0 B";if(t<1024)return`${Math.round(t)} B`;let e=t/1024;if(e<1024)return e<100?`${e.toFixed(1)} KB`:`${Math.round(e)} KB`;let r=e/1024;if(r<1024)return r<100?`${r.toFixed(1)} MB`:`${Math.round(r)} MB`;let n=r/1024;return n<100?`${n.toFixed(2)} GB`:`${n.toFixed(1)} GB`}function bL(t){let e=parseFloat(t);if(isNaN(e)||e<1)return"< 1 min";if(e<60)return`${Math.round(e)} min`;let r=Math.floor(e/60),n=Math.round(e%60);return n>0?`${r}h ${n}m`:`${r}h`}function fu(t){if(!t)return!1;try{return Intl.DateTimeFormat.supportedLocalesOf(t).length===0?!1:(new Intl.DateTimeFormat(t),!0)}catch{return!1}}function kL(){let t=process.env??{},e=t.CONTEXT_MODE_LOCALE??"";if(e&&!fu(e)&&(e=""),!e){if(process.platform==="darwin"){try{let n=pL("defaults",["read","-g","AppleLocale"],{encoding:"utf8",timeout:500}).trim();n&&(e=n.replace(/_/g,"-"))}catch{}e&&!fu(e)&&(e="")}if(!e&&(t.LC_TIME||t.LANG)){let n=(t.LC_TIME||t.LANG||"").split(".")[0];n&&(e=n.replace(/_/g,"-")),e&&!fu(e)&&(e="")}if(!e)try{e=new Intl.DateTimeFormat().resolvedOptions().locale}catch{e="en-US"}}let r=t.CONTEXT_MODE_TZ??"";if(!r)try{r=new Intl.DateTimeFormat().resolvedOptions().timeZone}catch{r="UTC"}return fu(e)||(e="en-US"),{locale:e,tz:r||"UTC"}}function GE(t){let e=yu();return e?t===e?"~":t.startsWith(e+mL)?"~"+t.slice(e.length):t:t}function EL(t,e,r){if(!Number.isFinite(e)||e<=0)return[];let n=e*Vi(),o=(y,_=2)=>y.toFixed(_),s=Math.round(n/20),i=(n/200).toFixed(1),a=Math.round(n/73.67),c=Math.round(n*10),u=r>0?Math.round(n*10/r*365):0,l=(e*3/1e6).toFixed(2),d=(e*2.5/1e6).toFixed(2),f=(e*1.25/1e6).toFixed(2),h=(e*.8/1e6).toFixed(2),p=process.env.PI_CONTEXT_MODE_PRICE_OUTPUT_PER_TOKEN!==void 0,m=process.env.PI_CONTEXT_MODE_MODEL_ID,g=[];return p&&m?g.push(` $${o(n)} of ${m} tokens your team didn't burn.`):p?g.push(` $${o(n)} of tokens your team didn't burn.`):g.push(` $${o(n)} of Opus 4 tokens your team didn't burn.`),g.push(` context-mode kept ${et(t)} out of context \u2014 that's ${s} months of Cursor Pro paid for itself.`),c>0&&u>0&&(g.push(""),g.push(` Scale across a 10-dev team and that's ~$${u.toLocaleString("en-US")}/year saved.`)),p||(g.push(""),g.push(" (Opus rates shown for context. On cheaper models the dollar number drops; the savings ratio holds.)")),g}function wL(t){let{conversation:e,lifetime:r,multiAdapter:n,realBytes:o,cwd:s,locale:i,tz:a,now:c,version:u,latestVersion:l}=t,d=[],f=e.events*ew,h=Math.round((e.snapshotBytes??0)/4),p=f+h,m=o?.conversation?.totalSavedTokens??0,g=Math.max(p,m),y=(r?.totalEvents??0)*ew,_=Math.round((r?.rescueBytes??0)/4),x=y+_,S=o?.lifetime?.totalSavedTokens??0,k=Math.max(x,S),R=o?.lifetime?.bytesReturned??0,$=o?.lifetime?.bytesAvoided??0,C=R+$>0?Math.max(1,Math.floor(R/4)):Math.max(1,Math.round(k*.02)),A=n?.totalBytes&&n.totalBytes>0?n.totalBytes:k*4,W=o?.conversation?o.conversation.eventDataBytes+o.conversation.bytesAvoided+o.conversation.snapshotBytes:g*4,T=e.daysAlive>=1?`${e.daysAlive.toFixed(1)} days alive \xB7 still going`:`${Math.max(1,Math.round(e.daysAlive*24))} hr alive \xB7 still going`,E=r?.firstEventMs??n?.perAdapter?.[0]?.firstMs??0,L=E>0?Math.max(1,Math.round((c-E)/864e5)):0,pe=n?.totalSessions??r?.totalSessions??1,dt=n?.perAdapter.filter(Me=>Me.isReal).length??0,hn;if(n&&dt>=2)hn=`across ${dt} AI tools`;else if(n&&dt===1){let Me=n.perAdapter.find(Vt=>Vt.isReal);hn=`in ${Me?hu(Me.name):"Claude Code"}`}else hn="in Claude Code";L>0?d.push(` Across ${L} days you ran ${sr(pe)} conversations ${hn}.`):d.push(` You ran ${sr(pe)} conversations ${hn}.`);let Ow=L>0?A/L:0;d.push(` context-mode kept ${et(A)} out of your context window \u2014 about ${et(Ow)} every single day.`),d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 1. Where you are now \u2500\u2500\u2500"),d.push("");let og=e.firstEventMs&&e.firstEventMs>0?JE(e.firstEventMs,i,a):"";if(og?d.push(` This conversation started ${og} in ${GE(s)}.`):d.push(` This conversation lives in ${GE(s)}.`),d.push(` ${T}.`),e.snapshotsConsumed>0&&e.snapshotBytes>0){let Me=e.lastRescueMs&&e.lastRescueMs>0?JE(e.lastRescueMs,i,a):"",Vt=Math.round(e.snapshotBytes/1024);Me?d.push(` On ${Me}, /compact fired \u2014 ${Vt} KB rescued from snapshot.`):d.push(` /compact fired \u2014 ${Vt} KB rescued from snapshot.`),d.push(" Without that, you'd be re-explaining everything to a blank model right now.")}d.push("");let sg=o?.conversation,ig=sg?.bytesAvoided??0,Au=sg?.bytesReturned??0;if(ig+Au===0)d.push(" No measurable redirect activity captured yet \u2014 bars will appear once context-mode diverts its first payload."),d.push("");else{let Me=ig+Au,Vt=Math.max(1,Au),Wt=Math.max(1,Math.floor(Me/4)),kr=Math.max(1,Math.floor(Vt/4)),Nu=mn(Wt,Wt,32),Mw=mn(kr,Wt,32),jw=(1-kr/Wt)*100,zw=Math.max(1,Math.round(Wt/kr));d.push(` Without context-mode ${et(Me).padStart(8)} ${Nu} ${sr(Wt).padStart(7)} tokens`),d.push(` With context-mode ${et(Vt).padStart(8)} ${Mw} ${sr(kr).padStart(7)} tokens`),d.push(` ${jw.toFixed(0)}% kept out of context \xB7 your AI ran ${zw}\xD7 longer before /compact fired`),d.push("")}if(e.byDay&&e.byDay.length>0){let Me=e.lastEventMs&&e.firstEventMs?Math.max(1,Math.round((e.lastEventMs-e.firstEventMs)/864e5)+1):e.byDay.length;d.push(` How that ${et(W)} built up \u2014 ${Me} days, ${e.byDay.length} active:`),d.push(""),d.push(...PL(e.byDay,i,a))}d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 2. What this chat captured (used when you --continue or /resume here) \u2500\u2500\u2500"),d.push("");let Iw=e.byCategory.reduce((Me,Vt)=>Me+Vt.count,0).toLocaleString(i);d.push(` ${Iw} things \u2014 files, errors, decisions, agent runs:`),d.push("");let Aw=e.byCategory[0]?.count??1;for(let Me of e.byCategory)d.push(` ${Me.label.padEnd(26)} ${String(Me.count).padStart(5)} ${mn(Me.count,Aw,28)}`);d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 3. The scope, getting wider \u2500\u2500\u2500"),d.push("");let ag=e.firstEventMs&&e.firstEventMs>0?new Intl.DateTimeFormat(i,{timeZone:a,year:"numeric",month:"short",day:"numeric"}).format(new Date(e.firstEventMs)):"",cg=E>0?new Intl.DateTimeFormat(i,{timeZone:a,year:"numeric",month:"short",day:"numeric"}).format(new Date(E)):"",ug=r?.distinctProjects??0,Nw=r?.totalEvents??n?.totalEvents??0;if(d.push(` This chat: ${et(W)} kept out \xB7 ${e.events.toLocaleString(i)} captures${ag?` \xB7 started ${ag}`:""}.`),d.push(` All your work: ${et(A)} kept out \xB7 ${Nw.toLocaleString(i)} captures across ${ug} project${ug===1?"":"s"}${cg?` \xB7 since ${cg}`:""}.`),d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 4. The bottom line \u2500\u2500\u2500"),d.push(""),d.push(...EL(A,k,L)),d.push(""),d.push(""),d.push(" \u2500\u2500\u2500 5. What context-mode learned about how you work \u2500\u2500\u2500"),d.push(""),r&&r.autoMemoryCount>0){d.push(` ${r.autoMemoryCount} preferences picked up across ${r.autoMemoryProjects} project${r.autoMemoryProjects===1?"":"s"}:`);let Me=Object.entries(r.autoMemoryByPrefix).sort((Wt,kr)=>kr[1]-Wt[1]),Vt=Me.length>0?Me[0][1]:1;for(let[Wt,kr]of Me){let Nu=iw[Wt]??Wt;d.push(` ${Nu.padEnd(26)} ${String(kr).padStart(2)} ${mn(kr,Vt,20)}`)}}else d.push(" No preferences learned yet \u2014 context-mode picks them up automatically.");d.push(""),d.push(""),d.push(" Your AI talks less, remembers more, costs less."),d.push(` Locale ${i} \xB7 timezone ${a} \xB7 pricing examples for illustration only.`),d.push("");let Dw=u?`v${u}`:"context-mode";return d.push(` ${Dw}`),u&&l&&l!=="unknown"&&nw(l,u)&&d.push(` Update available: v${u} -> v${l} | ctx_upgrade`),TL(d)}function TL(t){let e=[],r=0;for(let n of t)n===""?(r++,r<=2&&e.push(n)):(r=0,e.push(n));for(;e.length>0&&e[e.length-1]==="";)e.pop();return e}function PL(t,e,r){if(t.length===0)return[];let n=[...t].sort((f,h)=>f.ms-h.ms),o=n[0],s=n[n.length-1],i=Math.max(1,s.ms-o.ms),a=n[0];for(let f of n)f.count>a.count&&(a=f);let c=56,u=Array.from({length:c},()=>"\u2500");for(let f of n){let h=Math.round((f.ms-o.ms)/i*(c-1)),p="\u25CF";f===a&&(p="\u2588"),(f.rescueBytes??0)>0&&(p="\u25C6"),u[h]=p}let l=f=>{let h=new Intl.DateTimeFormat(e,{timeZone:r,month:"short",day:"numeric"}).formatToParts(new Date(f)),p=(h.find(g=>g.type==="month")?.value??"").toLowerCase(),m=h.find(g=>g.type==="day")?.value??"";return`${p} ${m}`},d=[];d.push(` ${l(o.ms)} ${u.join("")} ${l(s.ms)}`),d.push("");for(let f of n){let h=l(f.ms).padEnd(7),p=`${f.count} captures`,m=f===a?" \u2190 peak":"",g=(f.rescueBytes??0)>0?` \u25C6 /compact rescued ${Math.round((f.rescueBytes??0)/1024)} KB`:"";d.push(` ${h} ${p}${m}${g}`)}return d.push(""),d.push(" \u25CF active day \u2588 peak day \u25C6 /compact rescue"),d}function JE(t,e,r){if(!Number.isFinite(t)||t<=0)return"";let n=new Date(t);if(Number.isNaN(n.getTime()))return"";let o=new Intl.DateTimeFormat(e,{timeZone:r,year:"numeric",month:"short",day:"numeric",hour:"2-digit",minute:"2-digit",hour12:!1}).formatToParts(n),s=d=>o.find(f=>f.type===d)?.value??"",i=s("day"),a=s("month"),c=s("year"),u=s("hour"),l=s("minute");return u==="24"&&(u="00"),`${i} ${a} ${c} at ${u}:${l} (${r})`}function sr(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e3?`${(t/1e3).toFixed(1)}K`:String(t)}function Vi(){let t=process.env.PI_CONTEXT_MODE_PRICE_OUTPUT_PER_TOKEN;if(t!==void 0&&t!==""){let e=Number(t);if(Number.isFinite(e)&&e>0)return e}return 15/1e6}var jW=15/1e6;function gu(t){return`$${((Number.isFinite(t)&&t>0?t:0)*Vi()).toFixed(2)}`}function mn(t,e,r=40){if(e<=0)return"\u2591".repeat(r);let n=Math.max(1,Math.round(t/e*r));return"\u2588".repeat(Math.min(n,r))+"\u2591".repeat(Math.max(0,r-n))}function XE(t,e){let r=e?.sessionTokensSaved??0;if(t.total_events===0&&(e?.lifetime?.totalEvents??0)===0&&r===0&&(e?.multiAdapter?.totalEvents??0)===0)return[];let n=e?.topN??Number.POSITIVE_INFINITY,o=[];o.push("");let s=e?.multiAdapter,i=s?.perAdapter.filter(m=>m.isReal).length??0,a=s?.totalEvents??e?.lifetime?.totalEvents??t.total_events,c=s?.totalSessions??e?.lifetime?.totalSessions??t.session_count,u=e?.lifetime?.distinctProjects;if(a>0&&u&&u>0){let m=i>=2?" everywhere":"";o.push(` All your work${m} \xB7 ${sr(a)} events captured across ${u} project${u===1?"":"s"} \xB7 ${sr(c)} conversations`)}else{o.push("Persistent memory \u2713 preserved across compact, restart & upgrade");let m=c===0&&r>0?1:c,g=m===1?"1 session":`${sr(m)} sessions`,y=a*256+r;o.push(` ${sr(a)} events \xB7 ${g} \xB7 ~${gu(y)} saved lifetime`)}o.push("");let l=e?.lifetime?.categoryCounts,d;l&&Object.keys(l).length>0?d=Object.entries(l).filter(([,m])=>m>0).map(([m,g])=>({category:m,count:g,label:mu[m]||m})).sort((m,g)=>g.count-m.count):d=(t.by_category??[]).filter(m=>m&&m.count>0);let f=d.slice(0,n),h=f.length>0?f[0].count:1;for(let m of f)o.push(` ${m.label.padEnd(26)} ${String(m.count).padStart(5)} ${mn(m.count,h,30)}`);let p=Math.max(0,d.length-n);return p>0&&o.push(` ... ${p} more categor${p===1?"y":"ies"}`),o}function YE(t){if(!t||t.autoMemoryCount===0)return[];let e=[];e.push(""),e.push(` Preferences learned \xB7 ${t.autoMemoryCount} across ${t.autoMemoryProjects} project${t.autoMemoryProjects===1?"":"s"}`);let r=Object.entries(t.autoMemoryByPrefix).sort((o,s)=>s[1]-o[1]).slice(0,6),n=r.length>0?r[0][1]:1;for(let[o,s]of r){let i=iw[o]??o;e.push(` ${i.padEnd(26)} ${String(s).padStart(2)} ${mn(s,n,20)}`)}return e}function QE(t,e){let r=[],n=gu(t),o=(e?.totalEvents??0)*256+t,s=gu(o);return r.push(""),r.push("\u2500".repeat(65)),r.push("Your AI talks less, remembers more, costs less."),r.push(`${n} this session \xB7 ${s} lifetime`),r.push("\u2500".repeat(65)),r}var ew=256;function tw(t){if(!t)return[];let e=[],r=[];for(let o of t.perAdapter)(o.isReal?e:r).push(o);if(e.length===0&&r.length===0)return[];let n=[];if(e.length>0){n.push(""),n.push("Where it came from (tools you actually used \u2014 fixtures + probes filtered):"),n.push("");let o=16,s=10,i=10,a=16;n.push(` ${"Tool".padEnd(o)}${"Captures".padStart(s)}${"Indexed".padStart(i)}${"Total kept out".padStart(a)}`);let c=[...e].sort((u,l)=>l.dataBytes+l.rescueBytes-(u.dataBytes+u.rescueBytes));for(let u of c){let l=u.dataBytes+u.rescueBytes,d=u.eventCount>0?sr(u.eventCount):"\u2014",f=et(u.dataBytes),h=et(l);n.push(` ${hu(u.name).padEnd(o)}${d.padStart(s)}${f.padStart(i)}${h.padStart(a)}`)}}if(r.length>0){e.length>0&&n.push("");let o=r.map(s=>hu(s.name)).join(", ");n.push(` Skipped (${r.length}): ${o}`),n.push(" These adapters have DBs on disk but only test fixtures, dev skeletons,"),n.push(" or detection probes \u2014 no real chat activity.")}return n}function rw(t,e){let r=[];if(t.cache){let n=(t.cache.hit_rate*100).toFixed(1);r.push(`cache.hit_rate: ${n}% (${t.cache.hits} hits / ${t.cache.misses} misses)`)}return e&&(r.push(`index.total_chunks: ${e.totalChunks}`),r.push(`index.total_sources: ${e.totalSources}`),e.lastIndexedAt&&r.push(`index.last_indexed_at: ${e.lastIndexedAt}`)),r.length===0?[]:["","## Observability",...r]}function xu(t,e,r,n){let o=[],s=bL(t.session.uptime_min),i=n?.lifetime,a=n?.mcpUsage,c=n?.conversation,u=n?.realBytes,l=n?.multiAdapter,d=l?.perAdapter.filter(R=>R.isReal).length??0;if(l&&d>0){let R=l.totalSessions||i?.totalSessions||0,$=i?.firstEventMs??0,C=$>0?Math.max(1,Math.round((Date.now()-$)/864e5)):0,A=C>0?`Across ${C} day${C===1?"":"s"} `:"",W=R>0?`you ran ${sr(R)} conversation${R===1?"":"s"} `:"you ran ",T;if(d>=2)T=`across ${d} AI tools`;else{let E=l.perAdapter.find(L=>L.isReal);T=`in ${E?hu(E.name):"Claude Code"}`}o.push(`${A}${W}${T}.`),o.push("")}if(c&&c.events>0){o.length>0&&(o.length=0);let R=kL(),$=n?.cwd??process.cwd(),C=n?.now??Date.now(),A=n?.locale??R.locale,W=n?.tz??R.tz;return o.push(...wL({conversation:c,lifetime:i,multiAdapter:l,realBytes:u,cwd:$,locale:A,tz:W,now:C,version:e,latestVersion:r})),o.push(...rw(t,n?.indexState)),o.join(`
|
|
572
|
+
`)}let f=t.savings.kept_out+(t.cache?t.cache.bytes_saved:0),h=t.savings.total_bytes_returned,p=t.savings.total_calls,m=f+h,g=m>0?f/m*100:0,y=Math.round(f/4),_=h>0?Math.max(1,Math.round(m/Math.max(h,1))):0;if(f===0){o.push(`context-mode ${s} ${p} calls`),o.push(""),p===0?o.push("No tool calls yet. Use batch_execute or execute to start saving tokens."):o.push(`${et(h)} entered context | 0 tokens saved`),o.push(...XE(t.projectMemory,{lifetime:i,multiAdapter:l,sessionTokensSaved:0})),o.push(...tw(l)),o.push(...YE(i)),o.push(...QE(0,i)),o.push("");let R=e?`v${e}`:"context-mode";return o.push(R),e&&r&&r!=="unknown"&&nw(r,e)&&o.push(`Update available: v${e} -> v${r} | ctx_upgrade`),o.join(`
|
|
573
|
+
`)}o.push(`${sr(y)} tokens saved \xB7 ${g.toFixed(1)}% reduction \xB7 ${s} \xB7 ~${gu(y)} saved (Opus)`),o.push(""),o.push(`Without context-mode |${mn(m,m)}| ${et(m)}`),o.push(`With context-mode |${mn(h,m)}| ${et(h)}`),o.push(""),_>=2?o.push(`${et(f)} kept out of your conversation \u2014 ${_}\xD7 longer sessions before compact.`):o.push(`${et(f)} kept out of your conversation. Never entered context.`),o.push("");let x=[`${p} calls`];t.cache&&t.cache.hits>0&&x.push(`${t.cache.hits} cache hits (+${et(t.cache.bytes_saved)})`),o.push(x.join(" \xB7 "));let S=t.savings.by_tool.filter(R=>R.calls>0);if(S.length>=2){o.push("");let R=S.map($=>{let C=$.context_kb*1024,A=g<100?C/(1-g/100):C,W=Math.max(0,A-C);return{...$,returnedBytes:C,estimatedSaved:W}}).sort(($,C)=>C.estimatedSaved-$.estimatedSaved);for(let $ of R){let C=$.tool.length>22?$.tool.slice(0,19)+"...":$.tool;o.push(` ${C.padEnd(22)} ${String($.calls).padStart(4)} calls ${et($.estimatedSaved).padStart(8)} saved`)}}if(a&&a.length>0){let R=a.filter($=>$.median_concurrency!=null&&($.max_concurrency??1)>1);if(R.length>0){o.push(""),o.push("Parallel I/O \u2713 one call did the work of many \u2014 faster runs, lower bill, same answer.");for(let $ of R){let C=$.tool_name.replace(/^mcp__.*?__/,"");o.push(` ${C.padEnd(22)} ${$.calls} batches \xB7 ${$.median_concurrency} typical, ${$.max_concurrency} peak`)}}}o.push(...XE(t.projectMemory,{lifetime:i,multiAdapter:l,sessionTokensSaved:y})),o.push(...tw(l)),o.push(...YE(i)),o.push(...QE(y,i)),o.push(...rw(t,n?.indexState)),o.push("");let k=e?`v${e}`:"context-mode";return o.push(k),e&&r&&r!=="unknown"&&r!==e&&o.push(`Update available: v${e} -> v${r} | ctx_upgrade`),o.join(`
|
|
574
|
+
`)}var Rt=Pt(AL(import.meta.url)),Ur=(()=>{for(let t of["../package.json","./package.json"]){let e=je(Rt,t);if(_e(e))try{return JSON.parse(Gi(e,"utf8")).version}catch{}}return"unknown"})();process.env.CONTEXT_MODE_EMBEDDED_PLUGIN_TOOLS!=="1"&&(process.on("unhandledRejection",t=>{process.stderr.write(`[context-mode] unhandledRejection: ${t}
|
|
556
575
|
`)}),process.on("uncaughtException",t=>{process.stderr.write(`[context-mode] uncaughtException: ${t?.message??t}
|
|
557
|
-
`)}));var
|
|
576
|
+
`)}));var uo=Lc(),Eu=ub(uo),De=new Ic({name:"context-mode",version:Ur}),jL=[];function zL(t={}){if((t.embedded??process.env.CONTEXT_MODE_EMBEDDED_PLUGIN_TOOLS)==="1")return!1;let r=t.platform??zr().platform;if(r!=="opencode"&&r!=="kilo")return!1;let n=t.settings??HL(r);return UL(n)&&FL(n)}function LL(t){let e="",r=!1,n=!1,o=!1;for(let s=0;s<t.length;s++){let i=t[s],a=t[s+1];if(o){i==="*"&&a==="/"&&(o=!1,s++);continue}if(n){e+=i,n=!1;continue}if(i==="\\"){e+=i,n=r;continue}if(i==='"'){r=!r,e+=i;continue}if(!r&&i==="/"&&a==="/"){for(;s<t.length&&t[s]!==`
|
|
558
577
|
`;)s++;s<t.length&&(e+=`
|
|
559
|
-
`);continue}if(!r&&i==="/"&&a==="*"){o=!0,s++;continue}e+=i}return e.replace(/,(\s*[}\]])/g,"$1")}function
|
|
560
|
-
`)}function
|
|
561
|
-
`);process.on("exit",()=>{try{
|
|
578
|
+
`);continue}if(!r&&i==="/"&&a==="*"){o=!0,s++;continue}e+=i}return e.replace(/,(\s*[}\]])/g,"$1")}function HL(t){let e=t==="kilo"?"kilo":"opencode",r=[je(`${e}.json`),je(`${e}.jsonc`),je(`.${e}`,`${e}.json`),je(`.${e}`,`${e}.jsonc`),ke(_s(),".config",e,`${e}.json`),ke(_s(),".config",e,`${e}.jsonc`)];for(let n of r)try{if(!_e(n))continue;return JSON.parse(LL(Gi(n,"utf8")))}catch{}return null}function UL(t){let e=t?.plugin;return Array.isArray(e)&&e.some(r=>typeof r=="string"&&r.includes("context-mode"))}function FL(t){let e=t?.mcp;return!!(e&&typeof e=="object"&&!Array.isArray(e)&&Object.prototype.hasOwnProperty.call(e,"context-mode"))}var kw=zL(),Kh=!1;function ZL(t={}){if(Kh)return;Kh=!0;let e=t.write??(n=>{process.stderr.write(n)}),r=t.platform??"opencode/kilo";e(`[context-mode] ctx_* tools/list intentionally empty on this MCP child: legacy mcp.context-mode block coexists with plugin: ["context-mode"] in ${r}.json \u2014 plugin-native tools are the supported path (#623). Run \`context-mode upgrade\` to remove the legacy block (preserves other MCP servers).
|
|
579
|
+
`)}function xK(){Kh=!1}function BL(t=De){t.server.registerCapabilities({tools:{listChanged:!1}}),t.server.setRequestHandler(Co,async()=>({tools:[]}))}var qL=De.registerTool.bind(De);De.registerTool=(...t)=>{let[e,r,n]=t;if(kw){ZL();return}let o=VL(e,n);return jL.push({name:e,config:r,handler:o}),t[2]=o,qL(...t)};function VL(t,e){return async r=>{try{return await e(r)}catch(n){let o=YL(n);if(o)try{return Z(t,o)}catch(s){if(s instanceof ln)return o;throw s}throw n}}}kw&&process.env.CONTEXT_MODE_EMBEDDED_PLUGIN_TOOLS!=="1"&&BL(De);var Qh=new ML;async function SK(t,e){let r=typeof t=="string"?{projectDir:t}:t;return Qh.run(r,e)}De.server.registerCapabilities({prompts:{listChanged:!1},resources:{listChanged:!1}});De.server.setRequestHandler($o,async()=>({prompts:[]}));De.server.setRequestHandler(Po,async()=>({resources:[]}));De.server.setRequestHandler(Ro,async()=>({resourceTemplates:[]}));var Ji=new wi({runtimes:uo,projectRoot:()=>$t()}),Iu=ke(Yh(),`cm-fs-preload-${process.pid}.js`);Xh(Iu,`(function(){var __cm_fs=0;process.on('exit',function(){if(__cm_fs>0)try{process.stderr.write('__CM_FS__:'+__cm_fs+'\\n')}catch(e){}});try{var f=require('fs');var ors=f.readFileSync;f.readFileSync=function(){var r=ors.apply(this,arguments);if(Buffer.isBuffer(r))__cm_fs+=r.length;else if(typeof r==='string')__cm_fs+=Buffer.byteLength(r);return r;};}catch(e){}})();
|
|
580
|
+
`);process.on("exit",()=>{try{ys(Iu)}catch{}});var ir=null;function lo(){let t=Qh.getStore();if(t?.sessionId)return{sessionId:t.sessionId};let e=process.env.CLAUDE_SESSION_ID??WL();if(e)return{sessionId:e}}var Su;function WL(t){let e=Date.now();if(!t?.bypassCache&&Su&&e-Su.checkedAt<2e3)return Su.sid;try{let r=t?.projectDir??process.env.CLAUDE_PROJECT_DIR??process.env.CONTEXT_MODE_PROJECT_DIR;if(!r)return;let n=t?.sessionsDir??Ne(),o=Ni({projectDir:r,sessionsDir:n});if(!_e(o))return;let s=Ye(),i=new s(o,{readonly:!0,fileMustExist:!0});try{let c=i.prepare("SELECT session_id FROM session_events ORDER BY created_at DESC LIMIT 1").get()?.session_id;return c&&(Su={sid:c,checkedAt:e}),c}finally{try{i.close()}catch{}}}catch{return}}function KL(t){try{let e=Ne();if(!_e(e))return;let r=xw(e).filter(n=>n.endsWith("-events.md"));for(let n of r){let o=ke(e,n);try{t.index({path:o,source:"session-events",attribution:lo()}),ys(o)}catch{}}}catch{}}var ar=null,Hr=null;async function GL(){if(ar)return ar;try{let{getAdapter:t}=await Promise.resolve().then(()=>(co(),au)),e=zr();return await t(e.platform)}catch{return null}}function hs(){if(ar)return ar.getSessionDir();try{let t=zr(),e=Hi(t.platform);if(e)return Im({configDir:ke(...e),configDirEnv:JL(e)})}catch{}return Im({configDir:".claude",configDirEnv:"CLAUDE_CONFIG_DIR"})}function JL(t){if(t.length===1&&t[0]===".claude")return"CLAUDE_CONFIG_DIR";if(t.length===1&&t[0]===".codex")return"CODEX_HOME"}function Ne(){return Kc(Ii(hs))}function $t(){let t=Qh.getStore();if(t)return t.projectDir;let e,r,n;try{let o=zr().platform;r=o,o==="claude-code"&&(e=ke(_s(),".claude","projects")),o==="codex"&&(n=process.env.CODEX_HOME??ke(_s(),".codex"))}catch{}return KE({env:process.env,cwd:process.cwd(),pwd:process.env.PWD,transcriptsRoot:e,transcriptMaxAgeMs:300*1e3,strictPlatform:r,codexHome:n})}function XL(t){return IL(t)?t:je($t(),t)}function Ki(){return Ni({projectDir:$t(),sessionsDir:Ne()})}function Pu(){let t=Kc(Am(hs));return Kb({projectDir:$t(),contentDir:t})}function br(){if(!ir){let t=Pu();ir=new Bc(t),ir.setDenyChecker(e=>{try{let r=$t(),n=cu("Read",r);return uu(e,n,process.platform==="win32",r).denied}catch{return!0}});try{let e=Pt(Pu());Rm(e,14),ir.cleanupStaleSources(14);let r=ke(_s(),".context-mode","content");_e(r)&&Rm(r,0)}catch{}Pm()}return KL(ir),ir}var te={calls:{},bytesReturned:{},bytesIndexed:0,bytesSandboxed:0,cacheHits:0,cacheMisses:0,cacheBytesSaved:0,sessionStart:Date.now()};function YL(t){return t instanceof ln?{content:[{type:"text",text:qb(t)}],isError:!0}:null}var Fr=null,vu=0,cw=0,QL=3,e1=3600*1e3;async function uw(){return new Promise(t=>{let e=DL("https://registry.npmjs.org/context-mode/latest",{headers:{Connection:"close"}},r=>{let n="";r.on("data",o=>{n+=o}),r.on("end",()=>{try{let o=JSON.parse(n);t(o.version??"unknown")}catch{t("unknown")}})});e.on("error",()=>t("unknown")),e.setTimeout(5e3,()=>{e.destroy(),t("unknown")}),e.end()})}function t1(){let t=ar?.name;return t==="Claude Code"?"/ctx-upgrade":t==="OpenClaw"?"npm run install:openclaw":t==="Pi"?"npm run build":"npm update -g context-mode"}function r1(t,e){let r=t.split(".").map(Number),n=e.split(".").map(Number);for(let o=0;o<3;o++){if((r[o]??0)>(n[o]??0))return!0;if((r[o]??0)<(n[o]??0))return!1}return!1}function n1(){return!Fr||Fr==="unknown"?!1:r1(Fr,Ur)}function o1(){if(!n1())return!1;let t=Date.now();if(vu>=QL){if(t-cw<e1)return!1;vu=0}return vu===0&&(cw=t),vu++,!0}var lw=!1;function s1(){if(!lw){lw=!0;try{let t=wt(),e=je(t,"plugins","installed_plugins.json");if(!_e(e))return;let r=JSON.parse(Gi(e,"utf-8")),n=je(t,"plugins","cache"),o=_e(je(Rt,"package.json"))?Rt:Pt(Rt);for(let[s,i]of Object.entries(r.plugins??{}))if(s==="context-mode@context-mode")for(let a of i){let c=a.installPath;if(!c||_e(c)||!je(c).startsWith(n+Wh))continue;try{vw(c).isSymbolicLink()&&ys(c)}catch{}let u=Pt(c);_e(u)||Sw(u,{recursive:!0}),_e(o)&&CL(o,c,process.platform==="win32"?"junction":void 0)}}catch{}}}function Z(t,e){if(s1(),o1()&&e.content.length>0){let n=t1();e.content[0].text=`\u26A0\uFE0F context-mode v${Ur} outdated \u2192 v${Fr} available. Upgrade: ${n}
|
|
562
581
|
|
|
563
|
-
`+e.content[0].text}let r=e.content.reduce((n,o)=>n+Buffer.byteLength(o.text),0);return
|
|
582
|
+
`+e.content[0].text}let r=e.content.reduce((n,o)=>n+Buffer.byteLength(o.text),0);return te.calls[t]=(te.calls[t]||0)+1,te.bytesReturned[t]=(te.bytesReturned[t]||0)+r,Ru(),setImmediate(()=>zE(Ki(),t,r)),(t==="ctx_execute"||t==="ctx_execute_file"||t==="ctx_batch_execute")&&setImmediate(()=>NE({sessionDbPath:Ki(),toolName:t,bytesReturned:r})),e}function cr(t,e="unknown"){te.bytesIndexed+=t,Ru(),t>0&&setImmediate(()=>DE({sessionDbPath:Ki(),source:e,bytesAvoided:t}))}var i1=500,a1=2,c1=3e4,u1=256,Gh=0,bu,l1=/^[A-Za-z0-9._-]+$/;function d1(t){return l1.test(t)?t:`pid-${process.ppid}`}function Ew(){let t=process.env.CLAUDE_SESSION_ID||`pid-${process.ppid}`,e=d1(t),r=Kc(Nm(hs));return ke(r,`stats-${e}.json`)}function Ru(){let t=Date.now();if(!(t-Gh<i1)){Gh=t;try{let e=Object.values(te.bytesReturned).reduce((d,f)=>d+f,0),r=Object.values(te.calls).reduce((d,f)=>d+f,0),n=te.bytesIndexed+te.bytesSandboxed+te.cacheBytesSaved,o=n+e,s=o>0?Math.round((1-e/o)*100):0,i=Math.round(n/4),a=bu?.tokens??0;if(!bu||t-bu.computedAt>c1)try{a=(Bi({sessionsDir:Ne()})?.totalEvents??0)*u1,bu={tokens:a,computedAt:t}}catch{}let c={schemaVersion:a1,version:Ur,updated_at:t,session_start:te.sessionStart,uptime_ms:t-te.sessionStart,total_calls:r,bytes_returned:e,bytes_indexed:te.bytesIndexed,bytes_sandboxed:te.bytesSandboxed,cache_hits:te.cacheHits,cache_bytes_saved:te.cacheBytesSaved,kept_out:n,total_processed:o,reduction_pct:s,tokens_saved:i,dollars_saved_session:+(i*Vi()).toFixed(2),tokens_saved_lifetime:a,dollars_saved_lifetime:+(a*Vi()).toFixed(2),by_tool:Object.fromEntries(Object.keys({...te.calls,...te.bytesReturned}).map(d=>[d,{calls:te.calls[d]||0,bytes:te.bytesReturned[d]||0}]))},u=Ew(),l=`${u}.tmp`;Xh(l,JSON.stringify(c)),RL(l,u)}catch{}}}function eg(t,e){try{let r=Nh(process.env.CLAUDE_PROJECT_DIR),n=Dh(t,r);if(n.decision==="deny")return Z(e,{content:[{type:"text",text:`Command blocked by security policy: matches deny pattern ${n.matchedPattern}`}],isError:!0})}catch{}return null}function ww(t,e,r){try{let n=CE(t,e);if(n.length===0)return null;let o=Nh(process.env.CLAUDE_PROJECT_DIR);for(let s of n){let i=Dh(s,o);if(i.decision==="deny")return Z(r,{content:[{type:"text",text:`Command blocked by security policy: embedded shell command "${s}" matches deny pattern ${i.matchedPattern}`}],isError:!0})}}catch{}return null}function Jh(t,e){try{let r=$t(),n=cu("Read",r),o=uu(t,n,process.platform==="win32",r);if(o.denied)return Z(e,{content:[{type:"text",text:`File access blocked by security policy: path matches Read deny pattern ${o.matchedPattern}`}],isError:!0})}catch{}return null}var p1=Eu.join(", "),f1=Hc()?" (Bun detected \u2014 JS/TS runs 3-5x faster)":"",m1="",h1="";function g1(t){let e=[],r=0,n=0;for(;n<t.length;)if(t[n]===m1){for(e.push(r),n++;n<t.length&&t[n]!==h1;)r++,n++;n<t.length&&n++}else r++,n++;return e}function Tw(t,e,r=1500,n){if(t.length<=r)return t;let o=[];if(n)for(let u of g1(n))o.push(u);if(o.length===0){let u=e.toLowerCase().split(/\s+/).filter(d=>d.length>2),l=t.toLowerCase();for(let d of u){let f=l.indexOf(d);for(;f!==-1;)o.push(f),f=l.indexOf(d,f+1)}}if(o.length===0)return t.slice(0,r)+`
|
|
564
583
|
\u2026`;o.sort((u,l)=>u-l);let s=300,i=[];for(let u of o){let l=Math.max(0,u-s),d=Math.min(t.length,u+s);i.length>0&&l<=i[i.length-1][1]?i[i.length-1][1]=d:i.push([l,d])}let a=[],c=0;for(let[u,l]of i){if(c>=r)break;let d=t.slice(u,Math.min(l,u+(r-c)));a.push((u>0?"\u2026":"")+d+(l<t.length?"\u2026":"")),c+=d.length}return a.join(`
|
|
565
584
|
|
|
566
|
-
`)}function
|
|
567
|
-
(output cap reached \u2014 use ctx_search(queries: ["${
|
|
568
|
-
`);continue}let
|
|
585
|
+
`)}function y1(t,e,r,n=80*1024,o="batch"){let s=[],i=0,a=o==="global"?void 0:r;for(let c of e){if(i>n){s.push(`## ${c}
|
|
586
|
+
(output cap reached \u2014 use ctx_search(queries: ["${c}"]) for details)
|
|
587
|
+
`);continue}let u=t.searchWithFallback(c,3,a,void 0,"exact");if(s.push(`## ${c}`),s.push(""),u.length>0){for(let l of u){let d=Tw(l.content,c,3e3,l.highlighted);s.push(`### ${l.title}`),s.push(d),s.push(""),i+=d.length+l.title.length}continue}s.push("No matching sections found."),s.push("")}return o==="global"?s.push(`
|
|
588
|
+
> **Scope:** Queries searched the entire persistent index (query_scope: "global").`):s.push('\n> **Tip:** Results are scoped to this batch only. To search across all indexed sources, use `ctx_search(queries: [...])` or call ctx_batch_execute with `query_scope: "global"`.'),s}function _1(t){return`'${t.replace(/'/g,"'\\''")}'`}function x1(t){return`'${t.replace(/'/g,"''")}'`}function S1(t,e){let r=`--require ${e}`,n=t.toLowerCase(),o=n.split(/[\\/]/).pop()??n;return n.includes("powershell")||n.includes("pwsh")?`$env:NODE_OPTIONS=${x1(r)}; `:o==="cmd"||o==="cmd.exe"?`set "NODE_OPTIONS=${r.replace(/"/g,'""')}" && `:`NODE_OPTIONS=${_1(r)} `}var dw=500;function Pw(t){let e=t.replace(/\s+/g," ").trim();return e.length<=dw?e:e.slice(0,dw)+"\u2026"}var pw=2e3;function v1(t){return t.length<=pw?t:t.slice(0,pw)+`
|
|
589
|
+
\u2026 (truncated)`}function Rw(t,e,r){let n=r?`path=${r}
|
|
590
|
+
`:"",o=`\`\`\`${t}
|
|
591
|
+
${v1(e)}
|
|
592
|
+
\`\`\``;return`${n}${o}
|
|
569
593
|
|
|
570
|
-
${
|
|
571
|
-
|
|
594
|
+
`}function fw(t,e,r,n){let o=r||"(no output)",s=o.matchAll(/__CM_FS__:(\d+)/g),i=0;for(let c of s)i+=parseInt(c[1]);i>0&&(n?.(i),o=o.replace(/__CM_FS__:\d+\n?/g,""));let a=Pw(e);return`# ${t}
|
|
595
|
+
|
|
596
|
+
$ ${a}
|
|
597
|
+
|
|
598
|
+
${o}
|
|
599
|
+
`}function mw(t){let e=t.stdout||"",r=t.stderr||"";return r?e?`${e}${e.endsWith(`
|
|
572
600
|
`)?"":`
|
|
573
|
-
`}${r}`:r:e}async function
|
|
601
|
+
`}${r}`:r:e}async function b1(t,e,r){let{timeout:n,concurrency:o,nodeOptsPrefix:s,onFsBytes:i}=e;if(o<=1){let d=[],f=Date.now(),h=!1;for(let p=0;p<t.length;p++){let m=t[p],g;if(n!==void 0){let _=Date.now()-f,x=n-_;if(x<=0){d.push(`# ${m.label}
|
|
574
602
|
|
|
575
603
|
(skipped \u2014 batch timeout exceeded)
|
|
576
|
-
`),
|
|
604
|
+
`),h=!0;continue}g=x}let y=await r.execute({language:"shell",code:`${s}${m.command}`,timeout:g});if(d.push(fw(m.label,m.command,mw(y),i)),y.timedOut){h=!0;for(let _=p+1;_<t.length;_++)d.push(`# ${t[_].label}
|
|
577
605
|
|
|
578
606
|
(skipped \u2014 batch timeout exceeded)
|
|
579
|
-
`);break}}return{outputs:d,timedOut:
|
|
607
|
+
`);break}}return{outputs:d,timedOut:h}}let a=t.map(d=>({run:async()=>{let f=await r.execute({language:"shell",code:`${s}${d.command}`,timeout:n}),h=fw(d.label,d.command,mw(f),i);return{output:f.timedOut?h.replace(/\n$/,"")+`
|
|
580
608
|
(timed out after ${n??"?"}ms)
|
|
581
|
-
`:
|
|
609
|
+
`:h,timedOut:!!f.timedOut}}})),{settled:c}=await _m(a,{concurrency:o}),u=new Array(t.length),l=!1;for(let d=0;d<c.length;d++){let f=c[d];if(f.status==="fulfilled")u[d]=f.value.output,f.value.timedOut&&(l=!0);else{let h=f.reason instanceof Error?f.reason.message:String(f.reason);u[d]=`# ${t[d].label}
|
|
582
610
|
|
|
583
|
-
(executor error: ${
|
|
584
|
-
`}}return{outputs:u,timedOut:l}}
|
|
611
|
+
(executor error: ${h})
|
|
612
|
+
`}}return{outputs:u,timedOut:l}}De.registerTool("ctx_execute",{title:"Execute Code",description:`Run code in a sandboxed subprocess.${f1} Languages: ${p1}.
|
|
585
613
|
|
|
586
614
|
Think-in-Code \u2014 the core philosophy: the bytes your code processes never enter your conversation memory; only what you console.log() does. Reading a 700 KB log directly means 700 KB of your remaining reasoning capacity gets spent on raw bytes. Running code over that same log in this sandbox and printing a 3 KB summary leaves you with 697 KB of capacity for the actual work.
|
|
587
615
|
|
|
@@ -612,9 +640,9 @@ RETURNS:
|
|
|
612
640
|
Only what your code prints. Wrap risky calls in try/catch \u2014 uncaught errors go to stderr and may leak more than intended. When \`intent\` is set and output exceeds the auto-index threshold, the response carries searchable section titles + previews instead of the raw stdout; use ctx_search(queries: [...]) to drill into specific sections.
|
|
613
641
|
|
|
614
642
|
EXAMPLE: ctx_execute(language: "shell", code: "npm test 2>&1 | grep -E '(FAIL|\u2717|\xD7|Error:|Tests +.*(failed|passed))' | head -60")
|
|
615
|
-
EXAMPLE: ctx_execute(language: "javascript", code: "const out = require('child_process').execSync('gh issue list --json number,title --limit 100', {encoding:'utf8'}); const hooks = JSON.parse(out).filter(i => /hook|routing/i.test(i.title)); console.log(\`\${hooks.length} hook-related issues\`)")`,inputSchema
|
|
643
|
+
EXAMPLE: ctx_execute(language: "javascript", code: "const out = require('child_process').execSync('gh issue list --json number,title --limit 100', {encoding:'utf8'}); const hooks = JSON.parse(out).filter(i => /hook|routing/i.test(i.title)); console.log(\`\${hooks.length} hook-related issues\`)")`,inputSchema:O.object({language:O.enum(["javascript","typescript","python","shell","ruby","go","rust","php","perl","r","elixir","csharp"]).describe("Runtime language"),code:O.string().describe("Source code to execute. Use console.log (JS/TS), print (Python/Ruby/Perl/R), echo (Shell), echo (PHP), fmt.Println (Go), IO.puts (Elixir), or Console.WriteLine (C#) to output a summary to context."),timeout:O.coerce.number().optional().describe("Max execution time in ms. When omitted, no server-side timer fires \u2014 the MCP host's RPC timeout governs (which is the right layer for this policy). Pass an explicit value for long-running builds (Gradle/Maven/SBT)."),background:O.preprocess(ng,O.boolean()).optional().default(!1).describe("Keep process running after timeout (for servers/daemons). Returns partial output without killing the process. IMPORTANT: Do NOT add setTimeout/self-close timers in background scripts \u2014 the process must stay alive until the timeout detaches it. For server+fetch patterns, prefer putting both server and fetch in ONE ctx_execute call instead of using background."),intent:O.string().optional().describe(`What you're looking for in the output. When provided and output is large (>5KB), indexes output into knowledge base and returns section titles + previews \u2014 not full content. Use ctx_search(queries: [...]) to retrieve specific sections. Example: 'failing tests', 'HTTP 500 errors'.
|
|
616
644
|
|
|
617
|
-
TIP: Use specific technical terms, not just concepts. Check 'Searchable terms' in the response for available vocabulary.`)})},async({language:t,code:e,timeout:r,background:n,intent:o})=>{if(t==="shell"){let s=
|
|
645
|
+
TIP: Use specific technical terms, not just concepts. Check 'Searchable terms' in the response for available vocabulary.`)})},async({language:t,code:e,timeout:r,background:n,intent:o})=>{if(t==="shell"){let s=eg(e,"execute");if(s)return s}else{let s=ww(e,t,"execute");if(s)return s}try{let s=e;(t==="javascript"||t==="typescript")&&(s=`
|
|
618
646
|
// FS read instrumentation \u2014 count bytes read via fs.readFileSync/readFile
|
|
619
647
|
let __cm_fs=0;
|
|
620
648
|
process.on('exit',()=>{if(__cm_fs>0)try{process.stderr.write('__CM_FS__:'+__cm_fs+'\\n')}catch{}});
|
|
@@ -673,19 +701,19 @@ ${e}
|
|
|
673
701
|
}
|
|
674
702
|
__cm_main().catch(e=>{console.error(e);process.exitCode=1});${n?`
|
|
675
703
|
setInterval(()=>{},2147483647);`:""}
|
|
676
|
-
})(typeof require!=='undefined'?require:null);`);let i=await
|
|
704
|
+
})(typeof require!=='undefined'?require:null);`);let i=await Ji.execute({language:t,code:s,timeout:r,background:n}),a=Rw(t,e),c=i.stderr?.match(/__CM_NET__:(\d+)/);c&&(te.bytesSandboxed+=parseInt(c[1]),i.stderr=i.stderr.replace(/\n?__CM_NET__:\d+\n?/g,""));let u=i.stderr?.match(/__CM_FS__:(\d+)/);if(u&&(te.bytesSandboxed+=parseInt(u[1]),i.stderr=i.stderr.replace(/\n?__CM_FS__:\d+\n?/g,"")),i.timedOut){let d=i.stdout?.trim();return i.backgrounded&&d?Z("ctx_execute",{content:[{type:"text",text:`${a}${d}
|
|
677
705
|
|
|
678
|
-
_(process backgrounded after ${r}ms \u2014 still running)_`}]}):
|
|
706
|
+
_(process backgrounded after ${r}ms \u2014 still running)_`}]}):d?Z("ctx_execute",{content:[{type:"text",text:`${a}${d}
|
|
679
707
|
|
|
680
|
-
_(timed out after ${r}ms \u2014 partial output shown above)_`}]}):
|
|
708
|
+
_(timed out after ${r}ms \u2014 partial output shown above)_`}]}):Z("ctx_execute",{content:[{type:"text",text:`${a}Execution timed out after ${r}ms
|
|
681
709
|
|
|
682
710
|
stderr:
|
|
683
|
-
${i.stderr}`}],isError:!0})}if(i.exitCode!==0){let{isError:
|
|
684
|
-
Use ctx_search(queries: ["..."]) to query this content. Use source: "${n.label}" to scope results.`}]}}var
|
|
685
|
-
`).length,s=Buffer.byteLength(t),i=
|
|
711
|
+
${i.stderr}`}],isError:!0})}if(i.exitCode!==0){let{isError:d,output:f}=Mh({language:t,exitCode:i.exitCode,stdout:i.stdout,stderr:i.stderr});return o&&o.trim().length>0&&Buffer.byteLength(f)>$u?(cr(Buffer.byteLength(f)),Z("ctx_execute",{content:[{type:"text",text:`${a}${gs(f,o,d?`execute:${t}:error`:`execute:${t}`)}`}],isError:d})):Buffer.byteLength(f)>Cu?(cr(Buffer.byteLength(f)),Z("ctx_execute",{content:[{type:"text",text:`${a}${gs(f,"errors failures exceptions",d?`execute:${t}:error`:`execute:${t}`)}`}],isError:d})):Z("ctx_execute",{content:[{type:"text",text:`${a}${f}`}],isError:d})}let l=i.stdout||"(no output)";if(o&&o.trim().length>0&&Buffer.byteLength(l)>$u)return cr(Buffer.byteLength(l)),Z("ctx_execute",{content:[{type:"text",text:`${a}${gs(l,o,`execute:${t}`)}`}]});if(Buffer.byteLength(l)>Cu){let d=$w(l,`execute:${t}`),f={...d,content:d.content.map((h,p)=>p===0&&h.type==="text"?{...h,text:`${a}${h.text}`}:h)};return Z("ctx_execute",f)}return Z("ctx_execute",{content:[{type:"text",text:`${a}${l}`}]})}catch(s){let i=s instanceof Error?s.message:String(s);return Z("ctx_execute",{content:[{type:"text",text:`Runtime error: ${i}`}],isError:!0})}});function $w(t,e){let r=br();cr(Buffer.byteLength(t));let n=r.index({content:t,source:e,attribution:lo()});return{content:[{type:"text",text:`Indexed ${n.totalChunks} sections (${n.codeChunks} with code) from: ${n.label}
|
|
712
|
+
Use ctx_search(queries: ["..."]) to query this content. Use source: "${n.label}" to scope results.`}]}}var $u=5e3,Cu=102400;function gs(t,e,r,n=5){let o=t.split(`
|
|
713
|
+
`).length,s=Buffer.byteLength(t),i=br(),a=i.indexPlainText(t,r,void 0,lo()),c=i.searchWithFallback(e,n,r),u=i.getDistinctiveTerms(a.sourceId);if(c.length===0){let d=[`Indexed ${a.totalChunks} sections from "${r}" into knowledge base.`,`No sections matched intent "${e}" in ${o}-line output (${(s/1024).toFixed(1)}KB).`];return u.length>0&&(d.push(""),d.push(`Searchable terms: ${u.join(", ")}`)),d.push(""),d.push("Use ctx_search(queries: [...]) to explore the indexed content."),d.join(`
|
|
686
714
|
`)}let l=[`Indexed ${a.totalChunks} sections from "${r}" into knowledge base.`,`${c.length} sections matched "${e}" (${o} lines, ${(s/1024).toFixed(1)}KB):`,""];for(let d of c){let f=d.content.split(`
|
|
687
715
|
`)[0].slice(0,120);l.push(` - ${d.title}: ${f}`)}return u.length>0&&(l.push(""),l.push(`Searchable terms: ${u.join(", ")}`)),l.push(""),l.push("Use ctx_search(queries: [...]) to retrieve full content of any section."),l.join(`
|
|
688
|
-
`)}
|
|
716
|
+
`)}De.registerTool("ctx_execute_file",{title:"Execute File Processing",description:`Read a file into a sandboxed FILE_CONTENT variable and run code over it. Only what you console.log() enters your conversation \u2014 the file bytes stay in the sandbox.
|
|
689
717
|
|
|
690
718
|
Think-in-Code applied to file-level analysis: Reading the whole file means every byte enters your conversation memory and costs reasoning capacity for the rest of the session. Running code over it here lets you keep the raw bytes out and only the derived answer in. Same principle as ctx_execute, scoped to one named file via the FILE_CONTENT variable.
|
|
691
719
|
|
|
@@ -704,7 +732,7 @@ RETURNS:
|
|
|
704
732
|
Only what your code prints. The FILE_CONTENT variable holds the raw bytes inside the sandbox; nothing else leaves. When \`intent\` is set and output exceeds the auto-index threshold, the response carries searchable section titles + previews instead of the raw stdout.
|
|
705
733
|
|
|
706
734
|
EXAMPLE: ctx_execute_file(path: "huge.log", language: "javascript", code: "const errs = FILE_CONTENT.split('\\\\n').filter(l => /ERROR|FATAL/.test(l)); console.log(\`\${errs.length} error lines\`); console.log(errs.slice(-5).join('\\\\n'))")
|
|
707
|
-
EXAMPLE: ctx_execute_file(path: "data.csv", language: "javascript", code: "const rows = FILE_CONTENT.split('\\\\n'); console.log(\`rows: \${rows.length - 1}, header: \${rows[0]}\`)")`,inputSchema
|
|
735
|
+
EXAMPLE: ctx_execute_file(path: "data.csv", language: "javascript", code: "const rows = FILE_CONTENT.split('\\\\n'); console.log(\`rows: \${rows.length - 1}, header: \${rows[0]}\`)")`,inputSchema:O.object({path:O.string().describe("Absolute file path or relative to project root"),language:O.enum(["javascript","typescript","python","shell","ruby","go","rust","php","perl","r","elixir","csharp"]).describe("Runtime language"),code:O.string().describe("Code to process FILE_CONTENT (file_content in Elixir). Print summary via console.log/print/echo/IO.puts/Console.WriteLine."),timeout:O.coerce.number().optional().describe("Max execution time in ms. When omitted, no server-side timer fires \u2014 the MCP host's RPC timeout governs."),intent:O.string().optional().describe("What you're looking for in the output. When provided and output is large (>5KB), returns only matching sections via BM25 search instead of truncated output.")})},async({path:t,language:e,code:r,timeout:n,intent:o})=>{let s=Jh(t,"ctx_execute_file");if(s)return s;if(e==="shell"){let i=eg(r,"execute_file");if(i)return i}else{let i=ww(r,e,"execute_file");if(i)return i}try{let i=await Ji.executeFile({path:t,language:e,code:r,timeout:n}),a=Rw(e,r,t);if(i.timedOut)return Z("ctx_execute_file",{content:[{type:"text",text:`${a}Timed out processing ${t} after ${n}ms`}],isError:!0});if(i.exitCode!==0){let{isError:u,output:l}=Mh({language:e,exitCode:i.exitCode,stdout:i.stdout,stderr:i.stderr});return o&&o.trim().length>0&&Buffer.byteLength(l)>$u?(cr(Buffer.byteLength(l)),Z("ctx_execute_file",{content:[{type:"text",text:`${a}${gs(l,o,u?`file:${t}:error`:`file:${t}`)}`}],isError:u})):Buffer.byteLength(l)>Cu?(cr(Buffer.byteLength(l)),Z("ctx_execute_file",{content:[{type:"text",text:`${a}${gs(l,"errors failures exceptions",u?`file:${t}:error`:`file:${t}`)}`}],isError:u})):Z("ctx_execute_file",{content:[{type:"text",text:`${a}${l}`}],isError:u})}let c=i.stdout||"(no output)";if(o&&o.trim().length>0&&Buffer.byteLength(c)>$u)return cr(Buffer.byteLength(c)),Z("ctx_execute_file",{content:[{type:"text",text:`${a}${gs(c,o,`file:${t}`)}`}]});if(Buffer.byteLength(c)>Cu){let u=$w(c,`file:${t}`),l={...u,content:u.content.map((d,f)=>f===0&&d.type==="text"?{...d,text:`${a}${d.text}`}:d)};return Z("ctx_execute_file",l)}return Z("ctx_execute_file",{content:[{type:"text",text:`${a}${c}`}]})}catch(i){let a=i instanceof Error?i.message:String(i);return Z("ctx_execute_file",{content:[{type:"text",text:`Runtime error: ${a}`}],isError:!0})}});De.registerTool("ctx_index",{title:"Index Content",description:`Store content in a searchable knowledge base (BM25 over FTS5). Splits markdown by headings, keeps code blocks intact, and persists the raw chunks. The full content stays in storage \u2014 retrieve any section on-demand via ctx_search; nothing is summarized or truncated.
|
|
708
736
|
|
|
709
737
|
WHEN:
|
|
710
738
|
- Documentation from Context7, Skills, or MCP tools (API docs, framework guides, code examples)
|
|
@@ -722,35 +750,37 @@ RETURNS:
|
|
|
722
750
|
Indexing metadata: chunk counts (total, code-bearing), source label, and the exact ctx_search call shape to query the indexed content. Raw content is NOT echoed back \u2014 it lives in storage, retrievable via ctx_search(source: "<label>"). When \`path\` is provided, a content hash is stored so ctx_search results auto-flag staleness on future calls.
|
|
723
751
|
|
|
724
752
|
EXAMPLE: ctx_index(content: "# React useEffect\\n\\nThe Effect Hook lets you ...", source: "react-useeffect-docs")
|
|
725
|
-
EXAMPLE: ctx_index(path: "/path/to/large-spec.md", source: "openapi-v2-spec")`,inputSchema
|
|
726
|
-
Use ctx_search(queries: ["..."]) to query this content.`}]})}if(t)
|
|
727
|
-
Use ctx_search(queries: ["..."]) to query this content. Use source: "${f.label}" to scope results.`}]})}catch(l){let d=l instanceof Error?l.message:String(l);return
|
|
753
|
+
EXAMPLE: ctx_index(path: "/path/to/large-spec.md", source: "openapi-v2-spec")`,inputSchema:O.object({content:O.string().optional().describe("Raw text/markdown to index. Provide this OR path, not both."),path:O.string().optional().describe("File OR directory path to read and index (content never enters context). Provide this OR content. Directory paths trigger a bounded recursive walk (#687)."),source:O.string().optional().describe("Label for the indexed content (e.g., 'Context7: React useEffect', 'Skill: frontend-design')"),include:O.array(O.string()).optional().describe("Directory-only: glob patterns to include (default: all matching extensions)."),exclude:O.array(O.string()).optional().describe("Directory-only: glob patterns to exclude. Merged with defaults (node_modules, .git, dist, build, .next, coverage, .venv, __pycache__, .DS_Store)."),maxDepth:O.number().int().min(0).optional().describe("Directory-only: max recursion depth from root (default: 5)."),maxFiles:O.number().int().min(1).optional().describe("Directory-only: hard cap on files indexed (default: 200) \u2014 FTS5 blow-up guard."),extensions:O.array(O.string()).optional().describe("Directory-only: allowed file extensions (default: .md .mdx .txt .json .yaml .yml .ts .tsx .js .jsx .py .rs .go .sh)."),respectGitignore:O.boolean().optional().describe("Directory-only: apply nearest .gitignore (default: true)."),followSymlinks:O.boolean().optional().describe("Directory-only: follow directory symlinks (default: false \u2014 cycle hazard + escape risk).")})},async({content:t,path:e,source:r,include:n,exclude:o,maxDepth:s,maxFiles:i,extensions:a,respectGitignore:c,followSymlinks:u})=>{if(!t&&!e)return Z("ctx_index",{content:[{type:"text",text:"Error: Either content or path must be provided"}],isError:!0});if(e){let l=Jh(e,"ctx_index");if(l)return l}try{let l=e?XL(e):void 0;if(l&&_e(l)&&vw(l).isSymbolicLink()){let p;try{p=OL(l)}catch{return Z("ctx_index",{content:[{type:"text",text:"Error: symlink target could not be resolved."}]})}if(p!==l){let m=Jh(p,"ctx_index");if(m)return m}}if(l&&_e(l)&&Tu(l).isDirectory()){let h=br(),p=$t(),m=cu("Read",p),g=process.platform==="win32",y=R=>{try{return uu(R,m,g,p).denied}catch{return!1}},_=h.indexDirectory({path:l,source:r??l,attribution:lo(),perFileDeny:y,include:n,exclude:o,maxDepth:s,maxFiles:i,extensions:a,respectGitignore:c,followSymlinks:u}),x=_.capped?` (cap reached \u2014 only first ${_.filesIndexed} of ${_.totalSeen}+ files; raise maxFiles to index more)`:"",S=_.denied>0?` (${_.denied} file${_.denied===1?"":"s"} blocked by Read deny policy)`:"",k=_.failed>0?` (${_.failed} file${_.failed===1?"":"s"} failed to read)`:"";return Z("ctx_index",{content:[{type:"text",text:`Indexed ${_.filesIndexed} file${_.filesIndexed===1?"":"s"} (${_.totalChunks} sections) from directory: ${_.label}${x}${S}${k}
|
|
754
|
+
Use ctx_search(queries: ["..."]) to query this content.`}]})}if(t)cr(Buffer.byteLength(t));else if(l)try{let h=await import("fs");cr(h.readFileSync(l).byteLength)}catch{}let f=br().index({content:t,path:l,source:r??l,attribution:lo()});return Z("ctx_index",{content:[{type:"text",text:`Indexed ${f.totalChunks} sections (${f.codeChunks} with code) from: ${f.label}
|
|
755
|
+
Use ctx_search(queries: ["..."]) to query this content. Use source: "${f.label}" to scope results.`}]})}catch(l){let d=l instanceof Error?l.message:String(l);return Z("ctx_index",{content:[{type:"text",text:`Index error: ${d}`}],isError:!0})}});function tg(t,e){let r=process.env[t];if(!r)return e;let n=Number(r);return Number.isFinite(n)&&n>0?n:e}var vr=0,Fh=Date.now(),k1=tg("CONTEXT_MODE_SEARCH_WINDOW_MS",6e4),Zh=tg("CONTEXT_MODE_SEARCH_MAX_RESULTS_AFTER",3),ku=tg("CONTEXT_MODE_SEARCH_BLOCK_AFTER",8);function rg(t){if(typeof t=="string"){if(t.trim().length===0)return t;try{let r=JSON.parse(t);if(Array.isArray(r))return r}catch{}return[t]}return t}function ng(t){if(typeof t=="string"){let e=t.trim().toLowerCase();if(e==="true")return!0;if(e==="false")return!1}return t}function E1(t){let e=rg(t);return Array.isArray(e)?e.map((r,n)=>typeof r=="string"?{label:`cmd_${n+1}`,command:r}:r):e}De.registerTool("ctx_search",{title:"Search Indexed Content",description:'Search a unified knowledge base with a multi-strategy ranking pipeline. Two parallel matchers run on every query: a Porter-stemming matcher ("caching" finds "cached", "caches", "cach") and a trigram-substring matcher ("useEff" finds "useEffect"). Their ranked lists are merged via Reciprocal Rank Fusion, so a document that ranks well in both surfaces above one that wins only on a single strategy. Multi-term queries get an additional proximity-rerank pass that boosts passages where the query terms appear close together. Typos are corrected via Levenshtein distance and re-searched. Result snippets are window-extracted around the matched terms, not blindly truncated.\n\nThe knowledge base is unified: queries reach indexed content you stored (ctx_index, ctx_fetch_and_index, ctx_batch_execute output) AND auto-captured session memory written by hooks (decisions, errors, blockers, plans, user prompts, rejected approaches, tool failures, compaction guides \u2014 26 event categories). File-backed sources carry a content hash and auto-flag staleness when the source file changes.\n\nWHEN:\n - You want to recall something that exists in storage (recently indexed content, prior session events, auto-memory) instead of re-reading raw sources\n - You have multiple related questions about the same body of knowledge \u2014 batch every question into one call (the ranking pipeline runs per-query but the round-trip cost is paid once)\n - You want to scope the query to one labelled source (pass `source` \u2014 partial match is fine)\n - You want a chronological view across current session + prior sessions + persistent auto-memory (pass `sort: "timeline"` \u2014 the default `relevance` mode only ranks within the current session)\n - You want to filter ranked results by content shape (pass `contentType: "code"` to surface implementation snippets or `contentType: "prose"` to surface explanations)\n\nWHEN NOT:\n - The data you want to query has never been stored in the knowledge base AND no session memory has accumulated around it \u2014 capture first (run a gather-and-index call), then come back here to query\n - You have one ad-hoc question against data that is not in the knowledge base \u2014 answer it inline by running code in the sandbox tool; one round-trip instead of capture-then-query\n\nRETURNS:\n Per-query ranked sections with window-extracted snippets. Use 2-4 specific technical terms per query. Common session-memory source labels: `decision` (user corrections / preferences), `error` and `error-resolution` (past failures + their fixes), `blocker`, `plan`, `user-prompt`, `rejected-approach`, `compaction` (post-compact session guide). See ctx_stats for live category counts. Each response carries a throttle counter (call #N/M in the rolling time window); results taper toward the soft cap and calls block after the hard cap. Tune via CONTEXT_MODE_SEARCH_WINDOW_MS, CONTEXT_MODE_SEARCH_MAX_RESULTS_AFTER, CONTEXT_MODE_SEARCH_BLOCK_AFTER.\n\nEXAMPLE: ctx_search(queries: ["root cause", "proposed fix", "test coverage"], source: "issue-#683")\nEXAMPLE: ctx_search(queries: ["what did we decide about caching"], source: "decision", sort: "timeline")\nEXAMPLE: ctx_search(queries: ["useEffect cleanup pattern"], source: "react-docs", contentType: "code", limit: 5)\nEXAMPLE: ctx_search(queries: ["last user prompt", "active skills", "open blockers"], sort: "timeline")',inputSchema:BE(Uh)},async t=>{try{let e=br(),r=t.sort||"relevance";if(r!=="timeline"&&e.getStats().chunks===0)return Z("ctx_search",{content:[{type:"text",text:`Knowledge base is empty \u2014 no content has been indexed yet.
|
|
728
756
|
|
|
729
757
|
ctx_search is a follow-up tool that queries previously indexed content. To gather and index content first, use:
|
|
730
758
|
\u2022 ctx_batch_execute(commands, queries) \u2014 run commands, auto-index output, and search in one call
|
|
731
759
|
\u2022 ctx_fetch_and_index(url) \u2014 fetch a URL, index it, then search with ctx_search
|
|
732
760
|
\u2022 ctx_index(content, source) \u2014 manually index text content
|
|
733
761
|
|
|
734
|
-
After indexing, ctx_search becomes available for follow-up queries.`}],isError:!0});let n=t,o=[];if(Array.isArray(n.queries)&&n.queries.length>0?o.push(...n.queries):typeof n.query=="string"&&n.query.length>0&&o.push(n.query),o.length===0)return
|
|
762
|
+
After indexing, ctx_search becomes available for follow-up queries.`}],isError:!0});let n=t,o=[];if(Array.isArray(n.queries)&&n.queries.length>0?o.push(...n.queries):typeof n.query=="string"&&n.query.length>0&&o.push(n.query),o.length===0)return Z("ctx_search",{content:[{type:"text",text:"Error: provide query or queries."}],isError:!0});let{limit:s=3,source:i,contentType:a,project:c}=t,u=qE(c,Uh,()=>$t()),l=Date.now();if(l-Fh>k1&&(vr=0,Fh=l),vr++,vr>ku)return Z("ctx_search",{content:[{type:"text",text:`BLOCKED: ${vr} search calls in ${Math.round((l-Fh)/1e3)}s. You're flooding context. STOP making individual search calls. Use ctx_batch_execute(commands, queries) for your next research step.`}],isError:!0});let d=vr>Zh?1:Math.min(s,2),f=40*1024,h=0,p=[],m=null;if(r==="timeline"||typeof u=="string")try{let R=Ne(),$=$t(),C=Ni({projectDir:$,sessionsDir:R});_e(C)&&(m=new nr({dbPath:C}))}catch{}let y;if(typeof u=="string"&&m)try{y=new Set(m.getSessionIdsForProject(u))}catch{}let _=ar?.getConfigDir()??wt();try{for(let R of o){if(h>f){p.push(`## ${R}
|
|
735
763
|
(output cap reached)
|
|
736
|
-
`);continue}let
|
|
737
|
-
No results found.`);continue}let
|
|
738
|
-
${
|
|
764
|
+
`);continue}let $;if(r==="timeline"?$=ZE({query:R,limit:d,store:e,sort:r,source:i,contentType:a,sessionDB:m,projectDir:$t(),configDir:_,adapter:ar??void 0,projectScope:u}):$=e.searchWithFallback(R,d,i,a,"like",y),$.length===0){p.push(`## ${R}
|
|
765
|
+
No results found.`);continue}let C=$.map((A,W)=>{let T=A.origin||"current-session",E=A.timestamp?A.timestamp.slice(0,16).replace("T"," "):"",L=`--- [${T}${E?" | "+E:""} | ${A.source}] ---`,pe=`### ${A.title}`,dt=Tw(A.content,R,1500,A.highlighted);return`${L}
|
|
766
|
+
${pe}
|
|
739
767
|
|
|
740
|
-
${
|
|
768
|
+
${dt}`}).join(`
|
|
741
769
|
|
|
742
|
-
`);
|
|
770
|
+
`);p.push(`## ${R}
|
|
743
771
|
|
|
744
|
-
${
|
|
772
|
+
${C}`),h+=C.length}}finally{try{m?.close()}catch{}}let x=p.join(`
|
|
745
773
|
|
|
746
774
|
---
|
|
747
775
|
|
|
748
|
-
`);
|
|
776
|
+
`);e.lastRefreshCount>0&&(x=`> Auto-refreshed ${e.lastRefreshCount} stale source${e.lastRefreshCount>1?"s":""} (file changed since indexing).
|
|
777
|
+
|
|
778
|
+
`+x);let S=Math.max(0,ku-vr),k=Math.max(0,Zh-vr);if(vr>=Zh?x+=`
|
|
749
779
|
|
|
750
|
-
|
|
780
|
+
\u26A0 search call #${vr}/${ku} in this window. Results limited to ${d}/query. ${S} call(s) remaining before block. Batch queries: ctx_search(queries: ["q1","q2","q3"]) or use ctx_batch_execute.`:x+=`
|
|
751
781
|
|
|
752
|
-
|
|
753
|
-
Indexed sources: ${
|
|
782
|
+
> Throttle: call #${vr}/${ku} in this window. ${k} call(s) before soft cap. Prefer ctx_search(queries: [...]) array form for multi-query workloads \u2014 it counts as a single call.`,x.trim().length===0){let R=e.listSources(),$=R.length>0?`
|
|
783
|
+
Indexed sources: ${R.map(C=>`"${C.label}" (${C.chunkCount} sections)`).join(", ")}`:"";return Z("ctx_search",{content:[{type:"text",text:`No results found.${$}`}]})}return Z("ctx_search",{content:[{type:"text",text:x}]})}catch(e){let r=e instanceof Error?e.message:String(e);return Z("ctx_search",{content:[{type:"text",text:`Search error: ${r}`}],isError:!0})}});var Bh=null,qh=null;function w1(){return Bh||(Bh=_w(import.meta.url).resolve("turndown")),Bh}function T1(){return qh||(qh=_w(import.meta.url).resolve("turndown-plugin-gfm")),qh}function P1(t,e){let r=JSON.stringify(w1()),n=JSON.stringify(T1()),o=JSON.stringify(e),s=Ou.toString(),i=Ou.name||"classifyIp",a=i==="classifyIp"?`var classifyIp = ${s};`:`var ${i} = ${s};
|
|
754
784
|
var classifyIp = ${i};`,c=process.env.CTX_FETCH_STRICT==="1";return`
|
|
755
785
|
const TurndownService = require(${r});
|
|
756
786
|
const { gfm } = require(${n});
|
|
@@ -944,6 +974,25 @@ async function fetchWithManualRedirect(initialUrl) {
|
|
|
944
974
|
throw new Error('SSRF blocked: redirect chain exceeded ' + MAX_REDIRECTS + ' hops');
|
|
945
975
|
}
|
|
946
976
|
|
|
977
|
+
// Subprocess response-body size cap. A malicious or unexpectedly large
|
|
978
|
+
// endpoint reachable through ctx_fetch_and_index would otherwise stream
|
|
979
|
+
// gigabytes into resp.text(), then into outputPath, then into the parent
|
|
980
|
+
// MCP server's heap via readFileSync. 50 MB is far above typical web
|
|
981
|
+
// page / API response sizes (~1-5 MB) but bounded enough to keep parent
|
|
982
|
+
// heap survivable. Cap both early via Content-Length and after the read.
|
|
983
|
+
const MAX_FETCH_BYTES = 50 * 1024 * 1024;
|
|
984
|
+
async function safeText(resp) {
|
|
985
|
+
const cl = parseInt(resp.headers.get('content-length') || '0', 10);
|
|
986
|
+
if (cl > MAX_FETCH_BYTES) {
|
|
987
|
+
throw new Error('Response too large: Content-Length ' + cl + ' exceeds ' + MAX_FETCH_BYTES);
|
|
988
|
+
}
|
|
989
|
+
const text = await resp.text();
|
|
990
|
+
if (text.length > MAX_FETCH_BYTES) {
|
|
991
|
+
throw new Error('Response too large: ' + text.length + ' bytes exceeds ' + MAX_FETCH_BYTES);
|
|
992
|
+
}
|
|
993
|
+
return text;
|
|
994
|
+
}
|
|
995
|
+
|
|
947
996
|
async function main() {
|
|
948
997
|
const resp = await fetchWithManualRedirect(url);
|
|
949
998
|
if (!resp.ok) { console.error("HTTP " + resp.status); process.exit(1); }
|
|
@@ -951,7 +1000,7 @@ async function main() {
|
|
|
951
1000
|
|
|
952
1001
|
// --- JSON responses ---
|
|
953
1002
|
if (contentType.includes('application/json') || contentType.includes('+json')) {
|
|
954
|
-
const text = await resp
|
|
1003
|
+
const text = await safeText(resp);
|
|
955
1004
|
try {
|
|
956
1005
|
const pretty = JSON.stringify(JSON.parse(text), null, 2);
|
|
957
1006
|
emit('json', pretty);
|
|
@@ -963,7 +1012,7 @@ async function main() {
|
|
|
963
1012
|
|
|
964
1013
|
// --- HTML responses (default for text/html, application/xhtml+xml) ---
|
|
965
1014
|
if (contentType.includes('text/html') || contentType.includes('application/xhtml')) {
|
|
966
|
-
const html = await resp
|
|
1015
|
+
const html = await safeText(resp);
|
|
967
1016
|
const td = new TurndownService({ headingStyle: 'atx', codeBlockStyle: 'fenced' });
|
|
968
1017
|
td.use(gfm);
|
|
969
1018
|
td.remove(['script', 'style', 'nav', 'header', 'footer', 'noscript']);
|
|
@@ -972,13 +1021,13 @@ async function main() {
|
|
|
972
1021
|
}
|
|
973
1022
|
|
|
974
1023
|
// --- Everything else: plain text, CSV, XML, etc. ---
|
|
975
|
-
const text = await resp
|
|
1024
|
+
const text = await safeText(resp);
|
|
976
1025
|
emit('text', text);
|
|
977
1026
|
}
|
|
978
1027
|
main();
|
|
979
|
-
`}var
|
|
1028
|
+
`}var R1=1440*60*1e3,hw=3072;function $1(t){if(t===0)return"0ms";let e=1440*60*1e3,r=3600*1e3,n=60*1e3;return t%e===0?`${t/e}d`:t%r===0?`${t/r}h`:t%n===0?`${t/n}m`:`${t}ms`}async function C1(t){let e;try{e=new URL(t)}catch{return{kind:"fetch_error",url:t,error:"invalid URL",reason:"exit"}}if(e.protocol!=="http:"&&e.protocol!=="https:")return{kind:"fetch_error",url:t,error:`URL scheme "${e.protocol}" not allowed (only http: and https:)`,reason:"exit"};let r=process.env.CTX_FETCH_STRICT==="1";try{let{lookup:n}=await import("node:dns/promises"),o=await n(e.hostname,{all:!0,verbatim:!0});for(let s of o){let i=Ou(s.address);if(i==="block")return{kind:"fetch_error",url:t,error:`URL "${e.hostname}" resolves to ${s.address} \u2014 blocked (link-local / IMDS / multicast / reserved)`,reason:"exit"};if(i==="private"&&r)return{kind:"fetch_error",url:t,error:`URL "${e.hostname}" resolves to private IP ${s.address} \u2014 blocked under CTX_FETCH_STRICT=1`,reason:"exit"}}}catch(n){let o=n?.code??"",s=o==="ETIMEOUT"||o==="ETIMEDOUT"||o==="EAI_AGAIN"||o==="ENETUNREACH"||o==="EPERM",i=n instanceof Error?n.message:String(n),a=s?" \u2014 transient DNS error; retry once before falling back. If it keeps failing, the MCP host may be running under a network sandbox; restart the host with network access enabled.":"";return{kind:"fetch_error",url:t,error:`DNS lookup failed for "${e.hostname}": ${i}${a}`,reason:"exit"}}return null}function Ou(t){let e=t.indexOf("%"),r=e===-1?t:t.slice(0,e),n=r.toLowerCase();if(n.includes(":")){let a=n.match(/^::ffff:([\d.]+)$/);return a?Ou(a[1]):n==="::"||n.startsWith("fe8")||n.startsWith("fe9")||n.startsWith("fea")||n.startsWith("feb")||n.startsWith("ff")?"block":n==="::1"||n.startsWith("fc")||n.startsWith("fd")?"private":"public"}if(!r.includes("."))return"block";let o=r.split(".").map(a=>parseInt(a,10));if(o.length!==4||o.some(a=>isNaN(a)||a<0||a>255))return"block";let[s,i]=o;return s===169&&i===254||s===0||s>=224?"block":s===127||s===10||s===172&&i>=16&&i<=31||s===192&&i===168?"private":"public"}async function O1(t,e,r,n){let o=await C1(t);if(o)return o;if(!r&&n!==0){let i=br(),a=$m(e,t),c=i.getSourceMeta(a);if(c){let u=new Date(c.indexedAt+"Z"),l=Date.now()-u.getTime(),d=n??R1;if(l<d){let f=Math.floor(l/36e5),h=Math.floor(l/(60*1e3)),p=f>0?`${f}h ago`:h>0?`${h}m ago`:"just now",m=c.chunkCount*1600;return{kind:"cached",label:c.label,chunkCount:c.chunkCount,estimatedBytes:m,ageStr:p,ttlStr:$1(d)}}}}let s=ke(Yh(),`ctx-fetch-${Date.now()}-${Math.random().toString(36).slice(2)}.dat`);try{let i=P1(t,s),a=await Ji.execute({language:"javascript",code:i,timeout:3e4});if(a.exitCode!==0){let l=a.stderr||a.stdout||"unknown error",f=/\b(EAI_AGAIN|ETIMEDOUT|ETIMEOUT|ENETUNREACH|EPERM|getaddrinfo)\b/.test(l)?" \u2014 transient DNS error; retry once before falling back. If it keeps failing, the MCP host may be running under a network sandbox; restart the host with network access enabled.":"";return{kind:"fetch_error",url:t,error:`${l}${f}`,reason:"exit"}}let c=(a.stdout||"").trim(),u;try{let d=Tu(s).size;if(d>52428800)return{kind:"fetch_error",url:t,error:`subprocess output ${d} bytes exceeds cap 52428800`,reason:"read"};u=Gi(s,"utf-8").trim()}catch{return{kind:"fetch_error",url:t,error:"could not read subprocess output",reason:"read"}}return u.length===0?{kind:"fetch_error",url:t,error:"empty content",reason:"empty"}:{kind:"fetched",url:t,source:e,markdown:u,header:c}}catch(i){return{kind:"fetch_error",url:t,error:i instanceof Error?i.message:String(i),reason:"throw"}}finally{try{wu(s)}catch{}}}function I1(t){let e=br(),r=$m(t.source,t.url),n=lo(),o;t.header==="__CM_CT__:json"?o=e.indexJSON(t.markdown,r,void 0,n):t.header==="__CM_CT__:text"?o=e.indexPlainText(t.markdown,r,void 0,n):o=e.index({content:t.markdown,source:r,attribution:n}),cr(Buffer.byteLength(t.markdown));let s=t.markdown.length>hw?IE(t.markdown,hw)+`
|
|
980
1029
|
|
|
981
|
-
\u2026[truncated \u2014 use ctx_search() for full content]`:t.markdown;return{label:o.label,totalChunks:o.totalChunks,totalBytes:Buffer.byteLength(t.markdown),preview:s}}
|
|
1030
|
+
\u2026[truncated \u2014 use ctx_search() for full content]`:t.markdown;return{label:o.label,totalChunks:o.totalChunks,totalBytes:Buffer.byteLength(t.markdown),preview:s}}De.registerTool("ctx_fetch_and_index",{title:"Fetch & Index URL(s)",description:`Fetches URL content, converts HTML to markdown (JSON is chunked by key paths, plain text indexed directly), persists it in a searchable knowledge base, and returns a small preview window per source. The raw page bytes never enter your conversation \u2014 they live in storage and you retrieve any section on-demand via ctx_search.
|
|
982
1031
|
|
|
983
1032
|
Caching: every fetch is cached on disk and reused for repeat calls within the TTL window. The default TTL is 24 hours; override per-call with the \`ttl\` parameter (milliseconds, \`ttl: 0\` bypasses cache like \`force: true\`). Stored content older than 14 days is cleaned up on startup.
|
|
984
1033
|
|
|
@@ -998,15 +1047,15 @@ RETURNS:
|
|
|
998
1047
|
EXAMPLE: ctx_fetch_and_index(
|
|
999
1048
|
requests: [{url: "https://react.dev/...", source: "react"}, {url: "https://vuejs.org/...", source: "vue"}],
|
|
1000
1049
|
concurrency: 5
|
|
1001
|
-
)`,inputSchema
|
|
1050
|
+
)`,inputSchema:O.object({url:O.string().optional().describe("Single URL to fetch and index (legacy single-shape)"),source:O.string().optional().describe("Label for the indexed content when using single `url` (e.g., 'React useEffect docs', 'Supabase Auth API'). For batch, put source in each requests entry."),requests:O.preprocess(rg,O.array(O.object({url:O.string().describe("URL to fetch"),source:O.string().optional().describe("Label for this URL's indexed content")})).min(1)).optional().describe("Batch shape: array of {url, source?} entries. Use with concurrency>1 for parallel fetch. Each request indexed under its own source label. Output preserves input order."),concurrency:O.coerce.number().int().min(1).max(8).optional().default(1).describe("Max URLs to fetch in parallel (1-8, default: 1). Use 4-8 for I/O-bound multi-URL batches (library docs, changelogs, pricing pages). Capped by os.cpus().length on small machines (response notes when capped). Indexing is always serial regardless \u2014 only fetches race."),force:O.preprocess(ng,O.boolean()).optional().describe("Skip cache and re-fetch even if content was recently indexed"),ttl:O.coerce.number().int().min(0).optional().describe("Override the cache freshness window for this call, in milliseconds. `ttl: 0` bypasses the cache like `force: true`; omit to use the default 24h TTL.")})},async({url:t,source:e,requests:r,concurrency:n,force:o,ttl:s})=>{let i=r||(t?[{url:t,source:e}]:[]);if(i.length===0)return Z("ctx_fetch_and_index",{content:[{type:"text",text:"ctx_fetch_and_index requires either `url` (single) or `requests: [{url, source?}, ...]` (batch)."}],isError:!0});let a=!r&&i.length===1,c=n??1,u=i.map(T=>({run:()=>O1(T.url,T.source,o,s)})),{settled:l,effectiveConcurrency:d,capped:f}=await _m(u,{concurrency:c,capByCpuCount:!a&&c>1}),h=[];for(let T=0;T<l.length;T++){let E=l[T];if(E.status==="rejected"){let pe=E.reason instanceof Error?E.reason.message:String(E.reason);h.push({kind:"job_error",url:i[T].url,error:pe});continue}let L=E.value;if(L.kind==="cached"){te.cacheHits++,te.cacheBytesSaved+=L.estimatedBytes;let pe=L.estimatedBytes,dt=L.label;setImmediate(()=>ME({sessionDbPath:Ki(),source:dt,bytesAvoided:pe})),h.push({kind:"cached",label:L.label,chunkCount:L.chunkCount,ageStr:L.ageStr,ttlStr:L.ttlStr})}else L.kind==="fetch_error"?h.push({kind:"fetch_error",url:L.url,error:L.error,reason:L.reason}):(te.cacheMisses++,h.push({kind:"fetched",indexed:I1(L)}))}if(a){let T=h[0];if(T.kind==="cached")return Z("ctx_fetch_and_index",{content:[{type:"text",text:`Cached: **${T.label}** \u2014 ${T.chunkCount} sections, indexed ${T.ageStr} (fresh, TTL: ${T.ttlStr}).
|
|
1002
1051
|
To refresh: call ctx_fetch_and_index again with \`force: true\`.
|
|
1003
1052
|
|
|
1004
1053
|
You MUST call ctx_search() to answer questions about this content \u2014 this cached response contains no content.
|
|
1005
|
-
Use: ctx_search(queries: [...], source: "${
|
|
1006
|
-
`);return
|
|
1054
|
+
Use: ctx_search(queries: [...], source: "${T.label}")`}]});if(T.kind==="fetched"){let E=(T.indexed.totalBytes/1024).toFixed(1),L=[`Fetched and indexed **${T.indexed.totalChunks} sections** (${E}KB) from: ${T.indexed.label}`,`Full content indexed in sandbox \u2014 use ctx_search(queries: [...], source: "${T.indexed.label}") for specific lookups.`,"","---","",T.indexed.preview].join(`
|
|
1055
|
+
`);return Z("ctx_fetch_and_index",{content:[{type:"text",text:L}]})}if(T.kind==="fetch_error"){let E=T.reason==="empty"?`Fetched ${T.url} but got empty content`:T.reason==="read"?`Fetched ${T.url} but could not read subprocess output`:T.reason==="exit"?`Failed to fetch ${T.url}: ${T.error}`:`Fetch error: ${T.error}`;return Z("ctx_fetch_and_index",{content:[{type:"text",text:E}],isError:!0})}return Z("ctx_fetch_and_index",{content:[{type:"text",text:`Fetch error: ${T.error}`}],isError:!0})}let p=384,m=[],g=0,y=0,_=0,x=0,S=0,k=[];for(let T of h)if(T.kind==="cached")_++,m.push(`- [cache] ${T.label} \u2014 ${T.chunkCount} sections (${T.ageStr}, TTL: ${T.ttlStr})`);else if(T.kind==="fetched"){x++,g+=T.indexed.totalChunks,y+=T.indexed.totalBytes;let E=(T.indexed.totalBytes/1024).toFixed(1);m.push(`- [new] ${T.indexed.label} \u2014 ${T.indexed.totalChunks} sections (${E}KB)`);let L=T.indexed.preview.length>p?T.indexed.preview.slice(0,p).trimEnd()+"\u2026":T.indexed.preview;k.push(`### ${T.indexed.label}
|
|
1007
1056
|
|
|
1008
|
-
${L}`)}else
|
|
1009
|
-
`);return
|
|
1057
|
+
${L}`)}else S++,m.push(`- [err] ${T.url}: ${T.error}`);let R=(y/1024).toFixed(1),$=f?` cap=${d}/${NL().length}cpu`:"",C=(T,E,L)=>`${T} ${T===1?E:L}`,W=[`fetched ${i.length} c=${d}${$}. ok=${x} cache=${_} err=${S}. ${C(g,"section","sections")} ${R}KB.`,"",...m,"",'ctx_search(queries: [...], source: "<label>") for full content.',...k.length>0?["","---","",...k]:[]].join(`
|
|
1058
|
+
`);return Z("ctx_fetch_and_index",{content:[{type:"text",text:W}],isError:S===i.length})});De.registerTool("ctx_batch_execute",{title:"Batch Execute & Search",description:`Run multiple commands in ONE call. Every command's output is auto-indexed into the knowledge base; if you also pass \`queries\`, the matching sections come back in the same round trip so a follow-up search call is not needed.
|
|
1010
1059
|
|
|
1011
1060
|
Concurrency parallelizes the FETCH phase (run-the-commands). The DERIVATION phase \u2014 turning raw output into an answer \u2014 still belongs in code: add a processing command that consumes the indexed output and prints only the answer, so the raw bytes never enter your conversation (Think-in-Code, same principle as the sandbox tool).
|
|
1012
1061
|
|
|
@@ -1031,14 +1080,14 @@ EXAMPLE: ctx_batch_execute(
|
|
|
1031
1080
|
],
|
|
1032
1081
|
queries: ["root cause", "proposed fix"],
|
|
1033
1082
|
concurrency: 2
|
|
1034
|
-
)`,inputSchema
|
|
1035
|
-
`),
|
|
1036
|
-
`).length;if(i
|
|
1037
|
-
Searchable terms for follow-up: ${
|
|
1038
|
-
`);return
|
|
1039
|
-
`)}]})});
|
|
1040
|
-
`),
|
|
1041
|
-
`);return
|
|
1083
|
+
)`,inputSchema:O.object({commands:O.preprocess(E1,O.array(O.object({label:O.string().describe("Section header for this command's output (e.g., 'README', 'Package.json', 'Source Tree')"),command:O.string().describe("Shell command to execute")})).min(1).describe("Commands to execute as a batch. Output is labeled with the section header. Default order is sequential; pass concurrency>1 to run in parallel (output stays in input order).")),queries:O.preprocess(rg,O.array(O.string()).min(1).describe("Search queries to extract information from indexed output. Use 5-8 comprehensive queries. Each returns top 5 matching sections with full content. This is your ONLY chance \u2014 put ALL your questions here. No follow-up calls needed.")),timeout:O.coerce.number().optional().describe("Max execution time in ms. When omitted, no server-side timer fires \u2014 the MCP host's RPC timeout governs. With concurrency=1, the value (when set) is a shared budget across commands; with concurrency>1, it is applied per-command."),concurrency:O.coerce.number().int().min(1).max(8).optional().default(1).describe("Max commands to run in parallel (1-8, default: 1). Use 4-8 for I/O-bound batches (network, gh, curl, multi-repo git reads). Keep at 1 for CPU-bound (npm test, build, lint) or stateful commands (ports, locks). >1 switches to per-command timeouts (no shared budget) and individual `(timed out)` blocks instead of cascading skip."),query_scope:O.enum(["batch","global"]).optional().default("batch").describe("Scope for `queries` (default: `batch`). `batch` searches ONLY the chunks produced by this batch's commands \u2014 useful when you want answers about the just-fetched output. `global` searches the entire persistent index (same scope as ctx_search) \u2014 useful when you want the batch commands to enrich context and the queries to also surface related prior knowledge in one round trip.")})},async({commands:t,queries:e,timeout:r,concurrency:n,query_scope:o})=>{for(let s of t){let i=eg(s.command,"batch_execute");if(i)return i}try{let s=S1(uo.shell,Iu),{outputs:i,timedOut:a}=await b1(t,{timeout:r,concurrency:n,nodeOptsPrefix:s,onFsBytes:k=>{te.bytesSandboxed+=k}},Ji),c=i.join(`
|
|
1084
|
+
`),u=Buffer.byteLength(c),l=c.split(`
|
|
1085
|
+
`).length;if(a&&i.length===0)return Z("ctx_batch_execute",{content:[{type:"text",text:`Batch timed out after ${r}ms. No output captured.`}],isError:!0});cr(u);let d=br(),f=`batch:${t.map(k=>k.label).join(",").slice(0,80)}`,h=d.index({content:c,source:f,attribution:lo()}),p=["## Commands",""];for(let k of t)p.push(`- ${k.label}: \`${Pw(k.command)}\``);let m=d.getChunksBySource(h.sourceId),g=["## Indexed Sections",""],y=[];for(let k of m){let R=Buffer.byteLength(k.content);g.push(`- ${k.title} (${(R/1024).toFixed(1)}KB)`),y.push(k.title)}let _=y1(d,e,f,void 0,o),x=d.getDistinctiveTerms?d.getDistinctiveTerms(h.sourceId):[],S=[`Executed ${t.length} commands (${l} lines, ${(u/1024).toFixed(1)}KB). Indexed ${h.totalChunks} sections. Searched ${e.length} queries.`,"",...p,"",...g,"",..._,x.length>0?`
|
|
1086
|
+
Searchable terms for follow-up: ${x.join(", ")}`:""].join(`
|
|
1087
|
+
`);return Z("ctx_batch_execute",{content:[{type:"text",text:S}]})}catch(s){let i=s instanceof Error?s.message:String(s);return Z("ctx_batch_execute",{content:[{type:"text",text:`Batch execution error: ${i}`}],isError:!0})}});function Vh(t,e){if(!_e(e))return;let r=0;try{for(let n of xw(e))if(!(!n.startsWith("stats-")||!n.endsWith(".json")))try{let o=JSON.parse(Gi(ke(e,n),"utf-8"));r+=(o?.bytes_sandboxed??0)+(o?.bytes_indexed??0)}catch{}}catch{}if(r>0){let n=(t.rescueBytes??0)/4;t.totalEvents=Math.round((r/4+n)/256)}}function gw(){return{prepare:()=>({run:()=>{},get:(...t)=>({cnt:0,compact_count:0,minutes:null,rate:0,avg:0,outcome:"exploratory"}),all:()=>[]})}}De.registerTool("ctx_stats",{title:"Session Statistics",description:"Returns context consumption statistics for the current session. Shows total bytes returned to context, breakdown by tool, call counts, estimated token usage, and context savings ratio.",inputSchema:O.object({})},async()=>{let t;try{let e=$t(),r=Qe(e),n=Ni({projectDir:e,sessionsDir:Ne()});if(_e(n)){let o=Ye(),s=new o(n,{readonly:!0});try{let i=new ms(s),a=i.queryAll(te),c=i.getMcpToolUsage(),u=Bi({sessionsDir:Ne()}),l;try{l=_u()}catch{}let d,f;try{let p=process.env.CLAUDE_SESSION_ID;if(p||(p=s.prepare("SELECT session_id FROM session_events WHERE session_id LIKE '________-____-____-____-____________' ORDER BY created_at DESC LIMIT 1").get()?.session_id),p){d=ow({sessionId:p,sessionsDir:Ne(),worktreeHash:r});let m=Pu(),g;try{let S=Ye(),k=(await import("node:fs")).readdirSync(Ne()).filter($=>$.endsWith(".db")&&(!r||$.startsWith(r))),R;for(let $ of k)try{let C=new S((await import("node:path")).join(Ne(),$),{readonly:!0});try{let A=C.prepare("SELECT project_dir FROM session_meta WHERE session_id = ?").get(p);if(A?.project_dir){R=A.project_dir;break}}finally{C.close()}}catch{}g=R?qi({projectDir:R,sessionsDir:Ne(),worktreeHash:r,contentDbPath:m}):qi({sessionId:p,sessionsDir:Ne(),worktreeHash:r,contentDbPath:m})}catch{g=qi({sessionId:p,sessionsDir:Ne(),worktreeHash:r,contentDbPath:m})}let y=qi({sessionsDir:Ne()}),_=sw(m),x={...y,contentBytes:y.contentBytes+_,bytesAvoided:y.bytesAvoided+_,totalSavedTokens:Math.floor((y.eventDataBytes+y.bytesAvoided+_+y.snapshotBytes)/4)};f={conversation:g,lifetime:x}}}catch{}ar?.name==="Pi"&&Vh(u,Ne());let h;try{h=br().getIndexState()}catch{}t=xu(a,Ur,Fr,{lifetime:u,mcpUsage:c,multiAdapter:l,conversation:d,realBytes:f,indexState:h,cwd:e})}finally{s.close()}}else{let s=new ms(gw()).queryAll(te),i=Bi({sessionsDir:Ne()});ar?.name==="Pi"&&Vh(i,Ne());let a;try{a=_u()}catch{}let c;try{c=br().getIndexState()}catch{}t=xu(s,Ur,Fr,{lifetime:i,multiAdapter:a,indexState:c})}}catch{let r=new ms(gw()).queryAll(te),n;try{n=Bi({sessionsDir:Ne()})}catch{}ar?.name==="Pi"&&n&&Vh(n,Ne());let o;try{o=_u()}catch{}t=xu(r,Ur,Fr,n||o?{lifetime:n,multiAdapter:o}:void 0)}return Z("ctx_stats",{content:[{type:"text",text:t}]})});De.registerTool("ctx_doctor",{title:"Run Diagnostics",description:"Diagnose context-mode installation. Runs all checks server-side and returns a plain-text status report with [OK]/[FAIL]/[WARN] prefixes (renderer-safe across MCP clients). No CLI execution needed.",inputSchema:O.object({})},async()=>{let t=["context-mode doctor",""],e=_e(je(Rt,"package.json"))?Rt:Pt(Rt),r=11,n=(Eu.length/r*100).toFixed(0);t.push(`[OK] Runtimes: ${Eu.length}/${r} (${n}%) \u2014 ${Eu.join(", ")}`),Hc()?t.push("[OK] Performance: FAST (Bun)"):t.push("[WARN] Performance: NORMAL \u2014 install Bun for 3-5x speed boost");let o=Ii(hs),s=Am(hs),i=Nm(hs);t.push(`[OK] Storage sessions: ${o.path} (${Wc(o)})`),t.push(`[OK] Storage content: ${s.path} (${Wc(s)})`),t.push(`[OK] Storage stats: ${i.path} (${Wc(i)})`);{let c=new wi({runtimes:uo});try{let u=await c.execute({language:"javascript",code:'console.log("ok");',timeout:5e3});if(u.exitCode===0&&u.stdout.trim()==="ok")t.push("[OK] Server test: PASS");else{let l=u.stderr?.trim()?` (${u.stderr.trim().slice(0,200)})`:"";t.push(`[FAIL] Server test: FAIL \u2014 exit ${u.exitCode}${l}`)}}catch(u){t.push(`[FAIL] Server test: FAIL \u2014 ${u instanceof Error?u.message:u}`)}finally{c.cleanupBackgrounded()}}{let c;try{let u=Ye();c=new u(":memory:"),c.exec("CREATE VIRTUAL TABLE fts_test USING fts5(content)"),c.exec("INSERT INTO fts_test(content) VALUES ('hello world')");let l=c.prepare("SELECT * FROM fts_test WHERE fts_test MATCH 'hello'").get();l&&l.content==="hello world"?t.push("[OK] FTS5 / SQLite: PASS \u2014 native module works"):t.push("[FAIL] FTS5 / SQLite: FAIL \u2014 unexpected result")}catch(u){t.push(`[FAIL] FTS5 / SQLite: FAIL \u2014 ${u instanceof Error?u.message:u}`)}finally{try{c?.close()}catch{}}}let a=await GL();if(a){for(let u of a.validateHooks(e)){let l=u.status==="pass"?"[OK]":u.status==="warn"?"[WARN]":"[FAIL]",d=u.fix?` \u2014 fix: ${u.fix}`:"";t.push(`${l} ${u.check}: ${u.message}${d}`)}let c=VE(a,e);c.length===0&&t.push("[OK] Hook scripts: no direct .mjs script paths to verify");for(let u of c){let l=je(e,u);_e(l)?t.push(`[OK] Hook script: PASS \u2014 ${l}`):t.push(`[FAIL] Hook script: FAIL \u2014 not found at ${l}`)}}else t.push("[WARN] Hooks: adapter detection unavailable");return t.push(`[OK] Version: v${Ur}`),Z("ctx_doctor",{content:[{type:"text",text:t.join(`
|
|
1088
|
+
`)}]})});De.registerTool("ctx_upgrade",{title:"Upgrade Plugin",description:"Upgrade context-mode to the latest version. Returns a shell command to execute. You MUST run the returned command using your shell tool (Bash, shell_execute, run_in_terminal, etc.) and display the output as a checklist. Tell the user to restart their session after upgrade.",inputSchema:O.object({})},async()=>{let t=_e(je(Rt,"package.json"))?Rt:Pt(Rt),e=je(t,"cli.bundle.mjs"),r=je(t,"build","cli.js");try{let a=Ne(),c=ke(Pt(a),"insight-cache");_e(c)&&(Cw(4747),wu(c,{recursive:!0,force:!0}))}catch{}let n="",o;try{let{detectPlatform:a}=await Promise.resolve().then(()=>(co(),au)),c=De.server.getClientVersion(),u=a(c??void 0);n=` --platform ${u.platform}`,o=Mc(u.platform)&&uo.javascript?{platform:u.platform,jsRuntime:uo.javascript}:void 0}catch{}let s;if(_e(e))s=`${ki(e,o)} upgrade${n}`;else if(_e(r))s=`${ki(r,o)} upgrade${n}`;else{let c=['import{execFileSync}from"node:child_process";','import{cpSync,rmSync,existsSync,mkdtempSync,readFileSync,writeFileSync,lstatSync}from"node:fs";','import{join,resolve,sep}from"node:path";','import{tmpdir}from"node:os";',`const P=${JSON.stringify(t)};`,'const T=mkdtempSync(join(tmpdir(),"ctx-upgrade-"));',"try{",'console.log("- [x] Starting inline upgrade (no CLI found)");','execFileSync("git",["clone","--depth","1","https://github.com/mksglu/context-mode.git",T],{stdio:"inherit"});','console.log("- [x] Cloned latest source");','execFileSync(process.platform==="win32"?"npm.cmd":"npm",["install"],{cwd:T,stdio:"inherit",shell:process.platform==="win32"});','execFileSync(process.platform==="win32"?"npm.cmd":"npm",["run","build"],{cwd:T,stdio:"inherit",shell:process.platform==="win32"});','console.log("- [x] Built from source");','const pkg=JSON.parse(readFileSync(join(T,"package.json"),"utf8"));','const items=[...(Array.isArray(pkg.files)?pkg.files:[]),"src","package.json"];',"const PW=resolve(P)+sep;const TW=resolve(T)+sep;","const noSymlink=(src)=>{try{return !lstatSync(src).isSymbolicLink()}catch{return false}};","for(const item of items){const from=resolve(T,item);const to=resolve(P,item);if(!(to+sep).startsWith(PW))continue;if(!(from+sep).startsWith(TW))continue;if(!noSymlink(from))continue;if(existsSync(from)){rmSync(to,{recursive:true,force:true});cpSync(from,to,{recursive:true,force:true,filter:noSymlink});}}",'console.log("- [x] Copied package files");','execFileSync(process.platform==="win32"?"npm.cmd":"npm",["install","--production"],{cwd:P,stdio:"inherit",shell:process.platform==="win32"});','console.log("- [x] Installed production dependencies");','console.log("## context-mode upgrade complete");',"}catch(e){",'console.error("- [ ] Upgrade failed:",e.message);',"process.exit(1);","}finally{","try{rmSync(T,{recursive:true,force:true})}catch{}","}"].join(`
|
|
1089
|
+
`),u=je(t,".ctx-upgrade-inline.mjs"),{writeFileSync:l}=await import("node:fs");l(u,c),s=ki(u,o)}let i=["## ctx-upgrade","","Run this command using your shell execution tool:","","```",s,"```","","After the command completes, display results as a markdown checklist:","- `[x]` for success, `[ ]` for failure","- Example format:"," ```"," ## context-mode upgrade"," - [x] Pulled latest from GitHub"," - [x] Built and installed v0.9.24"," - [x] npm global updated"," - [x] Hooks configured"," - [x] Doctor: all checks PASS"," ```","- Tell the user to restart their session to pick up the new version."].join(`
|
|
1090
|
+
`);return Z("ctx_upgrade",{content:[{type:"text",text:i}]})});De.registerTool("ctx_purge",{title:"Purge Knowledge Base",description:`DESTRUCTIVE: permanently delete indexed content. Cannot be undone. Requires confirm:true and exactly one scope.
|
|
1042
1091
|
|
|
1043
1092
|
WHEN:
|
|
1044
1093
|
- User explicitly asks to clear a specific session ('purge this session', 'wipe this conversation')
|
|
@@ -1062,14 +1111,14 @@ RETURNS:
|
|
|
1062
1111
|
A summary of removed rows + the resolved scope.
|
|
1063
1112
|
|
|
1064
1113
|
EXAMPLE: ctx_purge(confirm: true, sessionId: "7c8a-1234-5678-9abc-def012345678")
|
|
1065
|
-
EXAMPLE: ctx_purge(confirm: true, scope: "project")`,inputSchema
|
|
1114
|
+
EXAMPLE: ctx_purge(confirm: true, scope: "project")`,inputSchema:O.object({confirm:O.preprocess(ng,O.boolean()).describe("MUST be true. Destructive operation; false returns 'purge cancelled'."),sessionId:O.string().optional().describe("UUID of a single session. Pairs with confirm:true to wipe only that session's events + per-session FTS5 chunks. Sibling sessions and the stats file are preserved. MUST NOT be combined with scope:'project'."),scope:O.enum(["session","project"]).optional().describe("Explicit scope selector. 'session' REQUIRES sessionId. 'project' wipes the entire project (FTS5 + every session + stats). Omit only for the deprecated bare-{confirm:true} back-compat path.")})},async({confirm:t,sessionId:e,scope:r})=>{if(e&&r==="project")return Z("ctx_purge",{content:[{type:"text",text:"Ambiguous purge: sessionId implies scope:'session', cannot combine with scope:'project'. Use scope:'project' WITHOUT sessionId for the legacy whole-project wipe."}],isError:!0});if(!t)return Z("ctx_purge",{content:[{type:"text",text:"Purge cancelled. Pass confirm: true to proceed."}]});let n=r??(e?"session":"project");!r&&!e&&console.warn("[context-mode] ctx_purge: bare {confirm:true} is deprecated. Pass scope:'project' for the whole-project wipe, or scope:'session' + sessionId for a scoped wipe. See issue #520.");let o;try{o=Pu()}catch{}if(ir){try{ir.cleanup()}catch{}ir=null}let s=o?Pt(o):void 0,{deleted:i}=AE({projectDir:$t(),sessionsDir:Ne(),storePath:o,contentDir:s,legacyContentDir:ke(_s(),".context-mode","content"),contentHash:Dr($t()),scope:n,sessionId:e});if(n==="project"){te.calls={},te.bytesReturned={},te.bytesIndexed=0,te.bytesSandboxed=0,te.cacheHits=0,te.cacheBytesSaved=0,te.sessionStart=Date.now(),i.push("session stats");try{let c=Ew();_e(c)&&ys(c)}catch{}}let a=n==="session"?`Purged session ${e}: ${i.length?i.join(", "):"no matching rows"}. Other sessions and project-wide stats preserved.`:`Purged: ${i.join(", ")}. All session data for this project has been permanently deleted.`;return Z("ctx_purge",{content:[{type:"text",text:a}]})});var Wi=5e3;function A1(t,e){return e==="darwin"?[{cmd:"open",args:[t]}]:e==="win32"?[{cmd:"cmd",args:["/c","start","",t]}]:[{cmd:"xdg-open",args:[t]},{cmd:"sensible-browser",args:[t]}]}function yw(t,e=process.platform,r=bw){let n=A1(t,e),o=[];for(let{cmd:s,args:i}of n)try{let a=r(s,i,{stdio:"ignore",timeout:Wi});if(!a.error&&a.status===0)return{ok:!0,method:s};let c=a.error?.message??`status=${a.status===null?"signaled":a.status}`;o.push(`${s}: ${c}`)}catch(a){o.push(`${s}: ${a instanceof Error?a.message:String(a)}`)}return{ok:!1,method:"none",reason:o.join("; ")}}function Cw(t,e=process.platform,r=bw){let n={killedPids:[],attemptedPids:[],errors:[]};if(!Number.isInteger(t)||t<1||t>65535)return n.errors.push(`invalid port: ${t}`),n;try{if(e==="win32"){let o=r("netstat",["-ano"],{encoding:"utf-8",stdio:["ignore","pipe","ignore"],timeout:Wi});if(o.error)return n.errors.push(`netstat: ${o.error.message}`),n;if(o.status!==0||typeof o.stdout!="string")return n;let s=`:${t}`,i=new Set;for(let a of o.stdout.split(/\r?\n/)){let c=a.trim();if(!c)continue;let u=c.split(/\s+/);if(u.length<5)continue;let l=u[0],d=u[1],f=u[2],h=u[u.length-1];l==="TCP"&&d.endsWith(s)&&(f!=="0.0.0.0:0"&&f!=="[::]:0"||/^\d+$/.test(h)&&i.add(h))}for(let a of i){n.attemptedPids.push(a);try{let c=r("taskkill",["/F","/PID",a],{stdio:"ignore",timeout:Wi});c.error||c.status!==0?n.errors.push(`taskkill ${a}: ${c.error?.message??`status=${c.status}`}`):n.killedPids.push(a)}catch(c){n.errors.push(`taskkill ${a}: ${c instanceof Error?c.message:String(c)}`)}}}else{let o=r("lsof",["-ti",`:${t}`],{encoding:"utf-8",stdio:["ignore","pipe","ignore"],timeout:Wi});if(o.error)return n.errors.push(`lsof: ${o.error.message}`),n;if(o.status!==0||typeof o.stdout!="string")return n;let s=o.stdout.split(/\r?\n/).filter(i=>/^\d+$/.test(i));for(let i of s){n.attemptedPids.push(i);try{let a=r("kill",[i],{stdio:"ignore",timeout:Wi});a.error||a.status!==0?n.errors.push(`kill ${i}: ${a.error?.message??`status=${a.status}`}`):n.killedPids.push(i)}catch(a){n.errors.push(`kill ${i}: ${a instanceof Error?a.message:String(a)}`)}}}}catch(o){n.errors.push(o instanceof Error?o.message:String(o))}return n}De.registerTool("ctx_insight",{title:"Open Insight Dashboard",description:"Opens the context-mode Insight dashboard in the browser \u2014 a dashboard launcher for session analytics; for natural-language queries over indexed content, use ctx_search. Shows personal analytics: session activity, tool usage, error rate, parallel work patterns, project focus, and actionable insights. First run installs dependencies (~30s). Subsequent runs open instantly. Defaults to port 4747; pass `port` to override. `sessionDir` and `contentDir` override the session/content storage roots (env aliases INSIGHT_SESSION_DIR / INSIGHT_CONTENT_DIR) for diagnosing multi-install setups or pointing at a sibling project's data.",inputSchema:O.object({port:O.coerce.number().int().min(1).max(65535).optional().describe("Port to serve on (default: 4747)"),sessionDir:O.string().optional().describe("Override INSIGHT_SESSION_DIR: directory containing context-mode session .db files"),contentDir:O.string().optional().describe("Override INSIGHT_CONTENT_DIR: directory containing context-mode content/index .db files"),insightSessionDir:O.string().optional().describe("Alias for sessionDir / INSIGHT_SESSION_DIR"),insightContentDir:O.string().optional().describe("Alias for contentDir / INSIGHT_CONTENT_DIR")})},async({port:t,sessionDir:e,contentDir:r,insightSessionDir:n,insightContentDir:o})=>{let s=t||4747,i=e||n,a=r||o,c=_e(je(Rt,"package.json"))?Rt:Pt(Rt),u=je(c,"insight"),l=i?je(i):Ne(),d=a?je(a):ke(Pt(l),"content"),f=ke(Pt(l),"insight-cache");if(i||a){let h=Ne(),p=Pt(Pt(h)),m=je(p)+Wh,g=y=>(je(y)+Wh).startsWith(m);if(i&&!g(l))return Z("ctx_insight",{content:[{type:"text",text:`Error: sessionDir must resolve under ${p} (got ${l}).`}]});if(a&&!g(d))return Z("ctx_insight",{content:[{type:"text",text:`Error: contentDir must resolve under ${p} (got ${d}).`}]})}if(!_e(ke(u,"server.mjs")))return Z("ctx_insight",{content:[{type:"text",text:"Error: Insight source not found in plugin. Try upgrading context-mode."}]});try{let h=[],p=!1;Sw(f,{recursive:!0});let m=Tu(ke(u,"server.mjs")).mtimeMs,g=_e(ke(f,"server.mjs"))?Tu(ke(f,"server.mjs")).mtimeMs:0;if(m>g&&(h.push("Copying source files..."),$L(u,f,{recursive:!0,force:!0}),h.push("Source files copied."),p=!0),!_e(ke(f,"node_modules"))||p){h.push("Installing dependencies (first run, ~30s)...");try{aw(process.platform==="win32"?"npm.cmd install --production=false":"npm install --production=false",{cwd:f,stdio:"pipe",timeout:3e5})}catch{try{wu(ke(f,"node_modules"),{recursive:!0,force:!0})}catch{}throw new Error("npm install failed \u2014 please retry")}if(!_e(ke(f,"node_modules","vite"))||!_e(ke(f,"node_modules","better-sqlite3")))throw wu(ke(f,"node_modules"),{recursive:!0,force:!0}),new Error("npm install incomplete \u2014 please retry");h.push("Dependencies installed.")}h.push("Building dashboard..."),aw("npx vite build",{cwd:f,stdio:"pipe",timeout:6e4}),h.push("Build complete.");let _=!1;try{let{request:C}=await import("node:http");await new Promise((A,W)=>{let T=C(`http://127.0.0.1:${s}/api/overview`,{timeout:2e3},E=>{E.resume(),A()});T.on("error",()=>W()),T.on("timeout",()=>{T.destroy(),W()}),T.end()}),_=!0}catch{}if(_&&p){h.push("Killing stale dashboard server (source updated)...");let C=Cw(s);if(C.attemptedPids.length>0&&C.killedPids.length===0)return Z("ctx_insight",{content:[{type:"text",text:`Could not free port ${s} (kill failed for ${C.attemptedPids.join(", ")}: ${C.errors.join("; ")}). Try ctx_insight({ port: ${s+1} }) or stop the process manually.`}]});if(C.errors.length>0&&C.attemptedPids.length===0)return Z("ctx_insight",{content:[{type:"text",text:`Cannot reclaim port ${s}: ${C.errors.join("; ")}. Stop the process manually or pick another port.`}]});await new Promise(A=>setTimeout(A,500)),h.push(`Stale server killed (${C.killedPids.length} pid${C.killedPids.length===1?"":"s"}).`)}else if(_){h.push("Dashboard already running.");let C=`http://localhost:${s}`,A=yw(C),W=A.ok?"":` (auto-open failed: ${A.reason}; navigate manually)`;return Z("ctx_insight",{content:[{type:"text",text:`Dashboard already running at ${C}${W}`}]})}if(Hr&&Hr.pid&&!Hr.killed)try{Hr.kill("SIGTERM")}catch{}let{spawn:x}=await import("node:child_process"),S=x("node",[ke(f,"server.mjs")],{cwd:f,env:{...process.env,PORT:String(s),INSIGHT_SESSION_DIR:l,INSIGHT_CONTENT_DIR:d,INSIGHT_PARENT_PID:String(process.pid)},detached:!0,stdio:"ignore"});S.on("error",()=>{}),S.unref(),Hr=S,await new Promise(C=>setTimeout(C,1500));try{let{request:C}=await import("node:http");await new Promise((A,W)=>{let T=C(`http://127.0.0.1:${s}/api/overview`,{timeout:3e3},E=>{A(),E.resume()});T.on("error",W),T.on("timeout",()=>{T.destroy(),W(new Error("timeout"))}),T.end()})}catch{return Z("ctx_insight",{content:[{type:"text",text:`Port ${s} appears to be in use. Either a previous dashboard is still running, or another service is using this port.
|
|
1066
1115
|
|
|
1067
1116
|
To fix:
|
|
1068
1117
|
- Kill the existing process: ${process.platform==="win32"?`netstat -ano | findstr :${s}`:`lsof -ti:${s} | xargs kill`}
|
|
1069
|
-
- Or use a different port: ctx_insight({ port: ${s+1} })`}]})}let
|
|
1118
|
+
- Or use a different port: ctx_insight({ port: ${s+1} })`}]})}let k=`http://localhost:${s}`,R=yw(k),$=R.ok?"":` (auto-open failed: ${R.reason}; navigate manually)`;return h.push(`Dashboard running at ${k}${$}`),Z("ctx_insight",{content:[{type:"text",text:h.map(C=>`- ${C}`).join(`
|
|
1070
1119
|
`)+`
|
|
1071
1120
|
|
|
1072
|
-
Open: ${
|
|
1073
|
-
PID: ${
|
|
1074
|
-
${
|
|
1075
|
-
Performance tip: Install Bun for 3-5x faster JS/TS execution`),console.error(" curl -fsSL https://bun.sh/install | bash")))}process.env.CONTEXT_MODE_EMBEDDED_PLUGIN_TOOLS!=="1"&&
|
|
1121
|
+
Open: ${k}
|
|
1122
|
+
PID: ${S.pid} \xB7 Stop: ${process.platform==="win32"?`taskkill /PID ${S.pid} /F`:`kill ${S.pid}`}`}]})}catch(h){let p=h instanceof Error?h.message:String(h);return Z("ctx_insight",{content:[{type:"text",text:`Insight setup failed: ${p}`}]})}});async function N1(){let t=Pm();t>0&&console.error(`Cleaned up ${t} stale DB file(s) from previous sessions`);let e=process.platform==="win32"?Yh():"/tmp",r=ke(e,`context-mode-mcp-ready-${process.pid}`),n=()=>{Ji.cleanupBackgrounded(),ir&&ir.close();try{ys(Iu)}catch{}try{ys(r)}catch{}if(Hr&&Hr.pid&&!Hr.killed)try{Hr.kill("SIGTERM")}catch{}},o=async()=>{try{Gh=0,Ru()}catch{}n(),process.exit(0)};process.on("exit",n),process.on("SIGINT",()=>{o()}),process.on("SIGTERM",()=>{o()}),OE({onShutdown:()=>o()});let s=new Nc;await De.connect(s);try{Xh(r,String(process.pid))}catch{}try{let{detectPlatform:i,getAdapter:a}=await Promise.resolve().then(()=>(co(),au)),c=De.server.getClientVersion(),u=i(c??void 0);ar=await a(u.platform),c&&console.error(`MCP client: ${c.name} v${c.version} \u2192 ${u.platform}`)}catch{}try{let i=LE(Ki());if(i){for(let[a,c]of Object.entries(i.calls))te.calls[a]=c;for(let[a,c]of Object.entries(i.bytesReturned))te.bytesReturned[a]=c;i.sessionStart>0&&(te.sessionStart=i.sessionStart)}}catch{}uw().then(i=>{i!=="unknown"&&(Fr=i)}),setInterval(()=>{uw().then(i=>{i!=="unknown"&&(Fr=i)})},3600*1e3).unref(),setInterval(()=>Ru(),6e4).unref(),process.stdin.isTTY&&(console.error(`Context Mode MCP server v${Ur} running on stdio`),console.error(`Detected runtimes:
|
|
1123
|
+
${cb(uo)}`),Hc()||(console.error(`
|
|
1124
|
+
Performance tip: Install Bun for 3-5x faster JS/TS execution`),console.error(" curl -fsSL https://bun.sh/install | bash")))}process.env.CONTEXT_MODE_EMBEDDED_PLUGIN_TOOLS!=="1"&&N1().catch(t=>{console.error("Fatal:",t),process.exit(1)});export{jL as REGISTERED_CTX_TOOLS,xK as __resetSuppressionDiagnosticForTests,A1 as browserOpenArgv,S1 as buildBatchNodeOptionsPrefix,P1 as buildFetchCode,Ou as classifyIp,lo as currentAttribution,ZL as emitSuppressionDiagnostic,Tw as extractSnippet,y1 as formatBatchQueryResults,$t as getProjectDir,Cw as killProcessOnPort,yw as openBrowserSync,g1 as positionsFromHighlight,BL as registerEmptyToolsListHandler,WL as resolveSessionIdFromSessionDB,b1 as runBatchCommands,De as server,zL as shouldSuppressMcpToolsForNativePluginHost,SK as withProjectDirOverride};
|