@icanbwell/bwell-sdk-ts 1.31.0-rc.1750689089 → 1.31.0-rc.1750700031
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/graphql/schema.d.ts +28 -0
- package/package.json +3 -3
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -186,6 +186,12 @@ export type Address = {
|
|
|
186
186
|
type?: Maybe<Scalars['Code']['output']>;
|
|
187
187
|
use?: Maybe<Scalars['Code']['output']>;
|
|
188
188
|
};
|
|
189
|
+
export type AddressField = {
|
|
190
|
+
city: Scalars['String']['input'];
|
|
191
|
+
line: Scalars['String']['input'];
|
|
192
|
+
postalCode: Scalars['String']['input'];
|
|
193
|
+
state: Scalars['String']['input'];
|
|
194
|
+
};
|
|
189
195
|
export type AddressG = {
|
|
190
196
|
__typename?: 'AddressG';
|
|
191
197
|
country: Scalars['String']['output'];
|
|
@@ -1118,6 +1124,10 @@ export type ConsentVerificationVerifiedWithReference = {
|
|
|
1118
1124
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1119
1125
|
type?: Maybe<Scalars['URI']['output']>;
|
|
1120
1126
|
};
|
|
1127
|
+
export type ContactField = {
|
|
1128
|
+
use: Scalars['String']['input'];
|
|
1129
|
+
value: Scalars['String']['input'];
|
|
1130
|
+
};
|
|
1121
1131
|
export type ContactPoint = {
|
|
1122
1132
|
__typename?: 'ContactPoint';
|
|
1123
1133
|
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
@@ -1818,6 +1828,15 @@ export type GetFhirSearchDateValue = {
|
|
|
1818
1828
|
/** the value for the parameter in the resource is greater than the provided value */
|
|
1819
1829
|
greaterThan?: InputMaybe<Scalars['Date']['input']>;
|
|
1820
1830
|
};
|
|
1831
|
+
export type GetTokenFromDemographicsInput = {
|
|
1832
|
+
address: AddressField;
|
|
1833
|
+
birthDate: Scalars['String']['input'];
|
|
1834
|
+
email: Scalars['String']['input'];
|
|
1835
|
+
gender: Scalars['String']['input'];
|
|
1836
|
+
mobile: ContactField;
|
|
1837
|
+
name: NamedField;
|
|
1838
|
+
userIdentifier: Scalars['String']['input'];
|
|
1839
|
+
};
|
|
1821
1840
|
export type GoogleGeo = {
|
|
1822
1841
|
__typename?: 'GoogleGeo';
|
|
1823
1842
|
key: Scalars['String']['output'];
|
|
@@ -2921,6 +2940,7 @@ export type Mutation = {
|
|
|
2921
2940
|
disconnectConnection: DisconnectConnection;
|
|
2922
2941
|
exchangeAuthCode: AuthTokens;
|
|
2923
2942
|
findOrCreatePatient?: Maybe<Patient>;
|
|
2943
|
+
getTokenFromDemographics: AuthTokens;
|
|
2924
2944
|
interacted?: Maybe<Scalars['Boolean']['output']>;
|
|
2925
2945
|
itemInteracted?: Maybe<Scalars['Boolean']['output']>;
|
|
2926
2946
|
/**
|
|
@@ -3068,6 +3088,9 @@ export type MutationFindOrCreatePatientArgs = {
|
|
|
3068
3088
|
clientSlug?: InputMaybe<Scalars['String']['input']>;
|
|
3069
3089
|
patient?: InputMaybe<PatientInput>;
|
|
3070
3090
|
};
|
|
3091
|
+
export type MutationGetTokenFromDemographicsArgs = {
|
|
3092
|
+
userInfo: GetTokenFromDemographicsInput;
|
|
3093
|
+
};
|
|
3071
3094
|
export type MutationInteractedArgs = {
|
|
3072
3095
|
interaction?: InputMaybe<InteractionType>;
|
|
3073
3096
|
result_id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3174,6 +3197,11 @@ export type NameInput = {
|
|
|
3174
3197
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
3175
3198
|
use?: InputMaybe<Scalars['String']['input']>;
|
|
3176
3199
|
};
|
|
3200
|
+
export type NamedField = {
|
|
3201
|
+
firstName: Scalars['String']['input'];
|
|
3202
|
+
lastName: Scalars['String']['input'];
|
|
3203
|
+
middleName?: InputMaybe<Scalars['String']['input']>;
|
|
3204
|
+
};
|
|
3177
3205
|
export type Narrative = {
|
|
3178
3206
|
__typename?: 'Narrative';
|
|
3179
3207
|
div?: Maybe<Scalars['XHTML']['output']>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@icanbwell/bwell-sdk-ts",
|
|
3
|
-
"version": "1.31.0-rc.
|
|
3
|
+
"version": "1.31.0-rc.1750700031",
|
|
4
4
|
"description": "b.well TypeScript SDK",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"prebuild": "npm run clean",
|
|
35
35
|
"prettier": "prettier",
|
|
36
36
|
"prepublishOnly": "npm run build",
|
|
37
|
-
"test": "jest
|
|
38
|
-
"test:dev": "jest --
|
|
37
|
+
"test": "jest",
|
|
38
|
+
"test:dev": "jest --config=./jest.dev.config.js",
|
|
39
39
|
"pretest:ci": "npm run generate",
|
|
40
40
|
"test:ci": "npm run test -- --runInBand --verbose --coverage"
|
|
41
41
|
},
|