@icanbwell/bwell-sdk-ts 1.42.1-rc.1759928466 → 1.42.1-rc.1760514283
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/questionnaire/questionnaire-responses-request.d.ts +2 -1
- package/dist/api/graphql-api/questionnaire/get-questionnaire-responses-request-factory.js +2 -1
- package/dist/graphql/operations/index.d.ts +1 -1
- package/dist/graphql/operations/index.js +3 -1
- package/dist/graphql/operations/types.d.ts +19 -17
- package/dist/graphql/schema.d.ts +414 -16
- package/dist/graphql/schema.js +1 -0
- package/package.json +1 -1
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SearchReference } from "../../../graphql/schema.js";
|
|
1
|
+
import { SearchReference, TotalType } from "../../../graphql/schema.js";
|
|
2
2
|
import { ErrorsCollector, PagedRequest, PagedRequestInput, PagedRequestValidator } from "../../../requests/index.js";
|
|
3
3
|
import { SearchDate } from "../requests/search-date.js";
|
|
4
4
|
import { SearchString } from "../requests/search-string.js";
|
|
@@ -11,6 +11,7 @@ export type QuestionnaireResponsesRequestInput = PagedRequestInput & {
|
|
|
11
11
|
status?: SearchToken;
|
|
12
12
|
patient?: SearchReference;
|
|
13
13
|
tag?: SearchToken;
|
|
14
|
+
total?: TotalType;
|
|
14
15
|
};
|
|
15
16
|
export declare class QuestionnaireResponsesRequestValidator extends PagedRequestValidator<QuestionnaireResponsesRequestInput> {
|
|
16
17
|
#private;
|
|
@@ -4,7 +4,7 @@ import { DEFAULT_PAGE_SIZE } from "../../../requests/index.js";
|
|
|
4
4
|
*/
|
|
5
5
|
export class QuestionnaireResponsesRequestFactory {
|
|
6
6
|
create(request) {
|
|
7
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
7
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
8
8
|
const input = request.data();
|
|
9
9
|
return {
|
|
10
10
|
id: (_a = input.id) !== null && _a !== void 0 ? _a : null,
|
|
@@ -16,6 +16,7 @@ export class QuestionnaireResponsesRequestFactory {
|
|
|
16
16
|
status: (_f = input.status) !== null && _f !== void 0 ? _f : null,
|
|
17
17
|
patient: (_g = input.patient) !== null && _g !== void 0 ? _g : null,
|
|
18
18
|
tag: (_h = input.tag) !== null && _h !== void 0 ? _h : null,
|
|
19
|
+
total: (_j = input.total) !== null && _j !== void 0 ? _j : null,
|
|
19
20
|
};
|
|
20
21
|
}
|
|
21
22
|
}
|
|
@@ -131,7 +131,7 @@ export declare const InitializeDocument = "\n query initialize($clientKey: St
|
|
|
131
131
|
export declare const LoginDocument = "\n query login($email: String!, $password: String!) {\n login(email: $email, password: $password) {\n accessToken {\n jwtToken\n }\n idToken {\n jwtToken\n }\n refreshToken {\n token\n }\n }\n}\n ";
|
|
132
132
|
export declare const RefreshTokensDocument = "\n query refreshTokens {\n refresh {\n accessToken\n idToken\n }\n}\n ";
|
|
133
133
|
export declare const NextQuestionDocument = "\n mutation nextQuestion($questionnaireResponse: QuestionnaireResponseInput!) {\n nextQuestion(input: $questionnaireResponse) {\n ...QuestionnaireResponseFields\n }\n}\n \n fragment QuestionnaireResponseFields on QuestionnaireResponse {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n questionnaire\n status\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n }\n }\n }\n contained {\n ...QuestionnaireFields\n }\n subject {\n reference\n type\n display\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireResponseItemFields on QuestionnaireResponseItem {\n linkId\n text\n answer {\n 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 \n\n fragment QuestionnaireFields on Questionnaire {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n name\n title\n useContext {\n id\n code {\n ...CodingFields\n }\n valueReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\n }\n }\n status\n description\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n }\n }\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireItemFields on QuestionnaireItem {\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n linkId\n prefix\n text\n type\n enableWhen {\n question\n operator\n answerBoolean\n answerDecimal\n answerInteger\n answerDate\n answerDateTime\n answerTime\n answerString\n answerCoding {\n ...CodingFields\n }\n answerQuantity {\n ...QuantityFields\n }\n answerReference {\n reference\n type\n display\n }\n }\n enableBehavior\n required\n repeats\n readOnly\n maxLength\n answerOption {\n valueInteger\n valueDate\n valueString\n valueCoding {\n ...CodingFields\n }\n 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 ";
|
|
134
|
-
export declare const GetQuestionnaireResponsesDocument = "\n query getQuestionnaireResponses($id: SearchString, $lastUpdated: SearchDate, $sort: [String], $pageSize: Int, $page: Int, $questionnaire: SearchReference, $status: SearchToken, $patient: SearchReference, $tag: SearchToken) {\n questionnaireResponses(\n id: $id\n _lastUpdated: $lastUpdated\n _sort: $sort\n _count: $pageSize\n _getpagesoffset: $page\n _tag: $tag\n questionnaire: $questionnaire\n status: $status\n patient: $patient\n ) {\n entry {\n resource {\n ...QuestionnaireResponseFields\n }\n }\n }\n}\n \n fragment QuestionnaireResponseFields on QuestionnaireResponse {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n questionnaire\n status\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n }\n }\n }\n contained {\n ...QuestionnaireFields\n }\n subject {\n reference\n type\n display\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireResponseItemFields on QuestionnaireResponseItem {\n linkId\n text\n answer {\n 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 \n\n fragment QuestionnaireFields on Questionnaire {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n name\n title\n useContext {\n id\n code {\n ...CodingFields\n }\n valueReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\n }\n }\n status\n description\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n }\n }\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireItemFields on QuestionnaireItem {\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n linkId\n prefix\n text\n type\n enableWhen {\n question\n operator\n answerBoolean\n answerDecimal\n answerInteger\n answerDate\n answerDateTime\n answerTime\n answerString\n answerCoding {\n ...CodingFields\n }\n answerQuantity {\n ...QuantityFields\n }\n answerReference {\n reference\n type\n display\n }\n }\n enableBehavior\n required\n repeats\n readOnly\n maxLength\n answerOption {\n valueInteger\n valueDate\n valueString\n valueCoding {\n ...CodingFields\n }\n 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 ";
|
|
134
|
+
export declare const GetQuestionnaireResponsesDocument = "\n query getQuestionnaireResponses($id: SearchString, $lastUpdated: SearchDate, $sort: [String], $pageSize: Int, $page: Int, $questionnaire: SearchReference, $status: SearchToken, $patient: SearchReference, $tag: SearchToken, $total: TotalType) {\n questionnaireResponses(\n id: $id\n _lastUpdated: $lastUpdated\n _sort: $sort\n _count: $pageSize\n _getpagesoffset: $page\n _tag: $tag\n _total: $total\n questionnaire: $questionnaire\n status: $status\n patient: $patient\n ) {\n total\n entry {\n resource {\n ...QuestionnaireResponseFields\n }\n }\n }\n}\n \n fragment QuestionnaireResponseFields on QuestionnaireResponse {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n questionnaire\n status\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n }\n }\n }\n contained {\n ...QuestionnaireFields\n }\n subject {\n reference\n type\n display\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireResponseItemFields on QuestionnaireResponseItem {\n linkId\n text\n answer {\n 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 \n\n fragment QuestionnaireFields on Questionnaire {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n name\n title\n useContext {\n id\n code {\n ...CodingFields\n }\n valueReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\n }\n }\n status\n description\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n }\n }\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireItemFields on QuestionnaireItem {\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n linkId\n prefix\n text\n type\n enableWhen {\n question\n operator\n answerBoolean\n answerDecimal\n answerInteger\n answerDate\n answerDateTime\n answerTime\n answerString\n answerCoding {\n ...CodingFields\n }\n answerQuantity {\n ...QuantityFields\n }\n answerReference {\n reference\n type\n display\n }\n }\n enableBehavior\n required\n repeats\n readOnly\n maxLength\n answerOption {\n valueInteger\n valueDate\n valueString\n valueCoding {\n ...CodingFields\n }\n 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 ";
|
|
135
135
|
export declare const SaveQuestionnaireResponseDocument = "\n mutation saveQuestionnaireResponse($questionnaireResponse: QuestionnaireResponseInput!) {\n saveQuestionnaireResponse(input: $questionnaireResponse) {\n ...QuestionnaireResponseFields\n }\n}\n \n fragment QuestionnaireResponseFields on QuestionnaireResponse {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n questionnaire\n status\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n item {\n ...QuestionnaireResponseItemFields\n }\n }\n }\n contained {\n ...QuestionnaireFields\n }\n subject {\n reference\n type\n display\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireResponseItemFields on QuestionnaireResponseItem {\n linkId\n text\n answer {\n 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 \n\n fragment QuestionnaireFields on Questionnaire {\n resourceType\n id\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n name\n title\n useContext {\n id\n code {\n ...CodingFields\n }\n valueReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\n }\n }\n status\n description\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n item {\n ...QuestionnaireItemFields\n }\n }\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuestionnaireItemFields on QuestionnaireItem {\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n linkId\n prefix\n text\n type\n enableWhen {\n question\n operator\n answerBoolean\n answerDecimal\n answerInteger\n answerDate\n answerDateTime\n answerTime\n answerString\n answerCoding {\n ...CodingFields\n }\n answerQuantity {\n ...QuantityFields\n }\n answerReference {\n reference\n type\n display\n }\n }\n enableBehavior\n required\n repeats\n readOnly\n maxLength\n answerOption {\n valueInteger\n valueDate\n valueString\n valueCoding {\n ...CodingFields\n }\n 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 ";
|
|
136
136
|
export declare const ProviderSearchDocument = "\n query providerSearch($client: [Client], $searchTerm: String, $includePopulatedPROAonly: Boolean, $specialtyFilters: [InputCoding], $organizationTypeFilters: [OrganizationType], $gender: Gender, $location: SearchPosition, $sortBy: [OrderBy], $filterFields: [FilterField], $page: Int, $pageSize: Int) {\n providers(\n client: $client\n search: $searchTerm\n specialty: $specialtyFilters\n organization_type: $organizationTypeFilters\n include_populated_PROA_only: $includePopulatedPROAonly\n gender: $gender\n search_position: $location\n order_by: $sortBy\n filter_values: $filterFields\n page_number: $page\n page_size: $pageSize\n ) {\n paging_info {\n page_number\n page_size\n total_items\n total_pages\n }\n filter_values {\n field\n values {\n value\n count\n }\n }\n results {\n endpoint {\n identifier {\n type {\n coding {\n code\n system\n display\n }\n text\n }\n value\n system\n }\n name\n status\n connectionType {\n code\n system\n display\n }\n address\n }\n iconString\n organization_type {\n coding {\n code\n system\n display\n }\n text\n }\n content\n gender\n location {\n name\n identifier {\n type {\n text\n coding {\n system\n code\n display\n }\n }\n value\n system\n }\n alias\n description\n address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n system\n value\n rank\n }\n }\n specialty {\n code\n system\n display\n }\n id\n photo {\n contentType\n url\n title\n }\n name {\n ...HumanNameFields\n }\n telecom {\n system\n value\n rank\n }\n practitioner_qualification {\n identifier {\n type {\n coding {\n code\n system\n display\n }\n text\n }\n value\n system\n }\n code {\n coding {\n code\n system\n display\n }\n text\n }\n period {\n start\n end\n }\n issuer {\n reference\n display\n }\n }\n provider_type\n characteristic {\n code\n system\n display\n }\n organization {\n name\n endpoint {\n identifier {\n type {\n coding {\n code\n system\n display\n }\n text\n }\n value\n system\n }\n name\n status\n connectionType {\n code\n system\n display\n }\n address\n }\n }\n }\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n ";
|
|
137
137
|
export declare const RequestConnectionDocument = "\n mutation requestConnection($city: String, $institution: String, $provider: String, $state: String) {\n requestConnection(\n city: $city\n institution: $institution\n provider: $provider\n state: $state\n ) {\n resourceType\n issue {\n severity\n code\n details {\n text\n }\n }\n }\n}\n ";
|
|
@@ -3042,7 +3042,7 @@ export const NextQuestionDocument = `
|
|
|
3042
3042
|
}
|
|
3043
3043
|
${QuestionnaireResponseFieldsFragmentDoc}`;
|
|
3044
3044
|
export const GetQuestionnaireResponsesDocument = `
|
|
3045
|
-
query getQuestionnaireResponses($id: SearchString, $lastUpdated: SearchDate, $sort: [String], $pageSize: Int, $page: Int, $questionnaire: SearchReference, $status: SearchToken, $patient: SearchReference, $tag: SearchToken) {
|
|
3045
|
+
query getQuestionnaireResponses($id: SearchString, $lastUpdated: SearchDate, $sort: [String], $pageSize: Int, $page: Int, $questionnaire: SearchReference, $status: SearchToken, $patient: SearchReference, $tag: SearchToken, $total: TotalType) {
|
|
3046
3046
|
questionnaireResponses(
|
|
3047
3047
|
id: $id
|
|
3048
3048
|
_lastUpdated: $lastUpdated
|
|
@@ -3050,10 +3050,12 @@ export const GetQuestionnaireResponsesDocument = `
|
|
|
3050
3050
|
_count: $pageSize
|
|
3051
3051
|
_getpagesoffset: $page
|
|
3052
3052
|
_tag: $tag
|
|
3053
|
+
_total: $total
|
|
3053
3054
|
questionnaire: $questionnaire
|
|
3054
3055
|
status: $status
|
|
3055
3056
|
patient: $patient
|
|
3056
3057
|
) {
|
|
3058
|
+
total
|
|
3057
3059
|
entry {
|
|
3058
3060
|
resource {
|
|
3059
3061
|
...QuestionnaireResponseFields
|
|
@@ -70,7 +70,7 @@ export type NarrativeFieldsFragment = {
|
|
|
70
70
|
status: any | null;
|
|
71
71
|
};
|
|
72
72
|
export type PractitionerFieldsFragment = {
|
|
73
|
-
id: string;
|
|
73
|
+
id: string | null;
|
|
74
74
|
name: Array<{
|
|
75
75
|
text: string | null;
|
|
76
76
|
family: string | null;
|
|
@@ -3053,7 +3053,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3053
3053
|
} | null> | null;
|
|
3054
3054
|
member: {
|
|
3055
3055
|
__typename: 'Organization';
|
|
3056
|
-
id: string;
|
|
3056
|
+
id: string | null;
|
|
3057
3057
|
alias: string | null;
|
|
3058
3058
|
organizationName: string | null;
|
|
3059
3059
|
meta: {
|
|
@@ -3073,7 +3073,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3073
3073
|
} | null;
|
|
3074
3074
|
} | {
|
|
3075
3075
|
__typename: 'Practitioner';
|
|
3076
|
-
id: string;
|
|
3076
|
+
id: string | null;
|
|
3077
3077
|
name: Array<{
|
|
3078
3078
|
text: string | null;
|
|
3079
3079
|
family: string | null;
|
|
@@ -3097,7 +3097,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3097
3097
|
} | {
|
|
3098
3098
|
__typename: 'PractitionerRole';
|
|
3099
3099
|
resourceType: string | null;
|
|
3100
|
-
id: string;
|
|
3100
|
+
id: string | null;
|
|
3101
3101
|
active: boolean | null;
|
|
3102
3102
|
identifier: Array<{
|
|
3103
3103
|
id: string | null;
|
|
@@ -3113,7 +3113,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3113
3113
|
} | null;
|
|
3114
3114
|
} | null> | null;
|
|
3115
3115
|
practitioner: {
|
|
3116
|
-
id: string;
|
|
3116
|
+
id: string | null;
|
|
3117
3117
|
name: Array<{
|
|
3118
3118
|
text: string | null;
|
|
3119
3119
|
family: string | null;
|
|
@@ -3323,7 +3323,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3323
3323
|
} | {
|
|
3324
3324
|
__typename: 'RelatedPerson';
|
|
3325
3325
|
resourceType: string | null;
|
|
3326
|
-
id: string;
|
|
3326
|
+
id: string | null;
|
|
3327
3327
|
active: boolean | null;
|
|
3328
3328
|
name: Array<{
|
|
3329
3329
|
text: string | null;
|
|
@@ -3387,7 +3387,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3387
3387
|
};
|
|
3388
3388
|
export type PractitionerRoleFieldsFragment = {
|
|
3389
3389
|
resourceType: string | null;
|
|
3390
|
-
id: string;
|
|
3390
|
+
id: string | null;
|
|
3391
3391
|
active: boolean | null;
|
|
3392
3392
|
identifier: Array<{
|
|
3393
3393
|
id: string | null;
|
|
@@ -3403,7 +3403,7 @@ export type PractitionerRoleFieldsFragment = {
|
|
|
3403
3403
|
} | null;
|
|
3404
3404
|
} | null> | null;
|
|
3405
3405
|
practitioner: {
|
|
3406
|
-
id: string;
|
|
3406
|
+
id: string | null;
|
|
3407
3407
|
name: Array<{
|
|
3408
3408
|
text: string | null;
|
|
3409
3409
|
family: string | null;
|
|
@@ -3703,7 +3703,7 @@ export type EndpointFieldsFragment = {
|
|
|
3703
3703
|
};
|
|
3704
3704
|
export type RelatedPersonFieldsFragment = {
|
|
3705
3705
|
resourceType: string | null;
|
|
3706
|
-
id: string;
|
|
3706
|
+
id: string | null;
|
|
3707
3707
|
active: boolean | null;
|
|
3708
3708
|
name: Array<{
|
|
3709
3709
|
text: string | null;
|
|
@@ -7227,7 +7227,7 @@ export type GetAllergyIntolerancesQueryResults = {
|
|
|
7227
7227
|
display: string | null;
|
|
7228
7228
|
} | null;
|
|
7229
7229
|
recorder: {
|
|
7230
|
-
id: string;
|
|
7230
|
+
id: string | null;
|
|
7231
7231
|
name: Array<{
|
|
7232
7232
|
text: string | null;
|
|
7233
7233
|
family: string | null;
|
|
@@ -8865,7 +8865,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8865
8865
|
} | null> | null;
|
|
8866
8866
|
member: {
|
|
8867
8867
|
__typename: 'Organization';
|
|
8868
|
-
id: string;
|
|
8868
|
+
id: string | null;
|
|
8869
8869
|
alias: string | null;
|
|
8870
8870
|
organizationName: string | null;
|
|
8871
8871
|
meta: {
|
|
@@ -8885,7 +8885,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8885
8885
|
} | null;
|
|
8886
8886
|
} | {
|
|
8887
8887
|
__typename: 'Practitioner';
|
|
8888
|
-
id: string;
|
|
8888
|
+
id: string | null;
|
|
8889
8889
|
name: Array<{
|
|
8890
8890
|
text: string | null;
|
|
8891
8891
|
family: string | null;
|
|
@@ -8909,7 +8909,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8909
8909
|
} | {
|
|
8910
8910
|
__typename: 'PractitionerRole';
|
|
8911
8911
|
resourceType: string | null;
|
|
8912
|
-
id: string;
|
|
8912
|
+
id: string | null;
|
|
8913
8913
|
active: boolean | null;
|
|
8914
8914
|
identifier: Array<{
|
|
8915
8915
|
id: string | null;
|
|
@@ -8925,7 +8925,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8925
8925
|
} | null;
|
|
8926
8926
|
} | null> | null;
|
|
8927
8927
|
practitioner: {
|
|
8928
|
-
id: string;
|
|
8928
|
+
id: string | null;
|
|
8929
8929
|
name: Array<{
|
|
8930
8930
|
text: string | null;
|
|
8931
8931
|
family: string | null;
|
|
@@ -9135,7 +9135,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
9135
9135
|
} | {
|
|
9136
9136
|
__typename: 'RelatedPerson';
|
|
9137
9137
|
resourceType: string | null;
|
|
9138
|
-
id: string;
|
|
9138
|
+
id: string | null;
|
|
9139
9139
|
active: boolean | null;
|
|
9140
9140
|
name: Array<{
|
|
9141
9141
|
text: string | null;
|
|
@@ -16241,7 +16241,7 @@ export type GetMedicationRequestQueryResults = {
|
|
|
16241
16241
|
} | null> | null;
|
|
16242
16242
|
} | null;
|
|
16243
16243
|
requester: {
|
|
16244
|
-
id: string;
|
|
16244
|
+
id: string | null;
|
|
16245
16245
|
name: Array<{
|
|
16246
16246
|
text: string | null;
|
|
16247
16247
|
family: string | null;
|
|
@@ -16264,7 +16264,7 @@ export type GetMedicationRequestQueryResults = {
|
|
|
16264
16264
|
} | null> | null;
|
|
16265
16265
|
} | null;
|
|
16266
16266
|
recorder: {
|
|
16267
|
-
id: string;
|
|
16267
|
+
id: string | null;
|
|
16268
16268
|
name: Array<{
|
|
16269
16269
|
text: string | null;
|
|
16270
16270
|
family: string | null;
|
|
@@ -18513,9 +18513,11 @@ export type GetQuestionnaireResponsesQueryVariables = Types.Exact<{
|
|
|
18513
18513
|
status: Types.InputMaybe<Types.SearchToken>;
|
|
18514
18514
|
patient: Types.InputMaybe<Types.SearchReference>;
|
|
18515
18515
|
tag: Types.InputMaybe<Types.SearchToken>;
|
|
18516
|
+
total: Types.InputMaybe<Types.TotalType>;
|
|
18516
18517
|
}>;
|
|
18517
18518
|
export type GetQuestionnaireResponsesQueryResults = {
|
|
18518
18519
|
questionnaireResponses: {
|
|
18520
|
+
total: number | null;
|
|
18519
18521
|
entry: Array<{
|
|
18520
18522
|
resource: {
|
|
18521
18523
|
resourceType: string | null;
|
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -463,11 +463,6 @@ export type BinaryResource = {
|
|
|
463
463
|
/** Resource Type */
|
|
464
464
|
resourceType?: Maybe<Scalars['String']['output']>;
|
|
465
465
|
};
|
|
466
|
-
export type Bookable = {
|
|
467
|
-
__typename?: 'Bookable';
|
|
468
|
-
online?: Maybe<Scalars['Boolean']['output']>;
|
|
469
|
-
phone?: Maybe<Scalars['Boolean']['output']>;
|
|
470
|
-
};
|
|
471
466
|
export type BootstrapConfiguration = {
|
|
472
467
|
__typename?: 'BootstrapConfiguration';
|
|
473
468
|
apertureProxyPageUrl: Scalars['String']['output'];
|
|
@@ -1153,12 +1148,75 @@ export type ContactPointInput = {
|
|
|
1153
1148
|
/** Can define enum */
|
|
1154
1149
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
1155
1150
|
};
|
|
1151
|
+
export type Coverage = {
|
|
1152
|
+
__typename?: 'Coverage';
|
|
1153
|
+
beneficiary?: Maybe<CoverageBeneficiaryReference>;
|
|
1154
|
+
class?: Maybe<Array<Maybe<CoverageClass>>>;
|
|
1155
|
+
id: Scalars['ID']['output'];
|
|
1156
|
+
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
1157
|
+
meta?: Maybe<Meta>;
|
|
1158
|
+
payor?: Maybe<Array<Maybe<CoveragePayorReference>>>;
|
|
1159
|
+
period?: Maybe<Period>;
|
|
1160
|
+
policyHolder?: Maybe<CoveragePolicyHolderReference>;
|
|
1161
|
+
relationship?: Maybe<CodeableConcept>;
|
|
1162
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1163
|
+
status?: Maybe<Scalars['Code']['output']>;
|
|
1164
|
+
subscriberId?: Maybe<Scalars['String']['output']>;
|
|
1165
|
+
type?: Maybe<CodeableConcept>;
|
|
1166
|
+
};
|
|
1167
|
+
export type CoverageBeneficiaryReference = {
|
|
1168
|
+
__typename?: 'CoverageBeneficiaryReference';
|
|
1169
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1170
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1171
|
+
identifier?: Maybe<Identifier>;
|
|
1172
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1173
|
+
resource?: Maybe<Patient>;
|
|
1174
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1175
|
+
};
|
|
1176
|
+
export type CoverageBundle = {
|
|
1177
|
+
__typename?: 'CoverageBundle';
|
|
1178
|
+
entry?: Maybe<Array<Maybe<CoverageBundleEntry>>>;
|
|
1179
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1180
|
+
meta?: Maybe<Meta>;
|
|
1181
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
1182
|
+
type?: Maybe<Scalars['Code']['output']>;
|
|
1183
|
+
};
|
|
1184
|
+
export type CoverageBundleEntry = {
|
|
1185
|
+
__typename?: 'CoverageBundleEntry';
|
|
1186
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1187
|
+
resource?: Maybe<Coverage>;
|
|
1188
|
+
};
|
|
1189
|
+
export type CoverageClass = {
|
|
1190
|
+
__typename?: 'CoverageClass';
|
|
1191
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
1192
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1193
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1194
|
+
type?: Maybe<CodeableConcept>;
|
|
1195
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
1196
|
+
};
|
|
1197
|
+
export type CoveragePayorReference = {
|
|
1198
|
+
__typename?: 'CoveragePayorReference';
|
|
1199
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1200
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1201
|
+
identifier?: Maybe<Identifier>;
|
|
1202
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1203
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1204
|
+
};
|
|
1205
|
+
export type CoveragePolicyHolderReference = {
|
|
1206
|
+
__typename?: 'CoveragePolicyHolderReference';
|
|
1207
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1208
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1209
|
+
identifier?: Maybe<Identifier>;
|
|
1210
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1211
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1212
|
+
};
|
|
1156
1213
|
/** Supported ISO 4217 CurrencyCodes */
|
|
1157
1214
|
export declare enum CurrencyCode {
|
|
1158
1215
|
Usd = "USD"
|
|
1159
1216
|
}
|
|
1160
1217
|
/** Defines the connection statuses */
|
|
1161
1218
|
export declare enum DataConnectionStatus {
|
|
1219
|
+
AccessEnded = "ACCESS_ENDED",
|
|
1162
1220
|
Connected = "CONNECTED",
|
|
1163
1221
|
Deleted = "DELETED",
|
|
1164
1222
|
Disconnected = "DISCONNECTED",
|
|
@@ -1210,6 +1268,35 @@ export type Detail = {
|
|
|
1210
1268
|
status?: Maybe<Coding>;
|
|
1211
1269
|
statusCoding?: Maybe<Coding>;
|
|
1212
1270
|
};
|
|
1271
|
+
export type Device = {
|
|
1272
|
+
__typename?: 'Device';
|
|
1273
|
+
distinctIdentifier?: Maybe<Scalars['String']['output']>;
|
|
1274
|
+
expirationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1275
|
+
id: Scalars['ID']['output'];
|
|
1276
|
+
lotNumber?: Maybe<Scalars['String']['output']>;
|
|
1277
|
+
manufactureDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1278
|
+
meta?: Maybe<Meta>;
|
|
1279
|
+
patient?: Maybe<DevicePatientReference>;
|
|
1280
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1281
|
+
serialNumber?: Maybe<Scalars['String']['output']>;
|
|
1282
|
+
type?: Maybe<CodeableConcept>;
|
|
1283
|
+
udiCarrier?: Maybe<Array<Maybe<DeviceUdiCarrier>>>;
|
|
1284
|
+
};
|
|
1285
|
+
export type DeviceBundle = {
|
|
1286
|
+
__typename?: 'DeviceBundle';
|
|
1287
|
+
entry?: Maybe<Array<Maybe<DeviceBundleEntry>>>;
|
|
1288
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
1289
|
+
};
|
|
1290
|
+
export type DeviceBundleEntry = {
|
|
1291
|
+
__typename?: 'DeviceBundleEntry';
|
|
1292
|
+
resource?: Maybe<Device>;
|
|
1293
|
+
};
|
|
1294
|
+
export type DevicePatientReference = {
|
|
1295
|
+
__typename?: 'DevicePatientReference';
|
|
1296
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1297
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1298
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1299
|
+
};
|
|
1213
1300
|
export type DeviceRequest = {
|
|
1214
1301
|
__typename?: 'DeviceRequest';
|
|
1215
1302
|
/**
|
|
@@ -1219,6 +1306,15 @@ export type DeviceRequest = {
|
|
|
1219
1306
|
id: Scalars['ID']['output'];
|
|
1220
1307
|
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1221
1308
|
};
|
|
1309
|
+
export type DeviceUdiCarrier = {
|
|
1310
|
+
__typename?: 'DeviceUdiCarrier';
|
|
1311
|
+
carrierAIDC?: Maybe<Scalars['Base64Binary']['output']>;
|
|
1312
|
+
carrierHRF?: Maybe<Scalars['String']['output']>;
|
|
1313
|
+
deviceIdentifier?: Maybe<Scalars['String']['output']>;
|
|
1314
|
+
entryType?: Maybe<Scalars['Code']['output']>;
|
|
1315
|
+
issuer?: Maybe<Scalars['URI']['output']>;
|
|
1316
|
+
jurisdiction?: Maybe<Scalars['URI']['output']>;
|
|
1317
|
+
};
|
|
1222
1318
|
export type DiagnosticReport = Resource & {
|
|
1223
1319
|
__typename?: 'DiagnosticReport';
|
|
1224
1320
|
basedOn?: Maybe<Array<Maybe<DiagnosticReportBasedOnReference>>>;
|
|
@@ -1609,6 +1705,164 @@ export declare enum EventType {
|
|
|
1609
1705
|
CustomEvent = "CUSTOM_EVENT",
|
|
1610
1706
|
MobilePushOpen = "MOBILE_PUSH_OPEN"
|
|
1611
1707
|
}
|
|
1708
|
+
export type ExplanationOfBenefit = {
|
|
1709
|
+
__typename?: 'ExplanationOfBenefit';
|
|
1710
|
+
adjudication?: Maybe<Array<Maybe<ExplanationOfBenefitAdjudication>>>;
|
|
1711
|
+
benefitPeriod?: Maybe<Period>;
|
|
1712
|
+
billablePeriod?: Maybe<Period>;
|
|
1713
|
+
careTeam?: Maybe<Array<Maybe<ExplanationOfBenefitCareTeam>>>;
|
|
1714
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
1715
|
+
diagnosis?: Maybe<Array<Maybe<ExplanationOfBenefitDiagnosis>>>;
|
|
1716
|
+
disposition?: Maybe<Scalars['String']['output']>;
|
|
1717
|
+
id: Scalars['ID']['output'];
|
|
1718
|
+
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
1719
|
+
insurance?: Maybe<Array<Maybe<ExplanationOfBenefitInsurance>>>;
|
|
1720
|
+
insurer?: Maybe<ExplanationOfBenefitInsurerReference>;
|
|
1721
|
+
item?: Maybe<Array<Maybe<ExplanationOfBenefitItem>>>;
|
|
1722
|
+
meta?: Maybe<Meta>;
|
|
1723
|
+
outcome?: Maybe<Scalars['Code']['output']>;
|
|
1724
|
+
patient?: Maybe<ExplanationOfBenefitPatientReference>;
|
|
1725
|
+
payee?: Maybe<ExplanationOfBenefitPayee>;
|
|
1726
|
+
payment?: Maybe<ExplanationOfBenefitPayment>;
|
|
1727
|
+
provider?: Maybe<ExplanationOfBenefitProviderReference>;
|
|
1728
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1729
|
+
status?: Maybe<Scalars['Code']['output']>;
|
|
1730
|
+
subType?: Maybe<CodeableConcept>;
|
|
1731
|
+
supportingInfo?: Maybe<Array<Maybe<ExplanationOfBenefitSupportingInfo>>>;
|
|
1732
|
+
total?: Maybe<Array<Maybe<ExplanationOfBenefitTotal>>>;
|
|
1733
|
+
type?: Maybe<CodeableConcept>;
|
|
1734
|
+
use?: Maybe<Scalars['Code']['output']>;
|
|
1735
|
+
};
|
|
1736
|
+
export type ExplanationOfBenefitAdjudication = {
|
|
1737
|
+
__typename?: 'ExplanationOfBenefitAdjudication';
|
|
1738
|
+
amount?: Maybe<Quantity>;
|
|
1739
|
+
category?: Maybe<CodeableConcept>;
|
|
1740
|
+
reason?: Maybe<CodeableConcept>;
|
|
1741
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
1742
|
+
};
|
|
1743
|
+
export type ExplanationOfBenefitBundle = {
|
|
1744
|
+
__typename?: 'ExplanationOfBenefitBundle';
|
|
1745
|
+
entry?: Maybe<Array<Maybe<ExplanationOfBenefitBundleEntry>>>;
|
|
1746
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1747
|
+
meta?: Maybe<Meta>;
|
|
1748
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
1749
|
+
type?: Maybe<Scalars['Code']['output']>;
|
|
1750
|
+
};
|
|
1751
|
+
export type ExplanationOfBenefitBundleEntry = {
|
|
1752
|
+
__typename?: 'ExplanationOfBenefitBundleEntry';
|
|
1753
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1754
|
+
resource?: Maybe<ExplanationOfBenefit>;
|
|
1755
|
+
};
|
|
1756
|
+
export type ExplanationOfBenefitCareTeam = {
|
|
1757
|
+
__typename?: 'ExplanationOfBenefitCareTeam';
|
|
1758
|
+
provider?: Maybe<ExplanationOfBenefitCareTeamProviderReference>;
|
|
1759
|
+
role?: Maybe<CodeableConcept>;
|
|
1760
|
+
sequence?: Maybe<Scalars['Int']['output']>;
|
|
1761
|
+
};
|
|
1762
|
+
export type ExplanationOfBenefitCareTeamProviderReference = {
|
|
1763
|
+
__typename?: 'ExplanationOfBenefitCareTeamProviderReference';
|
|
1764
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1765
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1766
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1767
|
+
};
|
|
1768
|
+
export type ExplanationOfBenefitCoverageReference = {
|
|
1769
|
+
__typename?: 'ExplanationOfBenefitCoverageReference';
|
|
1770
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1771
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1772
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1773
|
+
};
|
|
1774
|
+
export type ExplanationOfBenefitDiagnosis = {
|
|
1775
|
+
__typename?: 'ExplanationOfBenefitDiagnosis';
|
|
1776
|
+
diagnosisCodeableConcept?: Maybe<CodeableConcept>;
|
|
1777
|
+
diagnosisReference?: Maybe<ExplanationOfBenefitDiagnosisDiagnosisReference>;
|
|
1778
|
+
onAdmission?: Maybe<CodeableConcept>;
|
|
1779
|
+
packageCode?: Maybe<CodeableConcept>;
|
|
1780
|
+
sequence?: Maybe<Scalars['Int']['output']>;
|
|
1781
|
+
type?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
1782
|
+
};
|
|
1783
|
+
export type ExplanationOfBenefitDiagnosisDiagnosisReference = {
|
|
1784
|
+
__typename?: 'ExplanationOfBenefitDiagnosisDiagnosisReference';
|
|
1785
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1786
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1787
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1788
|
+
};
|
|
1789
|
+
export type ExplanationOfBenefitInsurance = {
|
|
1790
|
+
__typename?: 'ExplanationOfBenefitInsurance';
|
|
1791
|
+
coverage?: Maybe<ExplanationOfBenefitCoverageReference>;
|
|
1792
|
+
focal?: Maybe<Scalars['Boolean']['output']>;
|
|
1793
|
+
};
|
|
1794
|
+
export type ExplanationOfBenefitInsurerReference = {
|
|
1795
|
+
__typename?: 'ExplanationOfBenefitInsurerReference';
|
|
1796
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1797
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1798
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1799
|
+
};
|
|
1800
|
+
export type ExplanationOfBenefitItem = {
|
|
1801
|
+
__typename?: 'ExplanationOfBenefitItem';
|
|
1802
|
+
adjudication?: Maybe<Array<Maybe<ExplanationOfBenefitAdjudication>>>;
|
|
1803
|
+
noteNumber?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
1804
|
+
productOrService?: Maybe<CodeableConcept>;
|
|
1805
|
+
sequence?: Maybe<Scalars['Int']['output']>;
|
|
1806
|
+
};
|
|
1807
|
+
export type ExplanationOfBenefitPatientReference = {
|
|
1808
|
+
__typename?: 'ExplanationOfBenefitPatientReference';
|
|
1809
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1810
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1811
|
+
identifier?: Maybe<Identifier>;
|
|
1812
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1813
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1814
|
+
};
|
|
1815
|
+
export type ExplanationOfBenefitPayee = {
|
|
1816
|
+
__typename?: 'ExplanationOfBenefitPayee';
|
|
1817
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1818
|
+
party?: Maybe<ExplanationOfBenefitPayeePartyReference>;
|
|
1819
|
+
type?: Maybe<CodeableConcept>;
|
|
1820
|
+
};
|
|
1821
|
+
export type ExplanationOfBenefitPayeePartyReference = {
|
|
1822
|
+
__typename?: 'ExplanationOfBenefitPayeePartyReference';
|
|
1823
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1824
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1825
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1826
|
+
};
|
|
1827
|
+
export type ExplanationOfBenefitPayment = {
|
|
1828
|
+
__typename?: 'ExplanationOfBenefitPayment';
|
|
1829
|
+
adjustment?: Maybe<Quantity>;
|
|
1830
|
+
adjustmentReason?: Maybe<CodeableConcept>;
|
|
1831
|
+
amount?: Maybe<Quantity>;
|
|
1832
|
+
date?: Maybe<Scalars['Date']['output']>;
|
|
1833
|
+
type?: Maybe<CodeableConcept>;
|
|
1834
|
+
};
|
|
1835
|
+
export type ExplanationOfBenefitProviderReference = {
|
|
1836
|
+
__typename?: 'ExplanationOfBenefitProviderReference';
|
|
1837
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1838
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1839
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1840
|
+
};
|
|
1841
|
+
export type ExplanationOfBenefitSupportingInfo = {
|
|
1842
|
+
__typename?: 'ExplanationOfBenefitSupportingInfo';
|
|
1843
|
+
category?: Maybe<CodeableConcept>;
|
|
1844
|
+
code?: Maybe<CodeableConcept>;
|
|
1845
|
+
reason?: Maybe<Coding>;
|
|
1846
|
+
sequence?: Maybe<Scalars['Int']['output']>;
|
|
1847
|
+
timingDate?: Maybe<Scalars['Date']['output']>;
|
|
1848
|
+
timingPeriod?: Maybe<Period>;
|
|
1849
|
+
valueAttachment?: Maybe<Attachment>;
|
|
1850
|
+
valueBoolean?: Maybe<Scalars['Boolean']['output']>;
|
|
1851
|
+
valueQuantity?: Maybe<Quantity>;
|
|
1852
|
+
valueReference?: Maybe<ExplanationOfBenefitSupportingInfoValueReferenceReference>;
|
|
1853
|
+
valueString?: Maybe<Scalars['String']['output']>;
|
|
1854
|
+
};
|
|
1855
|
+
export type ExplanationOfBenefitSupportingInfoValueReferenceReference = {
|
|
1856
|
+
__typename?: 'ExplanationOfBenefitSupportingInfoValueReferenceReference';
|
|
1857
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1858
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1859
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1860
|
+
};
|
|
1861
|
+
export type ExplanationOfBenefitTotal = {
|
|
1862
|
+
__typename?: 'ExplanationOfBenefitTotal';
|
|
1863
|
+
amount?: Maybe<Quantity>;
|
|
1864
|
+
category?: Maybe<CodeableConcept>;
|
|
1865
|
+
};
|
|
1612
1866
|
/**
|
|
1613
1867
|
* Expression
|
|
1614
1868
|
* A expression that is evaluated in a specified context and returns a value. The
|
|
@@ -1854,6 +2108,45 @@ export type GetFhirSearchDateValue = {
|
|
|
1854
2108
|
/** the value for the parameter in the resource is greater than the provided value */
|
|
1855
2109
|
greaterThan?: InputMaybe<Scalars['Date']['input']>;
|
|
1856
2110
|
};
|
|
2111
|
+
export type Goal = {
|
|
2112
|
+
__typename?: 'Goal';
|
|
2113
|
+
description?: Maybe<CodeableConcept>;
|
|
2114
|
+
id: Scalars['ID']['output'];
|
|
2115
|
+
lifecycleStatus?: Maybe<Scalars['Code']['output']>;
|
|
2116
|
+
meta?: Maybe<Meta>;
|
|
2117
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
2118
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
2119
|
+
subject?: Maybe<GoalSubjectReference>;
|
|
2120
|
+
target?: Maybe<Array<Maybe<GoalTarget>>>;
|
|
2121
|
+
};
|
|
2122
|
+
export type GoalBundle = {
|
|
2123
|
+
__typename?: 'GoalBundle';
|
|
2124
|
+
entry?: Maybe<Array<Maybe<GoalBundleEntry>>>;
|
|
2125
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
2126
|
+
};
|
|
2127
|
+
export type GoalBundleEntry = {
|
|
2128
|
+
__typename?: 'GoalBundleEntry';
|
|
2129
|
+
resource?: Maybe<Goal>;
|
|
2130
|
+
};
|
|
2131
|
+
export type GoalSubjectReference = {
|
|
2132
|
+
__typename?: 'GoalSubjectReference';
|
|
2133
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
2134
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
2135
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
2136
|
+
};
|
|
2137
|
+
export type GoalTarget = {
|
|
2138
|
+
__typename?: 'GoalTarget';
|
|
2139
|
+
detailBoolean?: Maybe<Scalars['Boolean']['output']>;
|
|
2140
|
+
detailCodeableConcept?: Maybe<CodeableConcept>;
|
|
2141
|
+
detailInteger?: Maybe<Scalars['Int']['output']>;
|
|
2142
|
+
detailQuantity?: Maybe<Quantity>;
|
|
2143
|
+
detailRange?: Maybe<Range>;
|
|
2144
|
+
detailRatio?: Maybe<Ratio>;
|
|
2145
|
+
detailString?: Maybe<Scalars['String']['output']>;
|
|
2146
|
+
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
2147
|
+
dueDuration?: Maybe<Quantity>;
|
|
2148
|
+
measure?: Maybe<CodeableConcept>;
|
|
2149
|
+
};
|
|
1857
2150
|
export type GoogleGeo = {
|
|
1858
2151
|
__typename?: 'GoogleGeo';
|
|
1859
2152
|
key: Scalars['String']['output'];
|
|
@@ -1879,7 +2172,6 @@ export type GuestAccessToken = {
|
|
|
1879
2172
|
/** Unified search result type */
|
|
1880
2173
|
export type HealthResourceSearchResult = {
|
|
1881
2174
|
__typename?: 'HealthResourceSearchResult';
|
|
1882
|
-
bookable?: Maybe<Bookable>;
|
|
1883
2175
|
content?: Maybe<Scalars['String']['output']>;
|
|
1884
2176
|
endpoint?: Maybe<Array<Maybe<EndpointType>>>;
|
|
1885
2177
|
gender?: Maybe<GenderEnum>;
|
|
@@ -3484,7 +3776,7 @@ export type Organization = {
|
|
|
3484
3776
|
address?: Maybe<Array<Maybe<Address>>>;
|
|
3485
3777
|
alias?: Maybe<Scalars['String']['output']>;
|
|
3486
3778
|
endpoint?: Maybe<Array<Maybe<Endpoint>>>;
|
|
3487
|
-
id
|
|
3779
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3488
3780
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
3489
3781
|
meta?: Maybe<Meta>;
|
|
3490
3782
|
/** The name of the organization. */
|
|
@@ -3879,7 +4171,7 @@ export type Position = {
|
|
|
3879
4171
|
/** Type representing a practitioner with a human name */
|
|
3880
4172
|
export type Practitioner = {
|
|
3881
4173
|
__typename?: 'Practitioner';
|
|
3882
|
-
id
|
|
4174
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3883
4175
|
/** The identifier of the practitioner. */
|
|
3884
4176
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
3885
4177
|
/** The human name of the practitioner */
|
|
@@ -3901,7 +4193,7 @@ export type PractitionerRole = {
|
|
|
3901
4193
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
3902
4194
|
code?: Maybe<Array<CodeableConcept>>;
|
|
3903
4195
|
endpoint?: Maybe<Array<Maybe<Endpoint>>>;
|
|
3904
|
-
id
|
|
4196
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3905
4197
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
3906
4198
|
location?: Maybe<Array<Maybe<Location>>>;
|
|
3907
4199
|
organization?: Maybe<Organization>;
|
|
@@ -4080,6 +4372,49 @@ export type ProtocolApplied = {
|
|
|
4080
4372
|
/** A string representing the dose number. */
|
|
4081
4373
|
doseNumberString?: Maybe<Scalars['String']['output']>;
|
|
4082
4374
|
};
|
|
4375
|
+
export type Provenance = {
|
|
4376
|
+
__typename?: 'Provenance';
|
|
4377
|
+
agent?: Maybe<Array<Maybe<ProvenanceAgent>>>;
|
|
4378
|
+
id: Scalars['ID']['output'];
|
|
4379
|
+
meta?: Maybe<Meta>;
|
|
4380
|
+
recorded?: Maybe<Scalars['Instant']['output']>;
|
|
4381
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
4382
|
+
target?: Maybe<Array<Maybe<ProvenanceTargetReference>>>;
|
|
4383
|
+
};
|
|
4384
|
+
export type ProvenanceAgent = {
|
|
4385
|
+
__typename?: 'ProvenanceAgent';
|
|
4386
|
+
onBehalfOf?: Maybe<ProvenanceAgentOnBehalfOfReference>;
|
|
4387
|
+
role?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
4388
|
+
type?: Maybe<CodeableConcept>;
|
|
4389
|
+
who?: Maybe<ProvenanceAgentWhoReference>;
|
|
4390
|
+
};
|
|
4391
|
+
export type ProvenanceAgentOnBehalfOfReference = {
|
|
4392
|
+
__typename?: 'ProvenanceAgentOnBehalfOfReference';
|
|
4393
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
4394
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
4395
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
4396
|
+
};
|
|
4397
|
+
export type ProvenanceAgentWhoReference = {
|
|
4398
|
+
__typename?: 'ProvenanceAgentWhoReference';
|
|
4399
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
4400
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
4401
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
4402
|
+
};
|
|
4403
|
+
export type ProvenanceBundle = {
|
|
4404
|
+
__typename?: 'ProvenanceBundle';
|
|
4405
|
+
entry?: Maybe<Array<Maybe<ProvenanceBundleEntry>>>;
|
|
4406
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
4407
|
+
};
|
|
4408
|
+
export type ProvenanceBundleEntry = {
|
|
4409
|
+
__typename?: 'ProvenanceBundleEntry';
|
|
4410
|
+
resource?: Maybe<Provenance>;
|
|
4411
|
+
};
|
|
4412
|
+
export type ProvenanceTargetReference = {
|
|
4413
|
+
__typename?: 'ProvenanceTargetReference';
|
|
4414
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
4415
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
4416
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
4417
|
+
};
|
|
4083
4418
|
export type ProviderAddress = {
|
|
4084
4419
|
__typename?: 'ProviderAddress';
|
|
4085
4420
|
city?: Maybe<Scalars['String']['output']>;
|
|
@@ -4150,7 +4485,6 @@ export type ProviderLocation = {
|
|
|
4150
4485
|
*/
|
|
4151
4486
|
name?: Maybe<Scalars['String']['output']>;
|
|
4152
4487
|
position?: Maybe<Position>;
|
|
4153
|
-
scheduling?: Maybe<ProviderSchedule>;
|
|
4154
4488
|
telecom?: Maybe<Array<Maybe<ProviderContactPoint>>>;
|
|
4155
4489
|
type?: Maybe<Array<Maybe<ProviderCodeableConcept>>>;
|
|
4156
4490
|
};
|
|
@@ -4208,11 +4542,6 @@ export type ProviderResults = {
|
|
|
4208
4542
|
paging_info?: Maybe<PagingInfo>;
|
|
4209
4543
|
results?: Maybe<Array<Maybe<ProviderResult>>>;
|
|
4210
4544
|
};
|
|
4211
|
-
export type ProviderSchedule = {
|
|
4212
|
-
__typename?: 'ProviderSchedule';
|
|
4213
|
-
bookable?: Maybe<Bookable>;
|
|
4214
|
-
identifier?: Maybe<Array<Maybe<ProviderIdentifier>>>;
|
|
4215
|
-
};
|
|
4216
4545
|
export declare enum ProviderType {
|
|
4217
4546
|
Practice = "practice",
|
|
4218
4547
|
Practitioner = "practitioner"
|
|
@@ -4280,7 +4609,10 @@ export type Query = {
|
|
|
4280
4609
|
cancelationReasons: CodeSystem;
|
|
4281
4610
|
consent?: Maybe<Array<Maybe<LegacyConsent>>>;
|
|
4282
4611
|
consentAsyncTasks?: Maybe<Array<Maybe<Job>>>;
|
|
4612
|
+
coverages?: Maybe<CoverageBundle>;
|
|
4613
|
+
devices?: Maybe<DeviceBundle>;
|
|
4283
4614
|
diagnosticReports?: Maybe<DiagnosticReportBundle>;
|
|
4615
|
+
explanationOfBenefits?: Maybe<ExplanationOfBenefitBundle>;
|
|
4284
4616
|
findPersonWithClientSlugAndId?: Maybe<PersonInfoForLogin>;
|
|
4285
4617
|
getAllergyIntoleranceGroups: AllergyIntoleranceGroupQueryResults;
|
|
4286
4618
|
/** Retrieves a list of AllergyIntolerance resources based on the provided search criteria. */
|
|
@@ -4337,12 +4669,14 @@ export type Query = {
|
|
|
4337
4669
|
getVitalSignGroups: VitalSignGroupQueryResults;
|
|
4338
4670
|
/** Retrieves a list of vital signs based on the provided request parameters. */
|
|
4339
4671
|
getVitalSigns: ObservationQueryResults;
|
|
4672
|
+
goals?: Maybe<GoalBundle>;
|
|
4340
4673
|
initSdk: SdkConfiguration;
|
|
4341
4674
|
login: LogInResponse;
|
|
4342
4675
|
patients?: Maybe<PatientBundle>;
|
|
4343
4676
|
person?: Maybe<Person>;
|
|
4344
4677
|
placeholderQuery?: Maybe<Scalars['String']['output']>;
|
|
4345
4678
|
profile?: Maybe<Profile>;
|
|
4679
|
+
provenances?: Maybe<ProvenanceBundle>;
|
|
4346
4680
|
/**
|
|
4347
4681
|
* Searches providers based on filters.
|
|
4348
4682
|
* @deprecated Use searchProviders instead
|
|
@@ -4364,6 +4698,7 @@ export type Query = {
|
|
|
4364
4698
|
searchProviders: SearchProvidersResults;
|
|
4365
4699
|
status?: Maybe<Scalars['String']['output']>;
|
|
4366
4700
|
subscription_subscription?: Maybe<Subscription_SubscriptionBundle>;
|
|
4701
|
+
temp?: Maybe<Temp>;
|
|
4367
4702
|
userProfile?: Maybe<Person>;
|
|
4368
4703
|
verificationStatus?: Maybe<VerificationResult>;
|
|
4369
4704
|
who?: Maybe<Scalars['String']['output']>;
|
|
@@ -4405,6 +4740,25 @@ export type QueryConsentAsyncTasksArgs = {
|
|
|
4405
4740
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
4406
4741
|
status: Array<InputMaybe<Scalars['String']['input']>>;
|
|
4407
4742
|
};
|
|
4743
|
+
export type QueryCoveragesArgs = {
|
|
4744
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4745
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4746
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4747
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4748
|
+
_total?: InputMaybe<TotalType>;
|
|
4749
|
+
beneficiary?: InputMaybe<SearchReference>;
|
|
4750
|
+
id?: InputMaybe<SearchString>;
|
|
4751
|
+
patient?: InputMaybe<SearchReference>;
|
|
4752
|
+
};
|
|
4753
|
+
export type QueryDevicesArgs = {
|
|
4754
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4755
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4756
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4757
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4758
|
+
_total?: InputMaybe<TotalType>;
|
|
4759
|
+
id?: InputMaybe<SearchString>;
|
|
4760
|
+
subject?: InputMaybe<SearchReference>;
|
|
4761
|
+
};
|
|
4408
4762
|
export type QueryDiagnosticReportsArgs = {
|
|
4409
4763
|
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4410
4764
|
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -4412,6 +4766,15 @@ export type QueryDiagnosticReportsArgs = {
|
|
|
4412
4766
|
_total?: InputMaybe<TotalType>;
|
|
4413
4767
|
id?: InputMaybe<SearchString>;
|
|
4414
4768
|
};
|
|
4769
|
+
export type QueryExplanationOfBenefitsArgs = {
|
|
4770
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4771
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4772
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4773
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4774
|
+
_total?: InputMaybe<TotalType>;
|
|
4775
|
+
id?: InputMaybe<SearchString>;
|
|
4776
|
+
patient?: InputMaybe<SearchReference>;
|
|
4777
|
+
};
|
|
4415
4778
|
export type QueryFindPersonWithClientSlugAndIdArgs = {
|
|
4416
4779
|
input?: InputMaybe<ClientSlugAndIdentifierInput>;
|
|
4417
4780
|
};
|
|
@@ -4524,6 +4887,15 @@ export type QueryGetVitalSignGroupsArgs = {
|
|
|
4524
4887
|
export type QueryGetVitalSignsArgs = {
|
|
4525
4888
|
request?: InputMaybe<VitalSignRequest>;
|
|
4526
4889
|
};
|
|
4890
|
+
export type QueryGoalsArgs = {
|
|
4891
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4892
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4893
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4894
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4895
|
+
_total?: InputMaybe<TotalType>;
|
|
4896
|
+
id?: InputMaybe<SearchString>;
|
|
4897
|
+
subject?: InputMaybe<SearchReference>;
|
|
4898
|
+
};
|
|
4527
4899
|
export type QueryInitSdkArgs = {
|
|
4528
4900
|
clientKey: Scalars['String']['input'];
|
|
4529
4901
|
organizationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4546,6 +4918,15 @@ export type QueryPersonArgs = {
|
|
|
4546
4918
|
export type QueryProfileArgs = {
|
|
4547
4919
|
id: Scalars['ID']['input'];
|
|
4548
4920
|
};
|
|
4921
|
+
export type QueryProvenancesArgs = {
|
|
4922
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4923
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4924
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4925
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4926
|
+
_total?: InputMaybe<TotalType>;
|
|
4927
|
+
id?: InputMaybe<SearchString>;
|
|
4928
|
+
patient?: InputMaybe<SearchReference>;
|
|
4929
|
+
};
|
|
4549
4930
|
export type QueryProvidersArgs = {
|
|
4550
4931
|
client?: InputMaybe<Array<InputMaybe<Client>>>;
|
|
4551
4932
|
filter_values?: InputMaybe<Array<InputMaybe<FilterField>>>;
|
|
@@ -4579,6 +4960,7 @@ export type QueryQuestionnaireResponsesArgs = {
|
|
|
4579
4960
|
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4580
4961
|
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4581
4962
|
_tag?: InputMaybe<SearchToken>;
|
|
4963
|
+
_total?: InputMaybe<TotalType>;
|
|
4582
4964
|
id?: InputMaybe<SearchString>;
|
|
4583
4965
|
patient?: InputMaybe<SearchReference>;
|
|
4584
4966
|
questionnaire?: InputMaybe<SearchReference>;
|
|
@@ -4614,6 +4996,9 @@ export type QuerySubscription_SubscriptionArgs = {
|
|
|
4614
4996
|
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4615
4997
|
_total?: InputMaybe<TotalType>;
|
|
4616
4998
|
};
|
|
4999
|
+
export type QueryTempArgs = {
|
|
5000
|
+
id: Scalars['ID']['input'];
|
|
5001
|
+
};
|
|
4617
5002
|
export type Questionnaire = Resource & {
|
|
4618
5003
|
__typename?: 'Questionnaire';
|
|
4619
5004
|
contained?: Maybe<Array<Maybe<Resource>>>;
|
|
@@ -4742,6 +5127,7 @@ export type QuestionnaireModelItem = {
|
|
|
4742
5127
|
};
|
|
4743
5128
|
export type QuestionnaireResponse = Resource & {
|
|
4744
5129
|
__typename?: 'QuestionnaireResponse';
|
|
5130
|
+
author?: Maybe<QuestionnaireResponseAuthorReference>;
|
|
4745
5131
|
authored?: Maybe<Scalars['DateTime']['output']>;
|
|
4746
5132
|
contained?: Maybe<Array<Maybe<Resource>>>;
|
|
4747
5133
|
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
@@ -4783,9 +5169,17 @@ export type QuestionnaireResponseAnswerValueReferenceReference = {
|
|
|
4783
5169
|
reference?: Maybe<Scalars['String']['output']>;
|
|
4784
5170
|
type?: Maybe<Scalars['URI']['output']>;
|
|
4785
5171
|
};
|
|
5172
|
+
export type QuestionnaireResponseAuthorReference = {
|
|
5173
|
+
__typename?: 'QuestionnaireResponseAuthorReference';
|
|
5174
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
5175
|
+
identifier?: Maybe<Identifier>;
|
|
5176
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
5177
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
5178
|
+
};
|
|
4786
5179
|
export type QuestionnaireResponseBundle = {
|
|
4787
5180
|
__typename?: 'QuestionnaireResponseBundle';
|
|
4788
5181
|
entry?: Maybe<Array<Maybe<QuestionnaireResponseBundleEntry>>>;
|
|
5182
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
4789
5183
|
};
|
|
4790
5184
|
export type QuestionnaireResponseBundleEntry = {
|
|
4791
5185
|
__typename?: 'QuestionnaireResponseBundleEntry';
|
|
@@ -4958,7 +5352,7 @@ export type RelatedPerson = {
|
|
|
4958
5352
|
__typename?: 'RelatedPerson';
|
|
4959
5353
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
4960
5354
|
address?: Maybe<Array<Maybe<Address>>>;
|
|
4961
|
-
id
|
|
5355
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
4962
5356
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
4963
5357
|
meta?: Maybe<Meta>;
|
|
4964
5358
|
name?: Maybe<Array<Maybe<HumanName>>>;
|
|
@@ -5607,6 +6001,10 @@ export type TelemetryConfig = {
|
|
|
5607
6001
|
collectorUrl: Scalars['String']['output'];
|
|
5608
6002
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5609
6003
|
};
|
|
6004
|
+
export type Temp = {
|
|
6005
|
+
__typename?: 'Temp';
|
|
6006
|
+
id: Scalars['ID']['output'];
|
|
6007
|
+
};
|
|
5610
6008
|
export type Timing = {
|
|
5611
6009
|
__typename?: 'Timing';
|
|
5612
6010
|
code?: Maybe<CodeableConcept>;
|
package/dist/graphql/schema.js
CHANGED
|
@@ -86,6 +86,7 @@ export var CurrencyCode;
|
|
|
86
86
|
/** Defines the connection statuses */
|
|
87
87
|
export var DataConnectionStatus;
|
|
88
88
|
(function (DataConnectionStatus) {
|
|
89
|
+
DataConnectionStatus["AccessEnded"] = "ACCESS_ENDED";
|
|
89
90
|
DataConnectionStatus["Connected"] = "CONNECTED";
|
|
90
91
|
DataConnectionStatus["Deleted"] = "DELETED";
|
|
91
92
|
DataConnectionStatus["Disconnected"] = "DISCONNECTED";
|