@icanbwell/bwell-sdk-ts 1.42.0 → 1.42.1-rc.1760514283
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/__version__.d.ts +1 -1
- package/dist/__version__.js +1 -1
- package/dist/api/base/questionnaire/questionnaire-responses-request.d.ts +3 -1
- package/dist/api/base/questionnaire/questionnaire-responses-request.js +3 -0
- package/dist/api/graphql-api/questionnaire/get-questionnaire-responses-request-factory.js +3 -1
- package/dist/graphql/operations/index.d.ts +4 -4
- package/dist/graphql/operations/index.js +5 -4
- package/dist/graphql/operations/types.d.ts +50 -53
- package/dist/graphql/schema.d.ts +428 -32
- package/dist/graphql/schema.js +11 -7
- package/package.json +1 -1
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";
|
|
@@ -358,6 +352,16 @@ export var ResourceType;
|
|
|
358
352
|
ResourceType["Observation"] = "OBSERVATION";
|
|
359
353
|
ResourceType["Procedure"] = "PROCEDURE";
|
|
360
354
|
})(ResourceType || (ResourceType = {}));
|
|
355
|
+
/**
|
|
356
|
+
* SearchContext enum
|
|
357
|
+
* Defines the context in which a search is being performed, which determines
|
|
358
|
+
* which configurations and filters are applied to the search results.
|
|
359
|
+
*/
|
|
360
|
+
export var SearchContextEnum;
|
|
361
|
+
(function (SearchContextEnum) {
|
|
362
|
+
SearchContextEnum["CareSearch"] = "CARE_SEARCH";
|
|
363
|
+
SearchContextEnum["Proa"] = "PROA";
|
|
364
|
+
})(SearchContextEnum || (SearchContextEnum = {}));
|
|
361
365
|
export var SearchResultTypeEnum;
|
|
362
366
|
(function (SearchResultTypeEnum) {
|
|
363
367
|
SearchResultTypeEnum["Insurance"] = "INSURANCE";
|