@icanbwell/bwell-sdk-ts 1.51.0 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/__version__.d.ts +1 -1
- package/dist/__version__.js +1 -1
- package/dist/graphql/operations/index.d.ts +4 -4
- package/dist/graphql/operations/index.js +37 -1
- package/dist/graphql/operations/types.d.ts +136 -17
- package/dist/graphql/schema.d.ts +43 -2
- package/dist/graphql/schema.js +29 -0
- package/package.json +1 -1
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
|
@@ -51,9 +51,9 @@ export declare const CoveragePolicyHolderReferenceFieldsFragmentDoc = "\n fra
|
|
|
51
51
|
export declare const HumanNameFieldsFragmentDoc = "\n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n ";
|
|
52
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
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}\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 ";
|
|
55
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 ";
|
|
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}\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 ";
|
|
57
57
|
export declare const MoneyResourceFieldsFragmentDoc = "\n fragment MoneyResourceFields on Money {\n value\n currency\n}\n ";
|
|
58
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 ";
|
|
59
59
|
export declare const AttachmentFieldsFragmentDoc = "\n fragment AttachmentFields on Attachment {\n contentType\n data\n url\n title\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 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}\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 ";
|
|
@@ -554,8 +554,26 @@ export const CoveragePayorReferenceFieldsFragmentDoc = `
|
|
|
554
554
|
reference
|
|
555
555
|
display
|
|
556
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
|
+
}
|
|
557
575
|
}
|
|
558
|
-
`;
|
|
576
|
+
${HumanNameFieldsFragmentDoc}`;
|
|
559
577
|
export const CoverageClassFieldsFragmentDoc = `
|
|
560
578
|
fragment CoverageClassFields on CoverageClass {
|
|
561
579
|
id
|
|
@@ -1859,6 +1877,9 @@ export const GetExplanationOfBenefitsDocument = `
|
|
|
1859
1877
|
reference
|
|
1860
1878
|
type
|
|
1861
1879
|
display
|
|
1880
|
+
resource {
|
|
1881
|
+
...PatientFields
|
|
1882
|
+
}
|
|
1862
1883
|
}
|
|
1863
1884
|
adjudication {
|
|
1864
1885
|
...ExplanationOfBenefitAdjudicationFields
|
|
@@ -1878,6 +1899,19 @@ export const GetExplanationOfBenefitsDocument = `
|
|
|
1878
1899
|
reference
|
|
1879
1900
|
type
|
|
1880
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
|
+
}
|
|
1881
1915
|
}
|
|
1882
1916
|
related {
|
|
1883
1917
|
relationship {
|
|
@@ -2040,8 +2074,10 @@ export const GetExplanationOfBenefitsDocument = `
|
|
|
2040
2074
|
${MetaFieldsFragmentDoc}
|
|
2041
2075
|
${IdentifierFieldsFragmentDoc}
|
|
2042
2076
|
${CodeableConceptFieldsFragmentDoc}
|
|
2077
|
+
${PatientFieldsFragmentDoc}
|
|
2043
2078
|
${ExplanationOfBenefitAdjudicationFieldsFragmentDoc}
|
|
2044
2079
|
${PeriodFieldsFragmentDoc}
|
|
2080
|
+
${PractitionerFieldsFragmentDoc}
|
|
2045
2081
|
${QuantityFieldsFragmentDoc}
|
|
2046
2082
|
${AttachmentFieldsFragmentDoc}
|
|
2047
2083
|
${CodingFieldsFragmentDoc}
|
|
@@ -143,6 +143,28 @@ export type CoverageFieldsFragment = {
|
|
|
143
143
|
reference: string | null;
|
|
144
144
|
display: string | null;
|
|
145
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;
|
|
146
168
|
} | null> | null;
|
|
147
169
|
class: Array<{
|
|
148
170
|
id: string | null;
|
|
@@ -214,6 +236,28 @@ export type CoveragePayorReferenceFieldsFragment = {
|
|
|
214
236
|
reference: string | null;
|
|
215
237
|
display: string | null;
|
|
216
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;
|
|
217
261
|
};
|
|
218
262
|
export type CoverageClassFieldsFragment = {
|
|
219
263
|
id: string | null;
|
|
@@ -256,23 +300,6 @@ export type MoneyResourceFieldsFragment = {
|
|
|
256
300
|
value: number | null;
|
|
257
301
|
currency: Types.CurrencyCode | null;
|
|
258
302
|
};
|
|
259
|
-
export type QuantityFieldsFragment = {
|
|
260
|
-
value: number | null;
|
|
261
|
-
unit: string | null;
|
|
262
|
-
code: any | null;
|
|
263
|
-
comparator: any | null;
|
|
264
|
-
system: any | null;
|
|
265
|
-
};
|
|
266
|
-
export type AttachmentFieldsFragment = {
|
|
267
|
-
contentType: any | null;
|
|
268
|
-
data: any | null;
|
|
269
|
-
url: any | null;
|
|
270
|
-
title: string | null;
|
|
271
|
-
};
|
|
272
|
-
export type NarrativeFieldsFragment = {
|
|
273
|
-
div: any | null;
|
|
274
|
-
status: any | null;
|
|
275
|
-
};
|
|
276
303
|
export type PractitionerFieldsFragment = {
|
|
277
304
|
id: string | null;
|
|
278
305
|
name: Array<{
|
|
@@ -296,6 +323,23 @@ export type PractitionerFieldsFragment = {
|
|
|
296
323
|
} | null;
|
|
297
324
|
} | null> | null;
|
|
298
325
|
};
|
|
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;
|
|
342
|
+
};
|
|
299
343
|
export type ReactionFieldsFragment = {
|
|
300
344
|
description: string | null;
|
|
301
345
|
onset: any | null;
|
|
@@ -7325,6 +7369,28 @@ export type GetCoveragesQueryResults = {
|
|
|
7325
7369
|
reference: string | null;
|
|
7326
7370
|
display: string | null;
|
|
7327
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;
|
|
7328
7394
|
} | null> | null;
|
|
7329
7395
|
class: Array<{
|
|
7330
7396
|
id: string | null;
|
|
@@ -7408,6 +7474,17 @@ export type GetExplanationOfBenefitsQueryResults = {
|
|
|
7408
7474
|
reference: string | null;
|
|
7409
7475
|
type: any | null;
|
|
7410
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;
|
|
7411
7488
|
} | null;
|
|
7412
7489
|
adjudication: Array<{
|
|
7413
7490
|
id: string | null;
|
|
@@ -7450,6 +7527,48 @@ export type GetExplanationOfBenefitsQueryResults = {
|
|
|
7450
7527
|
reference: string | null;
|
|
7451
7528
|
type: any | null;
|
|
7452
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;
|
|
7453
7572
|
} | null;
|
|
7454
7573
|
related: Array<{
|
|
7455
7574
|
relationship: {
|
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -1564,6 +1564,18 @@ export type DispenseRequest = {
|
|
|
1564
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 */
|
|
1565
1565
|
validityPeriod?: Maybe<Period>;
|
|
1566
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
|
+
}
|
|
1567
1579
|
export type DocumentReference = {
|
|
1568
1580
|
__typename?: 'DocumentReference';
|
|
1569
1581
|
id: Scalars['ID']['output'];
|
|
@@ -4161,6 +4173,13 @@ export type Patient = {
|
|
|
4161
4173
|
resourceType?: Maybe<Scalars['String']['output']>;
|
|
4162
4174
|
telecom?: Maybe<Array<Maybe<ContactPoint>>>;
|
|
4163
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
|
+
}
|
|
4164
4183
|
export type PatientBundle = {
|
|
4165
4184
|
__typename?: 'PatientBundle';
|
|
4166
4185
|
entry?: Maybe<Array<Maybe<PatientBundleEntry>>>;
|
|
@@ -6053,10 +6072,14 @@ export type SearchFiltersInput = {
|
|
|
6053
6072
|
gender?: InputMaybe<GenderEnum>;
|
|
6054
6073
|
/** Return only search results with one of these IDs or NPIs */
|
|
6055
6074
|
id?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6056
|
-
/**
|
|
6075
|
+
/** When true, includes inactive providers (default false) */
|
|
6057
6076
|
includeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6058
6077
|
/** Return only results that have PROA connections */
|
|
6059
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>>>;
|
|
6060
6083
|
/** Return only these search result types */
|
|
6061
6084
|
type?: InputMaybe<Array<InputMaybe<SearchResultTypeEnum>>>;
|
|
6062
6085
|
};
|
|
@@ -6084,10 +6107,20 @@ export type SearchHealthResourcesResults = {
|
|
|
6084
6107
|
pagingInfo?: Maybe<PagingInfoType>;
|
|
6085
6108
|
results?: Maybe<Array<Maybe<HealthResourceSearchResult>>>;
|
|
6086
6109
|
};
|
|
6110
|
+
/** Geographic center point for location-based search */
|
|
6087
6111
|
export type SearchLocation = {
|
|
6088
|
-
/**
|
|
6112
|
+
/** Latitude of the search center */
|
|
6089
6113
|
lat: Scalars['Float']['input'];
|
|
6114
|
+
/** Longitude of the search center */
|
|
6090
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
|
+
*/
|
|
6091
6124
|
zipCode?: InputMaybe<Scalars['String']['input']>;
|
|
6092
6125
|
};
|
|
6093
6126
|
export type SearchPosition = {
|
|
@@ -6343,9 +6376,17 @@ export declare enum SortField {
|
|
|
6343
6376
|
* New version
|
|
6344
6377
|
*/
|
|
6345
6378
|
export declare enum SortFieldEnum {
|
|
6379
|
+
/** Sort by name of the health resource */
|
|
6346
6380
|
Content = "CONTENT",
|
|
6381
|
+
/** Sort by data source ranking */
|
|
6347
6382
|
DataSourceRank = "DATA_SOURCE_RANK",
|
|
6383
|
+
/** Sort by distance from search location */
|
|
6348
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 */
|
|
6349
6390
|
Relevance = "RELEVANCE"
|
|
6350
6391
|
}
|
|
6351
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;
|