@icanbwell/bwell-sdk-ts 1.37.0 → 1.38.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/dist/__version__.d.ts +1 -1
- package/dist/__version__.js +1 -1
- package/dist/api/base/questionnaire/index.d.ts +2 -1
- package/dist/api/base/questionnaire/index.js +1 -0
- package/dist/api/base/questionnaire/questionnaire-manager.d.ts +13 -2
- package/dist/api/base/questionnaire/questionnaire-responses-request.d.ts +28 -0
- package/dist/api/base/questionnaire/questionnaire-responses-request.js +46 -0
- package/dist/api/graphql-api/questionnaire/get-questionnaire-responses-request-factory.d.ts +9 -0
- package/dist/api/graphql-api/questionnaire/get-questionnaire-responses-request-factory.js +20 -0
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.d.ts +11 -2
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.js +27 -3
- package/dist/api/graphql-api/questionnaire/index.d.ts +1 -0
- package/dist/api/graphql-api/questionnaire/index.js +1 -0
- package/dist/graphql/operations/index.d.ts +12 -4
- package/dist/graphql/operations/index.js +29 -1
- package/dist/graphql/operations/types.d.ts +939 -0
- package/dist/graphql/schema.d.ts +44 -49
- package/dist/graphql/schema.js +1 -15
- package/package.json +1 -1
|
@@ -2871,6 +2871,14 @@ export type TimingRepeatFieldsFragment = {
|
|
|
2871
2871
|
}> | null;
|
|
2872
2872
|
};
|
|
2873
2873
|
export type CareTeamParticipantFieldsFragment = {
|
|
2874
|
+
role: Array<{
|
|
2875
|
+
text: string | null;
|
|
2876
|
+
coding: Array<{
|
|
2877
|
+
system: any | null;
|
|
2878
|
+
code: any | null;
|
|
2879
|
+
display: string | null;
|
|
2880
|
+
} | null> | null;
|
|
2881
|
+
} | null> | null;
|
|
2874
2882
|
member: {
|
|
2875
2883
|
__typename: 'Organization';
|
|
2876
2884
|
id: string | null;
|
|
@@ -2986,6 +2994,7 @@ export type DocumentReferenceFieldsFragment = {
|
|
|
2986
2994
|
contentType: string | null;
|
|
2987
2995
|
data: string | null;
|
|
2988
2996
|
url: string | null;
|
|
2997
|
+
title: string | null;
|
|
2989
2998
|
} | null;
|
|
2990
2999
|
format: {
|
|
2991
3000
|
system: any | null;
|
|
@@ -7992,6 +8001,14 @@ export type GetCareTeamsQueryResults = {
|
|
|
7992
8001
|
} | null> | null;
|
|
7993
8002
|
} | null> | null;
|
|
7994
8003
|
participant: Array<{
|
|
8004
|
+
role: Array<{
|
|
8005
|
+
text: string | null;
|
|
8006
|
+
coding: Array<{
|
|
8007
|
+
system: any | null;
|
|
8008
|
+
code: any | null;
|
|
8009
|
+
display: string | null;
|
|
8010
|
+
} | null> | null;
|
|
8011
|
+
} | null> | null;
|
|
7995
8012
|
member: {
|
|
7996
8013
|
__typename: 'Organization';
|
|
7997
8014
|
id: string | null;
|
|
@@ -8724,6 +8741,7 @@ export type GetDocumentReferencesQueryResults = {
|
|
|
8724
8741
|
contentType: string | null;
|
|
8725
8742
|
data: string | null;
|
|
8726
8743
|
url: string | null;
|
|
8744
|
+
title: string | null;
|
|
8727
8745
|
} | null;
|
|
8728
8746
|
format: {
|
|
8729
8747
|
system: any | null;
|
|
@@ -16710,6 +16728,927 @@ export type NextQuestionMutationResults = {
|
|
|
16710
16728
|
} | null;
|
|
16711
16729
|
} | null;
|
|
16712
16730
|
};
|
|
16731
|
+
export type GetQuestionnaireResponsesQueryVariables = Types.Exact<{
|
|
16732
|
+
id: Types.InputMaybe<Types.SearchString>;
|
|
16733
|
+
lastUpdated: Types.InputMaybe<Types.SearchDate>;
|
|
16734
|
+
sort: Types.InputMaybe<Array<Types.InputMaybe<Types.Scalars['String']['input']>> | Types.InputMaybe<Types.Scalars['String']['input']>>;
|
|
16735
|
+
pageSize: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
16736
|
+
page: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
16737
|
+
questionnaire: Types.InputMaybe<Types.SearchReference>;
|
|
16738
|
+
status: Types.InputMaybe<Types.SearchToken>;
|
|
16739
|
+
patient: Types.InputMaybe<Types.SearchReference>;
|
|
16740
|
+
}>;
|
|
16741
|
+
export type GetQuestionnaireResponsesQueryResults = {
|
|
16742
|
+
questionnaireResponses: {
|
|
16743
|
+
entry: Array<{
|
|
16744
|
+
resource: {
|
|
16745
|
+
resourceType: string | null;
|
|
16746
|
+
id: string;
|
|
16747
|
+
questionnaire: any | null;
|
|
16748
|
+
status: any | null;
|
|
16749
|
+
meta: {
|
|
16750
|
+
versionId: string | null;
|
|
16751
|
+
lastUpdated: any | null;
|
|
16752
|
+
source: any | null;
|
|
16753
|
+
security: Array<{
|
|
16754
|
+
system: any | null;
|
|
16755
|
+
code: any | null;
|
|
16756
|
+
display: string | null;
|
|
16757
|
+
} | null> | null;
|
|
16758
|
+
tag: Array<{
|
|
16759
|
+
system: any | null;
|
|
16760
|
+
code: any | null;
|
|
16761
|
+
display: string | null;
|
|
16762
|
+
} | null> | null;
|
|
16763
|
+
} | null;
|
|
16764
|
+
identifier: {
|
|
16765
|
+
id: string | null;
|
|
16766
|
+
system: any | null;
|
|
16767
|
+
value: string | null;
|
|
16768
|
+
type: {
|
|
16769
|
+
text: string | null;
|
|
16770
|
+
coding: Array<{
|
|
16771
|
+
system: any | null;
|
|
16772
|
+
code: any | null;
|
|
16773
|
+
display: string | null;
|
|
16774
|
+
} | null> | null;
|
|
16775
|
+
} | null;
|
|
16776
|
+
} | null;
|
|
16777
|
+
item: Array<{
|
|
16778
|
+
linkId: string | null;
|
|
16779
|
+
text: string | null;
|
|
16780
|
+
item: Array<{
|
|
16781
|
+
linkId: string | null;
|
|
16782
|
+
text: string | null;
|
|
16783
|
+
item: Array<{
|
|
16784
|
+
linkId: string | null;
|
|
16785
|
+
text: string | null;
|
|
16786
|
+
answer: Array<{
|
|
16787
|
+
valueBoolean: boolean | null;
|
|
16788
|
+
valueDecimal: number | null;
|
|
16789
|
+
valueInteger: number | null;
|
|
16790
|
+
valueDate: any | null;
|
|
16791
|
+
valueDateTime: any | null;
|
|
16792
|
+
valueString: string | null;
|
|
16793
|
+
valueUri: any | null;
|
|
16794
|
+
valueAttachment: {
|
|
16795
|
+
contentType: any | null;
|
|
16796
|
+
data: any | null;
|
|
16797
|
+
url: any | null;
|
|
16798
|
+
title: string | null;
|
|
16799
|
+
} | null;
|
|
16800
|
+
valueCoding: {
|
|
16801
|
+
system: any | null;
|
|
16802
|
+
code: any | null;
|
|
16803
|
+
display: string | null;
|
|
16804
|
+
} | null;
|
|
16805
|
+
valueQuantity: {
|
|
16806
|
+
value: number | null;
|
|
16807
|
+
unit: string | null;
|
|
16808
|
+
code: any | null;
|
|
16809
|
+
comparator: any | null;
|
|
16810
|
+
system: any | null;
|
|
16811
|
+
} | null;
|
|
16812
|
+
valueReference: {
|
|
16813
|
+
reference: string | null;
|
|
16814
|
+
type: any | null;
|
|
16815
|
+
display: string | null;
|
|
16816
|
+
extension: Array<{
|
|
16817
|
+
url: any | null;
|
|
16818
|
+
valueBoolean: boolean | null;
|
|
16819
|
+
valueInteger: number | null;
|
|
16820
|
+
valueString: string | null;
|
|
16821
|
+
valueDateTime: any | null;
|
|
16822
|
+
valueCode: any | null;
|
|
16823
|
+
valueUri: any | null;
|
|
16824
|
+
valueExpression: {
|
|
16825
|
+
description: string | null;
|
|
16826
|
+
name: string | null;
|
|
16827
|
+
language: any | null;
|
|
16828
|
+
expression: string | null;
|
|
16829
|
+
reference: any | null;
|
|
16830
|
+
} | null;
|
|
16831
|
+
valueCodeableConcept: {
|
|
16832
|
+
text: string | null;
|
|
16833
|
+
coding: Array<{
|
|
16834
|
+
system: any | null;
|
|
16835
|
+
code: any | null;
|
|
16836
|
+
display: string | null;
|
|
16837
|
+
} | null> | null;
|
|
16838
|
+
} | null;
|
|
16839
|
+
valueReference: {
|
|
16840
|
+
reference: string | null;
|
|
16841
|
+
type: any | null;
|
|
16842
|
+
display: string | null;
|
|
16843
|
+
} | null;
|
|
16844
|
+
} | null> | null;
|
|
16845
|
+
} | null;
|
|
16846
|
+
} | null> | null;
|
|
16847
|
+
} | null> | null;
|
|
16848
|
+
answer: Array<{
|
|
16849
|
+
valueBoolean: boolean | null;
|
|
16850
|
+
valueDecimal: number | null;
|
|
16851
|
+
valueInteger: number | null;
|
|
16852
|
+
valueDate: any | null;
|
|
16853
|
+
valueDateTime: any | null;
|
|
16854
|
+
valueString: string | null;
|
|
16855
|
+
valueUri: any | null;
|
|
16856
|
+
valueAttachment: {
|
|
16857
|
+
contentType: any | null;
|
|
16858
|
+
data: any | null;
|
|
16859
|
+
url: any | null;
|
|
16860
|
+
title: string | null;
|
|
16861
|
+
} | null;
|
|
16862
|
+
valueCoding: {
|
|
16863
|
+
system: any | null;
|
|
16864
|
+
code: any | null;
|
|
16865
|
+
display: string | null;
|
|
16866
|
+
} | null;
|
|
16867
|
+
valueQuantity: {
|
|
16868
|
+
value: number | null;
|
|
16869
|
+
unit: string | null;
|
|
16870
|
+
code: any | null;
|
|
16871
|
+
comparator: any | null;
|
|
16872
|
+
system: any | null;
|
|
16873
|
+
} | null;
|
|
16874
|
+
valueReference: {
|
|
16875
|
+
reference: string | null;
|
|
16876
|
+
type: any | null;
|
|
16877
|
+
display: string | null;
|
|
16878
|
+
extension: Array<{
|
|
16879
|
+
url: any | null;
|
|
16880
|
+
valueBoolean: boolean | null;
|
|
16881
|
+
valueInteger: number | null;
|
|
16882
|
+
valueString: string | null;
|
|
16883
|
+
valueDateTime: any | null;
|
|
16884
|
+
valueCode: any | null;
|
|
16885
|
+
valueUri: any | null;
|
|
16886
|
+
valueExpression: {
|
|
16887
|
+
description: string | null;
|
|
16888
|
+
name: string | null;
|
|
16889
|
+
language: any | null;
|
|
16890
|
+
expression: string | null;
|
|
16891
|
+
reference: any | null;
|
|
16892
|
+
} | null;
|
|
16893
|
+
valueCodeableConcept: {
|
|
16894
|
+
text: string | null;
|
|
16895
|
+
coding: Array<{
|
|
16896
|
+
system: any | null;
|
|
16897
|
+
code: any | null;
|
|
16898
|
+
display: string | null;
|
|
16899
|
+
} | null> | null;
|
|
16900
|
+
} | null;
|
|
16901
|
+
valueReference: {
|
|
16902
|
+
reference: string | null;
|
|
16903
|
+
type: any | null;
|
|
16904
|
+
display: string | null;
|
|
16905
|
+
} | null;
|
|
16906
|
+
} | null> | null;
|
|
16907
|
+
} | null;
|
|
16908
|
+
} | null> | null;
|
|
16909
|
+
} | null> | null;
|
|
16910
|
+
answer: Array<{
|
|
16911
|
+
valueBoolean: boolean | null;
|
|
16912
|
+
valueDecimal: number | null;
|
|
16913
|
+
valueInteger: number | null;
|
|
16914
|
+
valueDate: any | null;
|
|
16915
|
+
valueDateTime: any | null;
|
|
16916
|
+
valueString: string | null;
|
|
16917
|
+
valueUri: any | null;
|
|
16918
|
+
valueAttachment: {
|
|
16919
|
+
contentType: any | null;
|
|
16920
|
+
data: any | null;
|
|
16921
|
+
url: any | null;
|
|
16922
|
+
title: string | null;
|
|
16923
|
+
} | null;
|
|
16924
|
+
valueCoding: {
|
|
16925
|
+
system: any | null;
|
|
16926
|
+
code: any | null;
|
|
16927
|
+
display: string | null;
|
|
16928
|
+
} | null;
|
|
16929
|
+
valueQuantity: {
|
|
16930
|
+
value: number | null;
|
|
16931
|
+
unit: string | null;
|
|
16932
|
+
code: any | null;
|
|
16933
|
+
comparator: any | null;
|
|
16934
|
+
system: any | null;
|
|
16935
|
+
} | null;
|
|
16936
|
+
valueReference: {
|
|
16937
|
+
reference: string | null;
|
|
16938
|
+
type: any | null;
|
|
16939
|
+
display: string | null;
|
|
16940
|
+
extension: Array<{
|
|
16941
|
+
url: any | null;
|
|
16942
|
+
valueBoolean: boolean | null;
|
|
16943
|
+
valueInteger: number | null;
|
|
16944
|
+
valueString: string | null;
|
|
16945
|
+
valueDateTime: any | null;
|
|
16946
|
+
valueCode: any | null;
|
|
16947
|
+
valueUri: any | null;
|
|
16948
|
+
valueExpression: {
|
|
16949
|
+
description: string | null;
|
|
16950
|
+
name: string | null;
|
|
16951
|
+
language: any | null;
|
|
16952
|
+
expression: string | null;
|
|
16953
|
+
reference: any | null;
|
|
16954
|
+
} | null;
|
|
16955
|
+
valueCodeableConcept: {
|
|
16956
|
+
text: string | null;
|
|
16957
|
+
coding: Array<{
|
|
16958
|
+
system: any | null;
|
|
16959
|
+
code: any | null;
|
|
16960
|
+
display: string | null;
|
|
16961
|
+
} | null> | null;
|
|
16962
|
+
} | null;
|
|
16963
|
+
valueReference: {
|
|
16964
|
+
reference: string | null;
|
|
16965
|
+
type: any | null;
|
|
16966
|
+
display: string | null;
|
|
16967
|
+
} | null;
|
|
16968
|
+
} | null> | null;
|
|
16969
|
+
} | null;
|
|
16970
|
+
} | null> | null;
|
|
16971
|
+
} | null> | null;
|
|
16972
|
+
contained: Array<{
|
|
16973
|
+
resourceType: string | null;
|
|
16974
|
+
id: string;
|
|
16975
|
+
name: string | null;
|
|
16976
|
+
title: string | null;
|
|
16977
|
+
status: any | null;
|
|
16978
|
+
description: any | null;
|
|
16979
|
+
meta: {
|
|
16980
|
+
versionId: string | null;
|
|
16981
|
+
lastUpdated: any | null;
|
|
16982
|
+
source: any | null;
|
|
16983
|
+
security: Array<{
|
|
16984
|
+
system: any | null;
|
|
16985
|
+
code: any | null;
|
|
16986
|
+
display: string | null;
|
|
16987
|
+
} | null> | null;
|
|
16988
|
+
tag: Array<{
|
|
16989
|
+
system: any | null;
|
|
16990
|
+
code: any | null;
|
|
16991
|
+
display: string | null;
|
|
16992
|
+
} | null> | null;
|
|
16993
|
+
} | null;
|
|
16994
|
+
identifier: Array<{
|
|
16995
|
+
id: string | null;
|
|
16996
|
+
system: any | null;
|
|
16997
|
+
value: string | null;
|
|
16998
|
+
type: {
|
|
16999
|
+
text: string | null;
|
|
17000
|
+
coding: Array<{
|
|
17001
|
+
system: any | null;
|
|
17002
|
+
code: any | null;
|
|
17003
|
+
display: string | null;
|
|
17004
|
+
} | null> | null;
|
|
17005
|
+
} | null;
|
|
17006
|
+
} | null> | null;
|
|
17007
|
+
useContext: Array<{
|
|
17008
|
+
id: string | null;
|
|
17009
|
+
code: {
|
|
17010
|
+
system: any | null;
|
|
17011
|
+
code: any | null;
|
|
17012
|
+
display: string | null;
|
|
17013
|
+
} | null;
|
|
17014
|
+
valueReference: {
|
|
17015
|
+
id: string | null;
|
|
17016
|
+
reference: string | null;
|
|
17017
|
+
display: string | null;
|
|
17018
|
+
identifier: {
|
|
17019
|
+
id: string | null;
|
|
17020
|
+
system: any | null;
|
|
17021
|
+
value: string | null;
|
|
17022
|
+
type: {
|
|
17023
|
+
text: string | null;
|
|
17024
|
+
coding: Array<{
|
|
17025
|
+
system: any | null;
|
|
17026
|
+
code: any | null;
|
|
17027
|
+
display: string | null;
|
|
17028
|
+
} | null> | null;
|
|
17029
|
+
} | null;
|
|
17030
|
+
} | null;
|
|
17031
|
+
} | null;
|
|
17032
|
+
} | null> | null;
|
|
17033
|
+
item: Array<{
|
|
17034
|
+
linkId: string | null;
|
|
17035
|
+
prefix: string | null;
|
|
17036
|
+
text: string | null;
|
|
17037
|
+
type: any | null;
|
|
17038
|
+
enableBehavior: any | null;
|
|
17039
|
+
required: boolean | null;
|
|
17040
|
+
repeats: boolean | null;
|
|
17041
|
+
readOnly: boolean | null;
|
|
17042
|
+
maxLength: number | null;
|
|
17043
|
+
item: Array<{
|
|
17044
|
+
linkId: string | null;
|
|
17045
|
+
prefix: string | null;
|
|
17046
|
+
text: string | null;
|
|
17047
|
+
type: any | null;
|
|
17048
|
+
enableBehavior: any | null;
|
|
17049
|
+
required: boolean | null;
|
|
17050
|
+
repeats: boolean | null;
|
|
17051
|
+
readOnly: boolean | null;
|
|
17052
|
+
maxLength: number | null;
|
|
17053
|
+
item: Array<{
|
|
17054
|
+
linkId: string | null;
|
|
17055
|
+
prefix: string | null;
|
|
17056
|
+
text: string | null;
|
|
17057
|
+
type: any | null;
|
|
17058
|
+
enableBehavior: any | null;
|
|
17059
|
+
required: boolean | null;
|
|
17060
|
+
repeats: boolean | null;
|
|
17061
|
+
readOnly: boolean | null;
|
|
17062
|
+
maxLength: number | null;
|
|
17063
|
+
extension: Array<{
|
|
17064
|
+
url: any | null;
|
|
17065
|
+
valueBoolean: boolean | null;
|
|
17066
|
+
valueInteger: number | null;
|
|
17067
|
+
valueString: string | null;
|
|
17068
|
+
valueDateTime: any | null;
|
|
17069
|
+
valueCode: any | null;
|
|
17070
|
+
valueUri: any | null;
|
|
17071
|
+
valueExpression: {
|
|
17072
|
+
description: string | null;
|
|
17073
|
+
name: string | null;
|
|
17074
|
+
language: any | null;
|
|
17075
|
+
expression: string | null;
|
|
17076
|
+
reference: any | null;
|
|
17077
|
+
} | null;
|
|
17078
|
+
valueCodeableConcept: {
|
|
17079
|
+
text: string | null;
|
|
17080
|
+
coding: Array<{
|
|
17081
|
+
system: any | null;
|
|
17082
|
+
code: any | null;
|
|
17083
|
+
display: string | null;
|
|
17084
|
+
} | null> | null;
|
|
17085
|
+
} | null;
|
|
17086
|
+
valueReference: {
|
|
17087
|
+
reference: string | null;
|
|
17088
|
+
type: any | null;
|
|
17089
|
+
display: string | null;
|
|
17090
|
+
} | null;
|
|
17091
|
+
extension: Array<{
|
|
17092
|
+
url: any | null;
|
|
17093
|
+
valueBoolean: boolean | null;
|
|
17094
|
+
valueInteger: number | null;
|
|
17095
|
+
valueString: string | null;
|
|
17096
|
+
valueDateTime: any | null;
|
|
17097
|
+
valueCode: any | null;
|
|
17098
|
+
valueUri: any | null;
|
|
17099
|
+
valueExpression: {
|
|
17100
|
+
description: string | null;
|
|
17101
|
+
name: string | null;
|
|
17102
|
+
language: any | null;
|
|
17103
|
+
expression: string | null;
|
|
17104
|
+
reference: any | null;
|
|
17105
|
+
} | null;
|
|
17106
|
+
valueCodeableConcept: {
|
|
17107
|
+
text: string | null;
|
|
17108
|
+
coding: Array<{
|
|
17109
|
+
system: any | null;
|
|
17110
|
+
code: any | null;
|
|
17111
|
+
display: string | null;
|
|
17112
|
+
} | null> | null;
|
|
17113
|
+
} | null;
|
|
17114
|
+
valueReference: {
|
|
17115
|
+
reference: string | null;
|
|
17116
|
+
type: any | null;
|
|
17117
|
+
display: string | null;
|
|
17118
|
+
} | null;
|
|
17119
|
+
} | null> | null;
|
|
17120
|
+
} | null> | null;
|
|
17121
|
+
enableWhen: Array<{
|
|
17122
|
+
question: string | null;
|
|
17123
|
+
operator: any | null;
|
|
17124
|
+
answerBoolean: boolean | null;
|
|
17125
|
+
answerDecimal: number | null;
|
|
17126
|
+
answerInteger: number | null;
|
|
17127
|
+
answerDate: any | null;
|
|
17128
|
+
answerDateTime: any | null;
|
|
17129
|
+
answerTime: any | null;
|
|
17130
|
+
answerString: string | null;
|
|
17131
|
+
answerCoding: {
|
|
17132
|
+
system: any | null;
|
|
17133
|
+
code: any | null;
|
|
17134
|
+
display: string | null;
|
|
17135
|
+
} | null;
|
|
17136
|
+
answerQuantity: {
|
|
17137
|
+
value: number | null;
|
|
17138
|
+
unit: string | null;
|
|
17139
|
+
code: any | null;
|
|
17140
|
+
comparator: any | null;
|
|
17141
|
+
system: any | null;
|
|
17142
|
+
} | null;
|
|
17143
|
+
answerReference: {
|
|
17144
|
+
reference: string | null;
|
|
17145
|
+
type: any | null;
|
|
17146
|
+
display: string | null;
|
|
17147
|
+
} | null;
|
|
17148
|
+
} | null> | null;
|
|
17149
|
+
answerOption: Array<{
|
|
17150
|
+
valueInteger: number | null;
|
|
17151
|
+
valueDate: any | null;
|
|
17152
|
+
valueString: string | null;
|
|
17153
|
+
initialSelected: boolean | null;
|
|
17154
|
+
valueCoding: {
|
|
17155
|
+
system: any | null;
|
|
17156
|
+
code: any | null;
|
|
17157
|
+
display: string | null;
|
|
17158
|
+
} | null;
|
|
17159
|
+
valueReference: {
|
|
17160
|
+
reference: string | null;
|
|
17161
|
+
type: any | null;
|
|
17162
|
+
display: string | null;
|
|
17163
|
+
extension: Array<{
|
|
17164
|
+
url: any | null;
|
|
17165
|
+
valueBoolean: boolean | null;
|
|
17166
|
+
valueInteger: number | null;
|
|
17167
|
+
valueString: string | null;
|
|
17168
|
+
valueDateTime: any | null;
|
|
17169
|
+
valueCode: any | null;
|
|
17170
|
+
valueUri: any | null;
|
|
17171
|
+
valueExpression: {
|
|
17172
|
+
description: string | null;
|
|
17173
|
+
name: string | null;
|
|
17174
|
+
language: any | null;
|
|
17175
|
+
expression: string | null;
|
|
17176
|
+
reference: any | null;
|
|
17177
|
+
} | null;
|
|
17178
|
+
valueCodeableConcept: {
|
|
17179
|
+
text: string | null;
|
|
17180
|
+
coding: Array<{
|
|
17181
|
+
system: any | null;
|
|
17182
|
+
code: any | null;
|
|
17183
|
+
display: string | null;
|
|
17184
|
+
} | null> | null;
|
|
17185
|
+
} | null;
|
|
17186
|
+
valueReference: {
|
|
17187
|
+
reference: string | null;
|
|
17188
|
+
type: any | null;
|
|
17189
|
+
display: string | null;
|
|
17190
|
+
} | null;
|
|
17191
|
+
} | null> | null;
|
|
17192
|
+
} | null;
|
|
17193
|
+
} | null> | null;
|
|
17194
|
+
initial: Array<{
|
|
17195
|
+
valueBoolean: boolean | null;
|
|
17196
|
+
valueDecimal: number | null;
|
|
17197
|
+
valueInteger: number | null;
|
|
17198
|
+
valueDate: any | null;
|
|
17199
|
+
valueDateTime: any | null;
|
|
17200
|
+
valueString: string | null;
|
|
17201
|
+
valueUri: any | null;
|
|
17202
|
+
valueAttachment: {
|
|
17203
|
+
contentType: any | null;
|
|
17204
|
+
data: any | null;
|
|
17205
|
+
url: any | null;
|
|
17206
|
+
title: string | null;
|
|
17207
|
+
} | null;
|
|
17208
|
+
valueCoding: {
|
|
17209
|
+
system: any | null;
|
|
17210
|
+
code: any | null;
|
|
17211
|
+
display: string | null;
|
|
17212
|
+
} | null;
|
|
17213
|
+
valueQuantity: {
|
|
17214
|
+
value: number | null;
|
|
17215
|
+
unit: string | null;
|
|
17216
|
+
code: any | null;
|
|
17217
|
+
comparator: any | null;
|
|
17218
|
+
system: any | null;
|
|
17219
|
+
} | null;
|
|
17220
|
+
valueReference: {
|
|
17221
|
+
reference: string | null;
|
|
17222
|
+
type: any | null;
|
|
17223
|
+
display: string | null;
|
|
17224
|
+
extension: Array<{
|
|
17225
|
+
url: any | null;
|
|
17226
|
+
valueBoolean: boolean | null;
|
|
17227
|
+
valueInteger: number | null;
|
|
17228
|
+
valueString: string | null;
|
|
17229
|
+
valueDateTime: any | null;
|
|
17230
|
+
valueCode: any | null;
|
|
17231
|
+
valueUri: any | null;
|
|
17232
|
+
valueExpression: {
|
|
17233
|
+
description: string | null;
|
|
17234
|
+
name: string | null;
|
|
17235
|
+
language: any | null;
|
|
17236
|
+
expression: string | null;
|
|
17237
|
+
reference: any | null;
|
|
17238
|
+
} | null;
|
|
17239
|
+
valueCodeableConcept: {
|
|
17240
|
+
text: string | null;
|
|
17241
|
+
coding: Array<{
|
|
17242
|
+
system: any | null;
|
|
17243
|
+
code: any | null;
|
|
17244
|
+
display: string | null;
|
|
17245
|
+
} | null> | null;
|
|
17246
|
+
} | null;
|
|
17247
|
+
valueReference: {
|
|
17248
|
+
reference: string | null;
|
|
17249
|
+
type: any | null;
|
|
17250
|
+
display: string | null;
|
|
17251
|
+
} | null;
|
|
17252
|
+
} | null> | null;
|
|
17253
|
+
} | null;
|
|
17254
|
+
} | null> | null;
|
|
17255
|
+
} | null> | null;
|
|
17256
|
+
extension: Array<{
|
|
17257
|
+
url: any | null;
|
|
17258
|
+
valueBoolean: boolean | null;
|
|
17259
|
+
valueInteger: number | null;
|
|
17260
|
+
valueString: string | null;
|
|
17261
|
+
valueDateTime: any | null;
|
|
17262
|
+
valueCode: any | null;
|
|
17263
|
+
valueUri: any | null;
|
|
17264
|
+
valueExpression: {
|
|
17265
|
+
description: string | null;
|
|
17266
|
+
name: string | null;
|
|
17267
|
+
language: any | null;
|
|
17268
|
+
expression: string | null;
|
|
17269
|
+
reference: any | null;
|
|
17270
|
+
} | null;
|
|
17271
|
+
valueCodeableConcept: {
|
|
17272
|
+
text: string | null;
|
|
17273
|
+
coding: Array<{
|
|
17274
|
+
system: any | null;
|
|
17275
|
+
code: any | null;
|
|
17276
|
+
display: string | null;
|
|
17277
|
+
} | null> | null;
|
|
17278
|
+
} | null;
|
|
17279
|
+
valueReference: {
|
|
17280
|
+
reference: string | null;
|
|
17281
|
+
type: any | null;
|
|
17282
|
+
display: string | null;
|
|
17283
|
+
} | null;
|
|
17284
|
+
extension: Array<{
|
|
17285
|
+
url: any | null;
|
|
17286
|
+
valueBoolean: boolean | null;
|
|
17287
|
+
valueInteger: number | null;
|
|
17288
|
+
valueString: string | null;
|
|
17289
|
+
valueDateTime: any | null;
|
|
17290
|
+
valueCode: any | null;
|
|
17291
|
+
valueUri: any | null;
|
|
17292
|
+
valueExpression: {
|
|
17293
|
+
description: string | null;
|
|
17294
|
+
name: string | null;
|
|
17295
|
+
language: any | null;
|
|
17296
|
+
expression: string | null;
|
|
17297
|
+
reference: any | null;
|
|
17298
|
+
} | null;
|
|
17299
|
+
valueCodeableConcept: {
|
|
17300
|
+
text: string | null;
|
|
17301
|
+
coding: Array<{
|
|
17302
|
+
system: any | null;
|
|
17303
|
+
code: any | null;
|
|
17304
|
+
display: string | null;
|
|
17305
|
+
} | null> | null;
|
|
17306
|
+
} | null;
|
|
17307
|
+
valueReference: {
|
|
17308
|
+
reference: string | null;
|
|
17309
|
+
type: any | null;
|
|
17310
|
+
display: string | null;
|
|
17311
|
+
} | null;
|
|
17312
|
+
} | null> | null;
|
|
17313
|
+
} | null> | null;
|
|
17314
|
+
enableWhen: Array<{
|
|
17315
|
+
question: string | null;
|
|
17316
|
+
operator: any | null;
|
|
17317
|
+
answerBoolean: boolean | null;
|
|
17318
|
+
answerDecimal: number | null;
|
|
17319
|
+
answerInteger: number | null;
|
|
17320
|
+
answerDate: any | null;
|
|
17321
|
+
answerDateTime: any | null;
|
|
17322
|
+
answerTime: any | null;
|
|
17323
|
+
answerString: string | null;
|
|
17324
|
+
answerCoding: {
|
|
17325
|
+
system: any | null;
|
|
17326
|
+
code: any | null;
|
|
17327
|
+
display: string | null;
|
|
17328
|
+
} | null;
|
|
17329
|
+
answerQuantity: {
|
|
17330
|
+
value: number | null;
|
|
17331
|
+
unit: string | null;
|
|
17332
|
+
code: any | null;
|
|
17333
|
+
comparator: any | null;
|
|
17334
|
+
system: any | null;
|
|
17335
|
+
} | null;
|
|
17336
|
+
answerReference: {
|
|
17337
|
+
reference: string | null;
|
|
17338
|
+
type: any | null;
|
|
17339
|
+
display: string | null;
|
|
17340
|
+
} | null;
|
|
17341
|
+
} | null> | null;
|
|
17342
|
+
answerOption: Array<{
|
|
17343
|
+
valueInteger: number | null;
|
|
17344
|
+
valueDate: any | null;
|
|
17345
|
+
valueString: string | null;
|
|
17346
|
+
initialSelected: boolean | null;
|
|
17347
|
+
valueCoding: {
|
|
17348
|
+
system: any | null;
|
|
17349
|
+
code: any | null;
|
|
17350
|
+
display: string | null;
|
|
17351
|
+
} | null;
|
|
17352
|
+
valueReference: {
|
|
17353
|
+
reference: string | null;
|
|
17354
|
+
type: any | null;
|
|
17355
|
+
display: string | null;
|
|
17356
|
+
extension: Array<{
|
|
17357
|
+
url: any | null;
|
|
17358
|
+
valueBoolean: boolean | null;
|
|
17359
|
+
valueInteger: number | null;
|
|
17360
|
+
valueString: string | null;
|
|
17361
|
+
valueDateTime: any | null;
|
|
17362
|
+
valueCode: any | null;
|
|
17363
|
+
valueUri: any | null;
|
|
17364
|
+
valueExpression: {
|
|
17365
|
+
description: string | null;
|
|
17366
|
+
name: string | null;
|
|
17367
|
+
language: any | null;
|
|
17368
|
+
expression: string | null;
|
|
17369
|
+
reference: any | null;
|
|
17370
|
+
} | null;
|
|
17371
|
+
valueCodeableConcept: {
|
|
17372
|
+
text: string | null;
|
|
17373
|
+
coding: Array<{
|
|
17374
|
+
system: any | null;
|
|
17375
|
+
code: any | null;
|
|
17376
|
+
display: string | null;
|
|
17377
|
+
} | null> | null;
|
|
17378
|
+
} | null;
|
|
17379
|
+
valueReference: {
|
|
17380
|
+
reference: string | null;
|
|
17381
|
+
type: any | null;
|
|
17382
|
+
display: string | null;
|
|
17383
|
+
} | null;
|
|
17384
|
+
} | null> | null;
|
|
17385
|
+
} | null;
|
|
17386
|
+
} | null> | null;
|
|
17387
|
+
initial: Array<{
|
|
17388
|
+
valueBoolean: boolean | null;
|
|
17389
|
+
valueDecimal: number | null;
|
|
17390
|
+
valueInteger: number | null;
|
|
17391
|
+
valueDate: any | null;
|
|
17392
|
+
valueDateTime: any | null;
|
|
17393
|
+
valueString: string | null;
|
|
17394
|
+
valueUri: any | null;
|
|
17395
|
+
valueAttachment: {
|
|
17396
|
+
contentType: any | null;
|
|
17397
|
+
data: any | null;
|
|
17398
|
+
url: any | null;
|
|
17399
|
+
title: string | null;
|
|
17400
|
+
} | null;
|
|
17401
|
+
valueCoding: {
|
|
17402
|
+
system: any | null;
|
|
17403
|
+
code: any | null;
|
|
17404
|
+
display: string | null;
|
|
17405
|
+
} | null;
|
|
17406
|
+
valueQuantity: {
|
|
17407
|
+
value: number | null;
|
|
17408
|
+
unit: string | null;
|
|
17409
|
+
code: any | null;
|
|
17410
|
+
comparator: any | null;
|
|
17411
|
+
system: any | null;
|
|
17412
|
+
} | null;
|
|
17413
|
+
valueReference: {
|
|
17414
|
+
reference: string | null;
|
|
17415
|
+
type: any | null;
|
|
17416
|
+
display: string | null;
|
|
17417
|
+
extension: Array<{
|
|
17418
|
+
url: any | null;
|
|
17419
|
+
valueBoolean: boolean | null;
|
|
17420
|
+
valueInteger: number | null;
|
|
17421
|
+
valueString: string | null;
|
|
17422
|
+
valueDateTime: any | null;
|
|
17423
|
+
valueCode: any | null;
|
|
17424
|
+
valueUri: any | null;
|
|
17425
|
+
valueExpression: {
|
|
17426
|
+
description: string | null;
|
|
17427
|
+
name: string | null;
|
|
17428
|
+
language: any | null;
|
|
17429
|
+
expression: string | null;
|
|
17430
|
+
reference: any | null;
|
|
17431
|
+
} | null;
|
|
17432
|
+
valueCodeableConcept: {
|
|
17433
|
+
text: string | null;
|
|
17434
|
+
coding: Array<{
|
|
17435
|
+
system: any | null;
|
|
17436
|
+
code: any | null;
|
|
17437
|
+
display: string | null;
|
|
17438
|
+
} | null> | null;
|
|
17439
|
+
} | null;
|
|
17440
|
+
valueReference: {
|
|
17441
|
+
reference: string | null;
|
|
17442
|
+
type: any | null;
|
|
17443
|
+
display: string | null;
|
|
17444
|
+
} | null;
|
|
17445
|
+
} | null> | null;
|
|
17446
|
+
} | null;
|
|
17447
|
+
} | null> | null;
|
|
17448
|
+
} | null> | null;
|
|
17449
|
+
extension: Array<{
|
|
17450
|
+
url: any | null;
|
|
17451
|
+
valueBoolean: boolean | null;
|
|
17452
|
+
valueInteger: number | null;
|
|
17453
|
+
valueString: string | null;
|
|
17454
|
+
valueDateTime: any | null;
|
|
17455
|
+
valueCode: any | null;
|
|
17456
|
+
valueUri: any | null;
|
|
17457
|
+
valueExpression: {
|
|
17458
|
+
description: string | null;
|
|
17459
|
+
name: string | null;
|
|
17460
|
+
language: any | null;
|
|
17461
|
+
expression: string | null;
|
|
17462
|
+
reference: any | null;
|
|
17463
|
+
} | null;
|
|
17464
|
+
valueCodeableConcept: {
|
|
17465
|
+
text: string | null;
|
|
17466
|
+
coding: Array<{
|
|
17467
|
+
system: any | null;
|
|
17468
|
+
code: any | null;
|
|
17469
|
+
display: string | null;
|
|
17470
|
+
} | null> | null;
|
|
17471
|
+
} | null;
|
|
17472
|
+
valueReference: {
|
|
17473
|
+
reference: string | null;
|
|
17474
|
+
type: any | null;
|
|
17475
|
+
display: string | null;
|
|
17476
|
+
} | null;
|
|
17477
|
+
extension: Array<{
|
|
17478
|
+
url: any | null;
|
|
17479
|
+
valueBoolean: boolean | null;
|
|
17480
|
+
valueInteger: number | null;
|
|
17481
|
+
valueString: string | null;
|
|
17482
|
+
valueDateTime: any | null;
|
|
17483
|
+
valueCode: any | null;
|
|
17484
|
+
valueUri: any | null;
|
|
17485
|
+
valueExpression: {
|
|
17486
|
+
description: string | null;
|
|
17487
|
+
name: string | null;
|
|
17488
|
+
language: any | null;
|
|
17489
|
+
expression: string | null;
|
|
17490
|
+
reference: any | null;
|
|
17491
|
+
} | null;
|
|
17492
|
+
valueCodeableConcept: {
|
|
17493
|
+
text: string | null;
|
|
17494
|
+
coding: Array<{
|
|
17495
|
+
system: any | null;
|
|
17496
|
+
code: any | null;
|
|
17497
|
+
display: string | null;
|
|
17498
|
+
} | null> | null;
|
|
17499
|
+
} | null;
|
|
17500
|
+
valueReference: {
|
|
17501
|
+
reference: string | null;
|
|
17502
|
+
type: any | null;
|
|
17503
|
+
display: string | null;
|
|
17504
|
+
} | null;
|
|
17505
|
+
} | null> | null;
|
|
17506
|
+
} | null> | null;
|
|
17507
|
+
enableWhen: Array<{
|
|
17508
|
+
question: string | null;
|
|
17509
|
+
operator: any | null;
|
|
17510
|
+
answerBoolean: boolean | null;
|
|
17511
|
+
answerDecimal: number | null;
|
|
17512
|
+
answerInteger: number | null;
|
|
17513
|
+
answerDate: any | null;
|
|
17514
|
+
answerDateTime: any | null;
|
|
17515
|
+
answerTime: any | null;
|
|
17516
|
+
answerString: string | null;
|
|
17517
|
+
answerCoding: {
|
|
17518
|
+
system: any | null;
|
|
17519
|
+
code: any | null;
|
|
17520
|
+
display: string | null;
|
|
17521
|
+
} | null;
|
|
17522
|
+
answerQuantity: {
|
|
17523
|
+
value: number | null;
|
|
17524
|
+
unit: string | null;
|
|
17525
|
+
code: any | null;
|
|
17526
|
+
comparator: any | null;
|
|
17527
|
+
system: any | null;
|
|
17528
|
+
} | null;
|
|
17529
|
+
answerReference: {
|
|
17530
|
+
reference: string | null;
|
|
17531
|
+
type: any | null;
|
|
17532
|
+
display: string | null;
|
|
17533
|
+
} | null;
|
|
17534
|
+
} | null> | null;
|
|
17535
|
+
answerOption: Array<{
|
|
17536
|
+
valueInteger: number | null;
|
|
17537
|
+
valueDate: any | null;
|
|
17538
|
+
valueString: string | null;
|
|
17539
|
+
initialSelected: boolean | null;
|
|
17540
|
+
valueCoding: {
|
|
17541
|
+
system: any | null;
|
|
17542
|
+
code: any | null;
|
|
17543
|
+
display: string | null;
|
|
17544
|
+
} | null;
|
|
17545
|
+
valueReference: {
|
|
17546
|
+
reference: string | null;
|
|
17547
|
+
type: any | null;
|
|
17548
|
+
display: string | null;
|
|
17549
|
+
extension: Array<{
|
|
17550
|
+
url: any | null;
|
|
17551
|
+
valueBoolean: boolean | null;
|
|
17552
|
+
valueInteger: number | null;
|
|
17553
|
+
valueString: string | null;
|
|
17554
|
+
valueDateTime: any | null;
|
|
17555
|
+
valueCode: any | null;
|
|
17556
|
+
valueUri: any | null;
|
|
17557
|
+
valueExpression: {
|
|
17558
|
+
description: string | null;
|
|
17559
|
+
name: string | null;
|
|
17560
|
+
language: any | null;
|
|
17561
|
+
expression: string | null;
|
|
17562
|
+
reference: any | null;
|
|
17563
|
+
} | null;
|
|
17564
|
+
valueCodeableConcept: {
|
|
17565
|
+
text: string | null;
|
|
17566
|
+
coding: Array<{
|
|
17567
|
+
system: any | null;
|
|
17568
|
+
code: any | null;
|
|
17569
|
+
display: string | null;
|
|
17570
|
+
} | null> | null;
|
|
17571
|
+
} | null;
|
|
17572
|
+
valueReference: {
|
|
17573
|
+
reference: string | null;
|
|
17574
|
+
type: any | null;
|
|
17575
|
+
display: string | null;
|
|
17576
|
+
} | null;
|
|
17577
|
+
} | null> | null;
|
|
17578
|
+
} | null;
|
|
17579
|
+
} | null> | null;
|
|
17580
|
+
initial: Array<{
|
|
17581
|
+
valueBoolean: boolean | null;
|
|
17582
|
+
valueDecimal: number | null;
|
|
17583
|
+
valueInteger: number | null;
|
|
17584
|
+
valueDate: any | null;
|
|
17585
|
+
valueDateTime: any | null;
|
|
17586
|
+
valueString: string | null;
|
|
17587
|
+
valueUri: any | null;
|
|
17588
|
+
valueAttachment: {
|
|
17589
|
+
contentType: any | null;
|
|
17590
|
+
data: any | null;
|
|
17591
|
+
url: any | null;
|
|
17592
|
+
title: string | null;
|
|
17593
|
+
} | null;
|
|
17594
|
+
valueCoding: {
|
|
17595
|
+
system: any | null;
|
|
17596
|
+
code: any | null;
|
|
17597
|
+
display: string | null;
|
|
17598
|
+
} | null;
|
|
17599
|
+
valueQuantity: {
|
|
17600
|
+
value: number | null;
|
|
17601
|
+
unit: string | null;
|
|
17602
|
+
code: any | null;
|
|
17603
|
+
comparator: any | null;
|
|
17604
|
+
system: any | null;
|
|
17605
|
+
} | null;
|
|
17606
|
+
valueReference: {
|
|
17607
|
+
reference: string | null;
|
|
17608
|
+
type: any | null;
|
|
17609
|
+
display: string | null;
|
|
17610
|
+
extension: Array<{
|
|
17611
|
+
url: any | null;
|
|
17612
|
+
valueBoolean: boolean | null;
|
|
17613
|
+
valueInteger: number | null;
|
|
17614
|
+
valueString: string | null;
|
|
17615
|
+
valueDateTime: any | null;
|
|
17616
|
+
valueCode: any | null;
|
|
17617
|
+
valueUri: any | null;
|
|
17618
|
+
valueExpression: {
|
|
17619
|
+
description: string | null;
|
|
17620
|
+
name: string | null;
|
|
17621
|
+
language: any | null;
|
|
17622
|
+
expression: string | null;
|
|
17623
|
+
reference: any | null;
|
|
17624
|
+
} | null;
|
|
17625
|
+
valueCodeableConcept: {
|
|
17626
|
+
text: string | null;
|
|
17627
|
+
coding: Array<{
|
|
17628
|
+
system: any | null;
|
|
17629
|
+
code: any | null;
|
|
17630
|
+
display: string | null;
|
|
17631
|
+
} | null> | null;
|
|
17632
|
+
} | null;
|
|
17633
|
+
valueReference: {
|
|
17634
|
+
reference: string | null;
|
|
17635
|
+
type: any | null;
|
|
17636
|
+
display: string | null;
|
|
17637
|
+
} | null;
|
|
17638
|
+
} | null> | null;
|
|
17639
|
+
} | null;
|
|
17640
|
+
} | null> | null;
|
|
17641
|
+
} | null> | null;
|
|
17642
|
+
} | {} | null> | null;
|
|
17643
|
+
subject: {
|
|
17644
|
+
reference: string | null;
|
|
17645
|
+
type: any | null;
|
|
17646
|
+
display: string | null;
|
|
17647
|
+
} | null;
|
|
17648
|
+
} | null;
|
|
17649
|
+
} | null> | null;
|
|
17650
|
+
} | null;
|
|
17651
|
+
};
|
|
16713
17652
|
export type ProviderSearchQueryVariables = Types.Exact<{
|
|
16714
17653
|
client: Types.InputMaybe<Array<Types.InputMaybe<Types.Client>> | Types.InputMaybe<Types.Client>>;
|
|
16715
17654
|
searchTerm: Types.InputMaybe<Types.Scalars['String']['input']>;
|