@medplum/fhir-router 5.1.37 → 5.1.39
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/dist/cjs/index.cjs +2 -2
- package/dist/cjs/index.cjs.map +3 -3
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +4 -4
package/dist/esm/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var xo=Object.defineProperty;var Ma=(t,e,r)=>e in t?xo(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r;var Va=(t,e)=>{for(var r in e)xo(t,r,{get:e[r],enumerable:!0})};var C=(t,e,r)=>Ma(t,typeof e!="symbol"?e+"":e,r);import{badRequest as Z,getReferenceString as Ut,getStatus as Do,isOk as Lo,normalizeOperationOutcome as Ua,notFound as Oo,OperationOutcomeError as q,parseSearchRequest as wo}from"@medplum/core";var $a=50,Ga=8,Ba=/urn(:|%3A)uuid(:|%3A)[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/;async function bn(t,e,r,n){return new gr(r,e,n,t).run()}var gr=class t{constructor(e,r,n,i){C(this,"router");C(this,"repo");C(this,"bundle");C(this,"req");C(this,"resolvedIdentities");C(this,"bundleInfo");C(this,"state");this.router=e,this.repo=r,this.bundle=n,this.req=i,this.resolvedIdentities=Object.create(null),this.state={position:0,resultEntries:new Array(n.entry?.length??0),pendingIndices:[],errors:[]}}static fromState(e,r,n,i,o){let s=new t(e,r,i.bundle,n);return s.resolvedIdentities=i.resolvedIdentities,s.bundleInfo={...i.bundleInfo},s.state.position=o,s}async run(){await this.preprocess();let e=this.bundleInfo;if(!this.isTransaction()){let i=await this.processEntriesAndBuild();return this.dispatchPostEvent(),i}let r=_o(this.state),n=await this.repo.withTransaction(i=>this.withRepo(i,()=>(this.state=_o(r),this.processEntriesAndBuild())),{serializable:e.requiresStrongTransaction,resourceTypes:e.resourceTypes});return this.dispatchPostEvent(),n}async preprocess(){let e=this.bundle.type;if(e!=="batch"&&e!=="transaction")throw new q(Z("Unrecognized bundle type: "+e));if(this.bundleInfo=await this.preprocessBundle(),this.isTransaction()){if(this.bundleInfo.updates>$a)throw new q(Z("Transaction contains more update operations than allowed"));if(this.bundleInfo.requiresStrongTransaction&&this.state.resultEntries.length>Ga)throw new q(Z("Transaction requires strict isolation but has too many entries"))}this.dispatchPreEvent();let r=Object.create(null);for(let n=0;n<this.state.resultEntries.length;n++)this.state.resultEntries[n]&&(r[n]=this.state.resultEntries[n]);return{bundle:this.bundle,bundleInfo:{ordering:this.bundleInfo.ordering,resourceTypes:this.bundleInfo.resourceTypes,requiresStrongTransaction:this.bundleInfo.requiresStrongTransaction,updates:this.bundleInfo.updates},resolvedIdentities:this.resolvedIdentities,preprocessResults:r}}hasMoreEntries(){return this.bundleInfo!==void 0&&this.state.position<this.bundleInfo.ordering.length}getPosition(){return this.state.position}takePendingResults(){if(this.state.pendingIndices.length===0)return;let e=Object.create(null);for(let r of this.state.pendingIndices)e[r]=this.state.resultEntries[r];return this.state.pendingIndices=[],e}async processEntriesAndBuild(){for(;this.hasMoreEntries();)await this.processNextEntryImpl();return this.buildResultBundle()}dispatchPreEvent(){let e={type:"batch",bundleType:this.bundle.type,count:this.bundle.entry?.length,size:JSON.stringify(this.bundle).length};this.router.dispatchEvent(e)}dispatchPostEvent(){let e={type:"batch",bundleType:this.bundle.type,errors:this.state.errors.length?this.state.errors:void 0};this.router.dispatchEvent(e)}buildResultBundle(){return{resourceType:"Bundle",type:`${this.bundle.type}-response`,entry:this.state.resultEntries}}async withRepo(e,r){let n=this.repo;this.repo=e;try{return await r()}finally{this.repo=n}}async preprocessBundle(){let e=this.bundle.entry;if(!e?.length)throw new q(Z("Missing bundle entries"));let r={transaction:[],batch:[],delete:[],create:[],update:[],patch:[],operation:[],"search-system":[],"search-type":[],read:[],vread:[],"history-system":[],"history-type":[],"history-instance":[]},n=new Set,i=new Set,o=!1,s=0;for(let c=0;c<e.length;c++){let u=e[c];if(!u.request?.method){this.state.resultEntries[c]=Vt(Z("Missing Bundle entry request method",`Bundle.entry[${c}].request.method`));continue}let f=await this.preprocessEntry(u,c,n);if(f){if(!this.isTransaction()){this.state.resultEntries[c]=Vt(f);continue}throw new q(f)}let m=this.getRouteForEntry(u),T=m?.data?.interaction;if(!T||!r[T])throw new q(Z(`Invalid REST interaction in batch: ${u.request?.method} ${u.request?.url}`));let y=m?.params?.resourceType;y&&i.add(y),T==="create"&&u.request?.ifNoneExist?o=!0:T==="update"?(u.request?.url.includes("?")&&(o=!0),s++):T==="delete"&&u.request?.url.includes("?")&&(o=!0),r[T].push(c)}let a=[];for(let c of Object.values(r))a.push(...c);return{ordering:a,requiresStrongTransaction:o,updates:s,resourceTypes:i}}async preprocessEntry(e,r,n){if(!e.request?.url)return Z("Missing Bundle entry request URL",`Bundle.entry[${r}].request.url`);let i;try{i=await this.resolveIdentity(e,`Bundle.entry[${r}]`)}catch(o){if(o instanceof q)return o.outcome;throw o}if(i&&(this.resolvedIdentities[i.placeholder]=i.reference,this.isTransaction())){if(n.has(i.reference))throw new q(Z("Duplicate resource identity found in Bundle"));n.add(i.reference)}}async resolveIdentity(e,r){let i=this.getRouteForEntry(e)?.data?.interaction;if(!i)throw new q(Oo);switch(i){case"create":return this.resolveCreateIdentity(e);case"delete":case"update":case"patch":return this.resolveModificationIdentity(e,r);default:return}}getRouteForEntry(e){return this.router.find(e.request?.method,e.request?.url??"")}async resolveCreateIdentity(e){let r=e.fullUrl??"";if(e.request?.ifNoneExist){let n=await this.repo.searchResources(wo(e.request.url+"?"+e.request.ifNoneExist));if(n.length===1)return{placeholder:r,reference:Ut(n[0])}}if(e.resource)return e.resource.id=this.repo.generateId(),{placeholder:r,reference:Ut(e.resource)}}async resolveModificationIdentity(e,r){let n=e.fullUrl??"";if(e.request?.url?.includes("?")){let i=e.request.method,o=wo(e.request.url);o.count=2,o.offset=0,o.sortRules=void 0;let[s,a]=await this.repo.searchResources(o);if(!s)switch(i){case"DELETE":return;case"PUT":if(e.resource){if(e.resource.id)throw new q(Z("Cannot provide ID for create by update"));return e.resource.id=this.repo.generateId(),{placeholder:n,reference:Ut(e.resource)}}return;default:throw new q(Z(`Conditional ${e.request.method} did not match any resources`,r+".request.url"))}if(a)throw new q(Z(`Conditional ${e.request.method} matched multiple resources`,r+".request.url"));let c=Ut(s);return e.request.url=c,e.resource&&(e.resource.id=s.id),{placeholder:n,reference:c}}if(e.request?.url.includes("/"))return{placeholder:n,reference:e.request.url}}async processNextEntry(){if(this.isTransaction())throw new Error("Re-entrant batch processing does not support transaction semantics");await this.processNextEntryImpl()}async processNextEntryImpl(){let e=this.bundleInfo;if(!e)throw new Error("processNextEntry called before preprocess()/fromState()");let r=this.bundle.entry;if(!r)throw new q(Z("Missing bundle entry"));if(this.state.position>=e.ordering.length)return;let n=this.state.position,i=e.ordering[n],o=r[i],s=this.rewriteIdsInObject(o);try{this.setResult(i,await this.processBatchEntry(s)),this.state.position=n+1}catch(a){if(this.isTransaction())throw a;if(this.state.errors.push(a.message),a instanceof q&&Do(a.outcome)===429){for(let c=n;c<e.ordering.length;c++)this.setResult(e.ordering[c],Vt(a.outcome));this.state.position=e.ordering.length;return}this.setResult(i,Vt(Ua(a))),this.state.position=n+1}}setResult(e,r){this.state.resultEntries[e]=r,this.state.pendingIndices.push(e)}async processBatchEntry(e){let r=this.getRouteForEntry(e);if(!r)throw new q(Oo);let n=this.parseBatchRequest(e,r),[i,o]=await r.handler(n,this.repo,this.router,{batch:!0});if(!Lo(i)&&this.isTransaction())throw new q(i);return Vt(i,o)}parseBatchRequest(e,r){let n=e.request,i=Object.create(null);n.ifNoneExist&&(i["if-none-exist"]=n.ifNoneExist),n.ifMatch&&(i["if-match"]=n.ifMatch),n.ifNoneMatch&&(i["if-none-match"]=n.ifNoneMatch),n.ifModifiedSince&&(i["if-modified-since"]=n.ifModifiedSince);let o;return n.method==="PATCH"?o=this.parsePatchBody(e):o=e.resource,{method:n.method,url:r?.query?n.url.slice(0,n.url.indexOf("?")):n.url,pathname:"",params:r?.params??Object.create(null),query:r?.query??Object.create(null),body:o,headers:i,config:this.req.config}}parsePatchBody(e){let r=e.resource,n;if(r?.resourceType==="Binary"){if(!r.data)throw new q(Z("Missing entry.resource.data"));n=JSON.parse(Buffer.from(r.data,"base64").toString("utf8"))}else if(r?.resourceType==="Parameters"){if(Qa(r))return this.rewriteIds(r);if(r.parameter){n=[];for(let i of r.parameter)if(i.name==="operation"){let o=this.parsePatchParameter(i);n.push(o)}}}else throw new q(Z("Patch entry must include a Binary or Parameters resource"));if(!Array.isArray(n))throw new q(Z("Decoded PATCH body must be an array"));return this.rewriteIdsInArray(n)}parsePatchParameter(e){let r=e.part?.find(i=>i.name==="op")?.valueCode;if(!r)throw new q(Z("PATCH Parameters missing op"));let n={op:r};switch(r){case"add":case"replace":case"test":for(let i of e.part)i.name==="path"?n.path=i.valueString:i.name==="value"&&(n.value=JSON.parse(i.valueString??""));break;case"copy":case"move":for(let i of e.part)i.name==="path"?n.path=i.valueString:i.name==="from"&&(n.from=i.valueString);break;case"remove":n.path=e.part?.find(i=>i.name==="path")?.valueString;break}return n}rewriteIds(e){return Array.isArray(e)?this.rewriteIdsInArray(e):typeof e=="string"?this.rewriteIdsInString(e):typeof e=="object"&&e!==null?this.rewriteIdsInObject(e):e}rewriteIdsInArray(e){return e.map(r=>this.rewriteIds(r))}rewriteIdsInObject(e){return Object.fromEntries(Object.entries(e).map(([r,n])=>[r,this.rewriteIds(n)]))}rewriteIdsInString(e){let r=Ba.exec(e)?.[0];if(!r)return e;let n=r.replaceAll("%3A",":"),i=this.resolvedIdentities[n];return i?e.replaceAll(r,i):e}isTransaction(){return this.bundle.type==="transaction"&&!!this.req.config?.transactions}};function Qa(t){return!!t.parameter?.some(e=>e.name==="operation"&&e.part?.some(r=>r.name==="type"))}function Vt(t,e){return{response:{outcome:t,status:Do(t).toString(),location:Lo(t)&&e?.id?Ut(e):void 0},resource:e}}function ja(t,e,r){let n=new Array(e);for(let i=0;i<e;i++)n[i]=r[i];return{resourceType:"Bundle",type:`${t}-response`,entry:n}}function _o(t){return{position:t.position,resultEntries:t.resultEntries.slice(),pendingIndices:t.pendingIndices.slice(),errors:t.errors.slice()}}import{EventTarget as kf,OperationOutcomeError as Pf,allOk as Se,badRequest as Pe,created as Mf,isResource as Vf,normalizeOperationOutcome as Aa,notFound as ka,parseSearchRequest as gt,singularize as Uf}from"@medplum/core";import{allOk as tf,badRequest as Mt,ContentType as rf,deepClone as _a,DEFAULT_SEARCH_COUNT as nf,forbidden as of,getResourceTypes as wa,LRUCache as sf,normalizeOperationOutcome as af,OperationOutcomeError as yr}from"@medplum/core";import cf from"dataloader";function g(t){return Er(t,[])}function Er(t,e){switch(typeof t){case"string":return JSON.stringify(t);case"function":return t.name?`[function ${t.name}]`:"[function]";case"object":return qa(t,e);default:return String(t)}}function qa(t,e){if(t===null)return"null";if(e.includes(t))return"[Circular]";let r=[...e,t];if(Ka(t)){let n=t.toJSON();if(n!==t)return typeof n=="string"?n:Er(n,r)}else if(Array.isArray(t))return Ha(t,r);return Ya(t,r)}function Ka(t){return typeof t.toJSON=="function"}function Ya(t,e){let r=Object.entries(t);return r.length===0?"{}":e.length>2?"["+Wa(t)+"]":"{ "+r.map(([i,o])=>i+": "+Er(o,e)).join(", ")+" }"}function Ha(t,e){if(t.length===0)return"[]";if(e.length>2)return"[Array]";let r=Math.min(10,t.length),n=t.length-r,i=[];for(let o=0;o<r;++o)i.push(Er(t[o],e));return n===1?i.push("... 1 more item"):n>1&&i.push(`... ${n} more items`),"["+i.join(", ")+"]"}function Wa(t){let e=Object.prototype.toString.call(t).replace(/^\[object /,"").replace(/]$/,"");if(e==="Object"&&typeof t.constructor=="function"){let r=t.constructor.name;if(typeof r=="string"&&r!=="")return r}return e}function Ja(t,e){return t?.__kind===e}var ee=Ja;function xe(t){return t instanceof Promise}function pe(t){return typeof t?.then=="function"}function Ir(t){return t instanceof Error?t:new vn(t)}var vn=class extends Error{constructor(e){super("Unexpected error value: "+g(e)),this.name="NonErrorThrown",this.thrownValue=e}};function Q(t){return typeof t=="object"&&t!==null}function O(t,e){if(!t)throw new Error(e??"Unexpected invariant triggered.")}var Xa=/\r\n|[\n\r]/g;function It(t,e){let r=0,n=1;for(let i of t.body.matchAll(Xa)){if(typeof i.index!="number"&&O(!1),i.index>=e)break;r=i.index+i[0].length,n+=1}return{line:n,column:e+1-r}}function Rn(t){return Nr(t.source,It(t.source,t.start))}function Nr(t,e){let r=t.locationOffset.column-1,n="".padStart(r)+t.body,i=e.line-1,o=t.locationOffset.line-1,s=e.line+o,a=e.line===1?r:0,c=e.column+a,u=`${t.name}:${s}:${c}
|
|
1
|
+
var xo=Object.defineProperty;var Ma=(t,e,r)=>e in t?xo(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r;var Va=(t,e)=>{for(var r in e)xo(t,r,{get:e[r],enumerable:!0})};var C=(t,e,r)=>Ma(t,typeof e!="symbol"?e+"":e,r);import{badRequest as Z,getReferenceString as Ut,getStatus as Do,isOk as Lo,normalizeOperationOutcome as Ua,notFound as Oo,OperationOutcomeError as q,parseSearchRequest as wo}from"@medplum/core";var $a=50,Ga=8,Ba=/urn(:|%3A)uuid(:|%3A)[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/;async function bn(t,e,r,n){return new gr(r,e,n,t).run()}var gr=class t{constructor(e,r,n,i){C(this,"router");C(this,"repo");C(this,"bundle");C(this,"req");C(this,"resolvedIdentities");C(this,"bundleInfo");C(this,"state");this.router=e,this.repo=r,this.bundle=n,this.req=i,this.resolvedIdentities=Object.create(null),this.state={position:0,resultEntries:new Array(n.entry?.length??0),pendingIndices:[],errors:[]}}static fromState(e,r,n,i,o){let s=new t(e,r,i.bundle,n);return s.resolvedIdentities=i.resolvedIdentities,s.bundleInfo={...i.bundleInfo},s.state.position=o,s}async run(){await this.preprocess();let e=this.bundleInfo;if(!this.isTransaction()){let i=await this.processEntriesAndBuild();return this.dispatchPostEvent(),i}let r=_o(this.state),n=await this.repo.withTransaction(i=>this.withRepo(i,()=>(this.state=_o(r),this.processEntriesAndBuild())),{serializable:e.requiresStrongTransaction,resourceTypes:e.resourceTypes});return this.dispatchPostEvent(),n}async preprocess(){let e=this.bundle.type;if(e!=="batch"&&e!=="transaction")throw new q(Z("Unrecognized bundle type: "+e));if(this.bundleInfo=await this.preprocessBundle(),this.isTransaction()){if(this.bundleInfo.updates>$a)throw new q(Z("Transaction contains more update operations than allowed"));if(this.bundleInfo.requiresStrongTransaction&&this.state.resultEntries.length>Ga)throw new q(Z("Transaction requires strict isolation but has too many entries"))}this.dispatchPreEvent();let r=Object.create(null);for(let n=0;n<this.state.resultEntries.length;n++)this.state.resultEntries[n]&&(r[n]=this.state.resultEntries[n]);return{bundle:this.bundle,bundleInfo:{ordering:this.bundleInfo.ordering,resourceTypes:this.bundleInfo.resourceTypes,requiresStrongTransaction:this.bundleInfo.requiresStrongTransaction,updates:this.bundleInfo.updates},resolvedIdentities:this.resolvedIdentities,preprocessResults:r}}hasMoreEntries(){return this.bundleInfo!==void 0&&this.state.position<this.bundleInfo.ordering.length}getPosition(){return this.state.position}takePendingResults(){if(this.state.pendingIndices.length===0)return;let e=Object.create(null);for(let r of this.state.pendingIndices)e[r]=this.state.resultEntries[r];return this.state.pendingIndices=[],e}async processEntriesAndBuild(){for(;this.hasMoreEntries();)await this.processNextEntryImpl();return this.buildResultBundle()}dispatchPreEvent(){let e={type:"batch",bundleType:this.bundle.type,count:this.bundle.entry?.length,size:JSON.stringify(this.bundle).length};this.router.dispatchEvent(e)}dispatchPostEvent(){let e={type:"batch",bundleType:this.bundle.type,errors:this.state.errors.length?this.state.errors:void 0};this.router.dispatchEvent(e)}buildResultBundle(){return{resourceType:"Bundle",type:`${this.bundle.type}-response`,entry:this.state.resultEntries}}async withRepo(e,r){let n=this.repo;this.repo=e;try{return await r()}finally{this.repo=n}}async preprocessBundle(){let e=this.bundle.entry;if(!e?.length)throw new q(Z("Missing bundle entries"));let r={transaction:[],batch:[],delete:[],create:[],update:[],patch:[],operation:[],"search-system":[],"search-type":[],read:[],vread:[],"history-system":[],"history-type":[],"history-instance":[]},n=new Set,i=new Set,o=!1,s=0;for(let c=0;c<e.length;c++){let u=e[c];if(!u.request?.method){this.state.resultEntries[c]=Vt(Z("Missing Bundle entry request method",`Bundle.entry[${c}].request.method`));continue}let f=await this.preprocessEntry(u,c,n);if(f){if(!this.isTransaction()){this.state.resultEntries[c]=Vt(f);continue}throw new q(f)}let m=this.getRouteForEntry(u),T=m?.data?.interaction;if(!T||!r[T])throw new q(Z(`Invalid REST interaction in batch: ${u.request?.method} ${u.request?.url}`));let y=m?.params?.resourceType;y&&i.add(y),T==="create"&&u.request?.ifNoneExist?o=!0:T==="update"?(u.request?.url.includes("?")&&(o=!0),s++):T==="delete"&&u.request?.url.includes("?")&&(o=!0),r[T].push(c)}let a=[];for(let c of Object.values(r))a.push(...c);return{ordering:a,requiresStrongTransaction:o,updates:s,resourceTypes:i}}async preprocessEntry(e,r,n){if(!e.request?.url)return Z("Missing Bundle entry request URL",`Bundle.entry[${r}].request.url`);let i;try{i=await this.resolveIdentity(e,`Bundle.entry[${r}]`)}catch(o){if(o instanceof q)return o.outcome;throw o}if(i&&(this.resolvedIdentities[i.placeholder]=i.reference,this.isTransaction())){if(n.has(i.reference))throw new q(Z("Duplicate resource identity found in Bundle"));n.add(i.reference)}}async resolveIdentity(e,r){let i=this.getRouteForEntry(e)?.data?.interaction;if(!i)throw new q(Oo);switch(i){case"create":return this.resolveCreateIdentity(e);case"delete":case"update":case"patch":return this.resolveModificationIdentity(e,r);default:return}}getRouteForEntry(e){return this.router.find(e.request?.method,e.request?.url??"")}async resolveCreateIdentity(e){let r=e.fullUrl??"";if(e.request?.ifNoneExist){let n=await this.repo.searchResources(wo(e.request.url+"?"+e.request.ifNoneExist));if(n.length===1)return{placeholder:r,reference:Ut(n[0])}}if(e.resource)return e.resource.id=this.repo.generateId(),{placeholder:r,reference:Ut(e.resource)}}async resolveModificationIdentity(e,r){let n=e.fullUrl??"";if(e.request?.url?.includes("?")){let i=e.request.method,o=wo(e.request.url);o.count=2,o.offset=0,o.sortRules=void 0;let[s,a]=await this.repo.searchResources(o);if(!s)switch(i){case"DELETE":return;case"PUT":if(e.resource){if(e.resource.id)throw new q(Z("Cannot provide ID for create by update"));return e.resource.id=this.repo.generateId(),{placeholder:n,reference:Ut(e.resource)}}return;default:throw new q(Z(`Conditional ${e.request.method} did not match any resources`,r+".request.url"))}if(a)throw new q(Z(`Conditional ${e.request.method} matched multiple resources`,r+".request.url"));let c=Ut(s);return e.request.url=c,e.resource&&(e.resource.id=s.id),{placeholder:n,reference:c}}if(e.request?.url.includes("/"))return{placeholder:n,reference:e.request.url}}async processNextEntry(){if(this.isTransaction())throw new Error("Re-entrant batch processing does not support transaction semantics");await this.processNextEntryImpl()}async processNextEntryImpl(){let e=this.bundleInfo;if(!e)throw new Error("processNextEntry called before preprocess()/fromState()");let r=this.bundle.entry;if(!r)throw new q(Z("Missing bundle entry"));if(this.state.position>=e.ordering.length)return;let n=this.state.position,i=e.ordering[n],o=r[i],s=this.rewriteIdsInObject(o);try{this.setResult(i,await this.processBatchEntry(s)),this.state.position=n+1}catch(a){if(this.isTransaction())throw a;if(this.state.errors.push(a.message),a instanceof q&&Do(a.outcome)===429){for(let c=n;c<e.ordering.length;c++)this.setResult(e.ordering[c],Vt(a.outcome));this.state.position=e.ordering.length;return}this.setResult(i,Vt(Ua(a))),this.state.position=n+1}}setResult(e,r){this.state.resultEntries[e]=r,this.state.pendingIndices.push(e)}async processBatchEntry(e){let r=this.getRouteForEntry(e);if(!r)throw new q(Oo);let n=this.parseBatchRequest(e,r),[i,o]=await r.handler(n,this.repo,this.router,{batch:!0});if(!Lo(i)&&this.isTransaction())throw new q(i);return Vt(i,o)}parseBatchRequest(e,r){let n=e.request,i=Object.create(null);n.ifNoneExist&&(i["if-none-exist"]=n.ifNoneExist),n.ifMatch&&(i["if-match"]=n.ifMatch),n.ifNoneMatch&&(i["if-none-match"]=n.ifNoneMatch),n.ifModifiedSince&&(i["if-modified-since"]=n.ifModifiedSince);let o;return n.method==="PATCH"?o=this.parsePatchBody(e):o=e.resource,{method:n.method,url:r?.query?n.url.slice(0,n.url.indexOf("?")):n.url,pathname:"",params:r?.params??Object.create(null),query:r?.query??Object.create(null),body:o,headers:i,config:this.req.config}}parsePatchBody(e){let r=e.resource,n;if(r?.resourceType==="Binary"){if(!r.data)throw new q(Z("Missing entry.resource.data"));n=JSON.parse(Buffer.from(r.data,"base64").toString("utf8"))}else if(r?.resourceType==="Parameters"){if(Qa(r))return this.rewriteIds(r);if(r.parameter){n=[];for(let i of r.parameter)if(i.name==="operation"){let o=this.parsePatchParameter(i);n.push(o)}}}else throw new q(Z("Patch entry must include a Binary or Parameters resource"));if(!Array.isArray(n))throw new q(Z("Decoded PATCH body must be an array"));return this.rewriteIdsInArray(n)}parsePatchParameter(e){let r=e.part?.find(i=>i.name==="op")?.valueCode;if(!r)throw new q(Z("PATCH Parameters missing op"));let n={op:r};switch(r){case"add":case"replace":case"test":for(let i of e.part)i.name==="path"?n.path=i.valueString:i.name==="value"&&(n.value=JSON.parse(i.valueString??""));break;case"copy":case"move":for(let i of e.part)i.name==="path"?n.path=i.valueString:i.name==="from"&&(n.from=i.valueString);break;case"remove":n.path=e.part?.find(i=>i.name==="path")?.valueString;break}return n}rewriteIds(e){return Array.isArray(e)?this.rewriteIdsInArray(e):typeof e=="string"?this.rewriteIdsInString(e):typeof e=="object"&&e!==null?this.rewriteIdsInObject(e):e}rewriteIdsInArray(e){return e.map(r=>this.rewriteIds(r))}rewriteIdsInObject(e){return Object.fromEntries(Object.entries(e).map(([r,n])=>[r,this.rewriteIds(n)]))}rewriteIdsInString(e){let r=Ba.exec(e)?.[0];if(!r)return e;let n=r.replaceAll("%3A",":"),i=this.resolvedIdentities[n];return i?e.replaceAll(r,i):e}isTransaction(){return this.bundle.type==="transaction"&&!!this.req.config?.transactions}};function Qa(t){return!!t.parameter?.some(e=>e.name==="operation"&&e.part?.some(r=>r.name==="type"))}function Vt(t,e){return{response:{outcome:t,status:Do(t).toString(),location:Lo(t)&&e?.id?Ut(e):void 0},resource:e}}function ja(t,e,r){let n=new Array(e);for(let i=0;i<e;i++)n[i]=r[i];return{resourceType:"Bundle",type:`${t}-response`,entry:n}}function _o(t){return{position:t.position,resultEntries:t.resultEntries.slice(),pendingIndices:t.pendingIndices.slice(),errors:t.errors.slice()}}import{EventTarget as Pf,OperationOutcomeError as Mf,allOk as Se,badRequest as Pe,created as Vf,isResource as Uf,normalizeOperationOutcome as Aa,notFound as ka,parseSearchRequest as gt,singularize as $f}from"@medplum/core";import{allOk as tf,badRequest as Mt,ContentType as rf,deepClone as _a,DEFAULT_SEARCH_COUNT as nf,forbidden as of,getResourceTypes as wa,LRUCache as sf,normalizeOperationOutcome as af,OperationOutcomeError as yr}from"@medplum/core";import cf from"dataloader";function g(t){return Er(t,[])}function Er(t,e){switch(typeof t){case"string":return JSON.stringify(t);case"function":return t.name?`[function ${t.name}]`:"[function]";case"object":return qa(t,e);default:return String(t)}}function qa(t,e){if(t===null)return"null";if(e.includes(t))return"[Circular]";let r=[...e,t];if(Ka(t)){let n=t.toJSON();if(n!==t)return typeof n=="string"?n:Er(n,r)}else if(Array.isArray(t))return Ha(t,r);return Ya(t,r)}function Ka(t){return typeof t.toJSON=="function"}function Ya(t,e){let r=Object.entries(t);return r.length===0?"{}":e.length>2?"["+Wa(t)+"]":"{ "+r.map(([i,o])=>i+": "+Er(o,e)).join(", ")+" }"}function Ha(t,e){if(t.length===0)return"[]";if(e.length>2)return"[Array]";let r=Math.min(10,t.length),n=t.length-r,i=[];for(let o=0;o<r;++o)i.push(Er(t[o],e));return n===1?i.push("... 1 more item"):n>1&&i.push(`... ${n} more items`),"["+i.join(", ")+"]"}function Wa(t){let e=Object.prototype.toString.call(t).replace(/^\[object /,"").replace(/]$/,"");if(e==="Object"&&typeof t.constructor=="function"){let r=t.constructor.name;if(typeof r=="string"&&r!=="")return r}return e}function Ja(t,e){return t?.__kind===e}var ee=Ja;function xe(t){return t instanceof Promise}function pe(t){return typeof t?.then=="function"}function Ir(t){return t instanceof Error?t:new vn(t)}var vn=class extends Error{constructor(e){super("Unexpected error value: "+g(e)),this.name="NonErrorThrown",this.thrownValue=e}};function Q(t){return typeof t=="object"&&t!==null}function O(t,e){if(!t)throw new Error(e??"Unexpected invariant triggered.")}var Xa=/\r\n|[\n\r]/g;function It(t,e){let r=0,n=1;for(let i of t.body.matchAll(Xa)){if(typeof i.index!="number"&&O(!1),i.index>=e)break;r=i.index+i[0].length,n+=1}return{line:n,column:e+1-r}}function Rn(t){return Nr(t.source,It(t.source,t.start))}function Nr(t,e){let r=t.locationOffset.column-1,n="".padStart(r)+t.body,i=e.line-1,o=t.locationOffset.line-1,s=e.line+o,a=e.line===1?r:0,c=e.column+a,u=`${t.name}:${s}:${c}
|
|
2
2
|
`,l=n.split(/\r\n|[\n\r]/g),f=l[i];if(f.length>120){let m=Math.floor(c/80),T=c%80,y=[];for(let R=0;R<f.length;R+=80)y.push(f.slice(R,R+80));return u+Ao([[`${s} |`,y[0]],...y.slice(1,m+1).map(R=>["|",R]),["|","^".padStart(T)],["|",y[m+1]]])}return u+Ao([[`${s-1} |`,l[i-1]],[`${s} |`,f],["|","^".padStart(c)],[`${s+1} |`,l[i+1]]])}function Ao(t){let e=t.filter(([n,i])=>i!==void 0),r=Math.max(...e.map(([n])=>n.length));return e.map(([n,i])=>n.padStart(r)+(i?" "+i:"")).join(`
|
|
3
3
|
`)}var d=class t extends Error{constructor(e,r={}){let{nodes:n,source:i,positions:o,path:s,originalError:a,cause:c,extensions:u}=r,l="cause"in r,f=l?c:a,m=l||a!=null?{cause:f}:void 0;super(e,m),this.name="GraphQLError",this.path=s??void 0;let T=a??(c instanceof Error?c:void 0);this.originalError=T,this.nodes=Fo(Array.isArray(n)?n:n?[n]:void 0);let y=Fo(this.nodes?.map(v=>v.loc).filter(v=>v!=null));this.source=i??y?.[0]?.source,this.positions=o??y?.map(v=>v.start),this.locations=o&&i?o.map(v=>It(i,v)):y?.map(v=>It(v.source,v.start));let R=Q(T?.extensions)?T.extensions:void 0;this.extensions=u??R??Object.create(null),Object.defineProperties(this,{message:{writable:!0,enumerable:!0},name:{enumerable:!1},nodes:{enumerable:!1},source:{enumerable:!1},positions:{enumerable:!1},originalError:{enumerable:!1}}),a?.stack!=null?Object.defineProperty(this,"stack",{value:a.stack,writable:!0,configurable:!0}):Error.captureStackTrace!=null?Error.captureStackTrace(this,t):Object.defineProperty(this,"stack",{value:Error().stack,writable:!0,configurable:!0})}get[Symbol.toStringTag](){return"GraphQLError"}toString(){let e=this.message;if(this.nodes)for(let r of this.nodes)r.loc&&(e+=`
|
|
4
4
|
|
|
@@ -50,5 +50,5 @@ In some cases, you need to provide options to alter GraphQL's execution behavior
|
|
|
50
50
|
`))}var jn=class{constructor(e){this._errors=[],this.schema=e}reportError(e,r){let n=Array.isArray(r)?r.filter(Boolean):r;this._errors.push(new d(e,{nodes:n}))}getErrors(){return this._errors}};function fu(t){let e=t.schema;e.getQueryType()==null&&t.reportError("Query root type must be provided.",e.astNode);let r=new $e;for(let n of Object.values(k)){let i=e.getRootType(n);if(i!=null)if(L(i))r.add(i,n);else{let o=Co(n),s=g(i);t.reportError(n===k.QUERY?`${o} root type must be Object type, it cannot be ${s}.`:`${o} root type must be Object type if provided, it cannot be ${s}.`,ms(e,n)??i.astNode)}}for(let[n,i]of r)if(i.length>1){let o=Po(i);t.reportError(`All root types must be different, "${n}" type is used as ${o} root types.`,i.map(s=>ms(e,s)))}}function ms(t,e){return[t.astNode,...t.extensionASTNodes].flatMap(r=>r?.operationTypes??[]).find(r=>r.operation===e)?.type}function du(t){for(let e of t.schema.getDirectives()){if(!zt(e)){t.reportError(`Expected directive but got: ${g(e)}.`,e?.astNode);continue}lt(t,e),e.locations.length===0&&t.reportError(`Directive ${e} must include 1 or more locations.`,e.astNode);for(let r of e.args)lt(t,r),W(r.type)||t.reportError(`The type of ${r} must be Input Type but got: ${g(r.type)}.`,r.astNode),ge(r)&&r.deprecationReason!=null&&t.reportError(`Required argument ${r} cannot be deprecated.`,[Gr(r.astNode),r.astNode?.type]),Kn(t,r)}}function Kn(t,e){let r=e.default;if(!r)return;let n=[];if(Yn(r,e.type,(i,o)=>{n.push([i,o])}),n.length!==0){if(!r.literal)try{let i=tr(r.value,e.type),o=[];if(Jt(i,e.type,(s,a)=>{o.push([s,a])}),o.length===0){t.reportError(`${e} has invalid default value: ${g(r.value)}. Did you mean: ${g(i)}?`,e.astNode?.defaultValue);return}}catch{}for(let[i,o]of n)t.reportError(`${e} has invalid default value${Xe(o)}: ${i.message}`,i.nodes??e.astNode?.defaultValue)}}function Yn(t,e,r,n){if(t.literal){Ot(t.literal,e,r,void 0,void 0,n);return}Jt(t.value,e,r,n)}function tr(t,e){if(x(e))return tr(t,e.ofType);if(t===null)return null;if(D(e))return ce(t)?Array.from(t,r=>tr(r,e.ofType)):[tr(t,e.ofType)];if(_(e)){Q(t)||O(!1);let r=e.getFields();return Fe(t,(n,i)=>(i in r||O(!1),tr(n,r[i].type)))}return ye(e),e.coerceOutputValue(t)}function lt(t,e){e.name.startsWith("__")&&t.reportError(`Name "${e.name}" must not begin with "__", which is reserved by GraphQL introspection.`,e.astNode)}function mu(t){let e=vu(t),r=t.schema.getTypeMap(),n=new Map;for(let o of Object.values(r)){if(!Dr(o)){t.reportError(`Expected GraphQL named type but got: ${g(o)}.`,o.astNode);continue}Bn(o)||lt(t,o),L(o)||A(o)?(hs(t,o),ys(t,o)):J(o)?Tu(t,o):K(o)?gu(t,o):_(o)&&(Eu(t,o),i(o),e(o))}Nu(t,n);function i(o){n.set(o,{inputObj:o,targets:[],dependents:[],unresolvedTargetCount:0,hasFiniteValue:!1})}}function hs(t,e){let r=Object.values(e.getFields());r.length===0&&t.reportError(`Type ${e} must define one or more fields.`,[e.astNode,...e.extensionASTNodes]);for(let n of r){lt(t,n),Ge(n.type)||t.reportError(`The type of ${n} must be Output Type but got: ${g(n.type)}.`,n.astNode?.type);for(let i of n.args)lt(t,i),W(i.type)||t.reportError(`The type of ${i} must be Input Type but got: ${g(i.type)}.`,i.astNode?.type),ge(i)&&i.deprecationReason!=null&&t.reportError(`Required argument ${i} cannot be deprecated.`,[Gr(i.astNode),i.astNode?.type]),Kn(t,i)}}function ys(t,e){let r=new Set;for(let n of e.getInterfaces()){if(!A(n)){t.reportError(`Type ${e} must only implement Interface types, it cannot implement ${g(n)}.`,rr(e,n));continue}if(e===n){t.reportError(`Type ${e} cannot implement itself because it would create a circular reference.`,rr(e,n));continue}if(r.has(n.name)){t.reportError(`Type ${e} can only implement ${n} once.`,rr(e,n));continue}r.add(n.name),yu(t,e,n),hu(t,e,n)}}function hu(t,e,r){let n=e.getFields();for(let i of Object.values(r.getFields())){let o=n[i.name];if(o==null){t.reportError(`Interface field ${i} expected but ${e} does not provide it.`,[i.astNode,e.astNode,...e.extensionASTNodes]);continue}je(t.schema,o.type,i.type)||t.reportError(`Interface field ${i} expects type ${i.type} but ${o} is type ${o.type}.`,[i.astNode?.type,o.astNode?.type]);for(let s of i.args){let a=o.args.find(c=>c.name===s.name);if(!a){t.reportError(`Interface field argument ${s} expected but ${o} does not provide it.`,[s.astNode,o.astNode]);continue}Ar(s.type,a.type)||t.reportError(`Interface field argument ${s} expects type ${s.type} but ${a} is type ${a.type}.`,[s.astNode?.type,a.astNode?.type])}for(let s of o.args)ge(s)&&(i.args.find(c=>c.name===s.name)||t.reportError(`Argument "${s}" must not be required type "${s.type}" if not provided by the Interface field "${i}".`,[s.astNode,i.astNode]));o.deprecationReason!=null&&i.deprecationReason==null&&t.reportError(`Interface field ${r.name}.${i.name} is not deprecated, so implementation field ${e.name}.${o.name} must not be deprecated.`,[Gr(o.astNode),o.astNode?.type])}}function yu(t,e,r){let n=e.getInterfaces();for(let i of r.getInterfaces())n.includes(i)||t.reportError(i===e?`Type ${e} cannot implement ${r} because it would create a circular reference.`:`Type ${e} must implement ${i} because it is implemented by ${r}.`,[...rr(r,i),...rr(e,r)])}function Tu(t,e){let r=e.getTypes();r.length===0&&t.reportError(`Union type ${e} must define one or more member types.`,[e.astNode,...e.extensionASTNodes]);let n=new Set;for(let i of r){if(n.has(i.name)){t.reportError(`Union type ${e} can only include type ${i} once.`,Ts(e,i.name));continue}n.add(i.name),L(i)||t.reportError(`Union type ${e} can only include Object types, it cannot include ${g(i)}.`,Ts(e,String(i)))}}function gu(t,e){let r=e.getValues();r.length===0&&t.reportError(`Enum type ${e} must define one or more values.`,[e.astNode,...e.extensionASTNodes]);for(let n of r)lt(t,n)}function Eu(t,e){let r=Object.values(e.getFields());r.length===0&&t.reportError(`Input Object type ${e} must define one or more fields.`,[e.astNode,...e.extensionASTNodes]);for(let n of r)lt(t,n),W(n.type)||t.reportError(`The type of ${n} must be Input Type but got: ${g(n.type)}.`,n.astNode?.type),le(n)&&n.deprecationReason!=null&&t.reportError(`Required input field ${n} cannot be deprecated.`,[Gr(n.astNode),n.astNode?.type]),Kn(t,n),e.isOneOf&&Iu(e,n,t)}function Iu(t,e,r){x(e.type)&&r.reportError(`OneOf input field ${t}.${e.name} must be nullable.`,e.astNode?.type),(e.default!==void 0||e.defaultValue!==void 0)&&r.reportError(`OneOf input field ${t}.${e.name} cannot have a default value.`,e.astNode)}function Nu(t,e){let r=[];for(let u of e.values()){let l=u.inputObj,f=Object.values(l.getFields());for(let m of f){let T=bu(l,m.type);if(T===void 0)continue;u.targets.push({field:m,target:T});let y=e.get(T);y!==void 0&&y.dependents.push(u)}l.isOneOf?(f.length===0||u.targets.length<f.length)&&a(u):(u.unresolvedTargetCount=u.targets.length,u.targets.length===0&&a(u))}let n;for(;(n=r.pop())!==void 0;)for(let u of n.dependents)if(!u.hasFiniteValue){if(u.inputObj.isOneOf){a(u);continue}--u.unresolvedTargetCount,u.unresolvedTargetCount===0&&a(u)}let i=new Set,o=[],s=new Map;for(let u of e.values())u.hasFiniteValue||c(u);function a(u){u.hasFiniteValue||(u.hasFiniteValue=!0,r.push(u))}function c(u){let l=u.inputObj;if(!i.has(l)){i.add(l),s.set(l,o.length);for(let{field:f,target:m}of u.targets){let T=e.get(m);if(T?.hasFiniteValue!==!1)continue;let y=s.get(m);if(o.push({fieldStr:`${l}.${f.name}`,astNode:f.astNode}),y===void 0)c(T);else{let R=o.slice(y),v=R.map(w=>w.fieldStr).join(", ");t.reportError(`Input Object ${m} cannot be provided a finite value because it references itself through fields: ${v}.`,R.map(w=>w.astNode))}o.pop()}s.delete(l)}}}function bu(t,e){if(t.isOneOf)return _(e)?e:void 0;if(x(e)&&_(e.ofType))return e.ofType}function vu(t){let e=Object.create(null),r=[],n=Object.create(null);return function(c){return i(c,Object.create(null))};function i(a,c){if(ce(c)){for(let u of c)i(a,u);return}else if(!Q(c))return;for(let u of Object.values(a.getFields())){let l=X(u.type);_(l)&&(Object.hasOwn(c,u.name)?i(l,c[u.name]):s(u,l,`${a}.${u.name}`))}}function o(a,c){if(c.kind===p.LIST){for(let l of c.values)o(a,l);return}else if(c.kind!==p.OBJECT)return;let u=Nt(c.fields,l=>l.name.value);for(let l of Object.values(a.getFields())){let f=X(l.type);_(f)&&(Object.hasOwn(u,l.name)?o(f,u[l.name].value):s(l,f,`${a}.${l.name}`))}}function s(a,c,u){let l=a.default;if(l===void 0)return;let f=n[u];if(f!==void 0){t.reportError(`Invalid circular reference. The default value of Input Object field ${u} references itself${f<r.length?` via the default values of: ${r.slice(f).map(([m])=>m).join(", ")}`:""}.`,r.slice(f-1).map(([,m])=>m));return}e[u]===void 0&&(e[u]=!0,n[u]=r.push([u,a.astNode?.defaultValue]),l.literal?o(c,l.literal):i(c,l.value),r.pop(),n[u]=void 0)}}function rr(t,e){let{astNode:r,extensionASTNodes:n}=t;return(r!=null?[r,...n]:n).flatMap(o=>o.interfaces??[]).filter(o=>o.name.value===e.name)}function Ts(t,e){let{astNode:r,extensionASTNodes:n}=t;return(r!=null?[r,...n]:n).flatMap(o=>o.types??[]).filter(o=>o.name.value===e)}function Gr(t){return t?.directives?.find(e=>e.name.value===kr.name)}function $(t,e,r){return new d(`Syntax Error: ${r}`,{source:t,positions:[e]})}function Ru(){let t;try{let e=globalThis.process;typeof e?.getBuiltinModule=="function"&&(t=e.getBuiltinModule("node:diagnostics_channel"))}catch{}return t}var ft=Ru(),Hn=ft?.tracingChannel("graphql:parse"),Wn=ft?.tracingChannel("graphql:validate"),Jn=ft?.tracingChannel("graphql:execute"),gs=ft?.tracingChannel("graphql:execute:variableCoercion"),Xn=ft?.tracingChannel("graphql:execute:rootSelectionSet"),Su=ft?.tracingChannel("graphql:subscribe"),dt=ft?.tracingChannel("graphql:resolve"),xu=["start","end","asyncStart","asyncEnd","error"];function ve(t){if(t==null)return!1;let e=t.hasSubscribers;if(e!==void 0)return e;for(let r of xu)if(t[r].hasSubscribers)return!0;return!1}function Dt(t,e,r){let n=e;return t.start.runStores(n,()=>{let i;try{i=r()}catch(o){throw n.error=o,t.error.publish(n),t.end.publish(n),o}return pe(i)?(t.end.publish(n),i.then(o=>(n.result=o,t.asyncStart.publish(n),t.asyncEnd.publish(n),o),o=>{throw n.error=o,t.error.publish(n),t.asyncStart.publish(n),t.asyncEnd.publish(n),o})):(n.result=i,t.end.publish(n),i)})}var h={SOF:"<SOF>",EOF:"<EOF>",BANG:"!",DOLLAR:"$",AMP:"&",PAREN_L:"(",PAREN_R:")",DOT:".",SPREAD:"...",COLON:":",EQUALS:"=",AT:"@",BRACKET_L:"[",BRACKET_R:"]",BRACE_L:"{",PIPE:"|",BRACE_R:"}",NAME:"Name",INT:"Int",FLOAT:"Float",STRING:"String",BLOCK_STRING:"BlockString",COMMENT:"Comment"};var ir=class{constructor(e){let r=new bt(h.SOF,0,0,0,0);this.source=e,this.lastToken=r,this.token=r,this.line=1,this.lineStart=0}get[Symbol.toStringTag](){return"Lexer"}advance(){return this.lastToken=this.token,this.token=this.lookahead()}lookahead(){let e=this.token;if(e.kind!==h.EOF)do if(e.next)e=e.next;else{let r=Ou(this,e.end);e.next=r,r.prev=e,e=r}while(e.kind===h.COMMENT);return e}};function Is(t){return t===h.BANG||t===h.DOLLAR||t===h.AMP||t===h.PAREN_L||t===h.PAREN_R||t===h.DOT||t===h.SPREAD||t===h.COLON||t===h.EQUALS||t===h.AT||t===h.BRACKET_L||t===h.BRACKET_R||t===h.BRACE_L||t===h.PIPE||t===h.BRACE_R}function Lt(t){return t>=0&&t<=55295||t>=57344&&t<=1114111}function Qr(t,e){return Ns(t.charCodeAt(e))&&bs(t.charCodeAt(e+1))}function Ns(t){return t>=55296&&t<=56319}function bs(t){return t>=56320&&t<=57343}function mt(t,e){let r=t.source.body.codePointAt(e);if(r===void 0)return h.EOF;if(r>=32&&r<=126){let n=String.fromCodePoint(r);return n==='"'?`'"'`:`"${n}"`}return"U+"+r.toString(16).toUpperCase().padStart(4,"0")}function Y(t,e,r,n,i){let o=t.line,s=1+r-t.lineStart;return new bt(e,r,n,o,s,i)}function Ou(t,e){let r=t.source.body,n=r.length,i=e;for(;i<n;){let o=r.charCodeAt(i);switch(o){case 65279:case 9:case 32:case 44:++i;continue;case 10:++i,++t.line,t.lineStart=i;continue;case 13:r.charCodeAt(i+1)===10?i+=2:++i,++t.line,t.lineStart=i;continue;case 35:return wu(t,i);case 33:return Y(t,h.BANG,i,i+1);case 36:return Y(t,h.DOLLAR,i,i+1);case 38:return Y(t,h.AMP,i,i+1);case 40:return Y(t,h.PAREN_L,i,i+1);case 41:return Y(t,h.PAREN_R,i,i+1);case 46:{let s=r.charCodeAt(i+1);if(s===46&&r.charCodeAt(i+2)===46)return Y(t,h.SPREAD,i,i+3);if(s===46)throw $(t.source,i,'Unexpected "..", did you mean "..."?');if(Ze(s)){let a=t.source.body.slice(i+1,Br(t,i+1,s));throw $(t.source,i,`Invalid number, expected digit before ".", did you mean "0.${a}"?`)}break}case 58:return Y(t,h.COLON,i,i+1);case 61:return Y(t,h.EQUALS,i,i+1);case 64:return Y(t,h.AT,i,i+1);case 91:return Y(t,h.BRACKET_L,i,i+1);case 93:return Y(t,h.BRACKET_R,i,i+1);case 123:return Y(t,h.BRACE_L,i,i+1);case 124:return Y(t,h.PIPE,i,i+1);case 125:return Y(t,h.BRACE_R,i,i+1);case 34:return r.charCodeAt(i+1)===34&&r.charCodeAt(i+2)===34?Cu(t,i):Du(t,i)}if(Ze(o)||o===45)return _u(t,i,o);if(Qt(o))return ku(t,i);throw $(t.source,i,o===39?`Unexpected single quote character ('), did you mean to use a double quote (")?`:Lt(o)||Qr(r,i)?`Unexpected character: ${mt(t,i)}.`:`Invalid character: ${mt(t,i)}.`)}return Y(t,h.EOF,n,n)}function wu(t,e){let r=t.source.body,n=r.length,i=e+1;for(;i<n;){let o=r.charCodeAt(i);if(o===10||o===13)break;if(Lt(o))++i;else if(Qr(r,i))i+=2;else break}return Y(t,h.COMMENT,e,i,r.slice(e+1,i))}function _u(t,e,r){let n=t.source.body,i=e,o=r,s=!1;if(o===45&&(o=n.charCodeAt(++i)),o===48){if(o=n.charCodeAt(++i),Ze(o))throw $(t.source,i,`Invalid number, unexpected digit after 0: ${mt(t,i)}.`)}else i=Br(t,i,o),o=n.charCodeAt(i);if(o===46&&(s=!0,o=n.charCodeAt(++i),i=Br(t,i,o),o=n.charCodeAt(i)),(o===69||o===101)&&(s=!0,o=n.charCodeAt(++i),(o===43||o===45)&&(o=n.charCodeAt(++i)),i=Br(t,i,o),o=n.charCodeAt(i)),o===46||Qt(o))throw $(t.source,i,`Invalid number, expected digit but got: ${mt(t,i)}.`);return Y(t,s?h.FLOAT:h.INT,e,i,n.slice(e,i))}function Br(t,e,r){if(!Ze(r))throw $(t.source,e,`Invalid number, expected digit but got: ${mt(t,e)}.`);let n=t.source.body,i=e+1;for(;Ze(n.charCodeAt(i));)++i;return i}function Du(t,e){let r=t.source.body,n=r.length,i=e+1,o=i,s="";for(;i<n;){let a=r.charCodeAt(i);if(a===34)return s+=r.slice(o,i),Y(t,h.STRING,e,i+1,s);if(a===92){s+=r.slice(o,i);let c=r.charCodeAt(i+1)===117?r.charCodeAt(i+2)===123?Lu(t,i):Au(t,i):Fu(t,i);s+=c.value,i+=c.size,o=i;continue}if(a===10||a===13)break;if(Lt(a))++i;else if(Qr(r,i))i+=2;else throw $(t.source,i,`Invalid character within String: ${mt(t,i)}.`)}throw $(t.source,i,"Unterminated string.")}function Lu(t,e){let r=t.source.body,n=0,i=3;for(;i<12;){let o=r.charCodeAt(e+i++);if(o===125){if(i<5||!Lt(n))break;return{value:String.fromCodePoint(n),size:i}}if(n=n<<4|nr(o),n<0)break}throw $(t.source,e,`Invalid Unicode escape sequence: "${r.slice(e,e+i)}".`)}function Au(t,e){let r=t.source.body,n=Es(r,e+2);if(Lt(n))return{value:String.fromCodePoint(n),size:6};if(Ns(n)&&r.charCodeAt(e+6)===92&&r.charCodeAt(e+7)===117){let i=Es(r,e+8);if(bs(i))return{value:String.fromCodePoint(n,i),size:12}}throw $(t.source,e,`Invalid Unicode escape sequence: "${r.slice(e,e+6)}".`)}function Es(t,e){return nr(t.charCodeAt(e))<<12|nr(t.charCodeAt(e+1))<<8|nr(t.charCodeAt(e+2))<<4|nr(t.charCodeAt(e+3))}function nr(t){return t>=48&&t<=57?t-48:t>=65&&t<=70?t-55:t>=97&&t<=102?t-87:-1}function Fu(t,e){let r=t.source.body;switch(r.charCodeAt(e+1)){case 34:return{value:'"',size:2};case 92:return{value:"\\",size:2};case 47:return{value:"/",size:2};case 98:return{value:"\b",size:2};case 102:return{value:"\f",size:2};case 110:return{value:`
|
|
51
51
|
`,size:2};case 114:return{value:"\r",size:2};case 116:return{value:" ",size:2}}throw $(t.source,e,`Invalid character escape sequence: "${r.slice(e,e+2)}".`)}function Cu(t,e){let r=t.source.body,n=r.length,i=t.lineStart,o=e+3,s=o,a="",c=[];for(;o<n;){let u=r.charCodeAt(o);if(u===34&&r.charCodeAt(o+1)===34&&r.charCodeAt(o+2)===34){a+=r.slice(s,o),c.push(a);let l=Y(t,h.BLOCK_STRING,e,o+3,$o(c).join(`
|
|
52
52
|
`));return t.line+=c.length-1,t.lineStart=i,l}if(u===92&&r.charCodeAt(o+1)===34&&r.charCodeAt(o+2)===34&&r.charCodeAt(o+3)===34){a+=r.slice(s,o),s=o+1,o+=4;continue}if(u===10||u===13){a+=r.slice(s,o),c.push(a),u===13&&r.charCodeAt(o+1)===10?o+=2:++o,a="",s=o,i=o;continue}if(Lt(u))++o;else if(Qr(r,o))o+=2;else throw $(t.source,o,`Invalid character within String: ${mt(t,o)}.`)}throw $(t.source,o,"Unterminated string.")}function ku(t,e){let r=t.source.body,n=r.length,i=e+1;for(;i<n;){let o=r.charCodeAt(i);if(Rr(o))++i;else break}return Y(t,h.NAME,e,i,r.slice(e,i))}var vs=Symbol("Source"),At=class{constructor(e,r="GraphQL request",n={line:1,column:1}){this.__kind=vs,this.body=e,this.name=r,this.locationOffset=n,this.locationOffset.line>0||de(!1,"line in locationOffset is 1-indexed and must be positive."),this.locationOffset.column>0||de(!1,"column in locationOffset is 1-indexed and must be positive.")}get[Symbol.toStringTag](){return"Source"}};function Rs(t){return ee(t,vs,At)}function qr(t,e){return ve(Hn)?Hn.traceSync(()=>Ss(t,e),{source:t}):Ss(t,e)}function Ss(t,e){let r=new zn(t,e),n=r.parseDocument();return Object.defineProperty(n,"tokenCount",{enumerable:!1,value:r.tokenCount}),n}var zn=class{constructor(e,r={}){let{lexer:n,...i}=r;if(n)this._lexer=n;else{let o=Rs(e)?e:new At(e);this._lexer=new ir(o)}this._options=i,this._tokenCounter=0}get tokenCount(){return this._tokenCounter}parseName(){let e=this.expectToken(h.NAME);return this.node(e,{kind:p.NAME,value:e.value})}parseDocument(){return this.node(this._lexer.token,{kind:p.DOCUMENT,definitions:this.many(h.SOF,this.parseDefinition,h.EOF)})}parseDefinition(){if(this.peek(h.BRACE_L))return this.parseOperationDefinition();let e=this.peekDescription(),r=e?this._lexer.lookahead():this._lexer.token;if(e&&r.kind===h.BRACE_L)throw $(this._lexer.source,this._lexer.token.start,"Unexpected description, descriptions are not supported on shorthand queries.");if(r.kind===h.NAME){switch(r.value){case"schema":return this.parseSchemaDefinition();case"scalar":return this.parseScalarTypeDefinition();case"type":return this.parseObjectTypeDefinition();case"interface":return this.parseInterfaceTypeDefinition();case"union":return this.parseUnionTypeDefinition();case"enum":return this.parseEnumTypeDefinition();case"input":return this.parseInputObjectTypeDefinition();case"directive":return this.parseDirectiveDefinition()}switch(r.value){case"query":case"mutation":case"subscription":return this.parseOperationDefinition();case"fragment":return this.parseFragmentDefinition()}if(e)throw $(this._lexer.source,this._lexer.token.start,"Unexpected description, only GraphQL definitions support descriptions.");if(r.value==="extend")return this.parseTypeSystemExtension()}throw this.unexpected(r)}parseOperationDefinition(){let e=this._lexer.token;if(this.peek(h.BRACE_L))return this.node(e,{kind:p.OPERATION_DEFINITION,operation:k.QUERY,description:void 0,name:void 0,variableDefinitions:void 0,directives:void 0,selectionSet:this.parseSelectionSet()});let r=this.parseDescription(),n=this.parseOperationType(),i;return this.peek(h.NAME)&&(i=this.parseName()),this.node(e,{kind:p.OPERATION_DEFINITION,operation:n,description:r,name:i,variableDefinitions:this.parseVariableDefinitions(),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseOperationType(){let e=this.expectToken(h.NAME);switch(e.value){case"query":return k.QUERY;case"mutation":return k.MUTATION;case"subscription":return k.SUBSCRIPTION}throw this.unexpected(e)}parseVariableDefinitions(){return this.optionalMany(h.PAREN_L,this.parseVariableDefinition,h.PAREN_R)}parseVariableDefinition(){return this.node(this._lexer.token,{kind:p.VARIABLE_DEFINITION,description:this.parseDescription(),variable:this.parseVariable(),type:(this.expectToken(h.COLON),this.parseTypeReference()),defaultValue:this.expectOptionalToken(h.EQUALS)?this.parseConstValueLiteral():void 0,directives:this.parseConstDirectives()})}parseVariable(){let e=this._lexer.token;return this.expectToken(h.DOLLAR),this.node(e,{kind:p.VARIABLE,name:this.parseName()})}parseSelectionSet(){return this.node(this._lexer.token,{kind:p.SELECTION_SET,selections:this.many(h.BRACE_L,this.parseSelection,h.BRACE_R)})}parseSelection(){return this.peek(h.SPREAD)?this.parseFragment():this.parseField()}parseField(){let e=this._lexer.token,r=this.parseName(),n,i;return this.expectOptionalToken(h.COLON)?(n=r,i=this.parseName()):i=r,this.node(e,{kind:p.FIELD,alias:n,name:i,arguments:this.parseArguments(!1),directives:this.parseDirectives(!1),selectionSet:this.peek(h.BRACE_L)?this.parseSelectionSet():void 0})}parseArguments(e){let r=e?this.parseConstArgument:this.parseArgument;return this.optionalMany(h.PAREN_L,r,h.PAREN_R)}parseFragmentArguments(){let e=this.parseFragmentArgument;return this.optionalMany(h.PAREN_L,e,h.PAREN_R)}parseArgument(e=!1){let r=this._lexer.token,n=this.parseName();return this.expectToken(h.COLON),this.node(r,{kind:p.ARGUMENT,name:n,value:this.parseValueLiteral(e)})}parseConstArgument(){return this.parseArgument(!0)}parseFragmentArgument(){let e=this._lexer.token,r=this.parseName();return this.expectToken(h.COLON),this.node(e,{kind:p.FRAGMENT_ARGUMENT,name:r,value:this.parseValueLiteral(!1)})}parseFragment(){let e=this._lexer.token;this.expectToken(h.SPREAD);let r=this.expectOptionalKeyword("on");if(!r&&this.peek(h.NAME)){let n=this.parseFragmentName();return this.peek(h.PAREN_L)&&this._options.experimentalFragmentArguments?this.node(e,{kind:p.FRAGMENT_SPREAD,name:n,arguments:this.parseFragmentArguments(),directives:this.parseDirectives(!1)}):this.node(e,{kind:p.FRAGMENT_SPREAD,name:n,directives:this.parseDirectives(!1)})}return this.node(e,{kind:p.INLINE_FRAGMENT,typeCondition:r?this.parseNamedType():void 0,directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentDefinition(){let e=this._lexer.token,r=this.parseDescription();return this.expectKeyword("fragment"),this._options.experimentalFragmentArguments===!0?this.node(e,{kind:p.FRAGMENT_DEFINITION,description:r,name:this.parseFragmentName(),variableDefinitions:this.parseVariableDefinitions(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()}):this.node(e,{kind:p.FRAGMENT_DEFINITION,description:r,name:this.parseFragmentName(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentName(){if(this._lexer.token.value==="on")throw this.unexpected();return this.parseName()}parseValueLiteral(e){let r=this._lexer.token;switch(r.kind){case h.BRACKET_L:return this.parseList(e);case h.BRACE_L:return this.parseObject(e);case h.INT:return this.advanceLexer(),this.node(r,{kind:p.INT,value:r.value});case h.FLOAT:return this.advanceLexer(),this.node(r,{kind:p.FLOAT,value:r.value});case h.STRING:case h.BLOCK_STRING:return this.parseStringLiteral();case h.NAME:switch(this.advanceLexer(),r.value){case"true":return this.node(r,{kind:p.BOOLEAN,value:!0});case"false":return this.node(r,{kind:p.BOOLEAN,value:!1});case"null":return this.node(r,{kind:p.NULL});default:return this.node(r,{kind:p.ENUM,value:r.value})}case h.DOLLAR:if(e)if(this.expectToken(h.DOLLAR),this._lexer.token.kind===h.NAME){let n=this._lexer.token.value;throw $(this._lexer.source,r.start,`Unexpected variable "$${n}" in constant value.`)}else throw this.unexpected(r);return this.parseVariable();default:throw this.unexpected()}}parseConstValueLiteral(){return this.parseValueLiteral(!0)}parseStringLiteral(){let e=this._lexer.token;return this.advanceLexer(),this.node(e,{kind:p.STRING,value:e.value,block:e.kind===h.BLOCK_STRING})}parseList(e){let r=()=>this.parseValueLiteral(e);return this.node(this._lexer.token,{kind:p.LIST,values:this.any(h.BRACKET_L,r,h.BRACKET_R)})}parseObject(e){let r=()=>this.parseObjectField(e);return this.node(this._lexer.token,{kind:p.OBJECT,fields:this.any(h.BRACE_L,r,h.BRACE_R)})}parseObjectField(e){let r=this._lexer.token,n=this.parseName();return this.expectToken(h.COLON),this.node(r,{kind:p.OBJECT_FIELD,name:n,value:this.parseValueLiteral(e)})}parseDirectives(e){let r=[];for(;this.peek(h.AT);)r.push(this.parseDirective(e));if(r.length)return r}parseConstDirectives(){return this.parseDirectives(!0)}parseDirective(e){let r=this._lexer.token;return this.expectToken(h.AT),this.node(r,{kind:p.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(e)})}parseTypeReference(){let e=this._lexer.token,r;if(this.expectOptionalToken(h.BRACKET_L)){let n=this.parseTypeReference();this.expectToken(h.BRACKET_R),r=this.node(e,{kind:p.LIST_TYPE,type:n})}else r=this.parseNamedType();return this.expectOptionalToken(h.BANG)?this.node(e,{kind:p.NON_NULL_TYPE,type:r}):r}parseNamedType(){return this.node(this._lexer.token,{kind:p.NAMED_TYPE,name:this.parseName()})}peekDescription(){return this.peek(h.STRING)||this.peek(h.BLOCK_STRING)}parseDescription(){if(this.peekDescription())return this.parseStringLiteral()}parseSchemaDefinition(){let e=this._lexer.token,r=this.parseDescription();this.expectKeyword("schema");let n=this.parseConstDirectives(),i=this.many(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);return this.node(e,{kind:p.SCHEMA_DEFINITION,description:r,directives:n,operationTypes:i})}parseOperationTypeDefinition(){let e=this._lexer.token,r=this.parseOperationType();this.expectToken(h.COLON);let n=this.parseNamedType();return this.node(e,{kind:p.OPERATION_TYPE_DEFINITION,operation:r,type:n})}parseScalarTypeDefinition(){let e=this._lexer.token,r=this.parseDescription();this.expectKeyword("scalar");let n=this.parseName(),i=this.parseConstDirectives();return this.node(e,{kind:p.SCALAR_TYPE_DEFINITION,description:r,name:n,directives:i})}parseObjectTypeDefinition(){let e=this._lexer.token,r=this.parseDescription();this.expectKeyword("type");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(e,{kind:p.OBJECT_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseImplementsInterfaces(){return this.expectOptionalKeyword("implements")?this.delimitedMany(h.AMP,this.parseNamedType):void 0}parseFieldsDefinition(){return this.optionalMany(h.BRACE_L,this.parseFieldDefinition,h.BRACE_R)}parseFieldDefinition(){let e=this._lexer.token,r=this.parseDescription(),n=this.parseName(),i=this.parseArgumentDefs();this.expectToken(h.COLON);let o=this.parseTypeReference(),s=this.parseConstDirectives();return this.node(e,{kind:p.FIELD_DEFINITION,description:r,name:n,arguments:i,type:o,directives:s})}parseArgumentDefs(){return this.optionalMany(h.PAREN_L,this.parseInputValueDef,h.PAREN_R)}parseInputValueDef(){let e=this._lexer.token,r=this.parseDescription(),n=this.parseName();this.expectToken(h.COLON);let i=this.parseTypeReference(),o;this.expectOptionalToken(h.EQUALS)&&(o=this.parseConstValueLiteral());let s=this.parseConstDirectives();return this.node(e,{kind:p.INPUT_VALUE_DEFINITION,description:r,name:n,type:i,defaultValue:o,directives:s})}parseInterfaceTypeDefinition(){let e=this._lexer.token,r=this.parseDescription();this.expectKeyword("interface");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(e,{kind:p.INTERFACE_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseUnionTypeDefinition(){let e=this._lexer.token,r=this.parseDescription();this.expectKeyword("union");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseUnionMemberTypes();return this.node(e,{kind:p.UNION_TYPE_DEFINITION,description:r,name:n,directives:i,types:o})}parseUnionMemberTypes(){return this.expectOptionalToken(h.EQUALS)?this.delimitedMany(h.PIPE,this.parseNamedType):void 0}parseEnumTypeDefinition(){let e=this._lexer.token,r=this.parseDescription();this.expectKeyword("enum");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseEnumValuesDefinition();return this.node(e,{kind:p.ENUM_TYPE_DEFINITION,description:r,name:n,directives:i,values:o})}parseEnumValuesDefinition(){return this.optionalMany(h.BRACE_L,this.parseEnumValueDefinition,h.BRACE_R)}parseEnumValueDefinition(){let e=this._lexer.token,r=this.parseDescription(),n=this.parseEnumValueName(),i=this.parseConstDirectives();return this.node(e,{kind:p.ENUM_VALUE_DEFINITION,description:r,name:n,directives:i})}parseEnumValueName(){if(this._lexer.token.value==="true"||this._lexer.token.value==="false"||this._lexer.token.value==="null")throw $(this._lexer.source,this._lexer.token.start,`${jr(this._lexer.token)} is reserved and cannot be used for an enum value.`);return this.parseName()}parseInputObjectTypeDefinition(){let e=this._lexer.token,r=this.parseDescription();this.expectKeyword("input");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseInputFieldsDefinition();return this.node(e,{kind:p.INPUT_OBJECT_TYPE_DEFINITION,description:r,name:n,directives:i,fields:o})}parseInputFieldsDefinition(){return this.optionalMany(h.BRACE_L,this.parseInputValueDef,h.BRACE_R)}parseTypeSystemExtension(){let e=this._lexer.lookahead();if(e.kind===h.NAME)switch(e.value){case"schema":return this.parseSchemaExtension();case"scalar":return this.parseScalarTypeExtension();case"type":return this.parseObjectTypeExtension();case"interface":return this.parseInterfaceTypeExtension();case"union":return this.parseUnionTypeExtension();case"enum":return this.parseEnumTypeExtension();case"input":return this.parseInputObjectTypeExtension();case"directive":return this.parseDirectiveExtension()}throw this.unexpected(e)}parseSchemaExtension(){let e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("schema");let r=this.parseConstDirectives(),n=this.optionalMany(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);if(r===void 0&&n===void 0)throw this.unexpected();return this.node(e,{kind:p.SCHEMA_EXTENSION,directives:r,operationTypes:n})}parseScalarTypeExtension(){let e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("scalar");let r=this.parseName(),n=this.parseConstDirectives();if(n===void 0)throw this.unexpected();return this.node(e,{kind:p.SCALAR_TYPE_EXTENSION,name:r,directives:n})}parseObjectTypeExtension(){let e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("type");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n===void 0&&i===void 0&&o===void 0)throw this.unexpected();return this.node(e,{kind:p.OBJECT_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseInterfaceTypeExtension(){let e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("interface");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n===void 0&&i===void 0&&o===void 0)throw this.unexpected();return this.node(e,{kind:p.INTERFACE_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseUnionTypeExtension(){let e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("union");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseUnionMemberTypes();if(n===void 0&&i===void 0)throw this.unexpected();return this.node(e,{kind:p.UNION_TYPE_EXTENSION,name:r,directives:n,types:i})}parseEnumTypeExtension(){let e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("enum");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseEnumValuesDefinition();if(n===void 0&&i===void 0)throw this.unexpected();return this.node(e,{kind:p.ENUM_TYPE_EXTENSION,name:r,directives:n,values:i})}parseInputObjectTypeExtension(){let e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("input");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseInputFieldsDefinition();if(n===void 0&&i===void 0)throw this.unexpected();return this.node(e,{kind:p.INPUT_OBJECT_TYPE_EXTENSION,name:r,directives:n,fields:i})}parseDirectiveExtension(){let e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("directive"),this.expectToken(h.AT);let r=this.parseName(),n=this.parseConstDirectives();if(n===void 0)throw this.unexpected();return this.node(e,{kind:p.DIRECTIVE_EXTENSION,name:r,directives:n})}parseDirectiveDefinition(){let e=this._lexer.token,r=this.parseDescription();this.expectKeyword("directive"),this.expectToken(h.AT);let n=this.parseName(),i=this.parseArgumentDefs(),o=this.parseConstDirectives(),s=this.expectOptionalKeyword("repeatable");this.expectKeyword("on");let a=this.parseDirectiveLocations();return this.node(e,{kind:p.DIRECTIVE_DEFINITION,description:r,name:n,arguments:i,directives:o,repeatable:s,locations:a})}parseDirectiveLocations(){return this.delimitedMany(h.PIPE,this.parseDirectiveLocation)}parseDirectiveLocation(){let e=this._lexer.token,r=this.parseName();if(Object.hasOwn(b,r.value))return r;throw this.unexpected(e)}parseSchemaCoordinate(){let e=this._lexer.token,r=this.expectOptionalToken(h.AT),n=this.parseName(),i;!r&&this.expectOptionalToken(h.DOT)&&(i=this.parseName());let o;return(r||i)&&this.expectOptionalToken(h.PAREN_L)&&(o=this.parseName(),this.expectToken(h.COLON),this.expectToken(h.PAREN_R)),r?o?this.node(e,{kind:p.DIRECTIVE_ARGUMENT_COORDINATE,name:n,argumentName:o}):this.node(e,{kind:p.DIRECTIVE_COORDINATE,name:n}):i?o?this.node(e,{kind:p.ARGUMENT_COORDINATE,name:n,fieldName:i,argumentName:o}):this.node(e,{kind:p.MEMBER_COORDINATE,name:n,memberName:i}):this.node(e,{kind:p.TYPE_COORDINATE,name:n})}node(e,r){return this._options.noLocation!==!0&&(r.loc=new $t(e,this._lexer.lastToken,this._lexer.source)),r}peek(e){return this._lexer.token.kind===e}expectToken(e){let r=this._lexer.token;if(r.kind===e)return this.advanceLexer(),r;throw $(this._lexer.source,r.start,`Expected ${xs(e)}, found ${jr(r)}.`)}expectOptionalToken(e){return this._lexer.token.kind===e?(this.advanceLexer(),!0):!1}expectKeyword(e){let r=this._lexer.token;if(r.kind===h.NAME&&r.value===e)this.advanceLexer();else throw $(this._lexer.source,r.start,`Expected "${e}", found ${jr(r)}.`)}expectOptionalKeyword(e){let r=this._lexer.token;return r.kind===h.NAME&&r.value===e?(this.advanceLexer(),!0):!1}unexpected(e){let r=e??this._lexer.token;return $(this._lexer.source,r.start,`Unexpected ${jr(r)}.`)}any(e,r,n){this.expectToken(e);let i=[];for(;!this.expectOptionalToken(n);)i.push(r.call(this));return i}optionalMany(e,r,n){if(this.expectOptionalToken(e)){let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}}many(e,r,n){this.expectToken(e);let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}delimitedMany(e,r){this.expectOptionalToken(e);let n=[];do n.push(r.call(this));while(this.expectOptionalToken(e));return n}advanceLexer(){let{maxTokens:e}=this._options,r=this._lexer.advance();if(r.kind!==h.EOF&&(++this._tokenCounter,e!==void 0&&this._tokenCounter>e))throw $(this._lexer.source,r.start,`Document contains more than ${e} tokens. Parsing aborted.`)}};function jr(t){let e=t.value;return xs(t.kind)+(e!=null?` "${e}"`:"")}function xs(t){return Is(t)?`"${t}"`:t}function U(t,e){switch(e.kind){case p.LIST_TYPE:{let r=U(t,e.type);return r&&new P(r)}case p.NON_NULL_TYPE:{let r=U(t,e.type);return r&&new I(r)}case p.NAMED_TYPE:return t.getType(e.name.value)}}var Ft=class{constructor(e,r,n){this._schema=e,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._fragmentSignaturesByName=n??(()=>null),this._fragmentSignature=null,this._fragmentArgument=null,r&&(W(r)&&this._inputTypeStack.push(r),Te(r)&&this._parentTypeStack.push(r),Ge(r)&&this._typeStack.push(r))}get[Symbol.toStringTag](){return"TypeInfo"}getType(){return this._typeStack.at(-1)}getParentType(){return this._parentTypeStack.at(-1)}getInputType(){return this._inputTypeStack.at(-1)}getParentInputType(){return this._inputTypeStack.at(-2)}getFieldDef(){return this._fieldDefStack.at(-1)}getDefaultValue(){return this._defaultValueStack.at(-1)}getDirective(){return this._directive}getArgument(){return this._argument}getFragmentSignature(){return this._fragmentSignature}getFragmentSignatureByName(){return this._fragmentSignaturesByName}getFragmentArgument(){return this._fragmentArgument}getEnumValue(){return this._enumValue}enter(e){let r=this._schema;switch(e.kind){case p.DOCUMENT:{let n=Pu(e);this._fragmentSignaturesByName=i=>n.get(i);break}case p.SELECTION_SET:{let n=X(this.getType());this._parentTypeStack.push(Te(n)?n:void 0);break}case p.FIELD:{let n=this.getParentType(),i,o;n&&(i=r.getField(n,e.name.value),i&&(o=i.type)),this._fieldDefStack.push(i),this._typeStack.push(Ge(o)?o:void 0);break}case p.DIRECTIVE:this._directive=r.getDirective(e.name.value);break;case p.OPERATION_DEFINITION:{let n=r.getRootType(e.operation);this._typeStack.push(L(n)?n:void 0);break}case p.FRAGMENT_SPREAD:{this._fragmentSignature=this.getFragmentSignatureByName()(e.name.value);break}case p.INLINE_FRAGMENT:case p.FRAGMENT_DEFINITION:{let n=e.typeCondition,i=n?U(r,n):X(this.getType());this._typeStack.push(Ge(i)?i:void 0);break}case p.VARIABLE_DEFINITION:{let n=U(r,e.type);this._inputTypeStack.push(W(n)?n:void 0);break}case p.ARGUMENT:{let n,i,o=this.getDirective()??this.getFieldDef();o&&(n=o.args.find(s=>s.name===e.name.value),n&&(i=n.type)),this._argument=n,this._defaultValueStack.push(n?.default??n?.defaultValue??void 0),this._inputTypeStack.push(W(i)?i:void 0);break}case p.FRAGMENT_ARGUMENT:{let i=this.getFragmentSignature()?.variableDefinitions.get(e.name.value);this._fragmentArgument=i;let o;i&&(o=U(this._schema,i.type)),this._inputTypeStack.push(W(o)?o:void 0);break}case p.LIST:{let n=_r(this.getInputType()),i=D(n)?n.ofType:void 0;this._defaultValueStack.push(void 0),this._inputTypeStack.push(W(i)?i:void 0);break}case p.OBJECT_FIELD:{let n=X(this.getInputType()),i,o;_(n)&&(o=n.getFields()[e.name.value],o!=null&&(i=o.type)),this._defaultValueStack.push(o?.default??o?.defaultValue??void 0),this._inputTypeStack.push(W(i)?i:void 0);break}case p.ENUM:{let n=X(this.getInputType()),i;K(n)&&(i=n.getValue(e.value)),this._enumValue=i;break}default:}}leave(e){switch(e.kind){case p.DOCUMENT:this._fragmentSignaturesByName=()=>null;break;case p.SELECTION_SET:this._parentTypeStack.pop();break;case p.FIELD:this._fieldDefStack.pop(),this._typeStack.pop();break;case p.DIRECTIVE:this._directive=null;break;case p.FRAGMENT_SPREAD:this._fragmentSignature=null;break;case p.OPERATION_DEFINITION:case p.INLINE_FRAGMENT:case p.FRAGMENT_DEFINITION:this._typeStack.pop();break;case p.VARIABLE_DEFINITION:this._inputTypeStack.pop();break;case p.ARGUMENT:this._argument=null,this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case p.FRAGMENT_ARGUMENT:{this._fragmentArgument=null,this._defaultValueStack.pop(),this._inputTypeStack.pop();break}case p.LIST:case p.OBJECT_FIELD:this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case p.ENUM:this._enumValue=null;break;default:}}};function Pu(t){let e=new Map;for(let r of t.definitions)if(r.kind===p.FRAGMENT_DEFINITION){let n=new Map;if(r.variableDefinitions)for(let o of r.variableDefinitions)n.set(o.variable.name.value,o);let i={definition:r,variableDefinitions:n};e.set(r.name.value,i)}return e}function Kr(t,e){return{enter(...r){let n=r[0];t.enter(n);let i=St(e,n.kind).enter;if(i){let o=i.apply(e,r);return o!==void 0&&(t.leave(n),Bt(o)&&t.enter(o)),o}},leave(...r){let n=r[0],i=St(e,n.kind).leave,o;return i&&(o=i.apply(e,r)),t.leave(n),o}}}function Zn(t){let e=new Map;return{Directive(r){if(r.name.value===Be.name||r.name.value===De.name){let i=r.arguments?.find(s=>s.name.value==="label")?.value;if(!i||i.kind===p.NULL)return;if(i.kind!==p.STRING){t.reportError(new d(`Argument "@${r.name.value}(label:)" must be a static string.`,{nodes:r}));return}let o=e.get(i.value);o!=null?t.reportError(new d('Value for arguments "defer(label:)" and "stream(label:)" must be unique across all Defer/Stream directive usages.',{nodes:[o,r]})):e.set(i.value,r)}}}}function ti(t){return{OperationDefinition(e){let r=t.getDocument(),n=new Map;for(let s of r.definitions)s.kind===p.FRAGMENT_DEFINITION&&n.set(s.name.value,s);if(e.operation!=="subscription"&&e.operation!=="mutation")return;let o=t.getSchema().getRootType(e.operation);o&&ei({context:t,operationType:e.operation,rootType:o,fragments:n,selectionSet:e.selectionSet,visitedFragments:new Set})}}}function ei({context:t,operationType:e,rootType:r,fragments:n,selectionSet:i,visitedFragments:o}){for(let s of i.selections)if(s.kind==="Field"){let a=s.directives?.find(c=>c.name.value===De.name);a&&t.reportError(new d(`Stream directive cannot be used on root ${e} type "${r}".`,{nodes:a}))}else if(s.kind==="FragmentSpread"){let a=s.name.value;if(o.has(a))continue;let c=n.get(a);if(c){let u=Os(s);u!==void 0&&t.reportError(new d(`Defer directive cannot be used on root ${e} type "${r}".`,{nodes:u})),ei({context:t,operationType:e,rootType:r,fragments:n,selectionSet:c.selectionSet,visitedFragments:o})}o.add(a)}else if(s.kind==="InlineFragment"){let a=Os(s);a!==void 0&&t.reportError(new d(`Defer directive cannot be used on root ${e} type "${r}".`,{nodes:a})),ei({context:t,operationType:e,rootType:r,fragments:n,selectionSet:s.selectionSet,visitedFragments:o})}}function Os(t){return t.directives?.find(e=>e.name.value===Be.name)}function ws(t){let e=t.arguments?.find(r=>r.name.value==="if");if(!e)return!1;if(e.value.kind===p.BOOLEAN){if(e.value.value)return!1}else if(e.value.kind!==p.VARIABLE)return!1;return!0}function Mu(t){let e=t.arguments?.find(r=>r.name.value==="if");return e&&e.value.kind===p.BOOLEAN?!!e.value.value:!0}function Vu(t){let e=t.arguments?.find(r=>r.name.value==="if");return e?e?.value.kind===p.BOOLEAN?!e.value.value:!0:!1}function ni(t){return{OperationDefinition(e){if(e.operation!==k.SUBSCRIPTION)return;let r=t.getDocument(),n=new Map;for(let o of r.definitions)o.kind===p.FRAGMENT_DEFINITION&&n.set(o.name.value,o);let i=new Set;ri({context:t,fragments:n,selectionSet:e.selectionSet,parentNodes:[],visitedFragments:i})}}}function ri({context:t,fragments:e,selectionSet:r,parentNodes:n,visitedFragments:i}){for(let o of r.selections){let s=o.directives?.find(c=>c.name.value===ut.name);if(s&&Mu(s))continue;let a=o.directives?.find(c=>c.name.value===ct.name);if(!(a&&Vu(a))){for(let c of o.directives??[])c.name.value===Be.name?ws(c)||t.reportError(new d("Defer directive not supported on subscription operations. Disable `@defer` by setting the `if` argument to `false`.",{nodes:[c,...n]})):c.name.value===De.name&&(ws(c)||t.reportError(new d("Stream directive not supported on subscription operations. Disable `@stream` by setting the `if` argument to `false`.",{nodes:[c,...n]})));if(o.kind==="FragmentSpread"){let c=o.name.value;if(i.has(c))continue;i.add(c);let u=e.get(c);u&&ri({context:t,fragments:e,parentNodes:[o,...n],selectionSet:u?.selectionSet,visitedFragments:i})}else o.selectionSet&&ri({context:t,fragments:e,selectionSet:o.selectionSet,parentNodes:n,visitedFragments:i})}}}function ii(t){return t.kind===p.OPERATION_DEFINITION||t.kind===p.FRAGMENT_DEFINITION}function oi(t){return t.kind===p.SCHEMA_DEFINITION||Ye(t)||t.kind===p.DIRECTIVE_DEFINITION}function Ye(t){return t.kind===p.SCALAR_TYPE_DEFINITION||t.kind===p.OBJECT_TYPE_DEFINITION||t.kind===p.INTERFACE_TYPE_DEFINITION||t.kind===p.UNION_TYPE_DEFINITION||t.kind===p.ENUM_TYPE_DEFINITION||t.kind===p.INPUT_OBJECT_TYPE_DEFINITION}function si(t){return t.kind===p.SCHEMA_EXTENSION||t.kind===p.DIRECTIVE_EXTENSION||Yr(t)}function Yr(t){return t.kind===p.SCALAR_TYPE_EXTENSION||t.kind===p.OBJECT_TYPE_EXTENSION||t.kind===p.INTERFACE_TYPE_EXTENSION||t.kind===p.UNION_TYPE_EXTENSION||t.kind===p.ENUM_TYPE_EXTENSION||t.kind===p.INPUT_OBJECT_TYPE_EXTENSION}function ai(t){return{Document(e){for(let r of e.definitions)if(!ii(r)){let n=r.kind===p.SCHEMA_DEFINITION||r.kind===p.SCHEMA_EXTENSION?"schema":'"'+r.name.value+'"';t.reportError(new d(`The ${n} definition is not executable.`,{nodes:r}))}return!1}}}function ci(t){return{Field(e){let r=t.getParentType();if(r&&!t.getFieldDef()){let i=t.getSchema(),o=e.name.value,s=te("to use an inline fragment on",t.hideSuggestions?[]:Uu(i,r,o));s===""&&(s=te(t.hideSuggestions?[]:$u(r,o))),t.reportError(new d(`Cannot query field "${o}" on type "${r}".`+s,{nodes:e}))}}}}function Uu(t,e,r){if(!oe(e))return[];let n=new Set,i=Object.create(null);for(let o of t.getPossibleTypes(e))if(o.getFields()[r]!=null){n.add(o),i[o.name]=1;for(let s of o.getInterfaces())s.getFields()[r]!=null&&(n.add(s),i[s.name]=(i[s.name]??0)+1)}return[...n].sort((o,s)=>{let a=i[s.name]-i[o.name];return a!==0?a:A(o)&&t.isSubType(o,s)?-1:A(s)&&t.isSubType(s,o)?1:vt(o.name,s.name)}).map(o=>o.name)}function $u(t,e){if(L(t)||A(t)){let r=Object.keys(t.getFields());return ne(e,r)}return[]}function ui(t){return{InlineFragment(e){let r=e.typeCondition;if(r){let n=U(t.getSchema(),r);if(n&&!Te(n)){let i=F(r);t.reportError(new d(`Fragment cannot condition on non composite type "${i}".`,{nodes:r}))}}},FragmentDefinition(e){let r=U(t.getSchema(),e.typeCondition);if(r&&!Te(r)){let n=F(e.typeCondition);t.reportError(new d(`Fragment "${e.name.value}" cannot condition on non composite type "${n}".`,{nodes:e.typeCondition}))}}}}function pi(t){return{...li(t),FragmentArgument(e){let r=t.getFragmentSignature();if(r&&!r.variableDefinitions.get(e.name.value)){let i=e.name.value,o=t.hideSuggestions?[]:ne(i,Array.from(r.variableDefinitions.values()).map(s=>s.variable.name.value));t.reportError(new d(`Unknown argument "${i}" on fragment "${r.definition.name.value}".`+te(o),{nodes:e}))}},Argument(e){let r=t.getArgument(),n=t.getFieldDef();if(!r&&n){let i=e.name.value,o=t.hideSuggestions?[]:ne(i,n.args.map(s=>s.name));t.reportError(new d(`Unknown argument "${i}" on field "${n}".`+te(o),{nodes:e}))}}}}function li(t){let e=new Map,r=t.getSchema(),n=r?r.getDirectives():Le;for(let o of n)e.set(o.name,o.args.map(s=>s.name));let i=t.getDocument().definitions;for(let o of i)if(o.kind===p.DIRECTIVE_DEFINITION){let s=o.arguments??[];e.set(o.name.value,s.map(a=>a.name.value))}return{Directive(o){let s=o.name.value,a=e.get(s);if(o.arguments!=null&&a!=null)for(let c of o.arguments){let u=c.name.value;if(!a.includes(u)){let l=ne(u,a);t.reportError(new d(`Unknown argument "${u}" on directive "@${s}".`+(t.hideSuggestions?"":te(l)),{nodes:c}))}}return!1}}}function Hr(t){let e=new Map,r=t.getSchema(),n=r?r.getDirectives():Le;for(let o of n)e.set(o.name,o.locations);let i=t.getDocument().definitions;for(let o of i)o.kind===p.DIRECTIVE_DEFINITION&&e.set(o.name.value,o.locations.map(s=>s.value));return{Directive(o,s,a,c,u){let l=o.name.value,f=e.get(l);if(f==null){t.reportError(new d(`Unknown directive "@${l}".`,{nodes:o}));return}let m=Gu(u);m!=null&&!f.includes(m)&&t.reportError(new d(`Directive "@${l}" may not be used on ${m}.`,{nodes:o}))}}}function Gu(t){let e=t.at(-1);switch(e!=null&&"kind"in e||O(!1),e.kind){case p.OPERATION_DEFINITION:return Bu(e.operation);case p.FIELD:return b.FIELD;case p.FRAGMENT_SPREAD:return b.FRAGMENT_SPREAD;case p.INLINE_FRAGMENT:return b.INLINE_FRAGMENT;case p.FRAGMENT_DEFINITION:return b.FRAGMENT_DEFINITION;case p.VARIABLE_DEFINITION:{let r=t[t.length-3];return"kind"in r||O(!1),r.kind===p.OPERATION_DEFINITION?b.VARIABLE_DEFINITION:b.FRAGMENT_VARIABLE_DEFINITION}case p.SCHEMA_DEFINITION:case p.SCHEMA_EXTENSION:return b.SCHEMA;case p.SCALAR_TYPE_DEFINITION:case p.SCALAR_TYPE_EXTENSION:return b.SCALAR;case p.OBJECT_TYPE_DEFINITION:case p.OBJECT_TYPE_EXTENSION:return b.OBJECT;case p.FIELD_DEFINITION:return b.FIELD_DEFINITION;case p.INTERFACE_TYPE_DEFINITION:case p.INTERFACE_TYPE_EXTENSION:return b.INTERFACE;case p.UNION_TYPE_DEFINITION:case p.UNION_TYPE_EXTENSION:return b.UNION;case p.ENUM_TYPE_DEFINITION:case p.ENUM_TYPE_EXTENSION:return b.ENUM;case p.ENUM_VALUE_DEFINITION:return b.ENUM_VALUE;case p.INPUT_OBJECT_TYPE_DEFINITION:case p.INPUT_OBJECT_TYPE_EXTENSION:return b.INPUT_OBJECT;case p.INPUT_VALUE_DEFINITION:{let r=t.at(-3);return r!=null&&"kind"in r||O(!1),r.kind===p.INPUT_OBJECT_TYPE_DEFINITION||r.kind===p.INPUT_OBJECT_TYPE_EXTENSION?b.INPUT_FIELD_DEFINITION:b.ARGUMENT_DEFINITION}case p.DIRECTIVE_DEFINITION:case p.DIRECTIVE_EXTENSION:return b.DIRECTIVE_DEFINITION;default:O(!1,"Unexpected kind: "+g(e.kind))}}function Bu(t){switch(t){case k.QUERY:return b.QUERY;case k.MUTATION:return b.MUTATION;case k.SUBSCRIPTION:return b.SUBSCRIPTION}}function fi(t){return{FragmentSpread(e){let r=e.name.value;t.getFragment(r)||t.reportError(new d(`Unknown fragment "${r}".`,{nodes:e.name}))}}}function di(t){let e=t.getSchema();return{OperationDefinition(r){let n=r.operation;e.getRootType(n)||t.reportError(new d(`The ${n} operation is not supported by the schema.`,{nodes:r}))}}}function Wr(t){let{definitions:e}=t.getDocument(),r=t.getSchema()?.getTypeMap()??{},n=new Set([...Object.keys(r),...e.filter(Ye).map(i=>i.name.value)]);return{NamedType(i,o,s,a,c){let u=i.name.value;if(!n.has(u)){let l=c[2]??s,f=l!=null&&Qu(l);if(f&&_s.has(u))return;let m=t.hideSuggestions?[]:ne(u,f?[..._s,...n]:[...n]);t.reportError(new d(`Unknown type "${u}".`+te(m),{nodes:i}))}}}}var _s=new Set([...Cr,...Ur].map(t=>t.name));function Qu(t){return"kind"in t&&(oi(t)||si(t))}function mi(t){let e=0;return{Document(r){e=r.definitions.filter(n=>n.kind===p.OPERATION_DEFINITION).length},OperationDefinition(r){!r.name&&e>1&&t.reportError(new d("This anonymous operation must be the only defined operation.",{nodes:r}))}}}function hi(t){let e=t.getSchema(),r=e?.astNode??e?.getQueryType()??e?.getMutationType()??e?.getSubscriptionType(),n=0;return{SchemaDefinition(i){if(r){t.reportError(new d("Cannot define a new schema within a schema extension.",{nodes:i}));return}n>0&&t.reportError(new d("Must provide only one schema definition.",{nodes:i})),++n}}}var ju=3;function yi(t){function e(r,n=Object.create(null),i=0){if(r.kind===p.FRAGMENT_SPREAD){let o=r.name.value;if(n[o]===!0)return!1;let s=t.getFragment(o);if(!s)return!1;try{return n[o]=!0,e(s,n,i)}finally{n[o]=void 0}}if(r.kind===p.FIELD&&(r.name.value==="fields"||r.name.value==="interfaces"||r.name.value==="possibleTypes"||r.name.value==="inputFields")&&(i++,i>=ju))return!0;if("selectionSet"in r&&r.selectionSet){for(let o of r.selectionSet.selections)if(e(o,n,i))return!0}return!1}return{Field(r){if((r.name.value==="__schema"||r.name.value==="__type")&&e(r))return t.reportError(new d("Maximum introspection depth exceeded",{nodes:[r]})),!1}}}function Ti(t){let e=new Set,r=[],n=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(o){return i(o),!1}};function i(o){if(e.has(o.name.value))return;let s=o.name.value;e.add(s);let a=t.getFragmentSpreads(o.selectionSet);if(a.length!==0){n[s]=r.length;for(let c of a){let u=c.name.value,l=n[u];if(r.push(c),l===void 0){let f=t.getFragment(u);f&&i(f)}else{let f=r.slice(l),m=f.slice(0,-1).map(T=>'"'+T.name.value+'"').join(", ");t.reportError(new d(`Cannot spread fragment "${u}" within itself`+(m!==""?` via ${m}.`:"."),{nodes:f}))}r.pop()}n[s]=void 0}}}function gi(t){return{OperationDefinition(e){let r=new Set(e.variableDefinitions?.map(i=>i.variable.name.value)),n=t.getRecursiveVariableUsages(e);for(let{node:i,fragmentVariableDefinition:o}of n){if(o)continue;let s=i.name.value;r.has(s)||t.reportError(new d(e.name?`Variable "$${s}" is not defined by operation "${e.name.value}".`:`Variable "$${s}" is not defined.`,{nodes:[i,e]}))}}}}function Ei(t){let e=new Set,r=[];return{OperationDefinition(n){for(let i of t.getRecursivelyReferencedFragments(n))e.add(i.name.value);return!1},FragmentDefinition(n){return r.push(n),!1},Document:{leave(){for(let n of r){let i=n.name.value;e.has(i)||t.reportError(new d(`Fragment "${i}" is never used.`,{nodes:n}))}}}}}function Ii(t){return{FragmentDefinition(e){let r=t.getVariableUsages(e),n=new Set(r.map(({node:o})=>o.name.value)),i=e.variableDefinitions??[];for(let o of i){let s=o.variable.name.value;n.has(s)||t.reportError(new d(`Variable "$${s}" is never used in fragment "${e.name.value}".`,{nodes:o}))}},OperationDefinition(e){let r=t.getRecursiveVariableUsages(e),n=new Set;for(let{node:o,fragmentVariableDefinition:s}of r){let a=o.name.value;s||n.add(a)}let i=e.variableDefinitions??[];for(let o of i){let s=o.variable.name.value;n.has(s)||t.reportError(new d(e.name?`Variable "$${s}" is never used in operation "${e.name.value}".`:`Variable "$${s}" is never used.`,{nodes:o}))}}}}function or(t){switch(t.kind){case p.OBJECT:return{...t,fields:qu(t.fields)};case p.LIST:return{...t,values:t.values.map(or)};case p.INT:case p.FLOAT:case p.STRING:case p.BOOLEAN:case p.NULL:case p.ENUM:case p.VARIABLE:return t}}function qu(t){return t.map(e=>({...e,value:or(e.value)})).sort((e,r)=>vt(e.name.value,r.name.value))}function As(t){return Array.isArray(t)?t.map(([e,r])=>`subfields "${e}" conflict because `+As(r)).join(" and "):t}function Ri(t){let e=new Zr,r=new vi,n=new Map;return{SelectionSet(i){let o=Ku(t,n,e,r,t.getParentType(),i);for(let[[s,a],c,u]of o){let l=As(a);t.reportError(new d(`Fields "${s}" conflict because ${l}. Use different aliases on the fields to fetch both if this was intentional.`,{nodes:c.concat(u)}))}}}}function Ku(t,e,r,n,i,o){let s=[],[a,c]=zr(t,e,i,o,void 0);if(Hu(t,s,e,r,n,a),c.length!==0)for(let u=0;u<c.length;u++){Jr(t,s,e,r,n,!1,a,c[u]);for(let l=u+1;l<c.length;l++)Xr(t,s,e,r,n,!1,c[u],c[l])}return s}function Jr(t,e,r,n,i,o,s,a){if(n.has(s,a.key,o))return;n.add(s,a.key,o);let c=t.getFragment(a.node.name.value);if(!c)return;let[u,l]=bi(t,r,c,a.varMap);if(s!==u){Si(t,e,r,n,i,o,s,void 0,u,a.varMap);for(let f of l)Jr(t,e,r,n,i,o,s,f)}}function Xr(t,e,r,n,i,o,s,a){if(s.key===a.key)return;if(s.node.name.value===a.node.name.value&&!xi(s.node.arguments,s.varMap,a.node.arguments,a.varMap)){t.reportError(new d(`Spreads "${s.node.name.value}" conflict because ${s.key} and ${a.key} have different fragment arguments.`,{nodes:[s.node,a.node]}));return}if(i.has(s.key,a.key,o))return;i.add(s.key,a.key,o);let c=t.getFragment(s.node.name.value),u=t.getFragment(a.node.name.value);if(!c||!u)return;let[l,f]=bi(t,r,c,s.varMap),[m,T]=bi(t,r,u,a.varMap);Si(t,e,r,n,i,o,l,s.varMap,m,a.varMap);for(let y of T)Xr(t,e,r,n,i,o,s,y);for(let y of f)Xr(t,e,r,n,i,o,y,a)}function Yu(t,e,r,n,i,o,s,a,c,u,l){let f=[],[m,T]=zr(t,e,o,s,a),[y,R]=zr(t,e,c,u,l);Si(t,f,e,r,n,i,m,a,y,l);for(let v of R)Jr(t,f,e,r,n,i,m,v);for(let v of T)Jr(t,f,e,r,n,i,y,v);for(let v of T)for(let w of R)Xr(t,f,e,r,n,i,v,w);return f}function Hu(t,e,r,n,i,o){for(let[s,a]of o.entries())if(a.length>1)for(let c=0;c<a.length;c++)for(let u=c+1;u<a.length;u++){let l=Fs(t,r,n,i,!1,s,a[c],void 0,a[u],void 0);l&&e.push(l)}}function Si(t,e,r,n,i,o,s,a,c,u){for(let[l,f]of s.entries()){let m=c.get(l);if(m!=null)for(let T of f)for(let y of m){let R=Fs(t,r,n,i,o,l,T,a,y,u);R&&e.push(R)}}}function Fs(t,e,r,n,i,o,s,a,c,u){let[l,f,m]=s,[T,y,R]=c,v=i||l!==T&&L(l)&&L(T);if(!v){let Et=f.name.value,re=y.name.value;if(Et!==re)return[[o,`"${Et}" and "${re}" are different fields`],[f],[y]];if(!xi(f.arguments,a,y.arguments,u))return[[o,"they have differing arguments"],[f],[y]]}let w=f.directives,j=y.directives,G=Wu(w,a,j,u);if(G!==void 0)return[[o,G],[f],[y]];let B=m?.type,ae=R?.type;if(B&&ae&&Ni(B,ae))return[[o,`they return conflicting types "${g(B)}" and "${g(ae)}"`],[f],[y]];let Me=f.selectionSet,Ve=y.selectionSet;if(Me&&Ve){let Et=Yu(t,e,r,n,v,X(B),Me,a,X(ae),Ve,u);return Xu(Et,o,f,y)}}function xi(t,e,r,n){if(t===void 0||t.length===0)return r===void 0||r.length===0;if(r===void 0||r.length===0||t.length!==r.length)return!1;let i=new Map(r.map(({name:o,value:s})=>[o.value,n===void 0?s:sr(s,n)]));return t.every(o=>{let s=o.value;e&&(s=sr(s,e));let a=i.get(o.name.value);return a===void 0?!1:Ds(s)===Ds(a)})}function sr(t,e){switch(t.kind){case p.VARIABLE:return e.get(t.name.value)??t;case p.LIST:return{...t,values:t.values.map(r=>sr(r,e))};case p.OBJECT:return{...t,fields:t.fields.map(r=>({...r,value:sr(r.value,e)}))};default:return t}}function Ds(t){return F(or(t))}function Ls(t){return t?.find(e=>e.name.value==="stream")}function Wu(t,e,r,n){let i=Ls(t),o=Ls(r);if(!(!i&&!o))return i&&o&&xi(i.arguments,e,o.arguments,n)?"they have overlapping stream directives. See https://github.com/graphql/defer-stream-wg/discussions/100":"they have overlapping stream directives"}function Ni(t,e){return D(t)?D(e)?Ni(t.ofType,e.ofType):!0:D(e)?!0:x(t)?x(e)?Ni(t.ofType,e.ofType):!0:x(e)?!0:he(t)||he(e)?t!==e:!1}function zr(t,e,r,n,i){let o=e.get(n);if(o)return o;let s=new Map,a=new Map;Cs(t,r,n,s,a,i);let c=[s,Array.from(a.values())];return e.set(n,c),c}function bi(t,e,r,n){let i=e.get(r.selectionSet);if(i)return i;let o=U(t.getSchema(),r.typeCondition);return zr(t,e,o,r.selectionSet,n)}function Cs(t,e,r,n,i,o){for(let s of r.selections)switch(s.kind){case p.FIELD:{let a=s.name.value,c;(L(e)||A(e))&&(c=e.getFields()[a]);let u=s.alias?s.alias.value:a,l=n.get(u);l==null&&(l=[],n.set(u,l)),l.push([e,s,c]);break}case p.FRAGMENT_SPREAD:{let a=Ju(t,s,o);i.set(a.key,a);break}case p.INLINE_FRAGMENT:{let a=s.typeCondition,c=a?U(t.getSchema(),a):e;Cs(t,c,s.selectionSet,n,i,o);break}}}function Ju(t,e,r){let n="",i=new Map,o=t.getFragmentSignatureByName()(e.name.value),s=new Map;if(e.arguments)for(let a of e.arguments)s.set(a.name.value,a.value);if(o?.variableDefinitions){n+=e.name.value+"(";for(let[a,c]of o.variableDefinitions){let u=s.get(a);u&&(n+=a+": "+F(or(u)));let l=s.get(a);l!==void 0?i.set(a,r!==void 0?sr(l,r):l):c.defaultValue&&i.set(a,c.defaultValue)}n+=")"}return{key:n,node:e,varMap:i.size>0?i:void 0}}function Xu(t,e,r,n){if(t.length>0)return[[e,t.map(([i])=>i)],[r,...t.map(([,i])=>i).flat()],[n,...t.map(([,,i])=>i).flat()]]}var Zr=class{constructor(){this._data=new Map}has(e,r,n){let i=this._data.get(e)?.get(r);return i===void 0?!1:n?!0:n===i}add(e,r,n){let i=this._data.get(e);i===void 0?this._data.set(e,new Map([[r,n]])):i.set(r,n)}},vi=class{constructor(){this._orderedPairSet=new Zr}has(e,r,n){return e<r?this._orderedPairSet.has(e,r,n):this._orderedPairSet.has(r,e,n)}add(e,r,n){e<r?this._orderedPairSet.add(e,r,n):this._orderedPairSet.add(r,e,n)}};function Oi(t){return{InlineFragment(e){let r=t.getType(),n=t.getParentType();if(Te(r)&&Te(n)&&!kn(t.getSchema(),r,n)){let i=g(n),o=g(r);t.reportError(new d(`Fragment cannot be spread here as objects of type "${i}" can never be of type "${o}".`,{nodes:e}))}},FragmentSpread(e){let r=e.name.value,n=zu(t,r),i=t.getParentType();if(n&&i&&!kn(t.getSchema(),n,i)){let o=g(i),s=g(n);t.reportError(new d(`Fragment "${r}" cannot be spread here as objects of type "${o}" can never be of type "${s}".`,{nodes:e}))}}}}function zu(t,e){let r=t.getFragment(e);if(r){let n=U(t.getSchema(),r.typeCondition);if(Te(n))return n}}function wi(t){let e=t.getSchema(),r=new Map;for(let i of t.getDocument().definitions)Ye(i)&&r.set(i.name.value,i);return{ScalarTypeExtension:n,ObjectTypeExtension:n,InterfaceTypeExtension:n,UnionTypeExtension:n,EnumTypeExtension:n,InputObjectTypeExtension:n};function n(i){let o=i.name.value,s=r.get(o),a=e?.getType(o),c;if(s!=null?c=Zu[s.kind]:a&&(c=ep(a)),c!=null){if(c!==i.kind){let u=tp(i.kind);t.reportError(new d(`Cannot extend non-${u} type "${o}".`,{nodes:s?[s,i]:i}))}}else{let u=[...r.keys(),...Object.keys(e?.getTypeMap()??{})];t.reportError(new d(`Cannot extend type "${o}" because it is not defined.`+te(ne(o,u)),{nodes:i.name}))}}}var Zu={[p.SCALAR_TYPE_DEFINITION]:p.SCALAR_TYPE_EXTENSION,[p.OBJECT_TYPE_DEFINITION]:p.OBJECT_TYPE_EXTENSION,[p.INTERFACE_TYPE_DEFINITION]:p.INTERFACE_TYPE_EXTENSION,[p.UNION_TYPE_DEFINITION]:p.UNION_TYPE_EXTENSION,[p.ENUM_TYPE_DEFINITION]:p.ENUM_TYPE_EXTENSION,[p.INPUT_OBJECT_TYPE_DEFINITION]:p.INPUT_OBJECT_TYPE_EXTENSION};function ep(t){if(we(t))return p.SCALAR_TYPE_EXTENSION;if(L(t))return p.OBJECT_TYPE_EXTENSION;if(A(t))return p.INTERFACE_TYPE_EXTENSION;if(J(t))return p.UNION_TYPE_EXTENSION;if(K(t))return p.ENUM_TYPE_EXTENSION;if(_(t))return p.INPUT_OBJECT_TYPE_EXTENSION;O(!1,"Unexpected type: "+g(t))}function tp(t){switch(t){case p.SCALAR_TYPE_EXTENSION:return"scalar";case p.OBJECT_TYPE_EXTENSION:return"object";case p.INTERFACE_TYPE_EXTENSION:return"interface";case p.UNION_TYPE_EXTENSION:return"union";case p.ENUM_TYPE_EXTENSION:return"enum";case p.INPUT_OBJECT_TYPE_EXTENSION:return"input object";default:O(!1,"Unexpected kind: "+g(t))}}function _i(t){return{...Di(t),Field:{leave(e){let r=t.getFieldDef();if(!r)return!1;let n=new Set(e.arguments?.map(i=>i.name.value));for(let i of r.args)!n.has(i.name)&&ge(i)&&t.reportError(new d(`Argument "${i}" of type "${i.type}" is required, but it was not provided.`,{nodes:e}))}},FragmentSpread:{leave(e){let r=t.getFragmentSignature();if(!r)return!1;let n=new Set(e.arguments?.map(i=>i.name.value));for(let[i,o]of r.variableDefinitions)if(!n.has(i)&&ks(o)){let s=U(t.getSchema(),o.type),a=g(s);t.reportError(new d(`Fragment "${e.name.value}" argument "${i}" of type "${a}" is required, but it was not provided.`,{nodes:e}))}}}}}function Di(t){let e=new Map,n=t.getSchema()?.getDirectives()??Le;for(let o of n)e.set(o.name,new Map(o.args.filter(ge).map(s=>[s.name,s])));let i=t.getDocument().definitions;for(let o of i)if(o.kind===p.DIRECTIVE_DEFINITION){let s=o.arguments??[];e.set(o.name.value,new Map(s.filter(ks).map(a=>[a.name.value,a])))}return{Directive:{leave(o){let s=o.name.value,a=e.get(s);if(a!=null){let c=o.arguments??[],u=new Set(c.map(l=>l.name.value));for(let[l,f]of a.entries())if(!u.has(l)){let m=Kt(f.type)?g(f.type):F(f.type);t.reportError(new d(`Argument "@${s}(${l}:)" of type "${m}" is required, but it was not provided.`,{nodes:o}))}}}}}}function ks(t){return t.type.kind===p.NON_NULL_TYPE&&t.defaultValue==null}function Li(t){return{Field(e){let r=t.getType(),n=e.selectionSet;if(r)if(he(X(r))){if(n){let i=e.name.value,o=g(r);t.reportError(new d(`Field "${i}" must not have a selection since type "${o}" has no subfields.`,{nodes:n}))}}else if(n){if(n.selections.length===0){let i=e.name.value,o=g(r);t.reportError(new d(`Field "${i}" of type "${o}" must have at least one field selected.`,{nodes:e}))}}else{let i=e.name.value,o=g(r);t.reportError(new d(`Field "${i}" of type "${o}" must have a selection of subfields. Did you mean "${i} { ... }"?`,{nodes:e}))}}}}function ht(t,e){if(x(e))return t==null?void 0:ht(t,e.ofType);if(t==null)return null;if(D(e)){if(!ce(t)){let i=ht(t,e.ofType);return i===void 0?void 0:[i]}let n=[];for(let i of t){let o=ht(i,e.ofType);if(o===void 0)return;n.push(o)}return n}if(_(e)){if(!Q(t)||Array.isArray(t))return;let n=Object.create(null),i=e.getFields(),o=0;for(let s of Object.keys(t))if(t[s]!==void 0&&(o++,!Object.hasOwn(i,s)))return;for(let s of Object.values(i)){let a=t[s.name];if(a===void 0){if(le(s))return;let c=en(s);c!==void 0&&(n[s.name]=c)}else{let c=ht(a,s.type);if(c===void 0)return;n[s.name]=c}}if(e.isOneOf){let s=Object.keys(n);if(o!==1||s.length!==1)return;let a=s[0];if(n[a]===null)return}return n}let r=ye(e);try{return r.coerceInputValue(t)}catch{}}function yt(t,e,r,n){if(t.kind===p.VARIABLE){let o=Ps(t,r,n);return o==null&&x(e)?void 0:o}if(x(e))return t.kind===p.NULL?void 0:yt(t,e.ofType,r,n);if(t.kind===p.NULL)return null;if(D(e)){if(t.kind!==p.LIST){let s=yt(t,e.ofType,r,n);return s===void 0?void 0:[s]}let o=[];for(let s of t.values){let a=yt(s,e.ofType,r,n);if(a===void 0)if(s.kind===p.VARIABLE&&Ps(s,r,n)==null&&!x(e.ofType))a=null;else return;o.push(a)}return o}if(_(e)){if(t.kind!==p.OBJECT)return;let o=Object.create(null),s=e.getFields();if(t.fields.some(u=>!Object.hasOwn(s,u.name.value)))return;let c=new Map(t.fields.map(u=>[u.name.value,u]));for(let u of Object.values(s)){let l=c.get(u.name);if(!l||l.value.kind===p.VARIABLE&&rp(l.value,r,n)){if(le(u))return;let f=en(u);f!==void 0&&(o[u.name]=f)}else{let f=yt(l.value,u.type,r,n);if(f===void 0)return;o[u.name]=f}}if(e.isOneOf){let u=Object.keys(o);if(c.size!==1||u.length!==1)return;for(let[l,f]of c)if(f.value.kind===p.NULL||o[l]===null)return}return o}let i=ye(e);try{return i.coerceInputLiteral?i.coerceInputLiteral(ot(t,r,n)):i.parseLiteral(t,r?.coerced)}catch{}}function Ps(t,e,r){let n=t.name.value;return r?.sources[n]!==void 0?r.coerced[n]:e?.coerced[n]}function rp(t,e,r){let n=t.name.value;return(r?.sources[n]!==void 0?r.coerced:e?.coerced)?.[n]===void 0}function en(t){let e=t._memoizedCoercedDefaultValue;if(e!==void 0)return e;let r=t.default;if(r!==void 0)return e=r.literal?yt(r.literal,t.type):ht(r.value,t.type),e===void 0&&O(!1,`Expected value of type "${t.type}" to be valid, found: ${g(r.literal??r.value)}.`),t._memoizedCoercedDefaultValue=e,e;let n=t.defaultValue;return n!==void 0&&(t._memoizedCoercedDefaultValue=n),n}function tn(t,e){let r=e.variable.name.value,n=U(t,e.type);if(!W(n)){let o=F(e.type);return new d(`Variable "$${r}" expected value of type "${o}" which cannot be used as an input type.`,{nodes:e.type})}let i=e.defaultValue;return{name:r,type:n,default:i&&{literal:i}}}function rn(t,e,r,n){let i=[],o=n?.maxErrors;try{let s=np(t,e,r,a=>{if(o!=null&&i.length>=o)throw new d("Too many errors processing variables, error limit reached. Execution aborted.");i.push(a)},n?.hideSuggestions);if(i.length===0)return{variableValues:s}}catch(s){i.push(Ue(s))}return{errors:i}}function np(t,e,r,n,i){let o=Object.create(null),s=Object.create(null);for(let a of e){let c=tn(t,a);if(c instanceof d){n(c);continue}let{name:u,type:l}=c,f=Object.hasOwn(r,u)?r[u]:void 0;if(f===void 0){if(o[u]={signature:c},a.defaultValue){Fi(s,u,c,(T,y)=>{n(new d(`Variable "$${u}" has invalid default value${Xe(y)}: ${T.message}`,{nodes:a}))},i);continue}else if(!x(l))continue}else o[u]={signature:c,value:f};let m=ht(f,l);m!==void 0?s[u]=m:Jt(f,l,(T,y)=>{n(new d(`Variable "$${u}" has invalid value${Xe(y)}: ${T.message}`,{nodes:a,originalError:T}))},i)}return{sources:o,coerced:s}}function Fi(t,e,r,n,i){try{let o=en(r);o!==void 0&&(t[e]=o)}catch(o){let s=r.default;if(s===void 0)throw o;let a=!1;Yn(s,r.type,(c,u)=>{a=!0,n(c,u)},i),a||n(Ue(o),[])}}function Ms(t,e,r,n,i){let o=t.arguments??[],s=new Map(o.map(u=>[u.name.value,u])),a=Object.create(null),c=Object.create(null);for(let[u,l]of Object.entries(e)){let f=s.get(u);f!==void 0?a[u]=n==null?{signature:l,value:f.value}:{signature:l,value:f.value,fragmentVariableValues:n}:a[u]={signature:l},Vs(c,t,u,l,f,r,n,i)}return{sources:a,coerced:c}}function He(t,e,r,n,i){let o=Object.create(null),s=e.arguments??[],a=new Map(s.map(c=>[c.name.value,c]));for(let c of t.args){let u=c.name;Vs(o,e,u,c,a.get(c.name),r,n,i)}return o}function Vs(t,e,r,n,i,o,s,a){let c=n.type,u=(m,T)=>{throw new d(`${Ai(n,e)} has invalid default value${Xe(T)}: ${m.message}`,{nodes:e})};if(!i){if(ge(n))throw new d(`${Ai(n,e)} of required type "${c}" was not provided.`,{nodes:e});Fi(t,r,n,u,a);return}let l=i.value;if(l.kind===p.VARIABLE){let m=l.name.value,T=s?.sources[m]?s:o;if((T==null||!Object.hasOwn(T.coerced,m))&&!ge(n)){Fi(t,r,n,u,a);return}}let f=yt(l,c,o,s);f===void 0&&(Ot(l,c,(m,T)=>{throw m.message=`${Ai(n,e)} has invalid value${Xe(T)}: ${m.message}`,m},o,s,a),O(!1,"Invalid argument")),t[r]=f}function Ai(t,e){return Or(t)?`Argument "${t}"`:`Variable "$${t.name}" defined by fragment "${e.name.value}"`}function ar(t,e,r,n,i){let o=e.directives?.find(s=>s.name.value===t.name);if(o)return He(t,o,r,n,i)}function nn(t,e,r,n,i,o,s=!1){let a=new $e,c=[],u={schema:t,fragments:e,variableValues:r,runtimeType:n,visitedFragmentNames:new Map,hideSuggestions:o,forbiddenDirectiveInstances:[],forbidSkipAndInclude:s};return cr(u,i,a,c),{groupedFieldSet:a,newDeferUsages:c,forbiddenDirectiveInstances:u.forbiddenDirectiveInstances}}function Gs(t,e,r,n,i,o){let s={schema:t,fragments:e,variableValues:r,runtimeType:n,visitedFragmentNames:new Map,hideSuggestions:o,forbiddenDirectiveInstances:[],forbidSkipAndInclude:!1},a=new $e,c=[];for(let u of i){let l=u.node.selectionSet;if(l){let{deferUsage:f,fragmentVariableValues:m}=u;cr(s,l,a,c,f,m)}}return{groupedFieldSet:a,newDeferUsages:c}}function cr(t,e,r,n,i,o){let{schema:s,fragments:a,variableValues:c,runtimeType:u,visitedFragmentNames:l,hideSuggestions:f}=t;for(let m of e.selections)switch(m.kind){case p.FIELD:{if(!Ci(t,m,c,o))continue;r.add(ip(m),{node:m,deferUsage:i,fragmentVariableValues:o});break}case p.INLINE_FRAGMENT:{if(!Ci(t,m,c,o)||!$s(s,m,u))continue;let T=Us(c,o,m,i);T?(n.push(T),cr(t,m.selectionSet,r,n,T,o)):cr(t,m.selectionSet,r,n,i,o);break}case p.FRAGMENT_SPREAD:{let T=m.name.value;if(!Ci(t,m,c,o))continue;let y=a[T];if(y==null||!$s(s,y.definition,u))continue;let R=Us(c,o,m,i),v=l.get(T),w;if(R){if(v!==void 0)continue;l.set(T,!0),n.push(R),w=R}else{if(v===!1)continue;l.set(T,!1),w=i}let j=y.variableSignatures,G;j&&(G=Ms(m,j,c,o,f)),cr(t,y.definition.selectionSet,r,n,w,G);break}}}function Us(t,e,r,n){let i=ar(Be,r,t,e);if(i&&i.if!==!1)return{label:typeof i.label=="string"?i.label:void 0,parentDeferUsage:n}}function Ci(t,e,r,n){let i=e.directives?.find(c=>c.name.value===ut.name);if(i&&t.forbidSkipAndInclude)return t.forbiddenDirectiveInstances.push(i),!1;if((i?He(ut,i,r,n,t.hideSuggestions):void 0)?.if===!0)return!1;let s=e.directives?.find(c=>c.name.value===ct.name);return s&&t.forbidSkipAndInclude?(t.forbiddenDirectiveInstances.push(s),!1):(s?He(ct,s,r,n,t.hideSuggestions):void 0)?.if!==!1}function $s(t,e,r){let n=e.typeCondition;if(!n)return!0;let i=U(t,n);return i===r?!0:oe(i)?t.isSubType(i,r):!1}function ip(t){return t.alias?t.alias.value:t.name.value}function ki(t){return t.map(e=>e.node)}function Pi(t){return{OperationDefinition(e){if(e.operation==="subscription"){let r=t.getSchema(),n=r.getSubscriptionType();if(n){let i=e.name?e.name.value:null,o=Object.create(null),s=t.getDocument(),a=Object.create(null);for(let l of s.definitions)l.kind===p.FRAGMENT_DEFINITION&&(a[l.name.value]={definition:l});let{groupedFieldSet:c,forbiddenDirectiveInstances:u}=nn(r,a,o,n,e.selectionSet,t.hideSuggestions,!0);if(u.length>0){t.reportError(new d(i!=null?`Subscription "${i}" must not use \`@skip\` or \`@include\` directives in the top level selection.`:"Anonymous Subscription must not use `@skip` or `@include` directives in the top level selection.",{nodes:u}));return}if(c.size>1){let m=[...c.values()].slice(1).flatMap(T=>ki(T));t.reportError(new d(i!=null?`Subscription "${i}" must select only one top level field.`:"Anonymous Subscription must select only one top level field.",{nodes:m}))}for(let l of c.values())ki(l)[0].name.value.startsWith("__")&&t.reportError(new d(i!=null?`Subscription "${i}" must not select an introspection top level field.`:"Anonymous Subscription must not select an introspection top level field.",{nodes:ki(l)}))}}}}}function Mi(t){return{Directive(e){let r=t.getFieldDef(),n=t.getParentType();r&&n&&e.name.value===De.name&&!(D(r.type)||nt(r.type)&&D(r.type.ofType))&&t.reportError(new d(`Directive "@stream" cannot be used on non-list field "${n}.${r.name}".`,{nodes:e}))}}}function Ct(t,e){let r=new $e;for(let n of t)r.add(e(n),n);return r}function Vi(t){return{DirectiveDefinition(n){let i=n.arguments??[];return r(`@${n.name.value}`,i)},InterfaceTypeDefinition:e,InterfaceTypeExtension:e,ObjectTypeDefinition:e,ObjectTypeExtension:e};function e(n){let i=n.name.value,o=n.fields??[];for(let s of o){let a=s.name.value,c=s.arguments??[];r(`${i}.${a}`,c)}return!1}function r(n,i){let o=Ct(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&t.reportError(new d(`Argument "${n}(${s}:)" can only be defined once.`,{nodes:a.map(c=>c.name)}));return!1}}function on(t){return{Field:e,Directive:e};function e(r){let n=r.arguments??[],i=Ct(n,o=>o.name.value);for(let[o,s]of i)s.length>1&&t.reportError(new d(`There can be only one argument named "${o}".`,{nodes:s.map(a=>a.name)}))}}function Ui(t){let e=new Map,r=t.getSchema();return{DirectiveDefinition(n){let i=n.name.value;if(r?.getDirective(i)){t.reportError(new d(`Directive "@${i}" already exists in the schema. It cannot be redefined.`,{nodes:n.name}));return}let o=e.get(i);return o?t.reportError(new d(`There can be only one directive named "@${i}".`,{nodes:[o,n.name]})):e.set(i,n.name),!1}}}function sn(t){let e=new Map,r=t.getSchema(),n=r?r.getDirectives():Le;for(let c of n)e.set(c.name,!c.isRepeatable);let i=t.getDocument().definitions;for(let c of i)c.kind===p.DIRECTIVE_DEFINITION&&e.set(c.name.value,!c.repeatable);let o=new Map,s=new Map,a=new Map;return{enter(c){if(!("directives"in c)||!c.directives)return;let u;if(c.kind===p.SCHEMA_DEFINITION||c.kind===p.SCHEMA_EXTENSION)u=o;else if(Ye(c)||Yr(c)){let l=c.name.value;u=s.get(l),u===void 0&&(u=new Map,s.set(l,u))}else if(c.kind===p.DIRECTIVE_DEFINITION||c.kind===p.DIRECTIVE_EXTENSION){let l=c.name.value;u=a.get(l),u===void 0&&(u=new Map,a.set(l,u))}else u=new Map;for(let l of c.directives){let f=l.name.value;if(e.get(f)===!0){let m=u.get(f);m!=null?t.reportError(new d(`The directive "@${f}" can only be used once at this location.`,{nodes:[m,l]})):u.set(f,l)}}}}}function $i(t){let e=t.getSchema(),r=e?e.getTypeMap():Object.create(null),n=new Map;return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(o){let s=o.name.value,a=n.get(s);a==null&&(a=new Map,n.set(s,a));let c=o.values??[];for(let u of c){let l=u.name.value,f=r[s];if(K(f)&&f.getValue(l)){t.reportError(new d(`Enum value "${s}.${l}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:u.name}));continue}let m=a.get(l);m!=null?t.reportError(new d(`Enum value "${s}.${l}" can only be defined once.`,{nodes:[m,u.name]})):a.set(l,u.name)}return!1}}function Gi(t){let e=t.getSchema(),r=e?e.getTypeMap():Object.create(null),n=new Map;return{InputObjectTypeDefinition:i,InputObjectTypeExtension:i,InterfaceTypeDefinition:i,InterfaceTypeExtension:i,ObjectTypeDefinition:i,ObjectTypeExtension:i};function i(o){let s=o.name.value,a=n.get(s);a==null&&(a=new Map,n.set(s,a));let c=o.fields??[];for(let u of c){let l=u.name.value;if(op(r[s],l)){t.reportError(new d(`Field "${s}.${l}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:u.name}));continue}let f=a.get(l);f!=null?t.reportError(new d(`Field "${s}.${l}" can only be defined once.`,{nodes:[f,u.name]})):a.set(l,u.name)}return!1}}function op(t,e){return L(t)||A(t)||_(t)?t.getFields()[e]!=null:!1}function Bi(t){let e=new Map;return{OperationDefinition:()=>!1,FragmentDefinition(r){let n=r.name.value,i=e.get(n);return i!=null?t.reportError(new d(`There can be only one fragment named "${n}".`,{nodes:[i,r.name]})):e.set(n,r.name),!1}}}function an(t){let e=[],r=new Map;return{ObjectValue:{enter(){e.push(r),r=new Map},leave(){let n=e.pop();n==null&&O(!1),r=n}},ObjectField(n){let i=n.name.value,o=r.get(i);o!=null?t.reportError(new d(`There can be only one input field named "${i}".`,{nodes:[o,n.name]})):r.set(i,n.name)}}}function Qi(t){let e=new Map;return{OperationDefinition(r){let n=r.name;if(n!=null){let i=e.get(n.value);i!=null?t.reportError(new d(`There can be only one operation named "${n.value}".`,{nodes:[i,n]})):e.set(n.value,n)}return!1},FragmentDefinition:()=>!1}}function ji(t){let e=t.getSchema(),r=new Map,n=e?{query:e.getQueryType(),mutation:e.getMutationType(),subscription:e.getSubscriptionType()}:{};return{SchemaDefinition:i,SchemaExtension:i};function i(o){let s=o.operationTypes??[];for(let a of s){let c=a.operation,u=r.get(c);n[c]?t.reportError(new d(`Type for ${c} already defined in the schema. It cannot be redefined.`,{nodes:a})):u?t.reportError(new d(`There can be only one ${c} type in schema.`,{nodes:[u,a]})):r.set(c,a)}return!1}}function qi(t){let e=new Map,r=t.getSchema();return{ScalarTypeDefinition:n,ObjectTypeDefinition:n,InterfaceTypeDefinition:n,UnionTypeDefinition:n,EnumTypeDefinition:n,InputObjectTypeDefinition:n};function n(i){let o=i.name.value;if(r?.getType(o)){t.reportError(new d(`Type "${o}" already exists in the schema. It cannot also be defined in this type definition.`,{nodes:i.name}));return}let s=e.get(o);return s!=null?t.reportError(new d(`There can be only one type named "${o}".`,{nodes:[s,i.name]})):e.set(o,i.name),!1}}function Ki(t){return{OperationDefinition(e){let r=e.variableDefinitions??[],n=Ct(r,i=>i.variable.name.value);for(let[i,o]of n)o.length>1&&t.reportError(new d(`There can be only one variable named "$${i}".`,{nodes:o.map(s=>s.variable.name)}))}}}function Yi(t){return{NullValue:e=>We(t,e,t.getInputType()),ListValue:e=>We(t,e,t.getParentInputType()),ObjectValue:e=>We(t,e,t.getInputType()),EnumValue:e=>We(t,e,t.getInputType()),IntValue:e=>We(t,e,t.getInputType()),FloatValue:e=>We(t,e,t.getInputType()),StringValue:e=>We(t,e,t.getInputType()),BooleanValue:e=>We(t,e,t.getInputType())}}function We(t,e,r){return r&&Ot(e,r,n=>{t.reportError(n)},void 0,void 0,t.hideSuggestions),!1}function Hi(t){return{VariableDefinition(e){let r=U(t.getSchema(),e.type);if(r!==void 0&&!W(r)){let n=e.variable.name.value,i=F(e.type);t.reportError(new d(`Variable "$${n}" cannot be non-input type "${i}".`,{nodes:e.type}))}}}}function Wi(t){let e;return{OperationDefinition:{enter(){e=new Map},leave(r){let n=t.getRecursiveVariableUsages(r);for(let{node:i,type:o,parentType:s,defaultValue:a,fragmentVariableDefinition:c}of n){let u=i.name.value,l=c;if(l??=e.get(u),l&&o){let f=t.getSchema(),m=U(f,l.type);m&&!sp(f,m,l.defaultValue,o,a)&&t.reportError(new d(`Variable "$${u}" of type "${m}" used in position expecting type "${o}".`,{nodes:[l,i]})),_(s)&&s.isOneOf&&wr(m)&&t.reportError(new d(`Variable "$${u}" is of type "${m}" but must be non-nullable to be used for OneOf Input Object "${s}".`,{nodes:[l,i]}))}}}},VariableDefinition(r){e.set(r.variable.name.value,r)}}}function sp(t,e,r,n,i){if(x(n)&&!x(e)){if(!(r!=null&&r.kind!==p.NULL)&&!(i!==void 0))return!1;let a=n.ofType;return je(t,e,a)}return je(t,e,n)}var Ji=Object.freeze([yi]),kt=Object.freeze([ai,di,Qi,mi,Pi,Wr,ui,Hi,Li,ci,Bi,fi,Ei,Oi,Ti,Ki,gi,Ii,Hr,sn,ti,ni,Zn,Mi,pi,on,Yi,_i,Wi,Ri,an,...Ji]),ap=Object.freeze([hi,ji,qi,$i,Gi,Vi,Ui,Wr,Hr,sn,wi,li,on,an,Di]);var Xi=class{constructor(e,r){this._ast=e,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=r}get[Symbol.toStringTag](){return"ASTValidationContext"}reportError(e){this._onError(e)}getDocument(){return this._ast}getFragment(e){let r;if(this._fragments)r=this._fragments;else{r=Object.create(null);for(let n of this.getDocument().definitions)n.kind===p.FRAGMENT_DEFINITION&&(r[n.name.value]=n);this._fragments=r}return r[e]}getFragmentSpreads(e){let r=this._fragmentSpreads.get(e);if(!r){r=[];let n=[e],i;for(;i=n.pop();)for(let o of i.selections)o.kind===p.FRAGMENT_SPREAD?r.push(o):o.selectionSet&&n.push(o.selectionSet);this._fragmentSpreads.set(e,r)}return r}getRecursivelyReferencedFragments(e){let r=this._recursivelyReferencedFragments.get(e);if(!r){r=[];let n=new Set,i=[e.selectionSet],o;for(;o=i.pop();)for(let s of this.getFragmentSpreads(o)){let a=s.name.value;if(!n.has(a)){n.add(a);let c=this.getFragment(a);c&&(r.push(c),i.push(c.selectionSet))}}this._recursivelyReferencedFragments.set(e,r)}return r}};var ur=class extends Xi{constructor(e,r,n,i,o){super(r,i),this._schema=e,this._typeInfo=n,this._variableUsages=new Map,this._recursiveVariableUsages=new Map,this._hideSuggestions=o??!1}get[Symbol.toStringTag](){return"ValidationContext"}get hideSuggestions(){return this._hideSuggestions}getSchema(){return this._schema}getVariableUsages(e){let r=this._variableUsages.get(e);if(!r){let n=[],i=new Ft(this._schema,void 0,this._typeInfo.getFragmentSignatureByName()),o=e.kind===p.FRAGMENT_DEFINITION?e:void 0;et(e,Kr(i,{VariableDefinition:()=>!1,Variable(s){let a;o?(a=i.getFragmentSignatureByName()(o.name.value)?.variableDefinitions.get(s.name.value),n.push({node:s,type:i.getInputType(),parentType:i.getParentInputType(),defaultValue:void 0,fragmentVariableDefinition:a})):n.push({node:s,type:i.getInputType(),parentType:i.getParentInputType(),defaultValue:i.getDefaultValue(),fragmentVariableDefinition:void 0})}})),r=n,this._variableUsages.set(e,r)}return r}getRecursiveVariableUsages(e){let r=this._recursiveVariableUsages.get(e);if(!r){r=this.getVariableUsages(e);for(let n of this.getRecursivelyReferencedFragments(e))r=r.concat(this.getVariableUsages(n));this._recursiveVariableUsages.set(e,r)}return r}getType(){return this._typeInfo.getType()}getParentType(){return this._typeInfo.getParentType()}getInputType(){return this._typeInfo.getInputType()}getParentInputType(){return this._typeInfo.getParentInputType()}getFieldDef(){return this._typeInfo.getFieldDef()}getDirective(){return this._typeInfo.getDirective()}getArgument(){return this._typeInfo.getArgument()}getFragmentSignature(){return this._typeInfo.getFragmentSignature()}getFragmentSignatureByName(){return this._typeInfo.getFragmentSignatureByName()}getEnumValue(){return this._typeInfo.getEnumValue()}};var cp=Fe(Gt,t=>t.filter(e=>e!=="description")),zi=new d("Too many validation errors, error limit reached. Validation aborted.");function cn(t,e,r=kt,n){return ve(Wn)?Wn.traceSync(()=>Bs(t,e,r,n),{schema:t,document:e}):Bs(t,e,r,n)}function Bs(t,e,r,n){let i=n?.maxErrors??100,o=n?.hideSuggestions??!1;_t(t);let s=[],a=new Ft(t),c=new ur(t,e,a,l=>{if(s.length>=i)throw zi;s.push(l)},o),u=wn(r.map(l=>l(c)));try{et(e,Kr(a,u),cp)}catch(l){if(l===zi)s.push(zi);else throw l}return s}function Qs(t){return typeof t?.[Symbol.asyncIterator]=="function"}function Zi(t,e,r){let n=Ir(t);return up(n)?n:new d(n.message,{nodes:n.nodes??e,source:n.source,positions:n.positions,path:r,originalError:n})}function up(t){return Array.isArray(t.path)}function js(t,e){let r=null;for(let n of t.definitions)if(n.kind===p.OPERATION_DEFINITION){if(e==null){if(r)return null;r=n}else if(n.name?.value===e)return n}return r}function qs(t,e,r,n,i,o,s){let{schema:a,fragmentDefinitions:c,rootValue:u,operation:l,variableValues:f}=t;return{fieldName:e.name,fieldNodes:r,returnType:e.type,parentType:n,path:i,schema:a,fragments:c,rootValue:u,operation:l,variableValues:f,getAbortSignal:o,getAsyncHelpers:s}}function Ks(){let t,e;return{promise:new Promise((n,i)=>{t=n,e=i}),resolve:t,reject:e}}function Ys(t){let{promise:e,resolve:r,reject:n}=Ks(),i=!1,o=a=>{i||(i=!0,r(a))},s=a=>{i||(i=!0,n(a))};return t.then(o,s),{promise:e,abort(a){s(a)}}}var un=class{constructor(){this.pendingAsyncWork=new Set}add(e){let r=this.pendingAsyncWork,n=e.then(()=>{r.delete(n)},()=>{r.delete(n)});r.add(n)}addValues(e){for(let r of e)pe(r)&&this.add(r)}wait(){if(this.pendingAsyncWork.size!==0)return this.waitForPendingAsyncWork()}promiseAllTrackOnReject(e){let r=Promise.all(e);return r.then(void 0,()=>{this.addValues(e)}),r}async waitForPendingAsyncWork(){for(;this.pendingAsyncWork.size>0;)await Promise.allSettled(Array.from(this.pendingAsyncWork))}};function Hs(t){let e=new un,r,n=o=>e.promiseAllTrackOnReject(o);return{asyncWorkTracker:e,getAbortSignal:()=>t,getAsyncHelpers:()=>r??={promiseAll:n,track:o=>e.addValues(o)},promiseAll:n}}function Ws(t){let e;return function(n,i){e??=new WeakMap;let o=e.get(n);o===void 0&&(o=new WeakMap,e.set(n,o));let s=o.get(i);return s===void 0&&(s=t(n,i),o.set(i,s)),s}}function Js(t){let e;return function(n,i,o){e??=new WeakMap;let s=e.get(n);s===void 0&&(s=new WeakMap,e.set(n,s));let a=s.get(i);a===void 0&&(a=new WeakMap,s.set(i,a));let c=a.get(o);return c===void 0&&(c=t(n,i,o),a.set(o,c)),c}}function Xs(t,e){let r=Object.keys(t),n=Object.values(t);return e(n).then(i=>{let o=Object.create(null);for(let s=0;s<r.length;++s)o[r[s]]=i[s];return o})}function zs(t,e,r){let n=r;for(let i of t)n=xe(n)?n.then(o=>e(o,i)):e(n,i);return n}var pr=class extends Error{constructor(e,r){super(Cp(e),{cause:e}),this.name="AbortedGraphQLExecutionError",this.abortedResult=r}get[Symbol.toStringTag](){return"AbortedGraphQLExecutionError"}};function Cp(t){return t instanceof Error||typeof t=="object"&&t!==null&&"message"in t&&typeof t.message=="string"?t.message:String(t)}function Zs(t){let e=[];try{for(;;){let r=t.next();if(r.done)return e;pe(r.value)&&e.push(r.value)}}catch{return e}}function ea(t,e){let{operation:r,variableValues:n}=t,i=ar(De,e[0].node,n,e[0].fragmentVariableValues);if(!i||i.if===!1)return;typeof i.initialCount!="number"&&O(!1,"initialCount must be a number"),i.initialCount>=0||O(!1,"initialCount must be a positive integer"),r.operation===k.SUBSCRIPTION&&O(!1,"`@stream` directive not supported on subscription operations. Disable `@stream` by setting the `if` argument to `false`.");let o=e.map(s=>({node:s.node,deferUsage:void 0,fragmentVariableValues:s.fragmentVariableValues}));return{initialCount:i.initialCount,label:typeof i.label=="string"?i.label:void 0,fieldDetailsList:o}}function ta(t,e){try{t?.(e)}catch{}}function ra(t,e,r){let n=e.asyncWorkTracker.wait();if(n===void 0){ta(r,{validatedExecutionArgs:t});return}n.then(()=>{ta(r,{validatedExecutionArgs:t})}).catch(()=>{})}async function eo(t){try{await t.return?.()}catch{}}var kp=Js((t,e,r)=>{let{schema:n,fragments:i,variableValues:o,hideSuggestions:s}=t;return Gs(n,i,o,e,r,s)}),pn=Ws((t,e)=>ea(t,e)),to=class{constructor(){this._errorPositions=new Set,this._errors=[]}get errors(){return this._errors}add(e,r){this.hasNulledPosition(r)||(this._errorPositions.add(r),this._errors.push(e))}hasNulledPosition(e){let r=e;for(;r!==void 0;){if(this._errorPositions.has(r))return!0;r=r.prev}return this._errorPositions.has(void 0)}},Pp=new Error("This operation was aborted"),ln=class{constructor(e,r){this.validatedExecutionArgs=e,this.aborted=!1,this.abortReason=Pp,this.collectedErrors=new to,r===void 0?(this.resolverAbortController=new AbortController,this.sharedExecutionContext=Hs(this.resolverAbortController.signal)):this.sharedExecutionContext=r;let{getAbortSignal:n,getAsyncHelpers:i,promiseAll:o}=this.sharedExecutionContext;this.getAbortSignal=n,this.getAsyncHelpers=i,this.promiseAll=o}executeRootSelectionSet(e){return ve(Xn)?Dt(Xn,this.buildExecuteContextFromValidatedArgs(this.validatedExecutionArgs),()=>this.executeRootSelectionSetImpl(e)):this.executeRootSelectionSetImpl(e)}buildExecuteContextFromValidatedArgs(e){return{schema:e.schema,document:e.document,operation:e.operation,rawVariableValues:e.rawVariableValues,operationName:e.operation.name?.value,operationType:e.operation.operation}}executeRootSelectionSetImpl(e){let r=this.validatedExecutionArgs.externalAbortSignal,n;if(r){r.throwIfAborted();let s=()=>{this.abort(r.reason)};n=()=>r.removeEventListener("abort",s),r.addEventListener("abort",s)}let i=()=>{n?.()},o;try{let{schema:s,fragments:a,rootValue:c,operation:u,variableValues:l,hideSuggestions:f}=this.validatedExecutionArgs,{operation:m,selectionSet:T}=u,y=s.getRootType(m);if(y==null)throw new d(`Schema is not configured to execute ${m} operation.`,{nodes:u});let{groupedFieldSet:R,newDeferUsages:v}=nn(s,a,l,y,T,f);if(o=this.executeCollectedRootFields(y,c,R,e??m===k.MUTATION,v),xe(o)){let w=o.then(B=>(i(),this.buildResponse(B)),B=>(i(),this.collectedErrors.add(Ue(B),void 0),this.buildResponse(null)));this.sharedExecutionContext.asyncWorkTracker.add(w);let{promise:j,abort:G}=Ys(w.then(B=>this.finish(B)));return this.abortResultPromise=()=>{G(this.createAbortedExecutionError(w))},this.aborted&&this.abortResultPromise(),j}i()}catch(s){return i(),this.collectedErrors.add(Ue(s),void 0),this.finish(this.buildResponse(null))}return this.finish(this.buildResponse(o))}abort(e){this.aborted||(this.aborted=!0,e!==void 0&&(this.abortReason=e),this.abortResultPromise?.(),this.resolverAbortController?.abort(this.abortReason))}finish(e){if(this.aborted)throw this.createAbortedExecutionError(e);return this.aborted=!0,e}createAbortedExecutionError(e){return new pr(this.abortReason,e)}getFinishSharedExecution(){let e=this.resolverAbortController,r=this.validatedExecutionArgs.hooks?.asyncWorkFinished;if(r===void 0)return()=>e?.abort();let n=this.validatedExecutionArgs,i=this.sharedExecutionContext;return()=>{e?.abort(),ra(n,i,r)}}buildResponse(e){this.getFinishSharedExecution()();let r=this.collectedErrors.errors;return r.length?{errors:r,data:e}:{data:e}}executeCollectedRootFields(e,r,n,i,o){return this.executeRootGroupedFieldSet(e,r,n,i,void 0)}executeRootGroupedFieldSet(e,r,n,i,o){return i?this.executeFieldsSerially(e,r,void 0,n,o):this.executeFields(e,r,void 0,n,o)}executeFieldsSerially(e,r,n,i,o){let s=ve(dt)?dt:void 0;return zs(i,(a,[c,u])=>{if(this.aborted)throw new Error("Aborted!");let l=Ee(n,c,e.name),f=this.executeField(e,r,u,l,o,s);return f===void 0?a:xe(f)?f.then(m=>(a[c]=m,s=ve(dt)?dt:void 0,a)):(a[c]=f,a)},Object.create(null))}executeFields(e,r,n,i,o){let s=Object.create(null),a=!1,c=ve(dt)?dt:void 0;try{for(let[u,l]of i){let f=Ee(n,u,e.name),m=this.executeField(e,r,l,f,o,c);m!==void 0&&(s[u]=m,xe(m)&&(a=!0))}}catch(u){throw a&&this.sharedExecutionContext.asyncWorkTracker.addValues(Object.values(s)),u}return a?Xs(s,this.promiseAll):s}executeField(e,r,n,i,o,s){let a=this.validatedExecutionArgs,{schema:c,contextValue:u,variableValues:l,hideSuggestions:f}=a,m=n[0],T=m.node,y=T.name.value,R=c.getField(e,y);if(!R)return;let v=R.type,w=R.resolve??a.fieldResolver;if(s!==void 0){let G=w;w=(B,ae,Me,Ve)=>Dt(s,this.buildResolveContext(ae,Ve,R.resolve===void 0),()=>G(B,ae,Me,Ve))}let j=qs(a,R,Je(n),e,i,this.getAbortSignal,this.getAsyncHelpers);try{let G=He(R,T,l,m.fragmentVariableValues,f),B=w(r,G,u,j);if(pe(B))return this.completePromisedValue(v,n,j,i,B,o);let ae=this.completeValue(v,n,j,i,B,o);return xe(ae)?ae.then(void 0,Me=>(this.handleFieldError(Me,v,n,i),null)):ae}catch(G){return this.handleFieldError(G,v,n,i),null}}buildResolveContext(e,r,n){let i;return{fieldName:r.fieldName,alias:String(r.path.key),parentType:r.parentType.name,fieldType:String(r.returnType),args:e,isDefaultResolver:n,get fieldPath(){return i??=ke(r.path).join("."),i}}}handleFieldError(e,r,n,i){let o=Zi(e,Je(n),ke(i));if(this.validatedExecutionArgs.errorPropagation&&x(r))throw o;this.collectedErrors.add(o,i)}completeValue(e,r,n,i,o,s){if(o instanceof Error)throw o;if(x(e)){let a=this.completeValue(e.ofType,r,n,i,o,s);if(a===null)throw new Error(`Cannot return null for non-nullable field ${n.parentType}.${n.fieldName}.`);return a}if(o==null)return null;if(D(e))return this.completeListValue(e,r,n,i,o,s);if(he(e))return this.completeLeafValue(e,o);if(oe(e))return this.completeAbstractValue(e,r,n,i,o,s);if(L(e))return this.completeObjectValue(e,r,n,i,o,s);O(!1,"Cannot complete value of unexpected output type: "+g(e))}async completePromisedValue(e,r,n,i,o,s){try{let a=await o;if(this.aborted)throw new Error("Aborted!");let c=this.completeValue(e,r,n,i,a,s);return xe(c)&&(c=await c),c}catch(a){return this.handleFieldError(a,e,r,i),null}}async completeAsyncIterableValue(e,r,n,i,o,s){let a=typeof i.key=="number"?void 0:pn(this.validatedExecutionArgs,r),c=!1,u=[],l=o[Symbol.asyncIterator](),f=0,m;try{for(;!(a?.initialCount===f&&this.handleStream(f,i,{handle:l,isAsync:!0},a,n,e));){let T=Ee(i,f,void 0);try{m=await l.next()}catch(R){throw Zi(R,Je(r),ke(i))}if(this.aborted||m.done)break;let y=m.value;this.completeMaybePromisedListItemValue(y,u,e,r,n,T,s)&&(c=!0),f++}}catch(T){throw this.sharedExecutionContext.asyncWorkTracker.add(eo(l)),c&&this.sharedExecutionContext.asyncWorkTracker.addValues(u),T}if(this.aborted)throw m?.done||this.sharedExecutionContext.asyncWorkTracker.add(eo(l)),new Error("Aborted!");return c?this.promiseAll(u):u}handleStream(e,r,n,i,o,s){return!1}completeListValue(e,r,n,i,o,s){let a=e.ofType;if(Qs(o))return this.completeAsyncIterableValue(a,r,n,i,o,s);if(!ce(o))throw new d(`Expected Iterable, but did not find one for field "${n.parentType}.${n.fieldName}".`);return this.completeIterableValue(a,r,n,i,o,s)}completeIterableValue(e,r,n,i,o,s){let a=typeof i.key=="number"?void 0:pn(this.validatedExecutionArgs,r),c=!1,u=[],l=0,f=o[Symbol.iterator]();try{for(;!(a?.initialCount===l&&this.handleStream(l,i,{handle:f},a,n,e));){let m=f.next();if(m.done)break;let T=m.value,y=Ee(i,l,void 0);this.completeMaybePromisedListItemValue(T,u,e,r,n,y,s)&&(c=!0),l++}}catch(m){let T=this.sharedExecutionContext.asyncWorkTracker;throw c&&T.addValues(u),T.addValues(Zs(f)),m}return c?this.promiseAll(u):u}completeMaybePromisedListItemValue(e,r,n,i,o,s,a){return pe(e)?(r.push(this.completePromisedListItemValue(e,n,i,o,s,a)),!0):!!this.completeListItemValue(e,r,n,i,o,s,a)}completeListItemValue(e,r,n,i,o,s,a){try{let c=this.completeValue(n,i,o,s,e,a);if(xe(c))return r.push(c.then(void 0,u=>(this.handleFieldError(u,n,i,s),null))),!0;r.push(c)}catch(c){this.handleFieldError(c,n,i,s),r.push(null)}return!1}async completePromisedListItemValue(e,r,n,i,o,s){try{let a=await e;if(this.aborted)throw new Error("Aborted!");let c=this.completeValue(r,n,i,o,a,s);return xe(c)&&(c=await c),c}catch(a){return this.handleFieldError(a,r,n,o),null}}completeLeafValue(e,r){let n=e.coerceOutputValue(r);if(n==null)throw new Error(`Expected \`${g(e)}.coerceOutputValue(${g(r)})\` to return non-nullable value, returned: ${g(n)}`);return n}completeAbstractValue(e,r,n,i,o,s){let a=this.validatedExecutionArgs,{schema:c,contextValue:u}=a,f=(e.resolveType??a.typeResolver)(o,u,n,e);return pe(f)?f.then(m=>{if(this.aborted)throw new Error("Aborted!");return this.completeObjectValue(this.ensureValidRuntimeType(m,c,e,r,n,o),r,n,i,o,s)}):this.completeObjectValue(this.ensureValidRuntimeType(f,c,e,r,n,o),r,n,i,o,s)}ensureValidRuntimeType(e,r,n,i,o,s){if(e==null)throw new d(`Abstract type "${n}" must resolve to an Object type at runtime for field "${o.parentType}.${o.fieldName}". Either the "${n}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`,{nodes:Je(i)});if(typeof e!="string")throw new d(`Abstract type "${n}" must resolve to an Object type at runtime for field "${o.parentType}.${o.fieldName}" with value ${g(s)}, received "${g(e)}", which is not a valid Object type name.`);let a=r.getType(e);if(a==null)throw new d(`Abstract type "${n}" was resolved to a type "${e}" that does not exist inside the schema.`,{nodes:Je(i)});if(!L(a))throw new d(`Abstract type "${n}" was resolved to a non-object type "${e}".`,{nodes:Je(i)});if(!r.isSubType(n,a))throw new d(`Runtime Object type "${a}" is not a possible type for "${n}".`,{nodes:Je(i)});return a}completeObjectValue(e,r,n,i,o,s){if(e.isTypeOf){let a=e.isTypeOf(o,this.validatedExecutionArgs.contextValue,n);if(pe(a))return a.then(c=>{if(this.aborted)throw new Error("Aborted!");if(!c)throw this.invalidReturnTypeError(e,o,r);return this.collectAndExecuteSubfields(e,r,i,o,s)});if(!a)throw this.invalidReturnTypeError(e,o,r)}return this.collectAndExecuteSubfields(e,r,i,o,s)}invalidReturnTypeError(e,r,n){return new d(`Expected value of type "${e}" but got: ${g(r)}.`,{nodes:Je(n)})}collectAndExecuteSubfields(e,r,n,i,o){let{groupedFieldSet:s,newDeferUsages:a}=kp(this.validatedExecutionArgs,e,r);return this.executeCollectedSubfields(e,i,n,s,a,o)}executeCollectedSubfields(e,r,n,i,o,s){return this.executeFields(e,r,n,i,void 0)}};function Je(t){return t.map(e=>e.node)}var ro="Executing this GraphQL operation would unexpectedly produce multiple payloads (due to @defer or @stream directive)",fn=class extends ln{executeCollectedRootFields(e,r,n,i,o){if(o.length>0){this.validatedExecutionArgs.operation.operation===k.SUBSCRIPTION&&O(!1,"`@defer` directive not supported on subscription operations. Disable `@defer` by setting the `if` argument to `false`.");let s=new Error(ro);throw this.abort(s),s}return this.executeRootGroupedFieldSet(e,r,n,i,void 0)}executeCollectedSubfields(e,r,n,i,o){if(o.length>0){this.validatedExecutionArgs.operation.operation===k.SUBSCRIPTION&&O(!1,"`@defer` directive not supported on subscription operations. Disable `@defer` by setting the `if` argument to `false`.");let s=new Error(ro);throw this.abort(s),s}return this.executeFields(e,r,n,i,void 0)}completeListValue(e,r,n,i,o,s){if(pn(this.validatedExecutionArgs,r)!==void 0){this.validatedExecutionArgs.operation.operation===k.SUBSCRIPTION&&O(!1,"`@stream` directive not supported on subscription operations. Disable `@stream` by setting the `if` argument to `false`.");let c=new Error(ro);throw this.abort(c),c}return super.completeListValue(e,r,n,i,o,s)}};var Mp="The provided schema unexpectedly contains experimental directives (@defer or @stream). These directives may only be utilized if experimental execution features are explicitly enabled.";function mn(t){return ve(Jn)?Dt(Jn,Vp(t),()=>na(t)):na(t)}function Vp(t){let e,r=()=>(e===void 0&&(e=js(t.document,t.operationName)),e);return{schema:t.schema,document:t.document,rawVariableValues:t.variableValues,get operationName(){return t.operationName??r()?.name?.value},get operationType(){return r()?.operation}}}function na(t){if(t.schema.getDirective("defer")||t.schema.getDirective("stream"))throw new Error(Mp);let e=io(t);return"schema"in e?no(e):{errors:e}}function no(t){return new fn(t).executeRootSelectionSet()}function io(t){let{schema:e,document:r,rootValue:n,contextValue:i,variableValues:o,operationName:s,fieldResolver:a,typeResolver:c,subscribeFieldResolver:u,abortSignal:l,enableEarlyExecution:f,hooks:m,options:T}=t;_t(e);let y,R=Object.create(null),v=Object.create(null),w=[];for(let re of r.definitions)switch(re.kind){case p.OPERATION_DEFINITION:if(s==null){if(y!==void 0)return[new d("Must provide operation name if query contains multiple operations.")];y=re}else re.name?.value===s&&(y=re);break;case p.FRAGMENT_DEFINITION:{R[re.name.value]=re;let Ro;if(re.variableDefinitions){let So=Object.create(null);for(let Pa of re.variableDefinitions){let Tr=tn(e,Pa);if(Tr instanceof d){w.push(Tr);continue}So[Tr.name]=Tr}Ro=So}v[re.name.value]={definition:re,variableSignatures:Ro};break}default:}if(!y)return s!=null?[new d(`Unknown operation named "${s}".`)]:[new d("Must provide an operation.")];if(w.length>0)return w;let j=y.variableDefinitions??[],G=t.hideSuggestions??!1,B=o??{},ae={maxErrors:T?.maxCoercionErrors??50,hideSuggestions:G},Me=gs,Ve=ve(Me)?Dt(Me,{schema:e,document:r,operation:y,rawVariableValues:o,operationName:y.name?.value,operationType:y.operation},()=>rn(e,j,B,ae)):rn(e,j,B,ae);if(Ve.errors)return Ve.errors;let Et=!y.directives?.find(re=>re.name.value===ps.name);return{schema:e,document:r,fragmentDefinitions:R,fragments:v,rootValue:n,contextValue:i,operation:y,variableValues:Ve.variableValues,fieldResolver:a??dn,typeResolver:c??oo,subscribeFieldResolver:u??dn,hideSuggestions:G,errorPropagation:Et,externalAbortSignal:l??void 0,enableEarlyExecution:f===!0,hooks:m??void 0,rawVariableValues:o}}var oo=function(t,e,r,n){if(Q(t)&&typeof t.__typename=="string")return t.__typename;let i=r.schema.getPossibleTypes(n),o=[];try{for(let s=0;s<i.length;s++){let a=i[s];if(a.isTypeOf){let c=a.isTypeOf(t,e,r);if(pe(c))o[s]=c;else if(c)return o.length&&r.getAsyncHelpers().track(o),a.name}}}catch(s){throw o.length&&r.getAsyncHelpers().track(o),s}if(o.length)return r.getAsyncHelpers().promiseAll(o).then(s=>{for(let a=0;a<s.length;a++)if(s[a])return i[a].name})},dn=function(t,e,r,n){if(Q(t)||typeof t=="function"){let i=t[n.fieldName];return typeof i=="function"?t[n.fieldName](e,r,n):i}};import{EMPTY as co,OperationOutcomeError as M,Operator as ma,allOk as uo,applyPatch as ul,badRequest as Re,created as po,deepClone as lr,evalFhirPath as lo,fhirpathPatchTypedValue as pl,generateId as la,getSearchResourceTypes as yn,globalSchema as ha,matchesSearchRequest as ya,multipleMatches as fr,normalizeOperationOutcome as fa,notFound as dr,parseFhirPathPatchParameters as ll,parseSearchRequest as fl,preconditionFailed as dl,stringify as ml,toTypedValue as hl}from"@medplum/core";import{DEFAULT_MAX_SEARCH_COUNT as ao,LRUCache as Xp,OperationOutcomeError as oa,Operator as hn,PropertyType as so,SearchParameterType as zp,badRequest as sa,evalFhirPathTyped as Zp,flatMapFilter as ia,getReferenceString as el,getSearchParameter as aa,getSearchParameterDetails as tl,isResource as rl,toTypedValue as nl}from"@medplum/core";var il=new Xp(1e3),ol=5,sl=[so.canonical,so.uri];async function ca(t,e,r,n,i){let o=i?.maxDepth??ol,s=i?.maxResults??ao,a=r,c=!1,u=new Set(r.map(f=>`${f.resourceType}/${f.id}`)),l=0;for(;a.length>0;){if(l>=o||n.length>s)throw new Error(`Search with _(rev)include reached query scope limit: depth=${l}, results=${n.length}`);let f=ia(e.include,y=>!c||y.modifier===hn.ITERATE?al(t,y,a,i):void 0),m=ia(e.revInclude,y=>!c||y.modifier===hn.ITERATE?cl(t,y,a,i):void 0),T=(await Promise.all([...f,...m])).flat();a=[];for(let y of T){let R=y.resource;a.push(R);let v=`${R.resourceType}/${R.id}`;u.has(v)||n.push(y),u.add(v)}c=!0,l++}}async function al(t,e,r,n){let{resourceType:i,searchParam:o,targetType:s}=e,a=aa(i,o);if(!a)throw new oa(sa(`Invalid include parameter: ${i}:${o}`));let c=Zp(a.expression,r.map(nl),void 0,il),u=[],l=[];for(let y of c)y.type===so.Reference?u.push(y.value):sl.includes(y.type)&&l.push(y.value);let f=s?u.filter(y=>y.reference?.startsWith(s+"/")):u,m=(await t.readReferences(f)).filter(y=>rl(y)),T=s?a.target?.filter(y=>y===s):a.target;if(T?.length&&l.length>0){let y=n?.executeSearch??(w=>t.searchResources(w)),R=T.map(w=>y({resourceType:w,filters:[{code:"url",operator:hn.EQUALS,value:l.join(",")}],count:ao,offset:0})),v=new Set(l);for(let w of await Promise.all(R))for(let j of w){let G=pa(j);G&&v.has(G)&&m.push(j)}}return m.map(y=>ua(y,n))}async function cl(t,e,r,n){let{resourceType:i,searchParam:o,targetType:s}=e,a=aa(i,o);if(!a)throw new oa(sa(`Invalid include parameter: ${i}:${o}`));let c=tl(i,a).type===zp.CANONICAL,u=[];for(let m of r)if(!(s&&m.resourceType!==s))if(c){let T=pa(m);T&&u.push(T)}else{let T=el(m);T&&u.push(T)}return u.length===0?[]:(await(n?.executeSearch??(m=>t.searchResources(m)))({resourceType:i,filters:[{code:o,operator:hn.EQUALS,value:u.join(",")}],count:ao,offset:0})).map(m=>ua(m,n))}function ua(t,e){let r=e?.fullUrl?.(t.resourceType,t.id);return{...r?{fullUrl:r}:void 0,search:{mode:"include"},resource:t}}function pa(t){return"url"in t?t.url:void 0}var Tn={READER:"reader",WRITER:"writer"},fo=class{async searchOne(e){return(await this.search({...e,count:1})).entry?.[0]?.resource}async searchResources(e){return(await this.search(e)).entry?.map(n=>n.resource)??[]}async conditionalCreate(e,r,n){if(r.resourceType!==e.resourceType)throw new M(Re("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async i=>{let o=await i.searchResources(r);if(o.length===1){let a=o[0];if(!n?.assignedId&&e.id&&e.id!==a.id)throw new M(Re("Resource ID did not match resolved ID",e.resourceType+".id"));return{resource:o[0],outcome:uo}}else if(o.length>1)throw new M(fr);return{resource:await i.createResource(e,n),outcome:po}},{resourceTypes:yn(r),serializable:!0})}async conditionalUpdate(e,r,n){if(r.resourceType!==e.resourceType)throw new M(Re("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async i=>{let o=await i.searchResources(r);if(o.length===0){if(e.id&&!n?.assignedId)throw new M(Re("Cannot perform create as update with client-assigned ID",e.resourceType+".id"));return{resource:await i.createResource(e,n),outcome:po}}else if(o.length>1)throw new M(fr);let s=o[0];if(e.id&&e.id!==s.id)throw new M(Re("Resource ID did not match resolved ID",e.resourceType+".id"));return{resource:await i.updateResource({...e,id:s.id},n),outcome:uo}},{serializable:!0,resourceTypes:yn(r)})}async conditionalDelete(e){e.count=2,e.sortRules=void 0,await this.withTransaction(async r=>{let n=await r.searchResources(e);if(n.length>1)throw new M(fr);if(!n.length)return;let i=n[0];await r.deleteResource(i.resourceType,i.id)},{serializable:!0,resourceTypes:yn(e)})}async conditionalPatch(e,r,n){return e.count=2,e.sortRules=void 0,this.withTransaction(async i=>{let o=await i.searchResources(e);if(o.length>1)throw new M(fr);if(!o.length)throw new M(dr);let s=o[0];return i.patchResource(s.resourceType,s.id,r,n)},{serializable:!0,resourceTypes:yn(e)})}},da=class extends fo{constructor(){super();C(this,"resources");C(this,"history");C(this,"seeding");this.resources=new Map,this.history=new Map,this.seeding=!1}async withSeeding(r){if(this.seeding)return r();this.seeding=!0;let n=await r();return this.seeding=!1,n}clear(){this.resources.clear(),this.history.clear()}setMode(r){}createResourceSync(r,n,i=!1){let o=JSON.parse(ml(r)),s={...o,id:o.id??this.generateId(),meta:o.meta??{}};this.seeding||(s.meta.versionId&&delete s.meta.versionId,s.meta.lastUpdated&&delete s.meta.lastUpdated),s.meta.versionId??=la(),s.meta.lastUpdated??=new Date().toISOString();let{resourceType:a,id:c}=s,u=this.resources.get(a);if(u||(u=new Map,this.resources.set(a,u)),!i&&u.has(c))throw new M(Re("Assigned ID is already in use"));u.set(c,s);let l=this.history.get(a);l||(l=new Map,this.history.set(a,l));let f=l.get(c);return f||(f=[],l.set(c,f)),f.push(s),lr(s)}async createResource(r,n,i=!1){return this.createResourceSync(r,n,i)}generateId(){return la()}updateResource(r,n){if(!r.id)throw new M(Re("Missing id"));if(n?.ifMatch){let i=n.ifMatch,o=this.resources.get(r.resourceType)?.get(r.id);if(!o)throw new M(dr);if(o.meta?.versionId!==i)throw new M(dl)}return this.createResource(r,void 0,!0)}async patchResource(r,n,i,o){let s=await this.readResource(r,n);try{if(Array.isArray(i)){let a=ul(s,i).filter(Boolean);if(a.length>0)throw new M(Re(a.map(c=>c.message).join(`
|
|
53
|
-
`)))}else i.parameter&&pl(hl(s),ll(i))}catch(a){throw new M(fa(a))}return s.meta&&(delete s.meta.versionId,delete s.meta.lastUpdated),this.updateResource(s,o)}async readResource(r,n){let i=this.resources.get(r)?.get(n);if(!i)throw new M(dr);return lr(i)}async readReference(r){let n=r.reference?.split("/");if(n?.length!==2)throw new M(Re("Invalid reference"));return this.readResource(n[0],n[1])}async readReferences(r){return Promise.all(r.map(async n=>this.readReference(n).catch(i=>i instanceof M?i:new M(fa(i)))))}async readHistory(r,n){await this.readResource(r,n);let i=(this.history.get(r)?.get(n)??[]).reverse().map(o=>({resource:lr(o)}));return{resourceType:"Bundle",type:"history",...i.length?{entry:i}:void 0}}async readVersion(r,n,i){await this.readResource(r,n);let o=this.history.get(r)?.get(n)?.find(s=>s.meta?.versionId===i);if(!o)throw new M(dr);return lr(o)}searchSync(r){let{resourceType:n}=r,i=this.resources.get(n)??new Map,o=[],s=[];for(let l of r.filters??co){let f=yl(n,l);f?s.push(f):o.push(l)}let a=s.length?{...r,filters:o}:r,c=[];for(let l of i.values())ya(l,a)&&s.every(f=>Tl(this.resources,l,f))&&c.push(l);let u=c.map(l=>({search:{mode:"match"},resource:lr(l)}));for(let l of r.sortRules??co)u=u.sort((f,m)=>gl(f.resource,m.resource,l));return r.offset!==void 0&&(u=u.slice(r.offset)),r.count!==void 0&&(u=u.slice(0,r.count)),{resourceType:"Bundle",type:"searchset",entry:u.length?u:void 0,total:c.length}}async search(r){let n=this.searchSync(r);if((r.include||r.revInclude)&&n.entry?.length){let i=n.entry,o=i.map(s=>s.resource);await ca(this,r,o,i),n.entry=i}return n}async conditionalCreate(r,n,i){if(n.resourceType!==r.resourceType)throw new M(Re("Search type must match resource type for conditional update"));n.count=2,n.sortRules=void 0;let s=this.searchSync(n).entry?.map(c=>c.resource)??[];if(s.length===1){let c=s[0];if(!i?.assignedId&&r.id&&r.id!==c.id)throw new M(Re("Resource ID did not match resolved ID",r.resourceType+".id"));return{resource:s[0],outcome:uo}}else if(s.length>1)throw new M(fr);return{resource:this.createResourceSync(r,i),outcome:po}}async searchByReference(r,n,i){r.filters??=[];let o={};for(let s of i){r.filters.push({code:n,operator:ma.EQUALS,value:s});let a=await this.search(r);o[s]=[];for(let c of a.entry??co)c.resource&&o[s].push(c.resource);r.filters.pop()}return o}async deleteResource(r,n){if(!this.resources.get(r)?.get(n))throw new M(dr);this.resources.get(r)?.delete(n)}withTransaction(r){return r(this)}};function yl(t,e){let r=e.code.indexOf(".");if(r<0||e.code.startsWith("_has:"))return;if(e.operator!==ma.EQUALS)throw new Error("MemoryRepository does not support this chained filter yet.");let n=e.code.slice(0,r),i=e.code.slice(r+1),o=n.indexOf(":"),s=o<0?n:n.slice(0,o),a=ha.types[t]?.searchParams?.[s];if(o===-1&&a?.target?.length!==1)throw new M(Re(`Unable to identify next resource type for search parameter: ${t}?${s}`));let c=o<0?a?.target?.[0]:n.slice(o+1);if(!(!a?.expression||!c))return{expression:a.expression,targetType:c,chained:fl(c,{[i]:e.value})}}function Tl(t,e,r){let n=lo(r.expression,e);for(let i of n){let[o,s]=i?.reference?.split("/")??[];if(o!==r.targetType||!s)continue;let a=t.get(o)?.get(s);if(a&&ya(a,r.chained))return!0}return!1}var gl=(t,e,r)=>{let i=ha.types[t.resourceType]?.searchParams?.[r.code]?.expression;if(!i)return 0;let o=JSON.stringify(lo(i,t)),s=JSON.stringify(lo(i,e));return o.localeCompare(s)*(r.descending?-1:1)};import{capitalize as _l,getDataType as va,isResourceType as Dl}from"@medplum/core";import{DEFAULT_MAX_SEARCH_COUNT as El,DEFAULT_SEARCH_COUNT as Il,getReferenceString as Nl,getSearchParameters as bl,Operator as vl,parseSearchRequest as Rl}from"@medplum/core";import Sl from"dataloader";var gn={base64Binary:N,boolean:V,canonical:N,code:N,date:N,dateTime:N,decimal:fe,id:Ie,instant:N,integer:fe,markdown:N,number:fe,oid:N,positiveInt:fe,string:N,time:N,unsignedInt:fe,uri:N,url:N,uuid:N,xhtml:N,"http://hl7.org/fhirpath/System.Boolean":V,"http://hl7.org/fhirpath/System.Date":N,"http://hl7.org/fhirpath/System.DateTime":N,"http://hl7.org/fhirpath/System.Decimal":fe,"http://hl7.org/fhirpath/System.Integer":fe,"http://hl7.org/fhirpath/System.String":N,"http://hl7.org/fhirpath/System.Time":N};function Ta(t,e,r){let n;if(e){let o=r._reference;delete r._reference,n={code:o,operator:vl.EQUALS,value:Nl(e)}}return r=Object.fromEntries(Object.entries(r).map(([o,s])=>[xl(o),s])),{searchRequest:Rl(t,r),referenceFilter:n}}function ga(t,e){let r=t.filters||[];t.filters=[e,...r]}function Ea(t,e,r){let{searchRequest:n,referenceFilter:i}=Ta(t,e,r);return i&&ga(n,i),n}function mo(t,e){t.count=Math.min(t.count??Il,e??El)}function xl(t){return t.startsWith("_")?t:t.replaceAll("_","-")}function ho(t){return t.replaceAll("-","_")}function Ol(t){return JSON.stringify(t,(r,n)=>n&&typeof n=="object"&&!Array.isArray(n)?Object.keys(n).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=n[o],i),{}):n)}async function En(t,e,r,n){if(r.searchCount++,r.config?.graphqlMaxSearches&&r.searchCount>r.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=n.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=Ta(o,t,e);mo(s,r.config?.graphqlMaxSearches);let c=r.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&ga(s,a),(await r.repo.search(s)).entry?.map(m=>m.resource);let u=Ol(s);return(r.searchDataLoaders[u]??=wl(r.repo,s,c)).load(a)}function wl(t,e,r){return new Sl(async n=>{let i=await t.searchByReference(e,n[0].code,n.map(o=>o.value));return n.map(o=>i[o.value])},{maxBatchSize:r,cacheKeyFn:n=>`${n.code} ${n.operator} ${n.value}`})}function mr(t){let e={_count:{type:se,description:"Specify how many elements to return from a repeating list."},_offset:{type:se,description:"Specify the offset to start at for a repeating element."},_sort:{type:N,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:N,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:N,description:"Select resources based on the last time they were changed."},_filter:{type:N,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."},_cursor:{type:N,description:"The _cursor parameter is used to retrieve the next page of results from a previous search."}},r=bl(t);if(r)for(let[n,i]of Object.entries(r))e[ho(n)]={type:N,description:i.description};return e}function yo(t,e){return t.fieldNodes.some(r=>r.selectionSet?.selections.some(n=>n.kind===p.FIELD&&n.name.value===e))}function Ia(t){return{resourceType:"OperationOutcome",issue:t.map(e=>({severity:"error",code:"invalid",details:{text:e.message}}))}}var Na={...gn},ba;function hr(t,e){let r=Na[t];return r||(r=Ll(t,e),Na[t]=r),r}function Ll(t,e){let r=va(t);return new Qe({name:t+e,description:r.description,fields:()=>Al(t,e)})}function Al(t,e){let r={};if(Dl(t)){let n={description:"The type of resource",type:N};r.resourceType=n}return Fl(t,r,e),r}function Fl(t,e,r){let n=va(t);for(let[i,o]of Object.entries(n.elements))for(let s of o.type)Cl(e,i,o,s,r)}function Cl(t,e,r,n,i){let o=n.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=r.type[0].code);let s={description:r.description,type:hr(o,i)};r.max>1&&(s.type=new P(new I(hr(o,i)))),r.min>0&&!e.endsWith("[x]")&&(s.type=new I(s.type));let a=e.split(".").pop().replace("[x]",_l(n.code));t[a]=s}function Ra(){return ba??=new Qe({name:"PatchOperationInput",description:"A JSON Patch operation as per RFC 6902",fields:{op:{type:new I(N),description:"The operation to perform"},path:{type:new I(N),description:"A JSON-Pointer"},value:{type:N,description:"The value to use within the operations. (May be any scalar, but GraphQL input types are limited.)"}}}),ba}import{capitalize as Sa,evalFhirPathTyped as kl,getDataType as xa,getResourceTypes as Oa,getSearchParameters as Pl,isLowerCase as Ml,isReference as Vl,isResourceTypeSchema as Ul,normalizeOperationOutcome as $l,OperationOutcomeError as Gl,toJsBoolean as Bl,toTypedValue as Ql,tryGetDataType as jl}from"@medplum/core";var Pt={...gn};function Tt(t){let e=Pt[t];return e||(e=To(t),Pt[t]=e),e}function To(t){if(t==="ResourceList")return new rt({name:"ResourceList",types:()=>Oa().map(Tt).filter(r=>!!r),resolveType:ef});let e=xa(t);return new H({name:t,description:e.description,fields:()=>ql(t)})}function ql(t){let e={};return Kl(t,e),Jl(t,e),e}function Kl(t,e){let r=xa(t);Ul(r)&&(e.resourceType={type:new I(N),description:"Resource Type"}),t==="Reference"&&(e.resource={description:"Reference",type:Tt("ResourceList"),resolve:Zl});for(let[n,i]of Object.entries(r.elements))for(let o of i.type)Yl(e,n,i,o)}function Yl(t,e,r,n){let i=n.code;(i==="Element"||i==="BackboneElement")&&(i=r.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:r.description,type:Xl(r,i,e),resolve:zl};r.max>1&&(o.args=Hl(i));let s=e.split(".").pop().replace("[x]",Sa(n.code));t[s]=o}function Hl(t){let e={_count:{type:se,description:"Specify how many elements to return from a repeating list."},_offset:{type:se,description:"Specify the offset to start at for a repeating element."}};if(!Ml(t.charAt(0))){e.fhirpath={type:N,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let r=jl(t);if(r?.elements)for(let[n,i]of Object.entries(r.elements))for(let o of i.type)Wl(e,n,i,o)}return e}function Wl(t,e,r,n){let i=n.code,o=e.replace("[x]",Sa(i));switch(i){case"canonical":case"code":case"id":case"oid":case"string":case"uri":case"url":case"uuid":case"http://hl7.org/fhirpath/System.String":t[o]={type:N,description:r.description};break}}function Jl(t,e){for(let r of Oa()){let n=Tt(r),i=Pl(r),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(t)&&(o[ho(a)]={value:a},s++);if(s>0){let a=new Ce({name:t+"_"+r+"_reference",values:o}),c=mr(r);c._reference={type:new I(a),description:`Specify which property to use for reverse lookup for ${r}`},e[r+"List"]={type:new P(n),args:c,resolve:En},e[r+"Connection"]={type:go(r,n),args:c,resolve:Eo}}}}function Xl(t,e,r){let n=Tt(e),i=t.max>1?new P(new I(n)):n;return t.min!==0&&!r.endsWith("[x]")&&(i=new I(i)),i}async function zl(t,e,r,n){let i=t?.[n.fieldName];if(!e||!i)return i;let{_offset:o,_count:s,fhirpath:a,...c}=e,u=i;for(let[l,f]of Object.entries(c))u=u.filter(m=>m[l]===f);return a&&(u=u.filter(l=>Bl(kl(a,[Ql(l)])))),o&&(u=u.slice(o)),s&&(u=u.slice(0,s)),u}async function Zl(t,e,r){if(Vl(t))try{return await r.dataLoader.load(t)}catch(n){throw new Gl($l(n),{cause:n})}}function ef(t){let e=t?.resourceType;if(e)return Tt(e).name}var uf=new sf,Io;async function Da(t,e,r,n){let{query:i,operationName:o,variables:s}=t.body;if(!i)return[Mt("Must provide query.")];let a;try{a=qr(i)}catch{return[Mt("GraphQL syntax error.")]}let c=ff(),u=[...kt,vf(r,t.config?.graphqlMaxDepth),Sf(r)],l=cn(c,a,u);if(l.length>0)return[Ia(l)];let f=pf(i);if(f&&!r.options?.introspectionEnabled)return[of];!n?.batch&&!lf(i)&&e.setMode(Tn.READER);let m=new cf(y=>e.readReferences(y),{cacheKeyFn:y=>y.reference??""}),T=f&&uf.get(i);if(!T){let y={repo:e,config:t.config,dataLoader:m,searchCount:0,searchDataLoaders:Object.create(null)};T=await mn({schema:c,document:a,contextValue:y,operationName:o,variableValues:s})}return[tf,T,{contentType:rf.JSON}]}function pf(t){return t.includes("query IntrospectionQuery")||t.includes("__schema")}function lf(t){return t.includes("mutation")}function ff(){return Io||(Io=df()),Io}function df(){for(let r of wa())Pt[r]=To(r);let t={},e={};for(let r of wa()){let n=Tt(r);t[r]={type:n,args:{id:{type:new I(Ie),description:r+" ID"}},resolve:Tf},t[r+"List"]={type:new P(n),args:mr(r),resolve:En},t[r+"Connection"]={type:go(r,n),args:mr(r),resolve:Eo},e[r+"Create"]={type:n,args:mf(r),resolve:gf},e[r+"Update"]={type:n,args:hf(r),resolve:Ef},e[r+"Patch"]={type:n,args:_f(r),resolve:Nf},e[r+"Delete"]={type:n,args:{id:{type:new I(Ie),description:r+" ID"}},resolve:If}}return new pt({query:new H({name:"QueryType",fields:t}),mutation:new H({name:"MutationType",fields:e})})}function mf(t){return{res:{type:new I(hr(t,"Create")),description:t+" Create"}}}function hf(t){return{id:{type:new I(Ie),description:t+" ID"},res:{type:new I(hr(t,"Update")),description:t+" Update"}}}function go(t,e){let r=t+"Connection",n=Pt[r];return n||(n=yf(t,e),Pt[r]=n),n}function yf(t,e){return new H({name:t+"Connection",fields:{count:{type:se},offset:{type:se},pageSize:{type:se},first:{type:N},previous:{type:N},next:{type:N},last:{type:N},edges:{type:new P(new H({name:t+"ConnectionEdge",fields:{mode:{type:N},score:{type:fe},resource:{type:e}}}))}}})}async function Eo(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-10),s=Ea(o,t,e);yo(n,"count")&&(s.total="accurate"),yo(n,"edges")||(s.count=0),mo(s,r.config?.graphqlMaxSearches);let a=await r.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??nf,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource})),next:wf(a)}}async function Tf(t,e,r,n){try{return await r.dataLoader.load({reference:`${n.fieldName}/${e.id}`})}catch(i){throw new yr(af(i),{cause:i})}}async function gf(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=e.res;if(s.resourceType!==o)throw new yr(Mt("Invalid resourceType"));return r.repo.createResource(_a(s))}async function Ef(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=e.res,a=e.id;if(s.resourceType!==o)throw new yr(Mt("Invalid resourceType"));if(a!==s.id)throw new yr(Mt("Invalid ID"));return r.repo.updateResource(_a(s))}async function If(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-6);await r.repo.deleteResource(o,e.id)}async function Nf(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-5),s=e.id,a=e.patch;if(!o||!s||!Array.isArray(a))throw new yr(Mt("Invalid patch arguments"));return r.repo.patchResource(o,s,a)}var bf=12,vf=(t,e=bf)=>r=>new No(r,t,e),No=class{constructor(e,r,n){C(this,"context");C(this,"maxDepth");C(this,"fragmentDepths");C(this,"router");this.context=e,this.router=r,this.fragmentDepths=Object.create(null),this.maxDepth=n}OperationDefinition(e){let r=this.getDepth(...e.selectionSet.selections);r.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:r.depth,limit:this.maxDepth,query:e.loc?.source?.body})}getDepth(...e){let r={depth:-1};for(let n of e){let i={depth:0};if(n.kind===p.FIELD)n.selectionSet?.selections?(i=this.getDepth(...n.selectionSet.selections),i.depth+=1):i={depth:0,node:n};else if(n.kind===p.FRAGMENT_SPREAD){let o=n.name.value,s=this.context.getFragment(o),a=this.fragmentDepths[o];a?i=a:s&&(i=this.getDepth(...s.selectionSet.selections),this.fragmentDepths[o]=i)}else n.kind===p.INLINE_FRAGMENT&&(i=this.getDepth(...n.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>r.depth&&(r=i)}return r}},Rf=1e4,Sf=(t,e)=>r=>new bo(r,t,e),bo=class{constructor(e,r,n){C(this,"context");C(this,"maxCost");C(this,"debug");C(this,"router");C(this,"fragmentCosts");this.context=e,this.maxCost=n?.maxCost??Rf,this.debug=n?.debug??!1,this.router=r,this.fragmentCosts=Object.create(null)}OperationDefinition(e){let r=0;for(let n of e.selectionSet.selections){let i=performance.now(),o=this.calculateCost(n);r+=o,this.log(n.kind,"node has final cost",o,"(",performance.now()-i,"ms)"),r>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:r,limit:this.maxCost,query:e.loc?.source?.body})}}calculateCost(...e){let r=0;for(let n of e){if(n.kind===p.FIELD&&n.selectionSet){let i=0,o=1;xf(n)?(this.log("Found search field",n.name.value),i=8,o=this.getCount(n.arguments)??20):Of(n)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...n.selectionSet.selections);s&&this.log("Field",n.name.value,"costs",s),r+=s}else if(n.kind===p.FRAGMENT_SPREAD){let i=n.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),r+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),r+=a}}else if(n.kind===p.INLINE_FRAGMENT){let i=this.calculateCost(...n.selectionSet.selections);this.log("Inline fragment on",n.typeCondition?.name.value,"costs",i),r+=i}if(r>this.maxCost)return r}return r}getCount(e){let r=e?.find(n=>n.name.value==="_count");if(r?.value.kind===p.INT)return Number.parseInt(r.value.value,10)}log(...e){this.debug&&console.log(...e)}};function xf(t){return t.name.value.endsWith("List")}function Of(t){return t.name.value==="resource"}function wf(t){let e=t.link?.find(r=>r.relation==="next")?.url;if(e)return new URL(e).searchParams.get("_cursor")||void 0}function _f(t){return{id:{type:new I(Ie),description:t+" ID"},patch:{type:new I(new P(new I(Ra()))),description:"Array of patch operations"}}}import{OperationOutcomeError as Df,badRequest as Lf}from"@medplum/core";var La=7e4,In=class{constructor(){C(this,"routes",[])}add(e,r,n,i){let o=r.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:e,path:o,handler:n,data:i})}find(e,r){let n=r.indexOf("?"),i=n>-1;if(i&&r.length-n-1>La)throw new Df(Lf(`Query string exceeds maximum length of ${La} characters`));let o=r.substring(0,i?n:r.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let u=Af(c,e,o);u>a&&(s=c,a=u)}if(s)return{handler:s.handler,path:o.join("/"),params:Ff(s,o),query:i?Cf(r):void 0,data:s.data}}};function Af(t,e,r){if(e!==t.method||r.length!==t.path.length)return-1;let n=0;for(let i=0;i<r.length;i++)if(!t.path[i].param){if(r[i]!==t.path[i].value)return-1;n++}return n}function Ff(t,e){let r=Object.create(null);for(let n=0;n<e.length;n++)t.path[n].param&&(r[t.path[n].value]=e[n]);return r}function Cf(t){let e=new URL(t,"https://example.com/"),r=Object.create(null);for(let[n,i]of e.searchParams){let o=r[n];o===void 0?r[n]=i:Array.isArray(o)?o.push(i):r[n]=[o,i]}return r}async function $f(t,e,r){let n=t.body;if(n.resourceType!=="Bundle")return[Pe("Not a bundle")];let i=await bn(t,e,r,n);return[Se,i]}async function Gf(t,e,r,n){vo(t,e,n);let{resourceType:i}=t.params,o=await e.search(gt(i,t.query));return[Se,o]}async function Bf(t,e,r,n){vo(t,e,n);let i=gt("MultipleTypes",t.query);if(!i.types||i.types.length===0)return[Pe("No types specified")];let o=await e.search(i);return[Se,o]}async function Qf(t,e,r,n){vo(t,e,n);let{resourceType:i}=t.params,o=t.body,s=await e.search(gt(i,o));return[Se,s]}function vo(t,e,r){!r?.batch&&t.config?.searchOnReader&&e.setMode(Tn.READER)}async function jf(t,e,r,n){let{resourceType:i}=t.params,o=t.body,s=!!n?.batch;if(t.query?._account&&typeof t.query._account=="string"&&(o.meta=o.meta||{},o.meta.account={reference:t.query._account}),t.headers?.["if-none-exist"]){let a=Uf(t.headers["if-none-exist"]),c=await e.conditionalCreate(o,gt(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return qf(i,o,e,{assignedId:s})}async function qf(t,e,r,n){if(t?.startsWith("$"))return[ka];if(e.resourceType!==t)return[Pe(`Incorrect resource type: expected ${t}, but found ${e.resourceType||"<EMPTY>"}`)];let i=await r.createResource(e,n);return[Mf,i]}async function Kf(t,e){let{resourceType:r,id:n}=t.params,i=await e.readResource(r,n);return[Se,i]}async function Yf(t,e){let{resourceType:r,id:n}=t.params,i=Ca(t.query,"_offset"),o=Ca(t.query,"_count"),s=await e.readHistory(r,n,{offset:i,limit:o});return[Se,s]}async function Hf(t,e){let{resourceType:r,id:n,vid:i}=t.params,o=await e.readVersion(r,n,i);return[Se,o]}async function Wf(t,e){let{resourceType:r,id:n}=t.params,i=t.body;return Jf(r,n,i,e,{ifMatch:Nn(t.headers?.["if-match"])})}async function Jf(t,e,r,n,i){if(r.resourceType!==t)return[Pe("Incorrect resource type")];if(r.id!==e)return[Pe("Incorrect resource ID")];let o=await n.updateResource(r,i);return[Se,o]}async function Xf(t,e,r,n){let{resourceType:i}=t.params,o=t.body,s=gt(i,t.query),a=await e.conditionalUpdate(o,s,{assignedId:n?.batch,ifMatch:Nn(t.headers?.["if-match"])});return[a.outcome,a.resource]}async function zf(t,e){let{resourceType:r,id:n}=t.params;return await e.deleteResource(r,n),[Se]}async function Zf(t,e){let{resourceType:r}=t.params,n=gt(r,t.query);return await e.conditionalDelete(n),[Se]}async function ed(t,e){let{resourceType:r,id:n}=t.params,i=t.body;if(!i)return[Pe("Empty patch body")];if(!Array.isArray(i)&&!Vf(i,"Parameters"))return[Pe("Invalid patch body")];let o=await e.patchResource(r,n,i,{ifMatch:Nn(t.headers?.["if-match"])});return[Se,o]}async function td(t,e){let{resourceType:r}=t.params,n=t.body;if(!n)return[Pe("Empty patch body")];if(!Array.isArray(n))return[Pe("Patch body must be an array")];let i=gt(r,t.query),o=await e.conditionalPatch(i,n,{ifMatch:Nn(t.headers?.["if-match"])});return[Se,o]}var Fa=class extends kf{constructor(r={}){super();C(this,"router",new In);C(this,"options");this.options=r,this.router.add("GET","",Bf,{interaction:"search-system"}),this.router.add("POST","",$f,{interaction:"batch"}),this.router.add("GET",":resourceType",Gf,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",Qf,{interaction:"search-type"}),this.router.add("POST",":resourceType",jf,{interaction:"create"}),this.router.add("GET",":resourceType/:id",Kf,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",Yf,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",Hf,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",Wf,{interaction:"update"}),this.router.add("PUT",":resourceType",Xf,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",zf,{interaction:"delete"}),this.router.add("DELETE",":resourceType",Zf,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",ed,{interaction:"patch"}),this.router.add("PATCH",":resourceType",td,{interaction:"patch"}),this.router.add("POST","$graphql",Da,{interaction:"operation"})}add(r,n,i,o){this.router.add(r,n,i,{interaction:o??"operation"})}find(r,n){return this.router.find(r,n)}async handleRequest(r,n){let i=r.url;if(r.pathname)throw new Pf(Pe("FhirRequest must specify url instead of pathname"));let o;try{o=this.find(r.method,i)}catch(l){return[Aa(l)]}if(!o)return[ka];let{handler:s,path:a,params:c,query:u}=o;r.params=c,r.pathname=a,u&&(r.query=u);try{return await s(r,n,this)}catch(l){return[Aa(l)]}}log(r,n,i){let o={type:r,message:n,data:i};this.dispatchEvent(o)}};function Nn(t){if(!t)return;let e=/"([^"]+)"/.exec(t);return e?e[1]:void 0}function Ca(t,e){let r=t[e],n;return Array.isArray(r)?n=r.at(-1):n=r,n?Number.parseInt(n,10):void 0}function eR(t,e,r){return{method:t,url:e,pathname:"",query:{},params:{},body:r}}export{gr as BatchProcessor,fo as FhirRepository,Fa as FhirRouter,La as MAX_QUERY_STRING_LENGTH,da as MemoryRepository,Tn as RepositoryMode,In as Router,ja as buildBatchResponseBundle,qf as createResourceImpl,ca as getExtraEntries,al as getSearchIncludeEntries,cl as getSearchRevIncludeEntries,eR as makeSimpleRequest,bn as processBatch,Jf as updateResourceImpl};
|
|
53
|
+
`)))}else i.parameter&&pl(hl(s),ll(i))}catch(a){throw new M(fa(a))}return s.meta&&(delete s.meta.versionId,delete s.meta.lastUpdated),this.updateResource(s,o)}async readResource(r,n){let i=this.resources.get(r)?.get(n);if(!i)throw new M(dr);return lr(i)}async readReference(r){let n=r.reference?.split("/");if(n?.length!==2)throw new M(Re("Invalid reference"));return this.readResource(n[0],n[1])}async readReferences(r){return Promise.all(r.map(async n=>this.readReference(n).catch(i=>i instanceof M?i:new M(fa(i)))))}async readHistory(r,n){await this.readResource(r,n);let i=(this.history.get(r)?.get(n)??[]).reverse().map(o=>({resource:lr(o)}));return{resourceType:"Bundle",type:"history",...i.length?{entry:i}:void 0}}async readVersion(r,n,i){await this.readResource(r,n);let o=this.history.get(r)?.get(n)?.find(s=>s.meta?.versionId===i);if(!o)throw new M(dr);return lr(o)}searchSync(r){let{resourceType:n}=r,i=this.resources.get(n)??new Map,o=[],s=[];for(let l of r.filters??co){let f=yl(n,l);f?s.push(f):o.push(l)}let a=s.length?{...r,filters:o}:r,c=[];for(let l of i.values())ya(l,a)&&s.every(f=>Tl(this.resources,l,f))&&c.push(l);let u=c.map(l=>({search:{mode:"match"},resource:lr(l)}));for(let l of r.sortRules??co)u=u.sort((f,m)=>gl(f.resource,m.resource,l));return r.offset!==void 0&&(u=u.slice(r.offset)),r.count!==void 0&&(u=u.slice(0,r.count)),{resourceType:"Bundle",type:"searchset",entry:u.length?u:void 0,total:c.length}}async search(r){let n=this.searchSync(r);if((r.include||r.revInclude)&&n.entry?.length){let i=n.entry,o=i.map(s=>s.resource);await ca(this,r,o,i),n.entry=i}return n}async conditionalCreate(r,n,i){if(n.resourceType!==r.resourceType)throw new M(Re("Search type must match resource type for conditional update"));n.count=2,n.sortRules=void 0;let s=this.searchSync(n).entry?.map(c=>c.resource)??[];if(s.length===1){let c=s[0];if(!i?.assignedId&&r.id&&r.id!==c.id)throw new M(Re("Resource ID did not match resolved ID",r.resourceType+".id"));return{resource:s[0],outcome:uo}}else if(s.length>1)throw new M(fr);return{resource:this.createResourceSync(r,i),outcome:po}}async searchByReference(r,n,i){r.filters??=[];let o={};for(let s of i){r.filters.push({code:n,operator:ma.EQUALS,value:s});let a=await this.search(r);o[s]=[];for(let c of a.entry??co)c.resource&&o[s].push(c.resource);r.filters.pop()}return o}async deleteResource(r,n){if(!this.resources.get(r)?.get(n))throw new M(dr);this.resources.get(r)?.delete(n)}withTransaction(r){return r(this)}};function yl(t,e){let r=e.code.indexOf(".");if(r<0||e.code.startsWith("_has:"))return;if(e.operator!==ma.EQUALS)throw new Error("MemoryRepository does not support this chained filter yet.");let n=e.code.slice(0,r),i=e.code.slice(r+1),o=n.indexOf(":"),s=o<0?n:n.slice(0,o),a=ha.types[t]?.searchParams?.[s];if(o===-1&&a?.target?.length!==1)throw new M(Re(`Unable to identify next resource type for search parameter: ${t}?${s}`));let c=o<0?a?.target?.[0]:n.slice(o+1);if(!(!a?.expression||!c))return{expression:a.expression,targetType:c,chained:fl(c,{[i]:e.value})}}function Tl(t,e,r){let n=lo(r.expression,e);for(let i of n){let[o,s]=i?.reference?.split("/")??[];if(o!==r.targetType||!s)continue;let a=t.get(o)?.get(s);if(a&&ya(a,r.chained))return!0}return!1}var gl=(t,e,r)=>{let i=ha.types[t.resourceType]?.searchParams?.[r.code]?.expression;if(!i)return 0;let o=JSON.stringify(lo(i,t)),s=JSON.stringify(lo(i,e));return o.localeCompare(s)*(r.descending?-1:1)};import{capitalize as _l,getDataType as va,isResourceType as Dl}from"@medplum/core";import{DEFAULT_MAX_SEARCH_COUNT as El,DEFAULT_SEARCH_COUNT as Il,getReferenceString as Nl,getSearchParameters as bl,Operator as vl,parseSearchRequest as Rl}from"@medplum/core";import Sl from"dataloader";var gn={base64Binary:N,boolean:V,canonical:N,code:N,date:N,dateTime:N,decimal:fe,id:Ie,instant:N,integer:fe,markdown:N,number:fe,oid:N,positiveInt:fe,string:N,time:N,unsignedInt:fe,uri:N,url:N,uuid:N,xhtml:N,"http://hl7.org/fhirpath/System.Boolean":V,"http://hl7.org/fhirpath/System.Date":N,"http://hl7.org/fhirpath/System.DateTime":N,"http://hl7.org/fhirpath/System.Decimal":fe,"http://hl7.org/fhirpath/System.Integer":fe,"http://hl7.org/fhirpath/System.String":N,"http://hl7.org/fhirpath/System.Time":N};function Ta(t,e,r){let n;if(e){let o=r._reference;delete r._reference,n={code:o,operator:vl.EQUALS,value:Nl(e)}}return r=Object.fromEntries(Object.entries(r).map(([o,s])=>[xl(o),s])),{searchRequest:Rl(t,r),referenceFilter:n}}function ga(t,e){let r=t.filters||[];t.filters=[e,...r]}function Ea(t,e,r){let{searchRequest:n,referenceFilter:i}=Ta(t,e,r);return i&&ga(n,i),n}function mo(t,e){t.count=Math.min(t.count??Il,e??El)}function xl(t){return t.startsWith("_")?t:t.replaceAll("_","-")}function ho(t){return t.replaceAll("-","_")}function Ol(t){return JSON.stringify(t,(r,n)=>n&&typeof n=="object"&&!Array.isArray(n)?Object.keys(n).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=n[o],i),{}):n)}async function En(t,e,r,n){if(r.searchCount++,r.config?.graphqlMaxSearches&&r.searchCount>r.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=n.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=Ta(o,t,e);mo(s,r.config?.graphqlMaxSearches);let c=r.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&ga(s,a),(await r.repo.search(s)).entry?.map(m=>m.resource);let u=Ol(s);return(r.searchDataLoaders[u]??=wl(r.repo,s,c)).load(a)}function wl(t,e,r){return new Sl(async n=>{let i=await t.searchByReference(e,n[0].code,n.map(o=>o.value));return n.map(o=>i[o.value])},{maxBatchSize:r,cacheKeyFn:n=>`${n.code} ${n.operator} ${n.value}`})}function mr(t){let e={_count:{type:se,description:"Specify how many elements to return from a repeating list."},_offset:{type:se,description:"Specify the offset to start at for a repeating element."},_sort:{type:N,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:N,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:N,description:"Select resources based on the last time they were changed."},_filter:{type:N,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."},_cursor:{type:N,description:"The _cursor parameter is used to retrieve the next page of results from a previous search."}},r=bl(t);if(r)for(let[n,i]of Object.entries(r))e[ho(n)]={type:N,description:i.description};return e}function yo(t,e){return t.fieldNodes.some(r=>r.selectionSet?.selections.some(n=>n.kind===p.FIELD&&n.name.value===e))}function Ia(t){return{resourceType:"OperationOutcome",issue:t.map(e=>({severity:"error",code:"invalid",details:{text:e.message}}))}}var Na={...gn},ba;function hr(t,e){let r=Na[t];return r||(r=Ll(t,e),Na[t]=r),r}function Ll(t,e){let r=va(t);return new Qe({name:t+e,description:r.description,fields:()=>Al(t,e)})}function Al(t,e){let r={};if(Dl(t)){let n={description:"The type of resource",type:N};r.resourceType=n}return Fl(t,r,e),r}function Fl(t,e,r){let n=va(t);for(let[i,o]of Object.entries(n.elements))for(let s of o.type)Cl(e,i,o,s,r)}function Cl(t,e,r,n,i){let o=n.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=r.type[0].code);let s={description:r.description,type:hr(o,i)};r.max>1&&(s.type=new P(new I(hr(o,i)))),r.min>0&&!e.endsWith("[x]")&&(s.type=new I(s.type));let a=e.split(".").pop().replace("[x]",_l(n.code));t[a]=s}function Ra(){return ba??=new Qe({name:"PatchOperationInput",description:"A JSON Patch operation as per RFC 6902",fields:{op:{type:new I(N),description:"The operation to perform"},path:{type:new I(N),description:"A JSON-Pointer"},value:{type:N,description:"The value to use within the operations. (May be any scalar, but GraphQL input types are limited.)"}}}),ba}import{capitalize as Sa,evalFhirPathTyped as kl,getDataType as xa,getResourceTypes as Oa,getSearchParameters as Pl,isLowerCase as Ml,isReference as Vl,isResourceTypeSchema as Ul,normalizeOperationOutcome as $l,OperationOutcomeError as Gl,toJsBoolean as Bl,toTypedValue as Ql,tryGetDataType as jl}from"@medplum/core";var Pt={...gn};function Tt(t){let e=Pt[t];return e||(e=To(t),Pt[t]=e),e}function To(t){if(t==="ResourceList")return new rt({name:"ResourceList",types:()=>Oa().map(Tt).filter(r=>!!r),resolveType:ef});let e=xa(t);return new H({name:t,description:e.description,fields:()=>ql(t)})}function ql(t){let e={};return Kl(t,e),Jl(t,e),e}function Kl(t,e){let r=xa(t);Ul(r)&&(e.resourceType={type:new I(N),description:"Resource Type"}),t==="Reference"&&(e.resource={description:"Reference",type:Tt("ResourceList"),resolve:Zl});for(let[n,i]of Object.entries(r.elements))for(let o of i.type)Yl(e,n,i,o)}function Yl(t,e,r,n){let i=n.code;(i==="Element"||i==="BackboneElement")&&(i=r.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:r.description,type:Xl(r,i,e),resolve:zl};r.max>1&&(o.args=Hl(i));let s=e.split(".").pop().replace("[x]",Sa(n.code));t[s]=o}function Hl(t){let e={_count:{type:se,description:"Specify how many elements to return from a repeating list."},_offset:{type:se,description:"Specify the offset to start at for a repeating element."}};if(!Ml(t.charAt(0))){e.fhirpath={type:N,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let r=jl(t);if(r?.elements)for(let[n,i]of Object.entries(r.elements))for(let o of i.type)Wl(e,n,i,o)}return e}function Wl(t,e,r,n){let i=n.code,o=e.replace("[x]",Sa(i));switch(i){case"canonical":case"code":case"id":case"oid":case"string":case"uri":case"url":case"uuid":case"http://hl7.org/fhirpath/System.String":t[o]={type:N,description:r.description};break}}function Jl(t,e){for(let r of Oa()){let n=Tt(r),i=Pl(r),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(t)&&(o[ho(a)]={value:a},s++);if(s>0){let a=new Ce({name:t+"_"+r+"_reference",values:o}),c=mr(r);c._reference={type:new I(a),description:`Specify which property to use for reverse lookup for ${r}`},e[r+"List"]={type:new P(n),args:c,resolve:En},e[r+"Connection"]={type:go(r,n),args:c,resolve:Eo}}}}function Xl(t,e,r){let n=Tt(e),i=t.max>1?new P(new I(n)):n;return t.min!==0&&!r.endsWith("[x]")&&(i=new I(i)),i}async function zl(t,e,r,n){let i=t?.[n.fieldName];if(!e||!i)return i;let{_offset:o,_count:s,fhirpath:a,...c}=e,u=i;for(let[l,f]of Object.entries(c))u=u.filter(m=>m[l]===f);return a&&(u=u.filter(l=>Bl(kl(a,[Ql(l)])))),o&&(u=u.slice(o)),s&&(u=u.slice(0,s)),u}async function Zl(t,e,r){if(Vl(t))try{return await r.dataLoader.load(t)}catch(n){throw new Gl($l(n),{cause:n})}}function ef(t){let e=t?.resourceType;if(e)return Tt(e).name}var uf=new sf,Io;async function Da(t,e,r,n){let{query:i,operationName:o,variables:s}=t.body;if(!i)return[Mt("Must provide query.")];let a;try{a=qr(i)}catch{return[Mt("GraphQL syntax error.")]}let c=df(),u=[...kt,Rf(r,t.config?.graphqlMaxDepth),xf(r)],l=cn(c,a,u);if(l.length>0)return[Ia(l)];let f=lf(i);if(f&&!r.options?.introspectionEnabled)return[of];!n?.batch&&!ff(i)&&e.setMode(Tn.READER);let m=new cf(y=>e.readReferences(y),{cacheKeyFn:y=>y.reference??""}),T=f&&uf.get(i);if(!T){let y={repo:e,config:t.config,dataLoader:m,searchCount:0,searchDataLoaders:Object.create(null)};T=await mn({schema:c,document:a,contextValue:y,operationName:o,variableValues:s})}return[tf,T,{contentType:rf.JSON}]}var pf=/query IntrospectionQuery|__schema|__type(?!name)/;function lf(t){return pf.test(t)}function ff(t){return t.includes("mutation")}function df(){return Io||(Io=mf()),Io}function mf(){for(let r of wa())Pt[r]=To(r);let t={},e={};for(let r of wa()){let n=Tt(r);t[r]={type:n,args:{id:{type:new I(Ie),description:r+" ID"}},resolve:gf},t[r+"List"]={type:new P(n),args:mr(r),resolve:En},t[r+"Connection"]={type:go(r,n),args:mr(r),resolve:Eo},e[r+"Create"]={type:n,args:hf(r),resolve:Ef},e[r+"Update"]={type:n,args:yf(r),resolve:If},e[r+"Patch"]={type:n,args:Df(r),resolve:bf},e[r+"Delete"]={type:n,args:{id:{type:new I(Ie),description:r+" ID"}},resolve:Nf}}return new pt({query:new H({name:"QueryType",fields:t}),mutation:new H({name:"MutationType",fields:e})})}function hf(t){return{res:{type:new I(hr(t,"Create")),description:t+" Create"}}}function yf(t){return{id:{type:new I(Ie),description:t+" ID"},res:{type:new I(hr(t,"Update")),description:t+" Update"}}}function go(t,e){let r=t+"Connection",n=Pt[r];return n||(n=Tf(t,e),Pt[r]=n),n}function Tf(t,e){return new H({name:t+"Connection",fields:{count:{type:se},offset:{type:se},pageSize:{type:se},first:{type:N},previous:{type:N},next:{type:N},last:{type:N},edges:{type:new P(new H({name:t+"ConnectionEdge",fields:{mode:{type:N},score:{type:fe},resource:{type:e}}}))}}})}async function Eo(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-10),s=Ea(o,t,e);yo(n,"count")&&(s.total="accurate"),yo(n,"edges")||(s.count=0),mo(s,r.config?.graphqlMaxSearches);let a=await r.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??nf,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource})),next:_f(a)}}async function gf(t,e,r,n){try{return await r.dataLoader.load({reference:`${n.fieldName}/${e.id}`})}catch(i){throw new yr(af(i),{cause:i})}}async function Ef(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=e.res;if(s.resourceType!==o)throw new yr(Mt("Invalid resourceType"));return r.repo.createResource(_a(s))}async function If(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=e.res,a=e.id;if(s.resourceType!==o)throw new yr(Mt("Invalid resourceType"));if(a!==s.id)throw new yr(Mt("Invalid ID"));return r.repo.updateResource(_a(s))}async function Nf(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-6);await r.repo.deleteResource(o,e.id)}async function bf(t,e,r,n){let i=n.fieldName,o=i.substring(0,i.length-5),s=e.id,a=e.patch;if(!o||!s||!Array.isArray(a))throw new yr(Mt("Invalid patch arguments"));return r.repo.patchResource(o,s,a)}var vf=12,Rf=(t,e=vf)=>r=>new No(r,t,e),No=class{constructor(e,r,n){C(this,"context");C(this,"maxDepth");C(this,"fragmentDepths");C(this,"router");this.context=e,this.router=r,this.fragmentDepths=Object.create(null),this.maxDepth=n}OperationDefinition(e){let r=this.getDepth(...e.selectionSet.selections);r.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:r.depth,limit:this.maxDepth,query:e.loc?.source?.body})}getDepth(...e){let r={depth:-1};for(let n of e){let i={depth:0};if(n.kind===p.FIELD)n.selectionSet?.selections?(i=this.getDepth(...n.selectionSet.selections),i.depth+=1):i={depth:0,node:n};else if(n.kind===p.FRAGMENT_SPREAD){let o=n.name.value,s=this.context.getFragment(o),a=this.fragmentDepths[o];a?i=a:s&&(i=this.getDepth(...s.selectionSet.selections),this.fragmentDepths[o]=i)}else n.kind===p.INLINE_FRAGMENT&&(i=this.getDepth(...n.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>r.depth&&(r=i)}return r}},Sf=1e4,xf=(t,e)=>r=>new bo(r,t,e),bo=class{constructor(e,r,n){C(this,"context");C(this,"maxCost");C(this,"debug");C(this,"router");C(this,"fragmentCosts");this.context=e,this.maxCost=n?.maxCost??Sf,this.debug=n?.debug??!1,this.router=r,this.fragmentCosts=Object.create(null)}OperationDefinition(e){let r=0;for(let n of e.selectionSet.selections){let i=performance.now(),o=this.calculateCost(n);r+=o,this.log(n.kind,"node has final cost",o,"(",performance.now()-i,"ms)"),r>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:r,limit:this.maxCost,query:e.loc?.source?.body})}}calculateCost(...e){let r=0;for(let n of e){if(n.kind===p.FIELD&&n.selectionSet){let i=0,o=1;Of(n)?(this.log("Found search field",n.name.value),i=8,o=this.getCount(n.arguments)??20):wf(n)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...n.selectionSet.selections);s&&this.log("Field",n.name.value,"costs",s),r+=s}else if(n.kind===p.FRAGMENT_SPREAD){let i=n.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),r+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),r+=a}}else if(n.kind===p.INLINE_FRAGMENT){let i=this.calculateCost(...n.selectionSet.selections);this.log("Inline fragment on",n.typeCondition?.name.value,"costs",i),r+=i}if(r>this.maxCost)return r}return r}getCount(e){let r=e?.find(n=>n.name.value==="_count");if(r?.value.kind===p.INT)return Number.parseInt(r.value.value,10)}log(...e){this.debug&&console.log(...e)}};function Of(t){return t.name.value.endsWith("List")}function wf(t){return t.name.value==="resource"}function _f(t){let e=t.link?.find(r=>r.relation==="next")?.url;if(e)return new URL(e).searchParams.get("_cursor")||void 0}function Df(t){return{id:{type:new I(Ie),description:t+" ID"},patch:{type:new I(new P(new I(Ra()))),description:"Array of patch operations"}}}import{OperationOutcomeError as Lf,badRequest as Af}from"@medplum/core";var La=7e4,In=class{constructor(){C(this,"routes",[])}add(e,r,n,i){let o=r.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:e,path:o,handler:n,data:i})}find(e,r){let n=r.indexOf("?"),i=n>-1;if(i&&r.length-n-1>La)throw new Lf(Af(`Query string exceeds maximum length of ${La} characters`));let o=r.substring(0,i?n:r.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let u=Ff(c,e,o);u>a&&(s=c,a=u)}if(s)return{handler:s.handler,path:o.join("/"),params:Cf(s,o),query:i?kf(r):void 0,data:s.data}}};function Ff(t,e,r){if(e!==t.method||r.length!==t.path.length)return-1;let n=0;for(let i=0;i<r.length;i++)if(!t.path[i].param){if(r[i]!==t.path[i].value)return-1;n++}return n}function Cf(t,e){let r=Object.create(null);for(let n=0;n<e.length;n++)t.path[n].param&&(r[t.path[n].value]=e[n]);return r}function kf(t){let e=new URL(t,"https://example.com/"),r=Object.create(null);for(let[n,i]of e.searchParams){let o=r[n];o===void 0?r[n]=i:Array.isArray(o)?o.push(i):r[n]=[o,i]}return r}async function Gf(t,e,r){let n=t.body;if(n.resourceType!=="Bundle")return[Pe("Not a bundle")];let i=await bn(t,e,r,n);return[Se,i]}async function Bf(t,e,r,n){vo(t,e,n);let{resourceType:i}=t.params,o=await e.search(gt(i,t.query));return[Se,o]}async function Qf(t,e,r,n){vo(t,e,n);let i=gt("MultipleTypes",t.query);if(!i.types||i.types.length===0)return[Pe("No types specified")];let o=await e.search(i);return[Se,o]}async function jf(t,e,r,n){vo(t,e,n);let{resourceType:i}=t.params,o=t.body,s=await e.search(gt(i,o));return[Se,s]}function vo(t,e,r){!r?.batch&&t.config?.searchOnReader&&e.setMode(Tn.READER)}async function qf(t,e,r,n){let{resourceType:i}=t.params,o=t.body,s=!!n?.batch;if(t.query?._account&&typeof t.query._account=="string"&&(o.meta=o.meta||{},o.meta.account={reference:t.query._account}),t.headers?.["if-none-exist"]){let a=$f(t.headers["if-none-exist"]),c=await e.conditionalCreate(o,gt(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return Kf(i,o,e,{assignedId:s})}async function Kf(t,e,r,n){if(t?.startsWith("$"))return[ka];if(e.resourceType!==t)return[Pe(`Incorrect resource type: expected ${t}, but found ${e.resourceType||"<EMPTY>"}`)];let i=await r.createResource(e,n);return[Vf,i]}async function Yf(t,e){let{resourceType:r,id:n}=t.params,i=await e.readResource(r,n);return[Se,i]}async function Hf(t,e){let{resourceType:r,id:n}=t.params,i=Ca(t.query,"_offset"),o=Ca(t.query,"_count"),s=await e.readHistory(r,n,{offset:i,limit:o});return[Se,s]}async function Wf(t,e){let{resourceType:r,id:n,vid:i}=t.params,o=await e.readVersion(r,n,i);return[Se,o]}async function Jf(t,e){let{resourceType:r,id:n}=t.params,i=t.body;return Xf(r,n,i,e,{ifMatch:Nn(t.headers?.["if-match"])})}async function Xf(t,e,r,n,i){if(r.resourceType!==t)return[Pe("Incorrect resource type")];if(r.id!==e)return[Pe("Incorrect resource ID")];let o=await n.updateResource(r,i);return[Se,o]}async function zf(t,e,r,n){let{resourceType:i}=t.params,o=t.body,s=gt(i,t.query),a=await e.conditionalUpdate(o,s,{assignedId:n?.batch,ifMatch:Nn(t.headers?.["if-match"])});return[a.outcome,a.resource]}async function Zf(t,e){let{resourceType:r,id:n}=t.params;return await e.deleteResource(r,n),[Se]}async function ed(t,e){let{resourceType:r}=t.params,n=gt(r,t.query);return await e.conditionalDelete(n),[Se]}async function td(t,e){let{resourceType:r,id:n}=t.params,i=t.body;if(!i)return[Pe("Empty patch body")];if(!Array.isArray(i)&&!Uf(i,"Parameters"))return[Pe("Invalid patch body")];let o=await e.patchResource(r,n,i,{ifMatch:Nn(t.headers?.["if-match"])});return[Se,o]}async function rd(t,e){let{resourceType:r}=t.params,n=t.body;if(!n)return[Pe("Empty patch body")];if(!Array.isArray(n))return[Pe("Patch body must be an array")];let i=gt(r,t.query),o=await e.conditionalPatch(i,n,{ifMatch:Nn(t.headers?.["if-match"])});return[Se,o]}var Fa=class extends Pf{constructor(r={}){super();C(this,"router",new In);C(this,"options");this.options=r,this.router.add("GET","",Qf,{interaction:"search-system"}),this.router.add("POST","",Gf,{interaction:"batch"}),this.router.add("GET",":resourceType",Bf,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",jf,{interaction:"search-type"}),this.router.add("POST",":resourceType",qf,{interaction:"create"}),this.router.add("GET",":resourceType/:id",Yf,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",Hf,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",Wf,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",Jf,{interaction:"update"}),this.router.add("PUT",":resourceType",zf,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",Zf,{interaction:"delete"}),this.router.add("DELETE",":resourceType",ed,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",td,{interaction:"patch"}),this.router.add("PATCH",":resourceType",rd,{interaction:"patch"}),this.router.add("POST","$graphql",Da,{interaction:"operation"})}add(r,n,i,o){this.router.add(r,n,i,{interaction:o??"operation"})}find(r,n){return this.router.find(r,n)}async handleRequest(r,n){let i=r.url;if(r.pathname)throw new Mf(Pe("FhirRequest must specify url instead of pathname"));let o;try{o=this.find(r.method,i)}catch(l){return[Aa(l)]}if(!o)return[ka];let{handler:s,path:a,params:c,query:u}=o;r.params=c,r.pathname=a,u&&(r.query=u);try{return await s(r,n,this)}catch(l){return[Aa(l)]}}log(r,n,i){let o={type:r,message:n,data:i};this.dispatchEvent(o)}};function Nn(t){if(!t)return;let e=/"([^"]+)"/.exec(t);return e?e[1]:void 0}function Ca(t,e){let r=t[e],n;return Array.isArray(r)?n=r.at(-1):n=r,n?Number.parseInt(n,10):void 0}function tR(t,e,r){return{method:t,url:e,pathname:"",query:{},params:{},body:r}}export{gr as BatchProcessor,fo as FhirRepository,Fa as FhirRouter,La as MAX_QUERY_STRING_LENGTH,da as MemoryRepository,Tn as RepositoryMode,In as Router,ja as buildBatchResponseBundle,Kf as createResourceImpl,ca as getExtraEntries,al as getSearchIncludeEntries,cl as getSearchRevIncludeEntries,tR as makeSimpleRequest,bn as processBatch,Xf as updateResourceImpl};
|
|
54
54
|
//# sourceMappingURL=index.mjs.map
|