@icanbwell/bwell-sdk-ts 1.31.0-rc.1750700031 → 1.32.1
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/next-question-request.d.ts +0 -8
- package/dist/api/base/questionnaire/next-question-request.js +0 -4
- package/dist/api/base/questionnaire/questionnaire-manager.d.ts +0 -1
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.d.ts +0 -7
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.js +0 -7
- package/dist/graphql/operations/index.d.ts +6 -6
- package/dist/graphql/operations/index.js +29 -28
- package/dist/graphql/operations/types.d.ts +175 -28
- package/dist/graphql/schema.d.ts +0 -28
- package/package.json +3 -3
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -186,12 +186,6 @@ 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
|
-
};
|
|
195
189
|
export type AddressG = {
|
|
196
190
|
__typename?: 'AddressG';
|
|
197
191
|
country: Scalars['String']['output'];
|
|
@@ -1124,10 +1118,6 @@ export type ConsentVerificationVerifiedWithReference = {
|
|
|
1124
1118
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1125
1119
|
type?: Maybe<Scalars['URI']['output']>;
|
|
1126
1120
|
};
|
|
1127
|
-
export type ContactField = {
|
|
1128
|
-
use: Scalars['String']['input'];
|
|
1129
|
-
value: Scalars['String']['input'];
|
|
1130
|
-
};
|
|
1131
1121
|
export type ContactPoint = {
|
|
1132
1122
|
__typename?: 'ContactPoint';
|
|
1133
1123
|
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
@@ -1828,15 +1818,6 @@ export type GetFhirSearchDateValue = {
|
|
|
1828
1818
|
/** the value for the parameter in the resource is greater than the provided value */
|
|
1829
1819
|
greaterThan?: InputMaybe<Scalars['Date']['input']>;
|
|
1830
1820
|
};
|
|
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
|
-
};
|
|
1840
1821
|
export type GoogleGeo = {
|
|
1841
1822
|
__typename?: 'GoogleGeo';
|
|
1842
1823
|
key: Scalars['String']['output'];
|
|
@@ -2940,7 +2921,6 @@ export type Mutation = {
|
|
|
2940
2921
|
disconnectConnection: DisconnectConnection;
|
|
2941
2922
|
exchangeAuthCode: AuthTokens;
|
|
2942
2923
|
findOrCreatePatient?: Maybe<Patient>;
|
|
2943
|
-
getTokenFromDemographics: AuthTokens;
|
|
2944
2924
|
interacted?: Maybe<Scalars['Boolean']['output']>;
|
|
2945
2925
|
itemInteracted?: Maybe<Scalars['Boolean']['output']>;
|
|
2946
2926
|
/**
|
|
@@ -3088,9 +3068,6 @@ export type MutationFindOrCreatePatientArgs = {
|
|
|
3088
3068
|
clientSlug?: InputMaybe<Scalars['String']['input']>;
|
|
3089
3069
|
patient?: InputMaybe<PatientInput>;
|
|
3090
3070
|
};
|
|
3091
|
-
export type MutationGetTokenFromDemographicsArgs = {
|
|
3092
|
-
userInfo: GetTokenFromDemographicsInput;
|
|
3093
|
-
};
|
|
3094
3071
|
export type MutationInteractedArgs = {
|
|
3095
3072
|
interaction?: InputMaybe<InteractionType>;
|
|
3096
3073
|
result_id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3197,11 +3174,6 @@ export type NameInput = {
|
|
|
3197
3174
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
3198
3175
|
use?: InputMaybe<Scalars['String']['input']>;
|
|
3199
3176
|
};
|
|
3200
|
-
export type NamedField = {
|
|
3201
|
-
firstName: Scalars['String']['input'];
|
|
3202
|
-
lastName: Scalars['String']['input'];
|
|
3203
|
-
middleName?: InputMaybe<Scalars['String']['input']>;
|
|
3204
|
-
};
|
|
3205
3177
|
export type Narrative = {
|
|
3206
3178
|
__typename?: 'Narrative';
|
|
3207
3179
|
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.
|
|
3
|
+
"version": "1.32.1",
|
|
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 --config=./jest.dev.config.js",
|
|
37
|
+
"test": "jest --runInBand",
|
|
38
|
+
"test:dev": "jest --runInBand --config=./jest.dev.config.js",
|
|
39
39
|
"pretest:ci": "npm run generate",
|
|
40
40
|
"test:ci": "npm run test -- --runInBand --verbose --coverage"
|
|
41
41
|
},
|