@icanbwell/bwell-sdk-ts 1.40.0-rc.1758834164 → 1.40.0-rc.1759158147
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-data-request.d.ts +7 -2
- package/dist/api/base/health-data/health-data-request.js +2 -2
- package/dist/api/base/questionnaire/index.d.ts +2 -1
- package/dist/api/base/questionnaire/index.js +1 -0
- package/dist/api/base/questionnaire/questionnaire-manager.d.ts +11 -1
- package/dist/api/base/questionnaire/save-questionnaire-response-request.d.ts +22 -0
- package/dist/api/base/questionnaire/save-questionnaire-response-request.js +33 -0
- package/dist/api/graphql-api/healthdata/graphql-diagnostic-reports-bwell-request-factory.d.ts +6 -0
- package/dist/api/graphql-api/healthdata/graphql-diagnostic-reports-bwell-request-factory.js +12 -0
- package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +2 -1
- package/dist/api/graphql-api/healthdata/graphql-health-manager.js +7 -4
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.d.ts +9 -1
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.js +24 -0
- package/dist/graphql/operations/index.d.ts +9 -1
- package/dist/graphql/operations/index.js +17 -2
- package/dist/graphql/operations/types.d.ts +913 -2
- package/dist/graphql/schema.d.ts +3 -0
- package/package.json +1 -1
|
@@ -7072,9 +7072,10 @@ export type GetFhirQueryResults = {
|
|
|
7072
7072
|
};
|
|
7073
7073
|
};
|
|
7074
7074
|
export type GetDiagnosticReportsQueryVariables = Types.Exact<{
|
|
7075
|
-
|
|
7076
|
-
|
|
7075
|
+
pageSize: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
7076
|
+
page: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
7077
7077
|
id: Types.InputMaybe<Types.SearchString>;
|
|
7078
|
+
sort: Types.InputMaybe<Array<Types.InputMaybe<Types.Scalars['String']['input']>> | Types.InputMaybe<Types.Scalars['String']['input']>>;
|
|
7078
7079
|
}>;
|
|
7079
7080
|
export type GetDiagnosticReportsQueryResults = {
|
|
7080
7081
|
diagnosticReports: {
|
|
@@ -19429,6 +19430,916 @@ export type GetQuestionnaireResponsesQueryResults = {
|
|
|
19429
19430
|
} | null> | null;
|
|
19430
19431
|
} | null;
|
|
19431
19432
|
};
|
|
19433
|
+
export type SaveQuestionnaireResponseMutationVariables = Types.Exact<{
|
|
19434
|
+
questionnaireResponse: Types.QuestionnaireResponseInput;
|
|
19435
|
+
}>;
|
|
19436
|
+
export type SaveQuestionnaireResponseMutationResults = {
|
|
19437
|
+
saveQuestionnaireResponse: {
|
|
19438
|
+
resourceType: string | null;
|
|
19439
|
+
id: string;
|
|
19440
|
+
questionnaire: any | null;
|
|
19441
|
+
status: any | null;
|
|
19442
|
+
meta: {
|
|
19443
|
+
versionId: string | null;
|
|
19444
|
+
lastUpdated: any | null;
|
|
19445
|
+
source: any | null;
|
|
19446
|
+
security: Array<{
|
|
19447
|
+
system: any | null;
|
|
19448
|
+
code: any | null;
|
|
19449
|
+
display: string | null;
|
|
19450
|
+
} | null> | null;
|
|
19451
|
+
tag: Array<{
|
|
19452
|
+
system: any | null;
|
|
19453
|
+
code: any | null;
|
|
19454
|
+
display: string | null;
|
|
19455
|
+
} | null> | null;
|
|
19456
|
+
} | null;
|
|
19457
|
+
identifier: {
|
|
19458
|
+
id: string | null;
|
|
19459
|
+
system: any | null;
|
|
19460
|
+
value: string | null;
|
|
19461
|
+
type: {
|
|
19462
|
+
text: string | null;
|
|
19463
|
+
coding: Array<{
|
|
19464
|
+
system: any | null;
|
|
19465
|
+
code: any | null;
|
|
19466
|
+
display: string | null;
|
|
19467
|
+
} | null> | null;
|
|
19468
|
+
} | null;
|
|
19469
|
+
} | null;
|
|
19470
|
+
item: Array<{
|
|
19471
|
+
linkId: string | null;
|
|
19472
|
+
text: string | null;
|
|
19473
|
+
item: Array<{
|
|
19474
|
+
linkId: string | null;
|
|
19475
|
+
text: string | null;
|
|
19476
|
+
item: Array<{
|
|
19477
|
+
linkId: string | null;
|
|
19478
|
+
text: string | null;
|
|
19479
|
+
answer: Array<{
|
|
19480
|
+
valueBoolean: boolean | null;
|
|
19481
|
+
valueDecimal: number | null;
|
|
19482
|
+
valueInteger: number | null;
|
|
19483
|
+
valueDate: any | null;
|
|
19484
|
+
valueDateTime: any | null;
|
|
19485
|
+
valueString: string | null;
|
|
19486
|
+
valueUri: any | null;
|
|
19487
|
+
valueAttachment: {
|
|
19488
|
+
contentType: any | null;
|
|
19489
|
+
data: any | null;
|
|
19490
|
+
url: any | null;
|
|
19491
|
+
title: string | null;
|
|
19492
|
+
} | null;
|
|
19493
|
+
valueCoding: {
|
|
19494
|
+
system: any | null;
|
|
19495
|
+
code: any | null;
|
|
19496
|
+
display: string | null;
|
|
19497
|
+
} | null;
|
|
19498
|
+
valueQuantity: {
|
|
19499
|
+
value: number | null;
|
|
19500
|
+
unit: string | null;
|
|
19501
|
+
code: any | null;
|
|
19502
|
+
comparator: any | null;
|
|
19503
|
+
system: any | null;
|
|
19504
|
+
} | null;
|
|
19505
|
+
valueReference: {
|
|
19506
|
+
reference: string | null;
|
|
19507
|
+
type: any | null;
|
|
19508
|
+
display: string | null;
|
|
19509
|
+
extension: Array<{
|
|
19510
|
+
url: any | null;
|
|
19511
|
+
valueBoolean: boolean | null;
|
|
19512
|
+
valueInteger: number | null;
|
|
19513
|
+
valueString: string | null;
|
|
19514
|
+
valueDateTime: any | null;
|
|
19515
|
+
valueCode: any | null;
|
|
19516
|
+
valueUri: any | null;
|
|
19517
|
+
valueExpression: {
|
|
19518
|
+
description: string | null;
|
|
19519
|
+
name: string | null;
|
|
19520
|
+
language: any | null;
|
|
19521
|
+
expression: string | null;
|
|
19522
|
+
reference: any | null;
|
|
19523
|
+
} | null;
|
|
19524
|
+
valueCodeableConcept: {
|
|
19525
|
+
text: string | null;
|
|
19526
|
+
coding: Array<{
|
|
19527
|
+
system: any | null;
|
|
19528
|
+
code: any | null;
|
|
19529
|
+
display: string | null;
|
|
19530
|
+
} | null> | null;
|
|
19531
|
+
} | null;
|
|
19532
|
+
valueReference: {
|
|
19533
|
+
reference: string | null;
|
|
19534
|
+
type: any | null;
|
|
19535
|
+
display: string | null;
|
|
19536
|
+
} | null;
|
|
19537
|
+
} | null> | null;
|
|
19538
|
+
} | null;
|
|
19539
|
+
} | null> | null;
|
|
19540
|
+
} | null> | null;
|
|
19541
|
+
answer: Array<{
|
|
19542
|
+
valueBoolean: boolean | null;
|
|
19543
|
+
valueDecimal: number | null;
|
|
19544
|
+
valueInteger: number | null;
|
|
19545
|
+
valueDate: any | null;
|
|
19546
|
+
valueDateTime: any | null;
|
|
19547
|
+
valueString: string | null;
|
|
19548
|
+
valueUri: any | null;
|
|
19549
|
+
valueAttachment: {
|
|
19550
|
+
contentType: any | null;
|
|
19551
|
+
data: any | null;
|
|
19552
|
+
url: any | null;
|
|
19553
|
+
title: string | null;
|
|
19554
|
+
} | null;
|
|
19555
|
+
valueCoding: {
|
|
19556
|
+
system: any | null;
|
|
19557
|
+
code: any | null;
|
|
19558
|
+
display: string | null;
|
|
19559
|
+
} | null;
|
|
19560
|
+
valueQuantity: {
|
|
19561
|
+
value: number | null;
|
|
19562
|
+
unit: string | null;
|
|
19563
|
+
code: any | null;
|
|
19564
|
+
comparator: any | null;
|
|
19565
|
+
system: any | null;
|
|
19566
|
+
} | null;
|
|
19567
|
+
valueReference: {
|
|
19568
|
+
reference: string | null;
|
|
19569
|
+
type: any | null;
|
|
19570
|
+
display: string | null;
|
|
19571
|
+
extension: Array<{
|
|
19572
|
+
url: any | null;
|
|
19573
|
+
valueBoolean: boolean | null;
|
|
19574
|
+
valueInteger: number | null;
|
|
19575
|
+
valueString: string | null;
|
|
19576
|
+
valueDateTime: any | null;
|
|
19577
|
+
valueCode: any | null;
|
|
19578
|
+
valueUri: any | null;
|
|
19579
|
+
valueExpression: {
|
|
19580
|
+
description: string | null;
|
|
19581
|
+
name: string | null;
|
|
19582
|
+
language: any | null;
|
|
19583
|
+
expression: string | null;
|
|
19584
|
+
reference: any | null;
|
|
19585
|
+
} | null;
|
|
19586
|
+
valueCodeableConcept: {
|
|
19587
|
+
text: string | null;
|
|
19588
|
+
coding: Array<{
|
|
19589
|
+
system: any | null;
|
|
19590
|
+
code: any | null;
|
|
19591
|
+
display: string | null;
|
|
19592
|
+
} | null> | null;
|
|
19593
|
+
} | null;
|
|
19594
|
+
valueReference: {
|
|
19595
|
+
reference: string | null;
|
|
19596
|
+
type: any | null;
|
|
19597
|
+
display: string | null;
|
|
19598
|
+
} | null;
|
|
19599
|
+
} | null> | null;
|
|
19600
|
+
} | null;
|
|
19601
|
+
} | null> | null;
|
|
19602
|
+
} | null> | null;
|
|
19603
|
+
answer: Array<{
|
|
19604
|
+
valueBoolean: boolean | null;
|
|
19605
|
+
valueDecimal: number | null;
|
|
19606
|
+
valueInteger: number | null;
|
|
19607
|
+
valueDate: any | null;
|
|
19608
|
+
valueDateTime: any | null;
|
|
19609
|
+
valueString: string | null;
|
|
19610
|
+
valueUri: any | null;
|
|
19611
|
+
valueAttachment: {
|
|
19612
|
+
contentType: any | null;
|
|
19613
|
+
data: any | null;
|
|
19614
|
+
url: any | null;
|
|
19615
|
+
title: string | null;
|
|
19616
|
+
} | null;
|
|
19617
|
+
valueCoding: {
|
|
19618
|
+
system: any | null;
|
|
19619
|
+
code: any | null;
|
|
19620
|
+
display: string | null;
|
|
19621
|
+
} | null;
|
|
19622
|
+
valueQuantity: {
|
|
19623
|
+
value: number | null;
|
|
19624
|
+
unit: string | null;
|
|
19625
|
+
code: any | null;
|
|
19626
|
+
comparator: any | null;
|
|
19627
|
+
system: any | null;
|
|
19628
|
+
} | null;
|
|
19629
|
+
valueReference: {
|
|
19630
|
+
reference: string | null;
|
|
19631
|
+
type: any | null;
|
|
19632
|
+
display: string | null;
|
|
19633
|
+
extension: Array<{
|
|
19634
|
+
url: any | null;
|
|
19635
|
+
valueBoolean: boolean | null;
|
|
19636
|
+
valueInteger: number | null;
|
|
19637
|
+
valueString: string | null;
|
|
19638
|
+
valueDateTime: any | null;
|
|
19639
|
+
valueCode: any | null;
|
|
19640
|
+
valueUri: any | null;
|
|
19641
|
+
valueExpression: {
|
|
19642
|
+
description: string | null;
|
|
19643
|
+
name: string | null;
|
|
19644
|
+
language: any | null;
|
|
19645
|
+
expression: string | null;
|
|
19646
|
+
reference: any | null;
|
|
19647
|
+
} | null;
|
|
19648
|
+
valueCodeableConcept: {
|
|
19649
|
+
text: string | null;
|
|
19650
|
+
coding: Array<{
|
|
19651
|
+
system: any | null;
|
|
19652
|
+
code: any | null;
|
|
19653
|
+
display: string | null;
|
|
19654
|
+
} | null> | null;
|
|
19655
|
+
} | null;
|
|
19656
|
+
valueReference: {
|
|
19657
|
+
reference: string | null;
|
|
19658
|
+
type: any | null;
|
|
19659
|
+
display: string | null;
|
|
19660
|
+
} | null;
|
|
19661
|
+
} | null> | null;
|
|
19662
|
+
} | null;
|
|
19663
|
+
} | null> | null;
|
|
19664
|
+
} | null> | null;
|
|
19665
|
+
contained: Array<{
|
|
19666
|
+
resourceType: string | null;
|
|
19667
|
+
id: string;
|
|
19668
|
+
name: string | null;
|
|
19669
|
+
title: string | null;
|
|
19670
|
+
status: any | null;
|
|
19671
|
+
description: any | null;
|
|
19672
|
+
meta: {
|
|
19673
|
+
versionId: string | null;
|
|
19674
|
+
lastUpdated: any | null;
|
|
19675
|
+
source: any | null;
|
|
19676
|
+
security: Array<{
|
|
19677
|
+
system: any | null;
|
|
19678
|
+
code: any | null;
|
|
19679
|
+
display: string | null;
|
|
19680
|
+
} | null> | null;
|
|
19681
|
+
tag: Array<{
|
|
19682
|
+
system: any | null;
|
|
19683
|
+
code: any | null;
|
|
19684
|
+
display: string | null;
|
|
19685
|
+
} | null> | null;
|
|
19686
|
+
} | null;
|
|
19687
|
+
identifier: Array<{
|
|
19688
|
+
id: string | null;
|
|
19689
|
+
system: any | null;
|
|
19690
|
+
value: string | null;
|
|
19691
|
+
type: {
|
|
19692
|
+
text: string | null;
|
|
19693
|
+
coding: Array<{
|
|
19694
|
+
system: any | null;
|
|
19695
|
+
code: any | null;
|
|
19696
|
+
display: string | null;
|
|
19697
|
+
} | null> | null;
|
|
19698
|
+
} | null;
|
|
19699
|
+
} | null> | null;
|
|
19700
|
+
useContext: Array<{
|
|
19701
|
+
id: string | null;
|
|
19702
|
+
code: {
|
|
19703
|
+
system: any | null;
|
|
19704
|
+
code: any | null;
|
|
19705
|
+
display: string | null;
|
|
19706
|
+
} | null;
|
|
19707
|
+
valueReference: {
|
|
19708
|
+
id: string | null;
|
|
19709
|
+
reference: string | null;
|
|
19710
|
+
display: string | null;
|
|
19711
|
+
identifier: {
|
|
19712
|
+
id: string | null;
|
|
19713
|
+
system: any | null;
|
|
19714
|
+
value: string | null;
|
|
19715
|
+
type: {
|
|
19716
|
+
text: string | null;
|
|
19717
|
+
coding: Array<{
|
|
19718
|
+
system: any | null;
|
|
19719
|
+
code: any | null;
|
|
19720
|
+
display: string | null;
|
|
19721
|
+
} | null> | null;
|
|
19722
|
+
} | null;
|
|
19723
|
+
} | null;
|
|
19724
|
+
} | null;
|
|
19725
|
+
} | null> | null;
|
|
19726
|
+
item: Array<{
|
|
19727
|
+
linkId: string | null;
|
|
19728
|
+
prefix: string | null;
|
|
19729
|
+
text: string | null;
|
|
19730
|
+
type: any | null;
|
|
19731
|
+
enableBehavior: any | null;
|
|
19732
|
+
required: boolean | null;
|
|
19733
|
+
repeats: boolean | null;
|
|
19734
|
+
readOnly: boolean | null;
|
|
19735
|
+
maxLength: number | null;
|
|
19736
|
+
item: Array<{
|
|
19737
|
+
linkId: string | null;
|
|
19738
|
+
prefix: string | null;
|
|
19739
|
+
text: string | null;
|
|
19740
|
+
type: any | null;
|
|
19741
|
+
enableBehavior: any | null;
|
|
19742
|
+
required: boolean | null;
|
|
19743
|
+
repeats: boolean | null;
|
|
19744
|
+
readOnly: boolean | null;
|
|
19745
|
+
maxLength: number | null;
|
|
19746
|
+
item: Array<{
|
|
19747
|
+
linkId: string | null;
|
|
19748
|
+
prefix: string | null;
|
|
19749
|
+
text: string | null;
|
|
19750
|
+
type: any | null;
|
|
19751
|
+
enableBehavior: any | null;
|
|
19752
|
+
required: boolean | null;
|
|
19753
|
+
repeats: boolean | null;
|
|
19754
|
+
readOnly: boolean | null;
|
|
19755
|
+
maxLength: number | null;
|
|
19756
|
+
extension: Array<{
|
|
19757
|
+
url: any | null;
|
|
19758
|
+
valueBoolean: boolean | null;
|
|
19759
|
+
valueInteger: number | null;
|
|
19760
|
+
valueString: string | null;
|
|
19761
|
+
valueDateTime: any | null;
|
|
19762
|
+
valueCode: any | null;
|
|
19763
|
+
valueUri: any | null;
|
|
19764
|
+
valueExpression: {
|
|
19765
|
+
description: string | null;
|
|
19766
|
+
name: string | null;
|
|
19767
|
+
language: any | null;
|
|
19768
|
+
expression: string | null;
|
|
19769
|
+
reference: any | null;
|
|
19770
|
+
} | null;
|
|
19771
|
+
valueCodeableConcept: {
|
|
19772
|
+
text: string | null;
|
|
19773
|
+
coding: Array<{
|
|
19774
|
+
system: any | null;
|
|
19775
|
+
code: any | null;
|
|
19776
|
+
display: string | null;
|
|
19777
|
+
} | null> | null;
|
|
19778
|
+
} | null;
|
|
19779
|
+
valueReference: {
|
|
19780
|
+
reference: string | null;
|
|
19781
|
+
type: any | null;
|
|
19782
|
+
display: string | null;
|
|
19783
|
+
} | null;
|
|
19784
|
+
extension: Array<{
|
|
19785
|
+
url: any | null;
|
|
19786
|
+
valueBoolean: boolean | null;
|
|
19787
|
+
valueInteger: number | null;
|
|
19788
|
+
valueString: string | null;
|
|
19789
|
+
valueDateTime: any | null;
|
|
19790
|
+
valueCode: any | null;
|
|
19791
|
+
valueUri: any | null;
|
|
19792
|
+
valueExpression: {
|
|
19793
|
+
description: string | null;
|
|
19794
|
+
name: string | null;
|
|
19795
|
+
language: any | null;
|
|
19796
|
+
expression: string | null;
|
|
19797
|
+
reference: any | null;
|
|
19798
|
+
} | null;
|
|
19799
|
+
valueCodeableConcept: {
|
|
19800
|
+
text: string | null;
|
|
19801
|
+
coding: Array<{
|
|
19802
|
+
system: any | null;
|
|
19803
|
+
code: any | null;
|
|
19804
|
+
display: string | null;
|
|
19805
|
+
} | null> | null;
|
|
19806
|
+
} | null;
|
|
19807
|
+
valueReference: {
|
|
19808
|
+
reference: string | null;
|
|
19809
|
+
type: any | null;
|
|
19810
|
+
display: string | null;
|
|
19811
|
+
} | null;
|
|
19812
|
+
} | null> | null;
|
|
19813
|
+
} | null> | null;
|
|
19814
|
+
enableWhen: Array<{
|
|
19815
|
+
question: string | null;
|
|
19816
|
+
operator: any | null;
|
|
19817
|
+
answerBoolean: boolean | null;
|
|
19818
|
+
answerDecimal: number | null;
|
|
19819
|
+
answerInteger: number | null;
|
|
19820
|
+
answerDate: any | null;
|
|
19821
|
+
answerDateTime: any | null;
|
|
19822
|
+
answerTime: any | null;
|
|
19823
|
+
answerString: string | null;
|
|
19824
|
+
answerCoding: {
|
|
19825
|
+
system: any | null;
|
|
19826
|
+
code: any | null;
|
|
19827
|
+
display: string | null;
|
|
19828
|
+
} | null;
|
|
19829
|
+
answerQuantity: {
|
|
19830
|
+
value: number | null;
|
|
19831
|
+
unit: string | null;
|
|
19832
|
+
code: any | null;
|
|
19833
|
+
comparator: any | null;
|
|
19834
|
+
system: any | null;
|
|
19835
|
+
} | null;
|
|
19836
|
+
answerReference: {
|
|
19837
|
+
reference: string | null;
|
|
19838
|
+
type: any | null;
|
|
19839
|
+
display: string | null;
|
|
19840
|
+
} | null;
|
|
19841
|
+
} | null> | null;
|
|
19842
|
+
answerOption: Array<{
|
|
19843
|
+
valueInteger: number | null;
|
|
19844
|
+
valueDate: any | null;
|
|
19845
|
+
valueString: string | null;
|
|
19846
|
+
initialSelected: boolean | null;
|
|
19847
|
+
valueCoding: {
|
|
19848
|
+
system: any | null;
|
|
19849
|
+
code: any | null;
|
|
19850
|
+
display: string | null;
|
|
19851
|
+
} | null;
|
|
19852
|
+
valueReference: {
|
|
19853
|
+
reference: string | null;
|
|
19854
|
+
type: any | null;
|
|
19855
|
+
display: string | null;
|
|
19856
|
+
extension: Array<{
|
|
19857
|
+
url: any | null;
|
|
19858
|
+
valueBoolean: boolean | null;
|
|
19859
|
+
valueInteger: number | null;
|
|
19860
|
+
valueString: string | null;
|
|
19861
|
+
valueDateTime: any | null;
|
|
19862
|
+
valueCode: any | null;
|
|
19863
|
+
valueUri: any | null;
|
|
19864
|
+
valueExpression: {
|
|
19865
|
+
description: string | null;
|
|
19866
|
+
name: string | null;
|
|
19867
|
+
language: any | null;
|
|
19868
|
+
expression: string | null;
|
|
19869
|
+
reference: any | null;
|
|
19870
|
+
} | null;
|
|
19871
|
+
valueCodeableConcept: {
|
|
19872
|
+
text: string | null;
|
|
19873
|
+
coding: Array<{
|
|
19874
|
+
system: any | null;
|
|
19875
|
+
code: any | null;
|
|
19876
|
+
display: string | null;
|
|
19877
|
+
} | null> | null;
|
|
19878
|
+
} | null;
|
|
19879
|
+
valueReference: {
|
|
19880
|
+
reference: string | null;
|
|
19881
|
+
type: any | null;
|
|
19882
|
+
display: string | null;
|
|
19883
|
+
} | null;
|
|
19884
|
+
} | null> | null;
|
|
19885
|
+
} | null;
|
|
19886
|
+
} | null> | null;
|
|
19887
|
+
initial: Array<{
|
|
19888
|
+
valueBoolean: boolean | null;
|
|
19889
|
+
valueDecimal: number | null;
|
|
19890
|
+
valueInteger: number | null;
|
|
19891
|
+
valueDate: any | null;
|
|
19892
|
+
valueDateTime: any | null;
|
|
19893
|
+
valueString: string | null;
|
|
19894
|
+
valueUri: any | null;
|
|
19895
|
+
valueAttachment: {
|
|
19896
|
+
contentType: any | null;
|
|
19897
|
+
data: any | null;
|
|
19898
|
+
url: any | null;
|
|
19899
|
+
title: string | null;
|
|
19900
|
+
} | null;
|
|
19901
|
+
valueCoding: {
|
|
19902
|
+
system: any | null;
|
|
19903
|
+
code: any | null;
|
|
19904
|
+
display: string | null;
|
|
19905
|
+
} | null;
|
|
19906
|
+
valueQuantity: {
|
|
19907
|
+
value: number | null;
|
|
19908
|
+
unit: string | null;
|
|
19909
|
+
code: any | null;
|
|
19910
|
+
comparator: any | null;
|
|
19911
|
+
system: any | null;
|
|
19912
|
+
} | null;
|
|
19913
|
+
valueReference: {
|
|
19914
|
+
reference: string | null;
|
|
19915
|
+
type: any | null;
|
|
19916
|
+
display: string | null;
|
|
19917
|
+
extension: Array<{
|
|
19918
|
+
url: any | null;
|
|
19919
|
+
valueBoolean: boolean | null;
|
|
19920
|
+
valueInteger: number | null;
|
|
19921
|
+
valueString: string | null;
|
|
19922
|
+
valueDateTime: any | null;
|
|
19923
|
+
valueCode: any | null;
|
|
19924
|
+
valueUri: any | null;
|
|
19925
|
+
valueExpression: {
|
|
19926
|
+
description: string | null;
|
|
19927
|
+
name: string | null;
|
|
19928
|
+
language: any | null;
|
|
19929
|
+
expression: string | null;
|
|
19930
|
+
reference: any | null;
|
|
19931
|
+
} | null;
|
|
19932
|
+
valueCodeableConcept: {
|
|
19933
|
+
text: string | null;
|
|
19934
|
+
coding: Array<{
|
|
19935
|
+
system: any | null;
|
|
19936
|
+
code: any | null;
|
|
19937
|
+
display: string | null;
|
|
19938
|
+
} | null> | null;
|
|
19939
|
+
} | null;
|
|
19940
|
+
valueReference: {
|
|
19941
|
+
reference: string | null;
|
|
19942
|
+
type: any | null;
|
|
19943
|
+
display: string | null;
|
|
19944
|
+
} | null;
|
|
19945
|
+
} | null> | null;
|
|
19946
|
+
} | null;
|
|
19947
|
+
} | null> | null;
|
|
19948
|
+
} | null> | null;
|
|
19949
|
+
extension: Array<{
|
|
19950
|
+
url: any | null;
|
|
19951
|
+
valueBoolean: boolean | null;
|
|
19952
|
+
valueInteger: number | null;
|
|
19953
|
+
valueString: string | null;
|
|
19954
|
+
valueDateTime: any | null;
|
|
19955
|
+
valueCode: any | null;
|
|
19956
|
+
valueUri: any | null;
|
|
19957
|
+
valueExpression: {
|
|
19958
|
+
description: string | null;
|
|
19959
|
+
name: string | null;
|
|
19960
|
+
language: any | null;
|
|
19961
|
+
expression: string | null;
|
|
19962
|
+
reference: any | null;
|
|
19963
|
+
} | null;
|
|
19964
|
+
valueCodeableConcept: {
|
|
19965
|
+
text: string | null;
|
|
19966
|
+
coding: Array<{
|
|
19967
|
+
system: any | null;
|
|
19968
|
+
code: any | null;
|
|
19969
|
+
display: string | null;
|
|
19970
|
+
} | null> | null;
|
|
19971
|
+
} | null;
|
|
19972
|
+
valueReference: {
|
|
19973
|
+
reference: string | null;
|
|
19974
|
+
type: any | null;
|
|
19975
|
+
display: string | null;
|
|
19976
|
+
} | null;
|
|
19977
|
+
extension: Array<{
|
|
19978
|
+
url: any | null;
|
|
19979
|
+
valueBoolean: boolean | null;
|
|
19980
|
+
valueInteger: number | null;
|
|
19981
|
+
valueString: string | null;
|
|
19982
|
+
valueDateTime: any | null;
|
|
19983
|
+
valueCode: any | null;
|
|
19984
|
+
valueUri: any | null;
|
|
19985
|
+
valueExpression: {
|
|
19986
|
+
description: string | null;
|
|
19987
|
+
name: string | null;
|
|
19988
|
+
language: any | null;
|
|
19989
|
+
expression: string | null;
|
|
19990
|
+
reference: any | null;
|
|
19991
|
+
} | null;
|
|
19992
|
+
valueCodeableConcept: {
|
|
19993
|
+
text: string | null;
|
|
19994
|
+
coding: Array<{
|
|
19995
|
+
system: any | null;
|
|
19996
|
+
code: any | null;
|
|
19997
|
+
display: string | null;
|
|
19998
|
+
} | null> | null;
|
|
19999
|
+
} | null;
|
|
20000
|
+
valueReference: {
|
|
20001
|
+
reference: string | null;
|
|
20002
|
+
type: any | null;
|
|
20003
|
+
display: string | null;
|
|
20004
|
+
} | null;
|
|
20005
|
+
} | null> | null;
|
|
20006
|
+
} | null> | null;
|
|
20007
|
+
enableWhen: Array<{
|
|
20008
|
+
question: string | null;
|
|
20009
|
+
operator: any | null;
|
|
20010
|
+
answerBoolean: boolean | null;
|
|
20011
|
+
answerDecimal: number | null;
|
|
20012
|
+
answerInteger: number | null;
|
|
20013
|
+
answerDate: any | null;
|
|
20014
|
+
answerDateTime: any | null;
|
|
20015
|
+
answerTime: any | null;
|
|
20016
|
+
answerString: string | null;
|
|
20017
|
+
answerCoding: {
|
|
20018
|
+
system: any | null;
|
|
20019
|
+
code: any | null;
|
|
20020
|
+
display: string | null;
|
|
20021
|
+
} | null;
|
|
20022
|
+
answerQuantity: {
|
|
20023
|
+
value: number | null;
|
|
20024
|
+
unit: string | null;
|
|
20025
|
+
code: any | null;
|
|
20026
|
+
comparator: any | null;
|
|
20027
|
+
system: any | null;
|
|
20028
|
+
} | null;
|
|
20029
|
+
answerReference: {
|
|
20030
|
+
reference: string | null;
|
|
20031
|
+
type: any | null;
|
|
20032
|
+
display: string | null;
|
|
20033
|
+
} | null;
|
|
20034
|
+
} | null> | null;
|
|
20035
|
+
answerOption: Array<{
|
|
20036
|
+
valueInteger: number | null;
|
|
20037
|
+
valueDate: any | null;
|
|
20038
|
+
valueString: string | null;
|
|
20039
|
+
initialSelected: boolean | null;
|
|
20040
|
+
valueCoding: {
|
|
20041
|
+
system: any | null;
|
|
20042
|
+
code: any | null;
|
|
20043
|
+
display: string | null;
|
|
20044
|
+
} | null;
|
|
20045
|
+
valueReference: {
|
|
20046
|
+
reference: string | null;
|
|
20047
|
+
type: any | null;
|
|
20048
|
+
display: string | null;
|
|
20049
|
+
extension: Array<{
|
|
20050
|
+
url: any | null;
|
|
20051
|
+
valueBoolean: boolean | null;
|
|
20052
|
+
valueInteger: number | null;
|
|
20053
|
+
valueString: string | null;
|
|
20054
|
+
valueDateTime: any | null;
|
|
20055
|
+
valueCode: any | null;
|
|
20056
|
+
valueUri: any | null;
|
|
20057
|
+
valueExpression: {
|
|
20058
|
+
description: string | null;
|
|
20059
|
+
name: string | null;
|
|
20060
|
+
language: any | null;
|
|
20061
|
+
expression: string | null;
|
|
20062
|
+
reference: any | null;
|
|
20063
|
+
} | null;
|
|
20064
|
+
valueCodeableConcept: {
|
|
20065
|
+
text: string | null;
|
|
20066
|
+
coding: Array<{
|
|
20067
|
+
system: any | null;
|
|
20068
|
+
code: any | null;
|
|
20069
|
+
display: string | null;
|
|
20070
|
+
} | null> | null;
|
|
20071
|
+
} | null;
|
|
20072
|
+
valueReference: {
|
|
20073
|
+
reference: string | null;
|
|
20074
|
+
type: any | null;
|
|
20075
|
+
display: string | null;
|
|
20076
|
+
} | null;
|
|
20077
|
+
} | null> | null;
|
|
20078
|
+
} | null;
|
|
20079
|
+
} | null> | null;
|
|
20080
|
+
initial: Array<{
|
|
20081
|
+
valueBoolean: boolean | null;
|
|
20082
|
+
valueDecimal: number | null;
|
|
20083
|
+
valueInteger: number | null;
|
|
20084
|
+
valueDate: any | null;
|
|
20085
|
+
valueDateTime: any | null;
|
|
20086
|
+
valueString: string | null;
|
|
20087
|
+
valueUri: any | null;
|
|
20088
|
+
valueAttachment: {
|
|
20089
|
+
contentType: any | null;
|
|
20090
|
+
data: any | null;
|
|
20091
|
+
url: any | null;
|
|
20092
|
+
title: string | null;
|
|
20093
|
+
} | null;
|
|
20094
|
+
valueCoding: {
|
|
20095
|
+
system: any | null;
|
|
20096
|
+
code: any | null;
|
|
20097
|
+
display: string | null;
|
|
20098
|
+
} | null;
|
|
20099
|
+
valueQuantity: {
|
|
20100
|
+
value: number | null;
|
|
20101
|
+
unit: string | null;
|
|
20102
|
+
code: any | null;
|
|
20103
|
+
comparator: any | null;
|
|
20104
|
+
system: any | null;
|
|
20105
|
+
} | null;
|
|
20106
|
+
valueReference: {
|
|
20107
|
+
reference: string | null;
|
|
20108
|
+
type: any | null;
|
|
20109
|
+
display: string | null;
|
|
20110
|
+
extension: Array<{
|
|
20111
|
+
url: any | null;
|
|
20112
|
+
valueBoolean: boolean | null;
|
|
20113
|
+
valueInteger: number | null;
|
|
20114
|
+
valueString: string | null;
|
|
20115
|
+
valueDateTime: any | null;
|
|
20116
|
+
valueCode: any | null;
|
|
20117
|
+
valueUri: any | null;
|
|
20118
|
+
valueExpression: {
|
|
20119
|
+
description: string | null;
|
|
20120
|
+
name: string | null;
|
|
20121
|
+
language: any | null;
|
|
20122
|
+
expression: string | null;
|
|
20123
|
+
reference: any | null;
|
|
20124
|
+
} | null;
|
|
20125
|
+
valueCodeableConcept: {
|
|
20126
|
+
text: string | null;
|
|
20127
|
+
coding: Array<{
|
|
20128
|
+
system: any | null;
|
|
20129
|
+
code: any | null;
|
|
20130
|
+
display: string | null;
|
|
20131
|
+
} | null> | null;
|
|
20132
|
+
} | null;
|
|
20133
|
+
valueReference: {
|
|
20134
|
+
reference: string | null;
|
|
20135
|
+
type: any | null;
|
|
20136
|
+
display: string | null;
|
|
20137
|
+
} | null;
|
|
20138
|
+
} | null> | null;
|
|
20139
|
+
} | null;
|
|
20140
|
+
} | null> | null;
|
|
20141
|
+
} | null> | null;
|
|
20142
|
+
extension: Array<{
|
|
20143
|
+
url: any | null;
|
|
20144
|
+
valueBoolean: boolean | null;
|
|
20145
|
+
valueInteger: number | null;
|
|
20146
|
+
valueString: string | null;
|
|
20147
|
+
valueDateTime: any | null;
|
|
20148
|
+
valueCode: any | null;
|
|
20149
|
+
valueUri: any | null;
|
|
20150
|
+
valueExpression: {
|
|
20151
|
+
description: string | null;
|
|
20152
|
+
name: string | null;
|
|
20153
|
+
language: any | null;
|
|
20154
|
+
expression: string | null;
|
|
20155
|
+
reference: any | null;
|
|
20156
|
+
} | null;
|
|
20157
|
+
valueCodeableConcept: {
|
|
20158
|
+
text: string | null;
|
|
20159
|
+
coding: Array<{
|
|
20160
|
+
system: any | null;
|
|
20161
|
+
code: any | null;
|
|
20162
|
+
display: string | null;
|
|
20163
|
+
} | null> | null;
|
|
20164
|
+
} | null;
|
|
20165
|
+
valueReference: {
|
|
20166
|
+
reference: string | null;
|
|
20167
|
+
type: any | null;
|
|
20168
|
+
display: string | null;
|
|
20169
|
+
} | null;
|
|
20170
|
+
extension: Array<{
|
|
20171
|
+
url: any | null;
|
|
20172
|
+
valueBoolean: boolean | null;
|
|
20173
|
+
valueInteger: number | null;
|
|
20174
|
+
valueString: string | null;
|
|
20175
|
+
valueDateTime: any | null;
|
|
20176
|
+
valueCode: any | null;
|
|
20177
|
+
valueUri: any | null;
|
|
20178
|
+
valueExpression: {
|
|
20179
|
+
description: string | null;
|
|
20180
|
+
name: string | null;
|
|
20181
|
+
language: any | null;
|
|
20182
|
+
expression: string | null;
|
|
20183
|
+
reference: any | null;
|
|
20184
|
+
} | null;
|
|
20185
|
+
valueCodeableConcept: {
|
|
20186
|
+
text: string | null;
|
|
20187
|
+
coding: Array<{
|
|
20188
|
+
system: any | null;
|
|
20189
|
+
code: any | null;
|
|
20190
|
+
display: string | null;
|
|
20191
|
+
} | null> | null;
|
|
20192
|
+
} | null;
|
|
20193
|
+
valueReference: {
|
|
20194
|
+
reference: string | null;
|
|
20195
|
+
type: any | null;
|
|
20196
|
+
display: string | null;
|
|
20197
|
+
} | null;
|
|
20198
|
+
} | null> | null;
|
|
20199
|
+
} | null> | null;
|
|
20200
|
+
enableWhen: Array<{
|
|
20201
|
+
question: string | null;
|
|
20202
|
+
operator: any | null;
|
|
20203
|
+
answerBoolean: boolean | null;
|
|
20204
|
+
answerDecimal: number | null;
|
|
20205
|
+
answerInteger: number | null;
|
|
20206
|
+
answerDate: any | null;
|
|
20207
|
+
answerDateTime: any | null;
|
|
20208
|
+
answerTime: any | null;
|
|
20209
|
+
answerString: string | null;
|
|
20210
|
+
answerCoding: {
|
|
20211
|
+
system: any | null;
|
|
20212
|
+
code: any | null;
|
|
20213
|
+
display: string | null;
|
|
20214
|
+
} | null;
|
|
20215
|
+
answerQuantity: {
|
|
20216
|
+
value: number | null;
|
|
20217
|
+
unit: string | null;
|
|
20218
|
+
code: any | null;
|
|
20219
|
+
comparator: any | null;
|
|
20220
|
+
system: any | null;
|
|
20221
|
+
} | null;
|
|
20222
|
+
answerReference: {
|
|
20223
|
+
reference: string | null;
|
|
20224
|
+
type: any | null;
|
|
20225
|
+
display: string | null;
|
|
20226
|
+
} | null;
|
|
20227
|
+
} | null> | null;
|
|
20228
|
+
answerOption: Array<{
|
|
20229
|
+
valueInteger: number | null;
|
|
20230
|
+
valueDate: any | null;
|
|
20231
|
+
valueString: string | null;
|
|
20232
|
+
initialSelected: boolean | null;
|
|
20233
|
+
valueCoding: {
|
|
20234
|
+
system: any | null;
|
|
20235
|
+
code: any | null;
|
|
20236
|
+
display: string | null;
|
|
20237
|
+
} | null;
|
|
20238
|
+
valueReference: {
|
|
20239
|
+
reference: string | null;
|
|
20240
|
+
type: any | null;
|
|
20241
|
+
display: string | null;
|
|
20242
|
+
extension: Array<{
|
|
20243
|
+
url: any | null;
|
|
20244
|
+
valueBoolean: boolean | null;
|
|
20245
|
+
valueInteger: number | null;
|
|
20246
|
+
valueString: string | null;
|
|
20247
|
+
valueDateTime: any | null;
|
|
20248
|
+
valueCode: any | null;
|
|
20249
|
+
valueUri: any | null;
|
|
20250
|
+
valueExpression: {
|
|
20251
|
+
description: string | null;
|
|
20252
|
+
name: string | null;
|
|
20253
|
+
language: any | null;
|
|
20254
|
+
expression: string | null;
|
|
20255
|
+
reference: any | null;
|
|
20256
|
+
} | null;
|
|
20257
|
+
valueCodeableConcept: {
|
|
20258
|
+
text: string | null;
|
|
20259
|
+
coding: Array<{
|
|
20260
|
+
system: any | null;
|
|
20261
|
+
code: any | null;
|
|
20262
|
+
display: string | null;
|
|
20263
|
+
} | null> | null;
|
|
20264
|
+
} | null;
|
|
20265
|
+
valueReference: {
|
|
20266
|
+
reference: string | null;
|
|
20267
|
+
type: any | null;
|
|
20268
|
+
display: string | null;
|
|
20269
|
+
} | null;
|
|
20270
|
+
} | null> | null;
|
|
20271
|
+
} | null;
|
|
20272
|
+
} | null> | null;
|
|
20273
|
+
initial: Array<{
|
|
20274
|
+
valueBoolean: boolean | null;
|
|
20275
|
+
valueDecimal: number | null;
|
|
20276
|
+
valueInteger: number | null;
|
|
20277
|
+
valueDate: any | null;
|
|
20278
|
+
valueDateTime: any | null;
|
|
20279
|
+
valueString: string | null;
|
|
20280
|
+
valueUri: any | null;
|
|
20281
|
+
valueAttachment: {
|
|
20282
|
+
contentType: any | null;
|
|
20283
|
+
data: any | null;
|
|
20284
|
+
url: any | null;
|
|
20285
|
+
title: string | null;
|
|
20286
|
+
} | null;
|
|
20287
|
+
valueCoding: {
|
|
20288
|
+
system: any | null;
|
|
20289
|
+
code: any | null;
|
|
20290
|
+
display: string | null;
|
|
20291
|
+
} | null;
|
|
20292
|
+
valueQuantity: {
|
|
20293
|
+
value: number | null;
|
|
20294
|
+
unit: string | null;
|
|
20295
|
+
code: any | null;
|
|
20296
|
+
comparator: any | null;
|
|
20297
|
+
system: any | null;
|
|
20298
|
+
} | null;
|
|
20299
|
+
valueReference: {
|
|
20300
|
+
reference: string | null;
|
|
20301
|
+
type: any | null;
|
|
20302
|
+
display: string | null;
|
|
20303
|
+
extension: Array<{
|
|
20304
|
+
url: any | null;
|
|
20305
|
+
valueBoolean: boolean | null;
|
|
20306
|
+
valueInteger: number | null;
|
|
20307
|
+
valueString: string | null;
|
|
20308
|
+
valueDateTime: any | null;
|
|
20309
|
+
valueCode: any | null;
|
|
20310
|
+
valueUri: any | null;
|
|
20311
|
+
valueExpression: {
|
|
20312
|
+
description: string | null;
|
|
20313
|
+
name: string | null;
|
|
20314
|
+
language: any | null;
|
|
20315
|
+
expression: string | null;
|
|
20316
|
+
reference: any | null;
|
|
20317
|
+
} | null;
|
|
20318
|
+
valueCodeableConcept: {
|
|
20319
|
+
text: string | null;
|
|
20320
|
+
coding: Array<{
|
|
20321
|
+
system: any | null;
|
|
20322
|
+
code: any | null;
|
|
20323
|
+
display: string | null;
|
|
20324
|
+
} | null> | null;
|
|
20325
|
+
} | null;
|
|
20326
|
+
valueReference: {
|
|
20327
|
+
reference: string | null;
|
|
20328
|
+
type: any | null;
|
|
20329
|
+
display: string | null;
|
|
20330
|
+
} | null;
|
|
20331
|
+
} | null> | null;
|
|
20332
|
+
} | null;
|
|
20333
|
+
} | null> | null;
|
|
20334
|
+
} | null> | null;
|
|
20335
|
+
} | {} | null> | null;
|
|
20336
|
+
subject: {
|
|
20337
|
+
reference: string | null;
|
|
20338
|
+
type: any | null;
|
|
20339
|
+
display: string | null;
|
|
20340
|
+
} | null;
|
|
20341
|
+
} | null;
|
|
20342
|
+
};
|
|
19432
20343
|
export type ProviderSearchQueryVariables = Types.Exact<{
|
|
19433
20344
|
client: Types.InputMaybe<Array<Types.InputMaybe<Types.Client>> | Types.InputMaybe<Types.Client>>;
|
|
19434
20345
|
searchTerm: Types.InputMaybe<Types.Scalars['String']['input']>;
|