@icanbwell/bwell-sdk-ts 1.33.0 → 1.34.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/README.md +1 -1
- package/dist/__version__.d.ts +1 -1
- package/dist/__version__.js +1 -1
- package/dist/api/base/health-data/health-manager.d.ts +12 -4
- package/dist/api/graphql-api/healthdata/graphql-get-medication-dispense-bwell-response-factory.d.ts +10 -0
- package/dist/api/graphql-api/healthdata/graphql-get-medication-dispense-bwell-response-factory.js +35 -0
- package/dist/api/graphql-api/healthdata/graphql-get-medication-request-bwell-response-factory.d.ts +10 -0
- package/dist/api/graphql-api/healthdata/graphql-get-medication-request-bwell-response-factory.js +35 -0
- package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +6 -1
- package/dist/api/graphql-api/healthdata/graphql-health-manager.js +13 -7
- package/dist/graphql/operations/index.d.ts +13 -8
- package/dist/graphql/operations/index.js +129 -77
- package/dist/graphql/operations/types.d.ts +312 -589
- package/dist/graphql/schema.d.ts +16 -2
- package/dist/graphql/schema.js +15 -0
- package/package.json +1 -1
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -482,6 +482,7 @@ export type BootstrapConfiguration = {
|
|
|
482
482
|
clientSlug: Scalars['String']['output'];
|
|
483
483
|
embeddableConfiguration: EmbeddableConfiguration;
|
|
484
484
|
environment: Scalars['String']['output'];
|
|
485
|
+
externalMedicationTaskActivityIds: Array<Scalars['String']['output']>;
|
|
485
486
|
featureFlagConfiguration: FeatureFlagConfiguration;
|
|
486
487
|
frontendEnvironment: FrontendEnvironment;
|
|
487
488
|
googleGeo: GoogleGeo;
|
|
@@ -1125,7 +1126,7 @@ export type ConsentVerificationVerifiedWithReference = {
|
|
|
1125
1126
|
type?: Maybe<Scalars['URI']['output']>;
|
|
1126
1127
|
};
|
|
1127
1128
|
export type ContactField = {
|
|
1128
|
-
use:
|
|
1129
|
+
use: ContactUseType;
|
|
1129
1130
|
value: Scalars['String']['input'];
|
|
1130
1131
|
};
|
|
1131
1132
|
export type ContactPoint = {
|
|
@@ -1150,6 +1151,12 @@ export type ContactPointInput = {
|
|
|
1150
1151
|
/** Can define enum */
|
|
1151
1152
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
1152
1153
|
};
|
|
1154
|
+
/** Contact.use options */
|
|
1155
|
+
export declare enum ContactUseType {
|
|
1156
|
+
Home = "home",
|
|
1157
|
+
Mobile = "mobile",
|
|
1158
|
+
Work = "work"
|
|
1159
|
+
}
|
|
1153
1160
|
/** Supported ISO 4217 CurrencyCodes */
|
|
1154
1161
|
export declare enum CurrencyCode {
|
|
1155
1162
|
Usd = "USD"
|
|
@@ -1814,6 +1821,13 @@ export declare enum GenderEnum {
|
|
|
1814
1821
|
Other = "OTHER",
|
|
1815
1822
|
Unknown = "UNKNOWN"
|
|
1816
1823
|
}
|
|
1824
|
+
/** Gender options */
|
|
1825
|
+
export declare enum GenderType {
|
|
1826
|
+
Female = "female",
|
|
1827
|
+
Male = "male",
|
|
1828
|
+
Other = "other",
|
|
1829
|
+
Unknown = "unknown"
|
|
1830
|
+
}
|
|
1817
1831
|
/** Generate an oauth url */
|
|
1818
1832
|
export type GenerateUrl = {
|
|
1819
1833
|
__typename?: 'GenerateUrl';
|
|
@@ -1832,7 +1846,7 @@ export type GetTokenFromDemographicsInput = {
|
|
|
1832
1846
|
address: AddressField;
|
|
1833
1847
|
birthDate: Scalars['String']['input'];
|
|
1834
1848
|
email: Scalars['String']['input'];
|
|
1835
|
-
gender:
|
|
1849
|
+
gender: GenderType;
|
|
1836
1850
|
mobile: ContactField;
|
|
1837
1851
|
name: NamedField;
|
|
1838
1852
|
userIdentifier: Scalars['String']['input'];
|
package/dist/graphql/schema.js
CHANGED
|
@@ -77,6 +77,13 @@ export var ConsentStatus;
|
|
|
77
77
|
ConsentStatus["Proposed"] = "PROPOSED";
|
|
78
78
|
ConsentStatus["Rejected"] = "REJECTED";
|
|
79
79
|
})(ConsentStatus || (ConsentStatus = {}));
|
|
80
|
+
/** Contact.use options */
|
|
81
|
+
export var ContactUseType;
|
|
82
|
+
(function (ContactUseType) {
|
|
83
|
+
ContactUseType["Home"] = "home";
|
|
84
|
+
ContactUseType["Mobile"] = "mobile";
|
|
85
|
+
ContactUseType["Work"] = "work";
|
|
86
|
+
})(ContactUseType || (ContactUseType = {}));
|
|
80
87
|
/** Supported ISO 4217 CurrencyCodes */
|
|
81
88
|
export var CurrencyCode;
|
|
82
89
|
(function (CurrencyCode) {
|
|
@@ -198,6 +205,14 @@ export var GenderEnum;
|
|
|
198
205
|
GenderEnum["Other"] = "OTHER";
|
|
199
206
|
GenderEnum["Unknown"] = "UNKNOWN";
|
|
200
207
|
})(GenderEnum || (GenderEnum = {}));
|
|
208
|
+
/** Gender options */
|
|
209
|
+
export var GenderType;
|
|
210
|
+
(function (GenderType) {
|
|
211
|
+
GenderType["Female"] = "female";
|
|
212
|
+
GenderType["Male"] = "male";
|
|
213
|
+
GenderType["Other"] = "other";
|
|
214
|
+
GenderType["Unknown"] = "unknown";
|
|
215
|
+
})(GenderType || (GenderType = {}));
|
|
201
216
|
export var HealthSummaryCategory;
|
|
202
217
|
(function (HealthSummaryCategory) {
|
|
203
218
|
HealthSummaryCategory["AllergyIntolerance"] = "ALLERGY_INTOLERANCE";
|