@icanbwell/bwell-sdk-ts 1.68.3 → 1.68.4
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/health-data/health-data-request.d.ts +1 -1
- package/dist/api/base/health-data/health-data-request.js +1 -1
- package/dist/api/base/health-data/health-manager.d.ts +7 -6
- package/dist/api/base/health-data/index.d.ts +2 -2
- package/dist/api/base/health-data/index.js +1 -1
- package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +1 -1
- package/dist/api/graphql-api/healthdata/graphql-health-manager.js +8 -9
- package/dist/graphql/operations/index.d.ts +8 -0
- package/dist/graphql/operations/index.js +44 -0
- package/dist/graphql/operations/types.d.ts +218 -0
- package/dist/graphql/schema.d.ts +121 -21
- package/dist/graphql/schema.js +16 -0
- package/package.json +1 -1
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
|
@@ -149,7 +149,7 @@ export declare class VitalSignGroupsRequest extends PagedRequest {
|
|
|
149
149
|
/**
|
|
150
150
|
* Request object for fetching device metric groups data (non-lab observations).
|
|
151
151
|
*/
|
|
152
|
-
export declare class
|
|
152
|
+
export declare class DeviceMetricsGroupsRequest extends PagedRequest {
|
|
153
153
|
}
|
|
154
154
|
/**
|
|
155
155
|
* Request object for fetching DiagnosticReport Lab Groups
|
|
@@ -183,7 +183,7 @@ export class VitalSignGroupsRequest extends PagedRequest {
|
|
|
183
183
|
/**
|
|
184
184
|
* Request object for fetching device metric groups data (non-lab observations).
|
|
185
185
|
*/
|
|
186
|
-
export class
|
|
186
|
+
export class DeviceMetricsGroupsRequest extends PagedRequest {
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
189
189
|
* Request object for fetching DiagnosticReport Lab Groups
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { GetAllergyIntoleranceGroupsQueryResults, GetAllergyIntolerancesQueryResults, GetBinaryQueryResults, GetCarePlanGroupsQueryResults, GetCarePlansQueryResults, GetCareTeamsQueryResults, GetConditionGroupsQueryResults, GetConditionsQueryResults, GetDiagnosticReportLabGroupsQueryResults, GetDiagnosticReportsQueryResults, GetDocumentReferencesQueryResults, GetEncounterQueryResults, GetEncountersGroupQueryResults, GetHealthSummaryQueryResults, GetImmunizationGroupsQueryResults, GetImmunizationsQueryResults, GetLabGroupsQueryResults, GetLabKnowledgeQueryResults, GetLabsQueryResults, GetMedicationGroupsQueryResults, GetMedicationKnowledgeQueryResults, GetMedicationPricingQueryResults, GetMedicationStatementsQueryResults, GetObservationsQueryResults, GetProcedureGroupsQueryResults, GetProceduresQueryResults, GetVitalSignGroupsQueryResults, UpdateMedicationStatementMutationResults } from "../../../graphql/operations/types.js";
|
|
1
|
+
import { GetAllergyIntoleranceGroupsQueryResults, GetAllergyIntolerancesQueryResults, GetBinaryQueryResults, GetCarePlanGroupsQueryResults, GetCarePlansQueryResults, GetCareTeamsQueryResults, GetConditionGroupsQueryResults, GetConditionsQueryResults, GetDeviceMetricsGroupsQueryResults, GetDiagnosticReportLabGroupsQueryResults, GetDiagnosticReportsQueryResults, GetDocumentReferencesQueryResults, GetEncounterQueryResults, GetEncountersGroupQueryResults, GetHealthSummaryQueryResults, GetImmunizationGroupsQueryResults, GetImmunizationsQueryResults, GetLabGroupsQueryResults, GetLabKnowledgeQueryResults, GetLabsQueryResults, GetMedicationGroupsQueryResults, GetMedicationKnowledgeQueryResults, GetMedicationPricingQueryResults, GetMedicationStatementsQueryResults, GetObservationsQueryResults, GetProcedureGroupsQueryResults, GetProceduresQueryResults, GetVitalSignGroupsQueryResults, UpdateMedicationStatementMutationResults } from "../../../graphql/operations/types.js";
|
|
2
2
|
import { BWellQueryResult, BWellTransactionResult } from "../../../results/index.js";
|
|
3
3
|
import { MedicationDispenseResultsType } from "../../graphql-api/healthdata/graphql-get-medication-dispense-bwell-response-factory.js";
|
|
4
4
|
import { MedicationRequestResultsType } from "../../graphql-api/healthdata/graphql-get-medication-request-bwell-response-factory.js";
|
|
5
5
|
import type { BaseManagerError } from "../errors.js";
|
|
6
|
-
import { AllergyIntoleranceGroupsRequest, AllergyIntolerancesRequest, BinaryRequest, CarePlanGroupsRequest, CarePlansRequest, CareTeamsRequest, ConditionGroupsRequest, ConditionsRequest,
|
|
6
|
+
import { AllergyIntoleranceGroupsRequest, AllergyIntolerancesRequest, BinaryRequest, CarePlanGroupsRequest, CarePlansRequest, CareTeamsRequest, ConditionGroupsRequest, ConditionsRequest, DeviceMetricsGroupsRequest, DiagnosticReportLabGroupsRequest, DiagnosticReportsRequest, DocumentReferencesRequest, EncounterGroupsRequest, EncountersRequest, HealthDataRequest, ImmunizationGroupsRequest, ImmunizationsRequest, LabGroupsRequest, LabsRequest, MedicationDispenseRequest, MedicationGroupsRequest, MedicationRequestRequest, MedicationStatementsRequest, ProcedureGroupsRequest, ProceduresRequest, VitalSignGroupsRequest, VitalSignsRequest } from "./health-data-request.js";
|
|
7
7
|
import { LabKnowledgeRequest } from "./lab-knowledge-request.js";
|
|
8
8
|
import { MedicationKnowledgeRequest } from "./medication-knowledge-request.js";
|
|
9
9
|
import { MedicationPricingRequest } from "./medication-pricing-request.js";
|
|
@@ -73,7 +73,8 @@ export interface VitalSignGroupsResults extends VitalSignGroupsResultsType {
|
|
|
73
73
|
type DeviceMetricsResultsType = GetObservationsQueryResults["getObservations"];
|
|
74
74
|
export interface DeviceMetricsResults extends DeviceMetricsResultsType {
|
|
75
75
|
}
|
|
76
|
-
|
|
76
|
+
type DeviceMetricsGroupsResultsType = GetDeviceMetricsGroupsQueryResults["getDeviceMetricsGroups"];
|
|
77
|
+
export interface DeviceMetricsGroupsResults extends DeviceMetricsGroupsResultsType {
|
|
77
78
|
}
|
|
78
79
|
type DiagnosticReportLabGroupsResultsType = GetDiagnosticReportLabGroupsQueryResults["getDiagnosticReportLabGroups"];
|
|
79
80
|
export interface DiagnosticReportLabGroupsResults extends DiagnosticReportLabGroupsResultsType {
|
|
@@ -292,11 +293,11 @@ export interface HealthManager {
|
|
|
292
293
|
/**
|
|
293
294
|
* Retrieves a list of device metric groups resources (non-lab observations).
|
|
294
295
|
*
|
|
295
|
-
* @param {
|
|
296
|
+
* @param {DeviceMetricsGroupsRequest} request An optional request class for specifying the search criteria.
|
|
296
297
|
*
|
|
297
|
-
* @returns {Promise<BWellQueryResult<
|
|
298
|
+
* @returns {Promise<BWellQueryResult<DeviceMetricsGroupsResults>>} A promise resolving to an object representing the list of device metrics groups retrieved.
|
|
298
299
|
*/
|
|
299
|
-
|
|
300
|
+
getDeviceMetricsGroups(request?: DeviceMetricsGroupsRequest): Promise<BWellQueryResult<DeviceMetricsGroupsResults>>;
|
|
300
301
|
/**
|
|
301
302
|
* Retrieves a list of medication dispense resources.
|
|
302
303
|
* See also https://build.fhir.org/medicationdispense.html
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { HealthDataRequestInput, AllergyIntolerancesRequest, AllergyIntoleranceGroupsRequest, BinaryRequest, ConditionsRequest, ConditionGroupsRequest, DiagnosticReportsRequest, DocumentReferencesRequest, LabsRequest, LabGroupsRequest, CarePlansRequest, CarePlanGroupsRequest, CareTeamsRequest, EncountersRequest, EncounterGroupsRequest, ImmunizationsRequest, ImmunizationGroupsRequest, ProceduresRequest, ProcedureGroupsRequest, VitalSignsRequest, VitalSignGroupsRequest,
|
|
1
|
+
export { HealthDataRequestInput, AllergyIntolerancesRequest, AllergyIntoleranceGroupsRequest, BinaryRequest, ConditionsRequest, ConditionGroupsRequest, DiagnosticReportsRequest, DocumentReferencesRequest, LabsRequest, LabGroupsRequest, CarePlansRequest, CarePlanGroupsRequest, CareTeamsRequest, EncountersRequest, EncounterGroupsRequest, ImmunizationsRequest, ImmunizationGroupsRequest, ProceduresRequest, ProcedureGroupsRequest, VitalSignsRequest, VitalSignGroupsRequest, DeviceMetricsGroupsRequest, MedicationDispenseRequest, MedicationRequestRequest, MedicationStatementsRequest, MedicationGroupsRequest, HealthDataRequest, DiagnosticReportLabGroupsRequest, } from "./health-data-request.js";
|
|
2
2
|
export { MedicationPricingRequest, MedicationPricingRequestInput, } from "./medication-pricing-request.js";
|
|
3
3
|
export { MedicationKnowledgeRequest, MedicationKnowledgeRequestInput, } from "./medication-knowledge-request.js";
|
|
4
4
|
export { LabKnowledgeRequest, LabKnowledgeRequestInput, } from "./lab-knowledge-request.js";
|
|
5
5
|
export { UpdateMedicationStatementRequest, UpdateMedicationStatementInput, UpdateMedicationStatementStatus, } from "./medication-statement-request.js";
|
|
6
|
-
export { HealthSummaryResults, AllergyIntolerancesResults, AllergyIntolerancesGroupsResults, BinaryResults, ConditionsResults, ConditionGroupsResults, DiagnosticReportsResults, DocumentReferencesResults, LabsResults, LabGroupsResults, CarePlansResults, CarePlanGroupsResults, CareTeamsResults, EncountersResults, EncounterGroupsResults, ImmunizationsResults, ImmunizationGroupsResults, ProceduresResults, ProcedureGroupsResults, VitalSignsResults, VitalSignGroupsResults, DeviceMetricsResults,
|
|
6
|
+
export { HealthSummaryResults, AllergyIntolerancesResults, AllergyIntolerancesGroupsResults, BinaryResults, ConditionsResults, ConditionGroupsResults, DiagnosticReportsResults, DocumentReferencesResults, LabsResults, LabGroupsResults, CarePlansResults, CarePlanGroupsResults, CareTeamsResults, EncountersResults, EncounterGroupsResults, ImmunizationsResults, ImmunizationGroupsResults, ProceduresResults, ProcedureGroupsResults, VitalSignsResults, VitalSignGroupsResults, DeviceMetricsResults, DeviceMetricsGroupsResults, MedicationDispenseResults, MedicationRequestResults, MedicationStatementsResults, MedicationKnowledgeResults, MedicationGroupsResults, LabKnowledgeResults, HealthManager, MedicationPricingResults, DiagnosticReportLabGroupsResults, UpdateMedicationStatementResult, } from "./health-manager.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AllergyIntolerancesRequest, AllergyIntoleranceGroupsRequest, BinaryRequest, ConditionsRequest, ConditionGroupsRequest, DiagnosticReportsRequest, DocumentReferencesRequest, LabsRequest, LabGroupsRequest, CarePlansRequest, CarePlanGroupsRequest, CareTeamsRequest, EncountersRequest, EncounterGroupsRequest, ImmunizationsRequest, ImmunizationGroupsRequest, ProceduresRequest, ProcedureGroupsRequest, VitalSignsRequest, VitalSignGroupsRequest,
|
|
1
|
+
export { AllergyIntolerancesRequest, AllergyIntoleranceGroupsRequest, BinaryRequest, ConditionsRequest, ConditionGroupsRequest, DiagnosticReportsRequest, DocumentReferencesRequest, LabsRequest, LabGroupsRequest, CarePlansRequest, CarePlanGroupsRequest, CareTeamsRequest, EncountersRequest, EncounterGroupsRequest, ImmunizationsRequest, ImmunizationGroupsRequest, ProceduresRequest, ProcedureGroupsRequest, VitalSignsRequest, VitalSignGroupsRequest, DeviceMetricsGroupsRequest, MedicationDispenseRequest, MedicationRequestRequest, MedicationStatementsRequest, MedicationGroupsRequest, HealthDataRequest, DiagnosticReportLabGroupsRequest, } from "./health-data-request.js";
|
|
2
2
|
export { MedicationPricingRequest, } from "./medication-pricing-request.js";
|
|
3
3
|
export { MedicationKnowledgeRequest, } from "./medication-knowledge-request.js";
|
|
4
4
|
export { LabKnowledgeRequest, } from "./lab-knowledge-request.js";
|
|
@@ -39,7 +39,7 @@ export declare class GraphQLHealthManager extends GraphQLManager implements Heal
|
|
|
39
39
|
getVitalSigns(request?: health.VitalSignsRequest): Promise<BWellQueryResult<health.VitalSignsResults, ValidationError | BaseManagerError>>;
|
|
40
40
|
getVitalSignGroups(request?: health.VitalSignGroupsRequest): Promise<BWellQueryResult<health.VitalSignGroupsResults, ValidationError | BaseManagerError>>;
|
|
41
41
|
getDeviceMetrics(request?: health.HealthDataRequest): Promise<BWellQueryResult<health.DeviceMetricsResults, ValidationError | BaseManagerError>>;
|
|
42
|
-
|
|
42
|
+
getDeviceMetricsGroups(request?: health.DeviceMetricsGroupsRequest): Promise<BWellQueryResult<health.DeviceMetricsGroupsResults, ValidationError | BaseManagerError>>;
|
|
43
43
|
getMedicationDispense(request?: health.MedicationDispenseRequest): Promise<BWellQueryResult<health.MedicationDispenseResults, ValidationError | BaseManagerError>>;
|
|
44
44
|
getMedicationRequest(request?: health.MedicationRequestRequest): Promise<BWellQueryResult<health.MedicationRequestResults, ValidationError | BaseManagerError>>;
|
|
45
45
|
getMedicationStatements(request?: health.MedicationStatementsRequest): Promise<BWellQueryResult<health.MedicationStatementsResults, ValidationError | BaseManagerError>>;
|
|
@@ -428,23 +428,22 @@ export class GraphQLHealthManager extends GraphQLManager {
|
|
|
428
428
|
return new BWellQueryResult((_a = result.data) === null || _a === void 0 ? void 0 : _a.getObservations, result.error);
|
|
429
429
|
});
|
|
430
430
|
}
|
|
431
|
-
|
|
431
|
+
getDeviceMetricsGroups(request) {
|
|
432
432
|
return __awaiter(this, void 0, void 0, function* () {
|
|
433
|
-
var _a;
|
|
433
|
+
var _a, _b;
|
|
434
434
|
const validationResult = this.validateRequest(request);
|
|
435
435
|
if (validationResult.failure()) {
|
|
436
436
|
return validationResult.toQueryResult();
|
|
437
437
|
}
|
|
438
|
-
__classPrivateFieldGet(this, _GraphQLHealthManager_logger, "f").verbose("calling
|
|
439
|
-
const
|
|
440
|
-
|
|
441
|
-
request: Object.assign(Object.assign({}, requestData), { category: ObservationCategory.Activity }),
|
|
438
|
+
__classPrivateFieldGet(this, _GraphQLHealthManager_logger, "f").verbose("calling getDeviceMetricsGroups...");
|
|
439
|
+
const result = yield this.handleQuery(__classPrivateFieldGet(this, _GraphQLHealthManager_sdk, "f").getDeviceMetricsGroups({
|
|
440
|
+
request: (_a = request === null || request === void 0 ? void 0 : request.data()) !== null && _a !== void 0 ? _a : null,
|
|
442
441
|
}));
|
|
443
|
-
__classPrivateFieldGet(this, _GraphQLHealthManager_logger, "f").verbose("
|
|
442
|
+
__classPrivateFieldGet(this, _GraphQLHealthManager_logger, "f").verbose("getDeviceMetricsGroups complete");
|
|
444
443
|
if (result.hasError()) {
|
|
445
|
-
__classPrivateFieldGet(this, _GraphQLHealthManager_logger, "f").error("
|
|
444
|
+
__classPrivateFieldGet(this, _GraphQLHealthManager_logger, "f").error("getDeviceMetricsGroups errors", result.error);
|
|
446
445
|
}
|
|
447
|
-
return new BWellQueryResult((
|
|
446
|
+
return new BWellQueryResult((_b = result.data) === null || _b === void 0 ? void 0 : _b.getDeviceMetricsGroups, result.error);
|
|
448
447
|
});
|
|
449
448
|
}
|
|
450
449
|
getMedicationDispense(request) {
|
|
@@ -115,6 +115,7 @@ export declare const GetCarePlansDocument = "\n query getCarePlans($request:
|
|
|
115
115
|
export declare const GetCareTeamsDocument = "\n query getCareTeams($request: CareTeamRequest) {\n getCareTeams(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n meta {\n ...MetaFields\n }\n identifier {\n ...IdentifierFields\n }\n category {\n ...CodeableConceptFields\n }\n participant {\n ...CareTeamParticipantFields\n }\n resourceType\n status\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CareTeamParticipantFields on CareTeamParticipant {\n role {\n ...CodeableConceptFields\n }\n member {\n __typename\n ... on Organization {\n id\n organizationName: name\n alias\n meta {\n ...MetaFields\n }\n }\n ... on Practitioner {\n ...PractitionerFields\n }\n ... on PractitionerRole {\n ...PractitionerRoleFields\n }\n ... on RelatedPerson {\n ...RelatedPersonFields\n }\n }\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PractitionerFields on Practitioner {\n id\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PractitionerRoleFields on PractitionerRole {\n resourceType\n id\n identifier {\n ...IdentifierFields\n }\n practitioner {\n ...PractitionerFields\n }\n organization {\n ...OrganizationFields\n }\n code {\n ...CodeableConceptFields\n }\n specialty {\n ...CodeableConceptFields\n }\n location {\n ...LocationFields\n }\n endpoint {\n ...EndpointFields\n }\n telecom {\n ...ContactPointFields\n }\n active\n period {\n ...PeriodFields\n }\n}\n \n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PractitionerFields on Practitioner {\n id\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment OrganizationFields on Organization {\n resourceType\n identifier {\n ...IdentifierFields\n }\n endpoint {\n ...EndpointFields\n }\n name\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n type {\n ...CodeableConceptFields\n }\n active\n}\n \n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\n}\n \n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\n }\n}\n \n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\n}\n \n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment EndpointFields on Endpoint {\n identifier {\n ...IdentifierFields\n }\n name\n status\n connectionType {\n ...CodingFields\n }\n address\n}\n \n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment RelatedPersonFields on RelatedPerson {\n resourceType\n id\n active\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n telecom {\n ...ContactPointFields\n }\n address {\n ...AddressFields\n }\n relationship {\n ...CodeableConceptFields\n }\n patient {\n ...PatientFields\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PatientFields on Patient {\n id\n name {\n ...HumanNameFields\n }\n birthDate\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n ";
|
|
116
116
|
export declare const GetConditionGroupsDocument = "\n query getConditionGroups($request: ConditionGroupQueryRequest) {\n getConditionGroups(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n coding {\n ...CodingFields\n }\n references\n recordedDate\n source\n sourceDisplay\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n ";
|
|
117
117
|
export declare const GetConditionsDocument = "\n query getConditions($request: ConditionRequest) {\n getConditions(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n resourceType\n identifier {\n ...IdentifierFields\n }\n text {\n ...NarrativeFields\n }\n extension {\n id\n url\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueString\n valueInteger\n valueDateTime\n }\n id\n meta {\n ...MetaFields\n }\n code {\n ...CodeableConceptFields\n }\n clinicalStatus {\n ...CodeableConceptFields\n }\n onsetDateTime\n recordedDate\n recorder {\n ...RecorderFields\n }\n note {\n authorString\n time\n text\n }\n onsetPeriod {\n ...PeriodFields\n }\n abatementDateTime\n abatementPeriod {\n ...PeriodFields\n }\n subject {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n }\n category {\n ...CodeableConceptFields\n }\n severity {\n ...CodeableConceptFields\n }\n verificationStatus {\n ...CodeableConceptFields\n }\n bodySite {\n ...CodeableConceptFields\n }\n asserter {\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n }\n }\n encounter {\n ...EncounterFields\n }\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment NarrativeFields on Narrative {\n div\n status\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment RecorderFields on Recorder {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment EncounterFields on EncounterResource {\n meta {\n ...MetaFields\n }\n id\n resourceType\n text {\n ...NarrativeFields\n }\n encounterLocations: locations {\n location {\n ...LocationFields\n }\n status\n physicalType {\n ...CodeableConceptFields\n }\n period {\n ...PeriodFields\n }\n }\n identifier {\n ...IdentifierFields\n }\n type {\n ...CodeableConceptFields\n }\n status {\n display\n code\n }\n participant {\n ...ParticipantFields\n }\n period {\n ...PeriodFields\n }\n reasonCode {\n ...CodeableConceptFields\n }\n class {\n system\n code\n display\n }\n location {\n ...LocationFields\n }\n serviceProvider {\n name\n endpoint {\n name\n status\n connectionType {\n system\n code\n display\n }\n address\n }\n }\n subject {\n id\n name {\n ...HumanNameFields\n }\n gender\n birthDate\n communication {\n language {\n ...CodeableConceptFields\n }\n }\n }\n reasonReference {\n ...ConditionFields\n }\n hospitalization {\n dischargeDisposition {\n ...CodeableConceptFields\n }\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment NarrativeFields on Narrative {\n div\n status\n}\n \n\n fragment LocationFields on Location {\n name\n identifier {\n ...IdentifierFields\n }\n alias\n description\n address {\n ...AddressFields\n }\n position {\n lat\n lon\n }\n distanceInMiles\n telecom {\n ...ContactPointFields\n }\n type {\n ...CodeableConceptFields\n }\n status\n managingOrganization {\n ...LocationManagingOrganizationReferenceFields\n }\n}\n \n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment AddressFields on Address {\n use\n type\n text\n line\n city\n district\n state\n postalCode\n country\n}\n \n\n fragment ContactPointFields on ContactPoint {\n id\n system\n value\n use\n rank\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {\n id\n reference\n identifier {\n ...IdentifierFields\n }\n display\n}\n \n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment ParticipantFields on Participant {\n individual {\n id\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n }\n type {\n ...CodeableConceptFields\n }\n period {\n ...PeriodFields\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment ConditionFields on ConditionResource {\n id\n meta {\n ...MetaFields\n }\n code {\n ...CodeableConceptFields\n }\n clinicalStatus {\n ...CodeableConceptFields\n }\n onsetDateTime\n recordedDate\n recorder {\n ...RecorderFields\n }\n note {\n authorString\n time\n text\n }\n onsetPeriod {\n ...PeriodFields\n }\n abatementDateTime\n abatementPeriod {\n ...PeriodFields\n }\n category {\n ...CodeableConceptFields\n }\n severity {\n ...CodeableConceptFields\n }\n verificationStatus {\n ...CodeableConceptFields\n }\n bodySite {\n ...CodeableConceptFields\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment RecorderFields on Recorder {\n __typename\n ... on Patient {\n name {\n ...HumanNameFields\n }\n }\n ... on Practitioner {\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n ";
|
|
118
|
+
export declare const GetDeviceMetricsGroupsDocument = "\n query getDeviceMetricsGroups($request: DeviceMetricsGroupQueryRequest) {\n getDeviceMetricsGroups(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n source\n sourceDisplay\n category {\n ...CodeableConceptFields\n }\n coding {\n ...CodingFields\n }\n effectiveDateTime\n interpretation {\n ...CodeableConceptFields\n }\n value {\n ...ValueFields\n }\n referenceRange {\n ...ReferenceRangeFields\n }\n component {\n ...ComponentFields\n }\n references\n effectiveDateTime\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 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 ValueFields on Value {\n valueQuantity {\n ...QuantityFields\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueString\n valueBoolean\n valueInteger\n valueRatio {\n ...RatioFields\n }\n valueRange {\n ...RangeFields\n }\n valueTime\n valueDateTime\n valuePeriod {\n ...PeriodFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment RatioFields on Ratio {\n numerator {\n ...QuantityFields\n }\n denominator {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment RangeFields on Range {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment ReferenceRangeFields on ReferenceRange {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n text\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment ComponentFields on Component {\n code {\n ...CodeableConceptFields\n }\n value {\n ...ValueFields\n }\n referenceRange {\n ...ReferenceRangeFields\n }\n interpretation {\n ...CodeableConceptFields\n }\n dataAbsentReason {\n ...CodeableConceptFields\n }\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment ValueFields on Value {\n valueQuantity {\n ...QuantityFields\n }\n valueCodeableConcept {\n ...CodeableConceptFields\n }\n valueString\n valueBoolean\n valueInteger\n valueRatio {\n ...RatioFields\n }\n valueRange {\n ...RangeFields\n }\n valueTime\n valueDateTime\n valuePeriod {\n ...PeriodFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment RatioFields on Ratio {\n numerator {\n ...QuantityFields\n }\n denominator {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment RangeFields on Range {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment ReferenceRangeFields on ReferenceRange {\n low {\n ...QuantityFields\n }\n high {\n ...QuantityFields\n }\n text\n}\n \n fragment QuantityFields on Quantity {\n value\n unit\n code\n comparator\n system\n}\n ";
|
|
118
119
|
export declare const GetDiagnosticReportLabGroupsDocument = "\n query getDiagnosticReportLabGroups($request: DiagnosticReportLabGroupQueryRequest) {\n getDiagnosticReportLabGroups(request: $request) {\n resources {\n id\n effectiveDateTime\n issued\n name\n performer\n references\n source\n sourceDisplay\n coding {\n ...CodingFields\n }\n }\n paging_info {\n ...PagingFields\n }\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n ";
|
|
119
120
|
export declare const GetDocumentReferencesDocument = "\n query getDocumentReferences($request: DocumentReferenceRequest) {\n getDocumentReferences(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n ...DocumentReferenceFields\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 DocumentReferenceFields on DocumentReferenceResource {\n id\n resourceType\n meta {\n ...MetaFields\n }\n language\n text {\n div\n status\n }\n identifier {\n ...IdentifierFields\n }\n status\n subject {\n reference\n display\n }\n type {\n ...CodeableConceptFields\n }\n category {\n ...CodeableConceptFields\n }\n date\n author {\n reference\n display\n }\n description\n content {\n attachment {\n contentType\n data\n url\n title\n }\n format {\n ...CodingFields\n }\n }\n context {\n ...DocumentReferenceContextFields\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n \n\n fragment DocumentReferenceContextFields on DocumentReferenceContext {\n encounter {\n reference\n display\n }\n period {\n ...PeriodFields\n }\n}\n \n fragment PeriodFields on Period {\n start\n end\n}\n ";
|
|
120
121
|
export declare const GetEncountersGroupDocument = "\n query getEncountersGroup($request: EncounterGroupQueryRequest) {\n getEncounterGroups(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n references\n class {\n ...CodingFields\n }\n type {\n ...CodingFields\n }\n participant\n coding {\n ...CodingFields\n }\n date\n source\n sourceDisplay\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment CodingFields on Coding {\n system\n code\n display\n}\n ";
|
|
@@ -346,6 +347,13 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
346
347
|
headers: Headers;
|
|
347
348
|
status: number;
|
|
348
349
|
}>;
|
|
350
|
+
getDeviceMetricsGroups(variables?: Types.GetDeviceMetricsGroupsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{
|
|
351
|
+
data: Types.GetDeviceMetricsGroupsQueryResults;
|
|
352
|
+
errors?: GraphQLError[];
|
|
353
|
+
extensions?: any;
|
|
354
|
+
headers: Headers;
|
|
355
|
+
status: number;
|
|
356
|
+
}>;
|
|
349
357
|
getDiagnosticReportLabGroups(variables?: Types.GetDiagnosticReportLabGroupsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{
|
|
350
358
|
data: Types.GetDiagnosticReportLabGroupsQueryResults;
|
|
351
359
|
errors?: GraphQLError[];
|
|
@@ -2806,6 +2806,47 @@ ${RecorderFieldsFragmentDoc}
|
|
|
2806
2806
|
${PeriodFieldsFragmentDoc}
|
|
2807
2807
|
${HumanNameFieldsFragmentDoc}
|
|
2808
2808
|
${EncounterFieldsFragmentDoc}`;
|
|
2809
|
+
export const GetDeviceMetricsGroupsDocument = `
|
|
2810
|
+
query getDeviceMetricsGroups($request: DeviceMetricsGroupQueryRequest) {
|
|
2811
|
+
getDeviceMetricsGroups(request: $request) {
|
|
2812
|
+
paging_info {
|
|
2813
|
+
...PagingFields
|
|
2814
|
+
}
|
|
2815
|
+
resources {
|
|
2816
|
+
id
|
|
2817
|
+
name
|
|
2818
|
+
source
|
|
2819
|
+
sourceDisplay
|
|
2820
|
+
category {
|
|
2821
|
+
...CodeableConceptFields
|
|
2822
|
+
}
|
|
2823
|
+
coding {
|
|
2824
|
+
...CodingFields
|
|
2825
|
+
}
|
|
2826
|
+
effectiveDateTime
|
|
2827
|
+
interpretation {
|
|
2828
|
+
...CodeableConceptFields
|
|
2829
|
+
}
|
|
2830
|
+
value {
|
|
2831
|
+
...ValueFields
|
|
2832
|
+
}
|
|
2833
|
+
referenceRange {
|
|
2834
|
+
...ReferenceRangeFields
|
|
2835
|
+
}
|
|
2836
|
+
component {
|
|
2837
|
+
...ComponentFields
|
|
2838
|
+
}
|
|
2839
|
+
references
|
|
2840
|
+
effectiveDateTime
|
|
2841
|
+
}
|
|
2842
|
+
}
|
|
2843
|
+
}
|
|
2844
|
+
${PagingFieldsFragmentDoc}
|
|
2845
|
+
${CodeableConceptFieldsFragmentDoc}
|
|
2846
|
+
${CodingFieldsFragmentDoc}
|
|
2847
|
+
${ValueFieldsFragmentDoc}
|
|
2848
|
+
${ReferenceRangeFieldsFragmentDoc}
|
|
2849
|
+
${ComponentFieldsFragmentDoc}`;
|
|
2809
2850
|
export const GetDiagnosticReportLabGroupsDocument = `
|
|
2810
2851
|
query getDiagnosticReportLabGroups($request: DiagnosticReportLabGroupQueryRequest) {
|
|
2811
2852
|
getDiagnosticReportLabGroups(request: $request) {
|
|
@@ -4737,6 +4778,9 @@ export function getSdk(client, withWrapper = defaultWrapper) {
|
|
|
4737
4778
|
getConditions(variables, requestHeaders) {
|
|
4738
4779
|
return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetConditionsDocument, variables, Object.assign(Object.assign({}, requestHeaders), wrappedRequestHeaders)), 'getConditions', 'query', variables);
|
|
4739
4780
|
},
|
|
4781
|
+
getDeviceMetricsGroups(variables, requestHeaders) {
|
|
4782
|
+
return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetDeviceMetricsGroupsDocument, variables, Object.assign(Object.assign({}, requestHeaders), wrappedRequestHeaders)), 'getDeviceMetricsGroups', 'query', variables);
|
|
4783
|
+
},
|
|
4740
4784
|
getDiagnosticReportLabGroups(variables, requestHeaders) {
|
|
4741
4785
|
return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetDiagnosticReportLabGroupsDocument, variables, Object.assign(Object.assign({}, requestHeaders), wrappedRequestHeaders)), 'getDiagnosticReportLabGroups', 'query', variables);
|
|
4742
4786
|
},
|
|
@@ -12244,6 +12244,224 @@ export type GetConditionsQueryResults = {
|
|
|
12244
12244
|
}>;
|
|
12245
12245
|
};
|
|
12246
12246
|
};
|
|
12247
|
+
export type GetDeviceMetricsGroupsQueryVariables = Types.Exact<{
|
|
12248
|
+
request: Types.InputMaybe<Types.DeviceMetricsGroupQueryRequest>;
|
|
12249
|
+
}>;
|
|
12250
|
+
export type GetDeviceMetricsGroupsQueryResults = {
|
|
12251
|
+
getDeviceMetricsGroups: {
|
|
12252
|
+
paging_info: {
|
|
12253
|
+
page_number: number;
|
|
12254
|
+
page_size: number;
|
|
12255
|
+
total_pages: number;
|
|
12256
|
+
total_items: number;
|
|
12257
|
+
} | null;
|
|
12258
|
+
resources: Array<{
|
|
12259
|
+
id: string | null;
|
|
12260
|
+
name: string | null;
|
|
12261
|
+
source: Array<string | null> | null;
|
|
12262
|
+
sourceDisplay: Array<string | null> | null;
|
|
12263
|
+
effectiveDateTime: any | null;
|
|
12264
|
+
references: Array<string> | null;
|
|
12265
|
+
category: Array<{
|
|
12266
|
+
text: string | null;
|
|
12267
|
+
coding: Array<{
|
|
12268
|
+
system: any | null;
|
|
12269
|
+
code: any | null;
|
|
12270
|
+
display: string | null;
|
|
12271
|
+
} | null> | null;
|
|
12272
|
+
} | null> | null;
|
|
12273
|
+
coding: {
|
|
12274
|
+
system: any | null;
|
|
12275
|
+
code: any | null;
|
|
12276
|
+
display: string | null;
|
|
12277
|
+
} | null;
|
|
12278
|
+
interpretation: Array<{
|
|
12279
|
+
text: string | null;
|
|
12280
|
+
coding: Array<{
|
|
12281
|
+
system: any | null;
|
|
12282
|
+
code: any | null;
|
|
12283
|
+
display: string | null;
|
|
12284
|
+
} | null> | null;
|
|
12285
|
+
} | null> | null;
|
|
12286
|
+
value: {
|
|
12287
|
+
valueString: string | null;
|
|
12288
|
+
valueBoolean: boolean | null;
|
|
12289
|
+
valueInteger: number | null;
|
|
12290
|
+
valueTime: string | null;
|
|
12291
|
+
valueDateTime: any | null;
|
|
12292
|
+
valueQuantity: {
|
|
12293
|
+
value: number | null;
|
|
12294
|
+
unit: string | null;
|
|
12295
|
+
code: any | null;
|
|
12296
|
+
comparator: any | null;
|
|
12297
|
+
system: any | null;
|
|
12298
|
+
} | null;
|
|
12299
|
+
valueCodeableConcept: {
|
|
12300
|
+
text: string | null;
|
|
12301
|
+
coding: Array<{
|
|
12302
|
+
system: any | null;
|
|
12303
|
+
code: any | null;
|
|
12304
|
+
display: string | null;
|
|
12305
|
+
} | null> | null;
|
|
12306
|
+
} | null;
|
|
12307
|
+
valueRatio: {
|
|
12308
|
+
numerator: {
|
|
12309
|
+
value: number | null;
|
|
12310
|
+
unit: string | null;
|
|
12311
|
+
code: any | null;
|
|
12312
|
+
comparator: any | null;
|
|
12313
|
+
system: any | null;
|
|
12314
|
+
} | null;
|
|
12315
|
+
denominator: {
|
|
12316
|
+
value: number | null;
|
|
12317
|
+
unit: string | null;
|
|
12318
|
+
code: any | null;
|
|
12319
|
+
comparator: any | null;
|
|
12320
|
+
system: any | null;
|
|
12321
|
+
} | null;
|
|
12322
|
+
} | null;
|
|
12323
|
+
valueRange: {
|
|
12324
|
+
low: {
|
|
12325
|
+
value: number | null;
|
|
12326
|
+
unit: string | null;
|
|
12327
|
+
code: any | null;
|
|
12328
|
+
comparator: any | null;
|
|
12329
|
+
system: any | null;
|
|
12330
|
+
} | null;
|
|
12331
|
+
high: {
|
|
12332
|
+
value: number | null;
|
|
12333
|
+
unit: string | null;
|
|
12334
|
+
code: any | null;
|
|
12335
|
+
comparator: any | null;
|
|
12336
|
+
system: any | null;
|
|
12337
|
+
} | null;
|
|
12338
|
+
} | null;
|
|
12339
|
+
valuePeriod: {
|
|
12340
|
+
start: any | null;
|
|
12341
|
+
end: any | null;
|
|
12342
|
+
} | null;
|
|
12343
|
+
} | null;
|
|
12344
|
+
referenceRange: Array<{
|
|
12345
|
+
text: string | null;
|
|
12346
|
+
low: {
|
|
12347
|
+
value: number | null;
|
|
12348
|
+
unit: string | null;
|
|
12349
|
+
code: any | null;
|
|
12350
|
+
comparator: any | null;
|
|
12351
|
+
system: any | null;
|
|
12352
|
+
} | null;
|
|
12353
|
+
high: {
|
|
12354
|
+
value: number | null;
|
|
12355
|
+
unit: string | null;
|
|
12356
|
+
code: any | null;
|
|
12357
|
+
comparator: any | null;
|
|
12358
|
+
system: any | null;
|
|
12359
|
+
} | null;
|
|
12360
|
+
} | null> | null;
|
|
12361
|
+
component: Array<{
|
|
12362
|
+
code: {
|
|
12363
|
+
text: string | null;
|
|
12364
|
+
coding: Array<{
|
|
12365
|
+
system: any | null;
|
|
12366
|
+
code: any | null;
|
|
12367
|
+
display: string | null;
|
|
12368
|
+
} | null> | null;
|
|
12369
|
+
} | null;
|
|
12370
|
+
value: {
|
|
12371
|
+
valueString: string | null;
|
|
12372
|
+
valueBoolean: boolean | null;
|
|
12373
|
+
valueInteger: number | null;
|
|
12374
|
+
valueTime: string | null;
|
|
12375
|
+
valueDateTime: any | null;
|
|
12376
|
+
valueQuantity: {
|
|
12377
|
+
value: number | null;
|
|
12378
|
+
unit: string | null;
|
|
12379
|
+
code: any | null;
|
|
12380
|
+
comparator: any | null;
|
|
12381
|
+
system: any | null;
|
|
12382
|
+
} | null;
|
|
12383
|
+
valueCodeableConcept: {
|
|
12384
|
+
text: string | null;
|
|
12385
|
+
coding: Array<{
|
|
12386
|
+
system: any | null;
|
|
12387
|
+
code: any | null;
|
|
12388
|
+
display: string | null;
|
|
12389
|
+
} | null> | null;
|
|
12390
|
+
} | null;
|
|
12391
|
+
valueRatio: {
|
|
12392
|
+
numerator: {
|
|
12393
|
+
value: number | null;
|
|
12394
|
+
unit: string | null;
|
|
12395
|
+
code: any | null;
|
|
12396
|
+
comparator: any | null;
|
|
12397
|
+
system: any | null;
|
|
12398
|
+
} | null;
|
|
12399
|
+
denominator: {
|
|
12400
|
+
value: number | null;
|
|
12401
|
+
unit: string | null;
|
|
12402
|
+
code: any | null;
|
|
12403
|
+
comparator: any | null;
|
|
12404
|
+
system: any | null;
|
|
12405
|
+
} | null;
|
|
12406
|
+
} | null;
|
|
12407
|
+
valueRange: {
|
|
12408
|
+
low: {
|
|
12409
|
+
value: number | null;
|
|
12410
|
+
unit: string | null;
|
|
12411
|
+
code: any | null;
|
|
12412
|
+
comparator: any | null;
|
|
12413
|
+
system: any | null;
|
|
12414
|
+
} | null;
|
|
12415
|
+
high: {
|
|
12416
|
+
value: number | null;
|
|
12417
|
+
unit: string | null;
|
|
12418
|
+
code: any | null;
|
|
12419
|
+
comparator: any | null;
|
|
12420
|
+
system: any | null;
|
|
12421
|
+
} | null;
|
|
12422
|
+
} | null;
|
|
12423
|
+
valuePeriod: {
|
|
12424
|
+
start: any | null;
|
|
12425
|
+
end: any | null;
|
|
12426
|
+
} | null;
|
|
12427
|
+
} | null;
|
|
12428
|
+
referenceRange: Array<{
|
|
12429
|
+
text: string | null;
|
|
12430
|
+
low: {
|
|
12431
|
+
value: number | null;
|
|
12432
|
+
unit: string | null;
|
|
12433
|
+
code: any | null;
|
|
12434
|
+
comparator: any | null;
|
|
12435
|
+
system: any | null;
|
|
12436
|
+
} | null;
|
|
12437
|
+
high: {
|
|
12438
|
+
value: number | null;
|
|
12439
|
+
unit: string | null;
|
|
12440
|
+
code: any | null;
|
|
12441
|
+
comparator: any | null;
|
|
12442
|
+
system: any | null;
|
|
12443
|
+
} | null;
|
|
12444
|
+
} | null> | null;
|
|
12445
|
+
interpretation: Array<{
|
|
12446
|
+
text: string | null;
|
|
12447
|
+
coding: Array<{
|
|
12448
|
+
system: any | null;
|
|
12449
|
+
code: any | null;
|
|
12450
|
+
display: string | null;
|
|
12451
|
+
} | null> | null;
|
|
12452
|
+
} | null> | null;
|
|
12453
|
+
dataAbsentReason: {
|
|
12454
|
+
text: string | null;
|
|
12455
|
+
coding: Array<{
|
|
12456
|
+
system: any | null;
|
|
12457
|
+
code: any | null;
|
|
12458
|
+
display: string | null;
|
|
12459
|
+
} | null> | null;
|
|
12460
|
+
} | null;
|
|
12461
|
+
} | null> | null;
|
|
12462
|
+
}>;
|
|
12463
|
+
};
|
|
12464
|
+
};
|
|
12247
12465
|
export type GetDiagnosticReportLabGroupsQueryVariables = Types.Exact<{
|
|
12248
12466
|
request: Types.InputMaybe<Types.DiagnosticReportLabGroupQueryRequest>;
|
|
12249
12467
|
}>;
|
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -1228,6 +1228,7 @@ export type Consent = {
|
|
|
1228
1228
|
provision?: Maybe<ConsentProvision>;
|
|
1229
1229
|
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1230
1230
|
scope?: Maybe<CodeableConcept>;
|
|
1231
|
+
sourceReference?: Maybe<ConsentSourceReferenceReference>;
|
|
1231
1232
|
status?: Maybe<Scalars['Code']['output']>;
|
|
1232
1233
|
verification?: Maybe<Array<Maybe<ConsentVerification>>>;
|
|
1233
1234
|
};
|
|
@@ -1360,6 +1361,13 @@ export type ConsentSourceInput = {
|
|
|
1360
1361
|
sourceAttachment?: InputMaybe<AttachmentInput>;
|
|
1361
1362
|
sourceReference?: InputMaybe<ReferenceInput>;
|
|
1362
1363
|
};
|
|
1364
|
+
export type ConsentSourceReferenceReference = {
|
|
1365
|
+
__typename?: 'ConsentSourceReferenceReference';
|
|
1366
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1367
|
+
identifier?: Maybe<Identifier>;
|
|
1368
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1369
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1370
|
+
};
|
|
1363
1371
|
export declare enum ConsentStatus {
|
|
1364
1372
|
Active = "ACTIVE",
|
|
1365
1373
|
Draft = "DRAFT",
|
|
@@ -1646,21 +1654,6 @@ export type CreateSupportRequestResponse = {
|
|
|
1646
1654
|
export declare enum CurrencyCode {
|
|
1647
1655
|
Usd = "USD"
|
|
1648
1656
|
}
|
|
1649
|
-
export type DataAccessGranteesBundle = {
|
|
1650
|
-
__typename?: 'DataAccessGranteesBundle';
|
|
1651
|
-
entry: Array<DataAccessGranteesBundleEntry>;
|
|
1652
|
-
resourceType: Scalars['String']['output'];
|
|
1653
|
-
total: Scalars['Float']['output'];
|
|
1654
|
-
type: Scalars['String']['output'];
|
|
1655
|
-
};
|
|
1656
|
-
export type DataAccessGranteesBundleEntry = {
|
|
1657
|
-
__typename?: 'DataAccessGranteesBundleEntry';
|
|
1658
|
-
fullUrl: Scalars['String']['output'];
|
|
1659
|
-
resource: DataAccessResource;
|
|
1660
|
-
};
|
|
1661
|
-
export type DataAccessGrantorsInput = {
|
|
1662
|
-
invitationStatus?: InputMaybe<DataAccessInvitationType>;
|
|
1663
|
-
};
|
|
1664
1657
|
export declare enum DataAccessInvitationResponse {
|
|
1665
1658
|
Accepted = "ACCEPTED",
|
|
1666
1659
|
Rejected = "REJECTED"
|
|
@@ -1669,7 +1662,6 @@ export declare enum DataAccessInvitationType {
|
|
|
1669
1662
|
Active = "ACTIVE",
|
|
1670
1663
|
Pending = "PENDING"
|
|
1671
1664
|
}
|
|
1672
|
-
export type DataAccessResource = CareTeamResource | Consent | RelatedPerson;
|
|
1673
1665
|
/** Defines the connection statuses */
|
|
1674
1666
|
export declare enum DataConnectionStatus {
|
|
1675
1667
|
AccessEnded = "ACCESS_ENDED",
|
|
@@ -1699,6 +1691,63 @@ export declare enum DataSetsEnum {
|
|
|
1699
1691
|
Connecthub = "CONNECTHUB",
|
|
1700
1692
|
Nppes = "NPPES"
|
|
1701
1693
|
}
|
|
1694
|
+
export type DataSharingAccessBundle = {
|
|
1695
|
+
__typename?: 'DataSharingAccessBundle';
|
|
1696
|
+
entry: Array<DataSharingAccessBundleEntry>;
|
|
1697
|
+
resourceType: Scalars['String']['output'];
|
|
1698
|
+
total: Scalars['Int']['output'];
|
|
1699
|
+
type: Scalars['String']['output'];
|
|
1700
|
+
};
|
|
1701
|
+
export type DataSharingAccessBundleEntry = {
|
|
1702
|
+
__typename?: 'DataSharingAccessBundleEntry';
|
|
1703
|
+
fullUrl: Scalars['String']['output'];
|
|
1704
|
+
resource: DataSharingConsent;
|
|
1705
|
+
};
|
|
1706
|
+
export type DataSharingConsent = {
|
|
1707
|
+
__typename?: 'DataSharingConsent';
|
|
1708
|
+
category?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
1709
|
+
dateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
1710
|
+
id: Scalars['ID']['output'];
|
|
1711
|
+
patient?: Maybe<ConsentPatientReference>;
|
|
1712
|
+
performer?: Maybe<Array<Maybe<ConsentPerformerReference>>>;
|
|
1713
|
+
provision?: Maybe<DataSharingConsentProvision>;
|
|
1714
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1715
|
+
scope?: Maybe<CodeableConcept>;
|
|
1716
|
+
sourceReference?: Maybe<ConsentSourceReferenceReference>;
|
|
1717
|
+
status?: Maybe<Scalars['Code']['output']>;
|
|
1718
|
+
};
|
|
1719
|
+
export type DataSharingConsentActor = {
|
|
1720
|
+
__typename?: 'DataSharingConsentActor';
|
|
1721
|
+
reference?: Maybe<DataSharingConsentActorReference>;
|
|
1722
|
+
role?: Maybe<CodeableConcept>;
|
|
1723
|
+
};
|
|
1724
|
+
export type DataSharingConsentActorReference = {
|
|
1725
|
+
__typename?: 'DataSharingConsentActorReference';
|
|
1726
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1727
|
+
identifier?: Maybe<Identifier>;
|
|
1728
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1729
|
+
resource?: Maybe<RelatedPerson>;
|
|
1730
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1731
|
+
};
|
|
1732
|
+
export type DataSharingConsentProvision = {
|
|
1733
|
+
__typename?: 'DataSharingConsentProvision';
|
|
1734
|
+
actor?: Maybe<Array<Maybe<DataSharingConsentActor>>>;
|
|
1735
|
+
dataPeriod?: Maybe<Period>;
|
|
1736
|
+
period?: Maybe<Period>;
|
|
1737
|
+
type?: Maybe<Scalars['Code']['output']>;
|
|
1738
|
+
};
|
|
1739
|
+
export type DataSharingGrantsBundle = {
|
|
1740
|
+
__typename?: 'DataSharingGrantsBundle';
|
|
1741
|
+
entry: Array<DataSharingGrantsBundleEntry>;
|
|
1742
|
+
resourceType: Scalars['String']['output'];
|
|
1743
|
+
total: Scalars['Int']['output'];
|
|
1744
|
+
type: Scalars['String']['output'];
|
|
1745
|
+
};
|
|
1746
|
+
export type DataSharingGrantsBundleEntry = {
|
|
1747
|
+
__typename?: 'DataSharingGrantsBundleEntry';
|
|
1748
|
+
fullUrl: Scalars['String']['output'];
|
|
1749
|
+
resource: Consent;
|
|
1750
|
+
};
|
|
1702
1751
|
/** Defines a data source */
|
|
1703
1752
|
export type DataSource = {
|
|
1704
1753
|
__typename?: 'DataSource';
|
|
@@ -1776,6 +1825,41 @@ export type DeviceBundleEntry = {
|
|
|
1776
1825
|
__typename?: 'DeviceBundleEntry';
|
|
1777
1826
|
resource?: Maybe<Device>;
|
|
1778
1827
|
};
|
|
1828
|
+
export type DeviceMetricsGroup = ResourceGroup & {
|
|
1829
|
+
__typename?: 'DeviceMetricsGroup';
|
|
1830
|
+
/** A structured set of codes including a text representation. */
|
|
1831
|
+
category?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
1832
|
+
/** Coding representing the kind of Device Metrics in this ResourceGroup */
|
|
1833
|
+
coding?: Maybe<Coding>;
|
|
1834
|
+
/** Component observations as part of this observation. */
|
|
1835
|
+
component?: Maybe<Array<Maybe<Component>>>;
|
|
1836
|
+
/** The single point in time when the observation was made. */
|
|
1837
|
+
effectiveDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
1838
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1839
|
+
/** The interpretation of the observation results. */
|
|
1840
|
+
interpretation?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
1841
|
+
/** Human readable name of the Device Metrics */
|
|
1842
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1843
|
+
/** Reference ranges for interpreting the observation value. */
|
|
1844
|
+
referenceRange?: Maybe<Array<Maybe<ReferenceRange>>>;
|
|
1845
|
+
/** Array of observation id references in the ResourceGroup */
|
|
1846
|
+
references?: Maybe<Array<Scalars['String']['output']>>;
|
|
1847
|
+
/** Array of Strings representing the source of the data */
|
|
1848
|
+
source?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1849
|
+
/** Array of Strings representing the source of the data */
|
|
1850
|
+
sourceDisplay?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1851
|
+
/** The value of the observation. At most, one ObservationValue type will be returned per Observation */
|
|
1852
|
+
value?: Maybe<Value>;
|
|
1853
|
+
};
|
|
1854
|
+
export type DeviceMetricsGroupQueryRequest = {
|
|
1855
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1856
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1857
|
+
};
|
|
1858
|
+
export type DeviceMetricsGroupQueryResults = PagedQueryResults & {
|
|
1859
|
+
__typename?: 'DeviceMetricsGroupQueryResults';
|
|
1860
|
+
paging_info?: Maybe<PagingResults>;
|
|
1861
|
+
resources: Array<DeviceMetricsGroup>;
|
|
1862
|
+
};
|
|
1779
1863
|
export type DevicePatientReference = {
|
|
1780
1864
|
__typename?: 'DevicePatientReference';
|
|
1781
1865
|
display?: Maybe<Scalars['String']['output']>;
|
|
@@ -5434,8 +5518,8 @@ export type Query = {
|
|
|
5434
5518
|
consent?: Maybe<Array<Maybe<LegacyConsent>>>;
|
|
5435
5519
|
consentAsyncTasks?: Maybe<Array<Maybe<Job>>>;
|
|
5436
5520
|
coverages?: Maybe<CoverageBundle>;
|
|
5437
|
-
|
|
5438
|
-
|
|
5521
|
+
dataSharingAccess: DataSharingAccessBundle;
|
|
5522
|
+
dataSharingGrants: DataSharingGrantsBundle;
|
|
5439
5523
|
devices?: Maybe<DeviceBundle>;
|
|
5440
5524
|
diagnosticReports?: Maybe<DiagnosticReportBundle>;
|
|
5441
5525
|
explanationOfBenefits?: Maybe<ExplanationOfBenefitBundle>;
|
|
@@ -5462,6 +5546,7 @@ export type Query = {
|
|
|
5462
5546
|
getCoverageSummary: CoverageSummaryQueryResults;
|
|
5463
5547
|
/** Data source information */
|
|
5464
5548
|
getDataSource: DataSource;
|
|
5549
|
+
getDeviceMetricsGroups: DeviceMetricsGroupQueryResults;
|
|
5465
5550
|
getDiagnosticReportLabGroups: DiagnosticReportLabGroupQueryResults;
|
|
5466
5551
|
getDocumentReferences: DocumentReferenceQueryResults;
|
|
5467
5552
|
getEncounterGroups: EncounterGroupQueryResults;
|
|
@@ -5607,9 +5692,6 @@ export type QueryCoveragesArgs = {
|
|
|
5607
5692
|
id?: InputMaybe<SearchString>;
|
|
5608
5693
|
patient?: InputMaybe<SearchReference>;
|
|
5609
5694
|
};
|
|
5610
|
-
export type QueryDataAccessGrantorsArgs = {
|
|
5611
|
-
input: DataAccessGrantorsInput;
|
|
5612
|
-
};
|
|
5613
5695
|
export type QueryDevicesArgs = {
|
|
5614
5696
|
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
5615
5697
|
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -5678,6 +5760,9 @@ export type QueryGetCoverageSummaryArgs = {
|
|
|
5678
5760
|
export type QueryGetDataSourceArgs = {
|
|
5679
5761
|
connectionId: Scalars['String']['input'];
|
|
5680
5762
|
};
|
|
5763
|
+
export type QueryGetDeviceMetricsGroupsArgs = {
|
|
5764
|
+
request?: InputMaybe<DeviceMetricsGroupQueryRequest>;
|
|
5765
|
+
};
|
|
5681
5766
|
export type QueryGetDiagnosticReportLabGroupsArgs = {
|
|
5682
5767
|
request?: InputMaybe<DiagnosticReportLabGroupQueryRequest>;
|
|
5683
5768
|
};
|
|
@@ -6841,6 +6926,21 @@ export type Security = {
|
|
|
6841
6926
|
export type SecurityConfigInput = {
|
|
6842
6927
|
passcode: Scalars['String']['input'];
|
|
6843
6928
|
};
|
|
6929
|
+
export declare enum SensitiveDataTag {
|
|
6930
|
+
Abortion = "ABORTION",
|
|
6931
|
+
AbuseNeglect = "ABUSE_NEGLECT",
|
|
6932
|
+
DomesticViolence = "DOMESTIC_VIOLENCE",
|
|
6933
|
+
GenderAffirming = "GENDER_AFFIRMING",
|
|
6934
|
+
GeneticTesting = "GENETIC_TESTING",
|
|
6935
|
+
HivAids = "HIV_AIDS",
|
|
6936
|
+
Mammography = "MAMMOGRAPHY",
|
|
6937
|
+
MentalHealth = "MENTAL_HEALTH",
|
|
6938
|
+
ReproductiveHealthcare = "REPRODUCTIVE_HEALTHCARE",
|
|
6939
|
+
SexualAssault = "SEXUAL_ASSAULT",
|
|
6940
|
+
Std = "STD",
|
|
6941
|
+
SubstanceAbuse = "SUBSTANCE_ABUSE",
|
|
6942
|
+
SubstanceAlcohol = "SUBSTANCE_ALCOHOL"
|
|
6943
|
+
}
|
|
6844
6944
|
export type ServiceRequest = Resource & {
|
|
6845
6945
|
__typename?: 'ServiceRequest';
|
|
6846
6946
|
authoredOn?: Maybe<Scalars['DateTime']['output']>;
|
package/dist/graphql/schema.js
CHANGED
|
@@ -448,6 +448,22 @@ export var SearchResultTypeEnum;
|
|
|
448
448
|
SearchResultTypeEnum["Practice"] = "PRACTICE";
|
|
449
449
|
SearchResultTypeEnum["Practitioner"] = "PRACTITIONER";
|
|
450
450
|
})(SearchResultTypeEnum || (SearchResultTypeEnum = {}));
|
|
451
|
+
export var SensitiveDataTag;
|
|
452
|
+
(function (SensitiveDataTag) {
|
|
453
|
+
SensitiveDataTag["Abortion"] = "ABORTION";
|
|
454
|
+
SensitiveDataTag["AbuseNeglect"] = "ABUSE_NEGLECT";
|
|
455
|
+
SensitiveDataTag["DomesticViolence"] = "DOMESTIC_VIOLENCE";
|
|
456
|
+
SensitiveDataTag["GenderAffirming"] = "GENDER_AFFIRMING";
|
|
457
|
+
SensitiveDataTag["GeneticTesting"] = "GENETIC_TESTING";
|
|
458
|
+
SensitiveDataTag["HivAids"] = "HIV_AIDS";
|
|
459
|
+
SensitiveDataTag["Mammography"] = "MAMMOGRAPHY";
|
|
460
|
+
SensitiveDataTag["MentalHealth"] = "MENTAL_HEALTH";
|
|
461
|
+
SensitiveDataTag["ReproductiveHealthcare"] = "REPRODUCTIVE_HEALTHCARE";
|
|
462
|
+
SensitiveDataTag["SexualAssault"] = "SEXUAL_ASSAULT";
|
|
463
|
+
SensitiveDataTag["Std"] = "STD";
|
|
464
|
+
SensitiveDataTag["SubstanceAbuse"] = "SUBSTANCE_ABUSE";
|
|
465
|
+
SensitiveDataTag["SubstanceAlcohol"] = "SUBSTANCE_ALCOHOL";
|
|
466
|
+
})(SensitiveDataTag || (SensitiveDataTag = {}));
|
|
451
467
|
export var SortBy;
|
|
452
468
|
(function (SortBy) {
|
|
453
469
|
SortBy["UpdatedAt"] = "UPDATED_AT";
|