@icanbwell/bwell-sdk-ts 1.102.0 → 1.103.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/__version__.d.ts +1 -1
- package/dist/__version__.js +1 -1
- package/dist/api/base/financial/eob-document-request.d.ts +7 -0
- package/dist/api/base/financial/eob-document-request.js +16 -0
- package/dist/api/base/financial/financial-manager.d.ts +4 -1
- package/dist/api/base/financial/index.d.ts +1 -0
- package/dist/api/base/financial/index.js +1 -0
- package/dist/api/graphql-api/financial/graphql-financial-manager.d.ts +3 -1
- package/dist/api/graphql-api/financial/graphql-financial-manager.js +16 -0
- package/dist/graphql/operations/index.d.ts +9 -1
- package/dist/graphql/operations/index.js +13 -0
- package/dist/graphql/operations/types.d.ts +192 -97
- package/dist/graphql/schema.d.ts +8 -0
- package/package.json +1 -1
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ValidationRequest, Validator } from "../../../requests/index.js";
|
|
2
|
+
export type EOBDocumentRequestInput = {
|
|
3
|
+
claimId: string;
|
|
4
|
+
};
|
|
5
|
+
export declare class EOBDocumentRequest extends ValidationRequest<EOBDocumentRequestInput> {
|
|
6
|
+
protected validator: Validator<EOBDocumentRequestInput>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ValidationRequest, } from "../../../requests/index.js";
|
|
2
|
+
import { isBlank } from "../../../utils/string-utils.js";
|
|
3
|
+
import { isUndefined } from "../../../utils/type-utils.js";
|
|
4
|
+
class EOBDocumentRequestValidator {
|
|
5
|
+
validate(data, errors) {
|
|
6
|
+
if (isUndefined(data.claimId) || isBlank(data.claimId)) {
|
|
7
|
+
errors.add("The EOB document request must contain a claimId.");
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
export class EOBDocumentRequest extends ValidationRequest {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments);
|
|
14
|
+
this.validator = new EOBDocumentRequestValidator();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { ValidationError } from "../../../errors/index.js";
|
|
2
|
-
import { GetClaimSummaryQueryResults, GetCoveragesQueryResults, GetCoverageSummaryQueryResults, GetExplanationOfBenefitsQueryResults } from "../../../graphql/operations/types.js";
|
|
2
|
+
import { GetClaimSummaryQueryResults, GetCoveragesQueryResults, GetCoverageSummaryQueryResults, GetEobDocumentQueryResults, GetExplanationOfBenefitsQueryResults } from "../../../graphql/operations/types.js";
|
|
3
3
|
import { BWellQueryResult } from "../../../results/index.js";
|
|
4
4
|
import { BaseManagerError } from "../errors.js";
|
|
5
5
|
import { ClaimSummaryRequest } from "./claim-summary-request.js";
|
|
6
6
|
import { CoveragesRequest } from "./coverage-request.js";
|
|
7
7
|
import { CoverageSummaryRequest } from "./coverage-summary-request.js";
|
|
8
|
+
import { EOBDocumentRequest } from "./eob-document-request.js";
|
|
8
9
|
import { ExplanationOfBenefitRequest } from "./explanation-of-benefit.js";
|
|
9
10
|
export type ClaimSummaryResults = GetClaimSummaryQueryResults["getClaimSummary"];
|
|
10
11
|
export type CoveragesResults = GetCoveragesQueryResults["coverages"];
|
|
11
12
|
export type CoverageSummaryResults = GetCoverageSummaryQueryResults["getCoverageSummary"];
|
|
13
|
+
export type EOBDocumentResults = GetEobDocumentQueryResults["getEOBDocument"];
|
|
12
14
|
export type ExplanationOfBenefitsResults = GetExplanationOfBenefitsQueryResults["explanationOfBenefits"];
|
|
13
15
|
/**
|
|
14
16
|
* Interface representing a manager for handling operations related to financial resources.
|
|
@@ -30,6 +32,7 @@ export interface FinancialManager {
|
|
|
30
32
|
* or an error of type `ValidationError` or `BaseManagerError`.
|
|
31
33
|
*/
|
|
32
34
|
getCoverageSummary(request?: CoverageSummaryRequest): Promise<BWellQueryResult<CoverageSummaryResults, ValidationError | BaseManagerError>>;
|
|
35
|
+
getEOBDocument(request: EOBDocumentRequest): Promise<BWellQueryResult<EOBDocumentResults, ValidationError | BaseManagerError>>;
|
|
33
36
|
getExplanationOfBenefits(request: ExplanationOfBenefitRequest): Promise<BWellQueryResult<ExplanationOfBenefitsResults, ValidationError | BaseManagerError>>;
|
|
34
37
|
/**
|
|
35
38
|
* Retrieves claim summary resources based on the provided request parameters.
|
|
@@ -5,8 +5,9 @@ import { BaseManagerError } from "../../base/errors.js";
|
|
|
5
5
|
import { ClaimSummaryRequest } from "../../base/financial/claim-summary-request.js";
|
|
6
6
|
import { CoveragesRequest } from "../../base/financial/coverage-request.js";
|
|
7
7
|
import { CoverageSummaryRequest } from "../../base/financial/coverage-summary-request.js";
|
|
8
|
+
import { EOBDocumentRequest } from "../../base/financial/eob-document-request.js";
|
|
8
9
|
import { ExplanationOfBenefitRequest } from "../../base/financial/explanation-of-benefit.js";
|
|
9
|
-
import { ClaimSummaryResults, CoveragesResults, CoverageSummaryResults, ExplanationOfBenefitsResults, FinancialManager } from "../../base/financial/financial-manager.js";
|
|
10
|
+
import { ClaimSummaryResults, CoveragesResults, CoverageSummaryResults, EOBDocumentResults, ExplanationOfBenefitsResults, FinancialManager } from "../../base/financial/financial-manager.js";
|
|
10
11
|
import { GraphQLManager } from "../graphql-manager/index.js";
|
|
11
12
|
import type { GraphQLSdk } from "../graphql-sdk/index.js";
|
|
12
13
|
export declare class GraphQLFinancialManager extends GraphQLManager implements FinancialManager {
|
|
@@ -26,6 +27,7 @@ export declare class GraphQLFinancialManager extends GraphQLManager implements F
|
|
|
26
27
|
* @returns Promise resolving to coverage summary resources results or an error
|
|
27
28
|
*/
|
|
28
29
|
getCoverageSummary(request?: CoverageSummaryRequest): Promise<BWellQueryResult<CoverageSummaryResults, ValidationError | BaseManagerError>>;
|
|
30
|
+
getEOBDocument(request: EOBDocumentRequest): Promise<BWellQueryResult<EOBDocumentResults, ValidationError | BaseManagerError>>;
|
|
29
31
|
getExplanationOfBenefits(request: ExplanationOfBenefitRequest): Promise<BWellQueryResult<ExplanationOfBenefitsResults, ValidationError | BaseManagerError>>;
|
|
30
32
|
/**
|
|
31
33
|
* Retrieves claim summary resources based on the provided request parameters.
|
|
@@ -82,6 +82,22 @@ export class GraphQLFinancialManager extends GraphQLManager {
|
|
|
82
82
|
return new BWellQueryResult((_b = result.data) === null || _b === void 0 ? void 0 : _b.getCoverageSummary, result.error);
|
|
83
83
|
});
|
|
84
84
|
}
|
|
85
|
+
getEOBDocument(request) {
|
|
86
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
87
|
+
var _a;
|
|
88
|
+
const validationResult = this.validateRequest(request);
|
|
89
|
+
if (validationResult.failure()) {
|
|
90
|
+
return validationResult.toQueryResult();
|
|
91
|
+
}
|
|
92
|
+
__classPrivateFieldGet(this, _GraphQLFinancialManager_logger, "f").verbose("calling getEOBDocument...");
|
|
93
|
+
const result = yield this.handleQuery(__classPrivateFieldGet(this, _GraphQLFinancialManager_sdk, "f").getEOBDocument({ claimId: request.data().claimId }));
|
|
94
|
+
__classPrivateFieldGet(this, _GraphQLFinancialManager_logger, "f").verbose("getEOBDocument complete");
|
|
95
|
+
if (result.hasError()) {
|
|
96
|
+
__classPrivateFieldGet(this, _GraphQLFinancialManager_logger, "f").error("getEOBDocument errors", result.error);
|
|
97
|
+
}
|
|
98
|
+
return new BWellQueryResult((_a = result.data) === null || _a === void 0 ? void 0 : _a.getEOBDocument, result.error);
|
|
99
|
+
});
|
|
100
|
+
}
|
|
85
101
|
getExplanationOfBenefits(request) {
|
|
86
102
|
return __awaiter(this, void 0, void 0, function* () {
|
|
87
103
|
var _a;
|
|
@@ -116,6 +116,7 @@ export declare const PublishEventDocument = "\n mutation publishEvent($eventT
|
|
|
116
116
|
export declare const GetClaimSummaryDocument = "\n query getClaimSummary($request: ClaimSummaryQueryRequest!) {\n getClaimSummary(request: $request) {\n paging_info {\n page_number\n page_size\n total_items\n total_pages\n }\n resources {\n id\n claimNumber\n claimType\n claimStatus\n servicedDate\n dateReceived\n dateProcessed\n serviceDateStart\n serviceDateEnd\n networkStatus\n provider {\n name\n specialty\n }\n costBreakdown {\n ...ClaimCostBreakdownFields\n }\n services {\n lineNumber\n servicedDate\n procedure {\n code\n system\n description\n }\n serviceDateStart\n serviceDateEnd\n costBreakdown {\n ...ClaimCostBreakdownFields\n }\n }\n memberFocus {\n patientReference\n name\n }\n }\n extension {\n url\n extension {\n url\n valueInteger\n valueDateTime\n }\n }\n }\n}\n \n fragment ClaimCostBreakdownFields on ClaimCostBreakdown {\n billedAmount\n allowedAmount\n patientResponsibility\n insurancePaid\n discount\n copay\n coinsurance\n otherInsurancePaid\n appliedToDeductible\n}\n ";
|
|
117
117
|
export declare const GetCoverageSummaryDocument = "\n query getCoverageSummary($request: CoverageSummaryQueryRequest) {\n getCoverageSummary(request: $request) {\n resources {\n id\n planInfo {\n productId\n productName\n planId\n planName\n memberId\n groupId\n subscriberId\n lineOfBusiness\n lineOfBusinessId\n effectiveDate\n terminationDate\n status\n insurer\n reference\n }\n subscriber {\n memberId\n name\n reference\n }\n dependents {\n total\n members {\n memberId\n name\n reference\n }\n }\n individualInsuranceDetails {\n references\n deductibles {\n medical {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n dental {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n vision {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n pharmacy {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n }\n outOfPocket {\n medical {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n dental {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n vision {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n pharmacy {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n }\n }\n familyInsuranceDetails {\n references\n deductibles {\n medical {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n dental {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n vision {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n pharmacy {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n }\n outOfPocket {\n medical {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n dental {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n vision {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n pharmacy {\n inNetwork\n inNetworkMax\n outOfNetwork\n outOfNetworkMax\n }\n }\n }\n claimsSummary {\n references\n medical {\n totalBilled\n insurancePaid\n patientResponsibility\n }\n vision {\n totalBilled\n insurancePaid\n patientResponsibility\n }\n dental {\n totalBilled\n insurancePaid\n patientResponsibility\n }\n pharmacy {\n totalBilled\n insurancePaid\n patientResponsibility\n }\n }\n benefits {\n type\n code\n title\n text\n }\n supplementalBenefits {\n code\n title\n text\n }\n documents {\n id\n code\n title\n url\n }\n prescriptionResources {\n formularyDocument\n drugCoverageDocument\n pharmacyDirectoryDocument\n }\n memberForms {\n memberFormsDocument\n fillableForms {\n reference\n display\n language\n }\n }\n }\n paging_info {\n page_number\n page_size\n total_items\n total_pages\n }\n }\n}\n ";
|
|
118
118
|
export declare const GetCoveragesDocument = "\n query getCoverages($id: SearchString, $lastUpdated: SearchDate, $sort: [String], $pageSize: Int, $page: Int, $patient: SearchReference, $beneficiary: SearchReference, $total: TotalType) {\n coverages(\n id: $id\n _lastUpdated: $lastUpdated\n _sort: $sort\n _count: $pageSize\n _getpagesoffset: $page\n patient: $patient\n beneficiary: $beneficiary\n _total: $total\n ) {\n total\n entry {\n id\n resource {\n ...CoverageFields\n }\n }\n }\n}\n \n fragment CoverageFields on Coverage {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n status\n type {\n ...CodeableConceptFields\n }\n policyHolder {\n ...CoveragePolicyHolderReferenceFields\n }\n subscriberId\n beneficiary {\n ...CoverageBeneficiaryReferenceFields\n }\n relationship {\n ...CodeableConceptFields\n }\n period {\n ...PeriodFields\n }\n payor {\n ...CoveragePayorReferenceFields\n }\n class {\n ...CoverageClassFields\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CoveragePolicyHolderReferenceFields on CoveragePolicyHolderReference {\n reference\n display\n type\n}\n \n\n fragment CoverageBeneficiaryReferenceFields on CoverageBeneficiaryReference {\n reference\n display\n type\n resource {\n ...PatientFields\n }\n}\n \n fragment PatientFields on Patient {\n id\n name {\n ...HumanNameFields\n }\n birthDate\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment CoveragePayorReferenceFields on CoveragePayorReference {\n reference\n display\n type\n resource {\n ... on Organization {\n __typename\n organizationName: name\n }\n ... on RelatedPerson {\n __typename\n name {\n ...HumanNameFields\n }\n }\n ... on Patient {\n __typename\n name {\n ...HumanNameFields\n }\n }\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment CoverageClassFields on CoverageClass {\n id\n type {\n ...CodeableConceptFields\n }\n value\n name\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n ";
|
|
119
|
+
export declare const GetEobDocumentDocument = "\n query getEOBDocument($claimId: String!) {\n getEOBDocument(claimId: $claimId) {\n ...DocumentReferenceFields\n }\n}\n \n fragment DocumentReferenceFields on DocumentReferenceResource {\n id\n resourceType\n meta {\n ...MetaFields\n }\n language\n text {\n div\n status\n }\n identifier {\n ...IdentifierFields\n }\n status\n subject {\n reference\n display\n }\n type {\n ...CodeableConceptFields\n }\n category {\n ...CodeableConceptFields\n }\n date\n author {\n reference\n display\n }\n description\n content {\n attachment {\n contentType\n data\n url\n title\n }\n format {\n ...CodingFields\n }\n }\n context {\n ...DocumentReferenceContextFields\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment DocumentReferenceContextFields on DocumentReferenceContext {\n encounter {\n reference\n display\n }\n period {\n ...PeriodFields\n }\n}\n \n fragment PeriodFields on Period {\n start\n end\n}\n ";
|
|
119
120
|
export declare const GetExplanationOfBenefitsDocument = "\n query getExplanationOfBenefits($id: SearchString, $lastUpdated: SearchDate, $page: Int, $pageSize: Int, $patient: SearchReference, $provider: SearchReference, $coverage: SearchReference, $status: SearchToken, $created: SearchDate, $sort: [String], $total: TotalType) {\n explanationOfBenefits(\n id: $id\n _count: $pageSize\n _lastUpdated: $lastUpdated\n _getpagesoffset: $page\n patient: $patient\n provider: $provider\n coverage: $coverage\n status: $status\n created: $created\n _sort: $sort\n _total: $total\n ) {\n id\n total\n entry {\n id\n resource {\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n status\n type {\n ...CodeableConceptFields\n }\n use\n patient {\n reference\n type\n display\n resource {\n ...PatientFields\n }\n }\n adjudication {\n ...ExplanationOfBenefitAdjudicationFields\n }\n billablePeriod {\n ...PeriodFields\n }\n benefitPeriod {\n ...PeriodFields\n }\n insurer {\n reference\n type\n display\n }\n provider {\n reference\n type\n display\n resource {\n ... on Practitioner {\n __typename\n ...PractitionerFields\n }\n ... on Organization {\n __typename\n organizationName: name\n meta {\n ...MetaFields\n }\n }\n }\n }\n related {\n relationship {\n ...CodeableConceptFields\n }\n reference {\n ...IdentifierFields\n }\n }\n payee {\n type {\n ...CodeableConceptFields\n }\n party {\n reference\n type\n display\n }\n }\n outcome\n careTeam {\n id\n sequence\n provider {\n reference\n type\n display\n }\n qualification {\n ...CodeableConceptFields\n }\n role {\n ...CodeableConceptFields\n }\n }\n supportingInfo {\n sequence\n category {\n ...CodeableConceptFields\n }\n code {\n ...CodeableConceptFields\n }\n timingDate\n timingPeriod {\n ...PeriodFields\n }\n valueBoolean\n valueString\n valueQuantity {\n ...QuantityFields\n }\n valueAttachment {\n ...AttachmentFields\n }\n valueReference {\n reference\n type\n display\n }\n reason {\n ...CodingFields\n }\n }\n insurance {\n focal\n coverage {\n reference\n type\n display\n }\n }\n payment {\n id\n adjustment {\n ...MoneyResourceFields\n }\n amount {\n ...MoneyResourceFields\n }\n date\n type {\n ...CodeableConceptFields\n }\n }\n processNote {\n type\n text\n }\n created\n diagnosis {\n id\n sequence\n diagnosisCodeableConcept {\n ...CodeableConceptFields\n }\n diagnosisReference {\n reference\n type\n display\n }\n type {\n ...CodeableConceptFields\n }\n onAdmission {\n ...CodeableConceptFields\n }\n packageCode {\n ...CodeableConceptFields\n }\n }\n item {\n id\n sequence\n bodySite {\n ...CodeableConceptFields\n }\n adjudication {\n ...ExplanationOfBenefitAdjudicationFields\n }\n locationCodeableConcept {\n ...CodeableConceptFields\n }\n modifier {\n ...CodeableConceptFields\n }\n net {\n ...MoneyResourceFields\n }\n noteNumber\n productOrService {\n ...CodeableConceptFields\n }\n quantity {\n ...QuantityFields\n }\n revenue {\n ...CodeableConceptFields\n }\n servicedDate\n servicedPeriod {\n ...PeriodFields\n }\n }\n subType {\n ...CodeableConceptFields\n }\n total {\n amount {\n ...MoneyResourceFields\n }\n category {\n ...CodeableConceptFields\n }\n }\n }\n }\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PatientFields on Patient {\n id\n name {\n ...HumanNameFields\n }\n birthDate\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment ExplanationOfBenefitAdjudicationFields on ExplanationOfBenefitAdjudication {\n id\n category {\n ...CodeableConceptFields\n }\n reason {\n ...CodeableConceptFields\n }\n amount {\n ...MoneyResourceFields\n }\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment MoneyResourceFields on Money {\n value\n currency\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment PractitionerFields on Practitioner {\n id\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment AttachmentFields on Attachment {\n contentType\n data\n url\n title\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment MoneyResourceFields on Money {\n value\n currency\n}\n ";
|
|
120
121
|
export declare const GetBinaryDocument = "\n query getBinary($request: BinaryRequest!) {\n getBinary(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n resourceType\n id\n data\n contentType\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n ";
|
|
121
122
|
export declare const GetFhirDocument = "\n query getFHIR($request: ResourceRequest!) {\n getFHIR(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n ";
|
|
@@ -175,7 +176,7 @@ export declare const GetQuestionnairesDocument = "\n query getQuestionnaires(
|
|
|
175
176
|
export declare const SaveQuestionnaireResponseDocument = "\n mutation saveQuestionnaireResponse($questionnaireResponse: QuestionnaireResponseInput!, $summary: Boolean = false) {\n saveQuestionnaireResponse(input: $questionnaireResponse) {\n ...QuestionnaireResponseSummary @include(if: $summary)\n ...QuestionnaireResponseFields @skip(if: $summary)\n }\n}\n \n fragment QuestionnaireResponseSummary on QuestionnaireResponse {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n questionnaire\n status\n subject {\n reference\n type\n display\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireResponseFields on QuestionnaireResponse {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n questionnaire\n status\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n }\n }\n }\n }\n }\n contained {\n ...QuestionnaireFields\n }\n subject {\n reference\n type\n display\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireResponseItemFields on QuestionnaireResponseItem {\n linkId\n text\n answer {\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n valueBoolean\n valueDecimal\n valueInteger\n valueDate\n valueDateTime\n valueString\n valueUri\n valueAttachment {\n id\n contentType\n data\n url\n title\n }\n valueCoding {\n ...CodingFields\n }\n valueQuantity {\n ...QuantityFields\n }\n valueReference {\n reference\n type\n display\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n }\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment QuestionnaireFields on Questionnaire {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n name\n title\n useContext {\n id\n code {\n ...CodingFields\n }\n valueReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\n }\n }\n status\n description\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n }\n }\n }\n }\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireItemFields on QuestionnaireItem {\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n linkId\n prefix\n text\n type\n enableWhen {\n question\n operator\n answerBoolean\n answerDecimal\n answerInteger\n answerDate\n answerDateTime\n answerTime\n answerString\n answerCoding {\n ...CodingFields\n }\n answerQuantity {\n ...QuantityFields\n }\n answerReference {\n reference\n type\n display\n }\n }\n enableBehavior\n required\n repeats\n readOnly\n maxLength\n answerOption {\n valueInteger\n valueDate\n valueString\n valueCoding {\n ...CodingFields\n }\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n valueReference {\n reference\n type\n display\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n initialSelected\n }\n initial {\n valueBoolean\n valueDecimal\n valueInteger\n valueDate\n valueDateTime\n valueString\n valueUri\n valueAttachment {\n contentType\n data\n url\n title\n }\n valueCoding {\n ...CodingFields\n }\n valueQuantity {\n ...QuantityFields\n }\n valueReference {\n reference\n type\n display\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n }\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n ";
|
|
176
177
|
export declare const ProviderSearchDocument = "\n query providerSearch($client: [Client], $searchTerm: String, $includePopulatedPROAonly: Boolean, $specialtyFilters: [InputCoding], $organizationTypeFilters: [OrganizationType], $gender: Gender, $location: SearchPosition, $sortBy: [OrderBy], $filterFields: [FilterField], $page: Int, $pageSize: Int) {\n providers(\n client: $client\n search: $searchTerm\n specialty: $specialtyFilters\n organization_type: $organizationTypeFilters\n include_populated_PROA_only: $includePopulatedPROAonly\n gender: $gender\n search_position: $location\n order_by: $sortBy\n filter_values: $filterFields\n page_number: $page\n page_size: $pageSize\n ) {\n paging_info {\n page_number\n page_size\n total_items\n total_pages\n }\n filter_values {\n field\n values {\n value\n count\n }\n }\n results {\n endpoint {\n identifier {\n type {\n coding {\n code\n system\n display\n }\n text\n }\n value\n system\n }\n name\n status\n connectionType {\n code\n system\n display\n }\n address\n }\n iconString\n organization_type {\n coding {\n code\n system\n display\n }\n text\n }\n content\n gender\n location {\n name\n identifier {\n type {\n text\n coding {\n system\n code\n display\n }\n }\n value\n system\n }\n alias\n description\n address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n system\n value\n rank\n }\n }\n specialty {\n code\n system\n display\n }\n id\n photo {\n contentType\n url\n title\n }\n name {\n ...HumanNameFields\n }\n telecom {\n system\n value\n rank\n }\n practitioner_qualification {\n identifier {\n type {\n coding {\n code\n system\n display\n }\n text\n }\n value\n system\n }\n code {\n coding {\n code\n system\n display\n }\n text\n }\n period {\n start\n end\n }\n issuer {\n reference\n display\n }\n }\n provider_type\n characteristic {\n code\n system\n display\n }\n organization {\n name\n endpoint {\n identifier {\n type {\n coding {\n code\n system\n display\n }\n text\n }\n value\n system\n }\n name\n status\n connectionType {\n code\n system\n display\n }\n address\n }\n }\n }\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n ";
|
|
177
178
|
export declare const RequestConnectionDocument = "\n mutation requestConnection($city: String, $institution: String, $provider: String, $state: String) {\n requestConnection(\n city: $city\n institution: $institution\n provider: $provider\n state: $state\n ) {\n resourceType\n issue {\n severity\n code\n details {\n text\n }\n }\n }\n}\n ";
|
|
178
|
-
export declare const SearchHealthResourcesDocument = "\n query SearchHealthResources($searchInput: SearchHealthResourcesInput) {\n searchHealthResources(searchInput: $searchInput) {\n pagingInfo {\n pageNumber\n pageSize\n totalItems\n totalPages\n }\n filterValues {\n field\n values {\n value\n count\n extension {\n url\n valueString\n }\n }\n }\n results {\n type\n photo {\n url\n }\n id\n content\n nextAvailableSlot {\n appointmentType\n start\n }\n specialty {\n code\n system\n display\n }\n meta {\n security {\n code\n system\n display\n }\n }\n insurancePlan {\n id\n ownedBy {\n display\n }\n plan {\n identifier {\n value\n }\n }\n }\n isVirtualCare\n bookable {\n online\n phone\n }\n location {\n identifier {\n value\n system\n }\n facilityId\n nextAvailableSlot {\n appointmentType\n start\n }\n description\n scheduling {\n identifier {\n value\n system\n }\n bookable {\n online\n phone\n }\n }\n name\n address {\n line\n city\n state\n postalCode\n country\n }\n position {\n latitude\n longitude\n }\n telecom {\n system\n value\n }\n distanceInMiles\n hoursOfOperation {\n daysOfWeek\n openingTime\n closingTime\n }\n organizationName\n parkingInformation\n }\n organization {\n name\n endpoint {\n name\n status\n address\n }\n }\n npi\n gender\n iconString\n endpoint {\n identifier {\n type {\n coding {\n code\n system\n display\n }\n text\n }\n value\n system\n }\n name\n status\n connectionType {\n code\n system\n display\n }\n address\n }\n score\n scores {\n value\n description\n calculation\n }\n communication {\n coding {\n code\n system\n display\n }\n text\n }\n acceptingNewPatients\n acceptedAgeRanges {\n years {\n gt\n gte\n lt\n lte\n }\n months {\n gt\n gte\n lt\n lte\n }\n }\n partOf {\n id\n content\n endpointName\n }\n reviewScore {\n group {\n population {\n count\n }\n measureScore {\n value\n }\n }\n }\n practitionerQualification {\n code {\n coding {\n code\n system\n }\n }\n period {\n start\n }\n issuer {\n reference\n display\n }\n }\n }\n }\n}\n ";
|
|
179
|
+
export declare const SearchHealthResourcesDocument = "\n query SearchHealthResources($searchInput: SearchHealthResourcesInput) {\n searchHealthResources(searchInput: $searchInput) {\n pagingInfo {\n pageNumber\n pageSize\n totalItems\n totalPages\n }\n filterValues {\n field\n values {\n value\n count\n extension {\n url\n valueString\n }\n }\n }\n results {\n type\n photo {\n url\n }\n id\n content\n logoUrl\n nextAvailableSlot {\n appointmentType\n start\n }\n specialty {\n code\n system\n display\n }\n meta {\n security {\n code\n system\n display\n }\n }\n insurancePlan {\n id\n ownedBy {\n display\n }\n plan {\n identifier {\n value\n }\n }\n }\n isVirtualCare\n bookable {\n online\n phone\n }\n location {\n identifier {\n value\n system\n }\n facilityId\n nextAvailableSlot {\n appointmentType\n start\n }\n description\n scheduling {\n identifier {\n value\n system\n }\n bookable {\n online\n phone\n }\n }\n name\n address {\n line\n city\n state\n postalCode\n country\n }\n position {\n latitude\n longitude\n }\n telecom {\n system\n value\n }\n distanceInMiles\n hoursOfOperation {\n daysOfWeek\n openingTime\n closingTime\n }\n organizationName\n parkingInformation\n }\n organization {\n name\n endpoint {\n name\n status\n address\n }\n logoUrl\n }\n npi\n gender\n iconString\n endpoint {\n identifier {\n type {\n coding {\n code\n system\n display\n }\n text\n }\n value\n system\n }\n name\n status\n connectionType {\n code\n system\n display\n }\n address\n }\n score\n scores {\n value\n description\n calculation\n }\n communication {\n coding {\n code\n system\n display\n }\n text\n }\n acceptingNewPatients\n acceptedAgeRanges {\n years {\n gt\n gte\n lt\n lte\n }\n months {\n gt\n gte\n lt\n lte\n }\n }\n partOf {\n id\n content\n endpointName\n logoUrl\n }\n reviewScore {\n group {\n population {\n count\n }\n measureScore {\n value\n }\n }\n }\n practitionerQualification {\n code {\n coding {\n code\n system\n }\n }\n period {\n start\n }\n issuer {\n reference\n display\n }\n }\n }\n }\n}\n ";
|
|
179
180
|
export declare const CreateSupportCommentDocument = "\n mutation CreateSupportComment($input: CreateSupportCommentInput!) {\n createSupportComment(input: $input) {\n comment {\n id\n body\n htmlBody\n author {\n name\n email\n }\n attachments {\n id\n fileName\n contentType\n size\n }\n createdAt\n }\n }\n}\n ";
|
|
180
181
|
export declare const CreateSupportRequestDocument = "\n mutation CreateSupportRequest($input: CreateSupportRequestInput!) {\n createSupportRequest(input: $input) {\n data {\n id\n subject\n category\n created\n lastActivity\n status\n }\n }\n}\n ";
|
|
181
182
|
export declare const DeleteSupportAttachmentDocument = "\n mutation DeleteSupportAttachment($input: DeleteSupportAttachmentInput!) {\n deleteSupportAttachment(input: $input) {\n status\n }\n}\n ";
|
|
@@ -350,6 +351,13 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
350
351
|
headers: Headers;
|
|
351
352
|
status: number;
|
|
352
353
|
}>;
|
|
354
|
+
getEOBDocument(variables: Types.GetEobDocumentQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{
|
|
355
|
+
data: Types.GetEobDocumentQueryResults;
|
|
356
|
+
errors?: GraphQLError[];
|
|
357
|
+
extensions?: any;
|
|
358
|
+
headers: Headers;
|
|
359
|
+
status: number;
|
|
360
|
+
}>;
|
|
353
361
|
getExplanationOfBenefits(variables?: Types.GetExplanationOfBenefitsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{
|
|
354
362
|
data: Types.GetExplanationOfBenefitsQueryResults;
|
|
355
363
|
errors?: GraphQLError[];
|
|
@@ -2462,6 +2462,13 @@ export const GetCoveragesDocument = `
|
|
|
2462
2462
|
}
|
|
2463
2463
|
}
|
|
2464
2464
|
${CoverageFieldsFragmentDoc}`;
|
|
2465
|
+
export const GetEobDocumentDocument = `
|
|
2466
|
+
query getEOBDocument($claimId: String!) {
|
|
2467
|
+
getEOBDocument(claimId: $claimId) {
|
|
2468
|
+
...DocumentReferenceFields
|
|
2469
|
+
}
|
|
2470
|
+
}
|
|
2471
|
+
${DocumentReferenceFieldsFragmentDoc}`;
|
|
2465
2472
|
export const GetExplanationOfBenefitsDocument = `
|
|
2466
2473
|
query getExplanationOfBenefits($id: SearchString, $lastUpdated: SearchDate, $page: Int, $pageSize: Int, $patient: SearchReference, $provider: SearchReference, $coverage: SearchReference, $status: SearchToken, $created: SearchDate, $sort: [String], $total: TotalType) {
|
|
2467
2474
|
explanationOfBenefits(
|
|
@@ -4630,6 +4637,7 @@ export const SearchHealthResourcesDocument = `
|
|
|
4630
4637
|
}
|
|
4631
4638
|
id
|
|
4632
4639
|
content
|
|
4640
|
+
logoUrl
|
|
4633
4641
|
nextAvailableSlot {
|
|
4634
4642
|
appointmentType
|
|
4635
4643
|
start
|
|
@@ -4715,6 +4723,7 @@ export const SearchHealthResourcesDocument = `
|
|
|
4715
4723
|
status
|
|
4716
4724
|
address
|
|
4717
4725
|
}
|
|
4726
|
+
logoUrl
|
|
4718
4727
|
}
|
|
4719
4728
|
npi
|
|
4720
4729
|
gender
|
|
@@ -4774,6 +4783,7 @@ export const SearchHealthResourcesDocument = `
|
|
|
4774
4783
|
id
|
|
4775
4784
|
content
|
|
4776
4785
|
endpointName
|
|
4786
|
+
logoUrl
|
|
4777
4787
|
}
|
|
4778
4788
|
reviewScore {
|
|
4779
4789
|
group {
|
|
@@ -5258,6 +5268,9 @@ export function getSdk(client, withWrapper = defaultWrapper) {
|
|
|
5258
5268
|
getCoverages(variables, requestHeaders) {
|
|
5259
5269
|
return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetCoveragesDocument, variables, Object.assign(Object.assign({}, requestHeaders), wrappedRequestHeaders)), 'getCoverages', 'query', variables);
|
|
5260
5270
|
},
|
|
5271
|
+
getEOBDocument(variables, requestHeaders) {
|
|
5272
|
+
return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetEobDocumentDocument, variables, Object.assign(Object.assign({}, requestHeaders), wrappedRequestHeaders)), 'getEOBDocument', 'query', variables);
|
|
5273
|
+
},
|
|
5261
5274
|
getExplanationOfBenefits(variables, requestHeaders) {
|
|
5262
5275
|
return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetExplanationOfBenefitsDocument, variables, Object.assign(Object.assign({}, requestHeaders), wrappedRequestHeaders)), 'getExplanationOfBenefits', 'query', variables);
|
|
5263
5276
|
},
|
|
@@ -623,6 +623,103 @@ export type CoverageClassFieldsFragment = {
|
|
|
623
623
|
} | null> | null;
|
|
624
624
|
} | null;
|
|
625
625
|
};
|
|
626
|
+
export type DocumentReferenceFieldsFragment = {
|
|
627
|
+
id: string | null;
|
|
628
|
+
resourceType: string | null;
|
|
629
|
+
language: string | null;
|
|
630
|
+
status: string | null;
|
|
631
|
+
date: any | null;
|
|
632
|
+
description: string | null;
|
|
633
|
+
meta: {
|
|
634
|
+
versionId: string | null;
|
|
635
|
+
lastUpdated: any | null;
|
|
636
|
+
source: any | null;
|
|
637
|
+
security: Array<{
|
|
638
|
+
system: any | null;
|
|
639
|
+
code: any | null;
|
|
640
|
+
display: string | null;
|
|
641
|
+
} | null> | null;
|
|
642
|
+
tag: Array<{
|
|
643
|
+
system: any | null;
|
|
644
|
+
code: any | null;
|
|
645
|
+
display: string | null;
|
|
646
|
+
} | null> | null;
|
|
647
|
+
} | null;
|
|
648
|
+
text: {
|
|
649
|
+
div: string;
|
|
650
|
+
status: string | null;
|
|
651
|
+
} | null;
|
|
652
|
+
identifier: Array<{
|
|
653
|
+
id: string | null;
|
|
654
|
+
system: any | null;
|
|
655
|
+
value: string | null;
|
|
656
|
+
type: {
|
|
657
|
+
text: string | null;
|
|
658
|
+
coding: Array<{
|
|
659
|
+
system: any | null;
|
|
660
|
+
code: any | null;
|
|
661
|
+
display: string | null;
|
|
662
|
+
} | null> | null;
|
|
663
|
+
} | null;
|
|
664
|
+
} | null> | null;
|
|
665
|
+
subject: {
|
|
666
|
+
reference: string | null;
|
|
667
|
+
display: string | null;
|
|
668
|
+
} | null;
|
|
669
|
+
type: {
|
|
670
|
+
text: string | null;
|
|
671
|
+
coding: Array<{
|
|
672
|
+
system: any | null;
|
|
673
|
+
code: any | null;
|
|
674
|
+
display: string | null;
|
|
675
|
+
} | null> | null;
|
|
676
|
+
} | null;
|
|
677
|
+
category: Array<{
|
|
678
|
+
text: string | null;
|
|
679
|
+
coding: Array<{
|
|
680
|
+
system: any | null;
|
|
681
|
+
code: any | null;
|
|
682
|
+
display: string | null;
|
|
683
|
+
} | null> | null;
|
|
684
|
+
} | null> | null;
|
|
685
|
+
author: Array<{
|
|
686
|
+
reference: string | null;
|
|
687
|
+
display: string | null;
|
|
688
|
+
} | null> | null;
|
|
689
|
+
content: Array<{
|
|
690
|
+
attachment: {
|
|
691
|
+
contentType: string | null;
|
|
692
|
+
data: string | null;
|
|
693
|
+
url: string | null;
|
|
694
|
+
title: string | null;
|
|
695
|
+
} | null;
|
|
696
|
+
format: {
|
|
697
|
+
system: any | null;
|
|
698
|
+
code: any | null;
|
|
699
|
+
display: string | null;
|
|
700
|
+
} | null;
|
|
701
|
+
} | null> | null;
|
|
702
|
+
context: {
|
|
703
|
+
encounter: Array<{
|
|
704
|
+
reference: string | null;
|
|
705
|
+
display: string | null;
|
|
706
|
+
} | null> | null;
|
|
707
|
+
period: {
|
|
708
|
+
start: any | null;
|
|
709
|
+
end: any | null;
|
|
710
|
+
} | null;
|
|
711
|
+
} | null;
|
|
712
|
+
};
|
|
713
|
+
export type DocumentReferenceContextFieldsFragment = {
|
|
714
|
+
encounter: Array<{
|
|
715
|
+
reference: string | null;
|
|
716
|
+
display: string | null;
|
|
717
|
+
} | null> | null;
|
|
718
|
+
period: {
|
|
719
|
+
start: any | null;
|
|
720
|
+
end: any | null;
|
|
721
|
+
} | null;
|
|
722
|
+
};
|
|
626
723
|
export type ExplanationOfBenefitAdjudicationFieldsFragment = {
|
|
627
724
|
id: string | null;
|
|
628
725
|
value: number | null;
|
|
@@ -4329,103 +4426,6 @@ export type RelatedPersonFieldsFragment = {
|
|
|
4329
4426
|
} | null> | null;
|
|
4330
4427
|
} | null;
|
|
4331
4428
|
};
|
|
4332
|
-
export type DocumentReferenceFieldsFragment = {
|
|
4333
|
-
id: string | null;
|
|
4334
|
-
resourceType: string | null;
|
|
4335
|
-
language: string | null;
|
|
4336
|
-
status: string | null;
|
|
4337
|
-
date: any | null;
|
|
4338
|
-
description: string | null;
|
|
4339
|
-
meta: {
|
|
4340
|
-
versionId: string | null;
|
|
4341
|
-
lastUpdated: any | null;
|
|
4342
|
-
source: any | null;
|
|
4343
|
-
security: Array<{
|
|
4344
|
-
system: any | null;
|
|
4345
|
-
code: any | null;
|
|
4346
|
-
display: string | null;
|
|
4347
|
-
} | null> | null;
|
|
4348
|
-
tag: Array<{
|
|
4349
|
-
system: any | null;
|
|
4350
|
-
code: any | null;
|
|
4351
|
-
display: string | null;
|
|
4352
|
-
} | null> | null;
|
|
4353
|
-
} | null;
|
|
4354
|
-
text: {
|
|
4355
|
-
div: string;
|
|
4356
|
-
status: string | null;
|
|
4357
|
-
} | null;
|
|
4358
|
-
identifier: Array<{
|
|
4359
|
-
id: string | null;
|
|
4360
|
-
system: any | null;
|
|
4361
|
-
value: string | null;
|
|
4362
|
-
type: {
|
|
4363
|
-
text: string | null;
|
|
4364
|
-
coding: Array<{
|
|
4365
|
-
system: any | null;
|
|
4366
|
-
code: any | null;
|
|
4367
|
-
display: string | null;
|
|
4368
|
-
} | null> | null;
|
|
4369
|
-
} | null;
|
|
4370
|
-
} | null> | null;
|
|
4371
|
-
subject: {
|
|
4372
|
-
reference: string | null;
|
|
4373
|
-
display: string | null;
|
|
4374
|
-
} | null;
|
|
4375
|
-
type: {
|
|
4376
|
-
text: string | null;
|
|
4377
|
-
coding: Array<{
|
|
4378
|
-
system: any | null;
|
|
4379
|
-
code: any | null;
|
|
4380
|
-
display: string | null;
|
|
4381
|
-
} | null> | null;
|
|
4382
|
-
} | null;
|
|
4383
|
-
category: Array<{
|
|
4384
|
-
text: string | null;
|
|
4385
|
-
coding: Array<{
|
|
4386
|
-
system: any | null;
|
|
4387
|
-
code: any | null;
|
|
4388
|
-
display: string | null;
|
|
4389
|
-
} | null> | null;
|
|
4390
|
-
} | null> | null;
|
|
4391
|
-
author: Array<{
|
|
4392
|
-
reference: string | null;
|
|
4393
|
-
display: string | null;
|
|
4394
|
-
} | null> | null;
|
|
4395
|
-
content: Array<{
|
|
4396
|
-
attachment: {
|
|
4397
|
-
contentType: string | null;
|
|
4398
|
-
data: string | null;
|
|
4399
|
-
url: string | null;
|
|
4400
|
-
title: string | null;
|
|
4401
|
-
} | null;
|
|
4402
|
-
format: {
|
|
4403
|
-
system: any | null;
|
|
4404
|
-
code: any | null;
|
|
4405
|
-
display: string | null;
|
|
4406
|
-
} | null;
|
|
4407
|
-
} | null> | null;
|
|
4408
|
-
context: {
|
|
4409
|
-
encounter: Array<{
|
|
4410
|
-
reference: string | null;
|
|
4411
|
-
display: string | null;
|
|
4412
|
-
} | null> | null;
|
|
4413
|
-
period: {
|
|
4414
|
-
start: any | null;
|
|
4415
|
-
end: any | null;
|
|
4416
|
-
} | null;
|
|
4417
|
-
} | null;
|
|
4418
|
-
};
|
|
4419
|
-
export type DocumentReferenceContextFieldsFragment = {
|
|
4420
|
-
encounter: Array<{
|
|
4421
|
-
reference: string | null;
|
|
4422
|
-
display: string | null;
|
|
4423
|
-
} | null> | null;
|
|
4424
|
-
period: {
|
|
4425
|
-
start: any | null;
|
|
4426
|
-
end: any | null;
|
|
4427
|
-
} | null;
|
|
4428
|
-
};
|
|
4429
4429
|
export type ProtocolAppliedFieldsFragment = {
|
|
4430
4430
|
doseNumberString: string | null;
|
|
4431
4431
|
doseNumberPositiveInt: number | null;
|
|
@@ -10168,6 +10168,98 @@ export type GetCoveragesQueryResults = {
|
|
|
10168
10168
|
} | null> | null;
|
|
10169
10169
|
} | null;
|
|
10170
10170
|
};
|
|
10171
|
+
export type GetEobDocumentQueryVariables = Types.Exact<{
|
|
10172
|
+
claimId: Types.Scalars['String']['input'];
|
|
10173
|
+
}>;
|
|
10174
|
+
export type GetEobDocumentQueryResults = {
|
|
10175
|
+
getEOBDocument: {
|
|
10176
|
+
id: string | null;
|
|
10177
|
+
resourceType: string | null;
|
|
10178
|
+
language: string | null;
|
|
10179
|
+
status: string | null;
|
|
10180
|
+
date: any | null;
|
|
10181
|
+
description: string | null;
|
|
10182
|
+
meta: {
|
|
10183
|
+
versionId: string | null;
|
|
10184
|
+
lastUpdated: any | null;
|
|
10185
|
+
source: any | null;
|
|
10186
|
+
security: Array<{
|
|
10187
|
+
system: any | null;
|
|
10188
|
+
code: any | null;
|
|
10189
|
+
display: string | null;
|
|
10190
|
+
} | null> | null;
|
|
10191
|
+
tag: Array<{
|
|
10192
|
+
system: any | null;
|
|
10193
|
+
code: any | null;
|
|
10194
|
+
display: string | null;
|
|
10195
|
+
} | null> | null;
|
|
10196
|
+
} | null;
|
|
10197
|
+
text: {
|
|
10198
|
+
div: string;
|
|
10199
|
+
status: string | null;
|
|
10200
|
+
} | null;
|
|
10201
|
+
identifier: Array<{
|
|
10202
|
+
id: string | null;
|
|
10203
|
+
system: any | null;
|
|
10204
|
+
value: string | null;
|
|
10205
|
+
type: {
|
|
10206
|
+
text: string | null;
|
|
10207
|
+
coding: Array<{
|
|
10208
|
+
system: any | null;
|
|
10209
|
+
code: any | null;
|
|
10210
|
+
display: string | null;
|
|
10211
|
+
} | null> | null;
|
|
10212
|
+
} | null;
|
|
10213
|
+
} | null> | null;
|
|
10214
|
+
subject: {
|
|
10215
|
+
reference: string | null;
|
|
10216
|
+
display: string | null;
|
|
10217
|
+
} | null;
|
|
10218
|
+
type: {
|
|
10219
|
+
text: string | null;
|
|
10220
|
+
coding: Array<{
|
|
10221
|
+
system: any | null;
|
|
10222
|
+
code: any | null;
|
|
10223
|
+
display: string | null;
|
|
10224
|
+
} | null> | null;
|
|
10225
|
+
} | null;
|
|
10226
|
+
category: Array<{
|
|
10227
|
+
text: string | null;
|
|
10228
|
+
coding: Array<{
|
|
10229
|
+
system: any | null;
|
|
10230
|
+
code: any | null;
|
|
10231
|
+
display: string | null;
|
|
10232
|
+
} | null> | null;
|
|
10233
|
+
} | null> | null;
|
|
10234
|
+
author: Array<{
|
|
10235
|
+
reference: string | null;
|
|
10236
|
+
display: string | null;
|
|
10237
|
+
} | null> | null;
|
|
10238
|
+
content: Array<{
|
|
10239
|
+
attachment: {
|
|
10240
|
+
contentType: string | null;
|
|
10241
|
+
data: string | null;
|
|
10242
|
+
url: string | null;
|
|
10243
|
+
title: string | null;
|
|
10244
|
+
} | null;
|
|
10245
|
+
format: {
|
|
10246
|
+
system: any | null;
|
|
10247
|
+
code: any | null;
|
|
10248
|
+
display: string | null;
|
|
10249
|
+
} | null;
|
|
10250
|
+
} | null> | null;
|
|
10251
|
+
context: {
|
|
10252
|
+
encounter: Array<{
|
|
10253
|
+
reference: string | null;
|
|
10254
|
+
display: string | null;
|
|
10255
|
+
} | null> | null;
|
|
10256
|
+
period: {
|
|
10257
|
+
start: any | null;
|
|
10258
|
+
end: any | null;
|
|
10259
|
+
} | null;
|
|
10260
|
+
} | null;
|
|
10261
|
+
} | null;
|
|
10262
|
+
};
|
|
10171
10263
|
export type GetExplanationOfBenefitsQueryVariables = Types.Exact<{
|
|
10172
10264
|
id: Types.InputMaybe<Types.SearchString>;
|
|
10173
10265
|
lastUpdated: Types.InputMaybe<Types.SearchDate>;
|
|
@@ -30020,6 +30112,7 @@ export type SearchHealthResourcesQueryResults = {
|
|
|
30020
30112
|
type: Types.SearchResultTypeEnum | null;
|
|
30021
30113
|
id: string | null;
|
|
30022
30114
|
content: string | null;
|
|
30115
|
+
logoUrl: string | null;
|
|
30023
30116
|
isVirtualCare: boolean | null;
|
|
30024
30117
|
npi: Array<string | null> | null;
|
|
30025
30118
|
gender: Types.GenderEnum | null;
|
|
@@ -30108,6 +30201,7 @@ export type SearchHealthResourcesQueryResults = {
|
|
|
30108
30201
|
} | null> | null;
|
|
30109
30202
|
organization: Array<{
|
|
30110
30203
|
name: string | null;
|
|
30204
|
+
logoUrl: string | null;
|
|
30111
30205
|
endpoint: Array<{
|
|
30112
30206
|
name: string | null;
|
|
30113
30207
|
status: Types.EndpointStatusEnum | null;
|
|
@@ -30167,6 +30261,7 @@ export type SearchHealthResourcesQueryResults = {
|
|
|
30167
30261
|
id: string | null;
|
|
30168
30262
|
content: string | null;
|
|
30169
30263
|
endpointName: string | null;
|
|
30264
|
+
logoUrl: string | null;
|
|
30170
30265
|
} | null;
|
|
30171
30266
|
reviewScore: Array<{
|
|
30172
30267
|
group: Array<{
|
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -3130,6 +3130,8 @@ export type HealthResourceSearchResult = {
|
|
|
3130
3130
|
insurancePlan?: Maybe<Array<Maybe<ProviderInsurancePlan>>>;
|
|
3131
3131
|
isVirtualCare?: Maybe<Scalars['Boolean']['output']>;
|
|
3132
3132
|
location?: Maybe<Array<Maybe<ProviderLocation>>>;
|
|
3133
|
+
/** URL of the health resource's logo */
|
|
3134
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
3133
3135
|
meta?: Maybe<MetaType>;
|
|
3134
3136
|
name?: Maybe<Array<Maybe<HumanName>>>;
|
|
3135
3137
|
/** @deprecated Please use `nextAvailableSlot` inside `location` instead. */
|
|
@@ -4981,6 +4983,8 @@ export declare enum OrganizationTypeEnum {
|
|
|
4981
4983
|
export type OrganizationTypeNew = {
|
|
4982
4984
|
__typename?: 'OrganizationTypeNew';
|
|
4983
4985
|
endpoint?: Maybe<Array<Maybe<EndpointType>>>;
|
|
4986
|
+
/** URL of the organization's logo */
|
|
4987
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
4984
4988
|
name?: Maybe<Scalars['String']['output']>;
|
|
4985
4989
|
};
|
|
4986
4990
|
export type OrganizationsRequest = {
|
|
@@ -5030,6 +5034,8 @@ export type PartOf = {
|
|
|
5030
5034
|
content?: Maybe<Scalars['String']['output']>;
|
|
5031
5035
|
endpointName?: Maybe<Scalars['String']['output']>;
|
|
5032
5036
|
id?: Maybe<Scalars['String']['output']>;
|
|
5037
|
+
/** URL of the organization's logo */
|
|
5038
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
5033
5039
|
};
|
|
5034
5040
|
export type Participant = {
|
|
5035
5041
|
__typename?: 'Participant';
|
|
@@ -7327,6 +7333,8 @@ export type SearchProvidersResult = {
|
|
|
7327
7333
|
id?: Maybe<Scalars['String']['output']>;
|
|
7328
7334
|
/** locations the provider practices */
|
|
7329
7335
|
location?: Maybe<Array<Maybe<ProviderLocation>>>;
|
|
7336
|
+
/** URL of the health resource's logo */
|
|
7337
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
7330
7338
|
/** name structure */
|
|
7331
7339
|
name?: Maybe<Array<Maybe<HumanName>>>;
|
|
7332
7340
|
/** npi numbers for provider */
|