@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1757440654 → 2.0.0-alpha.0-rc.1757958971
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/health-data/health-manager.d.ts +43 -1
- package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +4 -1
- package/dist/api/graphql-api/healthdata/graphql-health-manager.js +60 -0
- package/dist/graphql/operations/index.d.ts +30 -0
- package/dist/graphql/operations/index.js +341 -0
- package/dist/graphql/operations/types.d.ts +1734 -633
- package/dist/models/common/extension.d.ts +2 -0
- package/dist/models/health-data/condition.d.ts +26 -31
- package/dist/models/health-data/index.d.ts +3 -1
- package/dist/models/health-data/observation.d.ts +1 -2
- package/dist/models/health-data/procedure.d.ts +81 -0
- package/dist/models/health-data/procedure.js +1 -0
- package/dist/models/health-data/vital-sign-bundle.d.ts +18 -0
- package/dist/models/health-data/vital-sign-bundle.js +1 -0
- package/package.json +1 -1
|
@@ -1909,6 +1909,113 @@ export type ContactPointFieldsFragment = {
|
|
|
1909
1909
|
use: any | null;
|
|
1910
1910
|
rank: number | null;
|
|
1911
1911
|
};
|
|
1912
|
+
export type ProcedureRecorderFields_Patient_Fragment = {
|
|
1913
|
+
name: Array<{
|
|
1914
|
+
text: string | null;
|
|
1915
|
+
family: string | null;
|
|
1916
|
+
given: Array<string | null> | null;
|
|
1917
|
+
prefix: Array<string | null> | null;
|
|
1918
|
+
suffix: Array<string | null> | null;
|
|
1919
|
+
} | null> | null;
|
|
1920
|
+
};
|
|
1921
|
+
export type ProcedureRecorderFields_Practitioner_Fragment = {
|
|
1922
|
+
id: string;
|
|
1923
|
+
name: Array<{
|
|
1924
|
+
text: string | null;
|
|
1925
|
+
family: string | null;
|
|
1926
|
+
given: Array<string | null> | null;
|
|
1927
|
+
prefix: Array<string | null> | null;
|
|
1928
|
+
suffix: Array<string | null> | null;
|
|
1929
|
+
} | null> | null;
|
|
1930
|
+
identifier: Array<{
|
|
1931
|
+
id: string | null;
|
|
1932
|
+
system: any | null;
|
|
1933
|
+
value: string | null;
|
|
1934
|
+
type: {
|
|
1935
|
+
id: string | null;
|
|
1936
|
+
text: string | null;
|
|
1937
|
+
coding: Array<{
|
|
1938
|
+
id: string | null;
|
|
1939
|
+
system: any | null;
|
|
1940
|
+
code: any | null;
|
|
1941
|
+
display: string | null;
|
|
1942
|
+
} | null> | null;
|
|
1943
|
+
} | null;
|
|
1944
|
+
} | null> | null;
|
|
1945
|
+
};
|
|
1946
|
+
export type ProcedureRecorderFields_PractitionerRole_Fragment = {};
|
|
1947
|
+
export type ProcedureRecorderFields_RelatedPerson_Fragment = {};
|
|
1948
|
+
export type ProcedureRecorderFieldsFragment = ProcedureRecorderFields_Patient_Fragment | ProcedureRecorderFields_Practitioner_Fragment | ProcedureRecorderFields_PractitionerRole_Fragment | ProcedureRecorderFields_RelatedPerson_Fragment;
|
|
1949
|
+
export type ProcedureAsserterFields_Patient_Fragment = {
|
|
1950
|
+
name: Array<{
|
|
1951
|
+
text: string | null;
|
|
1952
|
+
family: string | null;
|
|
1953
|
+
given: Array<string | null> | null;
|
|
1954
|
+
prefix: Array<string | null> | null;
|
|
1955
|
+
suffix: Array<string | null> | null;
|
|
1956
|
+
} | null> | null;
|
|
1957
|
+
};
|
|
1958
|
+
export type ProcedureAsserterFields_Practitioner_Fragment = {
|
|
1959
|
+
id: string;
|
|
1960
|
+
name: Array<{
|
|
1961
|
+
text: string | null;
|
|
1962
|
+
family: string | null;
|
|
1963
|
+
given: Array<string | null> | null;
|
|
1964
|
+
prefix: Array<string | null> | null;
|
|
1965
|
+
suffix: Array<string | null> | null;
|
|
1966
|
+
} | null> | null;
|
|
1967
|
+
identifier: Array<{
|
|
1968
|
+
id: string | null;
|
|
1969
|
+
system: any | null;
|
|
1970
|
+
value: string | null;
|
|
1971
|
+
type: {
|
|
1972
|
+
id: string | null;
|
|
1973
|
+
text: string | null;
|
|
1974
|
+
coding: Array<{
|
|
1975
|
+
id: string | null;
|
|
1976
|
+
system: any | null;
|
|
1977
|
+
code: any | null;
|
|
1978
|
+
display: string | null;
|
|
1979
|
+
} | null> | null;
|
|
1980
|
+
} | null;
|
|
1981
|
+
} | null> | null;
|
|
1982
|
+
};
|
|
1983
|
+
export type ProcedureAsserterFields_PractitionerRole_Fragment = {};
|
|
1984
|
+
export type ProcedureAsserterFields_RelatedPerson_Fragment = {};
|
|
1985
|
+
export type ProcedureAsserterFieldsFragment = ProcedureAsserterFields_Patient_Fragment | ProcedureAsserterFields_Practitioner_Fragment | ProcedureAsserterFields_PractitionerRole_Fragment | ProcedureAsserterFields_RelatedPerson_Fragment;
|
|
1986
|
+
export type ProcedurePerformerActorFields_Device_Fragment = {};
|
|
1987
|
+
export type ProcedurePerformerActorFields_Organization_Fragment = {
|
|
1988
|
+
organizationName: string | null;
|
|
1989
|
+
};
|
|
1990
|
+
export type ProcedurePerformerActorFields_Patient_Fragment = {};
|
|
1991
|
+
export type ProcedurePerformerActorFields_Practitioner_Fragment = {
|
|
1992
|
+
id: string;
|
|
1993
|
+
name: Array<{
|
|
1994
|
+
text: string | null;
|
|
1995
|
+
family: string | null;
|
|
1996
|
+
given: Array<string | null> | null;
|
|
1997
|
+
prefix: Array<string | null> | null;
|
|
1998
|
+
suffix: Array<string | null> | null;
|
|
1999
|
+
} | null> | null;
|
|
2000
|
+
identifier: Array<{
|
|
2001
|
+
id: string | null;
|
|
2002
|
+
system: any | null;
|
|
2003
|
+
value: string | null;
|
|
2004
|
+
type: {
|
|
2005
|
+
id: string | null;
|
|
2006
|
+
text: string | null;
|
|
2007
|
+
coding: Array<{
|
|
2008
|
+
id: string | null;
|
|
2009
|
+
system: any | null;
|
|
2010
|
+
code: any | null;
|
|
2011
|
+
display: string | null;
|
|
2012
|
+
} | null> | null;
|
|
2013
|
+
} | null;
|
|
2014
|
+
} | null> | null;
|
|
2015
|
+
};
|
|
2016
|
+
export type ProcedurePerformerActorFields_PractitionerRole_Fragment = {};
|
|
2017
|
+
export type ProcedurePerformerActorFields_RelatedPerson_Fragment = {};
|
|
2018
|
+
export type ProcedurePerformerActorFieldsFragment = ProcedurePerformerActorFields_Device_Fragment | ProcedurePerformerActorFields_Organization_Fragment | ProcedurePerformerActorFields_Patient_Fragment | ProcedurePerformerActorFields_Practitioner_Fragment | ProcedurePerformerActorFields_PractitionerRole_Fragment | ProcedurePerformerActorFields_RelatedPerson_Fragment;
|
|
1912
2019
|
export type ValueFieldsFragment = {
|
|
1913
2020
|
valueString: string | null;
|
|
1914
2021
|
valueBoolean: boolean | null;
|
|
@@ -4619,114 +4726,7 @@ export type GetConditionGroupsQueryResults = {
|
|
|
4619
4726
|
}>;
|
|
4620
4727
|
};
|
|
4621
4728
|
};
|
|
4622
|
-
export type
|
|
4623
|
-
request: Types.InputMaybe<Types.DiagnosticReportLabGroupQueryRequest>;
|
|
4624
|
-
}>;
|
|
4625
|
-
export type GetDiagnosticReportLabGroupsQueryResults = {
|
|
4626
|
-
getDiagnosticReportLabGroups: {
|
|
4627
|
-
resources: Array<{
|
|
4628
|
-
id: string | null;
|
|
4629
|
-
effectiveDateTime: any | null;
|
|
4630
|
-
issued: any | null;
|
|
4631
|
-
name: string | null;
|
|
4632
|
-
performer: string | null;
|
|
4633
|
-
references: Array<string> | null;
|
|
4634
|
-
source: Array<string | null> | null;
|
|
4635
|
-
sourceDisplay: Array<string | null> | null;
|
|
4636
|
-
coding: {
|
|
4637
|
-
id: string | null;
|
|
4638
|
-
system: any | null;
|
|
4639
|
-
code: any | null;
|
|
4640
|
-
display: string | null;
|
|
4641
|
-
} | null;
|
|
4642
|
-
}>;
|
|
4643
|
-
paging_info: {
|
|
4644
|
-
page_number: number;
|
|
4645
|
-
page_size: number;
|
|
4646
|
-
total_pages: number;
|
|
4647
|
-
total_items: number;
|
|
4648
|
-
} | null;
|
|
4649
|
-
};
|
|
4650
|
-
};
|
|
4651
|
-
export type GetEncountersGroupQueryVariables = Types.Exact<{
|
|
4652
|
-
request: Types.InputMaybe<Types.EncounterGroupQueryRequest>;
|
|
4653
|
-
}>;
|
|
4654
|
-
export type GetEncountersGroupQueryResults = {
|
|
4655
|
-
getEncounterGroups: {
|
|
4656
|
-
paging_info: {
|
|
4657
|
-
page_number: number;
|
|
4658
|
-
page_size: number;
|
|
4659
|
-
total_pages: number;
|
|
4660
|
-
total_items: number;
|
|
4661
|
-
} | null;
|
|
4662
|
-
resources: Array<{
|
|
4663
|
-
id: string | null;
|
|
4664
|
-
name: string | null;
|
|
4665
|
-
references: Array<string | null> | null;
|
|
4666
|
-
participant: string | null;
|
|
4667
|
-
date: any | null;
|
|
4668
|
-
source: Array<string | null> | null;
|
|
4669
|
-
sourceDisplay: Array<string | null> | null;
|
|
4670
|
-
class: {
|
|
4671
|
-
id: string | null;
|
|
4672
|
-
system: any | null;
|
|
4673
|
-
code: any | null;
|
|
4674
|
-
display: string | null;
|
|
4675
|
-
} | null;
|
|
4676
|
-
type: {
|
|
4677
|
-
id: string | null;
|
|
4678
|
-
system: any | null;
|
|
4679
|
-
code: any | null;
|
|
4680
|
-
display: string | null;
|
|
4681
|
-
} | null;
|
|
4682
|
-
coding: {
|
|
4683
|
-
id: string | null;
|
|
4684
|
-
system: any | null;
|
|
4685
|
-
code: any | null;
|
|
4686
|
-
display: string | null;
|
|
4687
|
-
} | null;
|
|
4688
|
-
}>;
|
|
4689
|
-
};
|
|
4690
|
-
};
|
|
4691
|
-
export type GetHealthSummaryQueryVariables = Types.Exact<{
|
|
4692
|
-
[key: string]: never;
|
|
4693
|
-
}>;
|
|
4694
|
-
export type GetHealthSummaryQueryResults = {
|
|
4695
|
-
getHealthSummary: {
|
|
4696
|
-
resources: Array<{
|
|
4697
|
-
category: Types.HealthSummaryCategory | null;
|
|
4698
|
-
total: number | null;
|
|
4699
|
-
}>;
|
|
4700
|
-
};
|
|
4701
|
-
};
|
|
4702
|
-
export type GetImmunizationGroupsQueryVariables = Types.Exact<{
|
|
4703
|
-
request: Types.InputMaybe<Types.ImmunizationGroupQueryRequest>;
|
|
4704
|
-
}>;
|
|
4705
|
-
export type GetImmunizationGroupsQueryResults = {
|
|
4706
|
-
getImmunizationGroups: {
|
|
4707
|
-
paging_info: {
|
|
4708
|
-
page_number: number;
|
|
4709
|
-
page_size: number;
|
|
4710
|
-
total_pages: number;
|
|
4711
|
-
total_items: number;
|
|
4712
|
-
} | null;
|
|
4713
|
-
resources: Array<{
|
|
4714
|
-
id: string | null;
|
|
4715
|
-
name: string | null;
|
|
4716
|
-
references: Array<string | null> | null;
|
|
4717
|
-
occurrenceDateTime: any | null;
|
|
4718
|
-
source: Array<string | null> | null;
|
|
4719
|
-
sourceDisplay: Array<string | null> | null;
|
|
4720
|
-
coding: {
|
|
4721
|
-
id: string | null;
|
|
4722
|
-
system: any | null;
|
|
4723
|
-
code: any | null;
|
|
4724
|
-
display: string | null;
|
|
4725
|
-
} | null;
|
|
4726
|
-
}>;
|
|
4727
|
-
};
|
|
4728
|
-
};
|
|
4729
|
-
export type GetImmunizationsQueryVariables = Types.Exact<{
|
|
4729
|
+
export type GetConditionsQueryVariables = Types.Exact<{
|
|
4730
4730
|
page: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
4731
4731
|
pageSize: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
4732
4732
|
code: Types.InputMaybe<Types.SearchToken>;
|
|
@@ -4736,19 +4736,17 @@ export type GetImmunizationsQueryVariables = Types.Exact<{
|
|
|
4736
4736
|
status: Types.InputMaybe<Types.SearchToken>;
|
|
4737
4737
|
total: Types.InputMaybe<Types.TotalType>;
|
|
4738
4738
|
}>;
|
|
4739
|
-
export type
|
|
4740
|
-
|
|
4739
|
+
export type GetConditionsQueryResults = {
|
|
4740
|
+
conditions: {
|
|
4741
4741
|
id: string | null;
|
|
4742
4742
|
entry: Array<{
|
|
4743
4743
|
id: string | null;
|
|
4744
4744
|
resource: {
|
|
4745
4745
|
resourceType: string | null;
|
|
4746
4746
|
id: string;
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
|
|
4750
|
-
primarySource: boolean | null;
|
|
4751
|
-
lotNumber: string | null;
|
|
4747
|
+
onsetDateTime: any | null;
|
|
4748
|
+
recordedDate: any | null;
|
|
4749
|
+
abatementDateTime: any | null;
|
|
4752
4750
|
identifier: Array<{
|
|
4753
4751
|
id: string | null;
|
|
4754
4752
|
system: any | null;
|
|
@@ -4785,17 +4783,24 @@ export type GetImmunizationsQueryResults = {
|
|
|
4785
4783
|
div: any | null;
|
|
4786
4784
|
status: any | null;
|
|
4787
4785
|
} | null;
|
|
4788
|
-
|
|
4786
|
+
extension: Array<{
|
|
4789
4787
|
id: string | null;
|
|
4790
|
-
|
|
4791
|
-
|
|
4788
|
+
url: any | null;
|
|
4789
|
+
valueString: string | null;
|
|
4790
|
+
valueInteger: number | null;
|
|
4791
|
+
valueDateTime: any | null;
|
|
4792
|
+
valueCodeableConcept: {
|
|
4792
4793
|
id: string | null;
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4794
|
+
text: string | null;
|
|
4795
|
+
coding: Array<{
|
|
4796
|
+
id: string | null;
|
|
4797
|
+
system: any | null;
|
|
4798
|
+
code: any | null;
|
|
4799
|
+
display: string | null;
|
|
4800
|
+
} | null> | null;
|
|
4801
|
+
} | null;
|
|
4802
|
+
} | null> | null;
|
|
4803
|
+
code: {
|
|
4799
4804
|
id: string | null;
|
|
4800
4805
|
text: string | null;
|
|
4801
4806
|
coding: Array<{
|
|
@@ -4805,7 +4810,7 @@ export type GetImmunizationsQueryResults = {
|
|
|
4805
4810
|
display: string | null;
|
|
4806
4811
|
} | null> | null;
|
|
4807
4812
|
} | null;
|
|
4808
|
-
|
|
4813
|
+
clinicalStatus: {
|
|
4809
4814
|
id: string | null;
|
|
4810
4815
|
text: string | null;
|
|
4811
4816
|
coding: Array<{
|
|
@@ -4815,101 +4820,32 @@ export type GetImmunizationsQueryResults = {
|
|
|
4815
4820
|
display: string | null;
|
|
4816
4821
|
} | null> | null;
|
|
4817
4822
|
} | null;
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
|
|
4837
|
-
|
|
4838
|
-
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
versionId: string | null;
|
|
4845
|
-
lastUpdated: any | null;
|
|
4846
|
-
source: any | null;
|
|
4847
|
-
security: Array<{
|
|
4848
|
-
id: string | null;
|
|
4849
|
-
system: any | null;
|
|
4850
|
-
code: any | null;
|
|
4851
|
-
display: string | null;
|
|
4852
|
-
} | null> | null;
|
|
4853
|
-
tag: Array<{
|
|
4854
|
-
id: string | null;
|
|
4855
|
-
system: any | null;
|
|
4856
|
-
code: any | null;
|
|
4857
|
-
display: string | null;
|
|
4858
|
-
} | null> | null;
|
|
4859
|
-
} | null;
|
|
4860
|
-
text: {
|
|
4861
|
-
div: any | null;
|
|
4862
|
-
status: any | null;
|
|
4863
|
-
} | null;
|
|
4864
|
-
identifier: Array<{
|
|
4865
|
-
id: string | null;
|
|
4866
|
-
system: any | null;
|
|
4867
|
-
value: string | null;
|
|
4868
|
-
type: {
|
|
4869
|
-
id: string | null;
|
|
4870
|
-
text: string | null;
|
|
4871
|
-
coding: Array<{
|
|
4872
|
-
id: string | null;
|
|
4873
|
-
system: any | null;
|
|
4874
|
-
code: any | null;
|
|
4875
|
-
display: string | null;
|
|
4876
|
-
} | null> | null;
|
|
4877
|
-
} | null;
|
|
4878
|
-
} | null> | null;
|
|
4879
|
-
subject: {
|
|
4880
|
-
id: string | null;
|
|
4881
|
-
reference: string | null;
|
|
4882
|
-
type: any | null;
|
|
4883
|
-
resource: {
|
|
4884
|
-
name: Array<{
|
|
4885
|
-
text: string | null;
|
|
4886
|
-
family: string | null;
|
|
4887
|
-
given: Array<string | null> | null;
|
|
4888
|
-
prefix: Array<string | null> | null;
|
|
4889
|
-
suffix: Array<string | null> | null;
|
|
4890
|
-
} | null> | null;
|
|
4891
|
-
} | {} | null;
|
|
4892
|
-
} | null;
|
|
4893
|
-
basedOn: Array<{
|
|
4894
|
-
id: string | null;
|
|
4895
|
-
reference: string | null;
|
|
4896
|
-
type: any | null;
|
|
4897
|
-
resource: {
|
|
4898
|
-
resourceType: string | null;
|
|
4899
|
-
id: string;
|
|
4900
|
-
reasonCode: Array<{
|
|
4901
|
-
id: string | null;
|
|
4902
|
-
text: string | null;
|
|
4903
|
-
coding: Array<{
|
|
4904
|
-
id: string | null;
|
|
4905
|
-
system: any | null;
|
|
4906
|
-
code: any | null;
|
|
4907
|
-
display: string | null;
|
|
4908
|
-
} | null> | null;
|
|
4909
|
-
} | null> | null;
|
|
4910
|
-
} | {} | null;
|
|
4911
|
-
} | null> | null;
|
|
4912
|
-
code: {
|
|
4823
|
+
recorder: {
|
|
4824
|
+
id: string | null;
|
|
4825
|
+
reference: string | null;
|
|
4826
|
+
type: any | null;
|
|
4827
|
+
resource: {
|
|
4828
|
+
name: Array<{
|
|
4829
|
+
text: string | null;
|
|
4830
|
+
family: string | null;
|
|
4831
|
+
given: Array<string | null> | null;
|
|
4832
|
+
prefix: Array<string | null> | null;
|
|
4833
|
+
suffix: Array<string | null> | null;
|
|
4834
|
+
} | null> | null;
|
|
4835
|
+
} | {
|
|
4836
|
+
id: string;
|
|
4837
|
+
name: Array<{
|
|
4838
|
+
text: string | null;
|
|
4839
|
+
family: string | null;
|
|
4840
|
+
given: Array<string | null> | null;
|
|
4841
|
+
prefix: Array<string | null> | null;
|
|
4842
|
+
suffix: Array<string | null> | null;
|
|
4843
|
+
} | null> | null;
|
|
4844
|
+
identifier: Array<{
|
|
4845
|
+
id: string | null;
|
|
4846
|
+
system: any | null;
|
|
4847
|
+
value: string | null;
|
|
4848
|
+
type: {
|
|
4913
4849
|
id: string | null;
|
|
4914
4850
|
text: string | null;
|
|
4915
4851
|
coding: Array<{
|
|
@@ -4919,34 +4855,103 @@ export type GetImmunizationsQueryResults = {
|
|
|
4919
4855
|
display: string | null;
|
|
4920
4856
|
} | null> | null;
|
|
4921
4857
|
} | null;
|
|
4922
|
-
|
|
4923
|
-
|
|
4924
|
-
|
|
4925
|
-
|
|
4926
|
-
|
|
4927
|
-
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
|
|
4931
|
-
|
|
4932
|
-
|
|
4933
|
-
|
|
4934
|
-
|
|
4935
|
-
|
|
4936
|
-
|
|
4937
|
-
|
|
4938
|
-
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
|
|
4946
|
-
|
|
4947
|
-
|
|
4948
|
-
|
|
4949
|
-
|
|
4858
|
+
} | null> | null;
|
|
4859
|
+
} | {} | null;
|
|
4860
|
+
} | null;
|
|
4861
|
+
note: Array<{
|
|
4862
|
+
id: string | null;
|
|
4863
|
+
authorString: string | null;
|
|
4864
|
+
time: any | null;
|
|
4865
|
+
text: any | null;
|
|
4866
|
+
} | null> | null;
|
|
4867
|
+
onsetPeriod: {
|
|
4868
|
+
start: any | null;
|
|
4869
|
+
end: any | null;
|
|
4870
|
+
} | null;
|
|
4871
|
+
abatementPeriod: {
|
|
4872
|
+
start: any | null;
|
|
4873
|
+
end: any | null;
|
|
4874
|
+
} | null;
|
|
4875
|
+
subject: {
|
|
4876
|
+
id: string | null;
|
|
4877
|
+
reference: string | null;
|
|
4878
|
+
type: any | null;
|
|
4879
|
+
resource: {
|
|
4880
|
+
name: Array<{
|
|
4881
|
+
text: string | null;
|
|
4882
|
+
family: string | null;
|
|
4883
|
+
given: Array<string | null> | null;
|
|
4884
|
+
prefix: Array<string | null> | null;
|
|
4885
|
+
suffix: Array<string | null> | null;
|
|
4886
|
+
} | null> | null;
|
|
4887
|
+
} | {} | null;
|
|
4888
|
+
} | null;
|
|
4889
|
+
category: Array<{
|
|
4890
|
+
id: string | null;
|
|
4891
|
+
text: string | null;
|
|
4892
|
+
coding: Array<{
|
|
4893
|
+
id: string | null;
|
|
4894
|
+
system: any | null;
|
|
4895
|
+
code: any | null;
|
|
4896
|
+
display: string | null;
|
|
4897
|
+
} | null> | null;
|
|
4898
|
+
} | null> | null;
|
|
4899
|
+
severity: {
|
|
4900
|
+
id: string | null;
|
|
4901
|
+
text: string | null;
|
|
4902
|
+
coding: Array<{
|
|
4903
|
+
id: string | null;
|
|
4904
|
+
system: any | null;
|
|
4905
|
+
code: any | null;
|
|
4906
|
+
display: string | null;
|
|
4907
|
+
} | null> | null;
|
|
4908
|
+
} | null;
|
|
4909
|
+
verificationStatus: {
|
|
4910
|
+
id: string | null;
|
|
4911
|
+
text: string | null;
|
|
4912
|
+
coding: Array<{
|
|
4913
|
+
id: string | null;
|
|
4914
|
+
system: any | null;
|
|
4915
|
+
code: any | null;
|
|
4916
|
+
display: string | null;
|
|
4917
|
+
} | null> | null;
|
|
4918
|
+
} | null;
|
|
4919
|
+
bodySite: Array<{
|
|
4920
|
+
id: string | null;
|
|
4921
|
+
text: string | null;
|
|
4922
|
+
coding: Array<{
|
|
4923
|
+
id: string | null;
|
|
4924
|
+
system: any | null;
|
|
4925
|
+
code: any | null;
|
|
4926
|
+
display: string | null;
|
|
4927
|
+
} | null> | null;
|
|
4928
|
+
} | null> | null;
|
|
4929
|
+
asserter: {
|
|
4930
|
+
id: string | null;
|
|
4931
|
+
reference: string | null;
|
|
4932
|
+
type: any | null;
|
|
4933
|
+
resource: {
|
|
4934
|
+
name: Array<{
|
|
4935
|
+
text: string | null;
|
|
4936
|
+
family: string | null;
|
|
4937
|
+
given: Array<string | null> | null;
|
|
4938
|
+
prefix: Array<string | null> | null;
|
|
4939
|
+
suffix: Array<string | null> | null;
|
|
4940
|
+
} | null> | null;
|
|
4941
|
+
} | {
|
|
4942
|
+
id: string;
|
|
4943
|
+
name: Array<{
|
|
4944
|
+
text: string | null;
|
|
4945
|
+
family: string | null;
|
|
4946
|
+
given: Array<string | null> | null;
|
|
4947
|
+
prefix: Array<string | null> | null;
|
|
4948
|
+
suffix: Array<string | null> | null;
|
|
4949
|
+
} | null> | null;
|
|
4950
|
+
identifier: Array<{
|
|
4951
|
+
id: string | null;
|
|
4952
|
+
system: any | null;
|
|
4953
|
+
value: string | null;
|
|
4954
|
+
type: {
|
|
4950
4955
|
id: string | null;
|
|
4951
4956
|
text: string | null;
|
|
4952
4957
|
coding: Array<{
|
|
@@ -4955,42 +4960,386 @@ export type GetImmunizationsQueryResults = {
|
|
|
4955
4960
|
code: any | null;
|
|
4956
4961
|
display: string | null;
|
|
4957
4962
|
} | null> | null;
|
|
4958
|
-
} | null
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
|
|
4963
|
+
} | null;
|
|
4964
|
+
} | null> | null;
|
|
4965
|
+
} | {} | null;
|
|
4966
|
+
} | null;
|
|
4967
|
+
} | null;
|
|
4968
|
+
} | null> | null;
|
|
4969
|
+
} | null;
|
|
4970
|
+
};
|
|
4971
|
+
export type GetDiagnosticReportLabGroupsQueryVariables = Types.Exact<{
|
|
4972
|
+
request: Types.InputMaybe<Types.DiagnosticReportLabGroupQueryRequest>;
|
|
4973
|
+
}>;
|
|
4974
|
+
export type GetDiagnosticReportLabGroupsQueryResults = {
|
|
4975
|
+
getDiagnosticReportLabGroups: {
|
|
4976
|
+
resources: Array<{
|
|
4977
|
+
id: string | null;
|
|
4978
|
+
effectiveDateTime: any | null;
|
|
4979
|
+
issued: any | null;
|
|
4980
|
+
name: string | null;
|
|
4981
|
+
performer: string | null;
|
|
4982
|
+
references: Array<string> | null;
|
|
4983
|
+
source: Array<string | null> | null;
|
|
4984
|
+
sourceDisplay: Array<string | null> | null;
|
|
4985
|
+
coding: {
|
|
4986
|
+
id: string | null;
|
|
4987
|
+
system: any | null;
|
|
4988
|
+
code: any | null;
|
|
4989
|
+
display: string | null;
|
|
4990
|
+
} | null;
|
|
4991
|
+
}>;
|
|
4992
|
+
paging_info: {
|
|
4993
|
+
page_number: number;
|
|
4994
|
+
page_size: number;
|
|
4995
|
+
total_pages: number;
|
|
4996
|
+
total_items: number;
|
|
4997
|
+
} | null;
|
|
4998
|
+
};
|
|
4999
|
+
};
|
|
5000
|
+
export type GetEncountersGroupQueryVariables = Types.Exact<{
|
|
5001
|
+
request: Types.InputMaybe<Types.EncounterGroupQueryRequest>;
|
|
5002
|
+
}>;
|
|
5003
|
+
export type GetEncountersGroupQueryResults = {
|
|
5004
|
+
getEncounterGroups: {
|
|
5005
|
+
paging_info: {
|
|
5006
|
+
page_number: number;
|
|
5007
|
+
page_size: number;
|
|
5008
|
+
total_pages: number;
|
|
5009
|
+
total_items: number;
|
|
5010
|
+
} | null;
|
|
5011
|
+
resources: Array<{
|
|
5012
|
+
id: string | null;
|
|
5013
|
+
name: string | null;
|
|
5014
|
+
references: Array<string | null> | null;
|
|
5015
|
+
participant: string | null;
|
|
5016
|
+
date: any | null;
|
|
5017
|
+
source: Array<string | null> | null;
|
|
5018
|
+
sourceDisplay: Array<string | null> | null;
|
|
5019
|
+
class: {
|
|
5020
|
+
id: string | null;
|
|
5021
|
+
system: any | null;
|
|
5022
|
+
code: any | null;
|
|
5023
|
+
display: string | null;
|
|
5024
|
+
} | null;
|
|
5025
|
+
type: {
|
|
5026
|
+
id: string | null;
|
|
5027
|
+
system: any | null;
|
|
5028
|
+
code: any | null;
|
|
5029
|
+
display: string | null;
|
|
5030
|
+
} | null;
|
|
5031
|
+
coding: {
|
|
5032
|
+
id: string | null;
|
|
5033
|
+
system: any | null;
|
|
5034
|
+
code: any | null;
|
|
5035
|
+
display: string | null;
|
|
5036
|
+
} | null;
|
|
5037
|
+
}>;
|
|
5038
|
+
};
|
|
5039
|
+
};
|
|
5040
|
+
export type GetHealthSummaryQueryVariables = Types.Exact<{
|
|
5041
|
+
[key: string]: never;
|
|
5042
|
+
}>;
|
|
5043
|
+
export type GetHealthSummaryQueryResults = {
|
|
5044
|
+
getHealthSummary: {
|
|
5045
|
+
resources: Array<{
|
|
5046
|
+
category: Types.HealthSummaryCategory | null;
|
|
5047
|
+
total: number | null;
|
|
5048
|
+
}>;
|
|
5049
|
+
};
|
|
5050
|
+
};
|
|
5051
|
+
export type GetImmunizationGroupsQueryVariables = Types.Exact<{
|
|
5052
|
+
request: Types.InputMaybe<Types.ImmunizationGroupQueryRequest>;
|
|
5053
|
+
}>;
|
|
5054
|
+
export type GetImmunizationGroupsQueryResults = {
|
|
5055
|
+
getImmunizationGroups: {
|
|
5056
|
+
paging_info: {
|
|
5057
|
+
page_number: number;
|
|
5058
|
+
page_size: number;
|
|
5059
|
+
total_pages: number;
|
|
5060
|
+
total_items: number;
|
|
5061
|
+
} | null;
|
|
5062
|
+
resources: Array<{
|
|
5063
|
+
id: string | null;
|
|
5064
|
+
name: string | null;
|
|
5065
|
+
references: Array<string | null> | null;
|
|
5066
|
+
occurrenceDateTime: any | null;
|
|
5067
|
+
source: Array<string | null> | null;
|
|
5068
|
+
sourceDisplay: Array<string | null> | null;
|
|
5069
|
+
coding: {
|
|
5070
|
+
id: string | null;
|
|
5071
|
+
system: any | null;
|
|
5072
|
+
code: any | null;
|
|
5073
|
+
display: string | null;
|
|
5074
|
+
} | null;
|
|
5075
|
+
}>;
|
|
5076
|
+
};
|
|
5077
|
+
};
|
|
5078
|
+
export type GetImmunizationsQueryVariables = Types.Exact<{
|
|
5079
|
+
page: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
5080
|
+
pageSize: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
5081
|
+
code: Types.InputMaybe<Types.SearchToken>;
|
|
5082
|
+
id: Types.InputMaybe<Types.SearchString>;
|
|
5083
|
+
lastUpdated: Types.InputMaybe<Types.SearchDate>;
|
|
5084
|
+
sort: Types.InputMaybe<Array<Types.InputMaybe<Types.Scalars['String']['input']>> | Types.InputMaybe<Types.Scalars['String']['input']>>;
|
|
5085
|
+
status: Types.InputMaybe<Types.SearchToken>;
|
|
5086
|
+
total: Types.InputMaybe<Types.TotalType>;
|
|
5087
|
+
}>;
|
|
5088
|
+
export type GetImmunizationsQueryResults = {
|
|
5089
|
+
immunizations: {
|
|
5090
|
+
id: string | null;
|
|
5091
|
+
entry: Array<{
|
|
5092
|
+
id: string | null;
|
|
5093
|
+
resource: {
|
|
5094
|
+
resourceType: string | null;
|
|
5095
|
+
id: string;
|
|
5096
|
+
status: any | null;
|
|
5097
|
+
expirationDate: any | null;
|
|
5098
|
+
occurrenceDateTime: any | null;
|
|
5099
|
+
primarySource: boolean | null;
|
|
5100
|
+
lotNumber: string | null;
|
|
5101
|
+
identifier: Array<{
|
|
5102
|
+
id: string | null;
|
|
5103
|
+
system: any | null;
|
|
5104
|
+
value: string | null;
|
|
5105
|
+
type: {
|
|
5106
|
+
id: string | null;
|
|
5107
|
+
text: string | null;
|
|
5108
|
+
coding: Array<{
|
|
5109
|
+
id: string | null;
|
|
5110
|
+
system: any | null;
|
|
5111
|
+
code: any | null;
|
|
5112
|
+
display: string | null;
|
|
5113
|
+
} | null> | null;
|
|
5114
|
+
} | null;
|
|
5115
|
+
} | null> | null;
|
|
5116
|
+
meta: {
|
|
5117
|
+
versionId: string | null;
|
|
5118
|
+
lastUpdated: any | null;
|
|
5119
|
+
source: any | null;
|
|
5120
|
+
security: Array<{
|
|
5121
|
+
id: string | null;
|
|
5122
|
+
system: any | null;
|
|
5123
|
+
code: any | null;
|
|
5124
|
+
display: string | null;
|
|
5125
|
+
} | null> | null;
|
|
5126
|
+
tag: Array<{
|
|
5127
|
+
id: string | null;
|
|
5128
|
+
system: any | null;
|
|
5129
|
+
code: any | null;
|
|
5130
|
+
display: string | null;
|
|
5131
|
+
} | null> | null;
|
|
5132
|
+
} | null;
|
|
5133
|
+
text: {
|
|
5134
|
+
div: any | null;
|
|
5135
|
+
status: any | null;
|
|
5136
|
+
} | null;
|
|
5137
|
+
reportOrigin: {
|
|
5138
|
+
id: string | null;
|
|
5139
|
+
text: string | null;
|
|
5140
|
+
coding: Array<{
|
|
5141
|
+
id: string | null;
|
|
5142
|
+
system: any | null;
|
|
5143
|
+
code: any | null;
|
|
5144
|
+
display: string | null;
|
|
5145
|
+
} | null> | null;
|
|
5146
|
+
} | null;
|
|
5147
|
+
vaccineCode: {
|
|
5148
|
+
id: string | null;
|
|
5149
|
+
text: string | null;
|
|
5150
|
+
coding: Array<{
|
|
5151
|
+
id: string | null;
|
|
5152
|
+
system: any | null;
|
|
5153
|
+
code: any | null;
|
|
5154
|
+
display: string | null;
|
|
5155
|
+
} | null> | null;
|
|
5156
|
+
} | null;
|
|
5157
|
+
statusReason: {
|
|
5158
|
+
id: string | null;
|
|
5159
|
+
text: string | null;
|
|
5160
|
+
coding: Array<{
|
|
5161
|
+
id: string | null;
|
|
5162
|
+
system: any | null;
|
|
5163
|
+
code: any | null;
|
|
5164
|
+
display: string | null;
|
|
5165
|
+
} | null> | null;
|
|
5166
|
+
} | null;
|
|
5167
|
+
doseQuantity: {
|
|
5168
|
+
value: number | null;
|
|
5169
|
+
unit: string | null;
|
|
5170
|
+
code: any | null;
|
|
5171
|
+
comparator: any | null;
|
|
5172
|
+
system: any | null;
|
|
5173
|
+
} | null;
|
|
5174
|
+
reaction: Array<{
|
|
5175
|
+
date: any | null;
|
|
5176
|
+
reported: boolean | null;
|
|
5177
|
+
detail: {
|
|
5178
|
+
id: string | null;
|
|
5179
|
+
reference: string | null;
|
|
5180
|
+
type: any | null;
|
|
5181
|
+
resource: {
|
|
5182
|
+
id: string;
|
|
5183
|
+
resourceType: string | null;
|
|
5184
|
+
issued: any | null;
|
|
5185
|
+
effectiveDateTime: any | null;
|
|
5186
|
+
status: any | null;
|
|
5187
|
+
valueString: string | null;
|
|
5188
|
+
valueBoolean: boolean | null;
|
|
5189
|
+
valueInteger: number | null;
|
|
5190
|
+
valueTime: any | null;
|
|
5191
|
+
valueDateTime: any | null;
|
|
5192
|
+
meta: {
|
|
5193
|
+
versionId: string | null;
|
|
5194
|
+
lastUpdated: any | null;
|
|
5195
|
+
source: any | null;
|
|
5196
|
+
security: Array<{
|
|
5197
|
+
id: string | null;
|
|
5198
|
+
system: any | null;
|
|
5199
|
+
code: any | null;
|
|
5200
|
+
display: string | null;
|
|
5201
|
+
} | null> | null;
|
|
5202
|
+
tag: Array<{
|
|
5203
|
+
id: string | null;
|
|
5204
|
+
system: any | null;
|
|
5205
|
+
code: any | null;
|
|
5206
|
+
display: string | null;
|
|
5207
|
+
} | null> | null;
|
|
5208
|
+
} | null;
|
|
5209
|
+
text: {
|
|
5210
|
+
div: any | null;
|
|
5211
|
+
status: any | null;
|
|
5212
|
+
} | null;
|
|
5213
|
+
identifier: Array<{
|
|
5214
|
+
id: string | null;
|
|
5215
|
+
system: any | null;
|
|
5216
|
+
value: string | null;
|
|
5217
|
+
type: {
|
|
5218
|
+
id: string | null;
|
|
5219
|
+
text: string | null;
|
|
5220
|
+
coding: Array<{
|
|
5221
|
+
id: string | null;
|
|
5222
|
+
system: any | null;
|
|
5223
|
+
code: any | null;
|
|
5224
|
+
display: string | null;
|
|
5225
|
+
} | null> | null;
|
|
5226
|
+
} | null;
|
|
5227
|
+
} | null> | null;
|
|
5228
|
+
subject: {
|
|
5229
|
+
id: string | null;
|
|
5230
|
+
reference: string | null;
|
|
5231
|
+
type: any | null;
|
|
5232
|
+
resource: {
|
|
5233
|
+
name: Array<{
|
|
5234
|
+
text: string | null;
|
|
5235
|
+
family: string | null;
|
|
5236
|
+
given: Array<string | null> | null;
|
|
5237
|
+
prefix: Array<string | null> | null;
|
|
5238
|
+
suffix: Array<string | null> | null;
|
|
5239
|
+
} | null> | null;
|
|
5240
|
+
} | {} | null;
|
|
5241
|
+
} | null;
|
|
5242
|
+
basedOn: Array<{
|
|
5243
|
+
id: string | null;
|
|
5244
|
+
reference: string | null;
|
|
5245
|
+
type: any | null;
|
|
5246
|
+
resource: {
|
|
5247
|
+
resourceType: string | null;
|
|
5248
|
+
id: string;
|
|
5249
|
+
reasonCode: Array<{
|
|
5250
|
+
id: string | null;
|
|
5251
|
+
text: string | null;
|
|
5252
|
+
coding: Array<{
|
|
5253
|
+
id: string | null;
|
|
5254
|
+
system: any | null;
|
|
5255
|
+
code: any | null;
|
|
5256
|
+
display: string | null;
|
|
5257
|
+
} | null> | null;
|
|
5258
|
+
} | null> | null;
|
|
5259
|
+
} | {} | null;
|
|
5260
|
+
} | null> | null;
|
|
5261
|
+
code: {
|
|
5262
|
+
id: string | null;
|
|
5263
|
+
text: string | null;
|
|
5264
|
+
coding: Array<{
|
|
5265
|
+
id: string | null;
|
|
5266
|
+
system: any | null;
|
|
5267
|
+
code: any | null;
|
|
5268
|
+
display: string | null;
|
|
5269
|
+
} | null> | null;
|
|
5270
|
+
} | null;
|
|
5271
|
+
category: Array<{
|
|
5272
|
+
id: string | null;
|
|
5273
|
+
text: string | null;
|
|
5274
|
+
coding: Array<{
|
|
5275
|
+
id: string | null;
|
|
5276
|
+
system: any | null;
|
|
5277
|
+
code: any | null;
|
|
5278
|
+
display: string | null;
|
|
5279
|
+
} | null> | null;
|
|
5280
|
+
} | null> | null;
|
|
5281
|
+
referenceRange: Array<{
|
|
5282
|
+
text: string | null;
|
|
5283
|
+
low: {
|
|
5284
|
+
value: number | null;
|
|
5285
|
+
unit: string | null;
|
|
5286
|
+
code: any | null;
|
|
5287
|
+
comparator: any | null;
|
|
5288
|
+
system: any | null;
|
|
5289
|
+
} | null;
|
|
5290
|
+
high: {
|
|
5291
|
+
value: number | null;
|
|
5292
|
+
unit: string | null;
|
|
5293
|
+
code: any | null;
|
|
5294
|
+
comparator: any | null;
|
|
5295
|
+
system: any | null;
|
|
5296
|
+
} | null;
|
|
5297
|
+
} | null> | null;
|
|
5298
|
+
interpretation: Array<{
|
|
5299
|
+
id: string | null;
|
|
5300
|
+
text: string | null;
|
|
5301
|
+
coding: Array<{
|
|
5302
|
+
id: string | null;
|
|
5303
|
+
system: any | null;
|
|
5304
|
+
code: any | null;
|
|
5305
|
+
display: string | null;
|
|
5306
|
+
} | null> | null;
|
|
5307
|
+
} | null> | null;
|
|
5308
|
+
component: Array<{
|
|
5309
|
+
valueString: string | null;
|
|
5310
|
+
valueBoolean: boolean | null;
|
|
5311
|
+
valueInteger: number | null;
|
|
5312
|
+
valueTime: any | null;
|
|
5313
|
+
valueDateTime: any | null;
|
|
5314
|
+
code: {
|
|
5315
|
+
id: string | null;
|
|
5316
|
+
text: string | null;
|
|
5317
|
+
coding: Array<{
|
|
5318
|
+
id: string | null;
|
|
5319
|
+
system: any | null;
|
|
5320
|
+
code: any | null;
|
|
5321
|
+
display: string | null;
|
|
5322
|
+
} | null> | null;
|
|
5323
|
+
} | null;
|
|
5324
|
+
referenceRange: Array<{
|
|
5325
|
+
text: string | null;
|
|
5326
|
+
low: {
|
|
5327
|
+
value: number | null;
|
|
5328
|
+
unit: string | null;
|
|
5329
|
+
code: any | null;
|
|
5330
|
+
comparator: any | null;
|
|
5331
|
+
system: any | null;
|
|
5332
|
+
} | null;
|
|
5333
|
+
high: {
|
|
5334
|
+
value: number | null;
|
|
5335
|
+
unit: string | null;
|
|
5336
|
+
code: any | null;
|
|
5337
|
+
comparator: any | null;
|
|
5338
|
+
system: any | null;
|
|
5339
|
+
} | null;
|
|
5340
|
+
} | null> | null;
|
|
5341
|
+
interpretation: Array<{
|
|
5342
|
+
id: string | null;
|
|
4994
5343
|
text: string | null;
|
|
4995
5344
|
coding: Array<{
|
|
4996
5345
|
id: string | null;
|
|
@@ -5187,14 +5536,478 @@ export type GetImmunizationsQueryResults = {
|
|
|
5187
5536
|
display: string | null;
|
|
5188
5537
|
} | null> | null;
|
|
5189
5538
|
} | null;
|
|
5190
|
-
valueQuantity: {
|
|
5191
|
-
value: number | null;
|
|
5192
|
-
unit: string | null;
|
|
5193
|
-
code: any | null;
|
|
5194
|
-
comparator: any | null;
|
|
5195
|
-
system: any | null;
|
|
5196
|
-
} | null;
|
|
5197
|
-
valueCodeableConcept: {
|
|
5539
|
+
valueQuantity: {
|
|
5540
|
+
value: number | null;
|
|
5541
|
+
unit: string | null;
|
|
5542
|
+
code: any | null;
|
|
5543
|
+
comparator: any | null;
|
|
5544
|
+
system: any | null;
|
|
5545
|
+
} | null;
|
|
5546
|
+
valueCodeableConcept: {
|
|
5547
|
+
id: string | null;
|
|
5548
|
+
text: string | null;
|
|
5549
|
+
coding: Array<{
|
|
5550
|
+
id: string | null;
|
|
5551
|
+
system: any | null;
|
|
5552
|
+
code: any | null;
|
|
5553
|
+
display: string | null;
|
|
5554
|
+
} | null> | null;
|
|
5555
|
+
} | null;
|
|
5556
|
+
valueRatio: {
|
|
5557
|
+
numerator: {
|
|
5558
|
+
value: number | null;
|
|
5559
|
+
unit: string | null;
|
|
5560
|
+
code: any | null;
|
|
5561
|
+
comparator: any | null;
|
|
5562
|
+
system: any | null;
|
|
5563
|
+
} | null;
|
|
5564
|
+
denominator: {
|
|
5565
|
+
value: number | null;
|
|
5566
|
+
unit: string | null;
|
|
5567
|
+
code: any | null;
|
|
5568
|
+
comparator: any | null;
|
|
5569
|
+
system: any | null;
|
|
5570
|
+
} | null;
|
|
5571
|
+
} | null;
|
|
5572
|
+
valueRange: {
|
|
5573
|
+
low: {
|
|
5574
|
+
value: number | null;
|
|
5575
|
+
unit: string | null;
|
|
5576
|
+
code: any | null;
|
|
5577
|
+
comparator: any | null;
|
|
5578
|
+
system: any | null;
|
|
5579
|
+
} | null;
|
|
5580
|
+
high: {
|
|
5581
|
+
value: number | null;
|
|
5582
|
+
unit: string | null;
|
|
5583
|
+
code: any | null;
|
|
5584
|
+
comparator: any | null;
|
|
5585
|
+
system: any | null;
|
|
5586
|
+
} | null;
|
|
5587
|
+
} | null;
|
|
5588
|
+
valuePeriod: {
|
|
5589
|
+
start: any | null;
|
|
5590
|
+
end: any | null;
|
|
5591
|
+
} | null;
|
|
5592
|
+
} | null;
|
|
5593
|
+
} | null;
|
|
5594
|
+
} | null> | null;
|
|
5595
|
+
protocolApplied: Array<{
|
|
5596
|
+
doseNumberString: string | null;
|
|
5597
|
+
doseNumberPositiveInt: number | null;
|
|
5598
|
+
} | null> | null;
|
|
5599
|
+
manufacturer: {
|
|
5600
|
+
id: string | null;
|
|
5601
|
+
reference: string | null;
|
|
5602
|
+
type: any | null;
|
|
5603
|
+
resource: {
|
|
5604
|
+
resourceType: string | null;
|
|
5605
|
+
name: string | null;
|
|
5606
|
+
identifier: Array<{
|
|
5607
|
+
id: string | null;
|
|
5608
|
+
system: any | null;
|
|
5609
|
+
value: string | null;
|
|
5610
|
+
type: {
|
|
5611
|
+
id: string | null;
|
|
5612
|
+
text: string | null;
|
|
5613
|
+
coding: Array<{
|
|
5614
|
+
id: string | null;
|
|
5615
|
+
system: any | null;
|
|
5616
|
+
code: any | null;
|
|
5617
|
+
display: string | null;
|
|
5618
|
+
} | null> | null;
|
|
5619
|
+
} | null;
|
|
5620
|
+
} | null> | null;
|
|
5621
|
+
endpoint: Array<{
|
|
5622
|
+
id: string | null;
|
|
5623
|
+
reference: string | null;
|
|
5624
|
+
type: any | null;
|
|
5625
|
+
resource: {
|
|
5626
|
+
name: string | null;
|
|
5627
|
+
status: any | null;
|
|
5628
|
+
address: any | null;
|
|
5629
|
+
identifier: Array<{
|
|
5630
|
+
id: string | null;
|
|
5631
|
+
system: any | null;
|
|
5632
|
+
value: string | null;
|
|
5633
|
+
type: {
|
|
5634
|
+
id: string | null;
|
|
5635
|
+
text: string | null;
|
|
5636
|
+
coding: Array<{
|
|
5637
|
+
id: string | null;
|
|
5638
|
+
system: any | null;
|
|
5639
|
+
code: any | null;
|
|
5640
|
+
display: string | null;
|
|
5641
|
+
} | null> | null;
|
|
5642
|
+
} | null;
|
|
5643
|
+
} | null> | null;
|
|
5644
|
+
connectionType: {
|
|
5645
|
+
id: string | null;
|
|
5646
|
+
system: any | null;
|
|
5647
|
+
code: any | null;
|
|
5648
|
+
display: string | null;
|
|
5649
|
+
} | null;
|
|
5650
|
+
} | null;
|
|
5651
|
+
} | null> | null;
|
|
5652
|
+
telecom: Array<{
|
|
5653
|
+
system: any | null;
|
|
5654
|
+
value: string | null;
|
|
5655
|
+
rank: number | null;
|
|
5656
|
+
} | null> | null;
|
|
5657
|
+
address: Array<{
|
|
5658
|
+
use: any | null;
|
|
5659
|
+
type: any | null;
|
|
5660
|
+
text: string | null;
|
|
5661
|
+
line: Array<string | null> | null;
|
|
5662
|
+
city: string | null;
|
|
5663
|
+
district: string | null;
|
|
5664
|
+
state: string | null;
|
|
5665
|
+
postalCode: string | null;
|
|
5666
|
+
country: string | null;
|
|
5667
|
+
} | null> | null;
|
|
5668
|
+
} | null;
|
|
5669
|
+
} | null;
|
|
5670
|
+
site: {
|
|
5671
|
+
id: string | null;
|
|
5672
|
+
text: string | null;
|
|
5673
|
+
coding: Array<{
|
|
5674
|
+
id: string | null;
|
|
5675
|
+
system: any | null;
|
|
5676
|
+
code: any | null;
|
|
5677
|
+
display: string | null;
|
|
5678
|
+
} | null> | null;
|
|
5679
|
+
} | null;
|
|
5680
|
+
route: {
|
|
5681
|
+
id: string | null;
|
|
5682
|
+
text: string | null;
|
|
5683
|
+
coding: Array<{
|
|
5684
|
+
id: string | null;
|
|
5685
|
+
system: any | null;
|
|
5686
|
+
code: any | null;
|
|
5687
|
+
display: string | null;
|
|
5688
|
+
} | null> | null;
|
|
5689
|
+
} | null;
|
|
5690
|
+
performer: Array<{
|
|
5691
|
+
actor: {
|
|
5692
|
+
id: string | null;
|
|
5693
|
+
reference: string | null;
|
|
5694
|
+
type: any | null;
|
|
5695
|
+
resource: {
|
|
5696
|
+
organizationName: string | null;
|
|
5697
|
+
} | {
|
|
5698
|
+
id: string;
|
|
5699
|
+
name: Array<{
|
|
5700
|
+
text: string | null;
|
|
5701
|
+
family: string | null;
|
|
5702
|
+
given: Array<string | null> | null;
|
|
5703
|
+
prefix: Array<string | null> | null;
|
|
5704
|
+
suffix: Array<string | null> | null;
|
|
5705
|
+
} | null> | null;
|
|
5706
|
+
identifier: Array<{
|
|
5707
|
+
id: string | null;
|
|
5708
|
+
system: any | null;
|
|
5709
|
+
value: string | null;
|
|
5710
|
+
type: {
|
|
5711
|
+
id: string | null;
|
|
5712
|
+
text: string | null;
|
|
5713
|
+
coding: Array<{
|
|
5714
|
+
id: string | null;
|
|
5715
|
+
system: any | null;
|
|
5716
|
+
code: any | null;
|
|
5717
|
+
display: string | null;
|
|
5718
|
+
} | null> | null;
|
|
5719
|
+
} | null;
|
|
5720
|
+
} | null> | null;
|
|
5721
|
+
} | {} | null;
|
|
5722
|
+
} | null;
|
|
5723
|
+
} | null> | null;
|
|
5724
|
+
location: {
|
|
5725
|
+
id: string | null;
|
|
5726
|
+
reference: string | null;
|
|
5727
|
+
type: any | null;
|
|
5728
|
+
resource: {
|
|
5729
|
+
name: string | null;
|
|
5730
|
+
alias: Array<string | null> | null;
|
|
5731
|
+
description: string | null;
|
|
5732
|
+
identifier: Array<{
|
|
5733
|
+
id: string | null;
|
|
5734
|
+
system: any | null;
|
|
5735
|
+
value: string | null;
|
|
5736
|
+
type: {
|
|
5737
|
+
id: string | null;
|
|
5738
|
+
text: string | null;
|
|
5739
|
+
coding: Array<{
|
|
5740
|
+
id: string | null;
|
|
5741
|
+
system: any | null;
|
|
5742
|
+
code: any | null;
|
|
5743
|
+
display: string | null;
|
|
5744
|
+
} | null> | null;
|
|
5745
|
+
} | null;
|
|
5746
|
+
} | null> | null;
|
|
5747
|
+
address: {
|
|
5748
|
+
use: any | null;
|
|
5749
|
+
type: any | null;
|
|
5750
|
+
text: string | null;
|
|
5751
|
+
line: Array<string | null> | null;
|
|
5752
|
+
city: string | null;
|
|
5753
|
+
district: string | null;
|
|
5754
|
+
state: string | null;
|
|
5755
|
+
postalCode: string | null;
|
|
5756
|
+
country: string | null;
|
|
5757
|
+
} | null;
|
|
5758
|
+
position: {
|
|
5759
|
+
latitude: number | null;
|
|
5760
|
+
longitude: number | null;
|
|
5761
|
+
} | null;
|
|
5762
|
+
telecom: Array<{
|
|
5763
|
+
id: string | null;
|
|
5764
|
+
system: any | null;
|
|
5765
|
+
value: string | null;
|
|
5766
|
+
use: any | null;
|
|
5767
|
+
rank: number | null;
|
|
5768
|
+
} | null> | null;
|
|
5769
|
+
type: Array<{
|
|
5770
|
+
id: string | null;
|
|
5771
|
+
text: string | null;
|
|
5772
|
+
coding: Array<{
|
|
5773
|
+
id: string | null;
|
|
5774
|
+
system: any | null;
|
|
5775
|
+
code: any | null;
|
|
5776
|
+
display: string | null;
|
|
5777
|
+
} | null> | null;
|
|
5778
|
+
} | null> | null;
|
|
5779
|
+
} | null;
|
|
5780
|
+
} | null;
|
|
5781
|
+
reasonCode: Array<{
|
|
5782
|
+
id: string | null;
|
|
5783
|
+
text: string | null;
|
|
5784
|
+
coding: Array<{
|
|
5785
|
+
id: string | null;
|
|
5786
|
+
system: any | null;
|
|
5787
|
+
code: any | null;
|
|
5788
|
+
display: string | null;
|
|
5789
|
+
} | null> | null;
|
|
5790
|
+
} | null> | null;
|
|
5791
|
+
} | null;
|
|
5792
|
+
} | null> | null;
|
|
5793
|
+
} | null;
|
|
5794
|
+
};
|
|
5795
|
+
export type GetProcedureGroupsQueryVariables = Types.Exact<{
|
|
5796
|
+
request: Types.InputMaybe<Types.ProcedureGroupQueryRequest>;
|
|
5797
|
+
}>;
|
|
5798
|
+
export type GetProcedureGroupsQueryResults = {
|
|
5799
|
+
getProcedureGroups: {
|
|
5800
|
+
paging_info: {
|
|
5801
|
+
page_number: number;
|
|
5802
|
+
page_size: number;
|
|
5803
|
+
total_pages: number;
|
|
5804
|
+
total_items: number;
|
|
5805
|
+
} | null;
|
|
5806
|
+
resources: Array<{
|
|
5807
|
+
id: string | null;
|
|
5808
|
+
name: string | null;
|
|
5809
|
+
references: Array<string | null> | null;
|
|
5810
|
+
performer: Array<string | null> | null;
|
|
5811
|
+
performedDate: any | null;
|
|
5812
|
+
source: Array<string | null> | null;
|
|
5813
|
+
sourceDisplay: Array<string | null> | null;
|
|
5814
|
+
coding: {
|
|
5815
|
+
id: string | null;
|
|
5816
|
+
system: any | null;
|
|
5817
|
+
code: any | null;
|
|
5818
|
+
display: string | null;
|
|
5819
|
+
} | null;
|
|
5820
|
+
}>;
|
|
5821
|
+
};
|
|
5822
|
+
};
|
|
5823
|
+
export type GetProceduresQueryVariables = Types.Exact<{
|
|
5824
|
+
page: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
5825
|
+
pageSize: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
5826
|
+
code: Types.InputMaybe<Types.SearchToken>;
|
|
5827
|
+
id: Types.InputMaybe<Types.SearchString>;
|
|
5828
|
+
lastUpdated: Types.InputMaybe<Types.SearchDate>;
|
|
5829
|
+
sort: Types.InputMaybe<Array<Types.InputMaybe<Types.Scalars['String']['input']>> | Types.InputMaybe<Types.Scalars['String']['input']>>;
|
|
5830
|
+
status: Types.InputMaybe<Types.SearchToken>;
|
|
5831
|
+
total: Types.InputMaybe<Types.TotalType>;
|
|
5832
|
+
}>;
|
|
5833
|
+
export type GetProceduresQueryResults = {
|
|
5834
|
+
procedures: {
|
|
5835
|
+
id: string | null;
|
|
5836
|
+
entry: Array<{
|
|
5837
|
+
id: string | null;
|
|
5838
|
+
resource: {
|
|
5839
|
+
resourceType: string | null;
|
|
5840
|
+
id: string;
|
|
5841
|
+
status: any | null;
|
|
5842
|
+
performedDateTime: any | null;
|
|
5843
|
+
performedString: string | null;
|
|
5844
|
+
identifier: Array<{
|
|
5845
|
+
id: string | null;
|
|
5846
|
+
system: any | null;
|
|
5847
|
+
value: string | null;
|
|
5848
|
+
type: {
|
|
5849
|
+
id: string | null;
|
|
5850
|
+
text: string | null;
|
|
5851
|
+
coding: Array<{
|
|
5852
|
+
id: string | null;
|
|
5853
|
+
system: any | null;
|
|
5854
|
+
code: any | null;
|
|
5855
|
+
display: string | null;
|
|
5856
|
+
} | null> | null;
|
|
5857
|
+
} | null;
|
|
5858
|
+
} | null> | null;
|
|
5859
|
+
meta: {
|
|
5860
|
+
versionId: string | null;
|
|
5861
|
+
lastUpdated: any | null;
|
|
5862
|
+
source: any | null;
|
|
5863
|
+
security: Array<{
|
|
5864
|
+
id: string | null;
|
|
5865
|
+
system: any | null;
|
|
5866
|
+
code: any | null;
|
|
5867
|
+
display: string | null;
|
|
5868
|
+
} | null> | null;
|
|
5869
|
+
tag: Array<{
|
|
5870
|
+
id: string | null;
|
|
5871
|
+
system: any | null;
|
|
5872
|
+
code: any | null;
|
|
5873
|
+
display: string | null;
|
|
5874
|
+
} | null> | null;
|
|
5875
|
+
} | null;
|
|
5876
|
+
location: {
|
|
5877
|
+
id: string | null;
|
|
5878
|
+
reference: string | null;
|
|
5879
|
+
type: any | null;
|
|
5880
|
+
resource: {
|
|
5881
|
+
name: string | null;
|
|
5882
|
+
alias: Array<string | null> | null;
|
|
5883
|
+
description: string | null;
|
|
5884
|
+
identifier: Array<{
|
|
5885
|
+
id: string | null;
|
|
5886
|
+
system: any | null;
|
|
5887
|
+
value: string | null;
|
|
5888
|
+
type: {
|
|
5889
|
+
id: string | null;
|
|
5890
|
+
text: string | null;
|
|
5891
|
+
coding: Array<{
|
|
5892
|
+
id: string | null;
|
|
5893
|
+
system: any | null;
|
|
5894
|
+
code: any | null;
|
|
5895
|
+
display: string | null;
|
|
5896
|
+
} | null> | null;
|
|
5897
|
+
} | null;
|
|
5898
|
+
} | null> | null;
|
|
5899
|
+
address: {
|
|
5900
|
+
use: any | null;
|
|
5901
|
+
type: any | null;
|
|
5902
|
+
text: string | null;
|
|
5903
|
+
line: Array<string | null> | null;
|
|
5904
|
+
city: string | null;
|
|
5905
|
+
district: string | null;
|
|
5906
|
+
state: string | null;
|
|
5907
|
+
postalCode: string | null;
|
|
5908
|
+
country: string | null;
|
|
5909
|
+
} | null;
|
|
5910
|
+
position: {
|
|
5911
|
+
latitude: number | null;
|
|
5912
|
+
longitude: number | null;
|
|
5913
|
+
} | null;
|
|
5914
|
+
telecom: Array<{
|
|
5915
|
+
id: string | null;
|
|
5916
|
+
system: any | null;
|
|
5917
|
+
value: string | null;
|
|
5918
|
+
use: any | null;
|
|
5919
|
+
rank: number | null;
|
|
5920
|
+
} | null> | null;
|
|
5921
|
+
type: Array<{
|
|
5922
|
+
id: string | null;
|
|
5923
|
+
text: string | null;
|
|
5924
|
+
coding: Array<{
|
|
5925
|
+
id: string | null;
|
|
5926
|
+
system: any | null;
|
|
5927
|
+
code: any | null;
|
|
5928
|
+
display: string | null;
|
|
5929
|
+
} | null> | null;
|
|
5930
|
+
} | null> | null;
|
|
5931
|
+
} | null;
|
|
5932
|
+
} | null;
|
|
5933
|
+
subject: {
|
|
5934
|
+
id: string | null;
|
|
5935
|
+
reference: string | null;
|
|
5936
|
+
type: any | null;
|
|
5937
|
+
resource: {
|
|
5938
|
+
name: Array<{
|
|
5939
|
+
text: string | null;
|
|
5940
|
+
family: string | null;
|
|
5941
|
+
given: Array<string | null> | null;
|
|
5942
|
+
prefix: Array<string | null> | null;
|
|
5943
|
+
suffix: Array<string | null> | null;
|
|
5944
|
+
} | null> | null;
|
|
5945
|
+
} | {} | null;
|
|
5946
|
+
} | null;
|
|
5947
|
+
recorder: {
|
|
5948
|
+
id: string | null;
|
|
5949
|
+
reference: string | null;
|
|
5950
|
+
type: any | null;
|
|
5951
|
+
resource: {
|
|
5952
|
+
name: Array<{
|
|
5953
|
+
text: string | null;
|
|
5954
|
+
family: string | null;
|
|
5955
|
+
given: Array<string | null> | null;
|
|
5956
|
+
prefix: Array<string | null> | null;
|
|
5957
|
+
suffix: Array<string | null> | null;
|
|
5958
|
+
} | null> | null;
|
|
5959
|
+
} | {
|
|
5960
|
+
id: string;
|
|
5961
|
+
name: Array<{
|
|
5962
|
+
text: string | null;
|
|
5963
|
+
family: string | null;
|
|
5964
|
+
given: Array<string | null> | null;
|
|
5965
|
+
prefix: Array<string | null> | null;
|
|
5966
|
+
suffix: Array<string | null> | null;
|
|
5967
|
+
} | null> | null;
|
|
5968
|
+
identifier: Array<{
|
|
5969
|
+
id: string | null;
|
|
5970
|
+
system: any | null;
|
|
5971
|
+
value: string | null;
|
|
5972
|
+
type: {
|
|
5973
|
+
id: string | null;
|
|
5974
|
+
text: string | null;
|
|
5975
|
+
coding: Array<{
|
|
5976
|
+
id: string | null;
|
|
5977
|
+
system: any | null;
|
|
5978
|
+
code: any | null;
|
|
5979
|
+
display: string | null;
|
|
5980
|
+
} | null> | null;
|
|
5981
|
+
} | null;
|
|
5982
|
+
} | null> | null;
|
|
5983
|
+
} | {} | null;
|
|
5984
|
+
} | null;
|
|
5985
|
+
asserter: {
|
|
5986
|
+
id: string | null;
|
|
5987
|
+
reference: string | null;
|
|
5988
|
+
type: any | null;
|
|
5989
|
+
resource: {
|
|
5990
|
+
name: Array<{
|
|
5991
|
+
text: string | null;
|
|
5992
|
+
family: string | null;
|
|
5993
|
+
given: Array<string | null> | null;
|
|
5994
|
+
prefix: Array<string | null> | null;
|
|
5995
|
+
suffix: Array<string | null> | null;
|
|
5996
|
+
} | null> | null;
|
|
5997
|
+
} | {
|
|
5998
|
+
id: string;
|
|
5999
|
+
name: Array<{
|
|
6000
|
+
text: string | null;
|
|
6001
|
+
family: string | null;
|
|
6002
|
+
given: Array<string | null> | null;
|
|
6003
|
+
prefix: Array<string | null> | null;
|
|
6004
|
+
suffix: Array<string | null> | null;
|
|
6005
|
+
} | null> | null;
|
|
6006
|
+
identifier: Array<{
|
|
6007
|
+
id: string | null;
|
|
6008
|
+
system: any | null;
|
|
6009
|
+
value: string | null;
|
|
6010
|
+
type: {
|
|
5198
6011
|
id: string | null;
|
|
5199
6012
|
text: string | null;
|
|
5200
6013
|
coding: Array<{
|
|
@@ -5204,121 +6017,351 @@ export type GetImmunizationsQueryResults = {
|
|
|
5204
6017
|
display: string | null;
|
|
5205
6018
|
} | null> | null;
|
|
5206
6019
|
} | null;
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
|
|
5223
|
-
|
|
5224
|
-
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
6020
|
+
} | null> | null;
|
|
6021
|
+
} | {} | null;
|
|
6022
|
+
} | null;
|
|
6023
|
+
text: {
|
|
6024
|
+
div: any | null;
|
|
6025
|
+
status: any | null;
|
|
6026
|
+
} | null;
|
|
6027
|
+
code: {
|
|
6028
|
+
id: string | null;
|
|
6029
|
+
text: string | null;
|
|
6030
|
+
coding: Array<{
|
|
6031
|
+
id: string | null;
|
|
6032
|
+
system: any | null;
|
|
6033
|
+
code: any | null;
|
|
6034
|
+
display: string | null;
|
|
6035
|
+
} | null> | null;
|
|
6036
|
+
} | null;
|
|
6037
|
+
category: {
|
|
6038
|
+
id: string | null;
|
|
6039
|
+
text: string | null;
|
|
6040
|
+
coding: Array<{
|
|
6041
|
+
id: string | null;
|
|
6042
|
+
system: any | null;
|
|
6043
|
+
code: any | null;
|
|
6044
|
+
display: string | null;
|
|
6045
|
+
} | null> | null;
|
|
6046
|
+
} | null;
|
|
6047
|
+
performedPeriod: {
|
|
6048
|
+
start: any | null;
|
|
6049
|
+
end: any | null;
|
|
6050
|
+
} | null;
|
|
6051
|
+
performer: Array<{
|
|
6052
|
+
actor: {
|
|
6053
|
+
id: string | null;
|
|
6054
|
+
reference: string | null;
|
|
6055
|
+
type: any | null;
|
|
6056
|
+
resource: {
|
|
6057
|
+
organizationName: string | null;
|
|
6058
|
+
} | {
|
|
6059
|
+
id: string;
|
|
6060
|
+
name: Array<{
|
|
6061
|
+
text: string | null;
|
|
6062
|
+
family: string | null;
|
|
6063
|
+
given: Array<string | null> | null;
|
|
6064
|
+
prefix: Array<string | null> | null;
|
|
6065
|
+
suffix: Array<string | null> | null;
|
|
6066
|
+
} | null> | null;
|
|
6067
|
+
identifier: Array<{
|
|
6068
|
+
id: string | null;
|
|
6069
|
+
system: any | null;
|
|
6070
|
+
value: string | null;
|
|
6071
|
+
type: {
|
|
6072
|
+
id: string | null;
|
|
6073
|
+
text: string | null;
|
|
6074
|
+
coding: Array<{
|
|
6075
|
+
id: string | null;
|
|
6076
|
+
system: any | null;
|
|
6077
|
+
code: any | null;
|
|
6078
|
+
display: string | null;
|
|
6079
|
+
} | null> | null;
|
|
5237
6080
|
} | null;
|
|
5238
|
-
} | null;
|
|
5239
|
-
|
|
5240
|
-
start: any | null;
|
|
5241
|
-
end: any | null;
|
|
5242
|
-
} | null;
|
|
5243
|
-
} | null;
|
|
6081
|
+
} | null> | null;
|
|
6082
|
+
} | {} | null;
|
|
5244
6083
|
} | null;
|
|
5245
6084
|
} | null> | null;
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
6085
|
+
reasonCode: Array<{
|
|
6086
|
+
id: string | null;
|
|
6087
|
+
text: string | null;
|
|
6088
|
+
coding: Array<{
|
|
6089
|
+
id: string | null;
|
|
6090
|
+
system: any | null;
|
|
6091
|
+
code: any | null;
|
|
6092
|
+
display: string | null;
|
|
6093
|
+
} | null> | null;
|
|
6094
|
+
} | null> | null;
|
|
6095
|
+
bodySite: Array<{
|
|
6096
|
+
id: string | null;
|
|
6097
|
+
text: string | null;
|
|
6098
|
+
coding: Array<{
|
|
6099
|
+
id: string | null;
|
|
6100
|
+
system: any | null;
|
|
6101
|
+
code: any | null;
|
|
6102
|
+
display: string | null;
|
|
6103
|
+
} | null> | null;
|
|
6104
|
+
} | null> | null;
|
|
6105
|
+
outcome: {
|
|
6106
|
+
id: string | null;
|
|
6107
|
+
text: string | null;
|
|
6108
|
+
coding: Array<{
|
|
6109
|
+
id: string | null;
|
|
6110
|
+
system: any | null;
|
|
6111
|
+
code: any | null;
|
|
6112
|
+
display: string | null;
|
|
6113
|
+
} | null> | null;
|
|
6114
|
+
} | null;
|
|
6115
|
+
followUp: Array<{
|
|
6116
|
+
id: string | null;
|
|
6117
|
+
text: string | null;
|
|
6118
|
+
coding: Array<{
|
|
6119
|
+
id: string | null;
|
|
6120
|
+
system: any | null;
|
|
6121
|
+
code: any | null;
|
|
6122
|
+
display: string | null;
|
|
6123
|
+
} | null> | null;
|
|
6124
|
+
} | null> | null;
|
|
6125
|
+
complication: Array<{
|
|
6126
|
+
id: string | null;
|
|
6127
|
+
text: string | null;
|
|
6128
|
+
coding: Array<{
|
|
6129
|
+
id: string | null;
|
|
6130
|
+
system: any | null;
|
|
6131
|
+
code: any | null;
|
|
6132
|
+
display: string | null;
|
|
6133
|
+
} | null> | null;
|
|
6134
|
+
} | null> | null;
|
|
6135
|
+
note: Array<{
|
|
6136
|
+
id: string | null;
|
|
6137
|
+
authorString: string | null;
|
|
6138
|
+
time: any | null;
|
|
6139
|
+
text: any | null;
|
|
6140
|
+
} | null> | null;
|
|
6141
|
+
} | null;
|
|
6142
|
+
} | null> | null;
|
|
6143
|
+
} | null;
|
|
6144
|
+
};
|
|
6145
|
+
export type GetVitalSignGroupsQueryVariables = Types.Exact<{
|
|
6146
|
+
request: Types.InputMaybe<Types.VitalSignGroupQueryRequest>;
|
|
6147
|
+
}>;
|
|
6148
|
+
export type GetVitalSignGroupsQueryResults = {
|
|
6149
|
+
getVitalSignGroups: {
|
|
6150
|
+
paging_info: {
|
|
6151
|
+
page_number: number;
|
|
6152
|
+
page_size: number;
|
|
6153
|
+
total_pages: number;
|
|
6154
|
+
total_items: number;
|
|
6155
|
+
} | null;
|
|
6156
|
+
resources: Array<{
|
|
6157
|
+
id: string | null;
|
|
6158
|
+
name: string | null;
|
|
6159
|
+
source: Array<string | null> | null;
|
|
6160
|
+
sourceDisplay: Array<string | null> | null;
|
|
6161
|
+
effectiveDateTime: any | null;
|
|
6162
|
+
references: Array<string> | null;
|
|
6163
|
+
category: Array<{
|
|
6164
|
+
id: string | null;
|
|
6165
|
+
text: string | null;
|
|
6166
|
+
coding: Array<{
|
|
6167
|
+
id: string | null;
|
|
6168
|
+
system: any | null;
|
|
6169
|
+
code: any | null;
|
|
6170
|
+
display: string | null;
|
|
6171
|
+
} | null> | null;
|
|
6172
|
+
} | null> | null;
|
|
6173
|
+
coding: {
|
|
6174
|
+
id: string | null;
|
|
6175
|
+
system: any | null;
|
|
6176
|
+
code: any | null;
|
|
6177
|
+
display: string | null;
|
|
6178
|
+
} | null;
|
|
6179
|
+
interpretation: Array<{
|
|
6180
|
+
id: string | null;
|
|
6181
|
+
text: string | null;
|
|
6182
|
+
coding: Array<{
|
|
6183
|
+
id: string | null;
|
|
6184
|
+
system: any | null;
|
|
6185
|
+
code: any | null;
|
|
6186
|
+
display: string | null;
|
|
5249
6187
|
} | null> | null;
|
|
5250
|
-
|
|
6188
|
+
} | null> | null;
|
|
6189
|
+
value: {
|
|
6190
|
+
valueString: string | null;
|
|
6191
|
+
valueBoolean: boolean | null;
|
|
6192
|
+
valueInteger: number | null;
|
|
6193
|
+
valueTime: string | null;
|
|
6194
|
+
valueDateTime: any | null;
|
|
6195
|
+
valueQuantity: {
|
|
6196
|
+
value: number | null;
|
|
6197
|
+
unit: string | null;
|
|
6198
|
+
code: any | null;
|
|
6199
|
+
comparator: any | null;
|
|
6200
|
+
system: any | null;
|
|
6201
|
+
} | null;
|
|
6202
|
+
valueCodeableConcept: {
|
|
5251
6203
|
id: string | null;
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
6204
|
+
text: string | null;
|
|
6205
|
+
coding: Array<{
|
|
6206
|
+
id: string | null;
|
|
6207
|
+
system: any | null;
|
|
6208
|
+
code: any | null;
|
|
6209
|
+
display: string | null;
|
|
6210
|
+
} | null> | null;
|
|
6211
|
+
} | null;
|
|
6212
|
+
valueRatio: {
|
|
6213
|
+
numerator: {
|
|
6214
|
+
value: number | null;
|
|
6215
|
+
unit: string | null;
|
|
6216
|
+
code: any | null;
|
|
6217
|
+
comparator: any | null;
|
|
6218
|
+
system: any | null;
|
|
6219
|
+
} | null;
|
|
6220
|
+
denominator: {
|
|
6221
|
+
value: number | null;
|
|
6222
|
+
unit: string | null;
|
|
6223
|
+
code: any | null;
|
|
6224
|
+
comparator: any | null;
|
|
6225
|
+
system: any | null;
|
|
6226
|
+
} | null;
|
|
6227
|
+
} | null;
|
|
6228
|
+
valueRange: {
|
|
6229
|
+
low: {
|
|
6230
|
+
value: number | null;
|
|
6231
|
+
unit: string | null;
|
|
6232
|
+
code: any | null;
|
|
6233
|
+
comparator: any | null;
|
|
6234
|
+
system: any | null;
|
|
6235
|
+
} | null;
|
|
6236
|
+
high: {
|
|
6237
|
+
value: number | null;
|
|
6238
|
+
unit: string | null;
|
|
6239
|
+
code: any | null;
|
|
6240
|
+
comparator: any | null;
|
|
6241
|
+
system: any | null;
|
|
6242
|
+
} | null;
|
|
6243
|
+
} | null;
|
|
6244
|
+
valuePeriod: {
|
|
6245
|
+
start: any | null;
|
|
6246
|
+
end: any | null;
|
|
6247
|
+
} | null;
|
|
6248
|
+
} | null;
|
|
6249
|
+
referenceRange: Array<{
|
|
6250
|
+
text: string | null;
|
|
6251
|
+
low: {
|
|
6252
|
+
value: number | null;
|
|
6253
|
+
unit: string | null;
|
|
6254
|
+
code: any | null;
|
|
6255
|
+
comparator: any | null;
|
|
6256
|
+
system: any | null;
|
|
6257
|
+
} | null;
|
|
6258
|
+
high: {
|
|
6259
|
+
value: number | null;
|
|
6260
|
+
unit: string | null;
|
|
6261
|
+
code: any | null;
|
|
6262
|
+
comparator: any | null;
|
|
6263
|
+
system: any | null;
|
|
6264
|
+
} | null;
|
|
6265
|
+
} | null> | null;
|
|
6266
|
+
component: Array<{
|
|
6267
|
+
code: {
|
|
6268
|
+
id: string | null;
|
|
6269
|
+
text: string | null;
|
|
6270
|
+
coding: Array<{
|
|
6271
|
+
id: string | null;
|
|
6272
|
+
system: any | null;
|
|
6273
|
+
code: any | null;
|
|
6274
|
+
display: string | null;
|
|
6275
|
+
} | null> | null;
|
|
6276
|
+
} | null;
|
|
6277
|
+
value: {
|
|
6278
|
+
valueString: string | null;
|
|
6279
|
+
valueBoolean: boolean | null;
|
|
6280
|
+
valueInteger: number | null;
|
|
6281
|
+
valueTime: string | null;
|
|
6282
|
+
valueDateTime: any | null;
|
|
6283
|
+
valueQuantity: {
|
|
6284
|
+
value: number | null;
|
|
6285
|
+
unit: string | null;
|
|
6286
|
+
code: any | null;
|
|
6287
|
+
comparator: any | null;
|
|
6288
|
+
system: any | null;
|
|
6289
|
+
} | null;
|
|
6290
|
+
valueCodeableConcept: {
|
|
6291
|
+
id: string | null;
|
|
6292
|
+
text: string | null;
|
|
6293
|
+
coding: Array<{
|
|
5258
6294
|
id: string | null;
|
|
5259
6295
|
system: any | null;
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
id: string | null;
|
|
5263
|
-
text: string | null;
|
|
5264
|
-
coding: Array<{
|
|
5265
|
-
id: string | null;
|
|
5266
|
-
system: any | null;
|
|
5267
|
-
code: any | null;
|
|
5268
|
-
display: string | null;
|
|
5269
|
-
} | null> | null;
|
|
5270
|
-
} | null;
|
|
5271
|
-
} | null> | null;
|
|
5272
|
-
endpoint: Array<{
|
|
5273
|
-
id: string | null;
|
|
5274
|
-
reference: string | null;
|
|
5275
|
-
type: any | null;
|
|
5276
|
-
resource: {
|
|
5277
|
-
name: string | null;
|
|
5278
|
-
status: any | null;
|
|
5279
|
-
address: any | null;
|
|
5280
|
-
identifier: Array<{
|
|
5281
|
-
id: string | null;
|
|
5282
|
-
system: any | null;
|
|
5283
|
-
value: string | null;
|
|
5284
|
-
type: {
|
|
5285
|
-
id: string | null;
|
|
5286
|
-
text: string | null;
|
|
5287
|
-
coding: Array<{
|
|
5288
|
-
id: string | null;
|
|
5289
|
-
system: any | null;
|
|
5290
|
-
code: any | null;
|
|
5291
|
-
display: string | null;
|
|
5292
|
-
} | null> | null;
|
|
5293
|
-
} | null;
|
|
5294
|
-
} | null> | null;
|
|
5295
|
-
connectionType: {
|
|
5296
|
-
id: string | null;
|
|
5297
|
-
system: any | null;
|
|
5298
|
-
code: any | null;
|
|
5299
|
-
display: string | null;
|
|
5300
|
-
} | null;
|
|
5301
|
-
} | null;
|
|
6296
|
+
code: any | null;
|
|
6297
|
+
display: string | null;
|
|
5302
6298
|
} | null> | null;
|
|
5303
|
-
|
|
6299
|
+
} | null;
|
|
6300
|
+
valueRatio: {
|
|
6301
|
+
numerator: {
|
|
6302
|
+
value: number | null;
|
|
6303
|
+
unit: string | null;
|
|
6304
|
+
code: any | null;
|
|
6305
|
+
comparator: any | null;
|
|
5304
6306
|
system: any | null;
|
|
5305
|
-
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
|
|
5309
|
-
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
|
|
5313
|
-
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
|
|
5317
|
-
|
|
5318
|
-
|
|
6307
|
+
} | null;
|
|
6308
|
+
denominator: {
|
|
6309
|
+
value: number | null;
|
|
6310
|
+
unit: string | null;
|
|
6311
|
+
code: any | null;
|
|
6312
|
+
comparator: any | null;
|
|
6313
|
+
system: any | null;
|
|
6314
|
+
} | null;
|
|
6315
|
+
} | null;
|
|
6316
|
+
valueRange: {
|
|
6317
|
+
low: {
|
|
6318
|
+
value: number | null;
|
|
6319
|
+
unit: string | null;
|
|
6320
|
+
code: any | null;
|
|
6321
|
+
comparator: any | null;
|
|
6322
|
+
system: any | null;
|
|
6323
|
+
} | null;
|
|
6324
|
+
high: {
|
|
6325
|
+
value: number | null;
|
|
6326
|
+
unit: string | null;
|
|
6327
|
+
code: any | null;
|
|
6328
|
+
comparator: any | null;
|
|
6329
|
+
system: any | null;
|
|
6330
|
+
} | null;
|
|
6331
|
+
} | null;
|
|
6332
|
+
valuePeriod: {
|
|
6333
|
+
start: any | null;
|
|
6334
|
+
end: any | null;
|
|
5319
6335
|
} | null;
|
|
5320
6336
|
} | null;
|
|
5321
|
-
|
|
6337
|
+
referenceRange: Array<{
|
|
6338
|
+
text: string | null;
|
|
6339
|
+
low: {
|
|
6340
|
+
value: number | null;
|
|
6341
|
+
unit: string | null;
|
|
6342
|
+
code: any | null;
|
|
6343
|
+
comparator: any | null;
|
|
6344
|
+
system: any | null;
|
|
6345
|
+
} | null;
|
|
6346
|
+
high: {
|
|
6347
|
+
value: number | null;
|
|
6348
|
+
unit: string | null;
|
|
6349
|
+
code: any | null;
|
|
6350
|
+
comparator: any | null;
|
|
6351
|
+
system: any | null;
|
|
6352
|
+
} | null;
|
|
6353
|
+
} | null> | null;
|
|
6354
|
+
interpretation: Array<{
|
|
6355
|
+
id: string | null;
|
|
6356
|
+
text: string | null;
|
|
6357
|
+
coding: Array<{
|
|
6358
|
+
id: string | null;
|
|
6359
|
+
system: any | null;
|
|
6360
|
+
code: any | null;
|
|
6361
|
+
display: string | null;
|
|
6362
|
+
} | null> | null;
|
|
6363
|
+
} | null> | null;
|
|
6364
|
+
dataAbsentReason: {
|
|
5322
6365
|
id: string | null;
|
|
5323
6366
|
text: string | null;
|
|
5324
6367
|
coding: Array<{
|
|
@@ -5327,97 +6370,95 @@ export type GetImmunizationsQueryResults = {
|
|
|
5327
6370
|
code: any | null;
|
|
5328
6371
|
display: string | null;
|
|
5329
6372
|
} | null> | null;
|
|
5330
|
-
} | null;
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
|
|
6373
|
+
} | null;
|
|
6374
|
+
} | null> | null;
|
|
6375
|
+
}>;
|
|
6376
|
+
};
|
|
6377
|
+
};
|
|
6378
|
+
export type GetVitalSignsQueryVariables = Types.Exact<{
|
|
6379
|
+
page: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
6380
|
+
pageSize: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
6381
|
+
code: Types.InputMaybe<Types.SearchToken>;
|
|
6382
|
+
id: Types.InputMaybe<Types.SearchString>;
|
|
6383
|
+
lastUpdated: Types.InputMaybe<Types.SearchDate>;
|
|
6384
|
+
sort: Types.InputMaybe<Array<Types.InputMaybe<Types.Scalars['String']['input']>> | Types.InputMaybe<Types.Scalars['String']['input']>>;
|
|
6385
|
+
status: Types.InputMaybe<Types.SearchToken>;
|
|
6386
|
+
total: Types.InputMaybe<Types.TotalType>;
|
|
6387
|
+
}>;
|
|
6388
|
+
export type GetVitalSignsQueryResults = {
|
|
6389
|
+
observations: {
|
|
6390
|
+
id: string | null;
|
|
6391
|
+
entry: Array<{
|
|
6392
|
+
id: string | null;
|
|
6393
|
+
resource: {
|
|
6394
|
+
id: string;
|
|
6395
|
+
resourceType: string | null;
|
|
6396
|
+
issued: any | null;
|
|
6397
|
+
effectiveDateTime: any | null;
|
|
6398
|
+
status: any | null;
|
|
6399
|
+
valueString: string | null;
|
|
6400
|
+
valueBoolean: boolean | null;
|
|
6401
|
+
valueInteger: number | null;
|
|
6402
|
+
valueTime: any | null;
|
|
6403
|
+
valueDateTime: any | null;
|
|
6404
|
+
meta: {
|
|
6405
|
+
versionId: string | null;
|
|
6406
|
+
lastUpdated: any | null;
|
|
6407
|
+
source: any | null;
|
|
6408
|
+
security: Array<{
|
|
6409
|
+
id: string | null;
|
|
6410
|
+
system: any | null;
|
|
6411
|
+
code: any | null;
|
|
6412
|
+
display: string | null;
|
|
6413
|
+
} | null> | null;
|
|
6414
|
+
tag: Array<{
|
|
5335
6415
|
id: string | null;
|
|
5336
6416
|
system: any | null;
|
|
5337
6417
|
code: any | null;
|
|
5338
6418
|
display: string | null;
|
|
5339
6419
|
} | null> | null;
|
|
5340
6420
|
} | null;
|
|
5341
|
-
|
|
5342
|
-
|
|
6421
|
+
text: {
|
|
6422
|
+
div: any | null;
|
|
6423
|
+
status: any | null;
|
|
6424
|
+
} | null;
|
|
6425
|
+
identifier: Array<{
|
|
6426
|
+
id: string | null;
|
|
6427
|
+
system: any | null;
|
|
6428
|
+
value: string | null;
|
|
6429
|
+
type: {
|
|
5343
6430
|
id: string | null;
|
|
5344
|
-
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
text: string | null;
|
|
5352
|
-
family: string | null;
|
|
5353
|
-
given: Array<string | null> | null;
|
|
5354
|
-
prefix: Array<string | null> | null;
|
|
5355
|
-
suffix: Array<string | null> | null;
|
|
5356
|
-
} | null> | null;
|
|
5357
|
-
identifier: Array<{
|
|
5358
|
-
id: string | null;
|
|
5359
|
-
system: any | null;
|
|
5360
|
-
value: string | null;
|
|
5361
|
-
type: {
|
|
5362
|
-
id: string | null;
|
|
5363
|
-
text: string | null;
|
|
5364
|
-
coding: Array<{
|
|
5365
|
-
id: string | null;
|
|
5366
|
-
system: any | null;
|
|
5367
|
-
code: any | null;
|
|
5368
|
-
display: string | null;
|
|
5369
|
-
} | null> | null;
|
|
5370
|
-
} | null;
|
|
5371
|
-
} | null> | null;
|
|
5372
|
-
} | {} | null;
|
|
6431
|
+
text: string | null;
|
|
6432
|
+
coding: Array<{
|
|
6433
|
+
id: string | null;
|
|
6434
|
+
system: any | null;
|
|
6435
|
+
code: any | null;
|
|
6436
|
+
display: string | null;
|
|
6437
|
+
} | null> | null;
|
|
5373
6438
|
} | null;
|
|
5374
6439
|
} | null> | null;
|
|
5375
|
-
|
|
6440
|
+
subject: {
|
|
5376
6441
|
id: string | null;
|
|
5377
6442
|
reference: string | null;
|
|
5378
6443
|
type: any | null;
|
|
5379
6444
|
resource: {
|
|
5380
|
-
name:
|
|
5381
|
-
alias: Array<string | null> | null;
|
|
5382
|
-
description: string | null;
|
|
5383
|
-
identifier: Array<{
|
|
5384
|
-
id: string | null;
|
|
5385
|
-
system: any | null;
|
|
5386
|
-
value: string | null;
|
|
5387
|
-
type: {
|
|
5388
|
-
id: string | null;
|
|
5389
|
-
text: string | null;
|
|
5390
|
-
coding: Array<{
|
|
5391
|
-
id: string | null;
|
|
5392
|
-
system: any | null;
|
|
5393
|
-
code: any | null;
|
|
5394
|
-
display: string | null;
|
|
5395
|
-
} | null> | null;
|
|
5396
|
-
} | null;
|
|
5397
|
-
} | null> | null;
|
|
5398
|
-
address: {
|
|
5399
|
-
use: any | null;
|
|
5400
|
-
type: any | null;
|
|
6445
|
+
name: Array<{
|
|
5401
6446
|
text: string | null;
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
5406
|
-
postalCode: string | null;
|
|
5407
|
-
country: string | null;
|
|
5408
|
-
} | null;
|
|
5409
|
-
position: {
|
|
5410
|
-
latitude: number | null;
|
|
5411
|
-
longitude: number | null;
|
|
5412
|
-
} | null;
|
|
5413
|
-
telecom: Array<{
|
|
5414
|
-
id: string | null;
|
|
5415
|
-
system: any | null;
|
|
5416
|
-
value: string | null;
|
|
5417
|
-
use: any | null;
|
|
5418
|
-
rank: number | null;
|
|
6447
|
+
family: string | null;
|
|
6448
|
+
given: Array<string | null> | null;
|
|
6449
|
+
prefix: Array<string | null> | null;
|
|
6450
|
+
suffix: Array<string | null> | null;
|
|
5419
6451
|
} | null> | null;
|
|
5420
|
-
|
|
6452
|
+
} | {} | null;
|
|
6453
|
+
} | null;
|
|
6454
|
+
basedOn: Array<{
|
|
6455
|
+
id: string | null;
|
|
6456
|
+
reference: string | null;
|
|
6457
|
+
type: any | null;
|
|
6458
|
+
resource: {
|
|
6459
|
+
resourceType: string | null;
|
|
6460
|
+
id: string;
|
|
6461
|
+
reasonCode: Array<{
|
|
5421
6462
|
id: string | null;
|
|
5422
6463
|
text: string | null;
|
|
5423
6464
|
coding: Array<{
|
|
@@ -5427,9 +6468,9 @@ export type GetImmunizationsQueryResults = {
|
|
|
5427
6468
|
display: string | null;
|
|
5428
6469
|
} | null> | null;
|
|
5429
6470
|
} | null> | null;
|
|
5430
|
-
} | null;
|
|
5431
|
-
} | null;
|
|
5432
|
-
|
|
6471
|
+
} | {} | null;
|
|
6472
|
+
} | null> | null;
|
|
6473
|
+
code: {
|
|
5433
6474
|
id: string | null;
|
|
5434
6475
|
text: string | null;
|
|
5435
6476
|
coding: Array<{
|
|
@@ -5438,97 +6479,8 @@ export type GetImmunizationsQueryResults = {
|
|
|
5438
6479
|
code: any | null;
|
|
5439
6480
|
display: string | null;
|
|
5440
6481
|
} | null> | null;
|
|
5441
|
-
} | null> | null;
|
|
5442
|
-
} | null;
|
|
5443
|
-
} | null> | null;
|
|
5444
|
-
} | null;
|
|
5445
|
-
};
|
|
5446
|
-
export type GetProcedureGroupsQueryVariables = Types.Exact<{
|
|
5447
|
-
request: Types.InputMaybe<Types.ProcedureGroupQueryRequest>;
|
|
5448
|
-
}>;
|
|
5449
|
-
export type GetProcedureGroupsQueryResults = {
|
|
5450
|
-
getProcedureGroups: {
|
|
5451
|
-
paging_info: {
|
|
5452
|
-
page_number: number;
|
|
5453
|
-
page_size: number;
|
|
5454
|
-
total_pages: number;
|
|
5455
|
-
total_items: number;
|
|
5456
|
-
} | null;
|
|
5457
|
-
resources: Array<{
|
|
5458
|
-
id: string | null;
|
|
5459
|
-
name: string | null;
|
|
5460
|
-
references: Array<string | null> | null;
|
|
5461
|
-
performer: Array<string | null> | null;
|
|
5462
|
-
performedDate: any | null;
|
|
5463
|
-
source: Array<string | null> | null;
|
|
5464
|
-
sourceDisplay: Array<string | null> | null;
|
|
5465
|
-
coding: {
|
|
5466
|
-
id: string | null;
|
|
5467
|
-
system: any | null;
|
|
5468
|
-
code: any | null;
|
|
5469
|
-
display: string | null;
|
|
5470
|
-
} | null;
|
|
5471
|
-
}>;
|
|
5472
|
-
};
|
|
5473
|
-
};
|
|
5474
|
-
export type GetVitalSignGroupsQueryVariables = Types.Exact<{
|
|
5475
|
-
request: Types.InputMaybe<Types.VitalSignGroupQueryRequest>;
|
|
5476
|
-
}>;
|
|
5477
|
-
export type GetVitalSignGroupsQueryResults = {
|
|
5478
|
-
getVitalSignGroups: {
|
|
5479
|
-
paging_info: {
|
|
5480
|
-
page_number: number;
|
|
5481
|
-
page_size: number;
|
|
5482
|
-
total_pages: number;
|
|
5483
|
-
total_items: number;
|
|
5484
|
-
} | null;
|
|
5485
|
-
resources: Array<{
|
|
5486
|
-
id: string | null;
|
|
5487
|
-
name: string | null;
|
|
5488
|
-
source: Array<string | null> | null;
|
|
5489
|
-
sourceDisplay: Array<string | null> | null;
|
|
5490
|
-
effectiveDateTime: any | null;
|
|
5491
|
-
references: Array<string> | null;
|
|
5492
|
-
category: Array<{
|
|
5493
|
-
id: string | null;
|
|
5494
|
-
text: string | null;
|
|
5495
|
-
coding: Array<{
|
|
5496
|
-
id: string | null;
|
|
5497
|
-
system: any | null;
|
|
5498
|
-
code: any | null;
|
|
5499
|
-
display: string | null;
|
|
5500
|
-
} | null> | null;
|
|
5501
|
-
} | null> | null;
|
|
5502
|
-
coding: {
|
|
5503
|
-
id: string | null;
|
|
5504
|
-
system: any | null;
|
|
5505
|
-
code: any | null;
|
|
5506
|
-
display: string | null;
|
|
5507
|
-
} | null;
|
|
5508
|
-
interpretation: Array<{
|
|
5509
|
-
id: string | null;
|
|
5510
|
-
text: string | null;
|
|
5511
|
-
coding: Array<{
|
|
5512
|
-
id: string | null;
|
|
5513
|
-
system: any | null;
|
|
5514
|
-
code: any | null;
|
|
5515
|
-
display: string | null;
|
|
5516
|
-
} | null> | null;
|
|
5517
|
-
} | null> | null;
|
|
5518
|
-
value: {
|
|
5519
|
-
valueString: string | null;
|
|
5520
|
-
valueBoolean: boolean | null;
|
|
5521
|
-
valueInteger: number | null;
|
|
5522
|
-
valueTime: string | null;
|
|
5523
|
-
valueDateTime: any | null;
|
|
5524
|
-
valueQuantity: {
|
|
5525
|
-
value: number | null;
|
|
5526
|
-
unit: string | null;
|
|
5527
|
-
code: any | null;
|
|
5528
|
-
comparator: any | null;
|
|
5529
|
-
system: any | null;
|
|
5530
6482
|
} | null;
|
|
5531
|
-
|
|
6483
|
+
category: Array<{
|
|
5532
6484
|
id: string | null;
|
|
5533
6485
|
text: string | null;
|
|
5534
6486
|
coding: Array<{
|
|
@@ -5537,24 +6489,9 @@ export type GetVitalSignGroupsQueryResults = {
|
|
|
5537
6489
|
code: any | null;
|
|
5538
6490
|
display: string | null;
|
|
5539
6491
|
} | null> | null;
|
|
5540
|
-
} | null;
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
value: number | null;
|
|
5544
|
-
unit: string | null;
|
|
5545
|
-
code: any | null;
|
|
5546
|
-
comparator: any | null;
|
|
5547
|
-
system: any | null;
|
|
5548
|
-
} | null;
|
|
5549
|
-
denominator: {
|
|
5550
|
-
value: number | null;
|
|
5551
|
-
unit: string | null;
|
|
5552
|
-
code: any | null;
|
|
5553
|
-
comparator: any | null;
|
|
5554
|
-
system: any | null;
|
|
5555
|
-
} | null;
|
|
5556
|
-
} | null;
|
|
5557
|
-
valueRange: {
|
|
6492
|
+
} | null> | null;
|
|
6493
|
+
referenceRange: Array<{
|
|
6494
|
+
text: string | null;
|
|
5558
6495
|
low: {
|
|
5559
6496
|
value: number | null;
|
|
5560
6497
|
unit: string | null;
|
|
@@ -5569,31 +6506,8 @@ export type GetVitalSignGroupsQueryResults = {
|
|
|
5569
6506
|
comparator: any | null;
|
|
5570
6507
|
system: any | null;
|
|
5571
6508
|
} | null;
|
|
5572
|
-
} | null;
|
|
5573
|
-
|
|
5574
|
-
start: any | null;
|
|
5575
|
-
end: any | null;
|
|
5576
|
-
} | null;
|
|
5577
|
-
} | null;
|
|
5578
|
-
referenceRange: Array<{
|
|
5579
|
-
text: string | null;
|
|
5580
|
-
low: {
|
|
5581
|
-
value: number | null;
|
|
5582
|
-
unit: string | null;
|
|
5583
|
-
code: any | null;
|
|
5584
|
-
comparator: any | null;
|
|
5585
|
-
system: any | null;
|
|
5586
|
-
} | null;
|
|
5587
|
-
high: {
|
|
5588
|
-
value: number | null;
|
|
5589
|
-
unit: string | null;
|
|
5590
|
-
code: any | null;
|
|
5591
|
-
comparator: any | null;
|
|
5592
|
-
system: any | null;
|
|
5593
|
-
} | null;
|
|
5594
|
-
} | null> | null;
|
|
5595
|
-
component: Array<{
|
|
5596
|
-
code: {
|
|
6509
|
+
} | null> | null;
|
|
6510
|
+
interpretation: Array<{
|
|
5597
6511
|
id: string | null;
|
|
5598
6512
|
text: string | null;
|
|
5599
6513
|
coding: Array<{
|
|
@@ -5602,13 +6516,60 @@ export type GetVitalSignGroupsQueryResults = {
|
|
|
5602
6516
|
code: any | null;
|
|
5603
6517
|
display: string | null;
|
|
5604
6518
|
} | null> | null;
|
|
5605
|
-
} | null;
|
|
5606
|
-
|
|
6519
|
+
} | null> | null;
|
|
6520
|
+
component: Array<{
|
|
5607
6521
|
valueString: string | null;
|
|
5608
6522
|
valueBoolean: boolean | null;
|
|
5609
6523
|
valueInteger: number | null;
|
|
5610
|
-
valueTime:
|
|
6524
|
+
valueTime: any | null;
|
|
5611
6525
|
valueDateTime: any | null;
|
|
6526
|
+
code: {
|
|
6527
|
+
id: string | null;
|
|
6528
|
+
text: string | null;
|
|
6529
|
+
coding: Array<{
|
|
6530
|
+
id: string | null;
|
|
6531
|
+
system: any | null;
|
|
6532
|
+
code: any | null;
|
|
6533
|
+
display: string | null;
|
|
6534
|
+
} | null> | null;
|
|
6535
|
+
} | null;
|
|
6536
|
+
referenceRange: Array<{
|
|
6537
|
+
text: string | null;
|
|
6538
|
+
low: {
|
|
6539
|
+
value: number | null;
|
|
6540
|
+
unit: string | null;
|
|
6541
|
+
code: any | null;
|
|
6542
|
+
comparator: any | null;
|
|
6543
|
+
system: any | null;
|
|
6544
|
+
} | null;
|
|
6545
|
+
high: {
|
|
6546
|
+
value: number | null;
|
|
6547
|
+
unit: string | null;
|
|
6548
|
+
code: any | null;
|
|
6549
|
+
comparator: any | null;
|
|
6550
|
+
system: any | null;
|
|
6551
|
+
} | null;
|
|
6552
|
+
} | null> | null;
|
|
6553
|
+
interpretation: Array<{
|
|
6554
|
+
id: string | null;
|
|
6555
|
+
text: string | null;
|
|
6556
|
+
coding: Array<{
|
|
6557
|
+
id: string | null;
|
|
6558
|
+
system: any | null;
|
|
6559
|
+
code: any | null;
|
|
6560
|
+
display: string | null;
|
|
6561
|
+
} | null> | null;
|
|
6562
|
+
} | null> | null;
|
|
6563
|
+
dataAbsentReason: {
|
|
6564
|
+
id: string | null;
|
|
6565
|
+
text: string | null;
|
|
6566
|
+
coding: Array<{
|
|
6567
|
+
id: string | null;
|
|
6568
|
+
system: any | null;
|
|
6569
|
+
code: any | null;
|
|
6570
|
+
display: string | null;
|
|
6571
|
+
} | null> | null;
|
|
6572
|
+
} | null;
|
|
5612
6573
|
valueQuantity: {
|
|
5613
6574
|
value: number | null;
|
|
5614
6575
|
unit: string | null;
|
|
@@ -5662,25 +6623,122 @@ export type GetVitalSignGroupsQueryResults = {
|
|
|
5662
6623
|
start: any | null;
|
|
5663
6624
|
end: any | null;
|
|
5664
6625
|
} | null;
|
|
6626
|
+
} | null> | null;
|
|
6627
|
+
effectivePeriod: {
|
|
6628
|
+
start: any | null;
|
|
6629
|
+
end: any | null;
|
|
5665
6630
|
} | null;
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
|
|
5671
|
-
code: any | null;
|
|
5672
|
-
comparator: any | null;
|
|
5673
|
-
system: any | null;
|
|
5674
|
-
} | null;
|
|
5675
|
-
high: {
|
|
5676
|
-
value: number | null;
|
|
5677
|
-
unit: string | null;
|
|
5678
|
-
code: any | null;
|
|
5679
|
-
comparator: any | null;
|
|
5680
|
-
system: any | null;
|
|
5681
|
-
} | null;
|
|
6631
|
+
note: Array<{
|
|
6632
|
+
id: string | null;
|
|
6633
|
+
authorString: string | null;
|
|
6634
|
+
time: any | null;
|
|
6635
|
+
text: any | null;
|
|
5682
6636
|
} | null> | null;
|
|
5683
|
-
|
|
6637
|
+
performer: Array<{
|
|
6638
|
+
id: string | null;
|
|
6639
|
+
reference: string | null;
|
|
6640
|
+
type: any | null;
|
|
6641
|
+
resource: {
|
|
6642
|
+
organizationName: string | null;
|
|
6643
|
+
} | {
|
|
6644
|
+
name: Array<{
|
|
6645
|
+
text: string | null;
|
|
6646
|
+
family: string | null;
|
|
6647
|
+
given: Array<string | null> | null;
|
|
6648
|
+
prefix: Array<string | null> | null;
|
|
6649
|
+
suffix: Array<string | null> | null;
|
|
6650
|
+
} | null> | null;
|
|
6651
|
+
} | {
|
|
6652
|
+
name: Array<{
|
|
6653
|
+
text: string | null;
|
|
6654
|
+
family: string | null;
|
|
6655
|
+
given: Array<string | null> | null;
|
|
6656
|
+
prefix: Array<string | null> | null;
|
|
6657
|
+
suffix: Array<string | null> | null;
|
|
6658
|
+
} | null> | null;
|
|
6659
|
+
identifier: Array<{
|
|
6660
|
+
id: string | null;
|
|
6661
|
+
system: any | null;
|
|
6662
|
+
value: string | null;
|
|
6663
|
+
type: {
|
|
6664
|
+
id: string | null;
|
|
6665
|
+
text: string | null;
|
|
6666
|
+
coding: Array<{
|
|
6667
|
+
id: string | null;
|
|
6668
|
+
system: any | null;
|
|
6669
|
+
code: any | null;
|
|
6670
|
+
display: string | null;
|
|
6671
|
+
} | null> | null;
|
|
6672
|
+
} | null;
|
|
6673
|
+
} | null> | null;
|
|
6674
|
+
} | {} | null;
|
|
6675
|
+
} | null> | null;
|
|
6676
|
+
hasMember: Array<{
|
|
6677
|
+
id: string | null;
|
|
6678
|
+
reference: string | null;
|
|
6679
|
+
type: any | null;
|
|
6680
|
+
resource: {
|
|
6681
|
+
id: string;
|
|
6682
|
+
code: {
|
|
6683
|
+
id: string | null;
|
|
6684
|
+
text: string | null;
|
|
6685
|
+
coding: Array<{
|
|
6686
|
+
id: string | null;
|
|
6687
|
+
system: any | null;
|
|
6688
|
+
code: any | null;
|
|
6689
|
+
display: string | null;
|
|
6690
|
+
} | null> | null;
|
|
6691
|
+
} | null;
|
|
6692
|
+
} | {} | null;
|
|
6693
|
+
} | null> | null;
|
|
6694
|
+
specimen: {
|
|
6695
|
+
id: string | null;
|
|
6696
|
+
reference: string | null;
|
|
6697
|
+
type: any | null;
|
|
6698
|
+
resource: {
|
|
6699
|
+
identifier: Array<{
|
|
6700
|
+
id: string | null;
|
|
6701
|
+
system: any | null;
|
|
6702
|
+
value: string | null;
|
|
6703
|
+
type: {
|
|
6704
|
+
id: string | null;
|
|
6705
|
+
text: string | null;
|
|
6706
|
+
coding: Array<{
|
|
6707
|
+
id: string | null;
|
|
6708
|
+
system: any | null;
|
|
6709
|
+
code: any | null;
|
|
6710
|
+
display: string | null;
|
|
6711
|
+
} | null> | null;
|
|
6712
|
+
} | null;
|
|
6713
|
+
} | null> | null;
|
|
6714
|
+
accessionIdentifier: {
|
|
6715
|
+
id: string | null;
|
|
6716
|
+
system: any | null;
|
|
6717
|
+
value: string | null;
|
|
6718
|
+
type: {
|
|
6719
|
+
id: string | null;
|
|
6720
|
+
text: string | null;
|
|
6721
|
+
coding: Array<{
|
|
6722
|
+
id: string | null;
|
|
6723
|
+
system: any | null;
|
|
6724
|
+
code: any | null;
|
|
6725
|
+
display: string | null;
|
|
6726
|
+
} | null> | null;
|
|
6727
|
+
} | null;
|
|
6728
|
+
} | null;
|
|
6729
|
+
type: {
|
|
6730
|
+
id: string | null;
|
|
6731
|
+
text: string | null;
|
|
6732
|
+
coding: Array<{
|
|
6733
|
+
id: string | null;
|
|
6734
|
+
system: any | null;
|
|
6735
|
+
code: any | null;
|
|
6736
|
+
display: string | null;
|
|
6737
|
+
} | null> | null;
|
|
6738
|
+
} | null;
|
|
6739
|
+
} | null;
|
|
6740
|
+
} | null;
|
|
6741
|
+
dataAbsentReason: {
|
|
5684
6742
|
id: string | null;
|
|
5685
6743
|
text: string | null;
|
|
5686
6744
|
coding: Array<{
|
|
@@ -5689,8 +6747,15 @@ export type GetVitalSignGroupsQueryResults = {
|
|
|
5689
6747
|
code: any | null;
|
|
5690
6748
|
display: string | null;
|
|
5691
6749
|
} | null> | null;
|
|
5692
|
-
} | null
|
|
5693
|
-
|
|
6750
|
+
} | null;
|
|
6751
|
+
valueQuantity: {
|
|
6752
|
+
value: number | null;
|
|
6753
|
+
unit: string | null;
|
|
6754
|
+
code: any | null;
|
|
6755
|
+
comparator: any | null;
|
|
6756
|
+
system: any | null;
|
|
6757
|
+
} | null;
|
|
6758
|
+
valueCodeableConcept: {
|
|
5694
6759
|
id: string | null;
|
|
5695
6760
|
text: string | null;
|
|
5696
6761
|
coding: Array<{
|
|
@@ -5700,9 +6765,45 @@ export type GetVitalSignGroupsQueryResults = {
|
|
|
5700
6765
|
display: string | null;
|
|
5701
6766
|
} | null> | null;
|
|
5702
6767
|
} | null;
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
|
|
6768
|
+
valueRatio: {
|
|
6769
|
+
numerator: {
|
|
6770
|
+
value: number | null;
|
|
6771
|
+
unit: string | null;
|
|
6772
|
+
code: any | null;
|
|
6773
|
+
comparator: any | null;
|
|
6774
|
+
system: any | null;
|
|
6775
|
+
} | null;
|
|
6776
|
+
denominator: {
|
|
6777
|
+
value: number | null;
|
|
6778
|
+
unit: string | null;
|
|
6779
|
+
code: any | null;
|
|
6780
|
+
comparator: any | null;
|
|
6781
|
+
system: any | null;
|
|
6782
|
+
} | null;
|
|
6783
|
+
} | null;
|
|
6784
|
+
valueRange: {
|
|
6785
|
+
low: {
|
|
6786
|
+
value: number | null;
|
|
6787
|
+
unit: string | null;
|
|
6788
|
+
code: any | null;
|
|
6789
|
+
comparator: any | null;
|
|
6790
|
+
system: any | null;
|
|
6791
|
+
} | null;
|
|
6792
|
+
high: {
|
|
6793
|
+
value: number | null;
|
|
6794
|
+
unit: string | null;
|
|
6795
|
+
code: any | null;
|
|
6796
|
+
comparator: any | null;
|
|
6797
|
+
system: any | null;
|
|
6798
|
+
} | null;
|
|
6799
|
+
} | null;
|
|
6800
|
+
valuePeriod: {
|
|
6801
|
+
start: any | null;
|
|
6802
|
+
end: any | null;
|
|
6803
|
+
} | null;
|
|
6804
|
+
} | null;
|
|
6805
|
+
} | null> | null;
|
|
6806
|
+
} | null;
|
|
5706
6807
|
};
|
|
5707
6808
|
export type GetLabGroupsQueryVariables = Types.Exact<{
|
|
5708
6809
|
request: Types.InputMaybe<Types.LabGroupQueryRequest>;
|