@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
|
@@ -70,7 +70,7 @@ export type NarrativeFieldsFragment = {
|
|
|
70
70
|
status: any | null;
|
|
71
71
|
};
|
|
72
72
|
export type PractitionerFieldsFragment = {
|
|
73
|
-
id: string;
|
|
73
|
+
id: string | null;
|
|
74
74
|
name: Array<{
|
|
75
75
|
text: string | null;
|
|
76
76
|
family: string | null;
|
|
@@ -3053,7 +3053,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3053
3053
|
} | null> | null;
|
|
3054
3054
|
member: {
|
|
3055
3055
|
__typename: 'Organization';
|
|
3056
|
-
id: string;
|
|
3056
|
+
id: string | null;
|
|
3057
3057
|
alias: string | null;
|
|
3058
3058
|
organizationName: string | null;
|
|
3059
3059
|
meta: {
|
|
@@ -3073,7 +3073,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3073
3073
|
} | null;
|
|
3074
3074
|
} | {
|
|
3075
3075
|
__typename: 'Practitioner';
|
|
3076
|
-
id: string;
|
|
3076
|
+
id: string | null;
|
|
3077
3077
|
name: Array<{
|
|
3078
3078
|
text: string | null;
|
|
3079
3079
|
family: string | null;
|
|
@@ -3097,7 +3097,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3097
3097
|
} | {
|
|
3098
3098
|
__typename: 'PractitionerRole';
|
|
3099
3099
|
resourceType: string | null;
|
|
3100
|
-
id: string;
|
|
3100
|
+
id: string | null;
|
|
3101
3101
|
active: boolean | null;
|
|
3102
3102
|
identifier: Array<{
|
|
3103
3103
|
id: string | null;
|
|
@@ -3113,7 +3113,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3113
3113
|
} | null;
|
|
3114
3114
|
} | null> | null;
|
|
3115
3115
|
practitioner: {
|
|
3116
|
-
id: string;
|
|
3116
|
+
id: string | null;
|
|
3117
3117
|
name: Array<{
|
|
3118
3118
|
text: string | null;
|
|
3119
3119
|
family: string | null;
|
|
@@ -3218,7 +3218,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3218
3218
|
display: string | null;
|
|
3219
3219
|
} | null> | null;
|
|
3220
3220
|
}> | null;
|
|
3221
|
-
location: {
|
|
3221
|
+
location: Array<{
|
|
3222
3222
|
name: string | null;
|
|
3223
3223
|
alias: Array<string | null> | null;
|
|
3224
3224
|
description: string | null;
|
|
@@ -3285,7 +3285,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3285
3285
|
} | null;
|
|
3286
3286
|
} | null;
|
|
3287
3287
|
} | null;
|
|
3288
|
-
} | null;
|
|
3288
|
+
} | null> | null;
|
|
3289
3289
|
endpoint: Array<{
|
|
3290
3290
|
name: string | null;
|
|
3291
3291
|
status: Types.EndpointStatus | null;
|
|
@@ -3323,7 +3323,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3323
3323
|
} | {
|
|
3324
3324
|
__typename: 'RelatedPerson';
|
|
3325
3325
|
resourceType: string | null;
|
|
3326
|
-
id: string;
|
|
3326
|
+
id: string | null;
|
|
3327
3327
|
active: boolean | null;
|
|
3328
3328
|
name: Array<{
|
|
3329
3329
|
text: string | null;
|
|
@@ -3372,16 +3372,14 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3372
3372
|
} | null> | null;
|
|
3373
3373
|
} | null> | null;
|
|
3374
3374
|
patient: {
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
} | null> | null;
|
|
3384
|
-
} | null;
|
|
3375
|
+
id: string;
|
|
3376
|
+
name: Array<{
|
|
3377
|
+
text: string | null;
|
|
3378
|
+
family: string | null;
|
|
3379
|
+
given: Array<string | null> | null;
|
|
3380
|
+
prefix: Array<string | null> | null;
|
|
3381
|
+
suffix: Array<string | null> | null;
|
|
3382
|
+
} | null> | null;
|
|
3385
3383
|
} | null;
|
|
3386
3384
|
} | {
|
|
3387
3385
|
__typename: 'ResourceReference';
|
|
@@ -3389,7 +3387,7 @@ export type CareTeamParticipantFieldsFragment = {
|
|
|
3389
3387
|
};
|
|
3390
3388
|
export type PractitionerRoleFieldsFragment = {
|
|
3391
3389
|
resourceType: string | null;
|
|
3392
|
-
id: string;
|
|
3390
|
+
id: string | null;
|
|
3393
3391
|
active: boolean | null;
|
|
3394
3392
|
identifier: Array<{
|
|
3395
3393
|
id: string | null;
|
|
@@ -3405,7 +3403,7 @@ export type PractitionerRoleFieldsFragment = {
|
|
|
3405
3403
|
} | null;
|
|
3406
3404
|
} | null> | null;
|
|
3407
3405
|
practitioner: {
|
|
3408
|
-
id: string;
|
|
3406
|
+
id: string | null;
|
|
3409
3407
|
name: Array<{
|
|
3410
3408
|
text: string | null;
|
|
3411
3409
|
family: string | null;
|
|
@@ -3510,7 +3508,7 @@ export type PractitionerRoleFieldsFragment = {
|
|
|
3510
3508
|
display: string | null;
|
|
3511
3509
|
} | null> | null;
|
|
3512
3510
|
}> | null;
|
|
3513
|
-
location: {
|
|
3511
|
+
location: Array<{
|
|
3514
3512
|
name: string | null;
|
|
3515
3513
|
alias: Array<string | null> | null;
|
|
3516
3514
|
description: string | null;
|
|
@@ -3577,7 +3575,7 @@ export type PractitionerRoleFieldsFragment = {
|
|
|
3577
3575
|
} | null;
|
|
3578
3576
|
} | null;
|
|
3579
3577
|
} | null;
|
|
3580
|
-
} | null;
|
|
3578
|
+
} | null> | null;
|
|
3581
3579
|
endpoint: Array<{
|
|
3582
3580
|
name: string | null;
|
|
3583
3581
|
status: Types.EndpointStatus | null;
|
|
@@ -3705,7 +3703,7 @@ export type EndpointFieldsFragment = {
|
|
|
3705
3703
|
};
|
|
3706
3704
|
export type RelatedPersonFieldsFragment = {
|
|
3707
3705
|
resourceType: string | null;
|
|
3708
|
-
id: string;
|
|
3706
|
+
id: string | null;
|
|
3709
3707
|
active: boolean | null;
|
|
3710
3708
|
name: Array<{
|
|
3711
3709
|
text: string | null;
|
|
@@ -3754,16 +3752,14 @@ export type RelatedPersonFieldsFragment = {
|
|
|
3754
3752
|
} | null> | null;
|
|
3755
3753
|
} | null> | null;
|
|
3756
3754
|
patient: {
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
} | null> | null;
|
|
3766
|
-
} | null;
|
|
3755
|
+
id: string;
|
|
3756
|
+
name: Array<{
|
|
3757
|
+
text: string | null;
|
|
3758
|
+
family: string | null;
|
|
3759
|
+
given: Array<string | null> | null;
|
|
3760
|
+
prefix: Array<string | null> | null;
|
|
3761
|
+
suffix: Array<string | null> | null;
|
|
3762
|
+
} | null> | null;
|
|
3767
3763
|
} | null;
|
|
3768
3764
|
};
|
|
3769
3765
|
export type PatientFieldsFragment = {
|
|
@@ -7231,7 +7227,7 @@ export type GetAllergyIntolerancesQueryResults = {
|
|
|
7231
7227
|
display: string | null;
|
|
7232
7228
|
} | null;
|
|
7233
7229
|
recorder: {
|
|
7234
|
-
id: string;
|
|
7230
|
+
id: string | null;
|
|
7235
7231
|
name: Array<{
|
|
7236
7232
|
text: string | null;
|
|
7237
7233
|
family: string | null;
|
|
@@ -8869,7 +8865,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8869
8865
|
} | null> | null;
|
|
8870
8866
|
member: {
|
|
8871
8867
|
__typename: 'Organization';
|
|
8872
|
-
id: string;
|
|
8868
|
+
id: string | null;
|
|
8873
8869
|
alias: string | null;
|
|
8874
8870
|
organizationName: string | null;
|
|
8875
8871
|
meta: {
|
|
@@ -8889,7 +8885,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8889
8885
|
} | null;
|
|
8890
8886
|
} | {
|
|
8891
8887
|
__typename: 'Practitioner';
|
|
8892
|
-
id: string;
|
|
8888
|
+
id: string | null;
|
|
8893
8889
|
name: Array<{
|
|
8894
8890
|
text: string | null;
|
|
8895
8891
|
family: string | null;
|
|
@@ -8913,7 +8909,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8913
8909
|
} | {
|
|
8914
8910
|
__typename: 'PractitionerRole';
|
|
8915
8911
|
resourceType: string | null;
|
|
8916
|
-
id: string;
|
|
8912
|
+
id: string | null;
|
|
8917
8913
|
active: boolean | null;
|
|
8918
8914
|
identifier: Array<{
|
|
8919
8915
|
id: string | null;
|
|
@@ -8929,7 +8925,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
8929
8925
|
} | null;
|
|
8930
8926
|
} | null> | null;
|
|
8931
8927
|
practitioner: {
|
|
8932
|
-
id: string;
|
|
8928
|
+
id: string | null;
|
|
8933
8929
|
name: Array<{
|
|
8934
8930
|
text: string | null;
|
|
8935
8931
|
family: string | null;
|
|
@@ -9034,7 +9030,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
9034
9030
|
display: string | null;
|
|
9035
9031
|
} | null> | null;
|
|
9036
9032
|
}> | null;
|
|
9037
|
-
location: {
|
|
9033
|
+
location: Array<{
|
|
9038
9034
|
name: string | null;
|
|
9039
9035
|
alias: Array<string | null> | null;
|
|
9040
9036
|
description: string | null;
|
|
@@ -9101,7 +9097,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
9101
9097
|
} | null;
|
|
9102
9098
|
} | null;
|
|
9103
9099
|
} | null;
|
|
9104
|
-
} | null;
|
|
9100
|
+
} | null> | null;
|
|
9105
9101
|
endpoint: Array<{
|
|
9106
9102
|
name: string | null;
|
|
9107
9103
|
status: Types.EndpointStatus | null;
|
|
@@ -9139,7 +9135,7 @@ export type GetCareTeamsQueryResults = {
|
|
|
9139
9135
|
} | {
|
|
9140
9136
|
__typename: 'RelatedPerson';
|
|
9141
9137
|
resourceType: string | null;
|
|
9142
|
-
id: string;
|
|
9138
|
+
id: string | null;
|
|
9143
9139
|
active: boolean | null;
|
|
9144
9140
|
name: Array<{
|
|
9145
9141
|
text: string | null;
|
|
@@ -9188,16 +9184,14 @@ export type GetCareTeamsQueryResults = {
|
|
|
9188
9184
|
} | null> | null;
|
|
9189
9185
|
} | null> | null;
|
|
9190
9186
|
patient: {
|
|
9191
|
-
|
|
9192
|
-
|
|
9193
|
-
|
|
9194
|
-
|
|
9195
|
-
|
|
9196
|
-
|
|
9197
|
-
|
|
9198
|
-
|
|
9199
|
-
} | null> | null;
|
|
9200
|
-
} | null;
|
|
9187
|
+
id: string;
|
|
9188
|
+
name: Array<{
|
|
9189
|
+
text: string | null;
|
|
9190
|
+
family: string | null;
|
|
9191
|
+
given: Array<string | null> | null;
|
|
9192
|
+
prefix: Array<string | null> | null;
|
|
9193
|
+
suffix: Array<string | null> | null;
|
|
9194
|
+
} | null> | null;
|
|
9201
9195
|
} | null;
|
|
9202
9196
|
} | {
|
|
9203
9197
|
__typename: 'ResourceReference';
|
|
@@ -16247,7 +16241,7 @@ export type GetMedicationRequestQueryResults = {
|
|
|
16247
16241
|
} | null> | null;
|
|
16248
16242
|
} | null;
|
|
16249
16243
|
requester: {
|
|
16250
|
-
id: string;
|
|
16244
|
+
id: string | null;
|
|
16251
16245
|
name: Array<{
|
|
16252
16246
|
text: string | null;
|
|
16253
16247
|
family: string | null;
|
|
@@ -16270,7 +16264,7 @@ export type GetMedicationRequestQueryResults = {
|
|
|
16270
16264
|
} | null> | null;
|
|
16271
16265
|
} | null;
|
|
16272
16266
|
recorder: {
|
|
16273
|
-
id: string;
|
|
16267
|
+
id: string | null;
|
|
16274
16268
|
name: Array<{
|
|
16275
16269
|
text: string | null;
|
|
16276
16270
|
family: string | null;
|
|
@@ -18518,9 +18512,12 @@ export type GetQuestionnaireResponsesQueryVariables = Types.Exact<{
|
|
|
18518
18512
|
questionnaire: Types.InputMaybe<Types.SearchReference>;
|
|
18519
18513
|
status: Types.InputMaybe<Types.SearchToken>;
|
|
18520
18514
|
patient: Types.InputMaybe<Types.SearchReference>;
|
|
18515
|
+
tag: Types.InputMaybe<Types.SearchToken>;
|
|
18516
|
+
total: Types.InputMaybe<Types.TotalType>;
|
|
18521
18517
|
}>;
|
|
18522
18518
|
export type GetQuestionnaireResponsesQueryResults = {
|
|
18523
18519
|
questionnaireResponses: {
|
|
18520
|
+
total: number | null;
|
|
18524
18521
|
entry: Array<{
|
|
18525
18522
|
resource: {
|
|
18526
18523
|
resourceType: string | null;
|