@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1761158898 → 2.0.0-beta-rc.1761326499
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-manager.d.ts +22 -22
- package/dist/api/base/identity/identity-manager.d.ts +2 -2
- package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +25 -26
- package/dist/api/graphql-api/healthdata/graphql-health-manager.js +190 -117
- package/dist/api/graphql-api/healthdata/health-data-response-factory.d.ts +3 -2
- package/dist/api/graphql-api/identity/graphql-identity-manager.js +1 -1
- package/dist/auth/credentials.d.ts +1 -1
- package/dist/auth/credentials.js +2 -2
- package/dist/auth/username-password-strategy.js +2 -2
- package/dist/graphql/schema.d.ts +6 -1
- package/dist/models/health-data/allergy-intolerance-group.d.ts +9 -1
- package/dist/models/health-data/allergy-intolerance.d.ts +9 -1
- package/dist/models/health-data/care-plan-group.d.ts +2 -2
- package/dist/models/health-data/care-plan.d.ts +2 -2
- package/dist/models/health-data/care-team.d.ts +9 -1
- package/dist/models/health-data/condition-group.d.ts +9 -1
- package/dist/models/health-data/condition.d.ts +9 -1
- package/dist/models/health-data/diagnostic-report-lab-group.d.ts +9 -1
- package/dist/models/health-data/diagnostic-report.d.ts +9 -1
- package/dist/models/health-data/encounter-group.d.ts +9 -1
- package/dist/models/health-data/encounter.d.ts +9 -1
- package/dist/models/health-data/immunization-group.d.ts +9 -1
- package/dist/models/health-data/immunization.d.ts +9 -1
- package/dist/models/health-data/index.d.ts +21 -21
- package/dist/models/health-data/lab-bundle.d.ts +9 -1
- package/dist/models/health-data/lab-group.d.ts +9 -1
- package/dist/models/health-data/medication-dispense.d.ts +9 -1
- package/dist/models/health-data/medication-group.d.ts +9 -1
- package/dist/models/health-data/medication-request.d.ts +9 -1
- package/dist/models/health-data/medication-statement.d.ts +9 -1
- package/dist/models/health-data/procedure-group.d.ts +9 -1
- package/dist/models/health-data/procedure.d.ts +9 -1
- package/dist/models/health-data/vital-sign-bundle.d.ts +9 -1
- package/dist/models/health-data/vital-sign-group.d.ts +9 -1
- package/dist/models/identity/sdk-configuration-result.d.ts +1 -1
- package/package.json +1 -1
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { AllergyIntoleranceGroupsResponse, AllergyIntoleranceResponse, CarePlanGroupsResponse, CarePlanResponse, CareTeamResponse, ConditionGroupsResponse, ConditionResponse, DiagnosticReportLabGroupsResponse, DiagnosticReportResponse, EncounterGroupsResponse, EncounterResponse, HealthSummary, ImmunizationGroupsResponse, ImmunizationResponse, LabGroupsResponse, LabResponse, MedicationDispenseResponse, MedicationGroupsResponse, MedicationRequestResponse, MedicationStatementResponse, ProcedureGroupsResponse, ProcedureResponse, VitalSignGroupsResponse, VitalSignResponse } from "../../../models/health-data/index.js";
|
|
2
2
|
import type { BWellQueryResult } from "../../../results/index.js";
|
|
3
3
|
import type { BaseManagerError } from "../errors.js";
|
|
4
4
|
import type { AllergyIntoleranceGroupsRequest, CarePlanGroupsRequest, ConditionGroupsRequest, DiagnosticReportLabGroupsRequest, EncounterGroupsRequest, HealthDataRequest, ImmunizationGroupsRequest, LabGroupsRequest, MedicationDispenseRequest, MedicationGroupsRequest, ProcedureGroupsRequest, VitalSignGroupsRequest } from "./health-data-request.js";
|
|
@@ -39,7 +39,7 @@ export interface HealthManager {
|
|
|
39
39
|
* );
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
|
-
getAllergyIntolerances(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
42
|
+
getAllergyIntolerances(request?: HealthDataRequest): Promise<BWellQueryResult<AllergyIntoleranceResponse, BaseManagerError>>;
|
|
43
43
|
/**
|
|
44
44
|
* Retrieves a list of AllergyIntoleranceGroup resources.
|
|
45
45
|
* The method accepts a AllergyIntoleranceGroupsRequest object to specify the search criteria.
|
|
@@ -62,7 +62,7 @@ export interface HealthManager {
|
|
|
62
62
|
* );
|
|
63
63
|
* ```
|
|
64
64
|
*/
|
|
65
|
-
getAllergyIntoleranceGroups(request?: AllergyIntoleranceGroupsRequest): Promise<BWellQueryResult<
|
|
65
|
+
getAllergyIntoleranceGroups(request?: AllergyIntoleranceGroupsRequest): Promise<BWellQueryResult<AllergyIntoleranceGroupsResponse, BaseManagerError>>;
|
|
66
66
|
/**
|
|
67
67
|
* Retrieves a list of condition resources.
|
|
68
68
|
* Gets individual condition records for the authenticated user.
|
|
@@ -76,7 +76,7 @@ export interface HealthManager {
|
|
|
76
76
|
* const conditions = await sdk.health.getConditions();
|
|
77
77
|
* ```
|
|
78
78
|
*/
|
|
79
|
-
getConditions(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
79
|
+
getConditions(request?: HealthDataRequest): Promise<BWellQueryResult<ConditionResponse, BaseManagerError>>;
|
|
80
80
|
/**
|
|
81
81
|
* Retrieves a list of condition groups resources.
|
|
82
82
|
*
|
|
@@ -89,7 +89,7 @@ export interface HealthManager {
|
|
|
89
89
|
* const conditions = await sdk.health.getConditionGroups();
|
|
90
90
|
* ```
|
|
91
91
|
*/
|
|
92
|
-
getConditionGroups(request?: ConditionGroupsRequest): Promise<BWellQueryResult<
|
|
92
|
+
getConditionGroups(request?: ConditionGroupsRequest): Promise<BWellQueryResult<ConditionGroupsResponse, BaseManagerError>>;
|
|
93
93
|
/**
|
|
94
94
|
* Retrieves a list of laboratory groups results.
|
|
95
95
|
*
|
|
@@ -102,7 +102,7 @@ export interface HealthManager {
|
|
|
102
102
|
* const labGroups = await sdk.health.getLabGroups();
|
|
103
103
|
* ```
|
|
104
104
|
*/
|
|
105
|
-
getLabGroups(request?: LabGroupsRequest): Promise<BWellQueryResult<
|
|
105
|
+
getLabGroups(request?: LabGroupsRequest): Promise<BWellQueryResult<LabGroupsResponse, BaseManagerError>>;
|
|
106
106
|
/**
|
|
107
107
|
* Retrieves a list of care plan resources.
|
|
108
108
|
* @param {HealthDataRequest} request - Optional request class instance for specifying the search criteria
|
|
@@ -148,7 +148,7 @@ export interface HealthManager {
|
|
|
148
148
|
* );
|
|
149
149
|
*
|
|
150
150
|
*/
|
|
151
|
-
getEncounters(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
151
|
+
getEncounters(request?: HealthDataRequest): Promise<BWellQueryResult<EncounterResponse, BaseManagerError>>;
|
|
152
152
|
/**
|
|
153
153
|
* Retrieves a list of encounter groups resources.
|
|
154
154
|
*
|
|
@@ -161,7 +161,7 @@ export interface HealthManager {
|
|
|
161
161
|
* const encounterGroups = await sdk.health.getEncounterGroups();
|
|
162
162
|
* ```
|
|
163
163
|
*/
|
|
164
|
-
getEncounterGroups(request?: EncounterGroupsRequest): Promise<BWellQueryResult<
|
|
164
|
+
getEncounterGroups(request?: EncounterGroupsRequest): Promise<BWellQueryResult<EncounterGroupsResponse, BaseManagerError>>;
|
|
165
165
|
/**
|
|
166
166
|
* Retrieves a list of immunization resources.
|
|
167
167
|
* Gets individual immunization records for the authenticated user.
|
|
@@ -175,7 +175,7 @@ export interface HealthManager {
|
|
|
175
175
|
* const immunizations = await sdk.health.getImmunizations();
|
|
176
176
|
* ```
|
|
177
177
|
*/
|
|
178
|
-
getImmunizations(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
178
|
+
getImmunizations(request?: HealthDataRequest): Promise<BWellQueryResult<ImmunizationResponse, BaseManagerError>>;
|
|
179
179
|
/**
|
|
180
180
|
* Retrieves a list of immunization groups resources.
|
|
181
181
|
*
|
|
@@ -188,7 +188,7 @@ export interface HealthManager {
|
|
|
188
188
|
* const immunizationGroups = await sdk.health.getImmunizationGroups();
|
|
189
189
|
* ```
|
|
190
190
|
*/
|
|
191
|
-
getImmunizationGroups(request?: ImmunizationGroupsRequest): Promise<BWellQueryResult<
|
|
191
|
+
getImmunizationGroups(request?: ImmunizationGroupsRequest): Promise<BWellQueryResult<ImmunizationGroupsResponse, BaseManagerError>>;
|
|
192
192
|
/**
|
|
193
193
|
* Retrieves a list of procedure resources.
|
|
194
194
|
* Gets individual procedures for the authenticated user.
|
|
@@ -202,7 +202,7 @@ export interface HealthManager {
|
|
|
202
202
|
* const procedures = await sdk.health.getProcedures();
|
|
203
203
|
* ```
|
|
204
204
|
*/
|
|
205
|
-
getProcedures(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
205
|
+
getProcedures(request?: HealthDataRequest): Promise<BWellQueryResult<ProcedureResponse, BaseManagerError>>;
|
|
206
206
|
/**
|
|
207
207
|
* Retrieves a list of procedure groups resources.
|
|
208
208
|
*
|
|
@@ -215,7 +215,7 @@ export interface HealthManager {
|
|
|
215
215
|
* const procedureGroups = await sdk.health.getProcedureGroups();
|
|
216
216
|
* ```
|
|
217
217
|
*/
|
|
218
|
-
getProcedureGroups(request?: ProcedureGroupsRequest): Promise<BWellQueryResult<
|
|
218
|
+
getProcedureGroups(request?: ProcedureGroupsRequest): Promise<BWellQueryResult<ProcedureGroupsResponse, BaseManagerError>>;
|
|
219
219
|
/**
|
|
220
220
|
* Retrieves a list of vital sign resources.
|
|
221
221
|
* Gets individual vital sign records for the authenticated user.
|
|
@@ -229,7 +229,7 @@ export interface HealthManager {
|
|
|
229
229
|
* const vitalSigns = await sdk.health.getVitalSigns();
|
|
230
230
|
* ```
|
|
231
231
|
*/
|
|
232
|
-
getVitalSigns(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
232
|
+
getVitalSigns(request?: HealthDataRequest): Promise<BWellQueryResult<VitalSignResponse, BaseManagerError>>;
|
|
233
233
|
/**
|
|
234
234
|
* Retrieves a list of lab resources (observations with 'laboratory' category).
|
|
235
235
|
*
|
|
@@ -242,7 +242,7 @@ export interface HealthManager {
|
|
|
242
242
|
* const labs = await sdk.health.getLabs();
|
|
243
243
|
* ```
|
|
244
244
|
*/
|
|
245
|
-
getLabs(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
245
|
+
getLabs(request?: HealthDataRequest): Promise<BWellQueryResult<LabResponse, BaseManagerError>>;
|
|
246
246
|
/**
|
|
247
247
|
* Retrieves a list of vital sign groups resources.
|
|
248
248
|
*
|
|
@@ -255,7 +255,7 @@ export interface HealthManager {
|
|
|
255
255
|
* const vitalSignGroups = await sdk.health.getVitalSignGroups();
|
|
256
256
|
* ```
|
|
257
257
|
*/
|
|
258
|
-
getVitalSignGroups(request?: VitalSignGroupsRequest): Promise<BWellQueryResult<
|
|
258
|
+
getVitalSignGroups(request?: VitalSignGroupsRequest): Promise<BWellQueryResult<VitalSignGroupsResponse, BaseManagerError>>;
|
|
259
259
|
/**
|
|
260
260
|
* Retrieves a list of medication groups resources.
|
|
261
261
|
*
|
|
@@ -273,7 +273,7 @@ export interface HealthManager {
|
|
|
273
273
|
* );
|
|
274
274
|
* ```
|
|
275
275
|
*/
|
|
276
|
-
getMedicationGroups(request: MedicationGroupsRequest): Promise<BWellQueryResult<
|
|
276
|
+
getMedicationGroups(request: MedicationGroupsRequest): Promise<BWellQueryResult<MedicationGroupsResponse, BaseManagerError>>;
|
|
277
277
|
/**
|
|
278
278
|
* Retrieves a list of diagnostic report resources.
|
|
279
279
|
*
|
|
@@ -286,7 +286,7 @@ export interface HealthManager {
|
|
|
286
286
|
* const diagnosticReports = await sdk.health.getDiagnosticReports();
|
|
287
287
|
* ```
|
|
288
288
|
*/
|
|
289
|
-
getDiagnosticReports(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
289
|
+
getDiagnosticReports(request?: HealthDataRequest): Promise<BWellQueryResult<DiagnosticReportResponse, BaseManagerError>>;
|
|
290
290
|
/**
|
|
291
291
|
* Retrieves a list of diagnostic report lab groups resources.
|
|
292
292
|
*
|
|
@@ -304,7 +304,7 @@ export interface HealthManager {
|
|
|
304
304
|
* );
|
|
305
305
|
* ```
|
|
306
306
|
*/
|
|
307
|
-
getDiagnosticReportLabGroups(request: DiagnosticReportLabGroupsRequest): Promise<BWellQueryResult<
|
|
307
|
+
getDiagnosticReportLabGroups(request: DiagnosticReportLabGroupsRequest): Promise<BWellQueryResult<DiagnosticReportLabGroupsResponse, BaseManagerError>>;
|
|
308
308
|
/**
|
|
309
309
|
* Retrieves a list of care team resources.
|
|
310
310
|
*
|
|
@@ -317,7 +317,7 @@ export interface HealthManager {
|
|
|
317
317
|
* const careTeams = await sdk.health.getCareTeams();
|
|
318
318
|
* ```
|
|
319
319
|
*/
|
|
320
|
-
getCareTeams(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
320
|
+
getCareTeams(request?: HealthDataRequest): Promise<BWellQueryResult<CareTeamResponse, BaseManagerError>>;
|
|
321
321
|
/**
|
|
322
322
|
* Retrieves a list of medication dispense resources.
|
|
323
323
|
*
|
|
@@ -329,7 +329,7 @@ export interface HealthManager {
|
|
|
329
329
|
* const medicationDispenses = await sdk.health.getMedicationDispenses();
|
|
330
330
|
* ```
|
|
331
331
|
*/
|
|
332
|
-
getMedicationDispenses(request?: MedicationDispenseRequest): Promise<BWellQueryResult<
|
|
332
|
+
getMedicationDispenses(request?: MedicationDispenseRequest): Promise<BWellQueryResult<MedicationDispenseResponse, BaseManagerError>>;
|
|
333
333
|
/**
|
|
334
334
|
* Retrieves a list of medication request resources.
|
|
335
335
|
*
|
|
@@ -342,7 +342,7 @@ export interface HealthManager {
|
|
|
342
342
|
* const medicationRequests = await sdk.health.getMedicationRequests();
|
|
343
343
|
* ```
|
|
344
344
|
*/
|
|
345
|
-
getMedicationRequests(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
345
|
+
getMedicationRequests(request?: HealthDataRequest): Promise<BWellQueryResult<MedicationRequestResponse, BaseManagerError>>;
|
|
346
346
|
/**
|
|
347
347
|
* Retrieves a list of medication statement resources.
|
|
348
348
|
*
|
|
@@ -355,5 +355,5 @@ export interface HealthManager {
|
|
|
355
355
|
* const medicationStatements = await sdk.health.getMedicationStatements();
|
|
356
356
|
* ```
|
|
357
357
|
*/
|
|
358
|
-
getMedicationStatements(request?: HealthDataRequest): Promise<BWellQueryResult<
|
|
358
|
+
getMedicationStatements(request?: HealthDataRequest): Promise<BWellQueryResult<MedicationStatementResponse, BaseManagerError>>;
|
|
359
359
|
}
|
|
@@ -28,7 +28,7 @@ export type OauthAuthenticateRequest = {
|
|
|
28
28
|
*/
|
|
29
29
|
export type UsernamePasswordAuthenticateRequest = {
|
|
30
30
|
clientKey: string;
|
|
31
|
-
|
|
31
|
+
username: string;
|
|
32
32
|
password: string;
|
|
33
33
|
};
|
|
34
34
|
/**
|
|
@@ -85,7 +85,7 @@ export interface IdentityManager {
|
|
|
85
85
|
* ```typescript
|
|
86
86
|
* const tokens = await identityManager.authenticateWithUsernamePassword({
|
|
87
87
|
* clientKey: 'your-client-key',
|
|
88
|
-
*
|
|
88
|
+
* username: 'user@example.com',
|
|
89
89
|
* password: 'secure-password'
|
|
90
90
|
* });
|
|
91
91
|
* ```
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ValidationError } from "../../../errors/index.js";
|
|
2
2
|
import { LoggerProvider } from "../../../logger/index.js";
|
|
3
|
-
import
|
|
4
|
-
import type { AllergyIntoleranceBundle, AllergyIntoleranceGroupBundle, CarePlanGroupsResponse, CareTeamBundle, ConditionBundle, ConditionGroupBundle, DiagnosticReportBundle, DiagnosticReportLabGroupBundle, EncounterBundle, EncounterGroupBundle, HealthSummary, ImmunizationBundle, ImmunizationGroupBundle, LabBundle, LabGroupBundle, MedicationDispenseBundle, MedicationGroupBundle, MedicationRequestBundle, MedicationStatementBundle, ProcedureBundle, ProcedureGroupBundle, VitalSignBundle, VitalSignGroupBundle } from "../../../models/health-data/index.js";
|
|
3
|
+
import * as models from "../../../models/health-data/index.js";
|
|
5
4
|
import { BWellQueryResult } from "../../../results/index.js";
|
|
6
5
|
import { BaseManagerError } from "../../base/errors.js";
|
|
7
6
|
import * as health from "../../base/health-data/index.js";
|
|
@@ -11,28 +10,28 @@ import type { GraphQLSdk } from "../graphql-sdk/index.js";
|
|
|
11
10
|
export declare class GraphQLHealthManager extends GraphQLManager implements HealthManager {
|
|
12
11
|
#private;
|
|
13
12
|
constructor(sdk: GraphQLSdk, loggerProvider?: LoggerProvider);
|
|
14
|
-
getHealthSummary(): Promise<BWellQueryResult<HealthSummary, BaseManagerError>>;
|
|
15
|
-
getAllergyIntolerances(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
16
|
-
getConditions(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
17
|
-
getAllergyIntoleranceGroups(request?: health.AllergyIntoleranceGroupsRequest): Promise<BWellQueryResult<
|
|
18
|
-
getConditionGroups(request?: health.ConditionGroupsRequest): Promise<BWellQueryResult<
|
|
19
|
-
getLabGroups(request?: health.LabGroupsRequest): Promise<BWellQueryResult<
|
|
20
|
-
getCarePlans(request?: health.HealthDataRequest): Promise<BWellQueryResult<CarePlanResponse, BaseManagerError>>;
|
|
21
|
-
getCarePlanGroups(request?: health.CarePlanGroupsRequest): Promise<BWellQueryResult<CarePlanGroupsResponse, ValidationError | BaseManagerError>>;
|
|
22
|
-
getEncounters(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
23
|
-
getEncounterGroups(request?: health.EncounterGroupsRequest): Promise<BWellQueryResult<
|
|
24
|
-
getImmunizations(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
25
|
-
getImmunizationGroups(request?: health.ImmunizationGroupsRequest): Promise<BWellQueryResult<
|
|
26
|
-
getProcedures(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
27
|
-
getProcedureGroups(request?: health.ProcedureGroupsRequest): Promise<BWellQueryResult<
|
|
28
|
-
getVitalSigns(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
29
|
-
getLabs(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
30
|
-
getVitalSignGroups(request?: health.VitalSignGroupsRequest): Promise<BWellQueryResult<
|
|
31
|
-
getMedicationGroups(request?: health.MedicationGroupsRequest): Promise<BWellQueryResult<
|
|
32
|
-
getDiagnosticReportLabGroups(request?: health.DiagnosticReportLabGroupsRequest): Promise<BWellQueryResult<
|
|
33
|
-
getCareTeams(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
34
|
-
getMedicationDispenses(request?: health.MedicationDispenseRequest): Promise<BWellQueryResult<
|
|
35
|
-
getMedicationRequests(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
36
|
-
getMedicationStatements(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
37
|
-
getDiagnosticReports(request?: health.HealthDataRequest): Promise<BWellQueryResult<
|
|
13
|
+
getHealthSummary(): Promise<BWellQueryResult<models.HealthSummary, BaseManagerError>>;
|
|
14
|
+
getAllergyIntolerances(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.AllergyIntoleranceResponse, BaseManagerError>>;
|
|
15
|
+
getConditions(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.ConditionResponse, BaseManagerError>>;
|
|
16
|
+
getAllergyIntoleranceGroups(request?: health.AllergyIntoleranceGroupsRequest): Promise<BWellQueryResult<models.AllergyIntoleranceGroupsResponse, ValidationError | BaseManagerError>>;
|
|
17
|
+
getConditionGroups(request?: health.ConditionGroupsRequest): Promise<BWellQueryResult<models.ConditionGroupsResponse, ValidationError | BaseManagerError>>;
|
|
18
|
+
getLabGroups(request?: health.LabGroupsRequest): Promise<BWellQueryResult<models.LabGroupsResponse, ValidationError | BaseManagerError>>;
|
|
19
|
+
getCarePlans(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.CarePlanResponse, BaseManagerError>>;
|
|
20
|
+
getCarePlanGroups(request?: health.CarePlanGroupsRequest): Promise<BWellQueryResult<models.CarePlanGroupsResponse, ValidationError | BaseManagerError>>;
|
|
21
|
+
getEncounters(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.EncounterResponse, BaseManagerError>>;
|
|
22
|
+
getEncounterGroups(request?: health.EncounterGroupsRequest): Promise<BWellQueryResult<models.EncounterGroupsResponse, ValidationError | BaseManagerError>>;
|
|
23
|
+
getImmunizations(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.ImmunizationResponse, BaseManagerError>>;
|
|
24
|
+
getImmunizationGroups(request?: health.ImmunizationGroupsRequest): Promise<BWellQueryResult<models.ImmunizationGroupsResponse, ValidationError | BaseManagerError>>;
|
|
25
|
+
getProcedures(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.ProcedureResponse, BaseManagerError>>;
|
|
26
|
+
getProcedureGroups(request?: health.ProcedureGroupsRequest): Promise<BWellQueryResult<models.ProcedureGroupsResponse, ValidationError | BaseManagerError>>;
|
|
27
|
+
getVitalSigns(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.VitalSignResponse, BaseManagerError>>;
|
|
28
|
+
getLabs(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.LabResponse, BaseManagerError>>;
|
|
29
|
+
getVitalSignGroups(request?: health.VitalSignGroupsRequest): Promise<BWellQueryResult<models.VitalSignGroupsResponse, ValidationError | BaseManagerError>>;
|
|
30
|
+
getMedicationGroups(request?: health.MedicationGroupsRequest): Promise<BWellQueryResult<models.MedicationGroupsResponse, ValidationError | BaseManagerError>>;
|
|
31
|
+
getDiagnosticReportLabGroups(request?: health.DiagnosticReportLabGroupsRequest): Promise<BWellQueryResult<models.DiagnosticReportLabGroupsResponse, ValidationError | BaseManagerError>>;
|
|
32
|
+
getCareTeams(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.CareTeamResponse, BaseManagerError>>;
|
|
33
|
+
getMedicationDispenses(request?: health.MedicationDispenseRequest): Promise<BWellQueryResult<models.MedicationDispenseResponse, BaseManagerError>>;
|
|
34
|
+
getMedicationRequests(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.MedicationRequestResponse, BaseManagerError>>;
|
|
35
|
+
getMedicationStatements(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.MedicationStatementResponse, BaseManagerError>>;
|
|
36
|
+
getDiagnosticReports(request?: health.HealthDataRequest): Promise<BWellQueryResult<models.DiagnosticReportResponse, BaseManagerError>>;
|
|
38
37
|
}
|