@icanbwell/bwell-sdk-ts 1.44.0 → 1.45.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 +1 -0
- package/dist/api/base/questionnaire/index.js +1 -0
- package/dist/api/base/questionnaire/questionnaire-manager.d.ts +14 -4
- package/dist/api/base/questionnaire/questionnaires-request.d.ts +18 -0
- package/dist/api/base/questionnaire/questionnaires-request.js +42 -0
- package/dist/api/graphql-api/questionnaire/get-questionnaires-request-factory.d.ts +6 -0
- package/dist/api/graphql-api/questionnaire/get-questionnaires-request-factory.js +16 -0
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.d.ts +3 -1
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.js +20 -2
- 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 +8 -0
- package/dist/graphql/operations/index.js +17 -0
- package/dist/graphql/operations/types.d.ts +688 -0
- package/dist/graphql/schema.d.ts +275 -0
- package/dist/graphql/schema.js +8 -0
- package/package.json +1 -1
|
@@ -19670,6 +19670,694 @@ export type GetQuestionnaireResponsesQueryResults = {
|
|
|
19670
19670
|
} | null> | null;
|
|
19671
19671
|
} | null;
|
|
19672
19672
|
};
|
|
19673
|
+
export type GetQuestionnairesQueryVariables = Types.Exact<{
|
|
19674
|
+
page: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
19675
|
+
pageSize: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
19676
|
+
id: Types.InputMaybe<Types.SearchString>;
|
|
19677
|
+
security: Types.InputMaybe<Types.SearchToken>;
|
|
19678
|
+
tag: Types.InputMaybe<Types.SearchToken>;
|
|
19679
|
+
sort: Types.InputMaybe<Array<Types.InputMaybe<Types.Scalars['String']['input']>> | Types.InputMaybe<Types.Scalars['String']['input']>>;
|
|
19680
|
+
context: Types.InputMaybe<Types.SearchToken>;
|
|
19681
|
+
identifier: Types.InputMaybe<Types.SearchToken>;
|
|
19682
|
+
}>;
|
|
19683
|
+
export type GetQuestionnairesQueryResults = {
|
|
19684
|
+
questionnaires: {
|
|
19685
|
+
total: number | null;
|
|
19686
|
+
entry: Array<{
|
|
19687
|
+
resource: {
|
|
19688
|
+
resourceType: string | null;
|
|
19689
|
+
id: string;
|
|
19690
|
+
name: string | null;
|
|
19691
|
+
title: string | null;
|
|
19692
|
+
status: any | null;
|
|
19693
|
+
description: any | null;
|
|
19694
|
+
meta: {
|
|
19695
|
+
versionId: string | null;
|
|
19696
|
+
lastUpdated: any | null;
|
|
19697
|
+
source: any | null;
|
|
19698
|
+
security: Array<{
|
|
19699
|
+
system: any | null;
|
|
19700
|
+
code: any | null;
|
|
19701
|
+
display: string | null;
|
|
19702
|
+
} | null> | null;
|
|
19703
|
+
tag: Array<{
|
|
19704
|
+
system: any | null;
|
|
19705
|
+
code: any | null;
|
|
19706
|
+
display: string | null;
|
|
19707
|
+
} | null> | null;
|
|
19708
|
+
} | null;
|
|
19709
|
+
identifier: Array<{
|
|
19710
|
+
id: string | null;
|
|
19711
|
+
system: any | null;
|
|
19712
|
+
value: string | null;
|
|
19713
|
+
type: {
|
|
19714
|
+
text: string | null;
|
|
19715
|
+
coding: Array<{
|
|
19716
|
+
system: any | null;
|
|
19717
|
+
code: any | null;
|
|
19718
|
+
display: string | null;
|
|
19719
|
+
} | null> | null;
|
|
19720
|
+
} | null;
|
|
19721
|
+
} | null> | null;
|
|
19722
|
+
useContext: Array<{
|
|
19723
|
+
id: string | null;
|
|
19724
|
+
code: {
|
|
19725
|
+
system: any | null;
|
|
19726
|
+
code: any | null;
|
|
19727
|
+
display: string | null;
|
|
19728
|
+
} | null;
|
|
19729
|
+
valueReference: {
|
|
19730
|
+
id: string | null;
|
|
19731
|
+
reference: string | null;
|
|
19732
|
+
display: string | null;
|
|
19733
|
+
identifier: {
|
|
19734
|
+
id: string | null;
|
|
19735
|
+
system: any | null;
|
|
19736
|
+
value: string | null;
|
|
19737
|
+
type: {
|
|
19738
|
+
text: string | null;
|
|
19739
|
+
coding: Array<{
|
|
19740
|
+
system: any | null;
|
|
19741
|
+
code: any | null;
|
|
19742
|
+
display: string | null;
|
|
19743
|
+
} | null> | null;
|
|
19744
|
+
} | null;
|
|
19745
|
+
} | null;
|
|
19746
|
+
} | null;
|
|
19747
|
+
} | null> | null;
|
|
19748
|
+
item: Array<{
|
|
19749
|
+
linkId: string | null;
|
|
19750
|
+
prefix: string | null;
|
|
19751
|
+
text: string | null;
|
|
19752
|
+
type: any | null;
|
|
19753
|
+
enableBehavior: any | null;
|
|
19754
|
+
required: boolean | null;
|
|
19755
|
+
repeats: boolean | null;
|
|
19756
|
+
readOnly: boolean | null;
|
|
19757
|
+
maxLength: number | null;
|
|
19758
|
+
item: Array<{
|
|
19759
|
+
linkId: string | null;
|
|
19760
|
+
prefix: string | null;
|
|
19761
|
+
text: string | null;
|
|
19762
|
+
type: any | null;
|
|
19763
|
+
enableBehavior: any | null;
|
|
19764
|
+
required: boolean | null;
|
|
19765
|
+
repeats: boolean | null;
|
|
19766
|
+
readOnly: boolean | null;
|
|
19767
|
+
maxLength: number | null;
|
|
19768
|
+
item: Array<{
|
|
19769
|
+
linkId: string | null;
|
|
19770
|
+
prefix: string | null;
|
|
19771
|
+
text: string | null;
|
|
19772
|
+
type: any | null;
|
|
19773
|
+
enableBehavior: any | null;
|
|
19774
|
+
required: boolean | null;
|
|
19775
|
+
repeats: boolean | null;
|
|
19776
|
+
readOnly: boolean | null;
|
|
19777
|
+
maxLength: number | null;
|
|
19778
|
+
extension: Array<{
|
|
19779
|
+
url: any | null;
|
|
19780
|
+
valueBoolean: boolean | null;
|
|
19781
|
+
valueInteger: number | null;
|
|
19782
|
+
valueString: string | null;
|
|
19783
|
+
valueDateTime: any | null;
|
|
19784
|
+
valueCode: any | null;
|
|
19785
|
+
valueUri: any | null;
|
|
19786
|
+
valueExpression: {
|
|
19787
|
+
description: string | null;
|
|
19788
|
+
name: string | null;
|
|
19789
|
+
language: any | null;
|
|
19790
|
+
expression: string | null;
|
|
19791
|
+
reference: any | null;
|
|
19792
|
+
} | null;
|
|
19793
|
+
valueCodeableConcept: {
|
|
19794
|
+
text: string | null;
|
|
19795
|
+
coding: Array<{
|
|
19796
|
+
system: any | null;
|
|
19797
|
+
code: any | null;
|
|
19798
|
+
display: string | null;
|
|
19799
|
+
} | null> | null;
|
|
19800
|
+
} | null;
|
|
19801
|
+
valueReference: {
|
|
19802
|
+
reference: string | null;
|
|
19803
|
+
type: any | null;
|
|
19804
|
+
display: string | null;
|
|
19805
|
+
} | null;
|
|
19806
|
+
extension: Array<{
|
|
19807
|
+
url: any | null;
|
|
19808
|
+
valueBoolean: boolean | null;
|
|
19809
|
+
valueInteger: number | null;
|
|
19810
|
+
valueString: string | null;
|
|
19811
|
+
valueDateTime: any | null;
|
|
19812
|
+
valueCode: any | null;
|
|
19813
|
+
valueUri: any | null;
|
|
19814
|
+
valueExpression: {
|
|
19815
|
+
description: string | null;
|
|
19816
|
+
name: string | null;
|
|
19817
|
+
language: any | null;
|
|
19818
|
+
expression: string | null;
|
|
19819
|
+
reference: any | null;
|
|
19820
|
+
} | null;
|
|
19821
|
+
valueCodeableConcept: {
|
|
19822
|
+
text: string | null;
|
|
19823
|
+
coding: Array<{
|
|
19824
|
+
system: any | null;
|
|
19825
|
+
code: any | null;
|
|
19826
|
+
display: string | null;
|
|
19827
|
+
} | null> | null;
|
|
19828
|
+
} | null;
|
|
19829
|
+
valueReference: {
|
|
19830
|
+
reference: string | null;
|
|
19831
|
+
type: any | null;
|
|
19832
|
+
display: string | null;
|
|
19833
|
+
} | null;
|
|
19834
|
+
} | null> | null;
|
|
19835
|
+
} | null> | null;
|
|
19836
|
+
enableWhen: Array<{
|
|
19837
|
+
question: string | null;
|
|
19838
|
+
operator: any | null;
|
|
19839
|
+
answerBoolean: boolean | null;
|
|
19840
|
+
answerDecimal: number | null;
|
|
19841
|
+
answerInteger: number | null;
|
|
19842
|
+
answerDate: any | null;
|
|
19843
|
+
answerDateTime: any | null;
|
|
19844
|
+
answerTime: any | null;
|
|
19845
|
+
answerString: string | null;
|
|
19846
|
+
answerCoding: {
|
|
19847
|
+
system: any | null;
|
|
19848
|
+
code: any | null;
|
|
19849
|
+
display: string | null;
|
|
19850
|
+
} | null;
|
|
19851
|
+
answerQuantity: {
|
|
19852
|
+
value: number | null;
|
|
19853
|
+
unit: string | null;
|
|
19854
|
+
code: any | null;
|
|
19855
|
+
comparator: any | null;
|
|
19856
|
+
system: any | null;
|
|
19857
|
+
} | null;
|
|
19858
|
+
answerReference: {
|
|
19859
|
+
reference: string | null;
|
|
19860
|
+
type: any | null;
|
|
19861
|
+
display: string | null;
|
|
19862
|
+
} | null;
|
|
19863
|
+
} | null> | null;
|
|
19864
|
+
answerOption: Array<{
|
|
19865
|
+
valueInteger: number | null;
|
|
19866
|
+
valueDate: any | null;
|
|
19867
|
+
valueString: string | null;
|
|
19868
|
+
initialSelected: boolean | null;
|
|
19869
|
+
valueCoding: {
|
|
19870
|
+
system: any | null;
|
|
19871
|
+
code: any | null;
|
|
19872
|
+
display: string | null;
|
|
19873
|
+
} | null;
|
|
19874
|
+
valueReference: {
|
|
19875
|
+
reference: string | null;
|
|
19876
|
+
type: any | null;
|
|
19877
|
+
display: string | null;
|
|
19878
|
+
extension: Array<{
|
|
19879
|
+
url: any | null;
|
|
19880
|
+
valueBoolean: boolean | null;
|
|
19881
|
+
valueInteger: number | null;
|
|
19882
|
+
valueString: string | null;
|
|
19883
|
+
valueDateTime: any | null;
|
|
19884
|
+
valueCode: any | null;
|
|
19885
|
+
valueUri: any | null;
|
|
19886
|
+
valueExpression: {
|
|
19887
|
+
description: string | null;
|
|
19888
|
+
name: string | null;
|
|
19889
|
+
language: any | null;
|
|
19890
|
+
expression: string | null;
|
|
19891
|
+
reference: any | null;
|
|
19892
|
+
} | null;
|
|
19893
|
+
valueCodeableConcept: {
|
|
19894
|
+
text: string | null;
|
|
19895
|
+
coding: Array<{
|
|
19896
|
+
system: any | null;
|
|
19897
|
+
code: any | null;
|
|
19898
|
+
display: string | null;
|
|
19899
|
+
} | null> | null;
|
|
19900
|
+
} | null;
|
|
19901
|
+
valueReference: {
|
|
19902
|
+
reference: string | null;
|
|
19903
|
+
type: any | null;
|
|
19904
|
+
display: string | null;
|
|
19905
|
+
} | null;
|
|
19906
|
+
} | null> | null;
|
|
19907
|
+
} | null;
|
|
19908
|
+
} | null> | null;
|
|
19909
|
+
initial: Array<{
|
|
19910
|
+
valueBoolean: boolean | null;
|
|
19911
|
+
valueDecimal: number | null;
|
|
19912
|
+
valueInteger: number | null;
|
|
19913
|
+
valueDate: any | null;
|
|
19914
|
+
valueDateTime: any | null;
|
|
19915
|
+
valueString: string | null;
|
|
19916
|
+
valueUri: any | null;
|
|
19917
|
+
valueAttachment: {
|
|
19918
|
+
contentType: any | null;
|
|
19919
|
+
data: any | null;
|
|
19920
|
+
url: any | null;
|
|
19921
|
+
title: string | null;
|
|
19922
|
+
} | null;
|
|
19923
|
+
valueCoding: {
|
|
19924
|
+
system: any | null;
|
|
19925
|
+
code: any | null;
|
|
19926
|
+
display: string | null;
|
|
19927
|
+
} | null;
|
|
19928
|
+
valueQuantity: {
|
|
19929
|
+
value: number | null;
|
|
19930
|
+
unit: string | null;
|
|
19931
|
+
code: any | null;
|
|
19932
|
+
comparator: any | null;
|
|
19933
|
+
system: any | null;
|
|
19934
|
+
} | null;
|
|
19935
|
+
valueReference: {
|
|
19936
|
+
reference: string | null;
|
|
19937
|
+
type: any | null;
|
|
19938
|
+
display: string | null;
|
|
19939
|
+
extension: Array<{
|
|
19940
|
+
url: any | null;
|
|
19941
|
+
valueBoolean: boolean | null;
|
|
19942
|
+
valueInteger: number | null;
|
|
19943
|
+
valueString: string | null;
|
|
19944
|
+
valueDateTime: any | null;
|
|
19945
|
+
valueCode: any | null;
|
|
19946
|
+
valueUri: any | null;
|
|
19947
|
+
valueExpression: {
|
|
19948
|
+
description: string | null;
|
|
19949
|
+
name: string | null;
|
|
19950
|
+
language: any | null;
|
|
19951
|
+
expression: string | null;
|
|
19952
|
+
reference: any | null;
|
|
19953
|
+
} | null;
|
|
19954
|
+
valueCodeableConcept: {
|
|
19955
|
+
text: string | null;
|
|
19956
|
+
coding: Array<{
|
|
19957
|
+
system: any | null;
|
|
19958
|
+
code: any | null;
|
|
19959
|
+
display: string | null;
|
|
19960
|
+
} | null> | null;
|
|
19961
|
+
} | null;
|
|
19962
|
+
valueReference: {
|
|
19963
|
+
reference: string | null;
|
|
19964
|
+
type: any | null;
|
|
19965
|
+
display: string | null;
|
|
19966
|
+
} | null;
|
|
19967
|
+
} | null> | null;
|
|
19968
|
+
} | null;
|
|
19969
|
+
} | null> | null;
|
|
19970
|
+
} | null> | null;
|
|
19971
|
+
extension: Array<{
|
|
19972
|
+
url: any | null;
|
|
19973
|
+
valueBoolean: boolean | null;
|
|
19974
|
+
valueInteger: number | null;
|
|
19975
|
+
valueString: string | null;
|
|
19976
|
+
valueDateTime: any | null;
|
|
19977
|
+
valueCode: any | null;
|
|
19978
|
+
valueUri: any | null;
|
|
19979
|
+
valueExpression: {
|
|
19980
|
+
description: string | null;
|
|
19981
|
+
name: string | null;
|
|
19982
|
+
language: any | null;
|
|
19983
|
+
expression: string | null;
|
|
19984
|
+
reference: any | null;
|
|
19985
|
+
} | null;
|
|
19986
|
+
valueCodeableConcept: {
|
|
19987
|
+
text: string | null;
|
|
19988
|
+
coding: Array<{
|
|
19989
|
+
system: any | null;
|
|
19990
|
+
code: any | null;
|
|
19991
|
+
display: string | null;
|
|
19992
|
+
} | null> | null;
|
|
19993
|
+
} | null;
|
|
19994
|
+
valueReference: {
|
|
19995
|
+
reference: string | null;
|
|
19996
|
+
type: any | null;
|
|
19997
|
+
display: string | null;
|
|
19998
|
+
} | null;
|
|
19999
|
+
extension: Array<{
|
|
20000
|
+
url: any | null;
|
|
20001
|
+
valueBoolean: boolean | null;
|
|
20002
|
+
valueInteger: number | null;
|
|
20003
|
+
valueString: string | null;
|
|
20004
|
+
valueDateTime: any | null;
|
|
20005
|
+
valueCode: any | null;
|
|
20006
|
+
valueUri: any | null;
|
|
20007
|
+
valueExpression: {
|
|
20008
|
+
description: string | null;
|
|
20009
|
+
name: string | null;
|
|
20010
|
+
language: any | null;
|
|
20011
|
+
expression: string | null;
|
|
20012
|
+
reference: any | null;
|
|
20013
|
+
} | null;
|
|
20014
|
+
valueCodeableConcept: {
|
|
20015
|
+
text: string | null;
|
|
20016
|
+
coding: Array<{
|
|
20017
|
+
system: any | null;
|
|
20018
|
+
code: any | null;
|
|
20019
|
+
display: string | null;
|
|
20020
|
+
} | null> | null;
|
|
20021
|
+
} | null;
|
|
20022
|
+
valueReference: {
|
|
20023
|
+
reference: string | null;
|
|
20024
|
+
type: any | null;
|
|
20025
|
+
display: string | null;
|
|
20026
|
+
} | null;
|
|
20027
|
+
} | null> | null;
|
|
20028
|
+
} | null> | null;
|
|
20029
|
+
enableWhen: Array<{
|
|
20030
|
+
question: string | null;
|
|
20031
|
+
operator: any | null;
|
|
20032
|
+
answerBoolean: boolean | null;
|
|
20033
|
+
answerDecimal: number | null;
|
|
20034
|
+
answerInteger: number | null;
|
|
20035
|
+
answerDate: any | null;
|
|
20036
|
+
answerDateTime: any | null;
|
|
20037
|
+
answerTime: any | null;
|
|
20038
|
+
answerString: string | null;
|
|
20039
|
+
answerCoding: {
|
|
20040
|
+
system: any | null;
|
|
20041
|
+
code: any | null;
|
|
20042
|
+
display: string | null;
|
|
20043
|
+
} | null;
|
|
20044
|
+
answerQuantity: {
|
|
20045
|
+
value: number | null;
|
|
20046
|
+
unit: string | null;
|
|
20047
|
+
code: any | null;
|
|
20048
|
+
comparator: any | null;
|
|
20049
|
+
system: any | null;
|
|
20050
|
+
} | null;
|
|
20051
|
+
answerReference: {
|
|
20052
|
+
reference: string | null;
|
|
20053
|
+
type: any | null;
|
|
20054
|
+
display: string | null;
|
|
20055
|
+
} | null;
|
|
20056
|
+
} | null> | null;
|
|
20057
|
+
answerOption: Array<{
|
|
20058
|
+
valueInteger: number | null;
|
|
20059
|
+
valueDate: any | null;
|
|
20060
|
+
valueString: string | null;
|
|
20061
|
+
initialSelected: boolean | null;
|
|
20062
|
+
valueCoding: {
|
|
20063
|
+
system: any | null;
|
|
20064
|
+
code: any | null;
|
|
20065
|
+
display: string | null;
|
|
20066
|
+
} | null;
|
|
20067
|
+
valueReference: {
|
|
20068
|
+
reference: string | null;
|
|
20069
|
+
type: any | null;
|
|
20070
|
+
display: string | null;
|
|
20071
|
+
extension: Array<{
|
|
20072
|
+
url: any | null;
|
|
20073
|
+
valueBoolean: boolean | null;
|
|
20074
|
+
valueInteger: number | null;
|
|
20075
|
+
valueString: string | null;
|
|
20076
|
+
valueDateTime: any | null;
|
|
20077
|
+
valueCode: any | null;
|
|
20078
|
+
valueUri: any | null;
|
|
20079
|
+
valueExpression: {
|
|
20080
|
+
description: string | null;
|
|
20081
|
+
name: string | null;
|
|
20082
|
+
language: any | null;
|
|
20083
|
+
expression: string | null;
|
|
20084
|
+
reference: any | null;
|
|
20085
|
+
} | null;
|
|
20086
|
+
valueCodeableConcept: {
|
|
20087
|
+
text: string | null;
|
|
20088
|
+
coding: Array<{
|
|
20089
|
+
system: any | null;
|
|
20090
|
+
code: any | null;
|
|
20091
|
+
display: string | null;
|
|
20092
|
+
} | null> | null;
|
|
20093
|
+
} | null;
|
|
20094
|
+
valueReference: {
|
|
20095
|
+
reference: string | null;
|
|
20096
|
+
type: any | null;
|
|
20097
|
+
display: string | null;
|
|
20098
|
+
} | null;
|
|
20099
|
+
} | null> | null;
|
|
20100
|
+
} | null;
|
|
20101
|
+
} | null> | null;
|
|
20102
|
+
initial: Array<{
|
|
20103
|
+
valueBoolean: boolean | null;
|
|
20104
|
+
valueDecimal: number | null;
|
|
20105
|
+
valueInteger: number | null;
|
|
20106
|
+
valueDate: any | null;
|
|
20107
|
+
valueDateTime: any | null;
|
|
20108
|
+
valueString: string | null;
|
|
20109
|
+
valueUri: any | null;
|
|
20110
|
+
valueAttachment: {
|
|
20111
|
+
contentType: any | null;
|
|
20112
|
+
data: any | null;
|
|
20113
|
+
url: any | null;
|
|
20114
|
+
title: string | null;
|
|
20115
|
+
} | null;
|
|
20116
|
+
valueCoding: {
|
|
20117
|
+
system: any | null;
|
|
20118
|
+
code: any | null;
|
|
20119
|
+
display: string | null;
|
|
20120
|
+
} | null;
|
|
20121
|
+
valueQuantity: {
|
|
20122
|
+
value: number | null;
|
|
20123
|
+
unit: string | null;
|
|
20124
|
+
code: any | null;
|
|
20125
|
+
comparator: any | null;
|
|
20126
|
+
system: any | null;
|
|
20127
|
+
} | null;
|
|
20128
|
+
valueReference: {
|
|
20129
|
+
reference: string | null;
|
|
20130
|
+
type: any | null;
|
|
20131
|
+
display: string | null;
|
|
20132
|
+
extension: Array<{
|
|
20133
|
+
url: any | null;
|
|
20134
|
+
valueBoolean: boolean | null;
|
|
20135
|
+
valueInteger: number | null;
|
|
20136
|
+
valueString: string | null;
|
|
20137
|
+
valueDateTime: any | null;
|
|
20138
|
+
valueCode: any | null;
|
|
20139
|
+
valueUri: any | null;
|
|
20140
|
+
valueExpression: {
|
|
20141
|
+
description: string | null;
|
|
20142
|
+
name: string | null;
|
|
20143
|
+
language: any | null;
|
|
20144
|
+
expression: string | null;
|
|
20145
|
+
reference: any | null;
|
|
20146
|
+
} | null;
|
|
20147
|
+
valueCodeableConcept: {
|
|
20148
|
+
text: string | null;
|
|
20149
|
+
coding: Array<{
|
|
20150
|
+
system: any | null;
|
|
20151
|
+
code: any | null;
|
|
20152
|
+
display: string | null;
|
|
20153
|
+
} | null> | null;
|
|
20154
|
+
} | null;
|
|
20155
|
+
valueReference: {
|
|
20156
|
+
reference: string | null;
|
|
20157
|
+
type: any | null;
|
|
20158
|
+
display: string | null;
|
|
20159
|
+
} | null;
|
|
20160
|
+
} | null> | null;
|
|
20161
|
+
} | null;
|
|
20162
|
+
} | null> | null;
|
|
20163
|
+
} | null> | null;
|
|
20164
|
+
extension: Array<{
|
|
20165
|
+
url: any | null;
|
|
20166
|
+
valueBoolean: boolean | null;
|
|
20167
|
+
valueInteger: number | null;
|
|
20168
|
+
valueString: string | null;
|
|
20169
|
+
valueDateTime: any | null;
|
|
20170
|
+
valueCode: any | null;
|
|
20171
|
+
valueUri: any | null;
|
|
20172
|
+
valueExpression: {
|
|
20173
|
+
description: string | null;
|
|
20174
|
+
name: string | null;
|
|
20175
|
+
language: any | null;
|
|
20176
|
+
expression: string | null;
|
|
20177
|
+
reference: any | null;
|
|
20178
|
+
} | null;
|
|
20179
|
+
valueCodeableConcept: {
|
|
20180
|
+
text: string | null;
|
|
20181
|
+
coding: Array<{
|
|
20182
|
+
system: any | null;
|
|
20183
|
+
code: any | null;
|
|
20184
|
+
display: string | null;
|
|
20185
|
+
} | null> | null;
|
|
20186
|
+
} | null;
|
|
20187
|
+
valueReference: {
|
|
20188
|
+
reference: string | null;
|
|
20189
|
+
type: any | null;
|
|
20190
|
+
display: string | null;
|
|
20191
|
+
} | null;
|
|
20192
|
+
extension: Array<{
|
|
20193
|
+
url: any | null;
|
|
20194
|
+
valueBoolean: boolean | null;
|
|
20195
|
+
valueInteger: number | null;
|
|
20196
|
+
valueString: string | null;
|
|
20197
|
+
valueDateTime: any | null;
|
|
20198
|
+
valueCode: any | null;
|
|
20199
|
+
valueUri: any | null;
|
|
20200
|
+
valueExpression: {
|
|
20201
|
+
description: string | null;
|
|
20202
|
+
name: string | null;
|
|
20203
|
+
language: any | null;
|
|
20204
|
+
expression: string | null;
|
|
20205
|
+
reference: any | null;
|
|
20206
|
+
} | null;
|
|
20207
|
+
valueCodeableConcept: {
|
|
20208
|
+
text: string | null;
|
|
20209
|
+
coding: Array<{
|
|
20210
|
+
system: any | null;
|
|
20211
|
+
code: any | null;
|
|
20212
|
+
display: string | null;
|
|
20213
|
+
} | null> | null;
|
|
20214
|
+
} | null;
|
|
20215
|
+
valueReference: {
|
|
20216
|
+
reference: string | null;
|
|
20217
|
+
type: any | null;
|
|
20218
|
+
display: string | null;
|
|
20219
|
+
} | null;
|
|
20220
|
+
} | null> | null;
|
|
20221
|
+
} | null> | null;
|
|
20222
|
+
enableWhen: Array<{
|
|
20223
|
+
question: string | null;
|
|
20224
|
+
operator: any | null;
|
|
20225
|
+
answerBoolean: boolean | null;
|
|
20226
|
+
answerDecimal: number | null;
|
|
20227
|
+
answerInteger: number | null;
|
|
20228
|
+
answerDate: any | null;
|
|
20229
|
+
answerDateTime: any | null;
|
|
20230
|
+
answerTime: any | null;
|
|
20231
|
+
answerString: string | null;
|
|
20232
|
+
answerCoding: {
|
|
20233
|
+
system: any | null;
|
|
20234
|
+
code: any | null;
|
|
20235
|
+
display: string | null;
|
|
20236
|
+
} | null;
|
|
20237
|
+
answerQuantity: {
|
|
20238
|
+
value: number | null;
|
|
20239
|
+
unit: string | null;
|
|
20240
|
+
code: any | null;
|
|
20241
|
+
comparator: any | null;
|
|
20242
|
+
system: any | null;
|
|
20243
|
+
} | null;
|
|
20244
|
+
answerReference: {
|
|
20245
|
+
reference: string | null;
|
|
20246
|
+
type: any | null;
|
|
20247
|
+
display: string | null;
|
|
20248
|
+
} | null;
|
|
20249
|
+
} | null> | null;
|
|
20250
|
+
answerOption: Array<{
|
|
20251
|
+
valueInteger: number | null;
|
|
20252
|
+
valueDate: any | null;
|
|
20253
|
+
valueString: string | null;
|
|
20254
|
+
initialSelected: boolean | null;
|
|
20255
|
+
valueCoding: {
|
|
20256
|
+
system: any | null;
|
|
20257
|
+
code: any | null;
|
|
20258
|
+
display: string | null;
|
|
20259
|
+
} | null;
|
|
20260
|
+
valueReference: {
|
|
20261
|
+
reference: string | null;
|
|
20262
|
+
type: any | null;
|
|
20263
|
+
display: string | null;
|
|
20264
|
+
extension: Array<{
|
|
20265
|
+
url: any | null;
|
|
20266
|
+
valueBoolean: boolean | null;
|
|
20267
|
+
valueInteger: number | null;
|
|
20268
|
+
valueString: string | null;
|
|
20269
|
+
valueDateTime: any | null;
|
|
20270
|
+
valueCode: any | null;
|
|
20271
|
+
valueUri: any | null;
|
|
20272
|
+
valueExpression: {
|
|
20273
|
+
description: string | null;
|
|
20274
|
+
name: string | null;
|
|
20275
|
+
language: any | null;
|
|
20276
|
+
expression: string | null;
|
|
20277
|
+
reference: any | null;
|
|
20278
|
+
} | null;
|
|
20279
|
+
valueCodeableConcept: {
|
|
20280
|
+
text: string | null;
|
|
20281
|
+
coding: Array<{
|
|
20282
|
+
system: any | null;
|
|
20283
|
+
code: any | null;
|
|
20284
|
+
display: string | null;
|
|
20285
|
+
} | null> | null;
|
|
20286
|
+
} | null;
|
|
20287
|
+
valueReference: {
|
|
20288
|
+
reference: string | null;
|
|
20289
|
+
type: any | null;
|
|
20290
|
+
display: string | null;
|
|
20291
|
+
} | null;
|
|
20292
|
+
} | null> | null;
|
|
20293
|
+
} | null;
|
|
20294
|
+
} | null> | null;
|
|
20295
|
+
initial: Array<{
|
|
20296
|
+
valueBoolean: boolean | null;
|
|
20297
|
+
valueDecimal: number | null;
|
|
20298
|
+
valueInteger: number | null;
|
|
20299
|
+
valueDate: any | null;
|
|
20300
|
+
valueDateTime: any | null;
|
|
20301
|
+
valueString: string | null;
|
|
20302
|
+
valueUri: any | null;
|
|
20303
|
+
valueAttachment: {
|
|
20304
|
+
contentType: any | null;
|
|
20305
|
+
data: any | null;
|
|
20306
|
+
url: any | null;
|
|
20307
|
+
title: string | null;
|
|
20308
|
+
} | null;
|
|
20309
|
+
valueCoding: {
|
|
20310
|
+
system: any | null;
|
|
20311
|
+
code: any | null;
|
|
20312
|
+
display: string | null;
|
|
20313
|
+
} | null;
|
|
20314
|
+
valueQuantity: {
|
|
20315
|
+
value: number | null;
|
|
20316
|
+
unit: string | null;
|
|
20317
|
+
code: any | null;
|
|
20318
|
+
comparator: any | null;
|
|
20319
|
+
system: any | null;
|
|
20320
|
+
} | null;
|
|
20321
|
+
valueReference: {
|
|
20322
|
+
reference: string | null;
|
|
20323
|
+
type: any | null;
|
|
20324
|
+
display: string | null;
|
|
20325
|
+
extension: Array<{
|
|
20326
|
+
url: any | null;
|
|
20327
|
+
valueBoolean: boolean | null;
|
|
20328
|
+
valueInteger: number | null;
|
|
20329
|
+
valueString: string | null;
|
|
20330
|
+
valueDateTime: any | null;
|
|
20331
|
+
valueCode: any | null;
|
|
20332
|
+
valueUri: any | null;
|
|
20333
|
+
valueExpression: {
|
|
20334
|
+
description: string | null;
|
|
20335
|
+
name: string | null;
|
|
20336
|
+
language: any | null;
|
|
20337
|
+
expression: string | null;
|
|
20338
|
+
reference: any | null;
|
|
20339
|
+
} | null;
|
|
20340
|
+
valueCodeableConcept: {
|
|
20341
|
+
text: string | null;
|
|
20342
|
+
coding: Array<{
|
|
20343
|
+
system: any | null;
|
|
20344
|
+
code: any | null;
|
|
20345
|
+
display: string | null;
|
|
20346
|
+
} | null> | null;
|
|
20347
|
+
} | null;
|
|
20348
|
+
valueReference: {
|
|
20349
|
+
reference: string | null;
|
|
20350
|
+
type: any | null;
|
|
20351
|
+
display: string | null;
|
|
20352
|
+
} | null;
|
|
20353
|
+
} | null> | null;
|
|
20354
|
+
} | null;
|
|
20355
|
+
} | null> | null;
|
|
20356
|
+
} | null> | null;
|
|
20357
|
+
} | null;
|
|
20358
|
+
} | null> | null;
|
|
20359
|
+
} | null;
|
|
20360
|
+
};
|
|
19673
20361
|
export type SaveQuestionnaireResponseMutationVariables = Types.Exact<{
|
|
19674
20362
|
questionnaireResponse: Types.QuestionnaireResponseInput;
|
|
19675
20363
|
}>;
|