@icanbwell/bwell-sdk-ts 1.50.0 → 1.51.0-rc.1765477939
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/explanation-of-benefit.d.ts +1 -1
- package/dist/api/base/financial/explanation-of-benefit.js +1 -1
- package/dist/api/base/financial/financial-manager.d.ts +2 -2
- 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-explanation-of-benefits-factory.d.ts +3 -3
- package/dist/api/graphql-api/financial/graphql-financial-manager.d.ts +2 -2
- package/dist/graphql/operations/index.d.ts +10 -10
- package/dist/graphql/operations/index.js +59 -19
- package/dist/graphql/operations/types.d.ts +189 -33
- package/dist/graphql/schema.d.ts +72 -2
- package/dist/graphql/schema.js +29 -0
- package/package.json +1 -1
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
|
@@ -26,7 +26,7 @@ declare class ExplanationOfBenefitRequestValidator extends PagedRequestValidator
|
|
|
26
26
|
* @title ExplanationOfBenefitsRequest
|
|
27
27
|
* @excerpt Request object for fetching ExplanationOfBenefit FHIR resources with validation
|
|
28
28
|
*/
|
|
29
|
-
export declare class
|
|
29
|
+
export declare class ExplanationOfBenefitRequest extends PagedRequest<ExplanationOfBenefitRequestInput> {
|
|
30
30
|
protected validator: ExplanationOfBenefitRequestValidator;
|
|
31
31
|
}
|
|
32
32
|
export {};
|
|
@@ -58,7 +58,7 @@ _ExplanationOfBenefitRequestValidator_searchStringValidator = new WeakMap(), _Ex
|
|
|
58
58
|
* @title ExplanationOfBenefitsRequest
|
|
59
59
|
* @excerpt Request object for fetching ExplanationOfBenefit FHIR resources with validation
|
|
60
60
|
*/
|
|
61
|
-
export class
|
|
61
|
+
export class ExplanationOfBenefitRequest extends PagedRequest {
|
|
62
62
|
constructor() {
|
|
63
63
|
super(...arguments);
|
|
64
64
|
this.validator = new ExplanationOfBenefitRequestValidator();
|
|
@@ -3,7 +3,7 @@ import { GetCoveragesQueryResults, GetExplanationOfBenefitsQueryResults } from "
|
|
|
3
3
|
import { BWellQueryResult } from "../../../results/index.js";
|
|
4
4
|
import { BaseManagerError } from "../errors.js";
|
|
5
5
|
import { CoveragesRequest } from "./coverage-request.js";
|
|
6
|
-
import {
|
|
6
|
+
import { ExplanationOfBenefitRequest } from "./explanation-of-benefit.js";
|
|
7
7
|
export type CoveragesResults = GetCoveragesQueryResults["coverages"];
|
|
8
8
|
export type ExplanationOfBenefitsResults = GetExplanationOfBenefitsQueryResults["explanationOfBenefits"];
|
|
9
9
|
/**
|
|
@@ -18,5 +18,5 @@ export interface FinancialManager {
|
|
|
18
18
|
* or an error of type `ValidationError` or `BaseManagerError`.
|
|
19
19
|
*/
|
|
20
20
|
getCoverages(request: CoveragesRequest): Promise<BWellQueryResult<CoveragesResults, ValidationError | BaseManagerError>>;
|
|
21
|
-
getExplanationOfBenefits(request:
|
|
21
|
+
getExplanationOfBenefits(request: ExplanationOfBenefitRequest): Promise<BWellQueryResult<ExplanationOfBenefitsResults, ValidationError | BaseManagerError>>;
|
|
22
22
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { GetExplanationOfBenefitsQueryVariables } from "../../../graphql/operations/types.js";
|
|
2
2
|
import type { RequestFactory } from "../../../requests/request.js";
|
|
3
|
-
import {
|
|
3
|
+
import { ExplanationOfBenefitRequest } from "../../base/financial/explanation-of-benefit.js";
|
|
4
4
|
/**
|
|
5
5
|
* Factory to create ExplanationOfBenefit GraphQL variables from ExplanationOfBenefitsRequest.
|
|
6
6
|
*/
|
|
7
|
-
export declare class ExplanationOfBenefitsRequestFactory implements RequestFactory<
|
|
8
|
-
create(request?:
|
|
7
|
+
export declare class ExplanationOfBenefitsRequestFactory implements RequestFactory<ExplanationOfBenefitRequest, GetExplanationOfBenefitsQueryVariables> {
|
|
8
|
+
create(request?: ExplanationOfBenefitRequest): GetExplanationOfBenefitsQueryVariables;
|
|
9
9
|
}
|
|
@@ -3,7 +3,7 @@ import { LoggerProvider } from "../../../logger/index.js";
|
|
|
3
3
|
import { BWellQueryResult } from "../../../results/index.js";
|
|
4
4
|
import { BaseManagerError } from "../../base/errors.js";
|
|
5
5
|
import { CoveragesRequest } from "../../base/financial/coverage-request.js";
|
|
6
|
-
import {
|
|
6
|
+
import { ExplanationOfBenefitRequest } from "../../base/financial/explanation-of-benefit.js";
|
|
7
7
|
import { CoveragesResults, ExplanationOfBenefitsResults, FinancialManager } from "../../base/financial/financial-manager.js";
|
|
8
8
|
import { GraphQLManager } from "../graphql-manager/index.js";
|
|
9
9
|
import type { GraphQLSdk } from "../graphql-sdk/index.js";
|
|
@@ -17,5 +17,5 @@ export declare class GraphQLFinancialManager extends GraphQLManager implements F
|
|
|
17
17
|
* @returns Promise resolving to coverage resources results or an error
|
|
18
18
|
*/
|
|
19
19
|
getCoverages(request: CoveragesRequest): Promise<BWellQueryResult<CoveragesResults, ValidationError | BaseManagerError>>;
|
|
20
|
-
getExplanationOfBenefits(request:
|
|
20
|
+
getExplanationOfBenefits(request: ExplanationOfBenefitRequest): Promise<BWellQueryResult<ExplanationOfBenefitsResults, ValidationError | BaseManagerError>>;
|
|
21
21
|
}
|
|
@@ -48,17 +48,18 @@ export declare const MetaFieldsFragmentDoc = "\n fragment MetaFields on Meta
|
|
|
48
48
|
export declare const DocumentReferenceContextFieldsFragmentDoc = "\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 ";
|
|
49
49
|
export declare const DocumentReferenceFieldsFragmentDoc = "\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 ";
|
|
50
50
|
export declare const CoveragePolicyHolderReferenceFieldsFragmentDoc = "\n fragment CoveragePolicyHolderReferenceFields on CoveragePolicyHolderReference {\n reference\n display\n type\n}\n ";
|
|
51
|
-
export declare const
|
|
52
|
-
export declare const
|
|
51
|
+
export declare const HumanNameFieldsFragmentDoc = "\n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n ";
|
|
52
|
+
export declare const PatientFieldsFragmentDoc = "\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 ";
|
|
53
|
+
export declare const CoverageBeneficiaryReferenceFieldsFragmentDoc = "\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 ";
|
|
54
|
+
export declare const CoveragePayorReferenceFieldsFragmentDoc = "\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 ";
|
|
53
55
|
export declare const CoverageClassFieldsFragmentDoc = "\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 ";
|
|
54
|
-
export declare const CoverageFieldsFragmentDoc = "\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}\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}\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 ";
|
|
56
|
+
export declare const CoverageFieldsFragmentDoc = "\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 ";
|
|
55
57
|
export declare const MoneyResourceFieldsFragmentDoc = "\n fragment MoneyResourceFields on Money {\n value\n currency\n}\n ";
|
|
56
58
|
export declare const ExplanationOfBenefitAdjudicationFieldsFragmentDoc = "\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 ";
|
|
57
59
|
export declare const AttachmentFieldsFragmentDoc = "\n fragment AttachmentFields on Attachment {\n contentType\n data\n url\n title\n}\n ";
|
|
58
60
|
export declare const ProtocolAppliedFieldsFragmentDoc = "\n fragment ProtocolAppliedFields on ProtocolApplied {\n doseNumberString\n doseNumberPositiveInt\n}\n ";
|
|
59
61
|
export declare const DetailFieldsFragmentDoc = "\n fragment DetailFields on Detail {\n kind {\n display\n code\n }\n code {\n ...CodeableConceptFields\n }\n status {\n display\n code\n }\n scheduledPeriod {\n ...PeriodFields\n }\n scheduledString\n scheduledTiming {\n ...TimingFields\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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment TimingFields on Timing {\n id\n code {\n ...CodeableConceptFields\n }\n event\n repeat {\n ...TimingRepeatFields\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 TimingRepeatFields on TimingRepeat {\n id\n boundsDuration {\n ...QuantityFields\n }\n boundsPeriod {\n ...PeriodFields\n }\n boundsRange {\n ...RangeFields\n }\n count\n countMax\n dayOfWeek {\n code\n display\n }\n duration\n durationMax\n durationUnit {\n code\n display\n }\n frequency\n frequencyMax\n offset\n period\n periodMax\n periodUnit {\n display\n code\n }\n timeOfDay\n when {\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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment RangeFields on Range {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n ";
|
|
60
62
|
export declare const ActivityFieldsFragmentDoc = "\n fragment ActivityFields on Activity {\n detail {\n ...DetailFields\n }\n}\n \n fragment DetailFields on Detail {\n kind {\n display\n code\n }\n code {\n ...CodeableConceptFields\n }\n status {\n display\n code\n }\n scheduledPeriod {\n ...PeriodFields\n }\n scheduledString\n scheduledTiming {\n ...TimingFields\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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment TimingFields on Timing {\n id\n code {\n ...CodeableConceptFields\n }\n event\n repeat {\n ...TimingRepeatFields\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 TimingRepeatFields on TimingRepeat {\n id\n boundsDuration {\n ...QuantityFields\n }\n boundsPeriod {\n ...PeriodFields\n }\n boundsRange {\n ...RangeFields\n }\n count\n countMax\n dayOfWeek {\n code\n display\n }\n duration\n durationMax\n durationUnit {\n code\n display\n }\n frequency\n frequencyMax\n offset\n period\n periodMax\n periodUnit {\n display\n code\n }\n timeOfDay\n when {\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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment RangeFields on Range {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n ";
|
|
61
|
-
export declare const HumanNameFieldsFragmentDoc = "\n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n ";
|
|
62
63
|
export declare const ObservationBasedOnFieldsFragmentDoc = "\n fragment ObservationBasedOnFields on ObservationBasedOn {\n ... on ServiceRequest {\n resourceType\n id\n reasonCode {\n ...CodeableConceptFields\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 ";
|
|
63
64
|
export declare const ValueFieldsFragmentDoc = "\n fragment ValueFields on Value {\n valueQuantity {\n ...QuantityFields\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueString\n valueBoolean\n valueInteger\n valueRatio {\n ...RatioFields\n }\n valueRange {\n ...RangeFields\n }\n valueTime\n valueDateTime\n valuePeriod {\n ...PeriodFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\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 RatioFields on Ratio {\n numerator {\n ...QuantityFields\n }\n denominator {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment RangeFields on Range {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n ";
|
|
64
65
|
export declare const ReferenceRangeFieldsFragmentDoc = "\n fragment ReferenceRangeFields on ReferenceRange {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n text\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n ";
|
|
@@ -80,9 +81,8 @@ export declare const PractitionerFieldsFragmentDoc = "\n fragment Practitione
|
|
|
80
81
|
export declare const EndpointFieldsFragmentDoc = "\n fragment EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ";
|
|
81
82
|
export declare const OrganizationFieldsFragmentDoc = "\n fragment OrganizationFields on Organization {\n resourceType\n identifier {\n ...IdentifierFields\n }\n endpoint {\n ...EndpointFields\n }\n name\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n type {\n ...CodeableConceptFields\n }\n active\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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 ";
|
|
82
83
|
export declare const PractitionerRoleFieldsFragmentDoc = "\n fragment PractitionerRoleFields on PractitionerRole {\n resourceType\n id\n identifier {\n ...IdentifierFields\n }\n practitioner {\n ...PractitionerFields\n }\n organization {\n ...OrganizationFields\n }\n code {\n ...CodeableConceptFields\n }\n specialty {\n ...CodeableConceptFields\n }\n location {\n ...LocationFields\n }\n endpoint {\n ...EndpointFields\n }\n telecom {\n ...ContactPointFields\n }\n active\n period {\n ...PeriodFields\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 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 OrganizationFields on Organization {\n resourceType\n identifier {\n ...IdentifierFields\n }\n endpoint {\n ...EndpointFields\n }\n name\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n type {\n ...CodeableConceptFields\n }\n active\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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 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 LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\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 AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\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 LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n ";
|
|
83
|
-
export declare const
|
|
84
|
-
export declare const
|
|
85
|
-
export declare const CareTeamParticipantFieldsFragmentDoc = "\n fragment CareTeamParticipantFields on CareTeamParticipant {\n role {\n ...CodeableConceptFields\n }\n member {\n __typename\n ... on Organization {\n id\n organizationName: name\n alias\n meta {\n ...MetaFields\n }\n }\n ... on Practitioner {\n ...PractitionerFields\n }\n ... on PractitionerRole {\n ...PractitionerRoleFields\n }\n ... on RelatedPerson {\n ...RelatedPersonFields\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 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 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 PractitionerRoleFields on PractitionerRole {\n resourceType\n id\n identifier {\n ...IdentifierFields\n }\n practitioner {\n ...PractitionerFields\n }\n organization {\n ...OrganizationFields\n }\n code {\n ...CodeableConceptFields\n }\n specialty {\n ...CodeableConceptFields\n }\n location {\n ...LocationFields\n }\n endpoint {\n ...EndpointFields\n }\n telecom {\n ...ContactPointFields\n }\n active\n period {\n ...PeriodFields\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 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 OrganizationFields on Organization {\n resourceType\n identifier {\n ...IdentifierFields\n }\n endpoint {\n ...EndpointFields\n }\n name\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n type {\n ...CodeableConceptFields\n }\n active\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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 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 LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\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 AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\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 LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment RelatedPersonFields on RelatedPerson {\n resourceType\n id\n active\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n relationship {\n ...CodeableConceptFields\n }\n patient {\n ...PatientFields\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n ";
|
|
84
|
+
export declare const RelatedPersonFieldsFragmentDoc = "\n fragment RelatedPersonFields on RelatedPerson {\n resourceType\n id\n active\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n relationship {\n ...CodeableConceptFields\n }\n patient {\n ...PatientFields\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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 ";
|
|
85
|
+
export declare const CareTeamParticipantFieldsFragmentDoc = "\n fragment CareTeamParticipantFields on CareTeamParticipant {\n role {\n ...CodeableConceptFields\n }\n member {\n __typename\n ... on Organization {\n id\n organizationName: name\n alias\n meta {\n ...MetaFields\n }\n }\n ... on Practitioner {\n ...PractitionerFields\n }\n ... on PractitionerRole {\n ...PractitionerRoleFields\n }\n ... on RelatedPerson {\n ...RelatedPersonFields\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 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 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 PractitionerRoleFields on PractitionerRole {\n resourceType\n id\n identifier {\n ...IdentifierFields\n }\n practitioner {\n ...PractitionerFields\n }\n organization {\n ...OrganizationFields\n }\n code {\n ...CodeableConceptFields\n }\n specialty {\n ...CodeableConceptFields\n }\n location {\n ...LocationFields\n }\n endpoint {\n ...EndpointFields\n }\n telecom {\n ...ContactPointFields\n }\n active\n period {\n ...PeriodFields\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 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 OrganizationFields on Organization {\n resourceType\n identifier {\n ...IdentifierFields\n }\n endpoint {\n ...EndpointFields\n }\n name\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n type {\n ...CodeableConceptFields\n }\n active\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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 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 LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\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 AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\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 LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment RelatedPersonFields on RelatedPerson {\n resourceType\n id\n active\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n relationship {\n ...CodeableConceptFields\n }\n patient {\n ...PatientFields\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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 ";
|
|
86
86
|
export declare const AsserterFieldsFragmentDoc = "\n fragment AsserterFields on Asserter {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\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 ";
|
|
87
87
|
export declare const QuestionnaireResponseItemFieldsFragmentDoc = "\n fragment QuestionnaireResponseItemFields on QuestionnaireResponseItem {\n linkId\n text\n answer {\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 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 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 ";
|
|
88
88
|
export declare const QuestionnaireItemFieldsFragmentDoc = "\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 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 ";
|
|
@@ -98,8 +98,8 @@ export declare const GetMemberConnectionsDocument = "\n query getMemberConnec
|
|
|
98
98
|
export declare const GetOauthUrlDocument = "\n query getOauthUrl($connectionId: String!) {\n getOauthUrl(connectionId: $connectionId) {\n redirectUrl\n }\n}\n ";
|
|
99
99
|
export declare const UpdateDeviceRegistrationDocument = "\n mutation updateDeviceRegistration($deviceToken: String!, $platformName: String!, $applicationName: String!, $notificationPreference: Boolean!) {\n updateDeviceRegistration(\n input: {deviceToken: $deviceToken, platform: $platformName, applicationName: $applicationName, notificationPreference: $notificationPreference}\n ) {\n id\n }\n}\n ";
|
|
100
100
|
export declare const PublishEventDocument = "\n mutation publishEvent($eventType: EventType!, $messageId: String, $notificationId: String) {\n publishEvent(\n input: {eventType: $eventType, campaignId: $notificationId, messageId: $messageId}\n ) {\n id\n }\n}\n ";
|
|
101
|
-
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}\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}\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 ";
|
|
102
|
-
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 }\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 }\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 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 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 ";
|
|
101
|
+
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 ";
|
|
102
|
+
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 ";
|
|
103
103
|
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 ";
|
|
104
104
|
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 ";
|
|
105
105
|
export declare const GetDiagnosticReportsDocument = "\n query getDiagnosticReports($pageSize: Int = null, $page: Int = null, $id: SearchString = null, $sort: [String] = null) {\n diagnosticReports(\n _count: $pageSize\n _getpagesoffset: $page\n id: $id\n _sort: $sort\n ) {\n entry {\n resource {\n id\n meta {\n ...MetaFields\n }\n basedOn {\n reference\n display\n }\n category {\n ...CodeableConceptFields\n }\n code {\n ...CodeableConceptFields\n }\n effectiveDateTime\n encounter {\n reference\n display\n }\n issued\n performer {\n reference\n display\n }\n presentedForm {\n data\n }\n resourceType\n result {\n ... on DiagnosticReportResultReference {\n display\n reference\n }\n }\n status\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 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 ";
|
|
@@ -107,7 +107,7 @@ export declare const GetAllergyIntoleranceGroupsDocument = "\n query getAller
|
|
|
107
107
|
export declare const GetAllergyIntolerancesDocument = "\n query getAllergyIntolerances($request: AllergyIntolerancesRequest) {\n getAllergyIntolerances(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n resourceType\n id\n meta {\n ...MetaFields\n }\n category {\n code\n display\n }\n code {\n coding {\n system\n code\n display\n }\n text\n }\n criticality {\n code\n display\n }\n onsetDateTime\n onsetPeriod {\n start\n end\n }\n text {\n ...NarrativeFields\n }\n typeCoding {\n code\n display\n }\n recorder {\n ... on Practitioner {\n ...PractitionerFields\n }\n }\n lastOccurrence\n reaction {\n ...ReactionFields\n }\n recordedDate\n note {\n authorString\n time\n text\n }\n verificationStatus {\n coding {\n system\n code\n display\n }\n text\n }\n clinicalStatus {\n coding {\n system\n code\n display\n }\n text\n }\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\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 NarrativeFields on Narrative {\n div\n status\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 ReactionFields on Reaction {\n description\n manifestation {\n ...CodeableConceptFields\n }\n onset\n severity {\n code\n display\n }\n note {\n authorString\n time\n text\n }\n date\n detail {\n ...ObservationFields\n }\n reported\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 ObservationFields on ObservationResource {\n id\n meta {\n ...MetaFields\n }\n resourceType\n text {\n ...NarrativeFields\n }\n identifier {\n ...IdentifierFields\n }\n subject {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n }\n issued\n basedOn {\n ...ObservationBasedOnFields\n }\n code {\n ...CodeableConceptFields\n }\n category {\n ...CodeableConceptFields\n }\n value {\n ...ValueFields\n }\n referenceRange {\n ...ReferenceRangeFields\n }\n interpretation {\n ...CodeableConceptFields\n }\n component {\n ...ComponentFields\n }\n effectiveDateTime\n effectivePeriod {\n ...PeriodFields\n }\n note {\n authorString\n time\n text\n }\n encounter {\n ...EncounterFields\n }\n performer {\n ...PerformerFields\n }\n hasMember {\n ... on ObservationResource {\n id\n code {\n ...CodeableConceptFields\n }\n }\n }\n specimen {\n ...SpecimenResourceFields\n }\n status {\n display\n code\n }\n dataAbsentReason {\n ...CodeableConceptFields\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 NarrativeFields on Narrative {\n div\n status\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 HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment ObservationBasedOnFields on ObservationBasedOn {\n ... on ServiceRequest {\n resourceType\n id\n reasonCode {\n ...CodeableConceptFields\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 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 ValueFields on Value {\n valueQuantity {\n ...QuantityFields\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueString\n valueBoolean\n valueInteger\n valueRatio {\n ...RatioFields\n }\n valueRange {\n ...RangeFields\n }\n valueTime\n valueDateTime\n valuePeriod {\n ...PeriodFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\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 RatioFields on Ratio {\n numerator {\n ...QuantityFields\n }\n denominator {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment RangeFields on Range {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment ReferenceRangeFields on ReferenceRange {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n text\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment ComponentFields on Component {\n code {\n ...CodeableConceptFields\n }\n value {\n ...ValueFields\n }\n referenceRange {\n ...ReferenceRangeFields\n }\n interpretation {\n ...CodeableConceptFields\n }\n dataAbsentReason {\n ...CodeableConceptFields\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 ValueFields on Value {\n valueQuantity {\n ...QuantityFields\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueString\n valueBoolean\n valueInteger\n valueRatio {\n ...RatioFields\n }\n valueRange {\n ...RangeFields\n }\n valueTime\n valueDateTime\n valuePeriod {\n ...PeriodFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\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 RatioFields on Ratio {\n numerator {\n ...QuantityFields\n }\n denominator {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment RangeFields on Range {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment ReferenceRangeFields on ReferenceRange {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n text\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment EncounterFields on EncounterResource {\n meta {\n ...MetaFields\n }\n id\n resourceType\n text {\n ...NarrativeFields\n }\n encounterLocations: locations {\n location {\n ...LocationFields\n }\n status\n physicalType {\n ...CodeableConceptFields\n }\n period {\n ...PeriodFields\n }\n }\n identifier {\n ...IdentifierFields\n }\n type {\n ...CodeableConceptFields\n }\n status {\n display\n code\n }\n participant {\n ...ParticipantFields\n }\n period {\n ...PeriodFields\n }\n reasonCode {\n ...CodeableConceptFields\n }\n class {\n system\n code\n display\n }\n location {\n ...LocationFields\n }\n serviceProvider {\n name\n endpoint {\n name\n status\n connectionType {\n system\n code\n display\n }\n address\n }\n }\n subject {\n id\n name {\n ...HumanNameFields\n }\n gender\n birthDate\n communication {\n language {\n ...CodeableConceptFields\n }\n }\n }\n reasonReference {\n ...ConditionFields\n }\n hospitalization {\n dischargeDisposition {\n ...CodeableConceptFields\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 NarrativeFields on Narrative {\n div\n status\n}\n \n\n fragment LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\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 AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\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 LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\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 PeriodFields on Period {\n start\n end\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 ParticipantFields on Participant {\n individual {\n id\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n }\n type {\n ...CodeableConceptFields\n }\n period {\n ...PeriodFields\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 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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment ConditionFields on ConditionResource {\n id\n meta {\n ...MetaFields\n }\n code {\n ...CodeableConceptFields\n }\n clinicalStatus {\n ...CodeableConceptFields\n }\n onsetDateTime\n recordedDate\n recorder {\n ...RecorderFields\n }\n note {\n authorString\n time\n text\n }\n onsetPeriod {\n ...PeriodFields\n }\n abatementDateTime\n abatementPeriod {\n ...PeriodFields\n }\n category {\n ...CodeableConceptFields\n }\n severity {\n ...CodeableConceptFields\n }\n verificationStatus {\n ...CodeableConceptFields\n }\n bodySite {\n ...CodeableConceptFields\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 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 RecorderFields on Recorder {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment PerformerFields on Performer {\n actor {\n ...ActorFields\n }\n}\n \n fragment ActorFields on Actor {\n __typename\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n }\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n ... on Organization {\n organizationName: name\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 SpecimenResourceFields on SpecimenResource {\n identifier {\n ...IdentifierFields\n }\n accessionIdentifier {\n ...IdentifierFields\n }\n type {\n ...CodeableConceptFields\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 ";
|
|
108
108
|
export declare const GetCarePlanGroupsDocument = "\n query getCarePlanGroups($request: CarePlanGroupQueryRequest) {\n getCarePlanGroups(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n references\n coding {\n ...CodingFields\n }\n source\n period {\n ...PeriodFields\n }\n sourceDisplay\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n ";
|
|
109
109
|
export declare const GetCarePlansDocument = "\n query getCarePlans($request: CarePlanRequest) {\n getCarePlans(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n meta {\n ...MetaFields\n }\n id\n title\n resourceType\n description\n encounter {\n ...EncounterFields\n }\n addresses {\n ...ConditionFields\n }\n identifier {\n ...IdentifierFields\n }\n category {\n ...CodeableConceptFields\n }\n text {\n ...NarrativeFields\n }\n status {\n display\n code\n }\n intent {\n display\n code\n }\n subject {\n _resourceType\n id\n }\n period {\n ...PeriodFields\n }\n created\n activity {\n ...ActivityFields\n }\n note {\n authorString\n time\n text\n }\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\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 EncounterFields on EncounterResource {\n meta {\n ...MetaFields\n }\n id\n resourceType\n text {\n ...NarrativeFields\n }\n encounterLocations: locations {\n location {\n ...LocationFields\n }\n status\n physicalType {\n ...CodeableConceptFields\n }\n period {\n ...PeriodFields\n }\n }\n identifier {\n ...IdentifierFields\n }\n type {\n ...CodeableConceptFields\n }\n status {\n display\n code\n }\n participant {\n ...ParticipantFields\n }\n period {\n ...PeriodFields\n }\n reasonCode {\n ...CodeableConceptFields\n }\n class {\n system\n code\n display\n }\n location {\n ...LocationFields\n }\n serviceProvider {\n name\n endpoint {\n name\n status\n connectionType {\n system\n code\n display\n }\n address\n }\n }\n subject {\n id\n name {\n ...HumanNameFields\n }\n gender\n birthDate\n communication {\n language {\n ...CodeableConceptFields\n }\n }\n }\n reasonReference {\n ...ConditionFields\n }\n hospitalization {\n dischargeDisposition {\n ...CodeableConceptFields\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 NarrativeFields on Narrative {\n div\n status\n}\n \n\n fragment LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\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 AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\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 LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\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 PeriodFields on Period {\n start\n end\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 ParticipantFields on Participant {\n individual {\n id\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n }\n type {\n ...CodeableConceptFields\n }\n period {\n ...PeriodFields\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 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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment ConditionFields on ConditionResource {\n id\n meta {\n ...MetaFields\n }\n code {\n ...CodeableConceptFields\n }\n clinicalStatus {\n ...CodeableConceptFields\n }\n onsetDateTime\n recordedDate\n recorder {\n ...RecorderFields\n }\n note {\n authorString\n time\n text\n }\n onsetPeriod {\n ...PeriodFields\n }\n abatementDateTime\n abatementPeriod {\n ...PeriodFields\n }\n category {\n ...CodeableConceptFields\n }\n severity {\n ...CodeableConceptFields\n }\n verificationStatus {\n ...CodeableConceptFields\n }\n bodySite {\n ...CodeableConceptFields\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 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 RecorderFields on Recorder {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment ConditionFields on ConditionResource {\n id\n meta {\n ...MetaFields\n }\n code {\n ...CodeableConceptFields\n }\n clinicalStatus {\n ...CodeableConceptFields\n }\n onsetDateTime\n recordedDate\n recorder {\n ...RecorderFields\n }\n note {\n authorString\n time\n text\n }\n onsetPeriod {\n ...PeriodFields\n }\n abatementDateTime\n abatementPeriod {\n ...PeriodFields\n }\n category {\n ...CodeableConceptFields\n }\n severity {\n ...CodeableConceptFields\n }\n verificationStatus {\n ...CodeableConceptFields\n }\n bodySite {\n ...CodeableConceptFields\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 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 RecorderFields on Recorder {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\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 PeriodFields on Period {\n start\n end\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 NarrativeFields on Narrative {\n div\n status\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment ActivityFields on Activity {\n detail {\n ...DetailFields\n }\n}\n \n fragment DetailFields on Detail {\n kind {\n display\n code\n }\n code {\n ...CodeableConceptFields\n }\n status {\n display\n code\n }\n scheduledPeriod {\n ...PeriodFields\n }\n scheduledString\n scheduledTiming {\n ...TimingFields\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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment TimingFields on Timing {\n id\n code {\n ...CodeableConceptFields\n }\n event\n repeat {\n ...TimingRepeatFields\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 TimingRepeatFields on TimingRepeat {\n id\n boundsDuration {\n ...QuantityFields\n }\n boundsPeriod {\n ...PeriodFields\n }\n boundsRange {\n ...RangeFields\n }\n count\n countMax\n dayOfWeek {\n code\n display\n }\n duration\n durationMax\n durationUnit {\n code\n display\n }\n frequency\n frequencyMax\n offset\n period\n periodMax\n periodUnit {\n display\n code\n }\n timeOfDay\n when {\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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment RangeFields on Range {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n ";
|
|
110
|
-
export declare const GetCareTeamsDocument = "\n query getCareTeams($request: CareTeamRequest) {\n getCareTeams(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n category {\n ...CodeableConceptFields\n }\n participant {\n ...CareTeamParticipantFields\n }\n resourceType\n status\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\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 CareTeamParticipantFields on CareTeamParticipant {\n role {\n ...CodeableConceptFields\n }\n member {\n __typename\n ... on Organization {\n id\n organizationName: name\n alias\n meta {\n ...MetaFields\n }\n }\n ... on Practitioner {\n ...PractitionerFields\n }\n ... on PractitionerRole {\n ...PractitionerRoleFields\n }\n ... on RelatedPerson {\n ...RelatedPersonFields\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 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 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 PractitionerRoleFields on PractitionerRole {\n resourceType\n id\n identifier {\n ...IdentifierFields\n }\n practitioner {\n ...PractitionerFields\n }\n organization {\n ...OrganizationFields\n }\n code {\n ...CodeableConceptFields\n }\n specialty {\n ...CodeableConceptFields\n }\n location {\n ...LocationFields\n }\n endpoint {\n ...EndpointFields\n }\n telecom {\n ...ContactPointFields\n }\n active\n period {\n ...PeriodFields\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 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 OrganizationFields on Organization {\n resourceType\n identifier {\n ...IdentifierFields\n }\n endpoint {\n ...EndpointFields\n }\n name\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n type {\n ...CodeableConceptFields\n }\n active\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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 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 LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\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 AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\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 LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment RelatedPersonFields on RelatedPerson {\n resourceType\n id\n active\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n relationship {\n ...CodeableConceptFields\n }\n patient {\n ...PatientFields\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n ";
|
|
110
|
+
export declare const GetCareTeamsDocument = "\n query getCareTeams($request: CareTeamRequest) {\n getCareTeams(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n category {\n ...CodeableConceptFields\n }\n participant {\n ...CareTeamParticipantFields\n }\n resourceType\n status\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\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 CareTeamParticipantFields on CareTeamParticipant {\n role {\n ...CodeableConceptFields\n }\n member {\n __typename\n ... on Organization {\n id\n organizationName: name\n alias\n meta {\n ...MetaFields\n }\n }\n ... on Practitioner {\n ...PractitionerFields\n }\n ... on PractitionerRole {\n ...PractitionerRoleFields\n }\n ... on RelatedPerson {\n ...RelatedPersonFields\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 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 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 PractitionerRoleFields on PractitionerRole {\n resourceType\n id\n identifier {\n ...IdentifierFields\n }\n practitioner {\n ...PractitionerFields\n }\n organization {\n ...OrganizationFields\n }\n code {\n ...CodeableConceptFields\n }\n specialty {\n ...CodeableConceptFields\n }\n location {\n ...LocationFields\n }\n endpoint {\n ...EndpointFields\n }\n telecom {\n ...ContactPointFields\n }\n active\n period {\n ...PeriodFields\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 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 OrganizationFields on Organization {\n resourceType\n identifier {\n ...IdentifierFields\n }\n endpoint {\n ...EndpointFields\n }\n name\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n type {\n ...CodeableConceptFields\n }\n active\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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 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 LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\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 AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\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 LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\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 EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment RelatedPersonFields on RelatedPerson {\n resourceType\n id\n active\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n relationship {\n ...CodeableConceptFields\n }\n patient {\n ...PatientFields\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 ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\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 ";
|
|
111
111
|
export declare const GetConditionGroupsDocument = "\n query getConditionGroups($request: ConditionGroupQueryRequest) {\n getConditionGroups(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n coding {\n ...CodingFields\n }\n references\n recordedDate\n source\n sourceDisplay\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n ";
|
|
112
112
|
export declare const GetConditionsDocument = "\n query getConditions($request: ConditionRequest) {\n getConditions(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n resourceType\n identifier {\n ...IdentifierFields\n }\n text {\n ...NarrativeFields\n }\n extension {\n id\n url\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueString\n valueInteger\n valueDateTime\n }\n id\n meta {\n ...MetaFields\n }\n code {\n ...CodeableConceptFields\n }\n clinicalStatus {\n ...CodeableConceptFields\n }\n onsetDateTime\n recordedDate\n recorder {\n ...RecorderFields\n }\n note {\n authorString\n time\n text\n }\n onsetPeriod {\n ...PeriodFields\n }\n abatementDateTime\n abatementPeriod {\n ...PeriodFields\n }\n subject {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n }\n category {\n ...CodeableConceptFields\n }\n severity {\n ...CodeableConceptFields\n }\n verificationStatus {\n ...CodeableConceptFields\n }\n bodySite {\n ...CodeableConceptFields\n }\n asserter {\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n }\n }\n encounter {\n ...EncounterFields\n }\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\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 NarrativeFields on Narrative {\n div\n status\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 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 RecorderFields on Recorder {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment EncounterFields on EncounterResource {\n meta {\n ...MetaFields\n }\n id\n resourceType\n text {\n ...NarrativeFields\n }\n encounterLocations: locations {\n location {\n ...LocationFields\n }\n status\n physicalType {\n ...CodeableConceptFields\n }\n period {\n ...PeriodFields\n }\n }\n identifier {\n ...IdentifierFields\n }\n type {\n ...CodeableConceptFields\n }\n status {\n display\n code\n }\n participant {\n ...ParticipantFields\n }\n period {\n ...PeriodFields\n }\n reasonCode {\n ...CodeableConceptFields\n }\n class {\n system\n code\n display\n }\n location {\n ...LocationFields\n }\n serviceProvider {\n name\n endpoint {\n name\n status\n connectionType {\n system\n code\n display\n }\n address\n }\n }\n subject {\n id\n name {\n ...HumanNameFields\n }\n gender\n birthDate\n communication {\n language {\n ...CodeableConceptFields\n }\n }\n }\n reasonReference {\n ...ConditionFields\n }\n hospitalization {\n dischargeDisposition {\n ...CodeableConceptFields\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 NarrativeFields on Narrative {\n div\n status\n}\n \n\n fragment LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\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 AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\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 LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\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 PeriodFields on Period {\n start\n end\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 ParticipantFields on Participant {\n individual {\n id\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n }\n type {\n ...CodeableConceptFields\n }\n period {\n ...PeriodFields\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 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 PeriodFields on Period {\n start\n end\n}\n \n\n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment ConditionFields on ConditionResource {\n id\n meta {\n ...MetaFields\n }\n code {\n ...CodeableConceptFields\n }\n clinicalStatus {\n ...CodeableConceptFields\n }\n onsetDateTime\n recordedDate\n recorder {\n ...RecorderFields\n }\n note {\n authorString\n time\n text\n }\n onsetPeriod {\n ...PeriodFields\n }\n abatementDateTime\n abatementPeriod {\n ...PeriodFields\n }\n category {\n ...CodeableConceptFields\n }\n severity {\n ...CodeableConceptFields\n }\n verificationStatus {\n ...CodeableConceptFields\n }\n bodySite {\n ...CodeableConceptFields\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 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 RecorderFields on Recorder {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\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 PeriodFields on Period {\n start\n end\n}\n ";
|
|
113
113
|
export declare const GetDiagnosticReportLabGroupsDocument = "\n query getDiagnosticReportLabGroups($request: DiagnosticReportLabGroupQueryRequest) {\n getDiagnosticReportLabGroups(request: $request) {\n resources {\n id\n effectiveDateTime\n issued\n name\n performer\n references\n source\n sourceDisplay\n coding {\n ...CodingFields\n }\n }\n paging_info {\n ...PagingFields\n }\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n ";
|
|
@@ -521,20 +521,59 @@ export const CoveragePolicyHolderReferenceFieldsFragmentDoc = `
|
|
|
521
521
|
type
|
|
522
522
|
}
|
|
523
523
|
`;
|
|
524
|
+
export const HumanNameFieldsFragmentDoc = `
|
|
525
|
+
fragment HumanNameFields on HumanName {
|
|
526
|
+
text
|
|
527
|
+
family
|
|
528
|
+
given
|
|
529
|
+
prefix
|
|
530
|
+
suffix
|
|
531
|
+
}
|
|
532
|
+
`;
|
|
533
|
+
export const PatientFieldsFragmentDoc = `
|
|
534
|
+
fragment PatientFields on Patient {
|
|
535
|
+
id
|
|
536
|
+
name {
|
|
537
|
+
...HumanNameFields
|
|
538
|
+
}
|
|
539
|
+
birthDate
|
|
540
|
+
}
|
|
541
|
+
${HumanNameFieldsFragmentDoc}`;
|
|
524
542
|
export const CoverageBeneficiaryReferenceFieldsFragmentDoc = `
|
|
525
543
|
fragment CoverageBeneficiaryReferenceFields on CoverageBeneficiaryReference {
|
|
526
544
|
reference
|
|
527
545
|
display
|
|
528
546
|
type
|
|
547
|
+
resource {
|
|
548
|
+
...PatientFields
|
|
549
|
+
}
|
|
529
550
|
}
|
|
530
|
-
`;
|
|
551
|
+
${PatientFieldsFragmentDoc}`;
|
|
531
552
|
export const CoveragePayorReferenceFieldsFragmentDoc = `
|
|
532
553
|
fragment CoveragePayorReferenceFields on CoveragePayorReference {
|
|
533
554
|
reference
|
|
534
555
|
display
|
|
535
556
|
type
|
|
557
|
+
resource {
|
|
558
|
+
... on Organization {
|
|
559
|
+
__typename
|
|
560
|
+
organizationName: name
|
|
561
|
+
}
|
|
562
|
+
... on RelatedPerson {
|
|
563
|
+
__typename
|
|
564
|
+
name {
|
|
565
|
+
...HumanNameFields
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
... on Patient {
|
|
569
|
+
__typename
|
|
570
|
+
name {
|
|
571
|
+
...HumanNameFields
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
}
|
|
536
575
|
}
|
|
537
|
-
`;
|
|
576
|
+
${HumanNameFieldsFragmentDoc}`;
|
|
538
577
|
export const CoverageClassFieldsFragmentDoc = `
|
|
539
578
|
fragment CoverageClassFields on CoverageClass {
|
|
540
579
|
id
|
|
@@ -654,15 +693,6 @@ export const ActivityFieldsFragmentDoc = `
|
|
|
654
693
|
}
|
|
655
694
|
}
|
|
656
695
|
${DetailFieldsFragmentDoc}`;
|
|
657
|
-
export const HumanNameFieldsFragmentDoc = `
|
|
658
|
-
fragment HumanNameFields on HumanName {
|
|
659
|
-
text
|
|
660
|
-
family
|
|
661
|
-
given
|
|
662
|
-
prefix
|
|
663
|
-
suffix
|
|
664
|
-
}
|
|
665
|
-
`;
|
|
666
696
|
export const ObservationBasedOnFieldsFragmentDoc = `
|
|
667
697
|
fragment ObservationBasedOnFields on ObservationBasedOn {
|
|
668
698
|
... on ServiceRequest {
|
|
@@ -1228,14 +1258,6 @@ ${LocationFieldsFragmentDoc}
|
|
|
1228
1258
|
${EndpointFieldsFragmentDoc}
|
|
1229
1259
|
${ContactPointFieldsFragmentDoc}
|
|
1230
1260
|
${PeriodFieldsFragmentDoc}`;
|
|
1231
|
-
export const PatientFieldsFragmentDoc = `
|
|
1232
|
-
fragment PatientFields on Patient {
|
|
1233
|
-
id
|
|
1234
|
-
name {
|
|
1235
|
-
...HumanNameFields
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
${HumanNameFieldsFragmentDoc}`;
|
|
1239
1261
|
export const RelatedPersonFieldsFragmentDoc = `
|
|
1240
1262
|
fragment RelatedPersonFields on RelatedPerson {
|
|
1241
1263
|
resourceType
|
|
@@ -1855,6 +1877,9 @@ export const GetExplanationOfBenefitsDocument = `
|
|
|
1855
1877
|
reference
|
|
1856
1878
|
type
|
|
1857
1879
|
display
|
|
1880
|
+
resource {
|
|
1881
|
+
...PatientFields
|
|
1882
|
+
}
|
|
1858
1883
|
}
|
|
1859
1884
|
adjudication {
|
|
1860
1885
|
...ExplanationOfBenefitAdjudicationFields
|
|
@@ -1874,6 +1899,19 @@ export const GetExplanationOfBenefitsDocument = `
|
|
|
1874
1899
|
reference
|
|
1875
1900
|
type
|
|
1876
1901
|
display
|
|
1902
|
+
resource {
|
|
1903
|
+
... on Practitioner {
|
|
1904
|
+
__typename
|
|
1905
|
+
...PractitionerFields
|
|
1906
|
+
}
|
|
1907
|
+
... on Organization {
|
|
1908
|
+
__typename
|
|
1909
|
+
organizationName: name
|
|
1910
|
+
meta {
|
|
1911
|
+
...MetaFields
|
|
1912
|
+
}
|
|
1913
|
+
}
|
|
1914
|
+
}
|
|
1877
1915
|
}
|
|
1878
1916
|
related {
|
|
1879
1917
|
relationship {
|
|
@@ -2036,8 +2074,10 @@ export const GetExplanationOfBenefitsDocument = `
|
|
|
2036
2074
|
${MetaFieldsFragmentDoc}
|
|
2037
2075
|
${IdentifierFieldsFragmentDoc}
|
|
2038
2076
|
${CodeableConceptFieldsFragmentDoc}
|
|
2077
|
+
${PatientFieldsFragmentDoc}
|
|
2039
2078
|
${ExplanationOfBenefitAdjudicationFieldsFragmentDoc}
|
|
2040
2079
|
${PeriodFieldsFragmentDoc}
|
|
2080
|
+
${PractitionerFieldsFragmentDoc}
|
|
2041
2081
|
${QuantityFieldsFragmentDoc}
|
|
2042
2082
|
${AttachmentFieldsFragmentDoc}
|
|
2043
2083
|
${CodingFieldsFragmentDoc}
|
|
@@ -115,6 +115,17 @@ export type CoverageFieldsFragment = {
|
|
|
115
115
|
reference: string | null;
|
|
116
116
|
display: string | null;
|
|
117
117
|
type: any | null;
|
|
118
|
+
resource: {
|
|
119
|
+
id: string;
|
|
120
|
+
birthDate: any | null;
|
|
121
|
+
name: Array<{
|
|
122
|
+
text: string | null;
|
|
123
|
+
family: string | null;
|
|
124
|
+
given: Array<string | null> | null;
|
|
125
|
+
prefix: Array<string | null> | null;
|
|
126
|
+
suffix: Array<string | null> | null;
|
|
127
|
+
} | null> | null;
|
|
128
|
+
} | null;
|
|
118
129
|
} | null;
|
|
119
130
|
relationship: {
|
|
120
131
|
text: string | null;
|
|
@@ -132,6 +143,28 @@ export type CoverageFieldsFragment = {
|
|
|
132
143
|
reference: string | null;
|
|
133
144
|
display: string | null;
|
|
134
145
|
type: any | null;
|
|
146
|
+
resource: {
|
|
147
|
+
__typename: 'Organization';
|
|
148
|
+
organizationName: string | null;
|
|
149
|
+
} | {
|
|
150
|
+
__typename: 'Patient';
|
|
151
|
+
name: Array<{
|
|
152
|
+
text: string | null;
|
|
153
|
+
family: string | null;
|
|
154
|
+
given: Array<string | null> | null;
|
|
155
|
+
prefix: Array<string | null> | null;
|
|
156
|
+
suffix: Array<string | null> | null;
|
|
157
|
+
} | null> | null;
|
|
158
|
+
} | {
|
|
159
|
+
__typename: 'RelatedPerson';
|
|
160
|
+
name: Array<{
|
|
161
|
+
text: string | null;
|
|
162
|
+
family: string | null;
|
|
163
|
+
given: Array<string | null> | null;
|
|
164
|
+
prefix: Array<string | null> | null;
|
|
165
|
+
suffix: Array<string | null> | null;
|
|
166
|
+
} | null> | null;
|
|
167
|
+
} | null;
|
|
135
168
|
} | null> | null;
|
|
136
169
|
class: Array<{
|
|
137
170
|
id: string | null;
|
|
@@ -169,11 +202,62 @@ export type CoverageBeneficiaryReferenceFieldsFragment = {
|
|
|
169
202
|
reference: string | null;
|
|
170
203
|
display: string | null;
|
|
171
204
|
type: any | null;
|
|
205
|
+
resource: {
|
|
206
|
+
id: string;
|
|
207
|
+
birthDate: any | null;
|
|
208
|
+
name: Array<{
|
|
209
|
+
text: string | null;
|
|
210
|
+
family: string | null;
|
|
211
|
+
given: Array<string | null> | null;
|
|
212
|
+
prefix: Array<string | null> | null;
|
|
213
|
+
suffix: Array<string | null> | null;
|
|
214
|
+
} | null> | null;
|
|
215
|
+
} | null;
|
|
216
|
+
};
|
|
217
|
+
export type PatientFieldsFragment = {
|
|
218
|
+
id: string;
|
|
219
|
+
birthDate: any | null;
|
|
220
|
+
name: Array<{
|
|
221
|
+
text: string | null;
|
|
222
|
+
family: string | null;
|
|
223
|
+
given: Array<string | null> | null;
|
|
224
|
+
prefix: Array<string | null> | null;
|
|
225
|
+
suffix: Array<string | null> | null;
|
|
226
|
+
} | null> | null;
|
|
227
|
+
};
|
|
228
|
+
export type HumanNameFieldsFragment = {
|
|
229
|
+
text: string | null;
|
|
230
|
+
family: string | null;
|
|
231
|
+
given: Array<string | null> | null;
|
|
232
|
+
prefix: Array<string | null> | null;
|
|
233
|
+
suffix: Array<string | null> | null;
|
|
172
234
|
};
|
|
173
235
|
export type CoveragePayorReferenceFieldsFragment = {
|
|
174
236
|
reference: string | null;
|
|
175
237
|
display: string | null;
|
|
176
238
|
type: any | null;
|
|
239
|
+
resource: {
|
|
240
|
+
__typename: 'Organization';
|
|
241
|
+
organizationName: string | null;
|
|
242
|
+
} | {
|
|
243
|
+
__typename: 'Patient';
|
|
244
|
+
name: Array<{
|
|
245
|
+
text: string | null;
|
|
246
|
+
family: string | null;
|
|
247
|
+
given: Array<string | null> | null;
|
|
248
|
+
prefix: Array<string | null> | null;
|
|
249
|
+
suffix: Array<string | null> | null;
|
|
250
|
+
} | null> | null;
|
|
251
|
+
} | {
|
|
252
|
+
__typename: 'RelatedPerson';
|
|
253
|
+
name: Array<{
|
|
254
|
+
text: string | null;
|
|
255
|
+
family: string | null;
|
|
256
|
+
given: Array<string | null> | null;
|
|
257
|
+
prefix: Array<string | null> | null;
|
|
258
|
+
suffix: Array<string | null> | null;
|
|
259
|
+
} | null> | null;
|
|
260
|
+
} | null;
|
|
177
261
|
};
|
|
178
262
|
export type CoverageClassFieldsFragment = {
|
|
179
263
|
id: string | null;
|
|
@@ -216,23 +300,6 @@ export type MoneyResourceFieldsFragment = {
|
|
|
216
300
|
value: number | null;
|
|
217
301
|
currency: Types.CurrencyCode | null;
|
|
218
302
|
};
|
|
219
|
-
export type QuantityFieldsFragment = {
|
|
220
|
-
value: number | null;
|
|
221
|
-
unit: string | null;
|
|
222
|
-
code: any | null;
|
|
223
|
-
comparator: any | null;
|
|
224
|
-
system: any | null;
|
|
225
|
-
};
|
|
226
|
-
export type AttachmentFieldsFragment = {
|
|
227
|
-
contentType: any | null;
|
|
228
|
-
data: any | null;
|
|
229
|
-
url: any | null;
|
|
230
|
-
title: string | null;
|
|
231
|
-
};
|
|
232
|
-
export type NarrativeFieldsFragment = {
|
|
233
|
-
div: any | null;
|
|
234
|
-
status: any | null;
|
|
235
|
-
};
|
|
236
303
|
export type PractitionerFieldsFragment = {
|
|
237
304
|
id: string | null;
|
|
238
305
|
name: Array<{
|
|
@@ -256,12 +323,22 @@ export type PractitionerFieldsFragment = {
|
|
|
256
323
|
} | null;
|
|
257
324
|
} | null> | null;
|
|
258
325
|
};
|
|
259
|
-
export type
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
326
|
+
export type QuantityFieldsFragment = {
|
|
327
|
+
value: number | null;
|
|
328
|
+
unit: string | null;
|
|
329
|
+
code: any | null;
|
|
330
|
+
comparator: any | null;
|
|
331
|
+
system: any | null;
|
|
332
|
+
};
|
|
333
|
+
export type AttachmentFieldsFragment = {
|
|
334
|
+
contentType: any | null;
|
|
335
|
+
data: any | null;
|
|
336
|
+
url: any | null;
|
|
337
|
+
title: string | null;
|
|
338
|
+
};
|
|
339
|
+
export type NarrativeFieldsFragment = {
|
|
340
|
+
div: any | null;
|
|
341
|
+
status: any | null;
|
|
265
342
|
};
|
|
266
343
|
export type ReactionFieldsFragment = {
|
|
267
344
|
description: string | null;
|
|
@@ -3517,6 +3594,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3517
3594
|
} | null> | null;
|
|
3518
3595
|
patient: {
|
|
3519
3596
|
id: string;
|
|
3597
|
+
birthDate: any | null;
|
|
3520
3598
|
name: Array<{
|
|
3521
3599
|
text: string | null;
|
|
3522
3600
|
family: string | null;
|
|
@@ -3897,6 +3975,7 @@ export type RelatedPersonFieldsFragment = {
|
|
|
3897
3975
|
} | null> | null;
|
|
3898
3976
|
patient: {
|
|
3899
3977
|
id: string;
|
|
3978
|
+
birthDate: any | null;
|
|
3900
3979
|
name: Array<{
|
|
3901
3980
|
text: string | null;
|
|
3902
3981
|
family: string | null;
|
|
@@ -3906,16 +3985,6 @@ export type RelatedPersonFieldsFragment = {
|
|
|
3906
3985
|
} | null> | null;
|
|
3907
3986
|
} | null;
|
|
3908
3987
|
};
|
|
3909
|
-
export type PatientFieldsFragment = {
|
|
3910
|
-
id: string;
|
|
3911
|
-
name: Array<{
|
|
3912
|
-
text: string | null;
|
|
3913
|
-
family: string | null;
|
|
3914
|
-
given: Array<string | null> | null;
|
|
3915
|
-
prefix: Array<string | null> | null;
|
|
3916
|
-
suffix: Array<string | null> | null;
|
|
3917
|
-
} | null> | null;
|
|
3918
|
-
};
|
|
3919
3988
|
export type DocumentReferenceFieldsFragment = {
|
|
3920
3989
|
id: string | null;
|
|
3921
3990
|
resourceType: string | null;
|
|
@@ -7272,6 +7341,17 @@ export type GetCoveragesQueryResults = {
|
|
|
7272
7341
|
reference: string | null;
|
|
7273
7342
|
display: string | null;
|
|
7274
7343
|
type: any | null;
|
|
7344
|
+
resource: {
|
|
7345
|
+
id: string;
|
|
7346
|
+
birthDate: any | null;
|
|
7347
|
+
name: Array<{
|
|
7348
|
+
text: string | null;
|
|
7349
|
+
family: string | null;
|
|
7350
|
+
given: Array<string | null> | null;
|
|
7351
|
+
prefix: Array<string | null> | null;
|
|
7352
|
+
suffix: Array<string | null> | null;
|
|
7353
|
+
} | null> | null;
|
|
7354
|
+
} | null;
|
|
7275
7355
|
} | null;
|
|
7276
7356
|
relationship: {
|
|
7277
7357
|
text: string | null;
|
|
@@ -7289,6 +7369,28 @@ export type GetCoveragesQueryResults = {
|
|
|
7289
7369
|
reference: string | null;
|
|
7290
7370
|
display: string | null;
|
|
7291
7371
|
type: any | null;
|
|
7372
|
+
resource: {
|
|
7373
|
+
__typename: 'Organization';
|
|
7374
|
+
organizationName: string | null;
|
|
7375
|
+
} | {
|
|
7376
|
+
__typename: 'Patient';
|
|
7377
|
+
name: Array<{
|
|
7378
|
+
text: string | null;
|
|
7379
|
+
family: string | null;
|
|
7380
|
+
given: Array<string | null> | null;
|
|
7381
|
+
prefix: Array<string | null> | null;
|
|
7382
|
+
suffix: Array<string | null> | null;
|
|
7383
|
+
} | null> | null;
|
|
7384
|
+
} | {
|
|
7385
|
+
__typename: 'RelatedPerson';
|
|
7386
|
+
name: Array<{
|
|
7387
|
+
text: string | null;
|
|
7388
|
+
family: string | null;
|
|
7389
|
+
given: Array<string | null> | null;
|
|
7390
|
+
prefix: Array<string | null> | null;
|
|
7391
|
+
suffix: Array<string | null> | null;
|
|
7392
|
+
} | null> | null;
|
|
7393
|
+
} | null;
|
|
7292
7394
|
} | null> | null;
|
|
7293
7395
|
class: Array<{
|
|
7294
7396
|
id: string | null;
|
|
@@ -7372,6 +7474,17 @@ export type GetExplanationOfBenefitsQueryResults = {
|
|
|
7372
7474
|
reference: string | null;
|
|
7373
7475
|
type: any | null;
|
|
7374
7476
|
display: string | null;
|
|
7477
|
+
resource: {
|
|
7478
|
+
id: string;
|
|
7479
|
+
birthDate: any | null;
|
|
7480
|
+
name: Array<{
|
|
7481
|
+
text: string | null;
|
|
7482
|
+
family: string | null;
|
|
7483
|
+
given: Array<string | null> | null;
|
|
7484
|
+
prefix: Array<string | null> | null;
|
|
7485
|
+
suffix: Array<string | null> | null;
|
|
7486
|
+
} | null> | null;
|
|
7487
|
+
} | null;
|
|
7375
7488
|
} | null;
|
|
7376
7489
|
adjudication: Array<{
|
|
7377
7490
|
id: string | null;
|
|
@@ -7414,6 +7527,48 @@ export type GetExplanationOfBenefitsQueryResults = {
|
|
|
7414
7527
|
reference: string | null;
|
|
7415
7528
|
type: any | null;
|
|
7416
7529
|
display: string | null;
|
|
7530
|
+
resource: {
|
|
7531
|
+
__typename: 'Organization';
|
|
7532
|
+
organizationName: string | null;
|
|
7533
|
+
meta: {
|
|
7534
|
+
versionId: string | null;
|
|
7535
|
+
lastUpdated: any | null;
|
|
7536
|
+
source: any | null;
|
|
7537
|
+
security: Array<{
|
|
7538
|
+
system: any | null;
|
|
7539
|
+
code: any | null;
|
|
7540
|
+
display: string | null;
|
|
7541
|
+
} | null> | null;
|
|
7542
|
+
tag: Array<{
|
|
7543
|
+
system: any | null;
|
|
7544
|
+
code: any | null;
|
|
7545
|
+
display: string | null;
|
|
7546
|
+
} | null> | null;
|
|
7547
|
+
} | null;
|
|
7548
|
+
} | {
|
|
7549
|
+
__typename: 'Practitioner';
|
|
7550
|
+
id: string | null;
|
|
7551
|
+
name: Array<{
|
|
7552
|
+
text: string | null;
|
|
7553
|
+
family: string | null;
|
|
7554
|
+
given: Array<string | null> | null;
|
|
7555
|
+
prefix: Array<string | null> | null;
|
|
7556
|
+
suffix: Array<string | null> | null;
|
|
7557
|
+
} | null> | null;
|
|
7558
|
+
identifier: Array<{
|
|
7559
|
+
id: string | null;
|
|
7560
|
+
system: any | null;
|
|
7561
|
+
value: string | null;
|
|
7562
|
+
type: {
|
|
7563
|
+
text: string | null;
|
|
7564
|
+
coding: Array<{
|
|
7565
|
+
system: any | null;
|
|
7566
|
+
code: any | null;
|
|
7567
|
+
display: string | null;
|
|
7568
|
+
} | null> | null;
|
|
7569
|
+
} | null;
|
|
7570
|
+
} | null> | null;
|
|
7571
|
+
} | {} | null;
|
|
7417
7572
|
} | null;
|
|
7418
7573
|
related: Array<{
|
|
7419
7574
|
relationship: {
|
|
@@ -9862,6 +10017,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
9862
10017
|
} | null> | null;
|
|
9863
10018
|
patient: {
|
|
9864
10019
|
id: string;
|
|
10020
|
+
birthDate: any | null;
|
|
9865
10021
|
name: Array<{
|
|
9866
10022
|
text: string | null;
|
|
9867
10023
|
family: string | null;
|
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -1265,12 +1265,14 @@ export type CoverageClass = {
|
|
|
1265
1265
|
type?: Maybe<CodeableConcept>;
|
|
1266
1266
|
value?: Maybe<Scalars['String']['output']>;
|
|
1267
1267
|
};
|
|
1268
|
+
export type CoveragePayor = Organization | Patient | RelatedPerson;
|
|
1268
1269
|
export type CoveragePayorReference = {
|
|
1269
1270
|
__typename?: 'CoveragePayorReference';
|
|
1270
1271
|
display?: Maybe<Scalars['String']['output']>;
|
|
1271
1272
|
id?: Maybe<Scalars['String']['output']>;
|
|
1272
1273
|
identifier?: Maybe<Identifier>;
|
|
1273
1274
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1275
|
+
resource?: Maybe<CoveragePayor>;
|
|
1274
1276
|
type?: Maybe<Scalars['URI']['output']>;
|
|
1275
1277
|
};
|
|
1276
1278
|
export type CoveragePolicyHolderReference = {
|
|
@@ -1562,6 +1564,18 @@ export type DispenseRequest = {
|
|
|
1562
1564
|
/** Period A time period defined by a start and end date and optionally time. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions */
|
|
1563
1565
|
validityPeriod?: Maybe<Period>;
|
|
1564
1566
|
};
|
|
1567
|
+
/**
|
|
1568
|
+
* Distance Unit enum
|
|
1569
|
+
* Defines the units of measurement for distance calculations
|
|
1570
|
+
*/
|
|
1571
|
+
export declare enum DistanceUnitEnum {
|
|
1572
|
+
/** Distance measured in kilometers */
|
|
1573
|
+
Kilometers = "KILOMETERS",
|
|
1574
|
+
/** Distance measured in meters */
|
|
1575
|
+
Meters = "METERS",
|
|
1576
|
+
/** Distance measured in miles */
|
|
1577
|
+
Miles = "MILES"
|
|
1578
|
+
}
|
|
1565
1579
|
export type DocumentReference = {
|
|
1566
1580
|
__typename?: 'DocumentReference';
|
|
1567
1581
|
id: Scalars['ID']['output'];
|
|
@@ -1964,6 +1978,7 @@ export type ExplanationOfBenefitPatientReference = {
|
|
|
1964
1978
|
id?: Maybe<Scalars['String']['output']>;
|
|
1965
1979
|
identifier?: Maybe<Identifier>;
|
|
1966
1980
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1981
|
+
resource?: Maybe<Patient>;
|
|
1967
1982
|
type?: Maybe<Scalars['URI']['output']>;
|
|
1968
1983
|
};
|
|
1969
1984
|
export type ExplanationOfBenefitPayee = {
|
|
@@ -1992,10 +2007,12 @@ export type ExplanationOfBenefitProcessNote = {
|
|
|
1992
2007
|
text?: Maybe<Scalars['String']['output']>;
|
|
1993
2008
|
type?: Maybe<Scalars['Code']['output']>;
|
|
1994
2009
|
};
|
|
2010
|
+
export type ExplanationOfBenefitProvider = Organization | Practitioner | PractitionerRole;
|
|
1995
2011
|
export type ExplanationOfBenefitProviderReference = {
|
|
1996
2012
|
__typename?: 'ExplanationOfBenefitProviderReference';
|
|
1997
2013
|
display?: Maybe<Scalars['String']['output']>;
|
|
1998
2014
|
reference?: Maybe<Scalars['String']['output']>;
|
|
2015
|
+
resource?: Maybe<ExplanationOfBenefitProvider>;
|
|
1999
2016
|
type?: Maybe<Scalars['URI']['output']>;
|
|
2000
2017
|
};
|
|
2001
2018
|
export type ExplanationOfBenefitRelated = {
|
|
@@ -2350,6 +2367,7 @@ export type HealthResourceSearchResult = {
|
|
|
2350
2367
|
name?: Maybe<Array<Maybe<HumanName>>>;
|
|
2351
2368
|
npi?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2352
2369
|
organization?: Maybe<Array<Maybe<OrganizationTypeNew>>>;
|
|
2370
|
+
partOf?: Maybe<PartOf>;
|
|
2353
2371
|
photo?: Maybe<Array<Maybe<ProviderAttachment>>>;
|
|
2354
2372
|
score?: Maybe<Scalars['Float']['output']>;
|
|
2355
2373
|
scores?: Maybe<Array<Maybe<Score>>>;
|
|
@@ -3729,6 +3747,7 @@ export type MutationUpdateUserAccountStatusArgs = {
|
|
|
3729
3747
|
};
|
|
3730
3748
|
export type MutationUpdateUserClientArgs = {
|
|
3731
3749
|
clientSlug: Scalars['String']['input'];
|
|
3750
|
+
isRegistered?: Scalars['Boolean']['input'];
|
|
3732
3751
|
updatedClientSlug: Scalars['String']['input'];
|
|
3733
3752
|
userIdentifier: Scalars['String']['input'];
|
|
3734
3753
|
};
|
|
@@ -4115,6 +4134,12 @@ export type PagingResults = {
|
|
|
4115
4134
|
total_items: Scalars['Int']['output'];
|
|
4116
4135
|
total_pages: Scalars['Int']['output'];
|
|
4117
4136
|
};
|
|
4137
|
+
export type PartOf = {
|
|
4138
|
+
__typename?: 'PartOf';
|
|
4139
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
4140
|
+
endpointName?: Maybe<Scalars['String']['output']>;
|
|
4141
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
4142
|
+
};
|
|
4118
4143
|
export type Participant = {
|
|
4119
4144
|
__typename?: 'Participant';
|
|
4120
4145
|
individual?: Maybe<PractitionerReference>;
|
|
@@ -4148,6 +4173,13 @@ export type Patient = {
|
|
|
4148
4173
|
resourceType?: Maybe<Scalars['String']['output']>;
|
|
4149
4174
|
telecom?: Maybe<Array<Maybe<ContactPoint>>>;
|
|
4150
4175
|
};
|
|
4176
|
+
/** PatientAcceptance enum */
|
|
4177
|
+
export declare enum PatientAcceptanceEnum {
|
|
4178
|
+
/** Providers accepting existing patients only */
|
|
4179
|
+
ExistingPatients = "EXISTING_PATIENTS",
|
|
4180
|
+
/** Providers accepting new patients */
|
|
4181
|
+
NewPatients = "NEW_PATIENTS"
|
|
4182
|
+
}
|
|
4151
4183
|
export type PatientBundle = {
|
|
4152
4184
|
__typename?: 'PatientBundle';
|
|
4153
4185
|
entry?: Maybe<Array<Maybe<PatientBundleEntry>>>;
|
|
@@ -4462,6 +4494,20 @@ export type PractitionerRole = {
|
|
|
4462
4494
|
specialty?: Maybe<Array<CodeableConcept>>;
|
|
4463
4495
|
telecom?: Maybe<Array<Maybe<ContactPoint>>>;
|
|
4464
4496
|
};
|
|
4497
|
+
export type PractitionerRoleOrganizationReference = {
|
|
4498
|
+
__typename?: 'PractitionerRoleOrganizationReference';
|
|
4499
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
4500
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
4501
|
+
resource?: Maybe<Organization>;
|
|
4502
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
4503
|
+
};
|
|
4504
|
+
export type PractitionerRolePractitionerReference = {
|
|
4505
|
+
__typename?: 'PractitionerRolePractitionerReference';
|
|
4506
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
4507
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
4508
|
+
resource?: Maybe<Practitioner>;
|
|
4509
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
4510
|
+
};
|
|
4465
4511
|
export type PractitionerRoleQueryResults = {
|
|
4466
4512
|
__typename?: 'PractitionerRoleQueryResults';
|
|
4467
4513
|
resources: Array<PractitionerRole>;
|
|
@@ -6020,14 +6066,20 @@ export type SearchDateValue = {
|
|
|
6020
6066
|
startsAfter?: InputMaybe<Scalars['Date']['input']>;
|
|
6021
6067
|
};
|
|
6022
6068
|
export type SearchFiltersInput = {
|
|
6069
|
+
/** Return only providers who have any one of given communication languages */
|
|
6070
|
+
communication?: InputMaybe<Array<InputMaybe<InputCoding>>>;
|
|
6023
6071
|
/** Return only providers with this gender */
|
|
6024
6072
|
gender?: InputMaybe<GenderEnum>;
|
|
6025
6073
|
/** Return only search results with one of these IDs or NPIs */
|
|
6026
6074
|
id?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6027
|
-
/**
|
|
6075
|
+
/** When true, includes inactive providers (default false) */
|
|
6028
6076
|
includeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6029
6077
|
/** Return only results that have PROA connections */
|
|
6030
6078
|
includePopulatedProaOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6079
|
+
/** Return only providers who accept this type of patient (new, existing, or both) */
|
|
6080
|
+
patientAcceptance?: InputMaybe<Array<InputMaybe<PatientAcceptanceEnum>>>;
|
|
6081
|
+
/** Return only providers who have any one of given specialties */
|
|
6082
|
+
specialty?: InputMaybe<Array<InputMaybe<InputCoding>>>;
|
|
6031
6083
|
/** Return only these search result types */
|
|
6032
6084
|
type?: InputMaybe<Array<InputMaybe<SearchResultTypeEnum>>>;
|
|
6033
6085
|
};
|
|
@@ -6055,10 +6107,20 @@ export type SearchHealthResourcesResults = {
|
|
|
6055
6107
|
pagingInfo?: Maybe<PagingInfoType>;
|
|
6056
6108
|
results?: Maybe<Array<Maybe<HealthResourceSearchResult>>>;
|
|
6057
6109
|
};
|
|
6110
|
+
/** Geographic center point for location-based search */
|
|
6058
6111
|
export type SearchLocation = {
|
|
6059
|
-
/**
|
|
6112
|
+
/** Latitude of the search center */
|
|
6060
6113
|
lat: Scalars['Float']['input'];
|
|
6114
|
+
/** Longitude of the search center */
|
|
6061
6115
|
lon: Scalars['Float']['input'];
|
|
6116
|
+
/** Maximum distance radius for location-based filtering */
|
|
6117
|
+
radius?: InputMaybe<Scalars['Float']['input']>;
|
|
6118
|
+
/** Unit of measurement for the radius */
|
|
6119
|
+
radiusUnit?: InputMaybe<DistanceUnitEnum>;
|
|
6120
|
+
/**
|
|
6121
|
+
* Prioritizes local health systems around given zipCode.
|
|
6122
|
+
* NOTE: Inputs `type` must be `[PRACTICE]` and `orderBy` must be `[DATA_SOURCE_RANK]`
|
|
6123
|
+
*/
|
|
6062
6124
|
zipCode?: InputMaybe<Scalars['String']['input']>;
|
|
6063
6125
|
};
|
|
6064
6126
|
export type SearchPosition = {
|
|
@@ -6314,9 +6376,17 @@ export declare enum SortField {
|
|
|
6314
6376
|
* New version
|
|
6315
6377
|
*/
|
|
6316
6378
|
export declare enum SortFieldEnum {
|
|
6379
|
+
/** Sort by name of the health resource */
|
|
6317
6380
|
Content = "CONTENT",
|
|
6381
|
+
/** Sort by data source ranking */
|
|
6318
6382
|
DataSourceRank = "DATA_SOURCE_RANK",
|
|
6383
|
+
/** Sort by distance from search location */
|
|
6319
6384
|
Distance = "DISTANCE",
|
|
6385
|
+
/** Sort by next available appointment of the provider/practice */
|
|
6386
|
+
NextAvailable = "NEXT_AVAILABLE",
|
|
6387
|
+
/** Sort to get providers/practices that support online booking first/last */
|
|
6388
|
+
OnlineBookingAvailable = "ONLINE_BOOKING_AVAILABLE",
|
|
6389
|
+
/** Sort by relevance to search terms */
|
|
6320
6390
|
Relevance = "RELEVANCE"
|
|
6321
6391
|
}
|
|
6322
6392
|
export declare enum SortOrder {
|
package/dist/graphql/schema.js
CHANGED
|
@@ -120,6 +120,19 @@ export var DeletionStatus;
|
|
|
120
120
|
(function (DeletionStatus) {
|
|
121
121
|
DeletionStatus["Deleted"] = "DELETED";
|
|
122
122
|
})(DeletionStatus || (DeletionStatus = {}));
|
|
123
|
+
/**
|
|
124
|
+
* Distance Unit enum
|
|
125
|
+
* Defines the units of measurement for distance calculations
|
|
126
|
+
*/
|
|
127
|
+
export var DistanceUnitEnum;
|
|
128
|
+
(function (DistanceUnitEnum) {
|
|
129
|
+
/** Distance measured in kilometers */
|
|
130
|
+
DistanceUnitEnum["Kilometers"] = "KILOMETERS";
|
|
131
|
+
/** Distance measured in meters */
|
|
132
|
+
DistanceUnitEnum["Meters"] = "METERS";
|
|
133
|
+
/** Distance measured in miles */
|
|
134
|
+
DistanceUnitEnum["Miles"] = "MILES";
|
|
135
|
+
})(DistanceUnitEnum || (DistanceUnitEnum = {}));
|
|
123
136
|
export var EmpiType;
|
|
124
137
|
(function (EmpiType) {
|
|
125
138
|
EmpiType["BwellPatient"] = "BWELL_PATIENT";
|
|
@@ -320,6 +333,14 @@ export var PatchOperationType;
|
|
|
320
333
|
PatchOperationType["Replace"] = "replace";
|
|
321
334
|
PatchOperationType["Test"] = "test";
|
|
322
335
|
})(PatchOperationType || (PatchOperationType = {}));
|
|
336
|
+
/** PatientAcceptance enum */
|
|
337
|
+
export var PatientAcceptanceEnum;
|
|
338
|
+
(function (PatientAcceptanceEnum) {
|
|
339
|
+
/** Providers accepting existing patients only */
|
|
340
|
+
PatientAcceptanceEnum["ExistingPatients"] = "EXISTING_PATIENTS";
|
|
341
|
+
/** Providers accepting new patients */
|
|
342
|
+
PatientAcceptanceEnum["NewPatients"] = "NEW_PATIENTS";
|
|
343
|
+
})(PatientAcceptanceEnum || (PatientAcceptanceEnum = {}));
|
|
323
344
|
export var PersonPatientResourceType;
|
|
324
345
|
(function (PersonPatientResourceType) {
|
|
325
346
|
PersonPatientResourceType["Patient"] = "Patient";
|
|
@@ -399,9 +420,17 @@ export var SortField;
|
|
|
399
420
|
*/
|
|
400
421
|
export var SortFieldEnum;
|
|
401
422
|
(function (SortFieldEnum) {
|
|
423
|
+
/** Sort by name of the health resource */
|
|
402
424
|
SortFieldEnum["Content"] = "CONTENT";
|
|
425
|
+
/** Sort by data source ranking */
|
|
403
426
|
SortFieldEnum["DataSourceRank"] = "DATA_SOURCE_RANK";
|
|
427
|
+
/** Sort by distance from search location */
|
|
404
428
|
SortFieldEnum["Distance"] = "DISTANCE";
|
|
429
|
+
/** Sort by next available appointment of the provider/practice */
|
|
430
|
+
SortFieldEnum["NextAvailable"] = "NEXT_AVAILABLE";
|
|
431
|
+
/** Sort to get providers/practices that support online booking first/last */
|
|
432
|
+
SortFieldEnum["OnlineBookingAvailable"] = "ONLINE_BOOKING_AVAILABLE";
|
|
433
|
+
/** Sort by relevance to search terms */
|
|
405
434
|
SortFieldEnum["Relevance"] = "RELEVANCE";
|
|
406
435
|
})(SortFieldEnum || (SortFieldEnum = {}));
|
|
407
436
|
export var SortOrder;
|