@medplum/fhir-router 3.2.19 → 3.2.21
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 +7 -7
- package/dist/cjs/index.cjs.map +2 -2
- package/dist/cjs/index.d.ts +5 -2
- package/dist/esm/index.d.ts +5 -2
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +4 -4
package/dist/cjs/index.d.ts
CHANGED
|
@@ -200,13 +200,16 @@ export declare type FhirRequest = {
|
|
|
200
200
|
export declare type FhirRequestConfig = {
|
|
201
201
|
graphqlBatchedSearchSize?: number;
|
|
202
202
|
graphqlMaxDepth?: number;
|
|
203
|
-
graphqlMaxPageSize?: number;
|
|
204
203
|
graphqlMaxSearches?: number;
|
|
205
204
|
searchOnReader?: boolean;
|
|
206
205
|
transactions?: boolean;
|
|
207
206
|
};
|
|
208
207
|
|
|
209
|
-
export declare type FhirResponse = [OperationOutcome] | [OperationOutcome, Resource];
|
|
208
|
+
export declare type FhirResponse = [OperationOutcome] | [OperationOutcome, Resource] | [OperationOutcome, Resource, FhirResponseOptions];
|
|
209
|
+
|
|
210
|
+
export declare type FhirResponseOptions = {
|
|
211
|
+
contentType?: string;
|
|
212
|
+
};
|
|
210
213
|
|
|
211
214
|
export declare type FhirRouteHandler = (req: FhirRequest, repo: FhirRepository, router: FhirRouter, options?: FhirRouteOptions) => Promise<FhirResponse>;
|
|
212
215
|
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -200,13 +200,16 @@ export declare type FhirRequest = {
|
|
|
200
200
|
export declare type FhirRequestConfig = {
|
|
201
201
|
graphqlBatchedSearchSize?: number;
|
|
202
202
|
graphqlMaxDepth?: number;
|
|
203
|
-
graphqlMaxPageSize?: number;
|
|
204
203
|
graphqlMaxSearches?: number;
|
|
205
204
|
searchOnReader?: boolean;
|
|
206
205
|
transactions?: boolean;
|
|
207
206
|
};
|
|
208
207
|
|
|
209
|
-
export declare type FhirResponse = [OperationOutcome] | [OperationOutcome, Resource];
|
|
208
|
+
export declare type FhirResponse = [OperationOutcome] | [OperationOutcome, Resource] | [OperationOutcome, Resource, FhirResponseOptions];
|
|
209
|
+
|
|
210
|
+
export declare type FhirResponseOptions = {
|
|
211
|
+
contentType?: string;
|
|
212
|
+
};
|
|
210
213
|
|
|
211
214
|
export declare type FhirRouteHandler = (req: FhirRequest, repo: FhirRepository, router: FhirRouter, options?: FhirRouteOptions) => Promise<FhirResponse>;
|
|
212
215
|
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{EventTarget as
|
|
1
|
+
import{EventTarget as xc,OperationOutcomeError as Lc,allOk as ge,badRequest as _e,created as wc,normalizeOperationOutcome as Dc,notFound as Ac,parseSearchRequest as st,singularize as Fc}from"@medplum/core";import{badRequest as X,getReferenceString as at,getStatus as yo,isOk as ci,OperationOutcomeError as G,parseSearchRequest as oi,normalizeOperationOutcome as To,notFound as si}from"@medplum/core";var go=50,Eo=8,vo=/urn(:|%3A)uuid(:|%3A)[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/,ai="urn:uuid";async function ui(e,t,n,r){return new wn(n,t,r,e).run()}var wn=class{constructor(t,n,r,i){this.router=t;this.repo=n;this.bundle=r;this.req=i;this.resolvedIdentities=Object.create(null)}async run(){let t=this.bundle.type;if(t!=="batch"&&t!=="transaction")throw new G(X("Unrecognized bundle type: "+t));let n=new Array(this.bundle.entry?.length??0),r=await this.preprocessBundle(n);if(!this.isTransaction())return this.processBatch(r,n);if(r.updates>go)throw new G(X("Transaction contains more update operations than allowed"));if(r.requiresStrongTransaction&&n.length>Eo)throw new G(X("Transaction requires strict isolation but has too many entries"));return this.repo.withTransaction(()=>this.processBatch(r,n),{serializable:r.requiresStrongTransaction})}async preprocessBundle(t){let n=this.bundle.entry;if(!n?.length)throw new G(X("Missing bundle entries"));let r={transaction:[],batch:[],delete:[],create:[],update:[],patch:[],operation:[],"search-system":[],"search-type":[],read:[],vread:[],"history-system":[],"history-type":[],"history-instance":[]},i=new Set,o=!1,s=0;for(let c=0;c<n.length;c++){let p=n[c];if(!p.request?.method){t[c]=At(X("Missing Bundle entry request method",`Bundle.entry[${c}].request.method`));continue}let d=await this.preprocessEntry(p,c,i);if(d){if(!this.isTransaction()){t[c]=At(d);continue}throw new G(d)}let T=this.getRouteForEntry(p)?.data?.interaction;if(!T||!r[T])throw new G(X(`Invalid REST interaction in batch: ${p.request?.method} ${p.request?.url}`));T==="create"&&p.request?.ifNoneExist?o=!0:T==="update"?(p.request?.url.includes("?")&&(o=!0),s++):T==="delete"&&p.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}}async preprocessEntry(t,n,r){if(!t.request?.url)return X("Missing Bundle entry request URL",`Bundle.entry[${n}].request.url`);let i;try{i=await this.resolveIdentity(t,`Bundle.entry[${n}]`)}catch(o){if(o instanceof G)return o.outcome;throw o}if(i&&(this.resolvedIdentities[i.placeholder]=i.reference,this.isTransaction())){if(r.has(i.reference))throw new G(X("Duplicate resource identity found in Bundle"));r.add(i.reference)}}async resolveIdentity(t,n){let i=this.getRouteForEntry(t)?.data?.interaction;if(!i)throw new G(si);switch(i){case"create":return this.resolveCreateIdentity(t);case"delete":case"update":case"patch":return this.resolveModificationIdentity(t,n);default:return}}getRouteForEntry(t){return this.router.find(t.request?.method,t.request?.url??"")}async resolveCreateIdentity(t){if(!t.fullUrl?.startsWith(ai))return;let n=t.fullUrl;if(t.request?.ifNoneExist){let r=await this.repo.searchResources(oi(t.request.url+"?"+t.request.ifNoneExist));if(r.length===1)return{placeholder:n,reference:at(r[0])}}if(t.resource)return t.resource.id=this.repo.generateId(),{placeholder:n,reference:at(t.resource)}}async resolveModificationIdentity(t,n){if(!t.fullUrl?.startsWith(ai))return;let r=t.fullUrl;if(t.request?.url?.includes("?")){let i=t.request.method,o=oi(t.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(t.resource){if(t.resource.id)throw new G(X("Cannot provide ID for create by update"));return t.resource.id=this.repo.generateId(),{placeholder:r,reference:at(t.resource)}}return;default:throw new G(X(`Conditional ${t.request.method} did not match any resources`,n+".request.url"))}if(a)throw new G(X(`Conditional ${t.request.method} matched multiple resources`,n+".request.url"));let c=at(s);return t.request.url=c,t.resource&&(t.resource.id=s.id),{placeholder:r,reference:c}}if(t.request?.url.includes("/"))return{placeholder:r,reference:t.request.url}}async processBatch(t,n){let r=this.bundle.type,i=this.bundle.entry;if(!i)throw new G(X("Missing bundle entry"));let o={type:"batch",bundleType:r,count:i.length,size:JSON.stringify(this.bundle).length};this.router.dispatchEvent(o);let s=0;for(let c of t.ordering){let p=i[c],l=this.rewriteIdsInObject(p);try{n[c]=await this.processBatchEntry(l)}catch(d){if(this.isTransaction())throw d;s++,n[c]=At(To(d));continue}}let a={type:"batch",bundleType:r,errors:s};return this.router.dispatchEvent(a),{resourceType:"Bundle",type:`${r}-response`,entry:n}}async processBatchEntry(t){let n=this.getRouteForEntry(t);if(!n)throw new G(si);let r=this.parseBatchRequest(t,n),[i,o]=await n.handler(r,this.repo,this.router,{batch:!0});if(!ci(i)&&this.isTransaction())throw new G(i);return At(i,o)}parseBatchRequest(t,n){let r=t.request,i=Object.create(null);r.ifNoneExist&&(i["if-none-exist"]=r.ifNoneExist),r.ifMatch&&(i["if-match"]=r.ifMatch),r.ifNoneMatch&&(i["if-none-match"]=r.ifNoneMatch),r.ifModifiedSince&&(i["if-modified-since"]=r.ifModifiedSince);let o;return r.method==="PATCH"?o=this.parsePatchBody(t):o=t.resource,{method:r.method,url:n?.query?r.url.slice(0,r.url.indexOf("?")):r.url,pathname:"",params:n?.params??Object.create(null),query:n?.query??Object.create(null),body:o,headers:i}}parsePatchBody(t){let n=t.resource,r;if(n?.resourceType==="Binary"){if(!n.data)throw new G(X("Missing entry.resource.data"));r=JSON.parse(Buffer.from(n.data,"base64").toString("utf8"))}else if(n?.resourceType==="Parameters"){if(n.parameter){r=[];for(let i of n.parameter)if(i.name==="operation"){let o=this.parsePatchParameter(i);r.push(o)}}}else throw new G(X("Patch entry must include a Binary or Parameters resource"));if(!Array.isArray(r))throw new G(X("Decoded PATCH body must be an array"));return this.rewriteIdsInArray(r)}parsePatchParameter(t){let n=t.part?.find(i=>i.name==="op")?.valueCode;if(!n)throw new G(X("PATCH Parameters missing op"));let r={op:n};switch(n){case"add":case"replace":case"test":for(let i of t.part)i.name==="path"?r.path=i.valueString:i.name==="value"&&(r.value=JSON.parse(i.valueString??""));break;case"copy":case"move":for(let i of t.part)i.name==="path"?r.path=i.valueString:i.name==="from"&&(r.from=i.valueString);break;case"remove":r.path=t.part?.find(i=>i.name==="path")?.valueString;break}return r}rewriteIds(t){return Array.isArray(t)?this.rewriteIdsInArray(t):typeof t=="string"?this.rewriteIdsInString(t):typeof t=="object"&&t!==null?this.rewriteIdsInObject(t):t}rewriteIdsInArray(t){return t.map(n=>this.rewriteIds(n))}rewriteIdsInObject(t){return Object.fromEntries(Object.entries(t).map(([n,r])=>[n,this.rewriteIds(r)]))}rewriteIdsInString(t){let n=vo.exec(t)?.[0];if(!n)return t;let r=n.replaceAll("%3A",":"),i=this.resolvedIdentities[r];return i?t.replaceAll(n,i):t}isTransaction(){return this.bundle.type==="transaction"&&!!this.req.config?.transactions}};function At(e,t){return{response:{outcome:e,status:yo(e).toString(),location:ci(e)&&t?.id?at(t):void 0},resource:t}}import{allOk as Za,badRequest as Dt,ContentType as ec,DEFAULT_SEARCH_COUNT as tc,forbidden as nc,getResourceTypes as fo,LRUCache as rc,normalizeOperationOutcome as ic,OperationOutcomeError as _n}from"@medplum/core";import oc from"dataloader";function R(e,t){if(!!!e)throw new Error(t)}function oe(e){return typeof e?.then=="function"}function j(e){return typeof e=="object"&&e!==null}function k(e,t){if(!!!e)throw new Error(t??"Unexpected invariant triggered.")}var No=/\r\n|[\n\r]/g;function je(e,t){let n=0,r=1;for(let i of e.body.matchAll(No)){if(typeof i.index=="number"||k(!1),i.index>=t)break;n=i.index+i[0].length,r+=1}return{line:r,column:t+1-n}}function Dn(e){return Ft(e.source,je(e.source,e.start))}function Ft(e,t){let n=e.locationOffset.column-1,r="".padStart(n)+e.body,i=t.line-1,o=e.locationOffset.line-1,s=t.line+o,a=t.line===1?n:0,c=t.column+a,p=`${e.name}:${s}:${c}
|
|
2
2
|
`,l=r.split(/\r\n|[\n\r]/g),d=l[i];if(d.length>120){let h=Math.floor(c/80),T=c%80,g=[];for(let A=0;A<d.length;A+=80)g.push(d.slice(A,A+80));return p+pi([[`${s} |`,g[0]],...g.slice(1,h+1).map(A=>["|",A]),["|","^".padStart(T)],["|",g[h+1]]])}return p+pi([[`${s-1} |`,l[i-1]],[`${s} |`,d],["|","^".padStart(c)],[`${s+1} |`,l[i+1]]])}function pi(e){let t=e.filter(([r,i])=>i!==void 0),n=Math.max(...t.map(([r])=>r.length));return t.map(([r,i])=>r.padStart(n)+(i?" "+i:"")).join(`
|
|
3
3
|
`)}function Io(e){let t=e[0];return t==null||"kind"in t||"length"in t?{nodes:t,source:e[1],positions:e[2],path:e[3],originalError:e[4],extensions:e[5]}:t}var f=class e extends Error{constructor(t,...n){var r,i,o;let{nodes:s,source:a,positions:c,path:p,originalError:l,extensions:d}=Io(n);super(t),this.name="GraphQLError",this.path=p??void 0,this.originalError=l??void 0,this.nodes=li(Array.isArray(s)?s:s?[s]:void 0);let h=li((r=this.nodes)===null||r===void 0?void 0:r.map(g=>g.loc).filter(g=>g!=null));this.source=a??(h==null||(i=h[0])===null||i===void 0?void 0:i.source),this.positions=c??h?.map(g=>g.start),this.locations=c&&a?c.map(g=>je(a,g)):h?.map(g=>je(g.source,g.start));let T=j(l?.extensions)?l?.extensions:void 0;this.extensions=(o=d??T)!==null&&o!==void 0?o: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}}),l!=null&&l.stack?Object.defineProperty(this,"stack",{value:l.stack,writable:!0,configurable:!0}):Error.captureStackTrace?Error.captureStackTrace(this,e):Object.defineProperty(this,"stack",{value:Error().stack,writable:!0,configurable:!0})}get[Symbol.toStringTag](){return"GraphQLError"}toString(){let t=this.message;if(this.nodes)for(let n of this.nodes)n.loc&&(t+=`
|
|
4
4
|
|
|
@@ -51,5 +51,5 @@ spurious results.`)}}return!1};var Ye=class{constructor(t,n="GraphQL request",r=
|
|
|
51
51
|
In some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.`,fields:()=>({name:{type:new I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},isRepeatable:{type:new I($),resolve:e=>e.isRepeatable},locations:{type:new I(new D(new I(qn))),resolve:e=>e.locations},args:{type:new I(new D(new I(It))),args:{includeDeprecated:{type:$,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(n=>n.deprecationReason==null)}}})}),qn=new Ee({name:"__DirectiveLocation",description:"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",values:{QUERY:{value:N.QUERY,description:"Location adjacent to a query operation."},MUTATION:{value:N.MUTATION,description:"Location adjacent to a mutation operation."},SUBSCRIPTION:{value:N.SUBSCRIPTION,description:"Location adjacent to a subscription operation."},FIELD:{value:N.FIELD,description:"Location adjacent to a field."},FRAGMENT_DEFINITION:{value:N.FRAGMENT_DEFINITION,description:"Location adjacent to a fragment definition."},FRAGMENT_SPREAD:{value:N.FRAGMENT_SPREAD,description:"Location adjacent to a fragment spread."},INLINE_FRAGMENT:{value:N.INLINE_FRAGMENT,description:"Location adjacent to an inline fragment."},VARIABLE_DEFINITION:{value:N.VARIABLE_DEFINITION,description:"Location adjacent to a variable definition."},SCHEMA:{value:N.SCHEMA,description:"Location adjacent to a schema definition."},SCALAR:{value:N.SCALAR,description:"Location adjacent to a scalar definition."},OBJECT:{value:N.OBJECT,description:"Location adjacent to an object type definition."},FIELD_DEFINITION:{value:N.FIELD_DEFINITION,description:"Location adjacent to a field definition."},ARGUMENT_DEFINITION:{value:N.ARGUMENT_DEFINITION,description:"Location adjacent to an argument definition."},INTERFACE:{value:N.INTERFACE,description:"Location adjacent to an interface definition."},UNION:{value:N.UNION,description:"Location adjacent to a union definition."},ENUM:{value:N.ENUM,description:"Location adjacent to an enum definition."},ENUM_VALUE:{value:N.ENUM_VALUE,description:"Location adjacent to an enum value definition."},INPUT_OBJECT:{value:N.INPUT_OBJECT,description:"Location adjacent to an input object type definition."},INPUT_FIELD_DEFINITION:{value:N.INPUT_FIELD_DEFINITION,description:"Location adjacent to an input object field definition."}}}),ue=new Q({name:"__Type",description:"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",fields:()=>({kind:{type:new I(Jn),resolve(e){if(me(e))return B.SCALAR;if(O(e))return B.OBJECT;if(_(e))return B.INTERFACE;if(Y(e))return B.UNION;if(U(e))return B.ENUM;if(L(e))return B.INPUT_OBJECT;if(w(e))return B.LIST;if(b(e))return B.NON_NULL;k(!1,`Unexpected type: "${y(e)}".`)}},name:{type:v,resolve:e=>"name"in e?e.name:void 0},description:{type:v,resolve:e=>"description"in e?e.description:void 0},specifiedByURL:{type:v,resolve:e=>"specifiedByURL"in e?e.specifiedByURL:void 0},fields:{type:new D(new I(Yn)),args:{includeDeprecated:{type:$,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(O(e)||_(e)){let n=Object.values(e.getFields());return t?n:n.filter(r=>r.deprecationReason==null)}}},interfaces:{type:new D(new I(ue)),resolve(e){if(O(e)||_(e))return e.getInterfaces()}},possibleTypes:{type:new D(new I(ue)),resolve(e,t,n,{schema:r}){if(ne(e))return r.getPossibleTypes(e)}},enumValues:{type:new D(new I(Hn)),args:{includeDeprecated:{type:$,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(U(e)){let n=e.getValues();return t?n:n.filter(r=>r.deprecationReason==null)}}},inputFields:{type:new D(new I(It)),args:{includeDeprecated:{type:$,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(L(e)){let n=Object.values(e.getFields());return t?n:n.filter(r=>r.deprecationReason==null)}}},ofType:{type:ue,resolve:e=>"ofType"in e?e.ofType:void 0},isOneOf:{type:$,resolve:e=>{if(L(e))return e.isOneOf}}})}),Yn=new Q({name:"__Field",description:"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",fields:()=>({name:{type:new I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},args:{type:new I(new D(new I(It))),args:{includeDeprecated:{type:$,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(n=>n.deprecationReason==null)}},type:{type:new I(ue),resolve:e=>e.type},isDeprecated:{type:new I($),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:v,resolve:e=>e.deprecationReason}})}),It=new Q({name:"__InputValue",description:"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",fields:()=>({name:{type:new I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},type:{type:new I(ue),resolve:e=>e.type},defaultValue:{type:v,description:"A GraphQL-formatted string representing the default value for this input value.",resolve(e){let{type:t,defaultValue:n}=e,r=tt(n,t);return r?x(r):null}},isDeprecated:{type:new I($),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:v,resolve:e=>e.deprecationReason}})}),Hn=new Q({name:"__EnumValue",description:"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",fields:()=>({name:{type:new I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},isDeprecated:{type:new I($),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:v,resolve:e=>e.deprecationReason}})}),B;(function(e){e.SCALAR="SCALAR",e.OBJECT="OBJECT",e.INTERFACE="INTERFACE",e.UNION="UNION",e.ENUM="ENUM",e.INPUT_OBJECT="INPUT_OBJECT",e.LIST="LIST",e.NON_NULL="NON_NULL"})(B||(B={}));var Jn=new Ee({name:"__TypeKind",description:"An enum describing what kind of type a given `__Type` is.",values:{SCALAR:{value:B.SCALAR,description:"Indicates this type is a scalar."},OBJECT:{value:B.OBJECT,description:"Indicates this type is an object. `fields` and `interfaces` are valid fields."},INTERFACE:{value:B.INTERFACE,description:"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields."},UNION:{value:B.UNION,description:"Indicates this type is a union. `possibleTypes` is a valid field."},ENUM:{value:B.ENUM,description:"Indicates this type is an enum. `enumValues` is a valid field."},INPUT_OBJECT:{value:B.INPUT_OBJECT,description:"Indicates this type is an input object. `inputFields` is a valid field."},LIST:{value:B.LIST,description:"Indicates this type is a list. `ofType` is a valid field."},NON_NULL:{value:B.NON_NULL,description:"Indicates this type is a non-null. `ofType` is a valid field."}}}),Fe={name:"__schema",type:new I(Nt),description:"Access the current type schema of this server.",args:[],resolve:(e,t,n,{schema:r})=>r,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},ke={name:"__type",type:ue,description:"Request the type information of a single type.",args:[{name:"name",description:void 0,type:new I(v),defaultValue:void 0,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0}],resolve:(e,{name:t},n,{schema:r})=>r.getType(t),deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},Ce={name:"__typename",type:new I(v),description:"The name of the current Object type at runtime.",args:[],resolve:(e,t,n,{parentType:r})=>r.name,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},Wt=Object.freeze([Nt,Bn,qn,ue,Yn,It,Hn,Jn]);function zn(e){return Wt.some(({name:t})=>e.name===t)}function Xn(e){return Z(e,Me)}function Zt(e){if(!Xn(e))throw new Error(`Expected ${y(e)} to be a GraphQL schema.`);return e}var Me=class{constructor(t){var n,r;this.__validationErrors=t.assumeValid===!0?[]:void 0,j(t)||R(!1,"Must provide configuration object."),!t.types||Array.isArray(t.types)||R(!1,`"types" must be Array if provided but got: ${y(t.types)}.`),!t.directives||Array.isArray(t.directives)||R(!1,`"directives" must be Array if provided but got: ${y(t.directives)}.`),this.description=t.description,this.extensions=te(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._queryType=t.query,this._mutationType=t.mutation,this._subscriptionType=t.subscription,this._directives=(r=t.directives)!==null&&r!==void 0?r:ye;let i=new Set(t.types);if(t.types!=null)for(let o of t.types)i.delete(o),Te(o,i);this._queryType!=null&&Te(this._queryType,i),this._mutationType!=null&&Te(this._mutationType,i),this._subscriptionType!=null&&Te(this._subscriptionType,i);for(let o of this._directives)if(vt(o))for(let s of o.args)Te(s.type,i);Te(Nt,i),this._typeMap=Object.create(null),this._subTypeMap=Object.create(null),this._implementationsMap=Object.create(null);for(let o of i){if(o==null)continue;let s=o.name;if(s||R(!1,"One of the provided types for building the Schema is missing a name."),this._typeMap[s]!==void 0)throw new Error(`Schema must contain uniquely named types but contains multiple types named "${s}".`);if(this._typeMap[s]=o,_(o)){for(let a of o.getInterfaces())if(_(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.interfaces.push(o)}}else if(O(o)){for(let a of o.getInterfaces())if(_(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.objects.push(o)}}}}get[Symbol.toStringTag](){return"GraphQLSchema"}getQueryType(){return this._queryType}getMutationType(){return this._mutationType}getSubscriptionType(){return this._subscriptionType}getRootType(t){switch(t){case F.QUERY:return this.getQueryType();case F.MUTATION:return this.getMutationType();case F.SUBSCRIPTION:return this.getSubscriptionType()}}getTypeMap(){return this._typeMap}getType(t){return this.getTypeMap()[t]}getPossibleTypes(t){return Y(t)?t.getTypes():this.getImplementations(t).objects}getImplementations(t){let n=this._implementationsMap[t.name];return n??{objects:[],interfaces:[]}}isSubType(t,n){let r=this._subTypeMap[t.name];if(r===void 0){if(r=Object.create(null),Y(t))for(let i of t.getTypes())r[i.name]=!0;else{let i=this.getImplementations(t);for(let o of i.objects)r[o.name]=!0;for(let o of i.interfaces)r[o.name]=!0}this._subTypeMap[t.name]=r}return r[n.name]!==void 0}getDirectives(){return this._directives}getDirective(t){return this.getDirectives().find(n=>n.name===t)}toConfig(){return{description:this.description,query:this.getQueryType(),mutation:this.getMutationType(),subscription:this.getSubscriptionType(),types:Object.values(this.getTypeMap()),directives:this.getDirectives(),extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes,assumeValid:this.__validationErrors!==void 0}}};function Te(e,t){let n=q(e);if(!t.has(n)){if(t.add(n),Y(n))for(let r of n.getTypes())Te(r,t);else if(O(n)||_(n)){for(let r of n.getInterfaces())Te(r,t);for(let r of Object.values(n.getFields())){Te(r.type,t);for(let i of r.args)Te(i.type,t)}}else if(L(n))for(let r of Object.values(n.getFields()))Te(r.type,t)}return t}function Ci(e){if(Zt(e),e.__validationErrors)return e.__validationErrors;let t=new Wn(e);Jo(t),zo(t),Xo(t);let n=t.getErrors();return e.__validationErrors=n,n}function Rt(e){let t=Ci(e);if(t.length!==0)throw new Error(t.map(n=>n.message).join(`
|
|
52
52
|
|
|
53
53
|
`))}var Wn=class{constructor(t){this._errors=[],this.schema=t}reportError(t,n){let r=Array.isArray(n)?n.filter(Boolean):n;this._errors.push(new f(t,{nodes:r}))}getErrors(){return this._errors}};function Jo(e){let t=e.schema,n=t.getQueryType();if(!n)e.reportError("Query root type must be provided.",t.astNode);else if(!O(n)){var r;e.reportError(`Query root type must be Object type, it cannot be ${y(n)}.`,(r=Kn(t,F.QUERY))!==null&&r!==void 0?r:n.astNode)}let i=t.getMutationType();if(i&&!O(i)){var o;e.reportError(`Mutation root type must be Object type if provided, it cannot be ${y(i)}.`,(o=Kn(t,F.MUTATION))!==null&&o!==void 0?o:i.astNode)}let s=t.getSubscriptionType();if(s&&!O(s)){var a;e.reportError(`Subscription root type must be Object type if provided, it cannot be ${y(s)}.`,(a=Kn(t,F.SUBSCRIPTION))!==null&&a!==void 0?a:s.astNode)}}function Kn(e,t){var n;return(n=[e.astNode,...e.extensionASTNodes].flatMap(r=>{var i;return(i=r?.operationTypes)!==null&&i!==void 0?i:[]}).find(r=>r.operation===t))===null||n===void 0?void 0:n.type}function zo(e){for(let n of e.schema.getDirectives()){if(!vt(n)){e.reportError(`Expected directive but got: ${y(n)}.`,n?.astNode);continue}Pe(e,n);for(let r of n.args)if(Pe(e,r),H(r.type)||e.reportError(`The type of @${n.name}(${r.name}:) must be Input Type but got: ${y(r.type)}.`,r.astNode),Ne(r)&&r.deprecationReason!=null){var t;e.reportError(`Required argument @${n.name}(${r.name}:) cannot be deprecated.`,[Zn(r.astNode),(t=r.astNode)===null||t===void 0?void 0:t.type])}}}function Pe(e,t){t.name.startsWith("__")&&e.reportError(`Name "${t.name}" must not begin with "__", which is reserved by GraphQL introspection.`,t.astNode)}function Xo(e){let t=rs(e),n=e.schema.getTypeMap();for(let r of Object.values(n)){if(!Bt(r)){e.reportError(`Expected GraphQL named type but got: ${y(r)}.`,r.astNode);continue}zn(r)||Pe(e,r),O(r)||_(r)?(Ai(e,r),Fi(e,r)):Y(r)?Zo(e,r):U(r)?es(e,r):L(r)&&(ts(e,r),t(r))}}function Ai(e,t){let n=Object.values(t.getFields());n.length===0&&e.reportError(`Type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let s of n){if(Pe(e,s),!ve(s.type)){var r;e.reportError(`The type of ${t.name}.${s.name} must be Output Type but got: ${y(s.type)}.`,(r=s.astNode)===null||r===void 0?void 0:r.type)}for(let a of s.args){let c=a.name;if(Pe(e,a),!H(a.type)){var i;e.reportError(`The type of ${t.name}.${s.name}(${c}:) must be Input Type but got: ${y(a.type)}.`,(i=a.astNode)===null||i===void 0?void 0:i.type)}if(Ne(a)&&a.deprecationReason!=null){var o;e.reportError(`Required argument ${t.name}.${s.name}(${c}:) cannot be deprecated.`,[Zn(a.astNode),(o=a.astNode)===null||o===void 0?void 0:o.type])}}}}function Fi(e,t){let n=Object.create(null);for(let r of t.getInterfaces()){if(!_(r)){e.reportError(`Type ${y(t)} must only implement Interface types, it cannot implement ${y(r)}.`,bt(t,r));continue}if(t===r){e.reportError(`Type ${t.name} cannot implement itself because it would create a circular reference.`,bt(t,r));continue}if(n[r.name]){e.reportError(`Type ${t.name} can only implement ${r.name} once.`,bt(t,r));continue}n[r.name]=!0,Wo(e,t,r),Ko(e,t,r)}}function Ko(e,t,n){let r=t.getFields();for(let c of Object.values(n.getFields())){let p=c.name,l=r[p];if(!l){e.reportError(`Interface field ${n.name}.${p} expected but ${t.name} does not provide it.`,[c.astNode,t.astNode,...t.extensionASTNodes]);continue}if(!Re(e.schema,l.type,c.type)){var i,o;e.reportError(`Interface field ${n.name}.${p} expects type ${y(c.type)} but ${t.name}.${p} is type ${y(l.type)}.`,[(i=c.astNode)===null||i===void 0?void 0:i.type,(o=l.astNode)===null||o===void 0?void 0:o.type])}for(let d of c.args){let h=d.name,T=l.args.find(g=>g.name===h);if(!T){e.reportError(`Interface field argument ${n.name}.${p}(${h}:) expected but ${t.name}.${p} does not provide it.`,[d.astNode,l.astNode]);continue}if(!Ht(d.type,T.type)){var s,a;e.reportError(`Interface field argument ${n.name}.${p}(${h}:) expects type ${y(d.type)} but ${t.name}.${p}(${h}:) is type ${y(T.type)}.`,[(s=d.astNode)===null||s===void 0?void 0:s.type,(a=T.astNode)===null||a===void 0?void 0:a.type])}}for(let d of l.args){let h=d.name;!c.args.find(g=>g.name===h)&&Ne(d)&&e.reportError(`Object field ${t.name}.${p} includes required argument ${h} that is missing from the Interface field ${n.name}.${p}.`,[d.astNode,c.astNode])}}}function Wo(e,t,n){let r=t.getInterfaces();for(let i of n.getInterfaces())r.includes(i)||e.reportError(i===t?`Type ${t.name} cannot implement ${n.name} because it would create a circular reference.`:`Type ${t.name} must implement ${i.name} because it is implemented by ${n.name}.`,[...bt(n,i),...bt(t,n)])}function Zo(e,t){let n=t.getTypes();n.length===0&&e.reportError(`Union type ${t.name} must define one or more member types.`,[t.astNode,...t.extensionASTNodes]);let r=Object.create(null);for(let i of n){if(r[i.name]){e.reportError(`Union type ${t.name} can only include type ${i.name} once.`,ki(t,i.name));continue}r[i.name]=!0,O(i)||e.reportError(`Union type ${t.name} can only include Object types, it cannot include ${y(i)}.`,ki(t,String(i)))}}function es(e,t){let n=t.getValues();n.length===0&&e.reportError(`Enum type ${t.name} must define one or more values.`,[t.astNode,...t.extensionASTNodes]);for(let r of n)Pe(e,r)}function ts(e,t){let n=Object.values(t.getFields());n.length===0&&e.reportError(`Input Object type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let o of n){if(Pe(e,o),!H(o.type)){var r;e.reportError(`The type of ${t.name}.${o.name} must be Input Type but got: ${y(o.type)}.`,(r=o.astNode)===null||r===void 0?void 0:r.type)}if(Ze(o)&&o.deprecationReason!=null){var i;e.reportError(`Required input field ${t.name}.${o.name} cannot be deprecated.`,[Zn(o.astNode),(i=o.astNode)===null||i===void 0?void 0:i.type])}t.isOneOf&&ns(t,o,e)}}function ns(e,t,n){if(b(t.type)){var r;n.reportError(`OneOf input field ${e.name}.${t.name} must be nullable.`,(r=t.astNode)===null||r===void 0?void 0:r.type)}t.defaultValue!==void 0&&n.reportError(`OneOf input field ${e.name}.${t.name} cannot have a default value.`,t.astNode)}function rs(e){let t=Object.create(null),n=[],r=Object.create(null);return i;function i(o){if(t[o.name])return;t[o.name]=!0,r[o.name]=n.length;let s=Object.values(o.getFields());for(let a of s)if(b(a.type)&&L(a.type.ofType)){let c=a.type.ofType,p=r[c.name];if(n.push(a),p===void 0)i(c);else{let l=n.slice(p),d=l.map(h=>h.name).join(".");e.reportError(`Cannot reference Input Object "${c.name}" within itself through a series of non-null fields: "${d}".`,l.map(h=>h.astNode))}n.pop()}r[o.name]=void 0}}function bt(e,t){let{astNode:n,extensionASTNodes:r}=e;return(n!=null?[n,...r]:r).flatMap(o=>{var s;return(s=o.interfaces)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t.name)}function ki(e,t){let{astNode:n,extensionASTNodes:r}=e;return(n!=null?[n,...r]:r).flatMap(o=>{var s;return(s=o.types)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t)}function Zn(e){var t;return e==null||(t=e.directives)===null||t===void 0?void 0:t.find(n=>n.name.value===Kt.name)}function C(e,t){switch(t.kind){case u.LIST_TYPE:{let n=C(e,t.type);return n&&new D(n)}case u.NON_NULL_TYPE:{let n=C(e,t.type);return n&&new I(n)}case u.NAMED_TYPE:return e.getType(t.name.value)}}var nt=class{constructor(t,n,r){this._schema=t,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._getFieldDef=r??is,n&&(H(n)&&this._inputTypeStack.push(n),se(n)&&this._parentTypeStack.push(n),ve(n)&&this._typeStack.push(n))}get[Symbol.toStringTag](){return"TypeInfo"}getType(){if(this._typeStack.length>0)return this._typeStack[this._typeStack.length-1]}getParentType(){if(this._parentTypeStack.length>0)return this._parentTypeStack[this._parentTypeStack.length-1]}getInputType(){if(this._inputTypeStack.length>0)return this._inputTypeStack[this._inputTypeStack.length-1]}getParentInputType(){if(this._inputTypeStack.length>1)return this._inputTypeStack[this._inputTypeStack.length-2]}getFieldDef(){if(this._fieldDefStack.length>0)return this._fieldDefStack[this._fieldDefStack.length-1]}getDefaultValue(){if(this._defaultValueStack.length>0)return this._defaultValueStack[this._defaultValueStack.length-1]}getDirective(){return this._directive}getArgument(){return this._argument}getEnumValue(){return this._enumValue}enter(t){let n=this._schema;switch(t.kind){case u.SELECTION_SET:{let i=q(this.getType());this._parentTypeStack.push(se(i)?i:void 0);break}case u.FIELD:{let i=this.getParentType(),o,s;i&&(o=this._getFieldDef(n,i,t),o&&(s=o.type)),this._fieldDefStack.push(o),this._typeStack.push(ve(s)?s:void 0);break}case u.DIRECTIVE:this._directive=n.getDirective(t.name.value);break;case u.OPERATION_DEFINITION:{let i=n.getRootType(t.operation);this._typeStack.push(O(i)?i:void 0);break}case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:{let i=t.typeCondition,o=i?C(n,i):q(this.getType());this._typeStack.push(ve(o)?o:void 0);break}case u.VARIABLE_DEFINITION:{let i=C(n,t.type);this._inputTypeStack.push(H(i)?i:void 0);break}case u.ARGUMENT:{var r;let i,o,s=(r=this.getDirective())!==null&&r!==void 0?r:this.getFieldDef();s&&(i=s.args.find(a=>a.name===t.name.value),i&&(o=i.type)),this._argument=i,this._defaultValueStack.push(i?i.defaultValue:void 0),this._inputTypeStack.push(H(o)?o:void 0);break}case u.LIST:{let i=We(this.getInputType()),o=w(i)?i.ofType:i;this._defaultValueStack.push(void 0),this._inputTypeStack.push(H(o)?o:void 0);break}case u.OBJECT_FIELD:{let i=q(this.getInputType()),o,s;L(i)&&(s=i.getFields()[t.name.value],s&&(o=s.type)),this._defaultValueStack.push(s?s.defaultValue:void 0),this._inputTypeStack.push(H(o)?o:void 0);break}case u.ENUM:{let i=q(this.getInputType()),o;U(i)&&(o=i.getValue(t.value)),this._enumValue=o;break}default:}}leave(t){switch(t.kind){case u.SELECTION_SET:this._parentTypeStack.pop();break;case u.FIELD:this._fieldDefStack.pop(),this._typeStack.pop();break;case u.DIRECTIVE:this._directive=null;break;case u.OPERATION_DEFINITION:case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:this._typeStack.pop();break;case u.VARIABLE_DEFINITION:this._inputTypeStack.pop();break;case u.ARGUMENT:this._argument=null,this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case u.LIST:case u.OBJECT_FIELD:this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case u.ENUM:this._enumValue=null;break;default:}}};function is(e,t,n){let r=n.name.value;if(r===Fe.name&&e.getQueryType()===t)return Fe;if(r===ke.name&&e.getQueryType()===t)return ke;if(r===Ce.name&&se(t))return Ce;if(O(t)||_(t))return t.getFields()[r]}function en(e,t){return{enter(...n){let r=n[0];e.enter(r);let i=ze(t,r.kind).enter;if(i){let o=i.apply(t,n);return o!==void 0&&(e.leave(r),ut(o)&&e.enter(o)),o}},leave(...n){let r=n[0],i=ze(t,r.kind).leave,o;return i&&(o=i.apply(t,n)),e.leave(r),o}}}function er(e){return e.kind===u.OPERATION_DEFINITION||e.kind===u.FRAGMENT_DEFINITION}function tr(e){return e.kind===u.SCHEMA_DEFINITION||Oe(e)||e.kind===u.DIRECTIVE_DEFINITION}function Oe(e){return e.kind===u.SCALAR_TYPE_DEFINITION||e.kind===u.OBJECT_TYPE_DEFINITION||e.kind===u.INTERFACE_TYPE_DEFINITION||e.kind===u.UNION_TYPE_DEFINITION||e.kind===u.ENUM_TYPE_DEFINITION||e.kind===u.INPUT_OBJECT_TYPE_DEFINITION}function nr(e){return e.kind===u.SCHEMA_EXTENSION||tn(e)}function tn(e){return e.kind===u.SCALAR_TYPE_EXTENSION||e.kind===u.OBJECT_TYPE_EXTENSION||e.kind===u.INTERFACE_TYPE_EXTENSION||e.kind===u.UNION_TYPE_EXTENSION||e.kind===u.ENUM_TYPE_EXTENSION||e.kind===u.INPUT_OBJECT_TYPE_EXTENSION}function rr(e){return{Document(t){for(let n of t.definitions)if(!er(n)){let r=n.kind===u.SCHEMA_DEFINITION||n.kind===u.SCHEMA_EXTENSION?"schema":'"'+n.name.value+'"';e.reportError(new f(`The ${r} definition is not executable.`,{nodes:n}))}return!1}}}function ir(e){return{Field(t){let n=e.getParentType();if(n&&!e.getFieldDef()){let i=e.getSchema(),o=t.name.value,s=K("to use an inline fragment on",os(i,n,o));s===""&&(s=K(ss(n,o))),e.reportError(new f(`Cannot query field "${o}" on type "${n.name}".`+s,{nodes:t}))}}}}function os(e,t,n){if(!ne(t))return[];let r=new Set,i=Object.create(null);for(let s of e.getPossibleTypes(t))if(s.getFields()[n]){r.add(s),i[s.name]=1;for(let a of s.getInterfaces()){var o;a.getFields()[n]&&(r.add(a),i[a.name]=((o=i[a.name])!==null&&o!==void 0?o:0)+1)}}return[...r].sort((s,a)=>{let c=i[a.name]-i[s.name];return c!==0?c:_(s)&&e.isSubType(s,a)?-1:_(a)&&e.isSubType(a,s)?1:He(s.name,a.name)}).map(s=>s.name)}function ss(e,t){if(O(e)||_(e)){let n=Object.keys(e.getFields());return ee(t,n)}return[]}function or(e){return{InlineFragment(t){let n=t.typeCondition;if(n){let r=C(e.getSchema(),n);if(r&&!se(r)){let i=x(n);e.reportError(new f(`Fragment cannot condition on non composite type "${i}".`,{nodes:n}))}}},FragmentDefinition(t){let n=C(e.getSchema(),t.typeCondition);if(n&&!se(n)){let r=x(t.typeCondition);e.reportError(new f(`Fragment "${t.name.value}" cannot condition on non composite type "${r}".`,{nodes:t.typeCondition}))}}}}function sr(e){return{...ar(e),Argument(t){let n=e.getArgument(),r=e.getFieldDef(),i=e.getParentType();if(!n&&r&&i){let o=t.name.value,s=r.args.map(c=>c.name),a=ee(o,s);e.reportError(new f(`Unknown argument "${o}" on field "${i.name}.${r.name}".`+K(a),{nodes:t}))}}}}function ar(e){let t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():ye;for(let s of r)t[s.name]=s.args.map(a=>a.name);let i=e.getDocument().definitions;for(let s of i)if(s.kind===u.DIRECTIVE_DEFINITION){var o;let a=(o=s.arguments)!==null&&o!==void 0?o:[];t[s.name.value]=a.map(c=>c.name.value)}return{Directive(s){let a=s.name.value,c=t[a];if(s.arguments&&c)for(let p of s.arguments){let l=p.name.value;if(!c.includes(l)){let d=ee(l,c);e.reportError(new f(`Unknown argument "${l}" on directive "@${a}".`+K(d),{nodes:p}))}}return!1}}}function nn(e){let t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():ye;for(let o of r)t[o.name]=o.locations;let i=e.getDocument().definitions;for(let o of i)o.kind===u.DIRECTIVE_DEFINITION&&(t[o.name.value]=o.locations.map(s=>s.value));return{Directive(o,s,a,c,p){let l=o.name.value,d=t[l];if(!d){e.reportError(new f(`Unknown directive "@${l}".`,{nodes:o}));return}let h=as(p);h&&!d.includes(h)&&e.reportError(new f(`Directive "@${l}" may not be used on ${h}.`,{nodes:o}))}}}function as(e){let t=e[e.length-1];switch("kind"in t||k(!1),t.kind){case u.OPERATION_DEFINITION:return cs(t.operation);case u.FIELD:return N.FIELD;case u.FRAGMENT_SPREAD:return N.FRAGMENT_SPREAD;case u.INLINE_FRAGMENT:return N.INLINE_FRAGMENT;case u.FRAGMENT_DEFINITION:return N.FRAGMENT_DEFINITION;case u.VARIABLE_DEFINITION:return N.VARIABLE_DEFINITION;case u.SCHEMA_DEFINITION:case u.SCHEMA_EXTENSION:return N.SCHEMA;case u.SCALAR_TYPE_DEFINITION:case u.SCALAR_TYPE_EXTENSION:return N.SCALAR;case u.OBJECT_TYPE_DEFINITION:case u.OBJECT_TYPE_EXTENSION:return N.OBJECT;case u.FIELD_DEFINITION:return N.FIELD_DEFINITION;case u.INTERFACE_TYPE_DEFINITION:case u.INTERFACE_TYPE_EXTENSION:return N.INTERFACE;case u.UNION_TYPE_DEFINITION:case u.UNION_TYPE_EXTENSION:return N.UNION;case u.ENUM_TYPE_DEFINITION:case u.ENUM_TYPE_EXTENSION:return N.ENUM;case u.ENUM_VALUE_DEFINITION:return N.ENUM_VALUE;case u.INPUT_OBJECT_TYPE_DEFINITION:case u.INPUT_OBJECT_TYPE_EXTENSION:return N.INPUT_OBJECT;case u.INPUT_VALUE_DEFINITION:{let n=e[e.length-3];return"kind"in n||k(!1),n.kind===u.INPUT_OBJECT_TYPE_DEFINITION?N.INPUT_FIELD_DEFINITION:N.ARGUMENT_DEFINITION}default:k(!1,"Unexpected kind: "+y(t.kind))}}function cs(e){switch(e){case F.QUERY:return N.QUERY;case F.MUTATION:return N.MUTATION;case F.SUBSCRIPTION:return N.SUBSCRIPTION}}function cr(e){return{FragmentSpread(t){let n=t.name.value;e.getFragment(n)||e.reportError(new f(`Unknown fragment "${n}".`,{nodes:t.name}))}}}function rn(e){let t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);for(let o of e.getDocument().definitions)Oe(o)&&(r[o.name.value]=!0);let i=[...Object.keys(n),...Object.keys(r)];return{NamedType(o,s,a,c,p){let l=o.name.value;if(!n[l]&&!r[l]){var d;let h=(d=p[2])!==null&&d!==void 0?d:a,T=h!=null&&us(h);if(T&&Mi.includes(l))return;let g=ee(l,T?Mi.concat(i):i);e.reportError(new f(`Unknown type "${l}".`+K(g),{nodes:o}))}}}}var Mi=[...Jt,...Wt].map(e=>e.name);function us(e){return"kind"in e&&(tr(e)||nr(e))}function ur(e){let t=0;return{Document(n){t=n.definitions.filter(r=>r.kind===u.OPERATION_DEFINITION).length},OperationDefinition(n){!n.name&&t>1&&e.reportError(new f("This anonymous operation must be the only defined operation.",{nodes:n}))}}}function pr(e){var t,n,r;let i=e.getSchema(),o=(t=(n=(r=i?.astNode)!==null&&r!==void 0?r:i?.getQueryType())!==null&&n!==void 0?n:i?.getMutationType())!==null&&t!==void 0?t:i?.getSubscriptionType(),s=0;return{SchemaDefinition(a){if(o){e.reportError(new f("Cannot define a new schema within a schema extension.",{nodes:a}));return}s>0&&e.reportError(new f("Must provide only one schema definition.",{nodes:a})),++s}}}var ps=3;function lr(e){function t(n,r=Object.create(null),i=0){if(n.kind===u.FRAGMENT_SPREAD){let o=n.name.value;if(r[o]===!0)return!1;let s=e.getFragment(o);if(!s)return!1;try{return r[o]=!0,t(s,r,i)}finally{r[o]=void 0}}if(n.kind===u.FIELD&&(n.name.value==="fields"||n.name.value==="interfaces"||n.name.value==="possibleTypes"||n.name.value==="inputFields")&&(i++,i>=ps))return!0;if("selectionSet"in n&&n.selectionSet){for(let o of n.selectionSet.selections)if(t(o,r,i))return!0}return!1}return{Field(n){if((n.name.value==="__schema"||n.name.value==="__type")&&t(n))return e.reportError(new f("Maximum introspection depth exceeded",{nodes:[n]})),!1}}}function fr(e){let t=Object.create(null),n=[],r=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(o){return i(o),!1}};function i(o){if(t[o.name.value])return;let s=o.name.value;t[s]=!0;let a=e.getFragmentSpreads(o.selectionSet);if(a.length!==0){r[s]=n.length;for(let c of a){let p=c.name.value,l=r[p];if(n.push(c),l===void 0){let d=e.getFragment(p);d&&i(d)}else{let d=n.slice(l),h=d.slice(0,-1).map(T=>'"'+T.name.value+'"').join(", ");e.reportError(new f(`Cannot spread fragment "${p}" within itself`+(h!==""?` via ${h}.`:"."),{nodes:d}))}n.pop()}r[s]=void 0}}}function dr(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){let r=e.getRecursiveVariableUsages(n);for(let{node:i}of r){let o=i.name.value;t[o]!==!0&&e.reportError(new f(n.name?`Variable "$${o}" is not defined by operation "${n.name.value}".`:`Variable "$${o}" is not defined.`,{nodes:[i,n]}))}}},VariableDefinition(n){t[n.variable.name.value]=!0}}}function mr(e){let t=[],n=[];return{OperationDefinition(r){return t.push(r),!1},FragmentDefinition(r){return n.push(r),!1},Document:{leave(){let r=Object.create(null);for(let i of t)for(let o of e.getRecursivelyReferencedFragments(i))r[o.name.value]=!0;for(let i of n){let o=i.name.value;r[o]!==!0&&e.reportError(new f(`Fragment "${o}" is never used.`,{nodes:i}))}}}}}function hr(e){let t=[];return{OperationDefinition:{enter(){t=[]},leave(n){let r=Object.create(null),i=e.getRecursiveVariableUsages(n);for(let{node:o}of i)r[o.name.value]=!0;for(let o of t){let s=o.variable.name.value;r[s]!==!0&&e.reportError(new f(n.name?`Variable "$${s}" is never used in operation "${n.name.value}".`:`Variable "$${s}" is never used.`,{nodes:o}))}}},VariableDefinition(n){t.push(n)}}}function on(e){switch(e.kind){case u.OBJECT:return{...e,fields:ls(e.fields)};case u.LIST:return{...e,values:e.values.map(on)};case u.INT:case u.FLOAT:case u.STRING:case u.BOOLEAN:case u.NULL:case u.ENUM:case u.VARIABLE:return e}}function ls(e){return e.map(t=>({...t,value:on(t.value)})).sort((t,n)=>He(t.name.value,n.name.value))}function Ui(e){return Array.isArray(e)?e.map(([t,n])=>`subfields "${t}" conflict because `+Ui(n)).join(" and "):e}function Er(e){let t=new gr,n=new Map;return{SelectionSet(r){let i=fs(e,n,t,e.getParentType(),r);for(let[[o,s],a,c]of i){let p=Ui(s);e.reportError(new f(`Fields "${o}" conflict because ${p}. Use different aliases on the fields to fetch both if this was intentional.`,{nodes:a.concat(c)}))}}}}function fs(e,t,n,r,i){let o=[],[s,a]=cn(e,t,r,i);if(ms(e,o,t,n,s),a.length!==0)for(let c=0;c<a.length;c++){sn(e,o,t,n,!1,s,a[c]);for(let p=c+1;p<a.length;p++)an(e,o,t,n,!1,a[c],a[p])}return o}function sn(e,t,n,r,i,o,s){let a=e.getFragment(s);if(!a)return;let[c,p]=Tr(e,n,a);if(o!==c){vr(e,t,n,r,i,o,c);for(let l of p)r.has(l,s,i)||(r.add(l,s,i),sn(e,t,n,r,i,o,l))}}function an(e,t,n,r,i,o,s){if(o===s||r.has(o,s,i))return;r.add(o,s,i);let a=e.getFragment(o),c=e.getFragment(s);if(!a||!c)return;let[p,l]=Tr(e,n,a),[d,h]=Tr(e,n,c);vr(e,t,n,r,i,p,d);for(let T of h)an(e,t,n,r,i,o,T);for(let T of l)an(e,t,n,r,i,T,s)}function ds(e,t,n,r,i,o,s,a){let c=[],[p,l]=cn(e,t,i,o),[d,h]=cn(e,t,s,a);vr(e,c,t,n,r,p,d);for(let T of h)sn(e,c,t,n,r,p,T);for(let T of l)sn(e,c,t,n,r,d,T);for(let T of l)for(let g of h)an(e,c,t,n,r,T,g);return c}function ms(e,t,n,r,i){for(let[o,s]of Object.entries(i))if(s.length>1)for(let a=0;a<s.length;a++)for(let c=a+1;c<s.length;c++){let p=$i(e,n,r,!1,o,s[a],s[c]);p&&t.push(p)}}function vr(e,t,n,r,i,o,s){for(let[a,c]of Object.entries(o)){let p=s[a];if(p)for(let l of c)for(let d of p){let h=$i(e,n,r,i,a,l,d);h&&t.push(h)}}}function $i(e,t,n,r,i,o,s){let[a,c,p]=o,[l,d,h]=s,T=r||a!==l&&O(a)&&O(l);if(!T){let xe=c.name.value,pe=d.name.value;if(xe!==pe)return[[i,`"${xe}" and "${pe}" are different fields`],[c],[d]];if(!hs(c,d))return[[i,"they have differing arguments"],[c],[d]]}let g=p?.type,A=h?.type;if(g&&A&&yr(g,A))return[[i,`they return conflicting types "${y(g)}" and "${y(A)}"`],[c],[d]];let V=c.selectionSet,re=d.selectionSet;if(V&&re){let xe=ds(e,t,n,T,q(g),V,q(A),re);return ys(xe,i,c,d)}}function hs(e,t){let n=e.arguments,r=t.arguments;if(n===void 0||n.length===0)return r===void 0||r.length===0;if(r===void 0||r.length===0||n.length!==r.length)return!1;let i=new Map(r.map(({name:o,value:s})=>[o.value,s]));return n.every(o=>{let s=o.value,a=i.get(o.name.value);return a===void 0?!1:Pi(s)===Pi(a)})}function Pi(e){return x(on(e))}function yr(e,t){return w(e)?w(t)?yr(e.ofType,t.ofType):!0:w(t)?!0:b(e)?b(t)?yr(e.ofType,t.ofType):!0:b(t)?!0:J(e)||J(t)?e!==t:!1}function cn(e,t,n,r){let i=t.get(r);if(i)return i;let o=Object.create(null),s=Object.create(null);Vi(e,n,r,o,s);let a=[o,Object.keys(s)];return t.set(r,a),a}function Tr(e,t,n){let r=t.get(n.selectionSet);if(r)return r;let i=C(e.getSchema(),n.typeCondition);return cn(e,t,i,n.selectionSet)}function Vi(e,t,n,r,i){for(let o of n.selections)switch(o.kind){case u.FIELD:{let s=o.name.value,a;(O(t)||_(t))&&(a=t.getFields()[s]);let c=o.alias?o.alias.value:s;r[c]||(r[c]=[]),r[c].push([t,o,a]);break}case u.FRAGMENT_SPREAD:i[o.name.value]=!0;break;case u.INLINE_FRAGMENT:{let s=o.typeCondition,a=s?C(e.getSchema(),s):t;Vi(e,a,o.selectionSet,r,i);break}}}function ys(e,t,n,r){if(e.length>0)return[[t,e.map(([i])=>i)],[n,...e.map(([,i])=>i).flat()],[r,...e.map(([,,i])=>i).flat()]]}var gr=class{constructor(){this._data=new Map}has(t,n,r){var i;let[o,s]=t<n?[t,n]:[n,t],a=(i=this._data.get(o))===null||i===void 0?void 0:i.get(s);return a===void 0?!1:r?!0:r===a}add(t,n,r){let[i,o]=t<n?[t,n]:[n,t],s=this._data.get(i);s===void 0?this._data.set(i,new Map([[o,r]])):s.set(o,r)}};function Nr(e){return{InlineFragment(t){let n=e.getType(),r=e.getParentType();if(se(n)&&se(r)&&!Qn(e.getSchema(),n,r)){let i=y(r),o=y(n);e.reportError(new f(`Fragment cannot be spread here as objects of type "${i}" can never be of type "${o}".`,{nodes:t}))}},FragmentSpread(t){let n=t.name.value,r=Ts(e,n),i=e.getParentType();if(r&&i&&!Qn(e.getSchema(),r,i)){let o=y(i),s=y(r);e.reportError(new f(`Fragment "${n}" cannot be spread here as objects of type "${o}" can never be of type "${s}".`,{nodes:t}))}}}}function Ts(e,t){let n=e.getFragment(t);if(n){let r=C(e.getSchema(),n.typeCondition);if(se(r))return r}}function Ir(e){let t=e.getSchema(),n=Object.create(null);for(let i of e.getDocument().definitions)Oe(i)&&(n[i.name.value]=i);return{ScalarTypeExtension:r,ObjectTypeExtension:r,InterfaceTypeExtension:r,UnionTypeExtension:r,EnumTypeExtension:r,InputObjectTypeExtension:r};function r(i){let o=i.name.value,s=n[o],a=t?.getType(o),c;if(s?c=gs[s.kind]:a&&(c=Es(a)),c){if(c!==i.kind){let p=vs(i.kind);e.reportError(new f(`Cannot extend non-${p} type "${o}".`,{nodes:s?[s,i]:i}))}}else{let p=Object.keys({...n,...t?.getTypeMap()}),l=ee(o,p);e.reportError(new f(`Cannot extend type "${o}" because it is not defined.`+K(l),{nodes:i.name}))}}}var gs={[u.SCALAR_TYPE_DEFINITION]:u.SCALAR_TYPE_EXTENSION,[u.OBJECT_TYPE_DEFINITION]:u.OBJECT_TYPE_EXTENSION,[u.INTERFACE_TYPE_DEFINITION]:u.INTERFACE_TYPE_EXTENSION,[u.UNION_TYPE_DEFINITION]:u.UNION_TYPE_EXTENSION,[u.ENUM_TYPE_DEFINITION]:u.ENUM_TYPE_EXTENSION,[u.INPUT_OBJECT_TYPE_DEFINITION]:u.INPUT_OBJECT_TYPE_EXTENSION};function Es(e){if(me(e))return u.SCALAR_TYPE_EXTENSION;if(O(e))return u.OBJECT_TYPE_EXTENSION;if(_(e))return u.INTERFACE_TYPE_EXTENSION;if(Y(e))return u.UNION_TYPE_EXTENSION;if(U(e))return u.ENUM_TYPE_EXTENSION;if(L(e))return u.INPUT_OBJECT_TYPE_EXTENSION;k(!1,"Unexpected type: "+y(e))}function vs(e){switch(e){case u.SCALAR_TYPE_EXTENSION:return"scalar";case u.OBJECT_TYPE_EXTENSION:return"object";case u.INTERFACE_TYPE_EXTENSION:return"interface";case u.UNION_TYPE_EXTENSION:return"union";case u.ENUM_TYPE_EXTENSION:return"enum";case u.INPUT_OBJECT_TYPE_EXTENSION:return"input object";default:k(!1,"Unexpected kind: "+y(e))}}function br(e){return{...Rr(e),Field:{leave(t){var n;let r=e.getFieldDef();if(!r)return!1;let i=new Set((n=t.arguments)===null||n===void 0?void 0:n.map(o=>o.name.value));for(let o of r.args)if(!i.has(o.name)&&Ne(o)){let s=y(o.type);e.reportError(new f(`Field "${r.name}" argument "${o.name}" of type "${s}" is required, but it was not provided.`,{nodes:t}))}}}}}function Rr(e){var t;let n=Object.create(null),r=e.getSchema(),i=(t=r?.getDirectives())!==null&&t!==void 0?t:ye;for(let a of i)n[a.name]=le(a.args.filter(Ne),c=>c.name);let o=e.getDocument().definitions;for(let a of o)if(a.kind===u.DIRECTIVE_DEFINITION){var s;let c=(s=a.arguments)!==null&&s!==void 0?s:[];n[a.name.value]=le(c.filter(Ns),p=>p.name.value)}return{Directive:{leave(a){let c=a.name.value,p=n[c];if(p){var l;let d=(l=a.arguments)!==null&&l!==void 0?l:[],h=new Set(d.map(T=>T.name.value));for(let[T,g]of Object.entries(p))if(!h.has(T)){let A=Ke(g.type)?y(g.type):x(g.type);e.reportError(new f(`Directive "@${c}" argument "${T}" of type "${A}" is required, but it was not provided.`,{nodes:a}))}}}}}}function Ns(e){return e.type.kind===u.NON_NULL_TYPE&&e.defaultValue==null}function Or(e){return{Field(t){let n=e.getType(),r=t.selectionSet;if(n){if(J(q(n))){if(r){let i=t.name.value,o=y(n);e.reportError(new f(`Field "${i}" must not have a selection since type "${o}" has no subfields.`,{nodes:r}))}}else if(!r){let i=t.name.value,o=y(n);e.reportError(new f(`Field "${i}" of type "${o}" must have a selection of subfields. Did you mean "${i} { ... }"?`,{nodes:t}))}}}}}function un(e){return e.map(t=>typeof t=="number"?"["+t.toString()+"]":"."+t).join("")}function Ue(e,t,n){return{prev:e,key:t,typename:n}}function W(e){let t=[],n=e;for(;n;)t.push(n.key),n=n.prev;return t.reverse()}function Gi(e,t,n=Is){return Ot(e,t,n,void 0)}function Is(e,t,n){let r="Invalid value "+y(t);throw e.length>0&&(r+=` at "value${un(e)}"`),n.message=r+": "+n.message,n}function Ot(e,t,n,r){if(b(t)){if(e!=null)return Ot(e,t.ofType,n,r);n(W(r),e,new f(`Expected non-nullable type "${y(t)}" not to be null.`));return}if(e==null)return null;if(w(t)){let i=t.ofType;return et(e)?Array.from(e,(o,s)=>{let a=Ue(r,s,void 0);return Ot(o,i,n,a)}):[Ot(e,i,n,r)]}if(L(t)){if(!j(e)){n(W(r),e,new f(`Expected type "${t.name}" to be an object.`));return}let i={},o=t.getFields();for(let s of Object.values(o)){let a=e[s.name];if(a===void 0){if(s.defaultValue!==void 0)i[s.name]=s.defaultValue;else if(b(s.type)){let c=y(s.type);n(W(r),e,new f(`Field "${s.name}" of required type "${c}" was not provided.`))}continue}i[s.name]=Ot(a,s.type,n,Ue(r,s.name,t.name))}for(let s of Object.keys(e))if(!o[s]){let a=ee(s,Object.keys(t.getFields()));n(W(r),e,new f(`Field "${s}" is not defined by type "${t.name}".`+K(a)))}if(t.isOneOf){let s=Object.keys(i);s.length!==1&&n(W(r),e,new f(`Exactly one key must be specified for OneOf type "${t.name}".`));let a=s[0],c=i[a];c===null&&n(W(r).concat(a),c,new f(`Field "${a}" must be non-null.`))}return i}if(J(t)){let i;try{i=t.parseValue(e)}catch(o){o instanceof f?n(W(r),e,o):n(W(r),e,new f(`Expected type "${t.name}". `+o.message,{originalError:o}));return}return i===void 0&&n(W(r),e,new f(`Expected type "${t.name}".`)),i}k(!1,"Unexpected input type: "+y(t))}function $e(e,t,n){if(e){if(e.kind===u.VARIABLE){let r=e.name.value;if(n==null||n[r]===void 0)return;let i=n[r];return i===null&&b(t)?void 0:i}if(b(t))return e.kind===u.NULL?void 0:$e(e,t.ofType,n);if(e.kind===u.NULL)return null;if(w(t)){let r=t.ofType;if(e.kind===u.LIST){let o=[];for(let s of e.values)if(ji(s,n)){if(b(r))return;o.push(null)}else{let a=$e(s,r,n);if(a===void 0)return;o.push(a)}return o}let i=$e(e,r,n);return i===void 0?void 0:[i]}if(L(t)){if(e.kind!==u.OBJECT)return;let r=Object.create(null),i=le(e.fields,o=>o.name.value);for(let o of Object.values(t.getFields())){let s=i[o.name];if(!s||ji(s.value,n)){if(o.defaultValue!==void 0)r[o.name]=o.defaultValue;else if(b(o.type))return;continue}let a=$e(s.value,o.type,n);if(a===void 0)return;r[o.name]=a}if(t.isOneOf){let o=Object.keys(r);if(o.length!==1||r[o[0]]===null)return}return r}if(J(t)){let r;try{r=t.parseLiteral(e,n)}catch{return}return r===void 0?void 0:r}k(!1,"Unexpected input type: "+y(t))}}function ji(e,t){return e.kind===u.VARIABLE&&(t==null||t[e.name.value]===void 0)}function Sr(e,t,n,r){let i=[],o=r?.maxErrors;try{let s=bs(e,t,n,a=>{if(o!=null&&i.length>=o)throw new f("Too many errors processing variables, error limit reached. Execution aborted.");i.push(a)});if(i.length===0)return{coerced:s}}catch(s){i.push(s)}return{errors:i}}function bs(e,t,n,r){let i={};for(let o of t){let s=o.variable.name.value,a=C(e,o.type);if(!H(a)){let p=x(o.type);r(new f(`Variable "$${s}" expected value of type "${p}" which cannot be used as an input type.`,{nodes:o.type}));continue}if(!Qi(n,s)){if(o.defaultValue)i[s]=$e(o.defaultValue,a);else if(b(a)){let p=y(a);r(new f(`Variable "$${s}" of required type "${p}" was not provided.`,{nodes:o}))}continue}let c=n[s];if(c===null&&b(a)){let p=y(a);r(new f(`Variable "$${s}" of non-null type "${p}" must not be null.`,{nodes:o}));continue}i[s]=Gi(c,a,(p,l,d)=>{let h=`Variable "$${s}" got invalid value `+y(l);p.length>0&&(h+=` at "${s}${un(p)}"`),r(new f(h+"; "+d.message,{nodes:o,originalError:d}))})}return i}function pn(e,t,n){var r;let i={},o=(r=t.arguments)!==null&&r!==void 0?r:[],s=le(o,a=>a.name.value);for(let a of e.args){let c=a.name,p=a.type,l=s[c];if(!l){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(b(p))throw new f(`Argument "${c}" of required type "${y(p)}" was not provided.`,{nodes:t});continue}let d=l.value,h=d.kind===u.NULL;if(d.kind===u.VARIABLE){let g=d.name.value;if(n==null||!Qi(n,g)){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(b(p))throw new f(`Argument "${c}" of required type "${y(p)}" was provided the variable "$${g}" which was not provided a runtime value.`,{nodes:d});continue}h=n[g]==null}if(h&&b(p))throw new f(`Argument "${c}" of non-null type "${y(p)}" must not be null.`,{nodes:d});let T=$e(d,p,n);if(T===void 0)throw new f(`Argument "${c}" has invalid value ${x(d)}.`,{nodes:d});i[c]=T}return i}function ln(e,t,n){var r;let i=(r=t.directives)===null||r===void 0?void 0:r.find(o=>o.name.value===e.name);if(i)return pn(e,i,n)}function Qi(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function dn(e,t,n,r,i){let o=new Map;return fn(e,t,n,r,i,o,new Set),o}function qi(e,t,n,r,i){let o=new Map,s=new Set;for(let a of i)a.selectionSet&&fn(e,t,n,r,a.selectionSet,o,s);return o}function fn(e,t,n,r,i,o,s){for(let a of i.selections)switch(a.kind){case u.FIELD:{if(!_r(n,a))continue;let c=Rs(a),p=o.get(c);p!==void 0?p.push(a):o.set(c,[a]);break}case u.INLINE_FRAGMENT:{if(!_r(n,a)||!Bi(e,a,r))continue;fn(e,t,n,r,a.selectionSet,o,s);break}case u.FRAGMENT_SPREAD:{let c=a.name.value;if(s.has(c)||!_r(n,a))continue;s.add(c);let p=t[c];if(!p||!Bi(e,p,r))continue;fn(e,t,n,r,p.selectionSet,o,s);break}}}function _r(e,t){let n=ln(Xt,t,e);if(n?.if===!0)return!1;let r=ln(zt,t,e);return r?.if!==!1}function Bi(e,t,n){let r=t.typeCondition;if(!r)return!0;let i=C(e,r);return i===n?!0:ne(i)?e.isSubType(i,n):!1}function Rs(e){return e.alias?e.alias.value:e.name.value}function xr(e){return{OperationDefinition(t){if(t.operation==="subscription"){let n=e.getSchema(),r=n.getSubscriptionType();if(r){let i=t.name?t.name.value:null,o=Object.create(null),s=e.getDocument(),a=Object.create(null);for(let p of s.definitions)p.kind===u.FRAGMENT_DEFINITION&&(a[p.name.value]=p);let c=dn(n,a,o,r,t.selectionSet);if(c.size>1){let d=[...c.values()].slice(1).flat();e.reportError(new f(i!=null?`Subscription "${i}" must select only one top level field.`:"Anonymous Subscription must select only one top level field.",{nodes:d}))}for(let p of c.values())p[0].name.value.startsWith("__")&&e.reportError(new f(i!=null?`Subscription "${i}" must not select an introspection top level field.`:"Anonymous Subscription must not select an introspection top level field.",{nodes:p}))}}}}}function rt(e,t){let n=new Map;for(let r of e){let i=t(r),o=n.get(i);o===void 0?n.set(i,[r]):o.push(r)}return n}function Lr(e){return{DirectiveDefinition(r){var i;let o=(i=r.arguments)!==null&&i!==void 0?i:[];return n(`@${r.name.value}`,o)},InterfaceTypeDefinition:t,InterfaceTypeExtension:t,ObjectTypeDefinition:t,ObjectTypeExtension:t};function t(r){var i;let o=r.name.value,s=(i=r.fields)!==null&&i!==void 0?i:[];for(let c of s){var a;let p=c.name.value,l=(a=c.arguments)!==null&&a!==void 0?a:[];n(`${o}.${p}`,l)}return!1}function n(r,i){let o=rt(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`Argument "${r}(${s}:)" can only be defined once.`,{nodes:a.map(c=>c.name)}));return!1}}function mn(e){return{Field:t,Directive:t};function t(n){var r;let i=(r=n.arguments)!==null&&r!==void 0?r:[],o=rt(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`There can be only one argument named "${s}".`,{nodes:a.map(c=>c.name)}))}}function wr(e){let t=Object.create(null),n=e.getSchema();return{DirectiveDefinition(r){let i=r.name.value;if(n!=null&&n.getDirective(i)){e.reportError(new f(`Directive "@${i}" already exists in the schema. It cannot be redefined.`,{nodes:r.name}));return}return t[i]?e.reportError(new f(`There can be only one directive named "@${i}".`,{nodes:[t[i],r.name]})):t[i]=r.name,!1}}}function hn(e){let t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():ye;for(let a of r)t[a.name]=!a.isRepeatable;let i=e.getDocument().definitions;for(let a of i)a.kind===u.DIRECTIVE_DEFINITION&&(t[a.name.value]=!a.repeatable);let o=Object.create(null),s=Object.create(null);return{enter(a){if(!("directives"in a)||!a.directives)return;let c;if(a.kind===u.SCHEMA_DEFINITION||a.kind===u.SCHEMA_EXTENSION)c=o;else if(Oe(a)||tn(a)){let p=a.name.value;c=s[p],c===void 0&&(s[p]=c=Object.create(null))}else c=Object.create(null);for(let p of a.directives){let l=p.name.value;t[l]&&(c[l]?e.reportError(new f(`The directive "@${l}" can only be used once at this location.`,{nodes:[c[l],p]})):c[l]=p)}}}}function Dr(e){let t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(o){var s;let a=o.name.value;r[a]||(r[a]=Object.create(null));let c=(s=o.values)!==null&&s!==void 0?s:[],p=r[a];for(let l of c){let d=l.name.value,h=n[a];U(h)&&h.getValue(d)?e.reportError(new f(`Enum value "${a}.${d}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:l.name})):p[d]?e.reportError(new f(`Enum value "${a}.${d}" can only be defined once.`,{nodes:[p[d],l.name]})):p[d]=l.name}return!1}}function Ar(e){let t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);return{InputObjectTypeDefinition:i,InputObjectTypeExtension:i,InterfaceTypeDefinition:i,InterfaceTypeExtension:i,ObjectTypeDefinition:i,ObjectTypeExtension:i};function i(o){var s;let a=o.name.value;r[a]||(r[a]=Object.create(null));let c=(s=o.fields)!==null&&s!==void 0?s:[],p=r[a];for(let l of c){let d=l.name.value;Os(n[a],d)?e.reportError(new f(`Field "${a}.${d}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:l.name})):p[d]?e.reportError(new f(`Field "${a}.${d}" can only be defined once.`,{nodes:[p[d],l.name]})):p[d]=l.name}return!1}}function Os(e,t){return O(e)||_(e)||L(e)?e.getFields()[t]!=null:!1}function Fr(e){let t=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(n){let r=n.name.value;return t[r]?e.reportError(new f(`There can be only one fragment named "${r}".`,{nodes:[t[r],n.name]})):t[r]=n.name,!1}}}function yn(e){let t=[],n=Object.create(null);return{ObjectValue:{enter(){t.push(n),n=Object.create(null)},leave(){let r=t.pop();r||k(!1),n=r}},ObjectField(r){let i=r.name.value;n[i]?e.reportError(new f(`There can be only one input field named "${i}".`,{nodes:[n[i],r.name]})):n[i]=r.name}}}function kr(e){let t=Object.create(null);return{OperationDefinition(n){let r=n.name;return r&&(t[r.value]?e.reportError(new f(`There can be only one operation named "${r.value}".`,{nodes:[t[r.value],r]})):t[r.value]=r),!1},FragmentDefinition:()=>!1}}function Cr(e){let t=e.getSchema(),n=Object.create(null),r=t?{query:t.getQueryType(),mutation:t.getMutationType(),subscription:t.getSubscriptionType()}:{};return{SchemaDefinition:i,SchemaExtension:i};function i(o){var s;let a=(s=o.operationTypes)!==null&&s!==void 0?s:[];for(let c of a){let p=c.operation,l=n[p];r[p]?e.reportError(new f(`Type for ${p} already defined in the schema. It cannot be redefined.`,{nodes:c})):l?e.reportError(new f(`There can be only one ${p} type in schema.`,{nodes:[l,c]})):n[p]=c}return!1}}function Mr(e){let t=Object.create(null),n=e.getSchema();return{ScalarTypeDefinition:r,ObjectTypeDefinition:r,InterfaceTypeDefinition:r,UnionTypeDefinition:r,EnumTypeDefinition:r,InputObjectTypeDefinition:r};function r(i){let o=i.name.value;if(n!=null&&n.getType(o)){e.reportError(new f(`Type "${o}" already exists in the schema. It cannot also be defined in this type definition.`,{nodes:i.name}));return}return t[o]?e.reportError(new f(`There can be only one type named "${o}".`,{nodes:[t[o],i.name]})):t[o]=i.name,!1}}function Pr(e){return{OperationDefinition(t){var n;let r=(n=t.variableDefinitions)!==null&&n!==void 0?n:[],i=rt(r,o=>o.variable.name.value);for(let[o,s]of i)s.length>1&&e.reportError(new f(`There can be only one variable named "$${o}".`,{nodes:s.map(a=>a.variable.name)}))}}}function Ur(e){let t={};return{OperationDefinition:{enter(){t={}}},VariableDefinition(n){t[n.variable.name.value]=n},ListValue(n){let r=We(e.getParentInputType());if(!w(r))return Ve(e,n),!1},ObjectValue(n){let r=q(e.getInputType());if(!L(r))return Ve(e,n),!1;let i=le(n.fields,o=>o.name.value);for(let o of Object.values(r.getFields()))if(!i[o.name]&&Ze(o)){let a=y(o.type);e.reportError(new f(`Field "${r.name}.${o.name}" of required type "${a}" was not provided.`,{nodes:n}))}r.isOneOf&&Ss(e,n,r,i,t)},ObjectField(n){let r=q(e.getParentInputType());if(!e.getInputType()&&L(r)){let o=ee(n.name.value,Object.keys(r.getFields()));e.reportError(new f(`Field "${n.name.value}" is not defined by type "${r.name}".`+K(o),{nodes:n}))}},NullValue(n){let r=e.getInputType();b(r)&&e.reportError(new f(`Expected value of type "${y(r)}", found ${x(n)}.`,{nodes:n}))},EnumValue:n=>Ve(e,n),IntValue:n=>Ve(e,n),FloatValue:n=>Ve(e,n),StringValue:n=>Ve(e,n),BooleanValue:n=>Ve(e,n)}}function Ve(e,t){let n=e.getInputType();if(!n)return;let r=q(n);if(!J(r)){let i=y(n);e.reportError(new f(`Expected value of type "${i}", found ${x(t)}.`,{nodes:t}));return}try{if(r.parseLiteral(t,void 0)===void 0){let o=y(n);e.reportError(new f(`Expected value of type "${o}", found ${x(t)}.`,{nodes:t}))}}catch(i){let o=y(n);i instanceof f?e.reportError(i):e.reportError(new f(`Expected value of type "${o}", found ${x(t)}; `+i.message,{nodes:t,originalError:i}))}}function Ss(e,t,n,r,i){var o;let s=Object.keys(r);if(s.length!==1){e.reportError(new f(`OneOf Input Object "${n.name}" must specify exactly one key.`,{nodes:[t]}));return}let c=(o=r[s[0]])===null||o===void 0?void 0:o.value,p=!c||c.kind===u.NULL,l=c?.kind===u.VARIABLE;if(p){e.reportError(new f(`Field "${n.name}.${s[0]}" must be non-null.`,{nodes:[t]}));return}if(l){let d=c.name.value;i[d].type.kind!==u.NON_NULL_TYPE&&e.reportError(new f(`Variable "${d}" must be non-nullable to be used for OneOf Input Object "${n.name}".`,{nodes:[t]}))}}function $r(e){return{VariableDefinition(t){let n=C(e.getSchema(),t.type);if(n!==void 0&&!H(n)){let r=t.variable.name.value,i=x(t.type);e.reportError(new f(`Variable "$${r}" cannot be non-input type "${i}".`,{nodes:t.type}))}}}}function Vr(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){let r=e.getRecursiveVariableUsages(n);for(let{node:i,type:o,defaultValue:s}of r){let a=i.name.value,c=t[a];if(c&&o){let p=e.getSchema(),l=C(p,c.type);if(l&&!_s(p,l,c.defaultValue,o,s)){let d=y(l),h=y(o);e.reportError(new f(`Variable "$${a}" of type "${d}" used in position expecting type "${h}".`,{nodes:[c,i]}))}}}}},VariableDefinition(n){t[n.variable.name.value]=n}}}function _s(e,t,n,r,i){if(b(r)&&!b(t)){if(!(n!=null&&n.kind!==u.NULL)&&!(i!==void 0))return!1;let a=r.ofType;return Re(e,t,a)}return Re(e,t,r)}var Gr=Object.freeze([lr]),it=Object.freeze([rr,kr,ur,xr,rn,or,$r,Or,ir,Fr,cr,mr,Nr,fr,Pr,dr,hr,nn,hn,sr,mn,Ur,br,Vr,Er,yn,...Gr]),xs=Object.freeze([pr,Cr,Mr,Dr,Ar,Lr,wr,rn,nn,hn,Ir,ar,mn,yn,Rr]);var jr=class{constructor(t,n){this._ast=t,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=n}get[Symbol.toStringTag](){return"ASTValidationContext"}reportError(t){this._onError(t)}getDocument(){return this._ast}getFragment(t){let n;if(this._fragments)n=this._fragments;else{n=Object.create(null);for(let r of this.getDocument().definitions)r.kind===u.FRAGMENT_DEFINITION&&(n[r.name.value]=r);this._fragments=n}return n[t]}getFragmentSpreads(t){let n=this._fragmentSpreads.get(t);if(!n){n=[];let r=[t],i;for(;i=r.pop();)for(let o of i.selections)o.kind===u.FRAGMENT_SPREAD?n.push(o):o.selectionSet&&r.push(o.selectionSet);this._fragmentSpreads.set(t,n)}return n}getRecursivelyReferencedFragments(t){let n=this._recursivelyReferencedFragments.get(t);if(!n){n=[];let r=Object.create(null),i=[t.selectionSet],o;for(;o=i.pop();)for(let s of this.getFragmentSpreads(o)){let a=s.name.value;if(r[a]!==!0){r[a]=!0;let c=this.getFragment(a);c&&(n.push(c),i.push(c.selectionSet))}}this._recursivelyReferencedFragments.set(t,n)}return n}};var St=class extends jr{constructor(t,n,r,i){super(n,i),this._schema=t,this._typeInfo=r,this._variableUsages=new Map,this._recursiveVariableUsages=new Map}get[Symbol.toStringTag](){return"ValidationContext"}getSchema(){return this._schema}getVariableUsages(t){let n=this._variableUsages.get(t);if(!n){let r=[],i=new nt(this._schema);we(t,en(i,{VariableDefinition:()=>!1,Variable(o){r.push({node:o,type:i.getInputType(),defaultValue:i.getDefaultValue()})}})),n=r,this._variableUsages.set(t,n)}return n}getRecursiveVariableUsages(t){let n=this._recursiveVariableUsages.get(t);if(!n){n=this.getVariableUsages(t);for(let r of this.getRecursivelyReferencedFragments(t))n=n.concat(this.getVariableUsages(r));this._recursiveVariableUsages.set(t,n)}return n}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()}getEnumValue(){return this._typeInfo.getEnumValue()}};function Tn(e,t,n=it,r,i=new nt(e)){var o;let s=(o=r?.maxErrors)!==null&&o!==void 0?o:100;t||R(!1,"Must provide document."),Rt(e);let a=Object.freeze({}),c=[],p=new St(e,t,i,d=>{if(c.length>=s)throw c.push(new f("Too many validation errors, error limit reached. Validation aborted.")),a;c.push(d)}),l=Un(n.map(d=>d(p)));try{we(t,en(i,l))}catch(d){if(d!==a)throw d}return c}function Yi(e){let t;return function(r,i,o){t===void 0&&(t=new WeakMap);let s=t.get(r);s===void 0&&(s=new WeakMap,t.set(r,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=e(r,i,o),a.set(o,c)),c}}function Qr(e){return Promise.all(Object.values(e)).then(t=>{let n=Object.create(null);for(let[r,i]of Object.keys(e).entries())n[i]=t[r];return n})}function Hi(e,t,n){let r=n;for(let i of e)r=oe(r)?r.then(o=>t(o,i)):t(r,i);return r}function Ji(e){return e instanceof Error?e:new Br(e)}var Br=class extends Error{constructor(t){super("Unexpected error value: "+y(t)),this.name="NonErrorThrown",this.thrownValue=t}};function _t(e,t,n){var r;let i=Ji(e);return Ls(i)?i:new f(i.message,{nodes:(r=i.nodes)!==null&&r!==void 0?r:t,source:i.source,positions:i.positions,path:n,originalError:i})}function Ls(e){return Array.isArray(e.path)}var ws=Yi((e,t,n)=>qi(e.schema,e.fragments,e.variableValues,t,n));function In(e){arguments.length<2||R(!1,"graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.");let{schema:t,document:n,variableValues:r,rootValue:i}=e;Ds(t,n,r);let o=As(e);if(!("schema"in o))return{errors:o};try{let{operation:s}=o,a=Fs(o,s,i);return oe(a)?a.then(c=>gn(c,o.errors),c=>(o.errors.push(c),gn(null,o.errors))):gn(a,o.errors)}catch(s){return o.errors.push(s),gn(null,o.errors)}}function gn(e,t){return t.length===0?{data:e}:{errors:t,data:e}}function Ds(e,t,n){t||R(!1,"Must provide document."),Rt(e),n==null||j(n)||R(!1,"Variables must be provided as an Object where each property is a variable value. Perhaps look to see if an unparsed JSON string was provided.")}function As(e){var t,n;let{schema:r,document:i,rootValue:o,contextValue:s,variableValues:a,operationName:c,fieldResolver:p,typeResolver:l,subscribeFieldResolver:d}=e,h,T=Object.create(null);for(let V of i.definitions)switch(V.kind){case u.OPERATION_DEFINITION:if(c==null){if(h!==void 0)return[new f("Must provide operation name if query contains multiple operations.")];h=V}else((t=V.name)===null||t===void 0?void 0:t.value)===c&&(h=V);break;case u.FRAGMENT_DEFINITION:T[V.name.value]=V;break;default:}if(!h)return c!=null?[new f(`Unknown operation named "${c}".`)]:[new f("Must provide an operation.")];let g=(n=h.variableDefinitions)!==null&&n!==void 0?n:[],A=Sr(r,g,a??{},{maxErrors:50});return A.errors?A.errors:{schema:r,fragments:T,rootValue:o,contextValue:s,operation:h,variableValues:A.coerced,fieldResolver:p??Nn,typeResolver:l??Yr,subscribeFieldResolver:d??Nn,errors:[]}}function Fs(e,t,n){let r=e.schema.getRootType(t.operation);if(r==null)throw new f(`Schema is not configured to execute ${t.operation} operation.`,{nodes:t});let i=dn(e.schema,e.fragments,e.variableValues,r,t.selectionSet),o=void 0;switch(t.operation){case F.QUERY:return En(e,r,n,o,i);case F.MUTATION:return ks(e,r,n,o,i);case F.SUBSCRIPTION:return En(e,r,n,o,i)}}function ks(e,t,n,r,i){return Hi(i.entries(),(o,[s,a])=>{let c=Ue(r,s,t.name),p=Ki(e,t,n,a,c);return p===void 0?o:oe(p)?p.then(l=>(o[s]=l,o)):(o[s]=p,o)},Object.create(null))}function En(e,t,n,r,i){let o=Object.create(null),s=!1;try{for(let[a,c]of i.entries()){let p=Ue(r,a,t.name),l=Ki(e,t,n,c,p);l!==void 0&&(o[a]=l,oe(l)&&(s=!0))}}catch(a){if(s)return Qr(o).finally(()=>{throw a});throw a}return s?Qr(o):o}function Ki(e,t,n,r,i){var o;let s=$s(e.schema,t,r[0]);if(!s)return;let a=s.type,c=(o=s.resolve)!==null&&o!==void 0?o:e.fieldResolver,p=Cs(e,s,r,t,i);try{let l=pn(s,r[0],e.variableValues),d=e.contextValue,h=c(n,l,d,p),T;return oe(h)?T=h.then(g=>xt(e,a,r,p,i,g)):T=xt(e,a,r,p,i,h),oe(T)?T.then(void 0,g=>{let A=_t(g,r,W(i));return vn(A,a,e)}):T}catch(l){let d=_t(l,r,W(i));return vn(d,a,e)}}function Cs(e,t,n,r,i){return{fieldName:t.name,fieldNodes:n,returnType:t.type,parentType:r,path:i,schema:e.schema,fragments:e.fragments,rootValue:e.rootValue,operation:e.operation,variableValues:e.variableValues}}function vn(e,t,n){if(b(t))throw e;return n.errors.push(e),null}function xt(e,t,n,r,i,o){if(o instanceof Error)throw o;if(b(t)){let s=xt(e,t.ofType,n,r,i,o);if(s===null)throw new Error(`Cannot return null for non-nullable field ${r.parentType.name}.${r.fieldName}.`);return s}if(o==null)return null;if(w(t))return Ms(e,t,n,r,i,o);if(J(t))return Ps(t,o);if(ne(t))return Us(e,t,n,r,i,o);if(O(t))return qr(e,t,n,r,i,o);k(!1,"Cannot complete value of unexpected output type: "+y(t))}function Ms(e,t,n,r,i,o){if(!et(o))throw new f(`Expected Iterable, but did not find one for field "${r.parentType.name}.${r.fieldName}".`);let s=t.ofType,a=!1,c=Array.from(o,(p,l)=>{let d=Ue(i,l,void 0);try{let h;return oe(p)?h=p.then(T=>xt(e,s,n,r,d,T)):h=xt(e,s,n,r,d,p),oe(h)?(a=!0,h.then(void 0,T=>{let g=_t(T,n,W(d));return vn(g,s,e)})):h}catch(h){let T=_t(h,n,W(d));return vn(T,s,e)}});return a?Promise.all(c):c}function Ps(e,t){let n=e.serialize(t);if(n==null)throw new Error(`Expected \`${y(e)}.serialize(${y(t)})\` to return non-nullable value, returned: ${y(n)}`);return n}function Us(e,t,n,r,i,o){var s;let a=(s=t.resolveType)!==null&&s!==void 0?s:e.typeResolver,c=e.contextValue,p=a(o,c,r,t);return oe(p)?p.then(l=>qr(e,zi(l,e,t,n,r,o),n,r,i,o)):qr(e,zi(p,e,t,n,r,o),n,r,i,o)}function zi(e,t,n,r,i,o){if(e==null)throw new f(`Abstract type "${n.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}". Either the "${n.name}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`,r);if(O(e))throw new f("Support for returning GraphQLObjectType from resolveType was removed in graphql-js@16.0.0 please return type name instead.");if(typeof e!="string")throw new f(`Abstract type "${n.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}" with value ${y(o)}, received "${y(e)}".`);let s=t.schema.getType(e);if(s==null)throw new f(`Abstract type "${n.name}" was resolved to a type "${e}" that does not exist inside the schema.`,{nodes:r});if(!O(s))throw new f(`Abstract type "${n.name}" was resolved to a non-object type "${e}".`,{nodes:r});if(!t.schema.isSubType(n,s))throw new f(`Runtime Object type "${s.name}" is not a possible type for "${n.name}".`,{nodes:r});return s}function qr(e,t,n,r,i,o){let s=ws(e,t,n);if(t.isTypeOf){let a=t.isTypeOf(o,e.contextValue,r);if(oe(a))return a.then(c=>{if(!c)throw Xi(t,o,n);return En(e,t,o,i,s)});if(!a)throw Xi(t,o,n)}return En(e,t,o,i,s)}function Xi(e,t,n){return new f(`Expected value of type "${e.name}" but got: ${y(t)}.`,{nodes:n})}var Yr=function(e,t,n,r){if(j(e)&&typeof e.__typename=="string")return e.__typename;let i=n.schema.getPossibleTypes(r),o=[];for(let s=0;s<i.length;s++){let a=i[s];if(a.isTypeOf){let c=a.isTypeOf(e,t,n);if(oe(c))o[s]=c;else if(c)return a.name}}if(o.length)return Promise.all(o).then(s=>{for(let a=0;a<s.length;a++)if(s[a])return i[a].name})},Nn=function(e,t,n,r){if(j(e)||typeof e=="function"){let i=e[r.fieldName];return typeof i=="function"?e[r.fieldName](t,n,r):i}};function $s(e,t,n){let r=n.name.value;return r===Fe.name&&e.getQueryType()===t?Fe:r===ke.name&&e.getQueryType()===t?ke:r===Ce.name?Ce:t.getFields()[r]}import{OperationOutcomeError as z,Operator as ca,allOk as Wi,badRequest as Se,created as Zi,deepClone as ot,evalFhirPath as eo,generateId as to,globalSchema as ua,matchesSearchRequest as pa,multipleMatches as Hr,normalizeOperationOutcome as la,notFound as bn,preconditionFailed as fa,stringify as da}from"@medplum/core";import{applyPatch as ma}from"rfc6902";var ha=(n=>(n.READER="reader",n.WRITER="writer",n))(ha||{}),Jr=class{async searchOne(t){return(await this.search({...t,count:1})).entry?.[0]?.resource}async searchResources(t){return(await this.search(t)).entry?.map(r=>r.resource)??[]}async conditionalCreate(t,n,r){if(n.resourceType!==t.resourceType)throw new z(Se("Search type must match resource type for conditional update"));return n.count=2,n.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(n);if(i.length===1){let o=i[0];if(!r?.assignedId&&t.id&&t.id!==o.id)throw new z(Se("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:i[0],outcome:Wi}}else if(i.length>1)throw new z(Hr);return t=await this.createResource(t,r),{resource:t,outcome:Zi}},{serializable:!0})}async conditionalUpdate(t,n,r){if(n.resourceType!==t.resourceType)throw new z(Se("Search type must match resource type for conditional update"));return n.count=2,n.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(n);if(i.length===0){if(t.id&&!r?.assignedId)throw new z(Se("Cannot perform create as update with client-assigned ID",t.resourceType+".id"));return t=await this.createResource(t,r),{resource:t,outcome:Zi}}else if(i.length>1)throw new z(Hr);let o=i[0];if(t.id&&t.id!==o.id)throw new z(Se("Resource ID did not match resolved ID",t.resourceType+".id"));return t.id=o.id,t=await this.updateResource(t,r),{resource:t,outcome:Wi}},{serializable:!0})}async conditionalDelete(t){t.count=2,t.sortRules=void 0,await this.withTransaction(async()=>{let n=await this.searchResources(t);if(n.length>1)throw new z(Hr);if(!n.length)return;let r=n[0];await this.deleteResource(r.resourceType,r.id)})}},no=class extends Jr{constructor(){super(),this.resources=new Map,this.history=new Map}clear(){this.resources.clear(),this.history.clear()}setMode(t){}async createResource(t){let n=JSON.parse(da(t));n.id||(n.id=this.generateId()),n.meta||(n.meta={}),n.meta.versionId||(n.meta.versionId=to()),n.meta.lastUpdated||(n.meta.lastUpdated=new Date().toISOString());let{resourceType:r,id:i}=n,o=this.resources.get(r);o||(o=new Map,this.resources.set(r,o)),o.set(i,n);let s=this.history.get(r);s||(s=new Map,this.history.set(r,s));let a=s.get(i);return a||(a=[],s.set(i,a)),a.push(n),ot(n)}generateId(){return to()}updateResource(t,n){if(!t.id)throw new z(Se("Missing id"));if(n?.ifMatch){let i=n.ifMatch,o=this.resources.get(t.resourceType)?.get(t.id);if(!o)throw new z(bn);if(o.meta?.versionId!==i)throw new z(fa)}let r=ot(t);return r.meta&&(r.meta.versionId&&delete r.meta.versionId,r.meta.lastUpdated&&delete r.meta.lastUpdated),this.createResource(r)}async patchResource(t,n,r){let i=await this.readResource(t,n);try{let o=ma(i,r).filter(Boolean);if(o.length>0)throw new z(Se(o.map(s=>s.message).join(`
|
|
54
|
-
`)))}catch(o){throw new z(la(o))}return this.updateResource(i)}async readResource(t,n){let r=this.resources.get(t)?.get(n);if(!r)throw new z(bn);return ot(r)}async readReference(t){let n=t.reference?.split("/");if(!n||n.length!==2)throw new z(Se("Invalid reference"));return this.readResource(n[0],n[1])}async readReferences(t){return Promise.all(t.map(n=>this.readReference(n)))}async readHistory(t,n){await this.readResource(t,n);let r=(this.history.get(t)?.get(n)??[]).reverse().map(i=>({resource:ot(i)}));return{resourceType:"Bundle",type:"history",...r.length?{entry:r}:void 0}}async readVersion(t,n,r){await this.readResource(t,n);let i=this.history.get(t)?.get(n)?.find(o=>o.meta?.versionId===r);if(!i)throw new z(bn);return ot(i)}async search(t){let{resourceType:n}=t,r=this.resources.get(n)??new Map,i=[];for(let s of r.values())pa(s,t)&&i.push(s);let o=i.map(s=>({resource:ot(s)}));if(t.sortRules)for(let s of t.sortRules)o=o.sort((a,c)=>ya(a.resource,c.resource,s));return t.offset!==void 0&&(o=o.slice(t.offset)),t.count!==void 0&&(o=o.slice(0,t.count)),{resourceType:"Bundle",type:"searchset",...o.length?{entry:o}:void 0,total:i.length}}async searchByReference(t,n,r){t.filters??=[];let i={};for(let o of r){t.filters.push({code:n,operator:ca.EQUALS,value:o});let s=await this.search(t);i[o]=[];for(let a of s.entry??[])a.resource&&i[o].push(a.resource);t.filters.pop()}return i}async deleteResource(t,n){if(!this.resources.get(t)?.get(n))throw new z(bn);this.resources.get(t)?.delete(n)}withTransaction(t){return console.debug("WARN: MockRepository does not support transactions"),t(void 0)}},ya=(e,t,n)=>{let i=ua.types[e.resourceType]?.searchParams?.[n.code]?.expression;if(!i)return 0;let o=JSON.stringify(eo(i,e)),s=JSON.stringify(eo(i,t));return o.localeCompare(s)*(n.descending?-1:1)};import{capitalize as _a,getDataType as co,isResourceType as xa}from"@medplum/core";import{DEFAULT_MAX_SEARCH_COUNT as Ta,DEFAULT_SEARCH_COUNT as ga,getReferenceString as Ea,getSearchParameters as va,Operator as Na,parseSearchRequest as Ia}from"@medplum/core";import ba from"dataloader";var Rn={base64Binary:v,boolean:$,canonical:v,code:v,date:v,dateTime:v,decimal:ce,id:he,instant:v,integer:ce,markdown:v,number:ce,oid:v,positiveInt:ce,string:v,time:v,unsignedInt:ce,uri:v,url:v,uuid:v,xhtml:v,"http://hl7.org/fhirpath/System.Boolean":$,"http://hl7.org/fhirpath/System.Date":v,"http://hl7.org/fhirpath/System.DateTime":v,"http://hl7.org/fhirpath/System.Decimal":ce,"http://hl7.org/fhirpath/System.Integer":ce,"http://hl7.org/fhirpath/System.String":v,"http://hl7.org/fhirpath/System.Time":v};function ro(e,t,n){let r;if(t){let o=n._reference;delete n._reference,r={code:o,operator:Na.EQUALS,value:Ea(t)}}return n=Object.fromEntries(Object.entries(n).map(([o,s])=>[Ra(o),s])),{searchRequest:Ia(e,n),referenceFilter:r}}function io(e,t){let n=e.filters||[];e.filters=[t,...n]}function oo(e,t,n){let{searchRequest:r,referenceFilter:i}=ro(e,t,n);return i&&io(r,i),r}function zr(e,t){e.count=Math.min(e.count??ga,t??Ta)}function Ra(e){return e.startsWith("_")?e:e.replaceAll("_","-")}function Xr(e){return e.replaceAll("-","_")}function Oa(e){return JSON.stringify(e,(n,r)=>r&&typeof r=="object"&&!Array.isArray(r)?Object.keys(r).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=r[o],i),{}):r)}async function On(e,t,n,r){if(n.searchCount++,n.config?.graphqlMaxSearches&&n.searchCount>n.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=r.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=ro(o,e,t);zr(s,n.config?.graphqlMaxSearches);let c=n.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&io(s,a),(await n.repo.search(s)).entry?.map(h=>h.resource);let p=Oa(s);return(n.searchDataLoaders[p]??=Sa(n.repo,s,c)).load(a)}function Sa(e,t,n){return new ba(async r=>{let i=await e.searchByReference(t,r[0].code,r.map(o=>o.value));return r.map(o=>i[o.value])},{maxBatchSize:n})}function Lt(e){let t={_count:{type:ae,description:"Specify how many elements to return from a repeating list."},_offset:{type:ae,description:"Specify the offset to start at for a repeating element."},_sort:{type:v,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:v,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:v,description:"Select resources based on the last time they were changed."},_filter:{type:v,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."}},n=va(e);if(n)for(let[r,i]of Object.entries(n))t[Xr(r)]={type:v,description:i.description};return t}function Kr(e,t){return e.fieldNodes.some(n=>n.selectionSet?.selections.some(r=>r.kind===u.FIELD&&r.name.value===t))}function so(e){return{resourceType:"OperationOutcome",issue:e.map(t=>({severity:"error",code:"invalid",details:{text:t.message}}))}}var ao={...Rn};function wt(e,t){let n=ao[e];return n||(n=La(e,t),ao[e]=n),n}function La(e,t){let n=co(e);return new Ae({name:e+t,description:n.description,fields:()=>wa(e,t)})}function wa(e,t){let n={};if(xa(e)){let r={description:"The type of resource",type:v};n.resourceType=r}return Da(e,n,t),n}function Da(e,t,n){let r=co(e);for(let[i,o]of Object.entries(r.elements))for(let s of o.type)Aa(t,i,o,s,n)}function Aa(e,t,n,r,i){let o=r.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=n.type[0].code);let s={description:n.description,type:wt(o,i)};n.max>1&&(s.type=new D(new I(wt(o,i)))),n.min>0&&!t.endsWith("[x]")&&(s.type=new I(s.type));let a=t.split(".").pop().replace("[x]",_a(r.code));e[a]=s}import{capitalize as uo,evalFhirPathTyped as Fa,getDataType as po,getResourceTypes as lo,getSearchParameters as ka,isLowerCase as Ca,isReference as Ma,isResourceTypeSchema as Pa,normalizeOperationOutcome as Ua,OperationOutcomeError as $a,toJsBoolean as Va,toTypedValue as Ga,tryGetDataType as ja}from"@medplum/core";var Sn={...Rn};function Ge(e){let t=Sn[e];return t||(t=Wr(e),Sn[e]=t),t}function Wr(e){if(e==="ResourceList")return new De({name:"ResourceList",types:()=>lo().map(Ge).filter(n=>!!n),resolveType:Wa});let t=po(e);return new Q({name:e,description:t.description,fields:()=>Qa(e)})}function Qa(e){let t={};return Ba(e,t),Ja(e,t),t}function Ba(e,t){let n=po(e);Pa(n)&&(t.resourceType={type:new I(v),description:"Resource Type"}),e==="Reference"&&(t.resource={description:"Reference",type:Ge("ResourceList"),resolve:Ka});for(let[r,i]of Object.entries(n.elements))for(let o of i.type)qa(t,r,i,o)}function qa(e,t,n,r){let i=r.code;(i==="Element"||i==="BackboneElement")&&(i=n.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:n.description,type:za(n,i,t),resolve:Xa};n.max>1&&(o.args=Ya(i));let s=t.split(".").pop().replace("[x]",uo(r.code));e[s]=o}function Ya(e){let t={_count:{type:ae,description:"Specify how many elements to return from a repeating list."},_offset:{type:ae,description:"Specify the offset to start at for a repeating element."}};if(!Ca(e.charAt(0))){t.fhirpath={type:v,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let n=ja(e);if(n?.elements)for(let[r,i]of Object.entries(n.elements))for(let o of i.type)Ha(t,r,i,o)}return t}function Ha(e,t,n,r){let i=r.code,o=t.replace("[x]",uo(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":e[o]={type:v,description:n.description};break}}function Ja(e,t){for(let n of lo()){let r=Ge(n),i=ka(n),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(e)&&(o[Xr(a)]={value:a},s++);if(s>0){let a=new Ee({name:e+"_"+n+"_reference",values:o}),c=Lt(n);c._reference={type:new I(a),description:`Specify which property to use for reverse lookup for ${n}`},t[n+"List"]={type:new D(r),args:c,resolve:On}}}}function za(e,t,n){let r=Ge(t);return e.max>1&&(r=new D(new I(r))),e.min!==0&&!n.endsWith("[x]")&&(r=new I(r)),r}async function Xa(e,t,n,r){let i=e?.[r.fieldName];if(!t||!i)return i;let{_offset:o,_count:s,fhirpath:a,...c}=t,p=i;for(let[l,d]of Object.entries(c))p=p.filter(h=>h[l]===d);return a&&(p=p.filter(l=>Va(Fa(a,[Ga(l)])))),o&&(p=p.slice(o)),s&&(p=p.slice(0,s)),p}async function Ka(e,t,n){if(Ma(e))try{return await n.dataLoader.load(e)}catch(r){throw new $a(Ua(r),r)}}function Wa(e){let t=e?.resourceType;if(t)return Ge(t).name}var oc=new nc,Zr;async function mo(e,t,n,r){let{query:i,operationName:o,variables:s}=e.body;if(!i)return[Dt("Must provide query.")];let a;try{a=$t(i)}catch{return[Dt("GraphQL syntax error.")]}let c=cc(),p=[...it,Ec(n,e.config?.graphqlMaxDepth),Nc(n)],l=Tn(c,a,p);if(l.length>0)return[so(l)];let d=sc(i);if(d&&!n.options?.introspectionEnabled)return[tc];!r?.batch&&!ac(i)&&t.setMode("reader");let h=new ic(g=>t.readReferences(g)),T=d&&oc.get(i);if(!T){let g={repo:t,config:e.config,dataLoader:h,searchCount:0,searchDataLoaders:Object.create(null)};T=await In({schema:c,document:a,contextValue:g,operationName:o,variableValues:s})}return[Za,T]}function sc(e){return e.includes("query IntrospectionQuery")||e.includes("__schema")}function ac(e){return e.includes("mutation")}function cc(){return Zr||(Zr=uc()),Zr}function uc(){for(let n of fo())Sn[n]=Wr(n);let e={},t={};for(let n of fo()){let r=Ge(n);e[n]={type:r,args:{id:{type:new I(he),description:n+" ID"}},resolve:mc},e[n+"List"]={type:new D(r),args:Lt(n),resolve:On},e[n+"Connection"]={type:fc(n,r),args:Lt(n),resolve:dc},t[n+"Create"]={type:r,args:pc(n),resolve:hc},t[n+"Update"]={type:r,args:lc(n),resolve:yc},t[n+"Delete"]={type:r,args:{id:{type:new I(he),description:n+" ID"}},resolve:Tc}}return new Me({query:new Q({name:"QueryType",fields:e}),mutation:new Q({name:"MutationType",fields:t})})}function pc(e){return{res:{type:new I(wt(e,"Create")),description:e+" Create"}}}function lc(e){return{id:{type:new I(he),description:e+" ID"},res:{type:new I(wt(e,"Update")),description:e+" Update"}}}function fc(e,t){return new Q({name:e+"Connection",fields:{count:{type:ae},offset:{type:ae},pageSize:{type:ae},first:{type:v},previous:{type:v},next:{type:v},last:{type:v},edges:{type:new D(new Q({name:e+"ConnectionEdge",fields:{mode:{type:v},score:{type:ce},resource:{type:t}}}))}}})}async function dc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-10),s=oo(o,e,t);Kr(r,"count")&&(s.total="accurate"),Kr(r,"edges")||(s.count=0),zr(s,n.config?.graphqlMaxSearches);let a=await n.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??ec,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource}))}}async function mc(e,t,n,r){try{return await n.dataLoader.load({reference:`${r.fieldName}/${t.id}`})}catch(i){throw new _n(rc(i),i)}}async function hc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6),s=t.res;if(s.resourceType!==o)throw new _n(Dt("Invalid resourceType"));return n.repo.createResource(s)}async function yc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6),s=t.res,a=t.id;if(s.resourceType!==o)throw new _n(Dt("Invalid resourceType"));if(a!==s.id)throw new _n(Dt("Invalid ID"));return n.repo.updateResource(s)}async function Tc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6);await n.repo.deleteResource(o,t.id)}var gc=12,Ec=(e,t=gc)=>n=>new ei(n,e,t),ei=class{constructor(t,n,r){this.context=t,this.router=n,this.fragmentDepths=Object.create(null),this.maxDepth=r}OperationDefinition(t){let n=this.getDepth(...t.selectionSet.selections);n.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:n.depth,limit:this.maxDepth,query:t.loc?.source?.body})}getDepth(...t){let n={depth:-1};for(let r of t){let i={depth:0};if(r.kind===u.FIELD)r.selectionSet?.selections?(i=this.getDepth(...r.selectionSet.selections),i.depth+=1):i={depth:0,node:r};else if(r.kind===u.FRAGMENT_SPREAD){let o=r.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 r.kind===u.INLINE_FRAGMENT&&(i=this.getDepth(...r.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>n.depth&&(n=i)}return n}},vc=1e4,Nc=(e,t)=>n=>new ti(n,e,t),ti=class{constructor(t,n,r){this.context=t,this.maxCost=r?.maxCost??vc,this.debug=r?.debug??!1,this.router=n,this.fragmentCosts=Object.create(null)}OperationDefinition(t){let n=0;for(let r of t.selectionSet.selections){let i=process.hrtime.bigint(),o=this.calculateCost(r);n+=o,this.log(r.kind,"node has final cost",o,"(",process.hrtime.bigint()-i,"ns)"),n>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:n,limit:this.maxCost,query:t.loc?.source?.body})}}calculateCost(...t){let n=0;for(let r of t){if(r.kind===u.FIELD&&r.selectionSet){let i=0,o=1;Ic(r)?(this.log("Found search field",r.name.value),i=8,o=this.getCount(r.arguments)??20):bc(r)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...r.selectionSet.selections);s&&this.log("Field",r.name.value,"costs",s),n+=s}else if(r.kind===u.FRAGMENT_SPREAD){let i=r.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),n+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),n+=a}}else if(r.kind===u.INLINE_FRAGMENT){let i=this.calculateCost(...r.selectionSet.selections);this.log("Inline fragment on",r.typeCondition?.name.value,"costs",i),n+=i}if(n>this.maxCost)return n}return n}getCount(t){let n=t?.find(r=>r.name.value==="_count");if(n?.value.kind===u.INT)return parseInt(n.value.value,10)}log(...t){this.debug&&console.log(...t)}};function Ic(e){return e.name.value.endsWith("List")}function bc(e){return e.name.value==="resource"}var xn=class{constructor(){this.routes=[]}add(t,n,r,i){let o=n.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:t,path:o,handler:r,data:i})}find(t,n){let r=n.indexOf("?"),i=r>-1,o=n.substring(0,i?r:n.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let p=Rc(c,t,o);p>a&&(s=c,a=p)}if(s)return{handler:s.handler,path:o.join("/"),params:Oc(s,o),query:i?Sc(n):void 0,data:s.data}}};function Rc(e,t,n){if(t!==e.method||n.length!==e.path.length)return-1;let r=0;for(let i=0;i<n.length;i++)if(!e.path[i].param){if(n[i]!==e.path[i].value)return-1;r++}return r}function Oc(e,t){let n=Object.create(null);for(let r=0;r<t.length;r++)e.path[r].param&&(n[e.path[r].value]=t[r]);return n}function Sc(e){let t=new URL(e,"https://example.com/"),n=Object.create(null),r=t.searchParams;for(let i of r.keys()){let o=r.getAll(i);n[i]=o.length===1?o[0]:o}return n}async function Fc(e,t,n){let r=e.body;if(r.resourceType!=="Bundle")return[_e("Not a bundle")];let i=await ui(e,t,n,r);return[ge,i]}async function kc(e,t,n,r){ni(e,t,r);let{resourceType:i}=e.params,o=await t.search(st(i,e.query));return[ge,o]}async function Cc(e,t,n,r){ni(e,t,r);let i=st("MultipleTypes",e.query);if(!i.types||i.types.length===0)return[_e("No types specified")];let o=await t.search(i);return[ge,o]}async function Mc(e,t,n,r){ni(e,t,r);let{resourceType:i}=e.params,o=e.body,s=await t.search(st(i,o));return[ge,s]}function ni(e,t,n){!n?.batch&&e.config?.searchOnReader&&t.setMode("reader")}async function Pc(e,t,n,r){let{resourceType:i}=e.params,o=e.body,s=!!r?.batch;if(e.query?._account&&typeof e.query._account=="string"&&(o.meta=o.meta||{},o.meta.account={reference:e.query._account}),e.headers?.["if-none-exist"]){let a=Ac(e.headers["if-none-exist"]),c=await t.conditionalCreate(o,st(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return Uc(i,o,t,{assignedId:s})}async function Uc(e,t,n,r){if(t.resourceType!==e)return[_e(`Incorrect resource type: expected ${e}, but found ${t.resourceType||"<EMPTY>"}`)];let i=await n.createResource(t,r);return[Lc,i]}async function $c(e,t){let{resourceType:n,id:r}=e.params,i=await t.readResource(n,r);return[ge,i]}async function Vc(e,t){let{resourceType:n,id:r}=e.params,i=await t.readHistory(n,r);return[ge,i]}async function Gc(e,t){let{resourceType:n,id:r,vid:i}=e.params,o=await t.readVersion(n,r,i);return[ge,o]}async function jc(e,t){let{resourceType:n,id:r}=e.params,i=e.body;return Qc(n,r,i,t,{ifMatch:Jc(e.headers?.["if-match"])})}async function Qc(e,t,n,r,i){if(n.resourceType!==e)return[_e("Incorrect resource type")];if(n.id!==t)return[_e("Incorrect resource ID")];let o=await r.updateResource(n,i);return[ge,o]}async function Bc(e,t,n,r){let{resourceType:i}=e.params,o=e.body,s=st(i,e.query),a=await t.conditionalUpdate(o,s,{assignedId:r?.batch});return[a.outcome,a.resource]}async function qc(e,t){let{resourceType:n,id:r}=e.params;return await t.deleteResource(n,r),[ge]}async function Yc(e,t){let{resourceType:n}=e.params,r=st(n,e.query);return await t.conditionalDelete(r),[ge]}async function Hc(e,t){let{resourceType:n,id:r}=e.params,i=e.body;if(!i)return[_e("Empty patch body")];if(!Array.isArray(i))return[_e("Patch body must be an array")];let o=await t.patchResource(n,r,i);return[ge,o]}var ho=class extends _c{constructor(n={}){super();this.router=new xn;this.options=n,this.router.add("GET","",Cc,{interaction:"search-system"}),this.router.add("POST","",Fc,{interaction:"batch"}),this.router.add("GET",":resourceType",kc,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",Mc,{interaction:"search-type"}),this.router.add("POST",":resourceType",Pc,{interaction:"create"}),this.router.add("GET",":resourceType/:id",$c,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",Vc,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",Gc,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",jc,{interaction:"update"}),this.router.add("PUT",":resourceType",Bc,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",qc,{interaction:"delete"}),this.router.add("DELETE",":resourceType",Yc,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",Hc,{interaction:"patch"}),this.router.add("POST","$graphql",mo,{interaction:"operation"})}add(n,r,i,o){this.router.add(n,r,i,{interaction:o??"operation"})}find(n,r){return this.router.find(n,r)}async handleRequest(n,r){let i=n.url;if(n.pathname)throw new xc(_e("FhirRequest must specify url instead of pathname"));let o=this.find(n.method,i);if(!o)return[Dc];let{handler:s,path:a,params:c,query:p}=o;n.params=c,n.pathname=a,p&&(n.query=p);try{return await s(n,r,this)}catch(l){return[wc(l)]}}log(n,r,i){let o={type:n,message:r,data:i};this.dispatchEvent(o)}};function Jc(e){if(!e)return;let t=/"([^"]+)"/.exec(e);return t?t[1]:void 0}function bg(e,t,n){return{method:e,url:t,pathname:"",query:{},params:{},body:n}}export{Jr as FhirRepository,ho as FhirRouter,no as MemoryRepository,ha as RepositoryMode,xn as Router,Uc as createResourceImpl,bg as makeSimpleRequest,Qc as updateResourceImpl};
|
|
54
|
+
`)))}catch(o){throw new z(la(o))}return this.updateResource(i)}async readResource(t,n){let r=this.resources.get(t)?.get(n);if(!r)throw new z(bn);return ot(r)}async readReference(t){let n=t.reference?.split("/");if(!n||n.length!==2)throw new z(Se("Invalid reference"));return this.readResource(n[0],n[1])}async readReferences(t){return Promise.all(t.map(n=>this.readReference(n)))}async readHistory(t,n){await this.readResource(t,n);let r=(this.history.get(t)?.get(n)??[]).reverse().map(i=>({resource:ot(i)}));return{resourceType:"Bundle",type:"history",...r.length?{entry:r}:void 0}}async readVersion(t,n,r){await this.readResource(t,n);let i=this.history.get(t)?.get(n)?.find(o=>o.meta?.versionId===r);if(!i)throw new z(bn);return ot(i)}async search(t){let{resourceType:n}=t,r=this.resources.get(n)??new Map,i=[];for(let s of r.values())pa(s,t)&&i.push(s);let o=i.map(s=>({resource:ot(s)}));if(t.sortRules)for(let s of t.sortRules)o=o.sort((a,c)=>ya(a.resource,c.resource,s));return t.offset!==void 0&&(o=o.slice(t.offset)),t.count!==void 0&&(o=o.slice(0,t.count)),{resourceType:"Bundle",type:"searchset",...o.length?{entry:o}:void 0,total:i.length}}async searchByReference(t,n,r){t.filters??=[];let i={};for(let o of r){t.filters.push({code:n,operator:ca.EQUALS,value:o});let s=await this.search(t);i[o]=[];for(let a of s.entry??[])a.resource&&i[o].push(a.resource);t.filters.pop()}return i}async deleteResource(t,n){if(!this.resources.get(t)?.get(n))throw new z(bn);this.resources.get(t)?.delete(n)}withTransaction(t){return console.debug("WARN: MockRepository does not support transactions"),t(void 0)}},ya=(e,t,n)=>{let i=ua.types[e.resourceType]?.searchParams?.[n.code]?.expression;if(!i)return 0;let o=JSON.stringify(eo(i,e)),s=JSON.stringify(eo(i,t));return o.localeCompare(s)*(n.descending?-1:1)};import{capitalize as _a,getDataType as co,isResourceType as xa}from"@medplum/core";import{DEFAULT_MAX_SEARCH_COUNT as Ta,DEFAULT_SEARCH_COUNT as ga,getReferenceString as Ea,getSearchParameters as va,Operator as Na,parseSearchRequest as Ia}from"@medplum/core";import ba from"dataloader";var Rn={base64Binary:v,boolean:$,canonical:v,code:v,date:v,dateTime:v,decimal:ce,id:he,instant:v,integer:ce,markdown:v,number:ce,oid:v,positiveInt:ce,string:v,time:v,unsignedInt:ce,uri:v,url:v,uuid:v,xhtml:v,"http://hl7.org/fhirpath/System.Boolean":$,"http://hl7.org/fhirpath/System.Date":v,"http://hl7.org/fhirpath/System.DateTime":v,"http://hl7.org/fhirpath/System.Decimal":ce,"http://hl7.org/fhirpath/System.Integer":ce,"http://hl7.org/fhirpath/System.String":v,"http://hl7.org/fhirpath/System.Time":v};function ro(e,t,n){let r;if(t){let o=n._reference;delete n._reference,r={code:o,operator:Na.EQUALS,value:Ea(t)}}return n=Object.fromEntries(Object.entries(n).map(([o,s])=>[Ra(o),s])),{searchRequest:Ia(e,n),referenceFilter:r}}function io(e,t){let n=e.filters||[];e.filters=[t,...n]}function oo(e,t,n){let{searchRequest:r,referenceFilter:i}=ro(e,t,n);return i&&io(r,i),r}function zr(e,t){e.count=Math.min(e.count??ga,t??Ta)}function Ra(e){return e.startsWith("_")?e:e.replaceAll("_","-")}function Xr(e){return e.replaceAll("-","_")}function Oa(e){return JSON.stringify(e,(n,r)=>r&&typeof r=="object"&&!Array.isArray(r)?Object.keys(r).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=r[o],i),{}):r)}async function On(e,t,n,r){if(n.searchCount++,n.config?.graphqlMaxSearches&&n.searchCount>n.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=r.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=ro(o,e,t);zr(s,n.config?.graphqlMaxSearches);let c=n.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&io(s,a),(await n.repo.search(s)).entry?.map(h=>h.resource);let p=Oa(s);return(n.searchDataLoaders[p]??=Sa(n.repo,s,c)).load(a)}function Sa(e,t,n){return new ba(async r=>{let i=await e.searchByReference(t,r[0].code,r.map(o=>o.value));return r.map(o=>i[o.value])},{maxBatchSize:n})}function Lt(e){let t={_count:{type:ae,description:"Specify how many elements to return from a repeating list."},_offset:{type:ae,description:"Specify the offset to start at for a repeating element."},_sort:{type:v,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:v,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:v,description:"Select resources based on the last time they were changed."},_filter:{type:v,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."}},n=va(e);if(n)for(let[r,i]of Object.entries(n))t[Xr(r)]={type:v,description:i.description};return t}function Kr(e,t){return e.fieldNodes.some(n=>n.selectionSet?.selections.some(r=>r.kind===u.FIELD&&r.name.value===t))}function so(e){return{resourceType:"OperationOutcome",issue:e.map(t=>({severity:"error",code:"invalid",details:{text:t.message}}))}}var ao={...Rn};function wt(e,t){let n=ao[e];return n||(n=La(e,t),ao[e]=n),n}function La(e,t){let n=co(e);return new Ae({name:e+t,description:n.description,fields:()=>wa(e,t)})}function wa(e,t){let n={};if(xa(e)){let r={description:"The type of resource",type:v};n.resourceType=r}return Da(e,n,t),n}function Da(e,t,n){let r=co(e);for(let[i,o]of Object.entries(r.elements))for(let s of o.type)Aa(t,i,o,s,n)}function Aa(e,t,n,r,i){let o=r.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=n.type[0].code);let s={description:n.description,type:wt(o,i)};n.max>1&&(s.type=new D(new I(wt(o,i)))),n.min>0&&!t.endsWith("[x]")&&(s.type=new I(s.type));let a=t.split(".").pop().replace("[x]",_a(r.code));e[a]=s}import{capitalize as uo,evalFhirPathTyped as Fa,getDataType as po,getResourceTypes as lo,getSearchParameters as ka,isLowerCase as Ca,isReference as Ma,isResourceTypeSchema as Pa,normalizeOperationOutcome as Ua,OperationOutcomeError as $a,toJsBoolean as Va,toTypedValue as Ga,tryGetDataType as ja}from"@medplum/core";var Sn={...Rn};function Ge(e){let t=Sn[e];return t||(t=Wr(e),Sn[e]=t),t}function Wr(e){if(e==="ResourceList")return new De({name:"ResourceList",types:()=>lo().map(Ge).filter(n=>!!n),resolveType:Wa});let t=po(e);return new Q({name:e,description:t.description,fields:()=>Qa(e)})}function Qa(e){let t={};return Ba(e,t),Ja(e,t),t}function Ba(e,t){let n=po(e);Pa(n)&&(t.resourceType={type:new I(v),description:"Resource Type"}),e==="Reference"&&(t.resource={description:"Reference",type:Ge("ResourceList"),resolve:Ka});for(let[r,i]of Object.entries(n.elements))for(let o of i.type)qa(t,r,i,o)}function qa(e,t,n,r){let i=r.code;(i==="Element"||i==="BackboneElement")&&(i=n.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:n.description,type:za(n,i,t),resolve:Xa};n.max>1&&(o.args=Ya(i));let s=t.split(".").pop().replace("[x]",uo(r.code));e[s]=o}function Ya(e){let t={_count:{type:ae,description:"Specify how many elements to return from a repeating list."},_offset:{type:ae,description:"Specify the offset to start at for a repeating element."}};if(!Ca(e.charAt(0))){t.fhirpath={type:v,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let n=ja(e);if(n?.elements)for(let[r,i]of Object.entries(n.elements))for(let o of i.type)Ha(t,r,i,o)}return t}function Ha(e,t,n,r){let i=r.code,o=t.replace("[x]",uo(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":e[o]={type:v,description:n.description};break}}function Ja(e,t){for(let n of lo()){let r=Ge(n),i=ka(n),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(e)&&(o[Xr(a)]={value:a},s++);if(s>0){let a=new Ee({name:e+"_"+n+"_reference",values:o}),c=Lt(n);c._reference={type:new I(a),description:`Specify which property to use for reverse lookup for ${n}`},t[n+"List"]={type:new D(r),args:c,resolve:On}}}}function za(e,t,n){let r=Ge(t);return e.max>1&&(r=new D(new I(r))),e.min!==0&&!n.endsWith("[x]")&&(r=new I(r)),r}async function Xa(e,t,n,r){let i=e?.[r.fieldName];if(!t||!i)return i;let{_offset:o,_count:s,fhirpath:a,...c}=t,p=i;for(let[l,d]of Object.entries(c))p=p.filter(h=>h[l]===d);return a&&(p=p.filter(l=>Va(Fa(a,[Ga(l)])))),o&&(p=p.slice(o)),s&&(p=p.slice(0,s)),p}async function Ka(e,t,n){if(Ma(e))try{return await n.dataLoader.load(e)}catch(r){throw new $a(Ua(r),r)}}function Wa(e){let t=e?.resourceType;if(t)return Ge(t).name}var sc=new rc,Zr;async function mo(e,t,n,r){let{query:i,operationName:o,variables:s}=e.body;if(!i)return[Dt("Must provide query.")];let a;try{a=$t(i)}catch{return[Dt("GraphQL syntax error.")]}let c=uc(),p=[...it,vc(n,e.config?.graphqlMaxDepth),Ic(n)],l=Tn(c,a,p);if(l.length>0)return[so(l)];let d=ac(i);if(d&&!n.options?.introspectionEnabled)return[nc];!r?.batch&&!cc(i)&&t.setMode("reader");let h=new oc(g=>t.readReferences(g)),T=d&&sc.get(i);if(!T){let g={repo:t,config:e.config,dataLoader:h,searchCount:0,searchDataLoaders:Object.create(null)};T=await In({schema:c,document:a,contextValue:g,operationName:o,variableValues:s})}return[Za,T,{contentType:ec.JSON}]}function ac(e){return e.includes("query IntrospectionQuery")||e.includes("__schema")}function cc(e){return e.includes("mutation")}function uc(){return Zr||(Zr=pc()),Zr}function pc(){for(let n of fo())Sn[n]=Wr(n);let e={},t={};for(let n of fo()){let r=Ge(n);e[n]={type:r,args:{id:{type:new I(he),description:n+" ID"}},resolve:hc},e[n+"List"]={type:new D(r),args:Lt(n),resolve:On},e[n+"Connection"]={type:dc(n,r),args:Lt(n),resolve:mc},t[n+"Create"]={type:r,args:lc(n),resolve:yc},t[n+"Update"]={type:r,args:fc(n),resolve:Tc},t[n+"Delete"]={type:r,args:{id:{type:new I(he),description:n+" ID"}},resolve:gc}}return new Me({query:new Q({name:"QueryType",fields:e}),mutation:new Q({name:"MutationType",fields:t})})}function lc(e){return{res:{type:new I(wt(e,"Create")),description:e+" Create"}}}function fc(e){return{id:{type:new I(he),description:e+" ID"},res:{type:new I(wt(e,"Update")),description:e+" Update"}}}function dc(e,t){return new Q({name:e+"Connection",fields:{count:{type:ae},offset:{type:ae},pageSize:{type:ae},first:{type:v},previous:{type:v},next:{type:v},last:{type:v},edges:{type:new D(new Q({name:e+"ConnectionEdge",fields:{mode:{type:v},score:{type:ce},resource:{type:t}}}))}}})}async function mc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-10),s=oo(o,e,t);Kr(r,"count")&&(s.total="accurate"),Kr(r,"edges")||(s.count=0),zr(s,n.config?.graphqlMaxSearches);let a=await n.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??tc,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource}))}}async function hc(e,t,n,r){try{return await n.dataLoader.load({reference:`${r.fieldName}/${t.id}`})}catch(i){throw new _n(ic(i),i)}}async function yc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6),s=t.res;if(s.resourceType!==o)throw new _n(Dt("Invalid resourceType"));return n.repo.createResource(s)}async function Tc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6),s=t.res,a=t.id;if(s.resourceType!==o)throw new _n(Dt("Invalid resourceType"));if(a!==s.id)throw new _n(Dt("Invalid ID"));return n.repo.updateResource(s)}async function gc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6);await n.repo.deleteResource(o,t.id)}var Ec=12,vc=(e,t=Ec)=>n=>new ei(n,e,t),ei=class{constructor(t,n,r){this.context=t,this.router=n,this.fragmentDepths=Object.create(null),this.maxDepth=r}OperationDefinition(t){let n=this.getDepth(...t.selectionSet.selections);n.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:n.depth,limit:this.maxDepth,query:t.loc?.source?.body})}getDepth(...t){let n={depth:-1};for(let r of t){let i={depth:0};if(r.kind===u.FIELD)r.selectionSet?.selections?(i=this.getDepth(...r.selectionSet.selections),i.depth+=1):i={depth:0,node:r};else if(r.kind===u.FRAGMENT_SPREAD){let o=r.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 r.kind===u.INLINE_FRAGMENT&&(i=this.getDepth(...r.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>n.depth&&(n=i)}return n}},Nc=1e4,Ic=(e,t)=>n=>new ti(n,e,t),ti=class{constructor(t,n,r){this.context=t,this.maxCost=r?.maxCost??Nc,this.debug=r?.debug??!1,this.router=n,this.fragmentCosts=Object.create(null)}OperationDefinition(t){let n=0;for(let r of t.selectionSet.selections){let i=process.hrtime.bigint(),o=this.calculateCost(r);n+=o,this.log(r.kind,"node has final cost",o,"(",process.hrtime.bigint()-i,"ns)"),n>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:n,limit:this.maxCost,query:t.loc?.source?.body})}}calculateCost(...t){let n=0;for(let r of t){if(r.kind===u.FIELD&&r.selectionSet){let i=0,o=1;bc(r)?(this.log("Found search field",r.name.value),i=8,o=this.getCount(r.arguments)??20):Rc(r)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...r.selectionSet.selections);s&&this.log("Field",r.name.value,"costs",s),n+=s}else if(r.kind===u.FRAGMENT_SPREAD){let i=r.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),n+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),n+=a}}else if(r.kind===u.INLINE_FRAGMENT){let i=this.calculateCost(...r.selectionSet.selections);this.log("Inline fragment on",r.typeCondition?.name.value,"costs",i),n+=i}if(n>this.maxCost)return n}return n}getCount(t){let n=t?.find(r=>r.name.value==="_count");if(n?.value.kind===u.INT)return parseInt(n.value.value,10)}log(...t){this.debug&&console.log(...t)}};function bc(e){return e.name.value.endsWith("List")}function Rc(e){return e.name.value==="resource"}var xn=class{constructor(){this.routes=[]}add(t,n,r,i){let o=n.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:t,path:o,handler:r,data:i})}find(t,n){let r=n.indexOf("?"),i=r>-1,o=n.substring(0,i?r:n.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let p=Oc(c,t,o);p>a&&(s=c,a=p)}if(s)return{handler:s.handler,path:o.join("/"),params:Sc(s,o),query:i?_c(n):void 0,data:s.data}}};function Oc(e,t,n){if(t!==e.method||n.length!==e.path.length)return-1;let r=0;for(let i=0;i<n.length;i++)if(!e.path[i].param){if(n[i]!==e.path[i].value)return-1;r++}return r}function Sc(e,t){let n=Object.create(null);for(let r=0;r<t.length;r++)e.path[r].param&&(n[e.path[r].value]=t[r]);return n}function _c(e){let t=new URL(e,"https://example.com/"),n=Object.create(null),r=t.searchParams;for(let i of r.keys()){let o=r.getAll(i);n[i]=o.length===1?o[0]:o}return n}async function kc(e,t,n){let r=e.body;if(r.resourceType!=="Bundle")return[_e("Not a bundle")];let i=await ui(e,t,n,r);return[ge,i]}async function Cc(e,t,n,r){ni(e,t,r);let{resourceType:i}=e.params,o=await t.search(st(i,e.query));return[ge,o]}async function Mc(e,t,n,r){ni(e,t,r);let i=st("MultipleTypes",e.query);if(!i.types||i.types.length===0)return[_e("No types specified")];let o=await t.search(i);return[ge,o]}async function Pc(e,t,n,r){ni(e,t,r);let{resourceType:i}=e.params,o=e.body,s=await t.search(st(i,o));return[ge,s]}function ni(e,t,n){!n?.batch&&e.config?.searchOnReader&&t.setMode("reader")}async function Uc(e,t,n,r){let{resourceType:i}=e.params,o=e.body,s=!!r?.batch;if(e.query?._account&&typeof e.query._account=="string"&&(o.meta=o.meta||{},o.meta.account={reference:e.query._account}),e.headers?.["if-none-exist"]){let a=Fc(e.headers["if-none-exist"]),c=await t.conditionalCreate(o,st(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return $c(i,o,t,{assignedId:s})}async function $c(e,t,n,r){if(t.resourceType!==e)return[_e(`Incorrect resource type: expected ${e}, but found ${t.resourceType||"<EMPTY>"}`)];let i=await n.createResource(t,r);return[wc,i]}async function Vc(e,t){let{resourceType:n,id:r}=e.params,i=await t.readResource(n,r);return[ge,i]}async function Gc(e,t){let{resourceType:n,id:r}=e.params,i=await t.readHistory(n,r);return[ge,i]}async function jc(e,t){let{resourceType:n,id:r,vid:i}=e.params,o=await t.readVersion(n,r,i);return[ge,o]}async function Qc(e,t){let{resourceType:n,id:r}=e.params,i=e.body;return Bc(n,r,i,t,{ifMatch:zc(e.headers?.["if-match"])})}async function Bc(e,t,n,r,i){if(n.resourceType!==e)return[_e("Incorrect resource type")];if(n.id!==t)return[_e("Incorrect resource ID")];let o=await r.updateResource(n,i);return[ge,o]}async function qc(e,t,n,r){let{resourceType:i}=e.params,o=e.body,s=st(i,e.query),a=await t.conditionalUpdate(o,s,{assignedId:r?.batch});return[a.outcome,a.resource]}async function Yc(e,t){let{resourceType:n,id:r}=e.params;return await t.deleteResource(n,r),[ge]}async function Hc(e,t){let{resourceType:n}=e.params,r=st(n,e.query);return await t.conditionalDelete(r),[ge]}async function Jc(e,t){let{resourceType:n,id:r}=e.params,i=e.body;if(!i)return[_e("Empty patch body")];if(!Array.isArray(i))return[_e("Patch body must be an array")];let o=await t.patchResource(n,r,i);return[ge,o]}var ho=class extends xc{constructor(n={}){super();this.router=new xn;this.options=n,this.router.add("GET","",Mc,{interaction:"search-system"}),this.router.add("POST","",kc,{interaction:"batch"}),this.router.add("GET",":resourceType",Cc,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",Pc,{interaction:"search-type"}),this.router.add("POST",":resourceType",Uc,{interaction:"create"}),this.router.add("GET",":resourceType/:id",Vc,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",Gc,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",jc,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",Qc,{interaction:"update"}),this.router.add("PUT",":resourceType",qc,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",Yc,{interaction:"delete"}),this.router.add("DELETE",":resourceType",Hc,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",Jc,{interaction:"patch"}),this.router.add("POST","$graphql",mo,{interaction:"operation"})}add(n,r,i,o){this.router.add(n,r,i,{interaction:o??"operation"})}find(n,r){return this.router.find(n,r)}async handleRequest(n,r){let i=n.url;if(n.pathname)throw new Lc(_e("FhirRequest must specify url instead of pathname"));let o=this.find(n.method,i);if(!o)return[Ac];let{handler:s,path:a,params:c,query:p}=o;n.params=c,n.pathname=a,p&&(n.query=p);try{return await s(n,r,this)}catch(l){return[Dc(l)]}}log(n,r,i){let o={type:n,message:r,data:i};this.dispatchEvent(o)}};function zc(e){if(!e)return;let t=/"([^"]+)"/.exec(e);return t?t[1]:void 0}function Rg(e,t,n){return{method:e,url:t,pathname:"",query:{},params:{},body:n}}export{Jr as FhirRepository,ho as FhirRouter,no as MemoryRepository,ha as RepositoryMode,xn as Router,$c as createResourceImpl,Rg as makeSimpleRequest,Bc as updateResourceImpl};
|
|
55
55
|
//# sourceMappingURL=index.mjs.map
|