@icanbwell/bwell-sdk-ts 1.42.1 → 1.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/__version__.d.ts +1 -1
- package/dist/__version__.js +1 -1
- package/dist/api/base/activity/get-tasks-request.d.ts +6 -1
- package/dist/api/base/questionnaire/questionnaire-responses-request.d.ts +3 -1
- package/dist/api/base/questionnaire/questionnaire-responses-request.js +3 -0
- package/dist/api/graphql-api/activity/activity-request-factories.d.ts +2 -1
- package/dist/api/graphql-api/activity/activity-request-factories.js +4 -0
- package/dist/api/graphql-api/questionnaire/get-questionnaire-responses-request-factory.js +3 -1
- package/dist/graphql/operations/index.d.ts +2 -2
- package/dist/graphql/operations/index.js +22 -1
- package/dist/graphql/operations/types.d.ts +53 -17
- package/dist/graphql/schema.d.ts +426 -26
- package/dist/graphql/schema.js +1 -7
- package/package.json +1 -1
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
|
@@ -25,9 +25,14 @@ export type GetTaskRequestInput = PagedRequestInput & {
|
|
|
25
25
|
* subject[s] of tasks to filter by
|
|
26
26
|
*/
|
|
27
27
|
subject?: string | string[];
|
|
28
|
+
/**
|
|
29
|
+
* If provided, results will be filtered down to Tasks that have performers
|
|
30
|
+
* matching the specified types (e.g., "system", "user").
|
|
31
|
+
*/
|
|
32
|
+
performerType?: string | string[];
|
|
28
33
|
/**
|
|
29
34
|
* If present and true, retrieve referenced content from CMS. All content found
|
|
30
|
-
* will be added to the associated Task field
|
|
35
|
+
* will be added to the associated Task field "extension"
|
|
31
36
|
*/
|
|
32
37
|
enrichContent?: boolean;
|
|
33
38
|
/**
|
|
@@ -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";
|
|
@@ -10,6 +10,8 @@ export type QuestionnaireResponsesRequestInput = PagedRequestInput & {
|
|
|
10
10
|
questionnaire?: SearchReference;
|
|
11
11
|
status?: SearchToken;
|
|
12
12
|
patient?: SearchReference;
|
|
13
|
+
tag?: SearchToken;
|
|
14
|
+
total?: TotalType;
|
|
13
15
|
};
|
|
14
16
|
export declare class QuestionnaireResponsesRequestValidator extends PagedRequestValidator<QuestionnaireResponsesRequestInput> {
|
|
15
17
|
#private;
|
|
@@ -32,6 +32,9 @@ export class QuestionnaireResponsesRequestValidator extends PagedRequestValidato
|
|
|
32
32
|
if (isNotNullOrUndefined(data.status)) {
|
|
33
33
|
__classPrivateFieldGet(this, _QuestionnaireResponsesRequestValidator_searchTokenValidator, "f").validate(data.status, errors);
|
|
34
34
|
}
|
|
35
|
+
if (isNotNullOrUndefined(data.tag)) {
|
|
36
|
+
__classPrivateFieldGet(this, _QuestionnaireResponsesRequestValidator_searchTokenValidator, "f").validate(data.tag, errors);
|
|
37
|
+
}
|
|
35
38
|
}
|
|
36
39
|
}
|
|
37
40
|
_QuestionnaireResponsesRequestValidator_searchDateValidator = new WeakMap(), _QuestionnaireResponsesRequestValidator_searchStringValidator = new WeakMap(), _QuestionnaireResponsesRequestValidator_searchTokenValidator = new WeakMap();
|
|
@@ -5,7 +5,8 @@ export declare enum ActivitySystem {
|
|
|
5
5
|
ACTIVITY_CONTENT = "https://www.icanbwell.com/contentDescription",
|
|
6
6
|
ACTIVITY_ID = "https://www.icanbwell.com/activityId",
|
|
7
7
|
ACTIVITY_TOPIC = "https://www.icanbwell.com/activityTopic",
|
|
8
|
-
ACTIVITY_TYPE = "https://www.icanbwell.com/activityType"
|
|
8
|
+
ACTIVITY_TYPE = "https://www.icanbwell.com/activityType",
|
|
9
|
+
PERFORMER_TYPE = "https://www.icanbwell.com/performerType"
|
|
9
10
|
}
|
|
10
11
|
export declare class GetTasksRequestFactory implements RequestFactory<GetTasksRequest, GetTasksQueryVariables> {
|
|
11
12
|
#private;
|
|
@@ -11,6 +11,7 @@ export var ActivitySystem;
|
|
|
11
11
|
ActivitySystem["ACTIVITY_ID"] = "https://www.icanbwell.com/activityId";
|
|
12
12
|
ActivitySystem["ACTIVITY_TOPIC"] = "https://www.icanbwell.com/activityTopic";
|
|
13
13
|
ActivitySystem["ACTIVITY_TYPE"] = "https://www.icanbwell.com/activityType";
|
|
14
|
+
ActivitySystem["PERFORMER_TYPE"] = "https://www.icanbwell.com/performerType";
|
|
14
15
|
})(ActivitySystem || (ActivitySystem = {}));
|
|
15
16
|
export class GetTasksRequestFactory {
|
|
16
17
|
constructor() {
|
|
@@ -41,6 +42,9 @@ export class GetTasksRequestFactory {
|
|
|
41
42
|
if (isNotUndefined(input.subject)) {
|
|
42
43
|
data.subject = __classPrivateFieldGet(this, _GetTasksRequestFactory_instances, "m", _GetTasksRequestFactory_toSearchToken).call(this, input.subject);
|
|
43
44
|
}
|
|
45
|
+
if (isNotUndefined(input.performerType)) {
|
|
46
|
+
data.performer = __classPrivateFieldGet(this, _GetTasksRequestFactory_instances, "m", _GetTasksRequestFactory_toSearchToken).call(this, input.performerType, ActivitySystem.PERFORMER_TYPE);
|
|
47
|
+
}
|
|
44
48
|
data.sortMethod = input.smartSort === true ? "smartSort" : "";
|
|
45
49
|
if (isNotUndefined(input.enrichContent)) {
|
|
46
50
|
data.enrichContent = input.enrichContent;
|
|
@@ -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;
|
|
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,
|
|
@@ -15,6 +15,8 @@ export class QuestionnaireResponsesRequestFactory {
|
|
|
15
15
|
questionnaire: (_e = input.questionnaire) !== null && _e !== void 0 ? _e : null,
|
|
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
|
+
tag: (_h = input.tag) !== null && _h !== void 0 ? _h : null,
|
|
19
|
+
total: (_j = input.total) !== null && _j !== void 0 ? _j : null,
|
|
18
20
|
};
|
|
19
21
|
}
|
|
20
22
|
}
|
|
@@ -81,7 +81,7 @@ export declare const QuestionnaireResponseItemFieldsFragmentDoc = "\n fragmen
|
|
|
81
81
|
export declare const QuestionnaireItemFieldsFragmentDoc = "\n fragment QuestionnaireItemFields on QuestionnaireItem {\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n linkId\n prefix\n text\n type\n enableWhen {\n question\n operator\n answerBoolean\n answerDecimal\n answerInteger\n answerDate\n answerDateTime\n answerTime\n answerString\n answerCoding {\n ...CodingFields\n }\n answerQuantity {\n ...QuantityFields\n }\n answerReference {\n reference\n type\n display\n }\n }\n enableBehavior\n required\n repeats\n readOnly\n maxLength\n answerOption {\n valueInteger\n valueDate\n valueString\n valueCoding {\n ...CodingFields\n }\n valueReference {\n reference\n type\n display\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n initialSelected\n }\n initial {\n valueBoolean\n valueDecimal\n valueInteger\n valueDate\n valueDateTime\n valueString\n valueUri\n valueAttachment {\n contentType\n data\n url\n title\n }\n valueCoding {\n ...CodingFields\n }\n valueQuantity {\n ...QuantityFields\n }\n valueReference {\n reference\n type\n display\n extension {\n url\n valueBoolean\n valueInteger\n valueString\n valueExpression {\n description\n name\n language\n expression\n reference\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueDateTime\n valueCode\n valueUri\n valueReference {\n reference\n type\n display\n }\n }\n }\n }\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n ";
|
|
82
82
|
export declare const QuestionnaireFieldsFragmentDoc = "\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 ";
|
|
83
83
|
export declare const QuestionnaireResponseFieldsFragmentDoc = "\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 ";
|
|
84
|
-
export declare const GetTasksDocument = "\n query getTasks($request: TaskRequest) {\n getTasks(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n meta {\n ...MetaFields\n }\n identifier {\n id\n system\n value\n }\n code {\n ...CodeableConceptFields\n }\n instantiatesCanonical\n description\n executionPeriod {\n ...PeriodFields\n }\n status {\n code\n display\n }\n lastModified\n for {\n reference\n }\n extension {\n ...ExtensionFields\n }\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment ExtensionFields on Extension {\n id\n url\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueString\n valueInteger\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 ";
|
|
84
|
+
export declare const GetTasksDocument = "\n query getTasks($request: TaskRequest) {\n getTasks(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n meta {\n ...MetaFields\n }\n identifier {\n id\n system\n value\n }\n code {\n ...CodeableConceptFields\n }\n instantiatesCanonical\n description\n executionPeriod {\n ...PeriodFields\n }\n status {\n code\n display\n }\n businessStatus {\n ...CodeableConceptFields\n }\n lastModified\n for {\n reference\n }\n focus {\n reference\n }\n basedOn {\n reference\n }\n output {\n type {\n ...CodeableConceptFields\n }\n valueString\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n }\n extension {\n ...ExtensionFields\n }\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment ExtensionFields on Extension {\n id\n url\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueString\n valueInteger\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 ";
|
|
85
85
|
export declare const TaskUpdateStatusDocument = "\n mutation taskUpdateStatus($taskId: String!, $newStatus: TaskStatus!) {\n taskUpdateStatus(input: {taskId: $taskId, newStatus: $newStatus}) {\n id\n status\n }\n}\n ";
|
|
86
86
|
export declare const CreateConnectionDocument = "\n mutation createConnection($connectionId: String!, $username: String!, $password: String!) {\n createConnection(\n connectionId: $connectionId\n username: $username\n password: $password\n ) {\n id\n status\n name\n category\n type\n isDirect\n syncStatus\n statusUpdated\n lastSynced\n created\n }\n}\n ";
|
|
87
87
|
export declare const DeleteConnectionDocument = "\n mutation deleteConnection($connectionId: String!) {\n deleteConnection(connectionId: $connectionId) {\n status\n statusUpdated\n }\n}\n ";
|
|
@@ -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) {\n questionnaireResponses(\n id: $id\n _lastUpdated: $lastUpdated\n _sort: $sort\n _count: $pageSize\n _getpagesoffset: $page\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 ";
|
|
@@ -1554,10 +1554,28 @@ export const GetTasksDocument = `
|
|
|
1554
1554
|
code
|
|
1555
1555
|
display
|
|
1556
1556
|
}
|
|
1557
|
+
businessStatus {
|
|
1558
|
+
...CodeableConceptFields
|
|
1559
|
+
}
|
|
1557
1560
|
lastModified
|
|
1558
1561
|
for {
|
|
1559
1562
|
reference
|
|
1560
1563
|
}
|
|
1564
|
+
focus {
|
|
1565
|
+
reference
|
|
1566
|
+
}
|
|
1567
|
+
basedOn {
|
|
1568
|
+
reference
|
|
1569
|
+
}
|
|
1570
|
+
output {
|
|
1571
|
+
type {
|
|
1572
|
+
...CodeableConceptFields
|
|
1573
|
+
}
|
|
1574
|
+
valueString
|
|
1575
|
+
valueCodeableConcept {
|
|
1576
|
+
...CodeableConceptFields
|
|
1577
|
+
}
|
|
1578
|
+
}
|
|
1561
1579
|
extension {
|
|
1562
1580
|
...ExtensionFields
|
|
1563
1581
|
}
|
|
@@ -3042,17 +3060,20 @@ export const NextQuestionDocument = `
|
|
|
3042
3060
|
}
|
|
3043
3061
|
${QuestionnaireResponseFieldsFragmentDoc}`;
|
|
3044
3062
|
export const GetQuestionnaireResponsesDocument = `
|
|
3045
|
-
query getQuestionnaireResponses($id: SearchString, $lastUpdated: SearchDate, $sort: [String], $pageSize: Int, $page: Int, $questionnaire: SearchReference, $status: SearchToken, $patient: SearchReference) {
|
|
3063
|
+
query getQuestionnaireResponses($id: SearchString, $lastUpdated: SearchDate, $sort: [String], $pageSize: Int, $page: Int, $questionnaire: SearchReference, $status: SearchToken, $patient: SearchReference, $tag: SearchToken, $total: TotalType) {
|
|
3046
3064
|
questionnaireResponses(
|
|
3047
3065
|
id: $id
|
|
3048
3066
|
_lastUpdated: $lastUpdated
|
|
3049
3067
|
_sort: $sort
|
|
3050
3068
|
_count: $pageSize
|
|
3051
3069
|
_getpagesoffset: $page
|
|
3070
|
+
_tag: $tag
|
|
3071
|
+
_total: $total
|
|
3052
3072
|
questionnaire: $questionnaire
|
|
3053
3073
|
status: $status
|
|
3054
3074
|
patient: $patient
|
|
3055
3075
|
) {
|
|
3076
|
+
total
|
|
3056
3077
|
entry {
|
|
3057
3078
|
resource {
|
|
3058
3079
|
...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;
|
|
@@ -6887,9 +6887,42 @@ export type GetTasksQueryResults = {
|
|
|
6887
6887
|
code: any | null;
|
|
6888
6888
|
display: string | null;
|
|
6889
6889
|
} | null;
|
|
6890
|
+
businessStatus: {
|
|
6891
|
+
text: string | null;
|
|
6892
|
+
coding: Array<{
|
|
6893
|
+
system: any | null;
|
|
6894
|
+
code: any | null;
|
|
6895
|
+
display: string | null;
|
|
6896
|
+
} | null> | null;
|
|
6897
|
+
} | null;
|
|
6890
6898
|
for: {
|
|
6891
6899
|
reference: string | null;
|
|
6892
6900
|
} | null;
|
|
6901
|
+
focus: {
|
|
6902
|
+
reference: string | null;
|
|
6903
|
+
} | null;
|
|
6904
|
+
basedOn: Array<{
|
|
6905
|
+
reference: string | null;
|
|
6906
|
+
} | null> | null;
|
|
6907
|
+
output: Array<{
|
|
6908
|
+
valueString: string | null;
|
|
6909
|
+
type: {
|
|
6910
|
+
text: string | null;
|
|
6911
|
+
coding: Array<{
|
|
6912
|
+
system: any | null;
|
|
6913
|
+
code: any | null;
|
|
6914
|
+
display: string | null;
|
|
6915
|
+
} | null> | null;
|
|
6916
|
+
} | null;
|
|
6917
|
+
valueCodeableConcept: {
|
|
6918
|
+
text: string | null;
|
|
6919
|
+
coding: Array<{
|
|
6920
|
+
system: any | null;
|
|
6921
|
+
code: any | null;
|
|
6922
|
+
display: string | null;
|
|
6923
|
+
} | null> | null;
|
|
6924
|
+
} | null;
|
|
6925
|
+
} | null> | null;
|
|
6893
6926
|
extension: Array<{
|
|
6894
6927
|
id: string | null;
|
|
6895
6928
|
url: string | null;
|
|
@@ -7227,7 +7260,7 @@ export type GetAllergyIntolerancesQueryResults = {
|
|
|
7227
7260
|
display: string | null;
|
|
7228
7261
|
} | null;
|
|
7229
7262
|
recorder: {
|
|
7230
|
-
id: string;
|
|
7263
|
+
id: string | null;
|
|
7231
7264
|
name: Array<{
|
|
7232
7265
|
text: string | null;
|
|
7233
7266
|
family: string | null;
|
|
@@ -8865,7 +8898,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8865
8898
|
} | null> | null;
|
|
8866
8899
|
member: {
|
|
8867
8900
|
__typename: 'Organization';
|
|
8868
|
-
id: string;
|
|
8901
|
+
id: string | null;
|
|
8869
8902
|
alias: string | null;
|
|
8870
8903
|
organizationName: string | null;
|
|
8871
8904
|
meta: {
|
|
@@ -8885,7 +8918,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8885
8918
|
} | null;
|
|
8886
8919
|
} | {
|
|
8887
8920
|
__typename: 'Practitioner';
|
|
8888
|
-
id: string;
|
|
8921
|
+
id: string | null;
|
|
8889
8922
|
name: Array<{
|
|
8890
8923
|
text: string | null;
|
|
8891
8924
|
family: string | null;
|
|
@@ -8909,7 +8942,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8909
8942
|
} | {
|
|
8910
8943
|
__typename: 'PractitionerRole';
|
|
8911
8944
|
resourceType: string | null;
|
|
8912
|
-
id: string;
|
|
8945
|
+
id: string | null;
|
|
8913
8946
|
active: boolean | null;
|
|
8914
8947
|
identifier: Array<{
|
|
8915
8948
|
id: string | null;
|
|
@@ -8925,7 +8958,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8925
8958
|
} | null;
|
|
8926
8959
|
} | null> | null;
|
|
8927
8960
|
practitioner: {
|
|
8928
|
-
id: string;
|
|
8961
|
+
id: string | null;
|
|
8929
8962
|
name: Array<{
|
|
8930
8963
|
text: string | null;
|
|
8931
8964
|
family: string | null;
|
|
@@ -9135,7 +9168,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
9135
9168
|
} | {
|
|
9136
9169
|
__typename: 'RelatedPerson';
|
|
9137
9170
|
resourceType: string | null;
|
|
9138
|
-
id: string;
|
|
9171
|
+
id: string | null;
|
|
9139
9172
|
active: boolean | null;
|
|
9140
9173
|
name: Array<{
|
|
9141
9174
|
text: string | null;
|
|
@@ -16241,7 +16274,7 @@ export type GetMedicationRequestQueryResults = {
|
|
|
16241
16274
|
} | null> | null;
|
|
16242
16275
|
} | null;
|
|
16243
16276
|
requester: {
|
|
16244
|
-
id: string;
|
|
16277
|
+
id: string | null;
|
|
16245
16278
|
name: Array<{
|
|
16246
16279
|
text: string | null;
|
|
16247
16280
|
family: string | null;
|
|
@@ -16264,7 +16297,7 @@ export type GetMedicationRequestQueryResults = {
|
|
|
16264
16297
|
} | null> | null;
|
|
16265
16298
|
} | null;
|
|
16266
16299
|
recorder: {
|
|
16267
|
-
id: string;
|
|
16300
|
+
id: string | null;
|
|
16268
16301
|
name: Array<{
|
|
16269
16302
|
text: string | null;
|
|
16270
16303
|
family: string | null;
|
|
@@ -18512,9 +18545,12 @@ export type GetQuestionnaireResponsesQueryVariables = Types.Exact<{
|
|
|
18512
18545
|
questionnaire: Types.InputMaybe<Types.SearchReference>;
|
|
18513
18546
|
status: Types.InputMaybe<Types.SearchToken>;
|
|
18514
18547
|
patient: Types.InputMaybe<Types.SearchReference>;
|
|
18548
|
+
tag: Types.InputMaybe<Types.SearchToken>;
|
|
18549
|
+
total: Types.InputMaybe<Types.TotalType>;
|
|
18515
18550
|
}>;
|
|
18516
18551
|
export type GetQuestionnaireResponsesQueryResults = {
|
|
18517
18552
|
questionnaireResponses: {
|
|
18553
|
+
total: number | null;
|
|
18518
18554
|
entry: Array<{
|
|
18519
18555
|
resource: {
|
|
18520
18556
|
resourceType: string | null;
|
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -463,6 +463,11 @@ 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
|
+
};
|
|
466
471
|
export type BootstrapConfiguration = {
|
|
467
472
|
__typename?: 'BootstrapConfiguration';
|
|
468
473
|
apertureProxyPageUrl: Scalars['String']['output'];
|
|
@@ -1148,12 +1153,75 @@ export type ContactPointInput = {
|
|
|
1148
1153
|
/** Can define enum */
|
|
1149
1154
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
1150
1155
|
};
|
|
1156
|
+
export type Coverage = {
|
|
1157
|
+
__typename?: 'Coverage';
|
|
1158
|
+
beneficiary?: Maybe<CoverageBeneficiaryReference>;
|
|
1159
|
+
class?: Maybe<Array<Maybe<CoverageClass>>>;
|
|
1160
|
+
id: Scalars['ID']['output'];
|
|
1161
|
+
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
1162
|
+
meta?: Maybe<Meta>;
|
|
1163
|
+
payor?: Maybe<Array<Maybe<CoveragePayorReference>>>;
|
|
1164
|
+
period?: Maybe<Period>;
|
|
1165
|
+
policyHolder?: Maybe<CoveragePolicyHolderReference>;
|
|
1166
|
+
relationship?: Maybe<CodeableConcept>;
|
|
1167
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1168
|
+
status?: Maybe<Scalars['Code']['output']>;
|
|
1169
|
+
subscriberId?: Maybe<Scalars['String']['output']>;
|
|
1170
|
+
type?: Maybe<CodeableConcept>;
|
|
1171
|
+
};
|
|
1172
|
+
export type CoverageBeneficiaryReference = {
|
|
1173
|
+
__typename?: 'CoverageBeneficiaryReference';
|
|
1174
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1175
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1176
|
+
identifier?: Maybe<Identifier>;
|
|
1177
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1178
|
+
resource?: Maybe<Patient>;
|
|
1179
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1180
|
+
};
|
|
1181
|
+
export type CoverageBundle = {
|
|
1182
|
+
__typename?: 'CoverageBundle';
|
|
1183
|
+
entry?: Maybe<Array<Maybe<CoverageBundleEntry>>>;
|
|
1184
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1185
|
+
meta?: Maybe<Meta>;
|
|
1186
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
1187
|
+
type?: Maybe<Scalars['Code']['output']>;
|
|
1188
|
+
};
|
|
1189
|
+
export type CoverageBundleEntry = {
|
|
1190
|
+
__typename?: 'CoverageBundleEntry';
|
|
1191
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1192
|
+
resource?: Maybe<Coverage>;
|
|
1193
|
+
};
|
|
1194
|
+
export type CoverageClass = {
|
|
1195
|
+
__typename?: 'CoverageClass';
|
|
1196
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
1197
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1198
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1199
|
+
type?: Maybe<CodeableConcept>;
|
|
1200
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
1201
|
+
};
|
|
1202
|
+
export type CoveragePayorReference = {
|
|
1203
|
+
__typename?: 'CoveragePayorReference';
|
|
1204
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1205
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1206
|
+
identifier?: Maybe<Identifier>;
|
|
1207
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1208
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1209
|
+
};
|
|
1210
|
+
export type CoveragePolicyHolderReference = {
|
|
1211
|
+
__typename?: 'CoveragePolicyHolderReference';
|
|
1212
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1213
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1214
|
+
identifier?: Maybe<Identifier>;
|
|
1215
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1216
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1217
|
+
};
|
|
1151
1218
|
/** Supported ISO 4217 CurrencyCodes */
|
|
1152
1219
|
export declare enum CurrencyCode {
|
|
1153
1220
|
Usd = "USD"
|
|
1154
1221
|
}
|
|
1155
1222
|
/** Defines the connection statuses */
|
|
1156
1223
|
export declare enum DataConnectionStatus {
|
|
1224
|
+
AccessEnded = "ACCESS_ENDED",
|
|
1157
1225
|
Connected = "CONNECTED",
|
|
1158
1226
|
Deleted = "DELETED",
|
|
1159
1227
|
Disconnected = "DISCONNECTED",
|
|
@@ -1205,6 +1273,35 @@ export type Detail = {
|
|
|
1205
1273
|
status?: Maybe<Coding>;
|
|
1206
1274
|
statusCoding?: Maybe<Coding>;
|
|
1207
1275
|
};
|
|
1276
|
+
export type Device = {
|
|
1277
|
+
__typename?: 'Device';
|
|
1278
|
+
distinctIdentifier?: Maybe<Scalars['String']['output']>;
|
|
1279
|
+
expirationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1280
|
+
id: Scalars['ID']['output'];
|
|
1281
|
+
lotNumber?: Maybe<Scalars['String']['output']>;
|
|
1282
|
+
manufactureDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1283
|
+
meta?: Maybe<Meta>;
|
|
1284
|
+
patient?: Maybe<DevicePatientReference>;
|
|
1285
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1286
|
+
serialNumber?: Maybe<Scalars['String']['output']>;
|
|
1287
|
+
type?: Maybe<CodeableConcept>;
|
|
1288
|
+
udiCarrier?: Maybe<Array<Maybe<DeviceUdiCarrier>>>;
|
|
1289
|
+
};
|
|
1290
|
+
export type DeviceBundle = {
|
|
1291
|
+
__typename?: 'DeviceBundle';
|
|
1292
|
+
entry?: Maybe<Array<Maybe<DeviceBundleEntry>>>;
|
|
1293
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
1294
|
+
};
|
|
1295
|
+
export type DeviceBundleEntry = {
|
|
1296
|
+
__typename?: 'DeviceBundleEntry';
|
|
1297
|
+
resource?: Maybe<Device>;
|
|
1298
|
+
};
|
|
1299
|
+
export type DevicePatientReference = {
|
|
1300
|
+
__typename?: 'DevicePatientReference';
|
|
1301
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1302
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1303
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1304
|
+
};
|
|
1208
1305
|
export type DeviceRequest = {
|
|
1209
1306
|
__typename?: 'DeviceRequest';
|
|
1210
1307
|
/**
|
|
@@ -1214,6 +1311,15 @@ export type DeviceRequest = {
|
|
|
1214
1311
|
id: Scalars['ID']['output'];
|
|
1215
1312
|
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1216
1313
|
};
|
|
1314
|
+
export type DeviceUdiCarrier = {
|
|
1315
|
+
__typename?: 'DeviceUdiCarrier';
|
|
1316
|
+
carrierAIDC?: Maybe<Scalars['Base64Binary']['output']>;
|
|
1317
|
+
carrierHRF?: Maybe<Scalars['String']['output']>;
|
|
1318
|
+
deviceIdentifier?: Maybe<Scalars['String']['output']>;
|
|
1319
|
+
entryType?: Maybe<Scalars['Code']['output']>;
|
|
1320
|
+
issuer?: Maybe<Scalars['URI']['output']>;
|
|
1321
|
+
jurisdiction?: Maybe<Scalars['URI']['output']>;
|
|
1322
|
+
};
|
|
1217
1323
|
export type DiagnosticReport = Resource & {
|
|
1218
1324
|
__typename?: 'DiagnosticReport';
|
|
1219
1325
|
basedOn?: Maybe<Array<Maybe<DiagnosticReportBasedOnReference>>>;
|
|
@@ -1604,6 +1710,164 @@ export declare enum EventType {
|
|
|
1604
1710
|
CustomEvent = "CUSTOM_EVENT",
|
|
1605
1711
|
MobilePushOpen = "MOBILE_PUSH_OPEN"
|
|
1606
1712
|
}
|
|
1713
|
+
export type ExplanationOfBenefit = {
|
|
1714
|
+
__typename?: 'ExplanationOfBenefit';
|
|
1715
|
+
adjudication?: Maybe<Array<Maybe<ExplanationOfBenefitAdjudication>>>;
|
|
1716
|
+
benefitPeriod?: Maybe<Period>;
|
|
1717
|
+
billablePeriod?: Maybe<Period>;
|
|
1718
|
+
careTeam?: Maybe<Array<Maybe<ExplanationOfBenefitCareTeam>>>;
|
|
1719
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
1720
|
+
diagnosis?: Maybe<Array<Maybe<ExplanationOfBenefitDiagnosis>>>;
|
|
1721
|
+
disposition?: Maybe<Scalars['String']['output']>;
|
|
1722
|
+
id: Scalars['ID']['output'];
|
|
1723
|
+
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
1724
|
+
insurance?: Maybe<Array<Maybe<ExplanationOfBenefitInsurance>>>;
|
|
1725
|
+
insurer?: Maybe<ExplanationOfBenefitInsurerReference>;
|
|
1726
|
+
item?: Maybe<Array<Maybe<ExplanationOfBenefitItem>>>;
|
|
1727
|
+
meta?: Maybe<Meta>;
|
|
1728
|
+
outcome?: Maybe<Scalars['Code']['output']>;
|
|
1729
|
+
patient?: Maybe<ExplanationOfBenefitPatientReference>;
|
|
1730
|
+
payee?: Maybe<ExplanationOfBenefitPayee>;
|
|
1731
|
+
payment?: Maybe<ExplanationOfBenefitPayment>;
|
|
1732
|
+
provider?: Maybe<ExplanationOfBenefitProviderReference>;
|
|
1733
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1734
|
+
status?: Maybe<Scalars['Code']['output']>;
|
|
1735
|
+
subType?: Maybe<CodeableConcept>;
|
|
1736
|
+
supportingInfo?: Maybe<Array<Maybe<ExplanationOfBenefitSupportingInfo>>>;
|
|
1737
|
+
total?: Maybe<Array<Maybe<ExplanationOfBenefitTotal>>>;
|
|
1738
|
+
type?: Maybe<CodeableConcept>;
|
|
1739
|
+
use?: Maybe<Scalars['Code']['output']>;
|
|
1740
|
+
};
|
|
1741
|
+
export type ExplanationOfBenefitAdjudication = {
|
|
1742
|
+
__typename?: 'ExplanationOfBenefitAdjudication';
|
|
1743
|
+
amount?: Maybe<Quantity>;
|
|
1744
|
+
category?: Maybe<CodeableConcept>;
|
|
1745
|
+
reason?: Maybe<CodeableConcept>;
|
|
1746
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
1747
|
+
};
|
|
1748
|
+
export type ExplanationOfBenefitBundle = {
|
|
1749
|
+
__typename?: 'ExplanationOfBenefitBundle';
|
|
1750
|
+
entry?: Maybe<Array<Maybe<ExplanationOfBenefitBundleEntry>>>;
|
|
1751
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1752
|
+
meta?: Maybe<Meta>;
|
|
1753
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
1754
|
+
type?: Maybe<Scalars['Code']['output']>;
|
|
1755
|
+
};
|
|
1756
|
+
export type ExplanationOfBenefitBundleEntry = {
|
|
1757
|
+
__typename?: 'ExplanationOfBenefitBundleEntry';
|
|
1758
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1759
|
+
resource?: Maybe<ExplanationOfBenefit>;
|
|
1760
|
+
};
|
|
1761
|
+
export type ExplanationOfBenefitCareTeam = {
|
|
1762
|
+
__typename?: 'ExplanationOfBenefitCareTeam';
|
|
1763
|
+
provider?: Maybe<ExplanationOfBenefitCareTeamProviderReference>;
|
|
1764
|
+
role?: Maybe<CodeableConcept>;
|
|
1765
|
+
sequence?: Maybe<Scalars['Int']['output']>;
|
|
1766
|
+
};
|
|
1767
|
+
export type ExplanationOfBenefitCareTeamProviderReference = {
|
|
1768
|
+
__typename?: 'ExplanationOfBenefitCareTeamProviderReference';
|
|
1769
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1770
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1771
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1772
|
+
};
|
|
1773
|
+
export type ExplanationOfBenefitCoverageReference = {
|
|
1774
|
+
__typename?: 'ExplanationOfBenefitCoverageReference';
|
|
1775
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1776
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1777
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1778
|
+
};
|
|
1779
|
+
export type ExplanationOfBenefitDiagnosis = {
|
|
1780
|
+
__typename?: 'ExplanationOfBenefitDiagnosis';
|
|
1781
|
+
diagnosisCodeableConcept?: Maybe<CodeableConcept>;
|
|
1782
|
+
diagnosisReference?: Maybe<ExplanationOfBenefitDiagnosisDiagnosisReference>;
|
|
1783
|
+
onAdmission?: Maybe<CodeableConcept>;
|
|
1784
|
+
packageCode?: Maybe<CodeableConcept>;
|
|
1785
|
+
sequence?: Maybe<Scalars['Int']['output']>;
|
|
1786
|
+
type?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
1787
|
+
};
|
|
1788
|
+
export type ExplanationOfBenefitDiagnosisDiagnosisReference = {
|
|
1789
|
+
__typename?: 'ExplanationOfBenefitDiagnosisDiagnosisReference';
|
|
1790
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1791
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1792
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1793
|
+
};
|
|
1794
|
+
export type ExplanationOfBenefitInsurance = {
|
|
1795
|
+
__typename?: 'ExplanationOfBenefitInsurance';
|
|
1796
|
+
coverage?: Maybe<ExplanationOfBenefitCoverageReference>;
|
|
1797
|
+
focal?: Maybe<Scalars['Boolean']['output']>;
|
|
1798
|
+
};
|
|
1799
|
+
export type ExplanationOfBenefitInsurerReference = {
|
|
1800
|
+
__typename?: 'ExplanationOfBenefitInsurerReference';
|
|
1801
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1802
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1803
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1804
|
+
};
|
|
1805
|
+
export type ExplanationOfBenefitItem = {
|
|
1806
|
+
__typename?: 'ExplanationOfBenefitItem';
|
|
1807
|
+
adjudication?: Maybe<Array<Maybe<ExplanationOfBenefitAdjudication>>>;
|
|
1808
|
+
noteNumber?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
1809
|
+
productOrService?: Maybe<CodeableConcept>;
|
|
1810
|
+
sequence?: Maybe<Scalars['Int']['output']>;
|
|
1811
|
+
};
|
|
1812
|
+
export type ExplanationOfBenefitPatientReference = {
|
|
1813
|
+
__typename?: 'ExplanationOfBenefitPatientReference';
|
|
1814
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1815
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1816
|
+
identifier?: Maybe<Identifier>;
|
|
1817
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1818
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1819
|
+
};
|
|
1820
|
+
export type ExplanationOfBenefitPayee = {
|
|
1821
|
+
__typename?: 'ExplanationOfBenefitPayee';
|
|
1822
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1823
|
+
party?: Maybe<ExplanationOfBenefitPayeePartyReference>;
|
|
1824
|
+
type?: Maybe<CodeableConcept>;
|
|
1825
|
+
};
|
|
1826
|
+
export type ExplanationOfBenefitPayeePartyReference = {
|
|
1827
|
+
__typename?: 'ExplanationOfBenefitPayeePartyReference';
|
|
1828
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1829
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1830
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1831
|
+
};
|
|
1832
|
+
export type ExplanationOfBenefitPayment = {
|
|
1833
|
+
__typename?: 'ExplanationOfBenefitPayment';
|
|
1834
|
+
adjustment?: Maybe<Quantity>;
|
|
1835
|
+
adjustmentReason?: Maybe<CodeableConcept>;
|
|
1836
|
+
amount?: Maybe<Quantity>;
|
|
1837
|
+
date?: Maybe<Scalars['Date']['output']>;
|
|
1838
|
+
type?: Maybe<CodeableConcept>;
|
|
1839
|
+
};
|
|
1840
|
+
export type ExplanationOfBenefitProviderReference = {
|
|
1841
|
+
__typename?: 'ExplanationOfBenefitProviderReference';
|
|
1842
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1843
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1844
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1845
|
+
};
|
|
1846
|
+
export type ExplanationOfBenefitSupportingInfo = {
|
|
1847
|
+
__typename?: 'ExplanationOfBenefitSupportingInfo';
|
|
1848
|
+
category?: Maybe<CodeableConcept>;
|
|
1849
|
+
code?: Maybe<CodeableConcept>;
|
|
1850
|
+
reason?: Maybe<Coding>;
|
|
1851
|
+
sequence?: Maybe<Scalars['Int']['output']>;
|
|
1852
|
+
timingDate?: Maybe<Scalars['Date']['output']>;
|
|
1853
|
+
timingPeriod?: Maybe<Period>;
|
|
1854
|
+
valueAttachment?: Maybe<Attachment>;
|
|
1855
|
+
valueBoolean?: Maybe<Scalars['Boolean']['output']>;
|
|
1856
|
+
valueQuantity?: Maybe<Quantity>;
|
|
1857
|
+
valueReference?: Maybe<ExplanationOfBenefitSupportingInfoValueReferenceReference>;
|
|
1858
|
+
valueString?: Maybe<Scalars['String']['output']>;
|
|
1859
|
+
};
|
|
1860
|
+
export type ExplanationOfBenefitSupportingInfoValueReferenceReference = {
|
|
1861
|
+
__typename?: 'ExplanationOfBenefitSupportingInfoValueReferenceReference';
|
|
1862
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1863
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1864
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1865
|
+
};
|
|
1866
|
+
export type ExplanationOfBenefitTotal = {
|
|
1867
|
+
__typename?: 'ExplanationOfBenefitTotal';
|
|
1868
|
+
amount?: Maybe<Quantity>;
|
|
1869
|
+
category?: Maybe<CodeableConcept>;
|
|
1870
|
+
};
|
|
1607
1871
|
/**
|
|
1608
1872
|
* Expression
|
|
1609
1873
|
* A expression that is evaluated in a specified context and returns a value. The
|
|
@@ -1849,6 +2113,45 @@ export type GetFhirSearchDateValue = {
|
|
|
1849
2113
|
/** the value for the parameter in the resource is greater than the provided value */
|
|
1850
2114
|
greaterThan?: InputMaybe<Scalars['Date']['input']>;
|
|
1851
2115
|
};
|
|
2116
|
+
export type Goal = {
|
|
2117
|
+
__typename?: 'Goal';
|
|
2118
|
+
description?: Maybe<CodeableConcept>;
|
|
2119
|
+
id: Scalars['ID']['output'];
|
|
2120
|
+
lifecycleStatus?: Maybe<Scalars['Code']['output']>;
|
|
2121
|
+
meta?: Maybe<Meta>;
|
|
2122
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
2123
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
2124
|
+
subject?: Maybe<GoalSubjectReference>;
|
|
2125
|
+
target?: Maybe<Array<Maybe<GoalTarget>>>;
|
|
2126
|
+
};
|
|
2127
|
+
export type GoalBundle = {
|
|
2128
|
+
__typename?: 'GoalBundle';
|
|
2129
|
+
entry?: Maybe<Array<Maybe<GoalBundleEntry>>>;
|
|
2130
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
2131
|
+
};
|
|
2132
|
+
export type GoalBundleEntry = {
|
|
2133
|
+
__typename?: 'GoalBundleEntry';
|
|
2134
|
+
resource?: Maybe<Goal>;
|
|
2135
|
+
};
|
|
2136
|
+
export type GoalSubjectReference = {
|
|
2137
|
+
__typename?: 'GoalSubjectReference';
|
|
2138
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
2139
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
2140
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
2141
|
+
};
|
|
2142
|
+
export type GoalTarget = {
|
|
2143
|
+
__typename?: 'GoalTarget';
|
|
2144
|
+
detailBoolean?: Maybe<Scalars['Boolean']['output']>;
|
|
2145
|
+
detailCodeableConcept?: Maybe<CodeableConcept>;
|
|
2146
|
+
detailInteger?: Maybe<Scalars['Int']['output']>;
|
|
2147
|
+
detailQuantity?: Maybe<Quantity>;
|
|
2148
|
+
detailRange?: Maybe<Range>;
|
|
2149
|
+
detailRatio?: Maybe<Ratio>;
|
|
2150
|
+
detailString?: Maybe<Scalars['String']['output']>;
|
|
2151
|
+
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
2152
|
+
dueDuration?: Maybe<Quantity>;
|
|
2153
|
+
measure?: Maybe<CodeableConcept>;
|
|
2154
|
+
};
|
|
1852
2155
|
export type GoogleGeo = {
|
|
1853
2156
|
__typename?: 'GoogleGeo';
|
|
1854
2157
|
key: Scalars['String']['output'];
|
|
@@ -1874,6 +2177,7 @@ export type GuestAccessToken = {
|
|
|
1874
2177
|
/** Unified search result type */
|
|
1875
2178
|
export type HealthResourceSearchResult = {
|
|
1876
2179
|
__typename?: 'HealthResourceSearchResult';
|
|
2180
|
+
bookable?: Maybe<Bookable>;
|
|
1877
2181
|
content?: Maybe<Scalars['String']['output']>;
|
|
1878
2182
|
endpoint?: Maybe<Array<Maybe<EndpointType>>>;
|
|
1879
2183
|
gender?: Maybe<GenderEnum>;
|
|
@@ -2978,7 +3282,6 @@ export type Mutation = {
|
|
|
2978
3282
|
findOrCreatePatient?: Maybe<Patient>;
|
|
2979
3283
|
interacted?: Maybe<Scalars['Boolean']['output']>;
|
|
2980
3284
|
itemInteracted?: Maybe<Scalars['Boolean']['output']>;
|
|
2981
|
-
makeOnboardingCompositionFinal?: Maybe<OnboardingComposition>;
|
|
2982
3285
|
/**
|
|
2983
3286
|
* Utilizes the Adaptive Questionnaire workflow to determine the next question
|
|
2984
3287
|
* and contains the questionnaire within the QuestionnaireResponse
|
|
@@ -3354,26 +3657,6 @@ export type ObservationResource = {
|
|
|
3354
3657
|
/** Various types of values that an Observation can have, only one of these would typically be populated. */
|
|
3355
3658
|
value?: Maybe<Value>;
|
|
3356
3659
|
};
|
|
3357
|
-
export type OnboardingComposition = {
|
|
3358
|
-
__typename?: 'OnboardingComposition';
|
|
3359
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
3360
|
-
patientId?: Maybe<Scalars['String']['output']>;
|
|
3361
|
-
sections?: Maybe<Array<Maybe<OnboardingSection>>>;
|
|
3362
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
3363
|
-
};
|
|
3364
|
-
export declare enum OnboardingCompositionStatus {
|
|
3365
|
-
Amended = "amended",
|
|
3366
|
-
EnteredInError = "entered_in_error",
|
|
3367
|
-
Final = "final",
|
|
3368
|
-
Preliminary = "preliminary"
|
|
3369
|
-
}
|
|
3370
|
-
export type OnboardingSection = {
|
|
3371
|
-
__typename?: 'OnboardingSection';
|
|
3372
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
3373
|
-
isStepCompleted?: Maybe<Scalars['Boolean']['output']>;
|
|
3374
|
-
questionnaireResponseId?: Maybe<Scalars['String']['output']>;
|
|
3375
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
3376
|
-
};
|
|
3377
3660
|
export declare enum Operation {
|
|
3378
3661
|
CancelDelete = "CANCEL_DELETE",
|
|
3379
3662
|
ConfirmDelete = "CONFIRM_DELETE",
|
|
@@ -3499,7 +3782,7 @@ export type Organization = {
|
|
|
3499
3782
|
address?: Maybe<Array<Maybe<Address>>>;
|
|
3500
3783
|
alias?: Maybe<Scalars['String']['output']>;
|
|
3501
3784
|
endpoint?: Maybe<Array<Maybe<Endpoint>>>;
|
|
3502
|
-
id
|
|
3785
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3503
3786
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
3504
3787
|
meta?: Maybe<Meta>;
|
|
3505
3788
|
/** The name of the organization. */
|
|
@@ -3894,7 +4177,7 @@ export type Position = {
|
|
|
3894
4177
|
/** Type representing a practitioner with a human name */
|
|
3895
4178
|
export type Practitioner = {
|
|
3896
4179
|
__typename?: 'Practitioner';
|
|
3897
|
-
id
|
|
4180
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3898
4181
|
/** The identifier of the practitioner. */
|
|
3899
4182
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
3900
4183
|
/** The human name of the practitioner */
|
|
@@ -3916,7 +4199,7 @@ export type PractitionerRole = {
|
|
|
3916
4199
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
3917
4200
|
code?: Maybe<Array<CodeableConcept>>;
|
|
3918
4201
|
endpoint?: Maybe<Array<Maybe<Endpoint>>>;
|
|
3919
|
-
id
|
|
4202
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3920
4203
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
3921
4204
|
location?: Maybe<Array<Maybe<Location>>>;
|
|
3922
4205
|
organization?: Maybe<Organization>;
|
|
@@ -4095,6 +4378,49 @@ export type ProtocolApplied = {
|
|
|
4095
4378
|
/** A string representing the dose number. */
|
|
4096
4379
|
doseNumberString?: Maybe<Scalars['String']['output']>;
|
|
4097
4380
|
};
|
|
4381
|
+
export type Provenance = {
|
|
4382
|
+
__typename?: 'Provenance';
|
|
4383
|
+
agent?: Maybe<Array<Maybe<ProvenanceAgent>>>;
|
|
4384
|
+
id: Scalars['ID']['output'];
|
|
4385
|
+
meta?: Maybe<Meta>;
|
|
4386
|
+
recorded?: Maybe<Scalars['Instant']['output']>;
|
|
4387
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
4388
|
+
target?: Maybe<Array<Maybe<ProvenanceTargetReference>>>;
|
|
4389
|
+
};
|
|
4390
|
+
export type ProvenanceAgent = {
|
|
4391
|
+
__typename?: 'ProvenanceAgent';
|
|
4392
|
+
onBehalfOf?: Maybe<ProvenanceAgentOnBehalfOfReference>;
|
|
4393
|
+
role?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
4394
|
+
type?: Maybe<CodeableConcept>;
|
|
4395
|
+
who?: Maybe<ProvenanceAgentWhoReference>;
|
|
4396
|
+
};
|
|
4397
|
+
export type ProvenanceAgentOnBehalfOfReference = {
|
|
4398
|
+
__typename?: 'ProvenanceAgentOnBehalfOfReference';
|
|
4399
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
4400
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
4401
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
4402
|
+
};
|
|
4403
|
+
export type ProvenanceAgentWhoReference = {
|
|
4404
|
+
__typename?: 'ProvenanceAgentWhoReference';
|
|
4405
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
4406
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
4407
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
4408
|
+
};
|
|
4409
|
+
export type ProvenanceBundle = {
|
|
4410
|
+
__typename?: 'ProvenanceBundle';
|
|
4411
|
+
entry?: Maybe<Array<Maybe<ProvenanceBundleEntry>>>;
|
|
4412
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
4413
|
+
};
|
|
4414
|
+
export type ProvenanceBundleEntry = {
|
|
4415
|
+
__typename?: 'ProvenanceBundleEntry';
|
|
4416
|
+
resource?: Maybe<Provenance>;
|
|
4417
|
+
};
|
|
4418
|
+
export type ProvenanceTargetReference = {
|
|
4419
|
+
__typename?: 'ProvenanceTargetReference';
|
|
4420
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
4421
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
4422
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
4423
|
+
};
|
|
4098
4424
|
export type ProviderAddress = {
|
|
4099
4425
|
__typename?: 'ProviderAddress';
|
|
4100
4426
|
city?: Maybe<Scalars['String']['output']>;
|
|
@@ -4165,6 +4491,7 @@ export type ProviderLocation = {
|
|
|
4165
4491
|
*/
|
|
4166
4492
|
name?: Maybe<Scalars['String']['output']>;
|
|
4167
4493
|
position?: Maybe<Position>;
|
|
4494
|
+
scheduling?: Maybe<ProviderSchedule>;
|
|
4168
4495
|
telecom?: Maybe<Array<Maybe<ProviderContactPoint>>>;
|
|
4169
4496
|
type?: Maybe<Array<Maybe<ProviderCodeableConcept>>>;
|
|
4170
4497
|
};
|
|
@@ -4222,6 +4549,11 @@ export type ProviderResults = {
|
|
|
4222
4549
|
paging_info?: Maybe<PagingInfo>;
|
|
4223
4550
|
results?: Maybe<Array<Maybe<ProviderResult>>>;
|
|
4224
4551
|
};
|
|
4552
|
+
export type ProviderSchedule = {
|
|
4553
|
+
__typename?: 'ProviderSchedule';
|
|
4554
|
+
bookable?: Maybe<Bookable>;
|
|
4555
|
+
identifier?: Maybe<Array<Maybe<ProviderIdentifier>>>;
|
|
4556
|
+
};
|
|
4225
4557
|
export declare enum ProviderType {
|
|
4226
4558
|
Practice = "practice",
|
|
4227
4559
|
Practitioner = "practitioner"
|
|
@@ -4289,7 +4621,10 @@ export type Query = {
|
|
|
4289
4621
|
cancelationReasons: CodeSystem;
|
|
4290
4622
|
consent?: Maybe<Array<Maybe<LegacyConsent>>>;
|
|
4291
4623
|
consentAsyncTasks?: Maybe<Array<Maybe<Job>>>;
|
|
4624
|
+
coverages?: Maybe<CoverageBundle>;
|
|
4625
|
+
devices?: Maybe<DeviceBundle>;
|
|
4292
4626
|
diagnosticReports?: Maybe<DiagnosticReportBundle>;
|
|
4627
|
+
explanationOfBenefits?: Maybe<ExplanationOfBenefitBundle>;
|
|
4293
4628
|
findPersonWithClientSlugAndId?: Maybe<PersonInfoForLogin>;
|
|
4294
4629
|
getAllergyIntoleranceGroups: AllergyIntoleranceGroupQueryResults;
|
|
4295
4630
|
/** Retrieves a list of AllergyIntolerance resources based on the provided search criteria. */
|
|
@@ -4346,13 +4681,14 @@ export type Query = {
|
|
|
4346
4681
|
getVitalSignGroups: VitalSignGroupQueryResults;
|
|
4347
4682
|
/** Retrieves a list of vital signs based on the provided request parameters. */
|
|
4348
4683
|
getVitalSigns: ObservationQueryResults;
|
|
4684
|
+
goals?: Maybe<GoalBundle>;
|
|
4349
4685
|
initSdk: SdkConfiguration;
|
|
4350
4686
|
login: LogInResponse;
|
|
4351
|
-
onboardingComposition?: Maybe<OnboardingComposition>;
|
|
4352
4687
|
patients?: Maybe<PatientBundle>;
|
|
4353
4688
|
person?: Maybe<Person>;
|
|
4354
4689
|
placeholderQuery?: Maybe<Scalars['String']['output']>;
|
|
4355
4690
|
profile?: Maybe<Profile>;
|
|
4691
|
+
provenances?: Maybe<ProvenanceBundle>;
|
|
4356
4692
|
/**
|
|
4357
4693
|
* Searches providers based on filters.
|
|
4358
4694
|
* @deprecated Use searchProviders instead
|
|
@@ -4374,6 +4710,7 @@ export type Query = {
|
|
|
4374
4710
|
searchProviders: SearchProvidersResults;
|
|
4375
4711
|
status?: Maybe<Scalars['String']['output']>;
|
|
4376
4712
|
subscription_subscription?: Maybe<Subscription_SubscriptionBundle>;
|
|
4713
|
+
temp?: Maybe<Temp>;
|
|
4377
4714
|
userProfile?: Maybe<Person>;
|
|
4378
4715
|
verificationStatus?: Maybe<VerificationResult>;
|
|
4379
4716
|
who?: Maybe<Scalars['String']['output']>;
|
|
@@ -4415,6 +4752,25 @@ export type QueryConsentAsyncTasksArgs = {
|
|
|
4415
4752
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
4416
4753
|
status: Array<InputMaybe<Scalars['String']['input']>>;
|
|
4417
4754
|
};
|
|
4755
|
+
export type QueryCoveragesArgs = {
|
|
4756
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4757
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4758
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4759
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4760
|
+
_total?: InputMaybe<TotalType>;
|
|
4761
|
+
beneficiary?: InputMaybe<SearchReference>;
|
|
4762
|
+
id?: InputMaybe<SearchString>;
|
|
4763
|
+
patient?: InputMaybe<SearchReference>;
|
|
4764
|
+
};
|
|
4765
|
+
export type QueryDevicesArgs = {
|
|
4766
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4767
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4768
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4769
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4770
|
+
_total?: InputMaybe<TotalType>;
|
|
4771
|
+
id?: InputMaybe<SearchString>;
|
|
4772
|
+
patient?: InputMaybe<SearchReference>;
|
|
4773
|
+
};
|
|
4418
4774
|
export type QueryDiagnosticReportsArgs = {
|
|
4419
4775
|
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4420
4776
|
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -4422,6 +4778,15 @@ export type QueryDiagnosticReportsArgs = {
|
|
|
4422
4778
|
_total?: InputMaybe<TotalType>;
|
|
4423
4779
|
id?: InputMaybe<SearchString>;
|
|
4424
4780
|
};
|
|
4781
|
+
export type QueryExplanationOfBenefitsArgs = {
|
|
4782
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4783
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4784
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4785
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4786
|
+
_total?: InputMaybe<TotalType>;
|
|
4787
|
+
id?: InputMaybe<SearchString>;
|
|
4788
|
+
patient?: InputMaybe<SearchReference>;
|
|
4789
|
+
};
|
|
4425
4790
|
export type QueryFindPersonWithClientSlugAndIdArgs = {
|
|
4426
4791
|
input?: InputMaybe<ClientSlugAndIdentifierInput>;
|
|
4427
4792
|
};
|
|
@@ -4534,6 +4899,15 @@ export type QueryGetVitalSignGroupsArgs = {
|
|
|
4534
4899
|
export type QueryGetVitalSignsArgs = {
|
|
4535
4900
|
request?: InputMaybe<VitalSignRequest>;
|
|
4536
4901
|
};
|
|
4902
|
+
export type QueryGoalsArgs = {
|
|
4903
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4904
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4905
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4906
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4907
|
+
_total?: InputMaybe<TotalType>;
|
|
4908
|
+
id?: InputMaybe<SearchString>;
|
|
4909
|
+
subject?: InputMaybe<SearchReference>;
|
|
4910
|
+
};
|
|
4537
4911
|
export type QueryInitSdkArgs = {
|
|
4538
4912
|
clientKey: Scalars['String']['input'];
|
|
4539
4913
|
organizationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4556,6 +4930,15 @@ export type QueryPersonArgs = {
|
|
|
4556
4930
|
export type QueryProfileArgs = {
|
|
4557
4931
|
id: Scalars['ID']['input'];
|
|
4558
4932
|
};
|
|
4933
|
+
export type QueryProvenancesArgs = {
|
|
4934
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4935
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
4936
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4937
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4938
|
+
_total?: InputMaybe<TotalType>;
|
|
4939
|
+
id?: InputMaybe<SearchString>;
|
|
4940
|
+
patient?: InputMaybe<SearchReference>;
|
|
4941
|
+
};
|
|
4559
4942
|
export type QueryProvidersArgs = {
|
|
4560
4943
|
client?: InputMaybe<Array<InputMaybe<Client>>>;
|
|
4561
4944
|
filter_values?: InputMaybe<Array<InputMaybe<FilterField>>>;
|
|
@@ -4589,6 +4972,7 @@ export type QueryQuestionnaireResponsesArgs = {
|
|
|
4589
4972
|
_lastUpdated?: InputMaybe<SearchDate>;
|
|
4590
4973
|
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4591
4974
|
_tag?: InputMaybe<SearchToken>;
|
|
4975
|
+
_total?: InputMaybe<TotalType>;
|
|
4592
4976
|
id?: InputMaybe<SearchString>;
|
|
4593
4977
|
patient?: InputMaybe<SearchReference>;
|
|
4594
4978
|
questionnaire?: InputMaybe<SearchReference>;
|
|
@@ -4624,6 +5008,9 @@ export type QuerySubscription_SubscriptionArgs = {
|
|
|
4624
5008
|
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4625
5009
|
_total?: InputMaybe<TotalType>;
|
|
4626
5010
|
};
|
|
5011
|
+
export type QueryTempArgs = {
|
|
5012
|
+
id: Scalars['ID']['input'];
|
|
5013
|
+
};
|
|
4627
5014
|
export type Questionnaire = Resource & {
|
|
4628
5015
|
__typename?: 'Questionnaire';
|
|
4629
5016
|
contained?: Maybe<Array<Maybe<Resource>>>;
|
|
@@ -4752,6 +5139,7 @@ export type QuestionnaireModelItem = {
|
|
|
4752
5139
|
};
|
|
4753
5140
|
export type QuestionnaireResponse = Resource & {
|
|
4754
5141
|
__typename?: 'QuestionnaireResponse';
|
|
5142
|
+
author?: Maybe<QuestionnaireResponseAuthorReference>;
|
|
4755
5143
|
authored?: Maybe<Scalars['DateTime']['output']>;
|
|
4756
5144
|
contained?: Maybe<Array<Maybe<Resource>>>;
|
|
4757
5145
|
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
@@ -4793,9 +5181,17 @@ export type QuestionnaireResponseAnswerValueReferenceReference = {
|
|
|
4793
5181
|
reference?: Maybe<Scalars['String']['output']>;
|
|
4794
5182
|
type?: Maybe<Scalars['URI']['output']>;
|
|
4795
5183
|
};
|
|
5184
|
+
export type QuestionnaireResponseAuthorReference = {
|
|
5185
|
+
__typename?: 'QuestionnaireResponseAuthorReference';
|
|
5186
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
5187
|
+
identifier?: Maybe<Identifier>;
|
|
5188
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
5189
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
5190
|
+
};
|
|
4796
5191
|
export type QuestionnaireResponseBundle = {
|
|
4797
5192
|
__typename?: 'QuestionnaireResponseBundle';
|
|
4798
5193
|
entry?: Maybe<Array<Maybe<QuestionnaireResponseBundleEntry>>>;
|
|
5194
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
4799
5195
|
};
|
|
4800
5196
|
export type QuestionnaireResponseBundleEntry = {
|
|
4801
5197
|
__typename?: 'QuestionnaireResponseBundleEntry';
|
|
@@ -4968,7 +5364,7 @@ export type RelatedPerson = {
|
|
|
4968
5364
|
__typename?: 'RelatedPerson';
|
|
4969
5365
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
4970
5366
|
address?: Maybe<Array<Maybe<Address>>>;
|
|
4971
|
-
id
|
|
5367
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
4972
5368
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
4973
5369
|
meta?: Maybe<Meta>;
|
|
4974
5370
|
name?: Maybe<Array<Maybe<HumanName>>>;
|
|
@@ -5617,6 +6013,10 @@ export type TelemetryConfig = {
|
|
|
5617
6013
|
collectorUrl: Scalars['String']['output'];
|
|
5618
6014
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5619
6015
|
};
|
|
6016
|
+
export type Temp = {
|
|
6017
|
+
__typename?: 'Temp';
|
|
6018
|
+
id: Scalars['ID']['output'];
|
|
6019
|
+
};
|
|
5620
6020
|
export type Timing = {
|
|
5621
6021
|
__typename?: 'Timing';
|
|
5622
6022
|
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";
|
|
@@ -252,13 +253,6 @@ export var ObservationCategory;
|
|
|
252
253
|
ObservationCategory["Therapy"] = "THERAPY";
|
|
253
254
|
ObservationCategory["VitalSigns"] = "VITAL_SIGNS";
|
|
254
255
|
})(ObservationCategory || (ObservationCategory = {}));
|
|
255
|
-
export var OnboardingCompositionStatus;
|
|
256
|
-
(function (OnboardingCompositionStatus) {
|
|
257
|
-
OnboardingCompositionStatus["Amended"] = "amended";
|
|
258
|
-
OnboardingCompositionStatus["EnteredInError"] = "entered_in_error";
|
|
259
|
-
OnboardingCompositionStatus["Final"] = "final";
|
|
260
|
-
OnboardingCompositionStatus["Preliminary"] = "preliminary";
|
|
261
|
-
})(OnboardingCompositionStatus || (OnboardingCompositionStatus = {}));
|
|
262
256
|
export var Operation;
|
|
263
257
|
(function (Operation) {
|
|
264
258
|
Operation["CancelDelete"] = "CANCEL_DELETE";
|