@icanbwell/bwell-sdk-ts 1.31.0-rc.1750098835 → 1.31.0-rc.1750169150
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/api-provider.d.ts +2 -0
- package/dist/api/base/health-space/appointments-request.d.ts +6 -1
- package/dist/api/base/health-space/appointments-request.js +8 -2
- package/dist/api/base/index.d.ts +1 -0
- package/dist/api/base/index.js +1 -0
- package/dist/api/base/questionnaire/index.d.ts +2 -0
- package/dist/api/base/questionnaire/index.js +1 -0
- package/dist/api/base/questionnaire/next-question-request.d.ts +10 -0
- package/dist/api/base/questionnaire/next-question-request.js +51 -0
- package/dist/api/base/questionnaire/questionnaire-manager.d.ts +18 -0
- package/dist/api/base/questionnaire/questionnaire-manager.js +1 -0
- package/dist/api/base/requests/search-token.d.ts +8 -4
- package/dist/api/base/requests/search-token.js +24 -2
- package/dist/api/graphql-api/graphql-api-provider.d.ts +2 -0
- package/dist/api/graphql-api/graphql-api-provider.js +2 -0
- package/dist/api/graphql-api/health-space/appointments-request-factory.js +2 -1
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.d.ts +12 -0
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.js +51 -0
- package/dist/api/graphql-api/questionnaire/index.d.ts +1 -0
- package/dist/api/graphql-api/questionnaire/index.js +1 -0
- package/dist/bwell-sdk/bwell-sdk.d.ts +2 -0
- package/dist/bwell-sdk/bwell-sdk.js +3 -0
- package/dist/graphql/operations/index.d.ts +13 -1
- package/dist/graphql/operations/index.js +328 -1
- package/dist/graphql/operations/types.d.ts +3724 -882
- package/package.json +1 -1
|
@@ -4335,43 +4335,276 @@ export type InitialFillFieldsFragment = {
|
|
|
4335
4335
|
system: any | null;
|
|
4336
4336
|
} | null;
|
|
4337
4337
|
};
|
|
4338
|
-
export type
|
|
4339
|
-
|
|
4340
|
-
|
|
4341
|
-
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
|
|
4338
|
+
export type QuestionnaireResponseFieldsFragment = {
|
|
4339
|
+
resourceType: string | null;
|
|
4340
|
+
id: string;
|
|
4341
|
+
questionnaire: any | null;
|
|
4342
|
+
status: any | null;
|
|
4343
|
+
meta: {
|
|
4344
|
+
versionId: string | null;
|
|
4345
|
+
lastUpdated: any | null;
|
|
4346
|
+
source: any | null;
|
|
4347
|
+
security: Array<{
|
|
4348
|
+
system: any | null;
|
|
4349
|
+
code: any | null;
|
|
4350
|
+
display: string | null;
|
|
4351
|
+
} | null> | null;
|
|
4352
|
+
tag: Array<{
|
|
4353
|
+
system: any | null;
|
|
4354
|
+
code: any | null;
|
|
4355
|
+
display: string | null;
|
|
4356
|
+
} | null> | null;
|
|
4357
|
+
} | null;
|
|
4358
|
+
identifier: {
|
|
4359
|
+
id: string | null;
|
|
4360
|
+
system: any | null;
|
|
4361
|
+
value: string | null;
|
|
4362
|
+
type: {
|
|
4363
|
+
text: string | null;
|
|
4364
|
+
coding: Array<{
|
|
4365
|
+
system: any | null;
|
|
4366
|
+
code: any | null;
|
|
4367
|
+
display: string | null;
|
|
4368
|
+
} | null> | null;
|
|
4348
4369
|
} | null;
|
|
4349
|
-
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4370
|
+
} | null;
|
|
4371
|
+
item: Array<{
|
|
4372
|
+
id: string | null;
|
|
4373
|
+
linkId: string | null;
|
|
4374
|
+
text: string | null;
|
|
4375
|
+
item: Array<{
|
|
4376
|
+
id: string | null;
|
|
4377
|
+
linkId: string | null;
|
|
4378
|
+
text: string | null;
|
|
4379
|
+
item: Array<{
|
|
4380
|
+
id: string | null;
|
|
4381
|
+
linkId: string | null;
|
|
4382
|
+
text: string | null;
|
|
4383
|
+
answer: Array<{
|
|
4384
|
+
id: string | null;
|
|
4385
|
+
valueBoolean: boolean | null;
|
|
4386
|
+
valueDecimal: number | null;
|
|
4387
|
+
valueInteger: number | null;
|
|
4388
|
+
valueDate: any | null;
|
|
4389
|
+
valueDateTime: any | null;
|
|
4390
|
+
valueTime: any | null;
|
|
4391
|
+
valueString: string | null;
|
|
4392
|
+
valueUri: any | null;
|
|
4393
|
+
valueAttachment: {
|
|
4394
|
+
contentType: any | null;
|
|
4395
|
+
data: any | null;
|
|
4396
|
+
url: any | null;
|
|
4397
|
+
title: string | null;
|
|
4398
|
+
} | null;
|
|
4399
|
+
valueCoding: {
|
|
4400
|
+
system: any | null;
|
|
4401
|
+
code: any | null;
|
|
4402
|
+
display: string | null;
|
|
4403
|
+
} | null;
|
|
4404
|
+
valueQuantity: {
|
|
4405
|
+
value: number | null;
|
|
4406
|
+
unit: string | null;
|
|
4407
|
+
code: any | null;
|
|
4408
|
+
comparator: any | null;
|
|
4409
|
+
system: any | null;
|
|
4410
|
+
} | null;
|
|
4411
|
+
valueReference: {
|
|
4412
|
+
reference: string | null;
|
|
4413
|
+
type: any | null;
|
|
4414
|
+
display: string | null;
|
|
4415
|
+
extension: Array<{
|
|
4416
|
+
id: string | null;
|
|
4417
|
+
url: any | null;
|
|
4418
|
+
valueBoolean: boolean | null;
|
|
4419
|
+
valueInteger: number | null;
|
|
4420
|
+
valueString: string | null;
|
|
4421
|
+
valueDateTime: any | null;
|
|
4422
|
+
valueCode: any | null;
|
|
4423
|
+
valueUri: any | null;
|
|
4424
|
+
valueExpression: {
|
|
4425
|
+
description: string | null;
|
|
4426
|
+
name: string | null;
|
|
4427
|
+
language: any | null;
|
|
4428
|
+
expression: string | null;
|
|
4429
|
+
reference: any | null;
|
|
4430
|
+
} | null;
|
|
4431
|
+
valueCodeableConcept: {
|
|
4432
|
+
text: string | null;
|
|
4433
|
+
coding: Array<{
|
|
4434
|
+
id: string | null;
|
|
4435
|
+
system: any | null;
|
|
4436
|
+
code: any | null;
|
|
4437
|
+
display: string | null;
|
|
4438
|
+
} | null> | null;
|
|
4439
|
+
} | null;
|
|
4440
|
+
valueReference: {
|
|
4441
|
+
reference: string | null;
|
|
4442
|
+
type: any | null;
|
|
4443
|
+
display: string | null;
|
|
4444
|
+
} | null;
|
|
4445
|
+
} | null> | null;
|
|
4446
|
+
} | null;
|
|
4447
|
+
} | null> | null;
|
|
4448
|
+
} | null> | null;
|
|
4449
|
+
answer: Array<{
|
|
4450
|
+
id: string | null;
|
|
4451
|
+
valueBoolean: boolean | null;
|
|
4452
|
+
valueDecimal: number | null;
|
|
4453
|
+
valueInteger: number | null;
|
|
4454
|
+
valueDate: any | null;
|
|
4455
|
+
valueDateTime: any | null;
|
|
4456
|
+
valueTime: any | null;
|
|
4457
|
+
valueString: string | null;
|
|
4458
|
+
valueUri: any | null;
|
|
4459
|
+
valueAttachment: {
|
|
4460
|
+
contentType: any | null;
|
|
4461
|
+
data: any | null;
|
|
4462
|
+
url: any | null;
|
|
4463
|
+
title: string | null;
|
|
4464
|
+
} | null;
|
|
4465
|
+
valueCoding: {
|
|
4359
4466
|
system: any | null;
|
|
4360
4467
|
code: any | null;
|
|
4361
4468
|
display: string | null;
|
|
4362
|
-
} | null
|
|
4363
|
-
|
|
4364
|
-
|
|
4469
|
+
} | null;
|
|
4470
|
+
valueQuantity: {
|
|
4471
|
+
value: number | null;
|
|
4472
|
+
unit: string | null;
|
|
4365
4473
|
code: any | null;
|
|
4474
|
+
comparator: any | null;
|
|
4475
|
+
system: any | null;
|
|
4476
|
+
} | null;
|
|
4477
|
+
valueReference: {
|
|
4478
|
+
reference: string | null;
|
|
4479
|
+
type: any | null;
|
|
4366
4480
|
display: string | null;
|
|
4481
|
+
extension: Array<{
|
|
4482
|
+
id: string | null;
|
|
4483
|
+
url: any | null;
|
|
4484
|
+
valueBoolean: boolean | null;
|
|
4485
|
+
valueInteger: number | null;
|
|
4486
|
+
valueString: string | null;
|
|
4487
|
+
valueDateTime: any | null;
|
|
4488
|
+
valueCode: any | null;
|
|
4489
|
+
valueUri: any | null;
|
|
4490
|
+
valueExpression: {
|
|
4491
|
+
description: string | null;
|
|
4492
|
+
name: string | null;
|
|
4493
|
+
language: any | null;
|
|
4494
|
+
expression: string | null;
|
|
4495
|
+
reference: any | null;
|
|
4496
|
+
} | null;
|
|
4497
|
+
valueCodeableConcept: {
|
|
4498
|
+
text: string | null;
|
|
4499
|
+
coding: Array<{
|
|
4500
|
+
id: string | null;
|
|
4501
|
+
system: any | null;
|
|
4502
|
+
code: any | null;
|
|
4503
|
+
display: string | null;
|
|
4504
|
+
} | null> | null;
|
|
4505
|
+
} | null;
|
|
4506
|
+
valueReference: {
|
|
4507
|
+
reference: string | null;
|
|
4508
|
+
type: any | null;
|
|
4509
|
+
display: string | null;
|
|
4510
|
+
} | null;
|
|
4511
|
+
} | null> | null;
|
|
4512
|
+
} | null;
|
|
4513
|
+
} | null> | null;
|
|
4514
|
+
} | null> | null;
|
|
4515
|
+
answer: Array<{
|
|
4516
|
+
id: string | null;
|
|
4517
|
+
valueBoolean: boolean | null;
|
|
4518
|
+
valueDecimal: number | null;
|
|
4519
|
+
valueInteger: number | null;
|
|
4520
|
+
valueDate: any | null;
|
|
4521
|
+
valueDateTime: any | null;
|
|
4522
|
+
valueTime: any | null;
|
|
4523
|
+
valueString: string | null;
|
|
4524
|
+
valueUri: any | null;
|
|
4525
|
+
valueAttachment: {
|
|
4526
|
+
contentType: any | null;
|
|
4527
|
+
data: any | null;
|
|
4528
|
+
url: any | null;
|
|
4529
|
+
title: string | null;
|
|
4530
|
+
} | null;
|
|
4531
|
+
valueCoding: {
|
|
4532
|
+
system: any | null;
|
|
4533
|
+
code: any | null;
|
|
4534
|
+
display: string | null;
|
|
4535
|
+
} | null;
|
|
4536
|
+
valueQuantity: {
|
|
4537
|
+
value: number | null;
|
|
4538
|
+
unit: string | null;
|
|
4539
|
+
code: any | null;
|
|
4540
|
+
comparator: any | null;
|
|
4541
|
+
system: any | null;
|
|
4542
|
+
} | null;
|
|
4543
|
+
valueReference: {
|
|
4544
|
+
reference: string | null;
|
|
4545
|
+
type: any | null;
|
|
4546
|
+
display: string | null;
|
|
4547
|
+
extension: Array<{
|
|
4548
|
+
id: string | null;
|
|
4549
|
+
url: any | null;
|
|
4550
|
+
valueBoolean: boolean | null;
|
|
4551
|
+
valueInteger: number | null;
|
|
4552
|
+
valueString: string | null;
|
|
4553
|
+
valueDateTime: any | null;
|
|
4554
|
+
valueCode: any | null;
|
|
4555
|
+
valueUri: any | null;
|
|
4556
|
+
valueExpression: {
|
|
4557
|
+
description: string | null;
|
|
4558
|
+
name: string | null;
|
|
4559
|
+
language: any | null;
|
|
4560
|
+
expression: string | null;
|
|
4561
|
+
reference: any | null;
|
|
4562
|
+
} | null;
|
|
4563
|
+
valueCodeableConcept: {
|
|
4564
|
+
text: string | null;
|
|
4565
|
+
coding: Array<{
|
|
4566
|
+
id: string | null;
|
|
4567
|
+
system: any | null;
|
|
4568
|
+
code: any | null;
|
|
4569
|
+
display: string | null;
|
|
4570
|
+
} | null> | null;
|
|
4571
|
+
} | null;
|
|
4572
|
+
valueReference: {
|
|
4573
|
+
reference: string | null;
|
|
4574
|
+
type: any | null;
|
|
4575
|
+
display: string | null;
|
|
4576
|
+
} | null;
|
|
4367
4577
|
} | null> | null;
|
|
4368
4578
|
} | null;
|
|
4369
|
-
|
|
4370
|
-
|
|
4579
|
+
} | null> | null;
|
|
4580
|
+
} | null> | null;
|
|
4581
|
+
contained: Array<{
|
|
4582
|
+
resourceType: string | null;
|
|
4583
|
+
id: string;
|
|
4584
|
+
name: string | null;
|
|
4585
|
+
title: string | null;
|
|
4586
|
+
status: any | null;
|
|
4587
|
+
description: any | null;
|
|
4588
|
+
meta: {
|
|
4589
|
+
versionId: string | null;
|
|
4590
|
+
lastUpdated: any | null;
|
|
4591
|
+
source: any | null;
|
|
4592
|
+
security: Array<{
|
|
4371
4593
|
system: any | null;
|
|
4372
|
-
|
|
4594
|
+
code: any | null;
|
|
4595
|
+
display: string | null;
|
|
4373
4596
|
} | null> | null;
|
|
4374
|
-
|
|
4597
|
+
tag: Array<{
|
|
4598
|
+
system: any | null;
|
|
4599
|
+
code: any | null;
|
|
4600
|
+
display: string | null;
|
|
4601
|
+
} | null> | null;
|
|
4602
|
+
} | null;
|
|
4603
|
+
identifier: Array<{
|
|
4604
|
+
id: string | null;
|
|
4605
|
+
system: any | null;
|
|
4606
|
+
value: string | null;
|
|
4607
|
+
type: {
|
|
4375
4608
|
text: string | null;
|
|
4376
4609
|
coding: Array<{
|
|
4377
4610
|
system: any | null;
|
|
@@ -4379,41 +4612,1713 @@ export type GetTasksQueryResults = {
|
|
|
4379
4612
|
display: string | null;
|
|
4380
4613
|
} | null> | null;
|
|
4381
4614
|
} | null;
|
|
4382
|
-
|
|
4383
|
-
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4393
|
-
|
|
4615
|
+
} | null> | null;
|
|
4616
|
+
item: Array<{
|
|
4617
|
+
id: string | null;
|
|
4618
|
+
linkId: string | null;
|
|
4619
|
+
prefix: string | null;
|
|
4620
|
+
text: string | null;
|
|
4621
|
+
type: any | null;
|
|
4622
|
+
enableBehavior: any | null;
|
|
4623
|
+
required: boolean | null;
|
|
4624
|
+
repeats: boolean | null;
|
|
4625
|
+
readOnly: boolean | null;
|
|
4626
|
+
maxLength: number | null;
|
|
4627
|
+
item: Array<{
|
|
4394
4628
|
id: string | null;
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4629
|
+
linkId: string | null;
|
|
4630
|
+
prefix: string | null;
|
|
4631
|
+
text: string | null;
|
|
4632
|
+
type: any | null;
|
|
4633
|
+
enableBehavior: any | null;
|
|
4634
|
+
required: boolean | null;
|
|
4635
|
+
repeats: boolean | null;
|
|
4636
|
+
readOnly: boolean | null;
|
|
4637
|
+
maxLength: number | null;
|
|
4638
|
+
item: Array<{
|
|
4639
|
+
id: string | null;
|
|
4640
|
+
linkId: string | null;
|
|
4641
|
+
prefix: string | null;
|
|
4399
4642
|
text: string | null;
|
|
4400
|
-
|
|
4401
|
-
|
|
4402
|
-
|
|
4403
|
-
|
|
4404
|
-
|
|
4405
|
-
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
|
|
4410
|
-
|
|
4411
|
-
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
|
|
4415
|
-
|
|
4416
|
-
|
|
4643
|
+
type: any | null;
|
|
4644
|
+
enableBehavior: any | null;
|
|
4645
|
+
required: boolean | null;
|
|
4646
|
+
repeats: boolean | null;
|
|
4647
|
+
readOnly: boolean | null;
|
|
4648
|
+
maxLength: number | null;
|
|
4649
|
+
extension: Array<{
|
|
4650
|
+
id: string | null;
|
|
4651
|
+
url: any | null;
|
|
4652
|
+
valueBoolean: boolean | null;
|
|
4653
|
+
valueInteger: number | null;
|
|
4654
|
+
valueString: string | null;
|
|
4655
|
+
valueDateTime: any | null;
|
|
4656
|
+
valueCode: any | null;
|
|
4657
|
+
valueUri: any | null;
|
|
4658
|
+
valueExpression: {
|
|
4659
|
+
description: string | null;
|
|
4660
|
+
name: string | null;
|
|
4661
|
+
language: any | null;
|
|
4662
|
+
expression: string | null;
|
|
4663
|
+
reference: any | null;
|
|
4664
|
+
} | null;
|
|
4665
|
+
valueCodeableConcept: {
|
|
4666
|
+
text: string | null;
|
|
4667
|
+
coding: Array<{
|
|
4668
|
+
id: string | null;
|
|
4669
|
+
system: any | null;
|
|
4670
|
+
code: any | null;
|
|
4671
|
+
display: string | null;
|
|
4672
|
+
} | null> | null;
|
|
4673
|
+
} | null;
|
|
4674
|
+
valueReference: {
|
|
4675
|
+
reference: string | null;
|
|
4676
|
+
type: any | null;
|
|
4677
|
+
display: string | null;
|
|
4678
|
+
} | null;
|
|
4679
|
+
extension: Array<{
|
|
4680
|
+
id: string | null;
|
|
4681
|
+
url: any | null;
|
|
4682
|
+
valueBoolean: boolean | null;
|
|
4683
|
+
valueInteger: number | null;
|
|
4684
|
+
valueString: string | null;
|
|
4685
|
+
valueDateTime: any | null;
|
|
4686
|
+
valueCode: any | null;
|
|
4687
|
+
valueUri: any | null;
|
|
4688
|
+
valueExpression: {
|
|
4689
|
+
description: string | null;
|
|
4690
|
+
name: string | null;
|
|
4691
|
+
language: any | null;
|
|
4692
|
+
expression: string | null;
|
|
4693
|
+
reference: any | null;
|
|
4694
|
+
} | null;
|
|
4695
|
+
valueCodeableConcept: {
|
|
4696
|
+
text: string | null;
|
|
4697
|
+
coding: Array<{
|
|
4698
|
+
id: string | null;
|
|
4699
|
+
system: any | null;
|
|
4700
|
+
code: any | null;
|
|
4701
|
+
display: string | null;
|
|
4702
|
+
} | null> | null;
|
|
4703
|
+
} | null;
|
|
4704
|
+
valueReference: {
|
|
4705
|
+
reference: string | null;
|
|
4706
|
+
type: any | null;
|
|
4707
|
+
display: string | null;
|
|
4708
|
+
} | null;
|
|
4709
|
+
} | null> | null;
|
|
4710
|
+
} | null> | null;
|
|
4711
|
+
enableWhen: Array<{
|
|
4712
|
+
id: string | null;
|
|
4713
|
+
question: string | null;
|
|
4714
|
+
operator: any | null;
|
|
4715
|
+
answerBoolean: boolean | null;
|
|
4716
|
+
answerDecimal: number | null;
|
|
4717
|
+
answerInteger: number | null;
|
|
4718
|
+
answerDate: any | null;
|
|
4719
|
+
answerDateTime: any | null;
|
|
4720
|
+
answerTime: any | null;
|
|
4721
|
+
answerString: string | null;
|
|
4722
|
+
answerCoding: {
|
|
4723
|
+
system: any | null;
|
|
4724
|
+
code: any | null;
|
|
4725
|
+
display: string | null;
|
|
4726
|
+
} | null;
|
|
4727
|
+
answerQuantity: {
|
|
4728
|
+
value: number | null;
|
|
4729
|
+
unit: string | null;
|
|
4730
|
+
code: any | null;
|
|
4731
|
+
comparator: any | null;
|
|
4732
|
+
system: any | null;
|
|
4733
|
+
} | null;
|
|
4734
|
+
answerReference: {
|
|
4735
|
+
reference: string | null;
|
|
4736
|
+
type: any | null;
|
|
4737
|
+
display: string | null;
|
|
4738
|
+
} | null;
|
|
4739
|
+
} | null> | null;
|
|
4740
|
+
answerOption: Array<{
|
|
4741
|
+
id: string | null;
|
|
4742
|
+
valueInteger: number | null;
|
|
4743
|
+
valueDate: any | null;
|
|
4744
|
+
valueTime: any | null;
|
|
4745
|
+
valueString: string | null;
|
|
4746
|
+
initialSelected: boolean | null;
|
|
4747
|
+
valueCoding: {
|
|
4748
|
+
system: any | null;
|
|
4749
|
+
code: any | null;
|
|
4750
|
+
display: string | null;
|
|
4751
|
+
} | null;
|
|
4752
|
+
valueReference: {
|
|
4753
|
+
reference: string | null;
|
|
4754
|
+
type: any | null;
|
|
4755
|
+
display: string | null;
|
|
4756
|
+
extension: Array<{
|
|
4757
|
+
id: string | null;
|
|
4758
|
+
url: any | null;
|
|
4759
|
+
valueBoolean: boolean | null;
|
|
4760
|
+
valueInteger: number | null;
|
|
4761
|
+
valueString: string | null;
|
|
4762
|
+
valueDateTime: any | null;
|
|
4763
|
+
valueCode: any | null;
|
|
4764
|
+
valueUri: any | null;
|
|
4765
|
+
valueExpression: {
|
|
4766
|
+
description: string | null;
|
|
4767
|
+
name: string | null;
|
|
4768
|
+
language: any | null;
|
|
4769
|
+
expression: string | null;
|
|
4770
|
+
reference: any | null;
|
|
4771
|
+
} | null;
|
|
4772
|
+
valueCodeableConcept: {
|
|
4773
|
+
text: string | null;
|
|
4774
|
+
coding: Array<{
|
|
4775
|
+
id: string | null;
|
|
4776
|
+
system: any | null;
|
|
4777
|
+
code: any | null;
|
|
4778
|
+
display: string | null;
|
|
4779
|
+
} | null> | null;
|
|
4780
|
+
} | null;
|
|
4781
|
+
valueReference: {
|
|
4782
|
+
reference: string | null;
|
|
4783
|
+
type: any | null;
|
|
4784
|
+
display: string | null;
|
|
4785
|
+
} | null;
|
|
4786
|
+
} | null> | null;
|
|
4787
|
+
} | null;
|
|
4788
|
+
} | null> | null;
|
|
4789
|
+
initial: Array<{
|
|
4790
|
+
id: string | null;
|
|
4791
|
+
valueBoolean: boolean | null;
|
|
4792
|
+
valueDecimal: number | null;
|
|
4793
|
+
valueInteger: number | null;
|
|
4794
|
+
valueDate: any | null;
|
|
4795
|
+
valueDateTime: any | null;
|
|
4796
|
+
valueTime: any | null;
|
|
4797
|
+
valueString: string | null;
|
|
4798
|
+
valueUri: any | null;
|
|
4799
|
+
valueAttachment: {
|
|
4800
|
+
contentType: any | null;
|
|
4801
|
+
data: any | null;
|
|
4802
|
+
url: any | null;
|
|
4803
|
+
title: string | null;
|
|
4804
|
+
} | null;
|
|
4805
|
+
valueCoding: {
|
|
4806
|
+
system: any | null;
|
|
4807
|
+
code: any | null;
|
|
4808
|
+
display: string | null;
|
|
4809
|
+
} | null;
|
|
4810
|
+
valueQuantity: {
|
|
4811
|
+
value: number | null;
|
|
4812
|
+
unit: string | null;
|
|
4813
|
+
code: any | null;
|
|
4814
|
+
comparator: any | null;
|
|
4815
|
+
system: any | null;
|
|
4816
|
+
} | null;
|
|
4817
|
+
valueReference: {
|
|
4818
|
+
reference: string | null;
|
|
4819
|
+
type: any | null;
|
|
4820
|
+
display: string | null;
|
|
4821
|
+
extension: Array<{
|
|
4822
|
+
id: string | null;
|
|
4823
|
+
url: any | null;
|
|
4824
|
+
valueBoolean: boolean | null;
|
|
4825
|
+
valueInteger: number | null;
|
|
4826
|
+
valueString: string | null;
|
|
4827
|
+
valueDateTime: any | null;
|
|
4828
|
+
valueCode: any | null;
|
|
4829
|
+
valueUri: any | null;
|
|
4830
|
+
valueExpression: {
|
|
4831
|
+
description: string | null;
|
|
4832
|
+
name: string | null;
|
|
4833
|
+
language: any | null;
|
|
4834
|
+
expression: string | null;
|
|
4835
|
+
reference: any | null;
|
|
4836
|
+
} | null;
|
|
4837
|
+
valueCodeableConcept: {
|
|
4838
|
+
text: string | null;
|
|
4839
|
+
coding: Array<{
|
|
4840
|
+
id: string | null;
|
|
4841
|
+
system: any | null;
|
|
4842
|
+
code: any | null;
|
|
4843
|
+
display: string | null;
|
|
4844
|
+
} | null> | null;
|
|
4845
|
+
} | null;
|
|
4846
|
+
valueReference: {
|
|
4847
|
+
reference: string | null;
|
|
4848
|
+
type: any | null;
|
|
4849
|
+
display: string | null;
|
|
4850
|
+
} | null;
|
|
4851
|
+
} | null> | null;
|
|
4852
|
+
} | null;
|
|
4853
|
+
} | null> | null;
|
|
4854
|
+
} | null> | null;
|
|
4855
|
+
extension: Array<{
|
|
4856
|
+
id: string | null;
|
|
4857
|
+
url: any | null;
|
|
4858
|
+
valueBoolean: boolean | null;
|
|
4859
|
+
valueInteger: number | null;
|
|
4860
|
+
valueString: string | null;
|
|
4861
|
+
valueDateTime: any | null;
|
|
4862
|
+
valueCode: any | null;
|
|
4863
|
+
valueUri: any | null;
|
|
4864
|
+
valueExpression: {
|
|
4865
|
+
description: string | null;
|
|
4866
|
+
name: string | null;
|
|
4867
|
+
language: any | null;
|
|
4868
|
+
expression: string | null;
|
|
4869
|
+
reference: any | null;
|
|
4870
|
+
} | null;
|
|
4871
|
+
valueCodeableConcept: {
|
|
4872
|
+
text: string | null;
|
|
4873
|
+
coding: Array<{
|
|
4874
|
+
id: string | null;
|
|
4875
|
+
system: any | null;
|
|
4876
|
+
code: any | null;
|
|
4877
|
+
display: string | null;
|
|
4878
|
+
} | null> | null;
|
|
4879
|
+
} | null;
|
|
4880
|
+
valueReference: {
|
|
4881
|
+
reference: string | null;
|
|
4882
|
+
type: any | null;
|
|
4883
|
+
display: string | null;
|
|
4884
|
+
} | null;
|
|
4885
|
+
extension: Array<{
|
|
4886
|
+
id: string | null;
|
|
4887
|
+
url: any | null;
|
|
4888
|
+
valueBoolean: boolean | null;
|
|
4889
|
+
valueInteger: number | null;
|
|
4890
|
+
valueString: string | null;
|
|
4891
|
+
valueDateTime: any | null;
|
|
4892
|
+
valueCode: any | null;
|
|
4893
|
+
valueUri: any | null;
|
|
4894
|
+
valueExpression: {
|
|
4895
|
+
description: string | null;
|
|
4896
|
+
name: string | null;
|
|
4897
|
+
language: any | null;
|
|
4898
|
+
expression: string | null;
|
|
4899
|
+
reference: any | null;
|
|
4900
|
+
} | null;
|
|
4901
|
+
valueCodeableConcept: {
|
|
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;
|
|
4910
|
+
valueReference: {
|
|
4911
|
+
reference: string | null;
|
|
4912
|
+
type: any | null;
|
|
4913
|
+
display: string | null;
|
|
4914
|
+
} | null;
|
|
4915
|
+
} | null> | null;
|
|
4916
|
+
} | null> | null;
|
|
4917
|
+
enableWhen: Array<{
|
|
4918
|
+
id: string | null;
|
|
4919
|
+
question: string | null;
|
|
4920
|
+
operator: any | null;
|
|
4921
|
+
answerBoolean: boolean | null;
|
|
4922
|
+
answerDecimal: number | null;
|
|
4923
|
+
answerInteger: number | null;
|
|
4924
|
+
answerDate: any | null;
|
|
4925
|
+
answerDateTime: any | null;
|
|
4926
|
+
answerTime: any | null;
|
|
4927
|
+
answerString: string | null;
|
|
4928
|
+
answerCoding: {
|
|
4929
|
+
system: any | null;
|
|
4930
|
+
code: any | null;
|
|
4931
|
+
display: string | null;
|
|
4932
|
+
} | null;
|
|
4933
|
+
answerQuantity: {
|
|
4934
|
+
value: number | null;
|
|
4935
|
+
unit: string | null;
|
|
4936
|
+
code: any | null;
|
|
4937
|
+
comparator: any | null;
|
|
4938
|
+
system: any | null;
|
|
4939
|
+
} | null;
|
|
4940
|
+
answerReference: {
|
|
4941
|
+
reference: string | null;
|
|
4942
|
+
type: any | null;
|
|
4943
|
+
display: string | null;
|
|
4944
|
+
} | null;
|
|
4945
|
+
} | null> | null;
|
|
4946
|
+
answerOption: Array<{
|
|
4947
|
+
id: string | null;
|
|
4948
|
+
valueInteger: number | null;
|
|
4949
|
+
valueDate: any | null;
|
|
4950
|
+
valueTime: any | null;
|
|
4951
|
+
valueString: string | null;
|
|
4952
|
+
initialSelected: boolean | null;
|
|
4953
|
+
valueCoding: {
|
|
4954
|
+
system: any | null;
|
|
4955
|
+
code: any | null;
|
|
4956
|
+
display: string | null;
|
|
4957
|
+
} | null;
|
|
4958
|
+
valueReference: {
|
|
4959
|
+
reference: string | null;
|
|
4960
|
+
type: any | null;
|
|
4961
|
+
display: string | null;
|
|
4962
|
+
extension: Array<{
|
|
4963
|
+
id: string | null;
|
|
4964
|
+
url: any | null;
|
|
4965
|
+
valueBoolean: boolean | null;
|
|
4966
|
+
valueInteger: number | null;
|
|
4967
|
+
valueString: string | null;
|
|
4968
|
+
valueDateTime: any | null;
|
|
4969
|
+
valueCode: any | null;
|
|
4970
|
+
valueUri: any | null;
|
|
4971
|
+
valueExpression: {
|
|
4972
|
+
description: string | null;
|
|
4973
|
+
name: string | null;
|
|
4974
|
+
language: any | null;
|
|
4975
|
+
expression: string | null;
|
|
4976
|
+
reference: any | null;
|
|
4977
|
+
} | null;
|
|
4978
|
+
valueCodeableConcept: {
|
|
4979
|
+
text: string | null;
|
|
4980
|
+
coding: Array<{
|
|
4981
|
+
id: string | null;
|
|
4982
|
+
system: any | null;
|
|
4983
|
+
code: any | null;
|
|
4984
|
+
display: string | null;
|
|
4985
|
+
} | null> | null;
|
|
4986
|
+
} | null;
|
|
4987
|
+
valueReference: {
|
|
4988
|
+
reference: string | null;
|
|
4989
|
+
type: any | null;
|
|
4990
|
+
display: string | null;
|
|
4991
|
+
} | null;
|
|
4992
|
+
} | null> | null;
|
|
4993
|
+
} | null;
|
|
4994
|
+
} | null> | null;
|
|
4995
|
+
initial: Array<{
|
|
4996
|
+
id: string | null;
|
|
4997
|
+
valueBoolean: boolean | null;
|
|
4998
|
+
valueDecimal: number | null;
|
|
4999
|
+
valueInteger: number | null;
|
|
5000
|
+
valueDate: any | null;
|
|
5001
|
+
valueDateTime: any | null;
|
|
5002
|
+
valueTime: any | null;
|
|
5003
|
+
valueString: string | null;
|
|
5004
|
+
valueUri: any | null;
|
|
5005
|
+
valueAttachment: {
|
|
5006
|
+
contentType: any | null;
|
|
5007
|
+
data: any | null;
|
|
5008
|
+
url: any | null;
|
|
5009
|
+
title: string | null;
|
|
5010
|
+
} | null;
|
|
5011
|
+
valueCoding: {
|
|
5012
|
+
system: any | null;
|
|
5013
|
+
code: any | null;
|
|
5014
|
+
display: string | null;
|
|
5015
|
+
} | null;
|
|
5016
|
+
valueQuantity: {
|
|
5017
|
+
value: number | null;
|
|
5018
|
+
unit: string | null;
|
|
5019
|
+
code: any | null;
|
|
5020
|
+
comparator: any | null;
|
|
5021
|
+
system: any | null;
|
|
5022
|
+
} | null;
|
|
5023
|
+
valueReference: {
|
|
5024
|
+
reference: string | null;
|
|
5025
|
+
type: any | null;
|
|
5026
|
+
display: string | null;
|
|
5027
|
+
extension: Array<{
|
|
5028
|
+
id: string | null;
|
|
5029
|
+
url: any | null;
|
|
5030
|
+
valueBoolean: boolean | null;
|
|
5031
|
+
valueInteger: number | null;
|
|
5032
|
+
valueString: string | null;
|
|
5033
|
+
valueDateTime: any | null;
|
|
5034
|
+
valueCode: any | null;
|
|
5035
|
+
valueUri: any | null;
|
|
5036
|
+
valueExpression: {
|
|
5037
|
+
description: string | null;
|
|
5038
|
+
name: string | null;
|
|
5039
|
+
language: any | null;
|
|
5040
|
+
expression: string | null;
|
|
5041
|
+
reference: any | null;
|
|
5042
|
+
} | null;
|
|
5043
|
+
valueCodeableConcept: {
|
|
5044
|
+
text: string | null;
|
|
5045
|
+
coding: Array<{
|
|
5046
|
+
id: string | null;
|
|
5047
|
+
system: any | null;
|
|
5048
|
+
code: any | null;
|
|
5049
|
+
display: string | null;
|
|
5050
|
+
} | null> | null;
|
|
5051
|
+
} | null;
|
|
5052
|
+
valueReference: {
|
|
5053
|
+
reference: string | null;
|
|
5054
|
+
type: any | null;
|
|
5055
|
+
display: string | null;
|
|
5056
|
+
} | null;
|
|
5057
|
+
} | null> | null;
|
|
5058
|
+
} | null;
|
|
5059
|
+
} | null> | null;
|
|
5060
|
+
} | null> | null;
|
|
5061
|
+
extension: Array<{
|
|
5062
|
+
id: string | null;
|
|
5063
|
+
url: any | null;
|
|
5064
|
+
valueBoolean: boolean | null;
|
|
5065
|
+
valueInteger: number | null;
|
|
5066
|
+
valueString: string | null;
|
|
5067
|
+
valueDateTime: any | null;
|
|
5068
|
+
valueCode: any | null;
|
|
5069
|
+
valueUri: any | null;
|
|
5070
|
+
valueExpression: {
|
|
5071
|
+
description: string | null;
|
|
5072
|
+
name: string | null;
|
|
5073
|
+
language: any | null;
|
|
5074
|
+
expression: string | null;
|
|
5075
|
+
reference: any | null;
|
|
5076
|
+
} | null;
|
|
5077
|
+
valueCodeableConcept: {
|
|
5078
|
+
text: string | null;
|
|
5079
|
+
coding: Array<{
|
|
5080
|
+
id: string | null;
|
|
5081
|
+
system: any | null;
|
|
5082
|
+
code: any | null;
|
|
5083
|
+
display: string | null;
|
|
5084
|
+
} | null> | null;
|
|
5085
|
+
} | null;
|
|
5086
|
+
valueReference: {
|
|
5087
|
+
reference: string | null;
|
|
5088
|
+
type: any | null;
|
|
5089
|
+
display: string | null;
|
|
5090
|
+
} | null;
|
|
5091
|
+
extension: Array<{
|
|
5092
|
+
id: string | null;
|
|
5093
|
+
url: any | null;
|
|
5094
|
+
valueBoolean: boolean | null;
|
|
5095
|
+
valueInteger: number | null;
|
|
5096
|
+
valueString: string | null;
|
|
5097
|
+
valueDateTime: any | null;
|
|
5098
|
+
valueCode: any | null;
|
|
5099
|
+
valueUri: any | null;
|
|
5100
|
+
valueExpression: {
|
|
5101
|
+
description: string | null;
|
|
5102
|
+
name: string | null;
|
|
5103
|
+
language: any | null;
|
|
5104
|
+
expression: string | null;
|
|
5105
|
+
reference: any | null;
|
|
5106
|
+
} | null;
|
|
5107
|
+
valueCodeableConcept: {
|
|
5108
|
+
text: string | null;
|
|
5109
|
+
coding: Array<{
|
|
5110
|
+
id: string | null;
|
|
5111
|
+
system: any | null;
|
|
5112
|
+
code: any | null;
|
|
5113
|
+
display: string | null;
|
|
5114
|
+
} | null> | null;
|
|
5115
|
+
} | null;
|
|
5116
|
+
valueReference: {
|
|
5117
|
+
reference: string | null;
|
|
5118
|
+
type: any | null;
|
|
5119
|
+
display: string | null;
|
|
5120
|
+
} | null;
|
|
5121
|
+
} | null> | null;
|
|
5122
|
+
} | null> | null;
|
|
5123
|
+
enableWhen: Array<{
|
|
5124
|
+
id: string | null;
|
|
5125
|
+
question: string | null;
|
|
5126
|
+
operator: any | null;
|
|
5127
|
+
answerBoolean: boolean | null;
|
|
5128
|
+
answerDecimal: number | null;
|
|
5129
|
+
answerInteger: number | null;
|
|
5130
|
+
answerDate: any | null;
|
|
5131
|
+
answerDateTime: any | null;
|
|
5132
|
+
answerTime: any | null;
|
|
5133
|
+
answerString: string | null;
|
|
5134
|
+
answerCoding: {
|
|
5135
|
+
system: any | null;
|
|
5136
|
+
code: any | null;
|
|
5137
|
+
display: string | null;
|
|
5138
|
+
} | null;
|
|
5139
|
+
answerQuantity: {
|
|
5140
|
+
value: number | null;
|
|
5141
|
+
unit: string | null;
|
|
5142
|
+
code: any | null;
|
|
5143
|
+
comparator: any | null;
|
|
5144
|
+
system: any | null;
|
|
5145
|
+
} | null;
|
|
5146
|
+
answerReference: {
|
|
5147
|
+
reference: string | null;
|
|
5148
|
+
type: any | null;
|
|
5149
|
+
display: string | null;
|
|
5150
|
+
} | null;
|
|
5151
|
+
} | null> | null;
|
|
5152
|
+
answerOption: Array<{
|
|
5153
|
+
id: string | null;
|
|
5154
|
+
valueInteger: number | null;
|
|
5155
|
+
valueDate: any | null;
|
|
5156
|
+
valueTime: any | null;
|
|
5157
|
+
valueString: string | null;
|
|
5158
|
+
initialSelected: boolean | null;
|
|
5159
|
+
valueCoding: {
|
|
5160
|
+
system: any | null;
|
|
5161
|
+
code: any | null;
|
|
5162
|
+
display: string | null;
|
|
5163
|
+
} | null;
|
|
5164
|
+
valueReference: {
|
|
5165
|
+
reference: string | null;
|
|
5166
|
+
type: any | null;
|
|
5167
|
+
display: string | null;
|
|
5168
|
+
extension: Array<{
|
|
5169
|
+
id: string | null;
|
|
5170
|
+
url: any | null;
|
|
5171
|
+
valueBoolean: boolean | null;
|
|
5172
|
+
valueInteger: number | null;
|
|
5173
|
+
valueString: string | null;
|
|
5174
|
+
valueDateTime: any | null;
|
|
5175
|
+
valueCode: any | null;
|
|
5176
|
+
valueUri: any | null;
|
|
5177
|
+
valueExpression: {
|
|
5178
|
+
description: string | null;
|
|
5179
|
+
name: string | null;
|
|
5180
|
+
language: any | null;
|
|
5181
|
+
expression: string | null;
|
|
5182
|
+
reference: any | null;
|
|
5183
|
+
} | null;
|
|
5184
|
+
valueCodeableConcept: {
|
|
5185
|
+
text: string | null;
|
|
5186
|
+
coding: Array<{
|
|
5187
|
+
id: string | null;
|
|
5188
|
+
system: any | null;
|
|
5189
|
+
code: any | null;
|
|
5190
|
+
display: string | null;
|
|
5191
|
+
} | null> | null;
|
|
5192
|
+
} | null;
|
|
5193
|
+
valueReference: {
|
|
5194
|
+
reference: string | null;
|
|
5195
|
+
type: any | null;
|
|
5196
|
+
display: string | null;
|
|
5197
|
+
} | null;
|
|
5198
|
+
} | null> | null;
|
|
5199
|
+
} | null;
|
|
5200
|
+
} | null> | null;
|
|
5201
|
+
initial: Array<{
|
|
5202
|
+
id: string | null;
|
|
5203
|
+
valueBoolean: boolean | null;
|
|
5204
|
+
valueDecimal: number | null;
|
|
5205
|
+
valueInteger: number | null;
|
|
5206
|
+
valueDate: any | null;
|
|
5207
|
+
valueDateTime: any | null;
|
|
5208
|
+
valueTime: any | null;
|
|
5209
|
+
valueString: string | null;
|
|
5210
|
+
valueUri: any | null;
|
|
5211
|
+
valueAttachment: {
|
|
5212
|
+
contentType: any | null;
|
|
5213
|
+
data: any | null;
|
|
5214
|
+
url: any | null;
|
|
5215
|
+
title: string | null;
|
|
5216
|
+
} | null;
|
|
5217
|
+
valueCoding: {
|
|
5218
|
+
system: any | null;
|
|
5219
|
+
code: any | null;
|
|
5220
|
+
display: string | null;
|
|
5221
|
+
} | null;
|
|
5222
|
+
valueQuantity: {
|
|
5223
|
+
value: number | null;
|
|
5224
|
+
unit: string | null;
|
|
5225
|
+
code: any | null;
|
|
5226
|
+
comparator: any | null;
|
|
5227
|
+
system: any | null;
|
|
5228
|
+
} | null;
|
|
5229
|
+
valueReference: {
|
|
5230
|
+
reference: string | null;
|
|
5231
|
+
type: any | null;
|
|
5232
|
+
display: string | null;
|
|
5233
|
+
extension: Array<{
|
|
5234
|
+
id: string | null;
|
|
5235
|
+
url: any | null;
|
|
5236
|
+
valueBoolean: boolean | null;
|
|
5237
|
+
valueInteger: number | null;
|
|
5238
|
+
valueString: string | null;
|
|
5239
|
+
valueDateTime: any | null;
|
|
5240
|
+
valueCode: any | null;
|
|
5241
|
+
valueUri: any | null;
|
|
5242
|
+
valueExpression: {
|
|
5243
|
+
description: string | null;
|
|
5244
|
+
name: string | null;
|
|
5245
|
+
language: any | null;
|
|
5246
|
+
expression: string | null;
|
|
5247
|
+
reference: any | null;
|
|
5248
|
+
} | null;
|
|
5249
|
+
valueCodeableConcept: {
|
|
5250
|
+
text: string | null;
|
|
5251
|
+
coding: Array<{
|
|
5252
|
+
id: string | null;
|
|
5253
|
+
system: any | null;
|
|
5254
|
+
code: any | null;
|
|
5255
|
+
display: string | null;
|
|
5256
|
+
} | null> | null;
|
|
5257
|
+
} | null;
|
|
5258
|
+
valueReference: {
|
|
5259
|
+
reference: string | null;
|
|
5260
|
+
type: any | null;
|
|
5261
|
+
display: string | null;
|
|
5262
|
+
} | null;
|
|
5263
|
+
} | null> | null;
|
|
5264
|
+
} | null;
|
|
5265
|
+
} | null> | null;
|
|
5266
|
+
} | null> | null;
|
|
5267
|
+
} | {} | null> | null;
|
|
5268
|
+
};
|
|
5269
|
+
export type QuestionnaireResponseItemFieldsFragment = {
|
|
5270
|
+
id: string | null;
|
|
5271
|
+
linkId: string | null;
|
|
5272
|
+
text: string | null;
|
|
5273
|
+
answer: Array<{
|
|
5274
|
+
id: string | null;
|
|
5275
|
+
valueBoolean: boolean | null;
|
|
5276
|
+
valueDecimal: number | null;
|
|
5277
|
+
valueInteger: number | null;
|
|
5278
|
+
valueDate: any | null;
|
|
5279
|
+
valueDateTime: any | null;
|
|
5280
|
+
valueTime: any | null;
|
|
5281
|
+
valueString: string | null;
|
|
5282
|
+
valueUri: any | null;
|
|
5283
|
+
valueAttachment: {
|
|
5284
|
+
contentType: any | null;
|
|
5285
|
+
data: any | null;
|
|
5286
|
+
url: any | null;
|
|
5287
|
+
title: string | null;
|
|
5288
|
+
} | null;
|
|
5289
|
+
valueCoding: {
|
|
5290
|
+
system: any | null;
|
|
5291
|
+
code: any | null;
|
|
5292
|
+
display: string | null;
|
|
5293
|
+
} | null;
|
|
5294
|
+
valueQuantity: {
|
|
5295
|
+
value: number | null;
|
|
5296
|
+
unit: string | null;
|
|
5297
|
+
code: any | null;
|
|
5298
|
+
comparator: any | null;
|
|
5299
|
+
system: any | null;
|
|
5300
|
+
} | null;
|
|
5301
|
+
valueReference: {
|
|
5302
|
+
reference: string | null;
|
|
5303
|
+
type: any | null;
|
|
5304
|
+
display: string | null;
|
|
5305
|
+
extension: Array<{
|
|
5306
|
+
id: string | null;
|
|
5307
|
+
url: any | null;
|
|
5308
|
+
valueBoolean: boolean | null;
|
|
5309
|
+
valueInteger: number | null;
|
|
5310
|
+
valueString: string | null;
|
|
5311
|
+
valueDateTime: any | null;
|
|
5312
|
+
valueCode: any | null;
|
|
5313
|
+
valueUri: any | null;
|
|
5314
|
+
valueExpression: {
|
|
5315
|
+
description: string | null;
|
|
5316
|
+
name: string | null;
|
|
5317
|
+
language: any | null;
|
|
5318
|
+
expression: string | null;
|
|
5319
|
+
reference: any | null;
|
|
5320
|
+
} | null;
|
|
5321
|
+
valueCodeableConcept: {
|
|
5322
|
+
text: string | null;
|
|
5323
|
+
coding: Array<{
|
|
5324
|
+
id: string | null;
|
|
5325
|
+
system: any | null;
|
|
5326
|
+
code: any | null;
|
|
5327
|
+
display: string | null;
|
|
5328
|
+
} | null> | null;
|
|
5329
|
+
} | null;
|
|
5330
|
+
valueReference: {
|
|
5331
|
+
reference: string | null;
|
|
5332
|
+
type: any | null;
|
|
5333
|
+
display: string | null;
|
|
5334
|
+
} | null;
|
|
5335
|
+
} | null> | null;
|
|
5336
|
+
} | null;
|
|
5337
|
+
} | null> | null;
|
|
5338
|
+
};
|
|
5339
|
+
export type QuestionnaireFieldsFragment = {
|
|
5340
|
+
resourceType: string | null;
|
|
5341
|
+
id: string;
|
|
5342
|
+
name: string | null;
|
|
5343
|
+
title: string | null;
|
|
5344
|
+
status: any | null;
|
|
5345
|
+
description: any | null;
|
|
5346
|
+
meta: {
|
|
5347
|
+
versionId: string | null;
|
|
5348
|
+
lastUpdated: any | null;
|
|
5349
|
+
source: any | null;
|
|
5350
|
+
security: Array<{
|
|
5351
|
+
system: any | null;
|
|
5352
|
+
code: any | null;
|
|
5353
|
+
display: string | null;
|
|
5354
|
+
} | null> | null;
|
|
5355
|
+
tag: Array<{
|
|
5356
|
+
system: any | null;
|
|
5357
|
+
code: any | null;
|
|
5358
|
+
display: string | null;
|
|
5359
|
+
} | null> | null;
|
|
5360
|
+
} | null;
|
|
5361
|
+
identifier: Array<{
|
|
5362
|
+
id: string | null;
|
|
5363
|
+
system: any | null;
|
|
5364
|
+
value: string | null;
|
|
5365
|
+
type: {
|
|
5366
|
+
text: string | null;
|
|
5367
|
+
coding: Array<{
|
|
5368
|
+
system: any | null;
|
|
5369
|
+
code: any | null;
|
|
5370
|
+
display: string | null;
|
|
5371
|
+
} | null> | null;
|
|
5372
|
+
} | null;
|
|
5373
|
+
} | null> | null;
|
|
5374
|
+
item: Array<{
|
|
5375
|
+
id: string | null;
|
|
5376
|
+
linkId: string | null;
|
|
5377
|
+
prefix: string | null;
|
|
5378
|
+
text: string | null;
|
|
5379
|
+
type: any | null;
|
|
5380
|
+
enableBehavior: any | null;
|
|
5381
|
+
required: boolean | null;
|
|
5382
|
+
repeats: boolean | null;
|
|
5383
|
+
readOnly: boolean | null;
|
|
5384
|
+
maxLength: number | null;
|
|
5385
|
+
item: Array<{
|
|
5386
|
+
id: string | null;
|
|
5387
|
+
linkId: string | null;
|
|
5388
|
+
prefix: string | null;
|
|
5389
|
+
text: string | null;
|
|
5390
|
+
type: any | null;
|
|
5391
|
+
enableBehavior: any | null;
|
|
5392
|
+
required: boolean | null;
|
|
5393
|
+
repeats: boolean | null;
|
|
5394
|
+
readOnly: boolean | null;
|
|
5395
|
+
maxLength: number | null;
|
|
5396
|
+
item: Array<{
|
|
5397
|
+
id: string | null;
|
|
5398
|
+
linkId: string | null;
|
|
5399
|
+
prefix: string | null;
|
|
5400
|
+
text: string | null;
|
|
5401
|
+
type: any | null;
|
|
5402
|
+
enableBehavior: any | null;
|
|
5403
|
+
required: boolean | null;
|
|
5404
|
+
repeats: boolean | null;
|
|
5405
|
+
readOnly: boolean | null;
|
|
5406
|
+
maxLength: number | null;
|
|
5407
|
+
extension: Array<{
|
|
5408
|
+
id: string | null;
|
|
5409
|
+
url: any | null;
|
|
5410
|
+
valueBoolean: boolean | null;
|
|
5411
|
+
valueInteger: number | null;
|
|
5412
|
+
valueString: string | null;
|
|
5413
|
+
valueDateTime: any | null;
|
|
5414
|
+
valueCode: any | null;
|
|
5415
|
+
valueUri: any | null;
|
|
5416
|
+
valueExpression: {
|
|
5417
|
+
description: string | null;
|
|
5418
|
+
name: string | null;
|
|
5419
|
+
language: any | null;
|
|
5420
|
+
expression: string | null;
|
|
5421
|
+
reference: any | null;
|
|
5422
|
+
} | null;
|
|
5423
|
+
valueCodeableConcept: {
|
|
5424
|
+
text: string | null;
|
|
5425
|
+
coding: Array<{
|
|
5426
|
+
id: string | null;
|
|
5427
|
+
system: any | null;
|
|
5428
|
+
code: any | null;
|
|
5429
|
+
display: string | null;
|
|
5430
|
+
} | null> | null;
|
|
5431
|
+
} | null;
|
|
5432
|
+
valueReference: {
|
|
5433
|
+
reference: string | null;
|
|
5434
|
+
type: any | null;
|
|
5435
|
+
display: string | null;
|
|
5436
|
+
} | null;
|
|
5437
|
+
extension: Array<{
|
|
5438
|
+
id: string | null;
|
|
5439
|
+
url: any | null;
|
|
5440
|
+
valueBoolean: boolean | null;
|
|
5441
|
+
valueInteger: number | null;
|
|
5442
|
+
valueString: string | null;
|
|
5443
|
+
valueDateTime: any | null;
|
|
5444
|
+
valueCode: any | null;
|
|
5445
|
+
valueUri: any | null;
|
|
5446
|
+
valueExpression: {
|
|
5447
|
+
description: string | null;
|
|
5448
|
+
name: string | null;
|
|
5449
|
+
language: any | null;
|
|
5450
|
+
expression: string | null;
|
|
5451
|
+
reference: any | null;
|
|
5452
|
+
} | null;
|
|
5453
|
+
valueCodeableConcept: {
|
|
5454
|
+
text: string | null;
|
|
5455
|
+
coding: Array<{
|
|
5456
|
+
id: string | null;
|
|
5457
|
+
system: any | null;
|
|
5458
|
+
code: any | null;
|
|
5459
|
+
display: string | null;
|
|
5460
|
+
} | null> | null;
|
|
5461
|
+
} | null;
|
|
5462
|
+
valueReference: {
|
|
5463
|
+
reference: string | null;
|
|
5464
|
+
type: any | null;
|
|
5465
|
+
display: string | null;
|
|
5466
|
+
} | null;
|
|
5467
|
+
} | null> | null;
|
|
5468
|
+
} | null> | null;
|
|
5469
|
+
enableWhen: Array<{
|
|
5470
|
+
id: string | null;
|
|
5471
|
+
question: string | null;
|
|
5472
|
+
operator: any | null;
|
|
5473
|
+
answerBoolean: boolean | null;
|
|
5474
|
+
answerDecimal: number | null;
|
|
5475
|
+
answerInteger: number | null;
|
|
5476
|
+
answerDate: any | null;
|
|
5477
|
+
answerDateTime: any | null;
|
|
5478
|
+
answerTime: any | null;
|
|
5479
|
+
answerString: string | null;
|
|
5480
|
+
answerCoding: {
|
|
5481
|
+
system: any | null;
|
|
5482
|
+
code: any | null;
|
|
5483
|
+
display: string | null;
|
|
5484
|
+
} | null;
|
|
5485
|
+
answerQuantity: {
|
|
5486
|
+
value: number | null;
|
|
5487
|
+
unit: string | null;
|
|
5488
|
+
code: any | null;
|
|
5489
|
+
comparator: any | null;
|
|
5490
|
+
system: any | null;
|
|
5491
|
+
} | null;
|
|
5492
|
+
answerReference: {
|
|
5493
|
+
reference: string | null;
|
|
5494
|
+
type: any | null;
|
|
5495
|
+
display: string | null;
|
|
5496
|
+
} | null;
|
|
5497
|
+
} | null> | null;
|
|
5498
|
+
answerOption: Array<{
|
|
5499
|
+
id: string | null;
|
|
5500
|
+
valueInteger: number | null;
|
|
5501
|
+
valueDate: any | null;
|
|
5502
|
+
valueTime: any | null;
|
|
5503
|
+
valueString: string | null;
|
|
5504
|
+
initialSelected: boolean | null;
|
|
5505
|
+
valueCoding: {
|
|
5506
|
+
system: any | null;
|
|
5507
|
+
code: any | null;
|
|
5508
|
+
display: string | null;
|
|
5509
|
+
} | null;
|
|
5510
|
+
valueReference: {
|
|
5511
|
+
reference: string | null;
|
|
5512
|
+
type: any | null;
|
|
5513
|
+
display: string | null;
|
|
5514
|
+
extension: Array<{
|
|
5515
|
+
id: string | null;
|
|
5516
|
+
url: any | null;
|
|
5517
|
+
valueBoolean: boolean | null;
|
|
5518
|
+
valueInteger: number | null;
|
|
5519
|
+
valueString: string | null;
|
|
5520
|
+
valueDateTime: any | null;
|
|
5521
|
+
valueCode: any | null;
|
|
5522
|
+
valueUri: any | null;
|
|
5523
|
+
valueExpression: {
|
|
5524
|
+
description: string | null;
|
|
5525
|
+
name: string | null;
|
|
5526
|
+
language: any | null;
|
|
5527
|
+
expression: string | null;
|
|
5528
|
+
reference: any | null;
|
|
5529
|
+
} | null;
|
|
5530
|
+
valueCodeableConcept: {
|
|
5531
|
+
text: string | null;
|
|
5532
|
+
coding: Array<{
|
|
5533
|
+
id: string | null;
|
|
5534
|
+
system: any | null;
|
|
5535
|
+
code: any | null;
|
|
5536
|
+
display: string | null;
|
|
5537
|
+
} | null> | null;
|
|
5538
|
+
} | null;
|
|
5539
|
+
valueReference: {
|
|
5540
|
+
reference: string | null;
|
|
5541
|
+
type: any | null;
|
|
5542
|
+
display: string | null;
|
|
5543
|
+
} | null;
|
|
5544
|
+
} | null> | null;
|
|
5545
|
+
} | null;
|
|
5546
|
+
} | null> | null;
|
|
5547
|
+
initial: Array<{
|
|
5548
|
+
id: string | null;
|
|
5549
|
+
valueBoolean: boolean | null;
|
|
5550
|
+
valueDecimal: number | null;
|
|
5551
|
+
valueInteger: number | null;
|
|
5552
|
+
valueDate: any | null;
|
|
5553
|
+
valueDateTime: any | null;
|
|
5554
|
+
valueTime: any | null;
|
|
5555
|
+
valueString: string | null;
|
|
5556
|
+
valueUri: any | null;
|
|
5557
|
+
valueAttachment: {
|
|
5558
|
+
contentType: any | null;
|
|
5559
|
+
data: any | null;
|
|
5560
|
+
url: any | null;
|
|
5561
|
+
title: string | null;
|
|
5562
|
+
} | null;
|
|
5563
|
+
valueCoding: {
|
|
5564
|
+
system: any | null;
|
|
5565
|
+
code: any | null;
|
|
5566
|
+
display: string | null;
|
|
5567
|
+
} | null;
|
|
5568
|
+
valueQuantity: {
|
|
5569
|
+
value: number | null;
|
|
5570
|
+
unit: string | null;
|
|
5571
|
+
code: any | null;
|
|
5572
|
+
comparator: any | null;
|
|
5573
|
+
system: any | null;
|
|
5574
|
+
} | null;
|
|
5575
|
+
valueReference: {
|
|
5576
|
+
reference: string | null;
|
|
5577
|
+
type: any | null;
|
|
5578
|
+
display: string | null;
|
|
5579
|
+
extension: Array<{
|
|
5580
|
+
id: string | null;
|
|
5581
|
+
url: any | null;
|
|
5582
|
+
valueBoolean: boolean | null;
|
|
5583
|
+
valueInteger: number | null;
|
|
5584
|
+
valueString: string | null;
|
|
5585
|
+
valueDateTime: any | null;
|
|
5586
|
+
valueCode: any | null;
|
|
5587
|
+
valueUri: any | null;
|
|
5588
|
+
valueExpression: {
|
|
5589
|
+
description: string | null;
|
|
5590
|
+
name: string | null;
|
|
5591
|
+
language: any | null;
|
|
5592
|
+
expression: string | null;
|
|
5593
|
+
reference: any | null;
|
|
5594
|
+
} | null;
|
|
5595
|
+
valueCodeableConcept: {
|
|
5596
|
+
text: string | null;
|
|
5597
|
+
coding: Array<{
|
|
5598
|
+
id: string | null;
|
|
5599
|
+
system: any | null;
|
|
5600
|
+
code: any | null;
|
|
5601
|
+
display: string | null;
|
|
5602
|
+
} | null> | null;
|
|
5603
|
+
} | null;
|
|
5604
|
+
valueReference: {
|
|
5605
|
+
reference: string | null;
|
|
5606
|
+
type: any | null;
|
|
5607
|
+
display: string | null;
|
|
5608
|
+
} | null;
|
|
5609
|
+
} | null> | null;
|
|
5610
|
+
} | null;
|
|
5611
|
+
} | null> | null;
|
|
5612
|
+
} | null> | null;
|
|
5613
|
+
extension: Array<{
|
|
5614
|
+
id: string | null;
|
|
5615
|
+
url: any | null;
|
|
5616
|
+
valueBoolean: boolean | null;
|
|
5617
|
+
valueInteger: number | null;
|
|
5618
|
+
valueString: string | null;
|
|
5619
|
+
valueDateTime: any | null;
|
|
5620
|
+
valueCode: any | null;
|
|
5621
|
+
valueUri: any | null;
|
|
5622
|
+
valueExpression: {
|
|
5623
|
+
description: string | null;
|
|
5624
|
+
name: string | null;
|
|
5625
|
+
language: any | null;
|
|
5626
|
+
expression: string | null;
|
|
5627
|
+
reference: any | null;
|
|
5628
|
+
} | null;
|
|
5629
|
+
valueCodeableConcept: {
|
|
5630
|
+
text: string | null;
|
|
5631
|
+
coding: Array<{
|
|
5632
|
+
id: string | null;
|
|
5633
|
+
system: any | null;
|
|
5634
|
+
code: any | null;
|
|
5635
|
+
display: string | null;
|
|
5636
|
+
} | null> | null;
|
|
5637
|
+
} | null;
|
|
5638
|
+
valueReference: {
|
|
5639
|
+
reference: string | null;
|
|
5640
|
+
type: any | null;
|
|
5641
|
+
display: string | null;
|
|
5642
|
+
} | null;
|
|
5643
|
+
extension: Array<{
|
|
5644
|
+
id: string | null;
|
|
5645
|
+
url: any | null;
|
|
5646
|
+
valueBoolean: boolean | null;
|
|
5647
|
+
valueInteger: number | null;
|
|
5648
|
+
valueString: string | null;
|
|
5649
|
+
valueDateTime: any | null;
|
|
5650
|
+
valueCode: any | null;
|
|
5651
|
+
valueUri: any | null;
|
|
5652
|
+
valueExpression: {
|
|
5653
|
+
description: string | null;
|
|
5654
|
+
name: string | null;
|
|
5655
|
+
language: any | null;
|
|
5656
|
+
expression: string | null;
|
|
5657
|
+
reference: any | null;
|
|
5658
|
+
} | null;
|
|
5659
|
+
valueCodeableConcept: {
|
|
5660
|
+
text: string | null;
|
|
5661
|
+
coding: Array<{
|
|
5662
|
+
id: string | null;
|
|
5663
|
+
system: any | null;
|
|
5664
|
+
code: any | null;
|
|
5665
|
+
display: string | null;
|
|
5666
|
+
} | null> | null;
|
|
5667
|
+
} | null;
|
|
5668
|
+
valueReference: {
|
|
5669
|
+
reference: string | null;
|
|
5670
|
+
type: any | null;
|
|
5671
|
+
display: string | null;
|
|
5672
|
+
} | null;
|
|
5673
|
+
} | null> | null;
|
|
5674
|
+
} | null> | null;
|
|
5675
|
+
enableWhen: Array<{
|
|
5676
|
+
id: string | null;
|
|
5677
|
+
question: string | null;
|
|
5678
|
+
operator: any | null;
|
|
5679
|
+
answerBoolean: boolean | null;
|
|
5680
|
+
answerDecimal: number | null;
|
|
5681
|
+
answerInteger: number | null;
|
|
5682
|
+
answerDate: any | null;
|
|
5683
|
+
answerDateTime: any | null;
|
|
5684
|
+
answerTime: any | null;
|
|
5685
|
+
answerString: string | null;
|
|
5686
|
+
answerCoding: {
|
|
5687
|
+
system: any | null;
|
|
5688
|
+
code: any | null;
|
|
5689
|
+
display: string | null;
|
|
5690
|
+
} | null;
|
|
5691
|
+
answerQuantity: {
|
|
5692
|
+
value: number | null;
|
|
5693
|
+
unit: string | null;
|
|
5694
|
+
code: any | null;
|
|
5695
|
+
comparator: any | null;
|
|
5696
|
+
system: any | null;
|
|
5697
|
+
} | null;
|
|
5698
|
+
answerReference: {
|
|
5699
|
+
reference: string | null;
|
|
5700
|
+
type: any | null;
|
|
5701
|
+
display: string | null;
|
|
5702
|
+
} | null;
|
|
5703
|
+
} | null> | null;
|
|
5704
|
+
answerOption: Array<{
|
|
5705
|
+
id: string | null;
|
|
5706
|
+
valueInteger: number | null;
|
|
5707
|
+
valueDate: any | null;
|
|
5708
|
+
valueTime: any | null;
|
|
5709
|
+
valueString: string | null;
|
|
5710
|
+
initialSelected: boolean | null;
|
|
5711
|
+
valueCoding: {
|
|
5712
|
+
system: any | null;
|
|
5713
|
+
code: any | null;
|
|
5714
|
+
display: string | null;
|
|
5715
|
+
} | null;
|
|
5716
|
+
valueReference: {
|
|
5717
|
+
reference: string | null;
|
|
5718
|
+
type: any | null;
|
|
5719
|
+
display: string | null;
|
|
5720
|
+
extension: Array<{
|
|
5721
|
+
id: string | null;
|
|
5722
|
+
url: any | null;
|
|
5723
|
+
valueBoolean: boolean | null;
|
|
5724
|
+
valueInteger: number | null;
|
|
5725
|
+
valueString: string | null;
|
|
5726
|
+
valueDateTime: any | null;
|
|
5727
|
+
valueCode: any | null;
|
|
5728
|
+
valueUri: any | null;
|
|
5729
|
+
valueExpression: {
|
|
5730
|
+
description: string | null;
|
|
5731
|
+
name: string | null;
|
|
5732
|
+
language: any | null;
|
|
5733
|
+
expression: string | null;
|
|
5734
|
+
reference: any | null;
|
|
5735
|
+
} | null;
|
|
5736
|
+
valueCodeableConcept: {
|
|
5737
|
+
text: string | null;
|
|
5738
|
+
coding: Array<{
|
|
5739
|
+
id: string | null;
|
|
5740
|
+
system: any | null;
|
|
5741
|
+
code: any | null;
|
|
5742
|
+
display: string | null;
|
|
5743
|
+
} | null> | null;
|
|
5744
|
+
} | null;
|
|
5745
|
+
valueReference: {
|
|
5746
|
+
reference: string | null;
|
|
5747
|
+
type: any | null;
|
|
5748
|
+
display: string | null;
|
|
5749
|
+
} | null;
|
|
5750
|
+
} | null> | null;
|
|
5751
|
+
} | null;
|
|
5752
|
+
} | null> | null;
|
|
5753
|
+
initial: Array<{
|
|
5754
|
+
id: string | null;
|
|
5755
|
+
valueBoolean: boolean | null;
|
|
5756
|
+
valueDecimal: number | null;
|
|
5757
|
+
valueInteger: number | null;
|
|
5758
|
+
valueDate: any | null;
|
|
5759
|
+
valueDateTime: any | null;
|
|
5760
|
+
valueTime: any | null;
|
|
5761
|
+
valueString: string | null;
|
|
5762
|
+
valueUri: any | null;
|
|
5763
|
+
valueAttachment: {
|
|
5764
|
+
contentType: any | null;
|
|
5765
|
+
data: any | null;
|
|
5766
|
+
url: any | null;
|
|
5767
|
+
title: string | null;
|
|
5768
|
+
} | null;
|
|
5769
|
+
valueCoding: {
|
|
5770
|
+
system: any | null;
|
|
5771
|
+
code: any | null;
|
|
5772
|
+
display: string | null;
|
|
5773
|
+
} | null;
|
|
5774
|
+
valueQuantity: {
|
|
5775
|
+
value: number | null;
|
|
5776
|
+
unit: string | null;
|
|
5777
|
+
code: any | null;
|
|
5778
|
+
comparator: any | null;
|
|
5779
|
+
system: any | null;
|
|
5780
|
+
} | null;
|
|
5781
|
+
valueReference: {
|
|
5782
|
+
reference: string | null;
|
|
5783
|
+
type: any | null;
|
|
5784
|
+
display: string | null;
|
|
5785
|
+
extension: Array<{
|
|
5786
|
+
id: string | null;
|
|
5787
|
+
url: any | null;
|
|
5788
|
+
valueBoolean: boolean | null;
|
|
5789
|
+
valueInteger: number | null;
|
|
5790
|
+
valueString: string | null;
|
|
5791
|
+
valueDateTime: any | null;
|
|
5792
|
+
valueCode: any | null;
|
|
5793
|
+
valueUri: any | null;
|
|
5794
|
+
valueExpression: {
|
|
5795
|
+
description: string | null;
|
|
5796
|
+
name: string | null;
|
|
5797
|
+
language: any | null;
|
|
5798
|
+
expression: string | null;
|
|
5799
|
+
reference: any | null;
|
|
5800
|
+
} | null;
|
|
5801
|
+
valueCodeableConcept: {
|
|
5802
|
+
text: string | null;
|
|
5803
|
+
coding: Array<{
|
|
5804
|
+
id: string | null;
|
|
5805
|
+
system: any | null;
|
|
5806
|
+
code: any | null;
|
|
5807
|
+
display: string | null;
|
|
5808
|
+
} | null> | null;
|
|
5809
|
+
} | null;
|
|
5810
|
+
valueReference: {
|
|
5811
|
+
reference: string | null;
|
|
5812
|
+
type: any | null;
|
|
5813
|
+
display: string | null;
|
|
5814
|
+
} | null;
|
|
5815
|
+
} | null> | null;
|
|
5816
|
+
} | null;
|
|
5817
|
+
} | null> | null;
|
|
5818
|
+
} | null> | null;
|
|
5819
|
+
extension: Array<{
|
|
5820
|
+
id: string | null;
|
|
5821
|
+
url: any | null;
|
|
5822
|
+
valueBoolean: boolean | null;
|
|
5823
|
+
valueInteger: number | null;
|
|
5824
|
+
valueString: string | null;
|
|
5825
|
+
valueDateTime: any | null;
|
|
5826
|
+
valueCode: any | null;
|
|
5827
|
+
valueUri: any | null;
|
|
5828
|
+
valueExpression: {
|
|
5829
|
+
description: string | null;
|
|
5830
|
+
name: string | null;
|
|
5831
|
+
language: any | null;
|
|
5832
|
+
expression: string | null;
|
|
5833
|
+
reference: any | null;
|
|
5834
|
+
} | null;
|
|
5835
|
+
valueCodeableConcept: {
|
|
5836
|
+
text: string | null;
|
|
5837
|
+
coding: Array<{
|
|
5838
|
+
id: string | null;
|
|
5839
|
+
system: any | null;
|
|
5840
|
+
code: any | null;
|
|
5841
|
+
display: string | null;
|
|
5842
|
+
} | null> | null;
|
|
5843
|
+
} | null;
|
|
5844
|
+
valueReference: {
|
|
5845
|
+
reference: string | null;
|
|
5846
|
+
type: any | null;
|
|
5847
|
+
display: string | null;
|
|
5848
|
+
} | null;
|
|
5849
|
+
extension: Array<{
|
|
5850
|
+
id: string | null;
|
|
5851
|
+
url: any | null;
|
|
5852
|
+
valueBoolean: boolean | null;
|
|
5853
|
+
valueInteger: number | null;
|
|
5854
|
+
valueString: string | null;
|
|
5855
|
+
valueDateTime: any | null;
|
|
5856
|
+
valueCode: any | null;
|
|
5857
|
+
valueUri: any | null;
|
|
5858
|
+
valueExpression: {
|
|
5859
|
+
description: string | null;
|
|
5860
|
+
name: string | null;
|
|
5861
|
+
language: any | null;
|
|
5862
|
+
expression: string | null;
|
|
5863
|
+
reference: any | null;
|
|
5864
|
+
} | null;
|
|
5865
|
+
valueCodeableConcept: {
|
|
5866
|
+
text: string | null;
|
|
5867
|
+
coding: Array<{
|
|
5868
|
+
id: string | null;
|
|
5869
|
+
system: any | null;
|
|
5870
|
+
code: any | null;
|
|
5871
|
+
display: string | null;
|
|
5872
|
+
} | null> | null;
|
|
5873
|
+
} | null;
|
|
5874
|
+
valueReference: {
|
|
5875
|
+
reference: string | null;
|
|
5876
|
+
type: any | null;
|
|
5877
|
+
display: string | null;
|
|
5878
|
+
} | null;
|
|
5879
|
+
} | null> | null;
|
|
5880
|
+
} | null> | null;
|
|
5881
|
+
enableWhen: Array<{
|
|
5882
|
+
id: string | null;
|
|
5883
|
+
question: string | null;
|
|
5884
|
+
operator: any | null;
|
|
5885
|
+
answerBoolean: boolean | null;
|
|
5886
|
+
answerDecimal: number | null;
|
|
5887
|
+
answerInteger: number | null;
|
|
5888
|
+
answerDate: any | null;
|
|
5889
|
+
answerDateTime: any | null;
|
|
5890
|
+
answerTime: any | null;
|
|
5891
|
+
answerString: string | null;
|
|
5892
|
+
answerCoding: {
|
|
5893
|
+
system: any | null;
|
|
5894
|
+
code: any | null;
|
|
5895
|
+
display: string | null;
|
|
5896
|
+
} | null;
|
|
5897
|
+
answerQuantity: {
|
|
5898
|
+
value: number | null;
|
|
5899
|
+
unit: string | null;
|
|
5900
|
+
code: any | null;
|
|
5901
|
+
comparator: any | null;
|
|
5902
|
+
system: any | null;
|
|
5903
|
+
} | null;
|
|
5904
|
+
answerReference: {
|
|
5905
|
+
reference: string | null;
|
|
5906
|
+
type: any | null;
|
|
5907
|
+
display: string | null;
|
|
5908
|
+
} | null;
|
|
5909
|
+
} | null> | null;
|
|
5910
|
+
answerOption: Array<{
|
|
5911
|
+
id: string | null;
|
|
5912
|
+
valueInteger: number | null;
|
|
5913
|
+
valueDate: any | null;
|
|
5914
|
+
valueTime: any | null;
|
|
5915
|
+
valueString: string | null;
|
|
5916
|
+
initialSelected: boolean | null;
|
|
5917
|
+
valueCoding: {
|
|
5918
|
+
system: any | null;
|
|
5919
|
+
code: any | null;
|
|
5920
|
+
display: string | null;
|
|
5921
|
+
} | null;
|
|
5922
|
+
valueReference: {
|
|
5923
|
+
reference: string | null;
|
|
5924
|
+
type: any | null;
|
|
5925
|
+
display: string | null;
|
|
5926
|
+
extension: Array<{
|
|
5927
|
+
id: string | null;
|
|
5928
|
+
url: any | null;
|
|
5929
|
+
valueBoolean: boolean | null;
|
|
5930
|
+
valueInteger: number | null;
|
|
5931
|
+
valueString: string | null;
|
|
5932
|
+
valueDateTime: any | null;
|
|
5933
|
+
valueCode: any | null;
|
|
5934
|
+
valueUri: any | null;
|
|
5935
|
+
valueExpression: {
|
|
5936
|
+
description: string | null;
|
|
5937
|
+
name: string | null;
|
|
5938
|
+
language: any | null;
|
|
5939
|
+
expression: string | null;
|
|
5940
|
+
reference: any | null;
|
|
5941
|
+
} | null;
|
|
5942
|
+
valueCodeableConcept: {
|
|
5943
|
+
text: string | null;
|
|
5944
|
+
coding: Array<{
|
|
5945
|
+
id: string | null;
|
|
5946
|
+
system: any | null;
|
|
5947
|
+
code: any | null;
|
|
5948
|
+
display: string | null;
|
|
5949
|
+
} | null> | null;
|
|
5950
|
+
} | null;
|
|
5951
|
+
valueReference: {
|
|
5952
|
+
reference: string | null;
|
|
5953
|
+
type: any | null;
|
|
5954
|
+
display: string | null;
|
|
5955
|
+
} | null;
|
|
5956
|
+
} | null> | null;
|
|
5957
|
+
} | null;
|
|
5958
|
+
} | null> | null;
|
|
5959
|
+
initial: Array<{
|
|
5960
|
+
id: string | null;
|
|
5961
|
+
valueBoolean: boolean | null;
|
|
5962
|
+
valueDecimal: number | null;
|
|
5963
|
+
valueInteger: number | null;
|
|
5964
|
+
valueDate: any | null;
|
|
5965
|
+
valueDateTime: any | null;
|
|
5966
|
+
valueTime: any | null;
|
|
5967
|
+
valueString: string | null;
|
|
5968
|
+
valueUri: any | null;
|
|
5969
|
+
valueAttachment: {
|
|
5970
|
+
contentType: any | null;
|
|
5971
|
+
data: any | null;
|
|
5972
|
+
url: any | null;
|
|
5973
|
+
title: string | null;
|
|
5974
|
+
} | null;
|
|
5975
|
+
valueCoding: {
|
|
5976
|
+
system: any | null;
|
|
5977
|
+
code: any | null;
|
|
5978
|
+
display: string | null;
|
|
5979
|
+
} | null;
|
|
5980
|
+
valueQuantity: {
|
|
5981
|
+
value: number | null;
|
|
5982
|
+
unit: string | null;
|
|
5983
|
+
code: any | null;
|
|
5984
|
+
comparator: any | null;
|
|
5985
|
+
system: any | null;
|
|
5986
|
+
} | null;
|
|
5987
|
+
valueReference: {
|
|
5988
|
+
reference: string | null;
|
|
5989
|
+
type: any | null;
|
|
5990
|
+
display: string | null;
|
|
5991
|
+
extension: Array<{
|
|
5992
|
+
id: string | null;
|
|
5993
|
+
url: any | null;
|
|
5994
|
+
valueBoolean: boolean | null;
|
|
5995
|
+
valueInteger: number | null;
|
|
5996
|
+
valueString: string | null;
|
|
5997
|
+
valueDateTime: any | null;
|
|
5998
|
+
valueCode: any | null;
|
|
5999
|
+
valueUri: any | null;
|
|
6000
|
+
valueExpression: {
|
|
6001
|
+
description: string | null;
|
|
6002
|
+
name: string | null;
|
|
6003
|
+
language: any | null;
|
|
6004
|
+
expression: string | null;
|
|
6005
|
+
reference: any | null;
|
|
6006
|
+
} | null;
|
|
6007
|
+
valueCodeableConcept: {
|
|
6008
|
+
text: string | null;
|
|
6009
|
+
coding: Array<{
|
|
6010
|
+
id: string | null;
|
|
6011
|
+
system: any | null;
|
|
6012
|
+
code: any | null;
|
|
6013
|
+
display: string | null;
|
|
6014
|
+
} | null> | null;
|
|
6015
|
+
} | null;
|
|
6016
|
+
valueReference: {
|
|
6017
|
+
reference: string | null;
|
|
6018
|
+
type: any | null;
|
|
6019
|
+
display: string | null;
|
|
6020
|
+
} | null;
|
|
6021
|
+
} | null> | null;
|
|
6022
|
+
} | null;
|
|
6023
|
+
} | null> | null;
|
|
6024
|
+
} | null> | null;
|
|
6025
|
+
};
|
|
6026
|
+
export type QuestionnaireItemFieldsFragment = {
|
|
6027
|
+
id: string | null;
|
|
6028
|
+
linkId: string | null;
|
|
6029
|
+
prefix: string | null;
|
|
6030
|
+
text: string | null;
|
|
6031
|
+
type: any | null;
|
|
6032
|
+
enableBehavior: any | null;
|
|
6033
|
+
required: boolean | null;
|
|
6034
|
+
repeats: boolean | null;
|
|
6035
|
+
readOnly: boolean | null;
|
|
6036
|
+
maxLength: number | null;
|
|
6037
|
+
extension: Array<{
|
|
6038
|
+
id: string | null;
|
|
6039
|
+
url: any | null;
|
|
6040
|
+
valueBoolean: boolean | null;
|
|
6041
|
+
valueInteger: number | null;
|
|
6042
|
+
valueString: string | null;
|
|
6043
|
+
valueDateTime: any | null;
|
|
6044
|
+
valueCode: any | null;
|
|
6045
|
+
valueUri: any | null;
|
|
6046
|
+
valueExpression: {
|
|
6047
|
+
description: string | null;
|
|
6048
|
+
name: string | null;
|
|
6049
|
+
language: any | null;
|
|
6050
|
+
expression: string | null;
|
|
6051
|
+
reference: any | null;
|
|
6052
|
+
} | null;
|
|
6053
|
+
valueCodeableConcept: {
|
|
6054
|
+
text: string | null;
|
|
6055
|
+
coding: Array<{
|
|
6056
|
+
id: string | null;
|
|
6057
|
+
system: any | null;
|
|
6058
|
+
code: any | null;
|
|
6059
|
+
display: string | null;
|
|
6060
|
+
} | null> | null;
|
|
6061
|
+
} | null;
|
|
6062
|
+
valueReference: {
|
|
6063
|
+
reference: string | null;
|
|
6064
|
+
type: any | null;
|
|
6065
|
+
display: string | null;
|
|
6066
|
+
} | null;
|
|
6067
|
+
extension: Array<{
|
|
6068
|
+
id: string | null;
|
|
6069
|
+
url: any | null;
|
|
6070
|
+
valueBoolean: boolean | null;
|
|
6071
|
+
valueInteger: number | null;
|
|
6072
|
+
valueString: string | null;
|
|
6073
|
+
valueDateTime: any | null;
|
|
6074
|
+
valueCode: any | null;
|
|
6075
|
+
valueUri: any | null;
|
|
6076
|
+
valueExpression: {
|
|
6077
|
+
description: string | null;
|
|
6078
|
+
name: string | null;
|
|
6079
|
+
language: any | null;
|
|
6080
|
+
expression: string | null;
|
|
6081
|
+
reference: any | null;
|
|
6082
|
+
} | null;
|
|
6083
|
+
valueCodeableConcept: {
|
|
6084
|
+
text: string | null;
|
|
6085
|
+
coding: Array<{
|
|
6086
|
+
id: string | null;
|
|
6087
|
+
system: any | null;
|
|
6088
|
+
code: any | null;
|
|
6089
|
+
display: string | null;
|
|
6090
|
+
} | null> | null;
|
|
6091
|
+
} | null;
|
|
6092
|
+
valueReference: {
|
|
6093
|
+
reference: string | null;
|
|
6094
|
+
type: any | null;
|
|
6095
|
+
display: string | null;
|
|
6096
|
+
} | null;
|
|
6097
|
+
} | null> | null;
|
|
6098
|
+
} | null> | null;
|
|
6099
|
+
enableWhen: Array<{
|
|
6100
|
+
id: string | null;
|
|
6101
|
+
question: string | null;
|
|
6102
|
+
operator: any | null;
|
|
6103
|
+
answerBoolean: boolean | null;
|
|
6104
|
+
answerDecimal: number | null;
|
|
6105
|
+
answerInteger: number | null;
|
|
6106
|
+
answerDate: any | null;
|
|
6107
|
+
answerDateTime: any | null;
|
|
6108
|
+
answerTime: any | null;
|
|
6109
|
+
answerString: string | null;
|
|
6110
|
+
answerCoding: {
|
|
6111
|
+
system: any | null;
|
|
6112
|
+
code: any | null;
|
|
6113
|
+
display: string | null;
|
|
6114
|
+
} | null;
|
|
6115
|
+
answerQuantity: {
|
|
6116
|
+
value: number | null;
|
|
6117
|
+
unit: string | null;
|
|
6118
|
+
code: any | null;
|
|
6119
|
+
comparator: any | null;
|
|
6120
|
+
system: any | null;
|
|
6121
|
+
} | null;
|
|
6122
|
+
answerReference: {
|
|
6123
|
+
reference: string | null;
|
|
6124
|
+
type: any | null;
|
|
6125
|
+
display: string | null;
|
|
6126
|
+
} | null;
|
|
6127
|
+
} | null> | null;
|
|
6128
|
+
answerOption: Array<{
|
|
6129
|
+
id: string | null;
|
|
6130
|
+
valueInteger: number | null;
|
|
6131
|
+
valueDate: any | null;
|
|
6132
|
+
valueTime: any | null;
|
|
6133
|
+
valueString: string | null;
|
|
6134
|
+
initialSelected: boolean | null;
|
|
6135
|
+
valueCoding: {
|
|
6136
|
+
system: any | null;
|
|
6137
|
+
code: any | null;
|
|
6138
|
+
display: string | null;
|
|
6139
|
+
} | null;
|
|
6140
|
+
valueReference: {
|
|
6141
|
+
reference: string | null;
|
|
6142
|
+
type: any | null;
|
|
6143
|
+
display: string | null;
|
|
6144
|
+
extension: Array<{
|
|
6145
|
+
id: string | null;
|
|
6146
|
+
url: any | null;
|
|
6147
|
+
valueBoolean: boolean | null;
|
|
6148
|
+
valueInteger: number | null;
|
|
6149
|
+
valueString: string | null;
|
|
6150
|
+
valueDateTime: any | null;
|
|
6151
|
+
valueCode: any | null;
|
|
6152
|
+
valueUri: any | null;
|
|
6153
|
+
valueExpression: {
|
|
6154
|
+
description: string | null;
|
|
6155
|
+
name: string | null;
|
|
6156
|
+
language: any | null;
|
|
6157
|
+
expression: string | null;
|
|
6158
|
+
reference: any | null;
|
|
6159
|
+
} | null;
|
|
6160
|
+
valueCodeableConcept: {
|
|
6161
|
+
text: string | null;
|
|
6162
|
+
coding: Array<{
|
|
6163
|
+
id: string | null;
|
|
6164
|
+
system: any | null;
|
|
6165
|
+
code: any | null;
|
|
6166
|
+
display: string | null;
|
|
6167
|
+
} | null> | null;
|
|
6168
|
+
} | null;
|
|
6169
|
+
valueReference: {
|
|
6170
|
+
reference: string | null;
|
|
6171
|
+
type: any | null;
|
|
6172
|
+
display: string | null;
|
|
6173
|
+
} | null;
|
|
6174
|
+
} | null> | null;
|
|
6175
|
+
} | null;
|
|
6176
|
+
} | null> | null;
|
|
6177
|
+
initial: Array<{
|
|
6178
|
+
id: string | null;
|
|
6179
|
+
valueBoolean: boolean | null;
|
|
6180
|
+
valueDecimal: number | null;
|
|
6181
|
+
valueInteger: number | null;
|
|
6182
|
+
valueDate: any | null;
|
|
6183
|
+
valueDateTime: any | null;
|
|
6184
|
+
valueTime: any | null;
|
|
6185
|
+
valueString: string | null;
|
|
6186
|
+
valueUri: any | null;
|
|
6187
|
+
valueAttachment: {
|
|
6188
|
+
contentType: any | null;
|
|
6189
|
+
data: any | null;
|
|
6190
|
+
url: any | null;
|
|
6191
|
+
title: string | null;
|
|
6192
|
+
} | null;
|
|
6193
|
+
valueCoding: {
|
|
6194
|
+
system: any | null;
|
|
6195
|
+
code: any | null;
|
|
6196
|
+
display: string | null;
|
|
6197
|
+
} | null;
|
|
6198
|
+
valueQuantity: {
|
|
6199
|
+
value: number | null;
|
|
6200
|
+
unit: string | null;
|
|
6201
|
+
code: any | null;
|
|
6202
|
+
comparator: any | null;
|
|
6203
|
+
system: any | null;
|
|
6204
|
+
} | null;
|
|
6205
|
+
valueReference: {
|
|
6206
|
+
reference: string | null;
|
|
6207
|
+
type: any | null;
|
|
6208
|
+
display: string | null;
|
|
6209
|
+
extension: Array<{
|
|
6210
|
+
id: string | null;
|
|
6211
|
+
url: any | null;
|
|
6212
|
+
valueBoolean: boolean | null;
|
|
6213
|
+
valueInteger: number | null;
|
|
6214
|
+
valueString: string | null;
|
|
6215
|
+
valueDateTime: any | null;
|
|
6216
|
+
valueCode: any | null;
|
|
6217
|
+
valueUri: any | null;
|
|
6218
|
+
valueExpression: {
|
|
6219
|
+
description: string | null;
|
|
6220
|
+
name: string | null;
|
|
6221
|
+
language: any | null;
|
|
6222
|
+
expression: string | null;
|
|
6223
|
+
reference: any | null;
|
|
6224
|
+
} | null;
|
|
6225
|
+
valueCodeableConcept: {
|
|
6226
|
+
text: string | null;
|
|
6227
|
+
coding: Array<{
|
|
6228
|
+
id: string | null;
|
|
6229
|
+
system: any | null;
|
|
6230
|
+
code: any | null;
|
|
6231
|
+
display: string | null;
|
|
6232
|
+
} | null> | null;
|
|
6233
|
+
} | null;
|
|
6234
|
+
valueReference: {
|
|
6235
|
+
reference: string | null;
|
|
6236
|
+
type: any | null;
|
|
6237
|
+
display: string | null;
|
|
6238
|
+
} | null;
|
|
6239
|
+
} | null> | null;
|
|
6240
|
+
} | null;
|
|
6241
|
+
} | null> | null;
|
|
6242
|
+
};
|
|
6243
|
+
export type GetTasksQueryVariables = Types.Exact<{
|
|
6244
|
+
request: Types.InputMaybe<Types.TaskRequest>;
|
|
6245
|
+
}>;
|
|
6246
|
+
export type GetTasksQueryResults = {
|
|
6247
|
+
getTasks: {
|
|
6248
|
+
paging_info: {
|
|
6249
|
+
page_number: number;
|
|
6250
|
+
page_size: number;
|
|
6251
|
+
total_pages: number;
|
|
6252
|
+
total_items: number;
|
|
6253
|
+
} | null;
|
|
6254
|
+
resources: Array<{
|
|
6255
|
+
id: string;
|
|
6256
|
+
instantiatesCanonical: string | null;
|
|
6257
|
+
description: string | null;
|
|
6258
|
+
lastModified: any | null;
|
|
6259
|
+
meta: {
|
|
6260
|
+
versionId: string | null;
|
|
6261
|
+
lastUpdated: any | null;
|
|
6262
|
+
source: any | null;
|
|
6263
|
+
security: Array<{
|
|
6264
|
+
system: any | null;
|
|
6265
|
+
code: any | null;
|
|
6266
|
+
display: string | null;
|
|
6267
|
+
} | null> | null;
|
|
6268
|
+
tag: Array<{
|
|
6269
|
+
system: any | null;
|
|
6270
|
+
code: any | null;
|
|
6271
|
+
display: string | null;
|
|
6272
|
+
} | null> | null;
|
|
6273
|
+
} | null;
|
|
6274
|
+
identifier: Array<{
|
|
6275
|
+
id: string | null;
|
|
6276
|
+
system: any | null;
|
|
6277
|
+
value: string | null;
|
|
6278
|
+
} | null> | null;
|
|
6279
|
+
code: {
|
|
6280
|
+
text: string | null;
|
|
6281
|
+
coding: Array<{
|
|
6282
|
+
system: any | null;
|
|
6283
|
+
code: any | null;
|
|
6284
|
+
display: string | null;
|
|
6285
|
+
} | null> | null;
|
|
6286
|
+
} | null;
|
|
6287
|
+
executionPeriod: {
|
|
6288
|
+
start: any | null;
|
|
6289
|
+
end: any | null;
|
|
6290
|
+
} | null;
|
|
6291
|
+
status: {
|
|
6292
|
+
code: any | null;
|
|
6293
|
+
display: string | null;
|
|
6294
|
+
} | null;
|
|
6295
|
+
for: {
|
|
6296
|
+
reference: string | null;
|
|
6297
|
+
} | null;
|
|
6298
|
+
extension: Array<{
|
|
6299
|
+
id: string | null;
|
|
6300
|
+
url: string | null;
|
|
6301
|
+
valueString: string | null;
|
|
6302
|
+
valueInteger: number | null;
|
|
6303
|
+
valueCodeableConcept: {
|
|
6304
|
+
text: string | null;
|
|
6305
|
+
coding: Array<{
|
|
6306
|
+
system: any | null;
|
|
6307
|
+
code: any | null;
|
|
6308
|
+
display: string | null;
|
|
6309
|
+
} | null> | null;
|
|
6310
|
+
} | null;
|
|
6311
|
+
} | null> | null;
|
|
6312
|
+
}>;
|
|
6313
|
+
} | null;
|
|
6314
|
+
};
|
|
6315
|
+
export type TaskUpdateStatusMutationVariables = Types.Exact<{
|
|
6316
|
+
taskId: Types.Scalars['String']['input'];
|
|
6317
|
+
newStatus: Types.TaskStatus;
|
|
6318
|
+
}>;
|
|
6319
|
+
export type TaskUpdateStatusMutationResults = {
|
|
6320
|
+
taskUpdateStatus: {
|
|
6321
|
+
id: string | null;
|
|
4417
6322
|
status: Types.TaskStatus | null;
|
|
4418
6323
|
} | null;
|
|
4419
6324
|
};
|
|
@@ -13068,7 +14973,201 @@ export type GetMedicationRequestQueryResults = {
|
|
|
13068
14973
|
} | null> | null;
|
|
13069
14974
|
} | null> | null;
|
|
13070
14975
|
} | null;
|
|
13071
|
-
physicalType: {
|
|
14976
|
+
physicalType: {
|
|
14977
|
+
text: string | null;
|
|
14978
|
+
coding: Array<{
|
|
14979
|
+
system: any | null;
|
|
14980
|
+
code: any | null;
|
|
14981
|
+
display: string | null;
|
|
14982
|
+
} | null> | null;
|
|
14983
|
+
} | null;
|
|
14984
|
+
period: {
|
|
14985
|
+
start: any | null;
|
|
14986
|
+
end: any | null;
|
|
14987
|
+
} | null;
|
|
14988
|
+
} | null> | null;
|
|
14989
|
+
identifier: {
|
|
14990
|
+
id: string | null;
|
|
14991
|
+
system: any | null;
|
|
14992
|
+
value: string | null;
|
|
14993
|
+
type: {
|
|
14994
|
+
text: string | null;
|
|
14995
|
+
coding: Array<{
|
|
14996
|
+
system: any | null;
|
|
14997
|
+
code: any | null;
|
|
14998
|
+
display: string | null;
|
|
14999
|
+
} | null> | null;
|
|
15000
|
+
} | null;
|
|
15001
|
+
} | null;
|
|
15002
|
+
type: Array<{
|
|
15003
|
+
text: string | null;
|
|
15004
|
+
coding: Array<{
|
|
15005
|
+
system: any | null;
|
|
15006
|
+
code: any | null;
|
|
15007
|
+
display: string | null;
|
|
15008
|
+
} | null> | null;
|
|
15009
|
+
} | null> | null;
|
|
15010
|
+
status: {
|
|
15011
|
+
code: any | null;
|
|
15012
|
+
display: string | null;
|
|
15013
|
+
};
|
|
15014
|
+
participant: Array<{
|
|
15015
|
+
individual: {
|
|
15016
|
+
id: string | null;
|
|
15017
|
+
name: Array<{
|
|
15018
|
+
text: string | null;
|
|
15019
|
+
family: string | null;
|
|
15020
|
+
given: Array<string | null> | null;
|
|
15021
|
+
prefix: Array<string | null> | null;
|
|
15022
|
+
suffix: Array<string | null> | null;
|
|
15023
|
+
} | null> | null;
|
|
15024
|
+
identifier: Array<{
|
|
15025
|
+
id: string | null;
|
|
15026
|
+
system: any | null;
|
|
15027
|
+
value: string | null;
|
|
15028
|
+
type: {
|
|
15029
|
+
text: string | null;
|
|
15030
|
+
coding: Array<{
|
|
15031
|
+
system: any | null;
|
|
15032
|
+
code: any | null;
|
|
15033
|
+
display: string | null;
|
|
15034
|
+
} | null> | null;
|
|
15035
|
+
} | null;
|
|
15036
|
+
}> | null;
|
|
15037
|
+
} | null;
|
|
15038
|
+
type: {
|
|
15039
|
+
text: string | null;
|
|
15040
|
+
coding: Array<{
|
|
15041
|
+
system: any | null;
|
|
15042
|
+
code: any | null;
|
|
15043
|
+
display: string | null;
|
|
15044
|
+
} | null> | null;
|
|
15045
|
+
} | null;
|
|
15046
|
+
period: {
|
|
15047
|
+
start: any | null;
|
|
15048
|
+
end: any | null;
|
|
15049
|
+
} | null;
|
|
15050
|
+
} | null> | null;
|
|
15051
|
+
period: {
|
|
15052
|
+
start: any | null;
|
|
15053
|
+
end: any | null;
|
|
15054
|
+
} | null;
|
|
15055
|
+
reasonCode: Array<{
|
|
15056
|
+
text: string | null;
|
|
15057
|
+
coding: Array<{
|
|
15058
|
+
system: any | null;
|
|
15059
|
+
code: any | null;
|
|
15060
|
+
display: string | null;
|
|
15061
|
+
} | null> | null;
|
|
15062
|
+
} | null> | null;
|
|
15063
|
+
class: {
|
|
15064
|
+
system: any | null;
|
|
15065
|
+
code: any | null;
|
|
15066
|
+
display: string | null;
|
|
15067
|
+
} | null;
|
|
15068
|
+
location: {
|
|
15069
|
+
name: string | null;
|
|
15070
|
+
alias: Array<string | null> | null;
|
|
15071
|
+
description: string | null;
|
|
15072
|
+
distanceInMiles: number | null;
|
|
15073
|
+
identifier: Array<{
|
|
15074
|
+
id: string | null;
|
|
15075
|
+
system: any | null;
|
|
15076
|
+
value: string | null;
|
|
15077
|
+
type: {
|
|
15078
|
+
text: string | null;
|
|
15079
|
+
coding: Array<{
|
|
15080
|
+
system: any | null;
|
|
15081
|
+
code: any | null;
|
|
15082
|
+
display: string | null;
|
|
15083
|
+
} | null> | null;
|
|
15084
|
+
} | null;
|
|
15085
|
+
} | null> | null;
|
|
15086
|
+
address: {
|
|
15087
|
+
use: any | null;
|
|
15088
|
+
type: any | null;
|
|
15089
|
+
text: string | null;
|
|
15090
|
+
line: Array<string | null> | null;
|
|
15091
|
+
city: string | null;
|
|
15092
|
+
district: string | null;
|
|
15093
|
+
state: string | null;
|
|
15094
|
+
postalCode: string | null;
|
|
15095
|
+
country: string | null;
|
|
15096
|
+
} | null;
|
|
15097
|
+
position: {
|
|
15098
|
+
lat: number | null;
|
|
15099
|
+
lon: number | null;
|
|
15100
|
+
} | null;
|
|
15101
|
+
telecom: Array<{
|
|
15102
|
+
system: any | null;
|
|
15103
|
+
value: string | null;
|
|
15104
|
+
rank: number | null;
|
|
15105
|
+
} | null> | null;
|
|
15106
|
+
type: Array<{
|
|
15107
|
+
text: string | null;
|
|
15108
|
+
coding: Array<{
|
|
15109
|
+
system: any | null;
|
|
15110
|
+
code: any | null;
|
|
15111
|
+
display: string | null;
|
|
15112
|
+
} | null> | null;
|
|
15113
|
+
} | null> | null;
|
|
15114
|
+
} | null;
|
|
15115
|
+
serviceProvider: {
|
|
15116
|
+
name: string | null;
|
|
15117
|
+
endpoint: Array<{
|
|
15118
|
+
name: string | null;
|
|
15119
|
+
status: Types.EndpointStatus | null;
|
|
15120
|
+
address: string | null;
|
|
15121
|
+
connectionType: {
|
|
15122
|
+
system: any | null;
|
|
15123
|
+
code: any | null;
|
|
15124
|
+
display: string | null;
|
|
15125
|
+
} | null;
|
|
15126
|
+
} | null> | null;
|
|
15127
|
+
} | null;
|
|
15128
|
+
subject: {
|
|
15129
|
+
id: string;
|
|
15130
|
+
gender: any | null;
|
|
15131
|
+
birthDate: any | null;
|
|
15132
|
+
name: Array<{
|
|
15133
|
+
text: string | null;
|
|
15134
|
+
family: string | null;
|
|
15135
|
+
given: Array<string | null> | null;
|
|
15136
|
+
prefix: Array<string | null> | null;
|
|
15137
|
+
suffix: Array<string | null> | null;
|
|
15138
|
+
} | null> | null;
|
|
15139
|
+
communication: Array<{
|
|
15140
|
+
language: {
|
|
15141
|
+
text: string | null;
|
|
15142
|
+
coding: Array<{
|
|
15143
|
+
system: any | null;
|
|
15144
|
+
code: any | null;
|
|
15145
|
+
display: string | null;
|
|
15146
|
+
} | null> | null;
|
|
15147
|
+
} | null;
|
|
15148
|
+
} | null> | null;
|
|
15149
|
+
} | null;
|
|
15150
|
+
reasonReference: Array<{
|
|
15151
|
+
id: string;
|
|
15152
|
+
onsetDateTime: any | null;
|
|
15153
|
+
recordedDate: any | null;
|
|
15154
|
+
abatementDateTime: any | null;
|
|
15155
|
+
meta: {
|
|
15156
|
+
versionId: string | null;
|
|
15157
|
+
lastUpdated: any | null;
|
|
15158
|
+
source: any | null;
|
|
15159
|
+
security: Array<{
|
|
15160
|
+
system: any | null;
|
|
15161
|
+
code: any | null;
|
|
15162
|
+
display: string | null;
|
|
15163
|
+
} | null> | null;
|
|
15164
|
+
tag: Array<{
|
|
15165
|
+
system: any | null;
|
|
15166
|
+
code: any | null;
|
|
15167
|
+
display: string | null;
|
|
15168
|
+
} | null> | null;
|
|
15169
|
+
} | null;
|
|
15170
|
+
code: {
|
|
13072
15171
|
text: string | null;
|
|
13073
15172
|
coding: Array<{
|
|
13074
15173
|
system: any | null;
|
|
@@ -13076,16 +15175,7 @@ export type GetMedicationRequestQueryResults = {
|
|
|
13076
15175
|
display: string | null;
|
|
13077
15176
|
} | null> | null;
|
|
13078
15177
|
} | null;
|
|
13079
|
-
|
|
13080
|
-
start: any | null;
|
|
13081
|
-
end: any | null;
|
|
13082
|
-
} | null;
|
|
13083
|
-
} | null> | null;
|
|
13084
|
-
identifier: {
|
|
13085
|
-
id: string | null;
|
|
13086
|
-
system: any | null;
|
|
13087
|
-
value: string | null;
|
|
13088
|
-
type: {
|
|
15178
|
+
clinicalStatus: {
|
|
13089
15179
|
text: string | null;
|
|
13090
15180
|
coding: Array<{
|
|
13091
15181
|
system: any | null;
|
|
@@ -13093,22 +15183,17 @@ export type GetMedicationRequestQueryResults = {
|
|
|
13093
15183
|
display: string | null;
|
|
13094
15184
|
} | null> | null;
|
|
13095
15185
|
} | null;
|
|
13096
|
-
|
|
13097
|
-
|
|
13098
|
-
|
|
13099
|
-
|
|
13100
|
-
|
|
13101
|
-
|
|
13102
|
-
|
|
13103
|
-
|
|
13104
|
-
|
|
13105
|
-
|
|
13106
|
-
|
|
13107
|
-
display: string | null;
|
|
13108
|
-
};
|
|
13109
|
-
participant: Array<{
|
|
13110
|
-
individual: {
|
|
13111
|
-
id: string | null;
|
|
15186
|
+
recorder: {
|
|
15187
|
+
__typename: 'Patient';
|
|
15188
|
+
name: Array<{
|
|
15189
|
+
text: string | null;
|
|
15190
|
+
family: string | null;
|
|
15191
|
+
given: Array<string | null> | null;
|
|
15192
|
+
prefix: Array<string | null> | null;
|
|
15193
|
+
suffix: Array<string | null> | null;
|
|
15194
|
+
} | null> | null;
|
|
15195
|
+
} | {
|
|
15196
|
+
__typename: 'Practitioner';
|
|
13112
15197
|
name: Array<{
|
|
13113
15198
|
text: string | null;
|
|
13114
15199
|
family: string | null;
|
|
@@ -13130,7 +15215,28 @@ export type GetMedicationRequestQueryResults = {
|
|
|
13130
15215
|
} | null;
|
|
13131
15216
|
}> | null;
|
|
13132
15217
|
} | null;
|
|
13133
|
-
|
|
15218
|
+
note: Array<{
|
|
15219
|
+
authorString: string | null;
|
|
15220
|
+
time: any | null;
|
|
15221
|
+
text: string | null;
|
|
15222
|
+
} | null> | null;
|
|
15223
|
+
onsetPeriod: {
|
|
15224
|
+
start: any | null;
|
|
15225
|
+
end: any | null;
|
|
15226
|
+
} | null;
|
|
15227
|
+
abatementPeriod: {
|
|
15228
|
+
start: any | null;
|
|
15229
|
+
end: any | null;
|
|
15230
|
+
} | null;
|
|
15231
|
+
category: Array<{
|
|
15232
|
+
text: string | null;
|
|
15233
|
+
coding: Array<{
|
|
15234
|
+
system: any | null;
|
|
15235
|
+
code: any | null;
|
|
15236
|
+
display: string | null;
|
|
15237
|
+
} | null> | null;
|
|
15238
|
+
} | null> | null;
|
|
15239
|
+
severity: {
|
|
13134
15240
|
text: string | null;
|
|
13135
15241
|
coding: Array<{
|
|
13136
15242
|
system: any | null;
|
|
@@ -13138,130 +15244,186 @@ export type GetMedicationRequestQueryResults = {
|
|
|
13138
15244
|
display: string | null;
|
|
13139
15245
|
} | null> | null;
|
|
13140
15246
|
} | null;
|
|
13141
|
-
|
|
13142
|
-
|
|
13143
|
-
|
|
15247
|
+
verificationStatus: {
|
|
15248
|
+
text: string | null;
|
|
15249
|
+
coding: Array<{
|
|
15250
|
+
system: any | null;
|
|
15251
|
+
code: any | null;
|
|
15252
|
+
display: string | null;
|
|
15253
|
+
} | null> | null;
|
|
13144
15254
|
} | null;
|
|
15255
|
+
bodySite: Array<{
|
|
15256
|
+
text: string | null;
|
|
15257
|
+
coding: Array<{
|
|
15258
|
+
system: any | null;
|
|
15259
|
+
code: any | null;
|
|
15260
|
+
display: string | null;
|
|
15261
|
+
} | null> | null;
|
|
15262
|
+
} | null> | null;
|
|
13145
15263
|
} | null> | null;
|
|
13146
|
-
|
|
13147
|
-
|
|
13148
|
-
|
|
15264
|
+
hospitalization: {
|
|
15265
|
+
dischargeDisposition: {
|
|
15266
|
+
text: string | null;
|
|
15267
|
+
coding: Array<{
|
|
15268
|
+
system: any | null;
|
|
15269
|
+
code: any | null;
|
|
15270
|
+
display: string | null;
|
|
15271
|
+
} | null> | null;
|
|
15272
|
+
} | null;
|
|
13149
15273
|
} | null;
|
|
13150
|
-
|
|
15274
|
+
} | null;
|
|
15275
|
+
dosageInstruction: Array<{
|
|
15276
|
+
id: string | null;
|
|
15277
|
+
asNeededBoolean: boolean | null;
|
|
15278
|
+
patientInstruction: string | null;
|
|
15279
|
+
sequence: number | null;
|
|
15280
|
+
text: string | null;
|
|
15281
|
+
additionalInstruction: Array<{
|
|
13151
15282
|
text: string | null;
|
|
13152
15283
|
coding: Array<{
|
|
13153
15284
|
system: any | null;
|
|
13154
15285
|
code: any | null;
|
|
13155
15286
|
display: string | null;
|
|
13156
15287
|
} | null> | null;
|
|
13157
|
-
}
|
|
13158
|
-
|
|
15288
|
+
}> | null;
|
|
15289
|
+
asNeededCodeableConcept: {
|
|
15290
|
+
text: string | null;
|
|
15291
|
+
coding: Array<{
|
|
15292
|
+
system: any | null;
|
|
15293
|
+
code: any | null;
|
|
15294
|
+
display: string | null;
|
|
15295
|
+
} | null> | null;
|
|
15296
|
+
} | null;
|
|
15297
|
+
doseAndRate: Array<{
|
|
15298
|
+
id: string | null;
|
|
15299
|
+
type: {
|
|
15300
|
+
text: string | null;
|
|
15301
|
+
coding: Array<{
|
|
15302
|
+
system: any | null;
|
|
15303
|
+
code: any | null;
|
|
15304
|
+
display: string | null;
|
|
15305
|
+
} | null> | null;
|
|
15306
|
+
} | null;
|
|
15307
|
+
doseRange: {
|
|
15308
|
+
low: {
|
|
15309
|
+
value: number | null;
|
|
15310
|
+
unit: string | null;
|
|
15311
|
+
code: any | null;
|
|
15312
|
+
comparator: any | null;
|
|
15313
|
+
system: any | null;
|
|
15314
|
+
} | null;
|
|
15315
|
+
high: {
|
|
15316
|
+
value: number | null;
|
|
15317
|
+
unit: string | null;
|
|
15318
|
+
code: any | null;
|
|
15319
|
+
comparator: any | null;
|
|
15320
|
+
system: any | null;
|
|
15321
|
+
} | null;
|
|
15322
|
+
} | null;
|
|
15323
|
+
doseQuantity: {
|
|
15324
|
+
value: number | null;
|
|
15325
|
+
unit: string | null;
|
|
15326
|
+
code: any | null;
|
|
15327
|
+
comparator: any | null;
|
|
15328
|
+
system: any | null;
|
|
15329
|
+
} | null;
|
|
15330
|
+
rateQuantity: {
|
|
15331
|
+
value: number | null;
|
|
15332
|
+
unit: string | null;
|
|
15333
|
+
code: any | null;
|
|
15334
|
+
comparator: any | null;
|
|
15335
|
+
system: any | null;
|
|
15336
|
+
} | null;
|
|
15337
|
+
rateRange: {
|
|
15338
|
+
low: {
|
|
15339
|
+
value: number | null;
|
|
15340
|
+
unit: string | null;
|
|
15341
|
+
code: any | null;
|
|
15342
|
+
comparator: any | null;
|
|
15343
|
+
system: any | null;
|
|
15344
|
+
} | null;
|
|
15345
|
+
high: {
|
|
15346
|
+
value: number | null;
|
|
15347
|
+
unit: string | null;
|
|
15348
|
+
code: any | null;
|
|
15349
|
+
comparator: any | null;
|
|
15350
|
+
system: any | null;
|
|
15351
|
+
} | null;
|
|
15352
|
+
} | null;
|
|
15353
|
+
rateRatio: {
|
|
15354
|
+
numerator: {
|
|
15355
|
+
value: number | null;
|
|
15356
|
+
unit: string | null;
|
|
15357
|
+
code: any | null;
|
|
15358
|
+
comparator: any | null;
|
|
15359
|
+
system: any | null;
|
|
15360
|
+
} | null;
|
|
15361
|
+
denominator: {
|
|
15362
|
+
value: number | null;
|
|
15363
|
+
unit: string | null;
|
|
15364
|
+
code: any | null;
|
|
15365
|
+
comparator: any | null;
|
|
15366
|
+
system: any | null;
|
|
15367
|
+
} | null;
|
|
15368
|
+
} | null;
|
|
15369
|
+
}> | null;
|
|
15370
|
+
maxDosePerAdministration: {
|
|
15371
|
+
value: number | null;
|
|
15372
|
+
unit: string | null;
|
|
15373
|
+
code: any | null;
|
|
15374
|
+
comparator: any | null;
|
|
13159
15375
|
system: any | null;
|
|
15376
|
+
} | null;
|
|
15377
|
+
maxDosePerLifetime: {
|
|
15378
|
+
value: number | null;
|
|
15379
|
+
unit: string | null;
|
|
13160
15380
|
code: any | null;
|
|
13161
|
-
|
|
15381
|
+
comparator: any | null;
|
|
15382
|
+
system: any | null;
|
|
13162
15383
|
} | null;
|
|
13163
|
-
|
|
13164
|
-
|
|
13165
|
-
|
|
13166
|
-
|
|
13167
|
-
|
|
13168
|
-
|
|
13169
|
-
id: string | null;
|
|
15384
|
+
maxDosePerPeriod: {
|
|
15385
|
+
numerator: {
|
|
15386
|
+
value: number | null;
|
|
15387
|
+
unit: string | null;
|
|
15388
|
+
code: any | null;
|
|
15389
|
+
comparator: any | null;
|
|
13170
15390
|
system: any | null;
|
|
13171
|
-
value: string | null;
|
|
13172
|
-
type: {
|
|
13173
|
-
text: string | null;
|
|
13174
|
-
coding: Array<{
|
|
13175
|
-
system: any | null;
|
|
13176
|
-
code: any | null;
|
|
13177
|
-
display: string | null;
|
|
13178
|
-
} | null> | null;
|
|
13179
|
-
} | null;
|
|
13180
|
-
} | null> | null;
|
|
13181
|
-
address: {
|
|
13182
|
-
use: any | null;
|
|
13183
|
-
type: any | null;
|
|
13184
|
-
text: string | null;
|
|
13185
|
-
line: Array<string | null> | null;
|
|
13186
|
-
city: string | null;
|
|
13187
|
-
district: string | null;
|
|
13188
|
-
state: string | null;
|
|
13189
|
-
postalCode: string | null;
|
|
13190
|
-
country: string | null;
|
|
13191
15391
|
} | null;
|
|
13192
|
-
|
|
13193
|
-
|
|
13194
|
-
|
|
15392
|
+
denominator: {
|
|
15393
|
+
value: number | null;
|
|
15394
|
+
unit: string | null;
|
|
15395
|
+
code: any | null;
|
|
15396
|
+
comparator: any | null;
|
|
15397
|
+
system: any | null;
|
|
13195
15398
|
} | null;
|
|
13196
|
-
|
|
15399
|
+
} | null;
|
|
15400
|
+
method: {
|
|
15401
|
+
text: string | null;
|
|
15402
|
+
coding: Array<{
|
|
13197
15403
|
system: any | null;
|
|
13198
|
-
|
|
13199
|
-
|
|
13200
|
-
} | null> | null;
|
|
13201
|
-
type: Array<{
|
|
13202
|
-
text: string | null;
|
|
13203
|
-
coding: Array<{
|
|
13204
|
-
system: any | null;
|
|
13205
|
-
code: any | null;
|
|
13206
|
-
display: string | null;
|
|
13207
|
-
} | null> | null;
|
|
15404
|
+
code: any | null;
|
|
15405
|
+
display: string | null;
|
|
13208
15406
|
} | null> | null;
|
|
13209
15407
|
} | null;
|
|
13210
|
-
|
|
13211
|
-
|
|
13212
|
-
|
|
13213
|
-
|
|
13214
|
-
|
|
13215
|
-
|
|
13216
|
-
connectionType: {
|
|
13217
|
-
system: any | null;
|
|
13218
|
-
code: any | null;
|
|
13219
|
-
display: string | null;
|
|
13220
|
-
} | null;
|
|
15408
|
+
route: {
|
|
15409
|
+
text: string | null;
|
|
15410
|
+
coding: Array<{
|
|
15411
|
+
system: any | null;
|
|
15412
|
+
code: any | null;
|
|
15413
|
+
display: string | null;
|
|
13221
15414
|
} | null> | null;
|
|
13222
15415
|
} | null;
|
|
13223
|
-
|
|
13224
|
-
|
|
13225
|
-
|
|
13226
|
-
|
|
13227
|
-
|
|
13228
|
-
|
|
13229
|
-
family: string | null;
|
|
13230
|
-
given: Array<string | null> | null;
|
|
13231
|
-
prefix: Array<string | null> | null;
|
|
13232
|
-
suffix: Array<string | null> | null;
|
|
13233
|
-
} | null> | null;
|
|
13234
|
-
communication: Array<{
|
|
13235
|
-
language: {
|
|
13236
|
-
text: string | null;
|
|
13237
|
-
coding: Array<{
|
|
13238
|
-
system: any | null;
|
|
13239
|
-
code: any | null;
|
|
13240
|
-
display: string | null;
|
|
13241
|
-
} | null> | null;
|
|
13242
|
-
} | null;
|
|
15416
|
+
site: {
|
|
15417
|
+
text: string | null;
|
|
15418
|
+
coding: Array<{
|
|
15419
|
+
system: any | null;
|
|
15420
|
+
code: any | null;
|
|
15421
|
+
display: string | null;
|
|
13243
15422
|
} | null> | null;
|
|
13244
15423
|
} | null;
|
|
13245
|
-
|
|
13246
|
-
id: string;
|
|
13247
|
-
|
|
13248
|
-
recordedDate: any | null;
|
|
13249
|
-
abatementDateTime: any | null;
|
|
13250
|
-
meta: {
|
|
13251
|
-
versionId: string | null;
|
|
13252
|
-
lastUpdated: any | null;
|
|
13253
|
-
source: any | null;
|
|
13254
|
-
security: Array<{
|
|
13255
|
-
system: any | null;
|
|
13256
|
-
code: any | null;
|
|
13257
|
-
display: string | null;
|
|
13258
|
-
} | null> | null;
|
|
13259
|
-
tag: Array<{
|
|
13260
|
-
system: any | null;
|
|
13261
|
-
code: any | null;
|
|
13262
|
-
display: string | null;
|
|
13263
|
-
} | null> | null;
|
|
13264
|
-
} | null;
|
|
15424
|
+
timing: {
|
|
15425
|
+
id: string | null;
|
|
15426
|
+
event: Array<any> | null;
|
|
13265
15427
|
code: {
|
|
13266
15428
|
text: string | null;
|
|
13267
15429
|
coding: Array<{
|
|
@@ -13270,94 +15432,207 @@ export type GetMedicationRequestQueryResults = {
|
|
|
13270
15432
|
display: string | null;
|
|
13271
15433
|
} | null> | null;
|
|
13272
15434
|
} | null;
|
|
13273
|
-
|
|
13274
|
-
|
|
13275
|
-
|
|
13276
|
-
|
|
15435
|
+
repeat: {
|
|
15436
|
+
id: string | null;
|
|
15437
|
+
count: number | null;
|
|
15438
|
+
countMax: number | null;
|
|
15439
|
+
duration: number | null;
|
|
15440
|
+
durationMax: number | null;
|
|
15441
|
+
frequency: number | null;
|
|
15442
|
+
frequencyMax: number | null;
|
|
15443
|
+
offset: number | null;
|
|
15444
|
+
period: number | null;
|
|
15445
|
+
periodMax: number | null;
|
|
15446
|
+
timeOfDay: Array<string> | null;
|
|
15447
|
+
boundsDuration: {
|
|
15448
|
+
value: number | null;
|
|
15449
|
+
unit: string | null;
|
|
13277
15450
|
code: any | null;
|
|
13278
|
-
|
|
13279
|
-
} | null> | null;
|
|
13280
|
-
} | null;
|
|
13281
|
-
recorder: {
|
|
13282
|
-
__typename: 'Patient';
|
|
13283
|
-
name: Array<{
|
|
13284
|
-
text: string | null;
|
|
13285
|
-
family: string | null;
|
|
13286
|
-
given: Array<string | null> | null;
|
|
13287
|
-
prefix: Array<string | null> | null;
|
|
13288
|
-
suffix: Array<string | null> | null;
|
|
13289
|
-
} | null> | null;
|
|
13290
|
-
} | {
|
|
13291
|
-
__typename: 'Practitioner';
|
|
13292
|
-
name: Array<{
|
|
13293
|
-
text: string | null;
|
|
13294
|
-
family: string | null;
|
|
13295
|
-
given: Array<string | null> | null;
|
|
13296
|
-
prefix: Array<string | null> | null;
|
|
13297
|
-
suffix: Array<string | null> | null;
|
|
13298
|
-
} | null> | null;
|
|
13299
|
-
identifier: Array<{
|
|
13300
|
-
id: string | null;
|
|
15451
|
+
comparator: any | null;
|
|
13301
15452
|
system: any | null;
|
|
13302
|
-
|
|
13303
|
-
|
|
13304
|
-
|
|
13305
|
-
|
|
13306
|
-
|
|
13307
|
-
|
|
13308
|
-
|
|
13309
|
-
|
|
15453
|
+
} | null;
|
|
15454
|
+
boundsPeriod: {
|
|
15455
|
+
start: any | null;
|
|
15456
|
+
end: any | null;
|
|
15457
|
+
} | null;
|
|
15458
|
+
boundsRange: {
|
|
15459
|
+
low: {
|
|
15460
|
+
value: number | null;
|
|
15461
|
+
unit: string | null;
|
|
15462
|
+
code: any | null;
|
|
15463
|
+
comparator: any | null;
|
|
15464
|
+
system: any | null;
|
|
13310
15465
|
} | null;
|
|
13311
|
-
|
|
13312
|
-
|
|
13313
|
-
|
|
13314
|
-
|
|
13315
|
-
|
|
13316
|
-
|
|
13317
|
-
|
|
13318
|
-
|
|
13319
|
-
|
|
13320
|
-
end: any | null;
|
|
13321
|
-
} | null;
|
|
13322
|
-
abatementPeriod: {
|
|
13323
|
-
start: any | null;
|
|
13324
|
-
end: any | null;
|
|
13325
|
-
} | null;
|
|
13326
|
-
category: Array<{
|
|
13327
|
-
text: string | null;
|
|
13328
|
-
coding: Array<{
|
|
13329
|
-
system: any | null;
|
|
15466
|
+
high: {
|
|
15467
|
+
value: number | null;
|
|
15468
|
+
unit: string | null;
|
|
15469
|
+
code: any | null;
|
|
15470
|
+
comparator: any | null;
|
|
15471
|
+
system: any | null;
|
|
15472
|
+
} | null;
|
|
15473
|
+
} | null;
|
|
15474
|
+
dayOfWeek: Array<{
|
|
13330
15475
|
code: any | null;
|
|
13331
15476
|
display: string | null;
|
|
13332
|
-
}
|
|
13333
|
-
|
|
13334
|
-
severity: {
|
|
13335
|
-
text: string | null;
|
|
13336
|
-
coding: Array<{
|
|
13337
|
-
system: any | null;
|
|
15477
|
+
}> | null;
|
|
15478
|
+
durationUnit: {
|
|
13338
15479
|
code: any | null;
|
|
13339
15480
|
display: string | null;
|
|
13340
|
-
} | null
|
|
13341
|
-
|
|
13342
|
-
verificationStatus: {
|
|
13343
|
-
text: string | null;
|
|
13344
|
-
coding: Array<{
|
|
13345
|
-
system: any | null;
|
|
15481
|
+
} | null;
|
|
15482
|
+
periodUnit: {
|
|
13346
15483
|
code: any | null;
|
|
13347
15484
|
display: string | null;
|
|
13348
|
-
} | null
|
|
13349
|
-
|
|
13350
|
-
bodySite: Array<{
|
|
13351
|
-
text: string | null;
|
|
13352
|
-
coding: Array<{
|
|
13353
|
-
system: any | null;
|
|
15485
|
+
} | null;
|
|
15486
|
+
when: Array<{
|
|
13354
15487
|
code: any | null;
|
|
13355
15488
|
display: string | null;
|
|
13356
|
-
}
|
|
13357
|
-
} | null
|
|
15489
|
+
}> | null;
|
|
15490
|
+
} | null;
|
|
15491
|
+
} | null;
|
|
15492
|
+
} | null> | null;
|
|
15493
|
+
dispenseRequest: {
|
|
15494
|
+
id: string | null;
|
|
15495
|
+
numberOfRepeatsAllowed: number | null;
|
|
15496
|
+
dispenseInterval: {
|
|
15497
|
+
value: number | null;
|
|
15498
|
+
unit: string | null;
|
|
15499
|
+
code: any | null;
|
|
15500
|
+
comparator: any | null;
|
|
15501
|
+
system: any | null;
|
|
15502
|
+
} | null;
|
|
15503
|
+
expectedSupplyDuration: {
|
|
15504
|
+
value: number | null;
|
|
15505
|
+
unit: string | null;
|
|
15506
|
+
code: any | null;
|
|
15507
|
+
comparator: any | null;
|
|
15508
|
+
system: any | null;
|
|
15509
|
+
} | null;
|
|
15510
|
+
initialFill: {
|
|
15511
|
+
duration: {
|
|
15512
|
+
value: number | null;
|
|
15513
|
+
unit: string | null;
|
|
15514
|
+
code: any | null;
|
|
15515
|
+
comparator: any | null;
|
|
15516
|
+
system: any | null;
|
|
15517
|
+
} | null;
|
|
15518
|
+
quantity: {
|
|
15519
|
+
value: number | null;
|
|
15520
|
+
unit: string | null;
|
|
15521
|
+
code: any | null;
|
|
15522
|
+
comparator: any | null;
|
|
15523
|
+
system: any | null;
|
|
15524
|
+
} | null;
|
|
15525
|
+
} | null;
|
|
15526
|
+
performer: {
|
|
15527
|
+
name: string | null;
|
|
15528
|
+
} | null;
|
|
15529
|
+
validityPeriod: {
|
|
15530
|
+
start: any | null;
|
|
15531
|
+
end: any | null;
|
|
15532
|
+
} | null;
|
|
15533
|
+
quantity: {
|
|
15534
|
+
value: number | null;
|
|
15535
|
+
unit: string | null;
|
|
15536
|
+
code: any | null;
|
|
15537
|
+
comparator: any | null;
|
|
15538
|
+
system: any | null;
|
|
15539
|
+
} | null;
|
|
15540
|
+
} | null;
|
|
15541
|
+
reasonCode: Array<{
|
|
15542
|
+
text: string | null;
|
|
15543
|
+
coding: Array<{
|
|
15544
|
+
system: any | null;
|
|
15545
|
+
code: any | null;
|
|
15546
|
+
display: string | null;
|
|
13358
15547
|
} | null> | null;
|
|
13359
|
-
|
|
13360
|
-
|
|
15548
|
+
}> | null;
|
|
15549
|
+
courseOfTherapyType: {
|
|
15550
|
+
text: string | null;
|
|
15551
|
+
coding: Array<{
|
|
15552
|
+
system: any | null;
|
|
15553
|
+
code: any | null;
|
|
15554
|
+
display: string | null;
|
|
15555
|
+
} | null> | null;
|
|
15556
|
+
} | null;
|
|
15557
|
+
}>;
|
|
15558
|
+
};
|
|
15559
|
+
};
|
|
15560
|
+
export type GetMedicationStatementsQueryVariables = Types.Exact<{
|
|
15561
|
+
request: Types.InputMaybe<Types.MedicationStatementQueryRequest>;
|
|
15562
|
+
}>;
|
|
15563
|
+
export type GetMedicationStatementsQueryResults = {
|
|
15564
|
+
getMedicationStatements: {
|
|
15565
|
+
paging_info: {
|
|
15566
|
+
page_number: number;
|
|
15567
|
+
page_size: number;
|
|
15568
|
+
total_pages: number;
|
|
15569
|
+
total_items: number;
|
|
15570
|
+
} | null;
|
|
15571
|
+
resources: Array<{
|
|
15572
|
+
id: string;
|
|
15573
|
+
authoredOn: any | null;
|
|
15574
|
+
source: Array<string> | null;
|
|
15575
|
+
meta: {
|
|
15576
|
+
versionId: string | null;
|
|
15577
|
+
lastUpdated: any | null;
|
|
15578
|
+
source: any | null;
|
|
15579
|
+
security: Array<{
|
|
15580
|
+
system: any | null;
|
|
15581
|
+
code: any | null;
|
|
15582
|
+
display: string | null;
|
|
15583
|
+
} | null> | null;
|
|
15584
|
+
tag: Array<{
|
|
15585
|
+
system: any | null;
|
|
15586
|
+
code: any | null;
|
|
15587
|
+
display: string | null;
|
|
15588
|
+
} | null> | null;
|
|
15589
|
+
} | null;
|
|
15590
|
+
status: {
|
|
15591
|
+
code: any | null;
|
|
15592
|
+
display: string | null;
|
|
15593
|
+
} | null;
|
|
15594
|
+
medication: {
|
|
15595
|
+
text: string | null;
|
|
15596
|
+
coding: Array<{
|
|
15597
|
+
system: any | null;
|
|
15598
|
+
code: any | null;
|
|
15599
|
+
display: string | null;
|
|
15600
|
+
} | null> | null;
|
|
15601
|
+
} | null;
|
|
15602
|
+
reasonCode: Array<{
|
|
15603
|
+
text: string | null;
|
|
15604
|
+
coding: Array<{
|
|
15605
|
+
system: any | null;
|
|
15606
|
+
code: any | null;
|
|
15607
|
+
display: string | null;
|
|
15608
|
+
} | null> | null;
|
|
15609
|
+
}> | null;
|
|
15610
|
+
requester: {
|
|
15611
|
+
__typename: 'Organization';
|
|
15612
|
+
organizationName: string | null;
|
|
15613
|
+
} | {
|
|
15614
|
+
__typename: 'Patient';
|
|
15615
|
+
name: Array<{
|
|
15616
|
+
text: string | null;
|
|
15617
|
+
family: string | null;
|
|
15618
|
+
given: Array<string | null> | null;
|
|
15619
|
+
prefix: Array<string | null> | null;
|
|
15620
|
+
suffix: Array<string | null> | null;
|
|
15621
|
+
} | null> | null;
|
|
15622
|
+
} | {
|
|
15623
|
+
__typename: 'Practitioner';
|
|
15624
|
+
name: Array<{
|
|
15625
|
+
text: string | null;
|
|
15626
|
+
family: string | null;
|
|
15627
|
+
given: Array<string | null> | null;
|
|
15628
|
+
prefix: Array<string | null> | null;
|
|
15629
|
+
suffix: Array<string | null> | null;
|
|
15630
|
+
} | null> | null;
|
|
15631
|
+
identifier: Array<{
|
|
15632
|
+
id: string | null;
|
|
15633
|
+
system: any | null;
|
|
15634
|
+
value: string | null;
|
|
15635
|
+
type: {
|
|
13361
15636
|
text: string | null;
|
|
13362
15637
|
coding: Array<{
|
|
13363
15638
|
system: any | null;
|
|
@@ -13365,7 +15640,11 @@ export type GetMedicationRequestQueryResults = {
|
|
|
13365
15640
|
display: string | null;
|
|
13366
15641
|
} | null> | null;
|
|
13367
15642
|
} | null;
|
|
13368
|
-
} | null;
|
|
15643
|
+
}> | null;
|
|
15644
|
+
} | null;
|
|
15645
|
+
effectiveDate: {
|
|
15646
|
+
start: any | null;
|
|
15647
|
+
end: any | null;
|
|
13369
15648
|
} | null;
|
|
13370
15649
|
dosageInstruction: Array<{
|
|
13371
15650
|
id: string | null;
|
|
@@ -13508,254 +15787,631 @@ export type GetMedicationRequestQueryResults = {
|
|
|
13508
15787
|
display: string | null;
|
|
13509
15788
|
} | null> | null;
|
|
13510
15789
|
} | null;
|
|
13511
|
-
site: {
|
|
15790
|
+
site: {
|
|
15791
|
+
text: string | null;
|
|
15792
|
+
coding: Array<{
|
|
15793
|
+
system: any | null;
|
|
15794
|
+
code: any | null;
|
|
15795
|
+
display: string | null;
|
|
15796
|
+
} | null> | null;
|
|
15797
|
+
} | null;
|
|
15798
|
+
timing: {
|
|
15799
|
+
id: string | null;
|
|
15800
|
+
event: Array<any> | null;
|
|
15801
|
+
code: {
|
|
15802
|
+
text: string | null;
|
|
15803
|
+
coding: Array<{
|
|
15804
|
+
system: any | null;
|
|
15805
|
+
code: any | null;
|
|
15806
|
+
display: string | null;
|
|
15807
|
+
} | null> | null;
|
|
15808
|
+
} | null;
|
|
15809
|
+
repeat: {
|
|
15810
|
+
id: string | null;
|
|
15811
|
+
count: number | null;
|
|
15812
|
+
countMax: number | null;
|
|
15813
|
+
duration: number | null;
|
|
15814
|
+
durationMax: number | null;
|
|
15815
|
+
frequency: number | null;
|
|
15816
|
+
frequencyMax: number | null;
|
|
15817
|
+
offset: number | null;
|
|
15818
|
+
period: number | null;
|
|
15819
|
+
periodMax: number | null;
|
|
15820
|
+
timeOfDay: Array<string> | null;
|
|
15821
|
+
boundsDuration: {
|
|
15822
|
+
value: number | null;
|
|
15823
|
+
unit: string | null;
|
|
15824
|
+
code: any | null;
|
|
15825
|
+
comparator: any | null;
|
|
15826
|
+
system: any | null;
|
|
15827
|
+
} | null;
|
|
15828
|
+
boundsPeriod: {
|
|
15829
|
+
start: any | null;
|
|
15830
|
+
end: any | null;
|
|
15831
|
+
} | null;
|
|
15832
|
+
boundsRange: {
|
|
15833
|
+
low: {
|
|
15834
|
+
value: number | null;
|
|
15835
|
+
unit: string | null;
|
|
15836
|
+
code: any | null;
|
|
15837
|
+
comparator: any | null;
|
|
15838
|
+
system: any | null;
|
|
15839
|
+
} | null;
|
|
15840
|
+
high: {
|
|
15841
|
+
value: number | null;
|
|
15842
|
+
unit: string | null;
|
|
15843
|
+
code: any | null;
|
|
15844
|
+
comparator: any | null;
|
|
15845
|
+
system: any | null;
|
|
15846
|
+
} | null;
|
|
15847
|
+
} | null;
|
|
15848
|
+
dayOfWeek: Array<{
|
|
15849
|
+
code: any | null;
|
|
15850
|
+
display: string | null;
|
|
15851
|
+
}> | null;
|
|
15852
|
+
durationUnit: {
|
|
15853
|
+
code: any | null;
|
|
15854
|
+
display: string | null;
|
|
15855
|
+
} | null;
|
|
15856
|
+
periodUnit: {
|
|
15857
|
+
code: any | null;
|
|
15858
|
+
display: string | null;
|
|
15859
|
+
} | null;
|
|
15860
|
+
when: Array<{
|
|
15861
|
+
code: any | null;
|
|
15862
|
+
display: string | null;
|
|
15863
|
+
}> | null;
|
|
15864
|
+
} | null;
|
|
15865
|
+
} | null;
|
|
15866
|
+
}> | null;
|
|
15867
|
+
dispenseRequest: {
|
|
15868
|
+
id: string | null;
|
|
15869
|
+
numberOfRepeatsAllowed: number | null;
|
|
15870
|
+
dispenseInterval: {
|
|
15871
|
+
value: number | null;
|
|
15872
|
+
unit: string | null;
|
|
15873
|
+
code: any | null;
|
|
15874
|
+
comparator: any | null;
|
|
15875
|
+
system: any | null;
|
|
15876
|
+
} | null;
|
|
15877
|
+
expectedSupplyDuration: {
|
|
15878
|
+
value: number | null;
|
|
15879
|
+
unit: string | null;
|
|
15880
|
+
code: any | null;
|
|
15881
|
+
comparator: any | null;
|
|
15882
|
+
system: any | null;
|
|
15883
|
+
} | null;
|
|
15884
|
+
initialFill: {
|
|
15885
|
+
duration: {
|
|
15886
|
+
value: number | null;
|
|
15887
|
+
unit: string | null;
|
|
15888
|
+
code: any | null;
|
|
15889
|
+
comparator: any | null;
|
|
15890
|
+
system: any | null;
|
|
15891
|
+
} | null;
|
|
15892
|
+
quantity: {
|
|
15893
|
+
value: number | null;
|
|
15894
|
+
unit: string | null;
|
|
15895
|
+
code: any | null;
|
|
15896
|
+
comparator: any | null;
|
|
15897
|
+
system: any | null;
|
|
15898
|
+
} | null;
|
|
15899
|
+
} | null;
|
|
15900
|
+
performer: {
|
|
15901
|
+
name: string | null;
|
|
15902
|
+
} | null;
|
|
15903
|
+
validityPeriod: {
|
|
15904
|
+
start: any | null;
|
|
15905
|
+
end: any | null;
|
|
15906
|
+
} | null;
|
|
15907
|
+
quantity: {
|
|
15908
|
+
value: number | null;
|
|
15909
|
+
unit: string | null;
|
|
15910
|
+
code: any | null;
|
|
15911
|
+
comparator: any | null;
|
|
15912
|
+
system: any | null;
|
|
15913
|
+
} | null;
|
|
15914
|
+
} | null;
|
|
15915
|
+
derivedFrom: Array<{
|
|
15916
|
+
reference: string | null;
|
|
15917
|
+
type: any | null;
|
|
15918
|
+
}> | null;
|
|
15919
|
+
}>;
|
|
15920
|
+
};
|
|
15921
|
+
};
|
|
15922
|
+
export type AppointmentsQueryVariables = Types.Exact<{
|
|
15923
|
+
source: Types.InputMaybe<Types.SearchString>;
|
|
15924
|
+
id: Types.InputMaybe<Types.SearchString>;
|
|
15925
|
+
count: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
15926
|
+
getPagesOffset: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
15927
|
+
date: Types.InputMaybe<Types.SearchDate>;
|
|
15928
|
+
supportingInformation: Types.InputMaybe<Types.SearchReference>;
|
|
15929
|
+
sort: Types.InputMaybe<Array<Types.InputMaybe<Types.Scalars['String']['input']>> | Types.InputMaybe<Types.Scalars['String']['input']>>;
|
|
15930
|
+
status: Types.InputMaybe<Types.SearchToken>;
|
|
15931
|
+
}>;
|
|
15932
|
+
export type AppointmentsQueryResults = {
|
|
15933
|
+
appointments: {
|
|
15934
|
+
entry: Array<{
|
|
15935
|
+
resource: {
|
|
15936
|
+
id: string;
|
|
15937
|
+
status: any | null;
|
|
15938
|
+
start: any | null;
|
|
15939
|
+
end: any | null;
|
|
15940
|
+
cancelationReason: {
|
|
15941
|
+
text: string | null;
|
|
15942
|
+
coding: Array<{
|
|
15943
|
+
system: any | null;
|
|
15944
|
+
code: any | null;
|
|
15945
|
+
display: string | null;
|
|
15946
|
+
} | null> | null;
|
|
15947
|
+
} | null;
|
|
15948
|
+
serviceType: Array<{
|
|
13512
15949
|
text: string | null;
|
|
13513
15950
|
coding: Array<{
|
|
13514
15951
|
system: any | null;
|
|
13515
15952
|
code: any | null;
|
|
13516
15953
|
display: string | null;
|
|
13517
15954
|
} | null> | null;
|
|
13518
|
-
} | null;
|
|
13519
|
-
|
|
15955
|
+
} | null> | null;
|
|
15956
|
+
supportingInformation: Array<{
|
|
13520
15957
|
id: string | null;
|
|
13521
|
-
|
|
13522
|
-
|
|
15958
|
+
reference: string | null;
|
|
15959
|
+
display: string | null;
|
|
15960
|
+
} | null> | null;
|
|
15961
|
+
participant: Array<{
|
|
15962
|
+
id: string | null;
|
|
15963
|
+
type: Array<{
|
|
13523
15964
|
text: string | null;
|
|
13524
15965
|
coding: Array<{
|
|
13525
15966
|
system: any | null;
|
|
13526
15967
|
code: any | null;
|
|
13527
15968
|
display: string | null;
|
|
13528
15969
|
} | null> | null;
|
|
13529
|
-
} | null;
|
|
13530
|
-
|
|
13531
|
-
|
|
13532
|
-
|
|
13533
|
-
|
|
13534
|
-
|
|
13535
|
-
|
|
13536
|
-
|
|
13537
|
-
|
|
13538
|
-
offset: number | null;
|
|
13539
|
-
period: number | null;
|
|
13540
|
-
periodMax: number | null;
|
|
13541
|
-
timeOfDay: Array<string> | null;
|
|
13542
|
-
boundsDuration: {
|
|
13543
|
-
value: number | null;
|
|
13544
|
-
unit: string | null;
|
|
13545
|
-
code: any | null;
|
|
13546
|
-
comparator: any | null;
|
|
13547
|
-
system: any | null;
|
|
13548
|
-
} | null;
|
|
13549
|
-
boundsPeriod: {
|
|
13550
|
-
start: any | null;
|
|
13551
|
-
end: any | null;
|
|
13552
|
-
} | null;
|
|
13553
|
-
boundsRange: {
|
|
13554
|
-
low: {
|
|
13555
|
-
value: number | null;
|
|
13556
|
-
unit: string | null;
|
|
13557
|
-
code: any | null;
|
|
13558
|
-
comparator: any | null;
|
|
15970
|
+
} | null> | null;
|
|
15971
|
+
actor: {
|
|
15972
|
+
reference: string | null;
|
|
15973
|
+
resource: {
|
|
15974
|
+
id: string;
|
|
15975
|
+
name: string | null;
|
|
15976
|
+
description: string | null;
|
|
15977
|
+
identifier: Array<{
|
|
15978
|
+
id: string | null;
|
|
13559
15979
|
system: any | null;
|
|
13560
|
-
|
|
13561
|
-
|
|
13562
|
-
|
|
13563
|
-
|
|
13564
|
-
|
|
13565
|
-
|
|
15980
|
+
value: string | null;
|
|
15981
|
+
type: {
|
|
15982
|
+
text: string | null;
|
|
15983
|
+
coding: Array<{
|
|
15984
|
+
system: any | null;
|
|
15985
|
+
code: any | null;
|
|
15986
|
+
display: string | null;
|
|
15987
|
+
} | null> | null;
|
|
15988
|
+
} | null;
|
|
15989
|
+
} | null> | null;
|
|
15990
|
+
telecom: Array<{
|
|
15991
|
+
id: string | null;
|
|
13566
15992
|
system: any | null;
|
|
15993
|
+
value: string | null;
|
|
15994
|
+
} | null> | null;
|
|
15995
|
+
address: {
|
|
15996
|
+
use: any | null;
|
|
15997
|
+
type: any | null;
|
|
15998
|
+
text: string | null;
|
|
15999
|
+
line: Array<string | null> | null;
|
|
16000
|
+
city: string | null;
|
|
16001
|
+
district: string | null;
|
|
16002
|
+
state: string | null;
|
|
16003
|
+
postalCode: string | null;
|
|
16004
|
+
country: string | null;
|
|
16005
|
+
} | null;
|
|
16006
|
+
position: {
|
|
16007
|
+
latitude: number | null;
|
|
16008
|
+
longitude: number | null;
|
|
16009
|
+
} | null;
|
|
16010
|
+
managingOrganization: {
|
|
16011
|
+
reference: string | null;
|
|
13567
16012
|
} | null;
|
|
16013
|
+
} | {} | null;
|
|
16014
|
+
} | null;
|
|
16015
|
+
} | null> | null;
|
|
16016
|
+
} | null;
|
|
16017
|
+
} | null> | null;
|
|
16018
|
+
} | null;
|
|
16019
|
+
};
|
|
16020
|
+
export type CancelAppointmentMutationVariables = Types.Exact<{
|
|
16021
|
+
appointment: Types.UpdateAppointmentInput;
|
|
16022
|
+
}>;
|
|
16023
|
+
export type CancelAppointmentMutationResults = {
|
|
16024
|
+
updateAppointment: {
|
|
16025
|
+
id: string;
|
|
16026
|
+
status: any | null;
|
|
16027
|
+
};
|
|
16028
|
+
};
|
|
16029
|
+
export type CancelationReasonsQueryVariables = Types.Exact<{
|
|
16030
|
+
organization: Types.SearchReference;
|
|
16031
|
+
}>;
|
|
16032
|
+
export type CancelationReasonsQueryResults = {
|
|
16033
|
+
cancelationReasons: {
|
|
16034
|
+
id: string;
|
|
16035
|
+
title: string | null;
|
|
16036
|
+
url: any | null;
|
|
16037
|
+
concept: Array<{
|
|
16038
|
+
code: any | null;
|
|
16039
|
+
display: string | null;
|
|
16040
|
+
} | null> | null;
|
|
16041
|
+
};
|
|
16042
|
+
};
|
|
16043
|
+
export type AuthenticateQueryVariables = Types.Exact<{
|
|
16044
|
+
[key: string]: never;
|
|
16045
|
+
}>;
|
|
16046
|
+
export type AuthenticateQueryResults = {
|
|
16047
|
+
getToken: {
|
|
16048
|
+
accessToken: {
|
|
16049
|
+
jwtToken: string;
|
|
16050
|
+
};
|
|
16051
|
+
idToken: {
|
|
16052
|
+
jwtToken: string;
|
|
16053
|
+
};
|
|
16054
|
+
refreshToken: {
|
|
16055
|
+
token: string;
|
|
16056
|
+
};
|
|
16057
|
+
};
|
|
16058
|
+
};
|
|
16059
|
+
export type CreateGuestAccessTokenMutationVariables = Types.Exact<{
|
|
16060
|
+
clientKey: Types.Scalars['String']['input'];
|
|
16061
|
+
}>;
|
|
16062
|
+
export type CreateGuestAccessTokenMutationResults = {
|
|
16063
|
+
createGuestAccessToken: {
|
|
16064
|
+
accessToken: string;
|
|
16065
|
+
refreshToken: string;
|
|
16066
|
+
identityToken: string;
|
|
16067
|
+
tokenType: string;
|
|
16068
|
+
issuedAt: number;
|
|
16069
|
+
expiresIn: number;
|
|
16070
|
+
};
|
|
16071
|
+
};
|
|
16072
|
+
export type ExchangeAuthCodeMutationVariables = Types.Exact<{
|
|
16073
|
+
authCode: Types.Scalars['String']['input'];
|
|
16074
|
+
}>;
|
|
16075
|
+
export type ExchangeAuthCodeMutationResults = {
|
|
16076
|
+
exchangeAuthCode: {
|
|
16077
|
+
accessToken: {
|
|
16078
|
+
jwtToken: string;
|
|
16079
|
+
};
|
|
16080
|
+
idToken: {
|
|
16081
|
+
jwtToken: string;
|
|
16082
|
+
};
|
|
16083
|
+
refreshToken: {
|
|
16084
|
+
token: string;
|
|
16085
|
+
};
|
|
16086
|
+
};
|
|
16087
|
+
};
|
|
16088
|
+
export type InitializeQueryVariables = Types.Exact<{
|
|
16089
|
+
clientKey: Types.Scalars['String']['input'];
|
|
16090
|
+
}>;
|
|
16091
|
+
export type InitializeQueryResults = {
|
|
16092
|
+
initSdk: {
|
|
16093
|
+
logLevel: Types.LogLevel | null;
|
|
16094
|
+
httpClient: {
|
|
16095
|
+
requestTimeout: number | null;
|
|
16096
|
+
retry: {
|
|
16097
|
+
interval: number;
|
|
16098
|
+
attempts: number;
|
|
16099
|
+
} | null;
|
|
16100
|
+
};
|
|
16101
|
+
graphQLClient: {
|
|
16102
|
+
url: string;
|
|
16103
|
+
authUrl: string;
|
|
16104
|
+
fetchPolicy: string;
|
|
16105
|
+
cache: {
|
|
16106
|
+
maxSizeBytes: number;
|
|
16107
|
+
};
|
|
16108
|
+
};
|
|
16109
|
+
telemetry: {
|
|
16110
|
+
enabled: boolean | null;
|
|
16111
|
+
collectorUrl: string;
|
|
16112
|
+
};
|
|
16113
|
+
};
|
|
16114
|
+
};
|
|
16115
|
+
export type LoginQueryVariables = Types.Exact<{
|
|
16116
|
+
email: Types.Scalars['String']['input'];
|
|
16117
|
+
password: Types.Scalars['String']['input'];
|
|
16118
|
+
}>;
|
|
16119
|
+
export type LoginQueryResults = {
|
|
16120
|
+
login: {
|
|
16121
|
+
accessToken: {
|
|
16122
|
+
jwtToken: string;
|
|
16123
|
+
};
|
|
16124
|
+
idToken: {
|
|
16125
|
+
jwtToken: string;
|
|
16126
|
+
};
|
|
16127
|
+
refreshToken: {
|
|
16128
|
+
token: string;
|
|
16129
|
+
};
|
|
16130
|
+
};
|
|
16131
|
+
};
|
|
16132
|
+
export type RefreshTokensQueryVariables = Types.Exact<{
|
|
16133
|
+
[key: string]: never;
|
|
16134
|
+
}>;
|
|
16135
|
+
export type RefreshTokensQueryResults = {
|
|
16136
|
+
refresh: {
|
|
16137
|
+
accessToken: string;
|
|
16138
|
+
idToken: string;
|
|
16139
|
+
};
|
|
16140
|
+
};
|
|
16141
|
+
export type NextQuestionMutationVariables = Types.Exact<{
|
|
16142
|
+
questionnaireResponse: Types.QuestionnaireResponseInput;
|
|
16143
|
+
}>;
|
|
16144
|
+
export type NextQuestionMutationResults = {
|
|
16145
|
+
nextQuestion: {
|
|
16146
|
+
resourceType: string | null;
|
|
16147
|
+
id: string;
|
|
16148
|
+
questionnaire: any | null;
|
|
16149
|
+
status: any | null;
|
|
16150
|
+
meta: {
|
|
16151
|
+
versionId: string | null;
|
|
16152
|
+
lastUpdated: any | null;
|
|
16153
|
+
source: any | null;
|
|
16154
|
+
security: Array<{
|
|
16155
|
+
system: any | null;
|
|
16156
|
+
code: any | null;
|
|
16157
|
+
display: string | null;
|
|
16158
|
+
} | null> | null;
|
|
16159
|
+
tag: Array<{
|
|
16160
|
+
system: any | null;
|
|
16161
|
+
code: any | null;
|
|
16162
|
+
display: string | null;
|
|
16163
|
+
} | null> | null;
|
|
16164
|
+
} | null;
|
|
16165
|
+
identifier: {
|
|
16166
|
+
id: string | null;
|
|
16167
|
+
system: any | null;
|
|
16168
|
+
value: string | null;
|
|
16169
|
+
type: {
|
|
16170
|
+
text: string | null;
|
|
16171
|
+
coding: Array<{
|
|
16172
|
+
system: any | null;
|
|
16173
|
+
code: any | null;
|
|
16174
|
+
display: string | null;
|
|
16175
|
+
} | null> | null;
|
|
16176
|
+
} | null;
|
|
16177
|
+
} | null;
|
|
16178
|
+
item: Array<{
|
|
16179
|
+
id: string | null;
|
|
16180
|
+
linkId: string | null;
|
|
16181
|
+
text: string | null;
|
|
16182
|
+
item: Array<{
|
|
16183
|
+
id: string | null;
|
|
16184
|
+
linkId: string | null;
|
|
16185
|
+
text: string | null;
|
|
16186
|
+
item: Array<{
|
|
16187
|
+
id: string | null;
|
|
16188
|
+
linkId: string | null;
|
|
16189
|
+
text: string | null;
|
|
16190
|
+
answer: Array<{
|
|
16191
|
+
id: string | null;
|
|
16192
|
+
valueBoolean: boolean | null;
|
|
16193
|
+
valueDecimal: number | null;
|
|
16194
|
+
valueInteger: number | null;
|
|
16195
|
+
valueDate: any | null;
|
|
16196
|
+
valueDateTime: any | null;
|
|
16197
|
+
valueTime: any | null;
|
|
16198
|
+
valueString: string | null;
|
|
16199
|
+
valueUri: any | null;
|
|
16200
|
+
valueAttachment: {
|
|
16201
|
+
contentType: any | null;
|
|
16202
|
+
data: any | null;
|
|
16203
|
+
url: any | null;
|
|
16204
|
+
title: string | null;
|
|
13568
16205
|
} | null;
|
|
13569
|
-
|
|
13570
|
-
|
|
13571
|
-
display: string | null;
|
|
13572
|
-
}> | null;
|
|
13573
|
-
durationUnit: {
|
|
16206
|
+
valueCoding: {
|
|
16207
|
+
system: any | null;
|
|
13574
16208
|
code: any | null;
|
|
13575
16209
|
display: string | null;
|
|
13576
16210
|
} | null;
|
|
13577
|
-
|
|
16211
|
+
valueQuantity: {
|
|
16212
|
+
value: number | null;
|
|
16213
|
+
unit: string | null;
|
|
13578
16214
|
code: any | null;
|
|
13579
|
-
|
|
16215
|
+
comparator: any | null;
|
|
16216
|
+
system: any | null;
|
|
13580
16217
|
} | null;
|
|
13581
|
-
|
|
13582
|
-
|
|
16218
|
+
valueReference: {
|
|
16219
|
+
reference: string | null;
|
|
16220
|
+
type: any | null;
|
|
13583
16221
|
display: string | null;
|
|
13584
|
-
|
|
13585
|
-
|
|
13586
|
-
|
|
13587
|
-
|
|
13588
|
-
|
|
13589
|
-
|
|
13590
|
-
|
|
13591
|
-
|
|
13592
|
-
|
|
13593
|
-
|
|
13594
|
-
|
|
13595
|
-
|
|
13596
|
-
|
|
13597
|
-
|
|
13598
|
-
|
|
13599
|
-
|
|
13600
|
-
|
|
13601
|
-
|
|
13602
|
-
|
|
13603
|
-
|
|
13604
|
-
|
|
13605
|
-
|
|
13606
|
-
|
|
13607
|
-
|
|
13608
|
-
|
|
13609
|
-
|
|
13610
|
-
|
|
16222
|
+
extension: Array<{
|
|
16223
|
+
id: string | null;
|
|
16224
|
+
url: any | null;
|
|
16225
|
+
valueBoolean: boolean | null;
|
|
16226
|
+
valueInteger: number | null;
|
|
16227
|
+
valueString: string | null;
|
|
16228
|
+
valueDateTime: any | null;
|
|
16229
|
+
valueCode: any | null;
|
|
16230
|
+
valueUri: any | null;
|
|
16231
|
+
valueExpression: {
|
|
16232
|
+
description: string | null;
|
|
16233
|
+
name: string | null;
|
|
16234
|
+
language: any | null;
|
|
16235
|
+
expression: string | null;
|
|
16236
|
+
reference: any | null;
|
|
16237
|
+
} | null;
|
|
16238
|
+
valueCodeableConcept: {
|
|
16239
|
+
text: string | null;
|
|
16240
|
+
coding: Array<{
|
|
16241
|
+
id: string | null;
|
|
16242
|
+
system: any | null;
|
|
16243
|
+
code: any | null;
|
|
16244
|
+
display: string | null;
|
|
16245
|
+
} | null> | null;
|
|
16246
|
+
} | null;
|
|
16247
|
+
valueReference: {
|
|
16248
|
+
reference: string | null;
|
|
16249
|
+
type: any | null;
|
|
16250
|
+
display: string | null;
|
|
16251
|
+
} | null;
|
|
16252
|
+
} | null> | null;
|
|
16253
|
+
} | null;
|
|
16254
|
+
} | null> | null;
|
|
16255
|
+
} | null> | null;
|
|
16256
|
+
answer: Array<{
|
|
16257
|
+
id: string | null;
|
|
16258
|
+
valueBoolean: boolean | null;
|
|
16259
|
+
valueDecimal: number | null;
|
|
16260
|
+
valueInteger: number | null;
|
|
16261
|
+
valueDate: any | null;
|
|
16262
|
+
valueDateTime: any | null;
|
|
16263
|
+
valueTime: any | null;
|
|
16264
|
+
valueString: string | null;
|
|
16265
|
+
valueUri: any | null;
|
|
16266
|
+
valueAttachment: {
|
|
16267
|
+
contentType: any | null;
|
|
16268
|
+
data: any | null;
|
|
16269
|
+
url: any | null;
|
|
16270
|
+
title: string | null;
|
|
16271
|
+
} | null;
|
|
16272
|
+
valueCoding: {
|
|
13611
16273
|
system: any | null;
|
|
16274
|
+
code: any | null;
|
|
16275
|
+
display: string | null;
|
|
13612
16276
|
} | null;
|
|
13613
|
-
|
|
16277
|
+
valueQuantity: {
|
|
13614
16278
|
value: number | null;
|
|
13615
16279
|
unit: string | null;
|
|
13616
16280
|
code: any | null;
|
|
13617
16281
|
comparator: any | null;
|
|
13618
16282
|
system: any | null;
|
|
13619
16283
|
} | null;
|
|
16284
|
+
valueReference: {
|
|
16285
|
+
reference: string | null;
|
|
16286
|
+
type: any | null;
|
|
16287
|
+
display: string | null;
|
|
16288
|
+
extension: Array<{
|
|
16289
|
+
id: string | null;
|
|
16290
|
+
url: any | null;
|
|
16291
|
+
valueBoolean: boolean | null;
|
|
16292
|
+
valueInteger: number | null;
|
|
16293
|
+
valueString: string | null;
|
|
16294
|
+
valueDateTime: any | null;
|
|
16295
|
+
valueCode: any | null;
|
|
16296
|
+
valueUri: any | null;
|
|
16297
|
+
valueExpression: {
|
|
16298
|
+
description: string | null;
|
|
16299
|
+
name: string | null;
|
|
16300
|
+
language: any | null;
|
|
16301
|
+
expression: string | null;
|
|
16302
|
+
reference: any | null;
|
|
16303
|
+
} | null;
|
|
16304
|
+
valueCodeableConcept: {
|
|
16305
|
+
text: string | null;
|
|
16306
|
+
coding: Array<{
|
|
16307
|
+
id: string | null;
|
|
16308
|
+
system: any | null;
|
|
16309
|
+
code: any | null;
|
|
16310
|
+
display: string | null;
|
|
16311
|
+
} | null> | null;
|
|
16312
|
+
} | null;
|
|
16313
|
+
valueReference: {
|
|
16314
|
+
reference: string | null;
|
|
16315
|
+
type: any | null;
|
|
16316
|
+
display: string | null;
|
|
16317
|
+
} | null;
|
|
16318
|
+
} | null> | null;
|
|
16319
|
+
} | null;
|
|
16320
|
+
} | null> | null;
|
|
16321
|
+
} | null> | null;
|
|
16322
|
+
answer: Array<{
|
|
16323
|
+
id: string | null;
|
|
16324
|
+
valueBoolean: boolean | null;
|
|
16325
|
+
valueDecimal: number | null;
|
|
16326
|
+
valueInteger: number | null;
|
|
16327
|
+
valueDate: any | null;
|
|
16328
|
+
valueDateTime: any | null;
|
|
16329
|
+
valueTime: any | null;
|
|
16330
|
+
valueString: string | null;
|
|
16331
|
+
valueUri: any | null;
|
|
16332
|
+
valueAttachment: {
|
|
16333
|
+
contentType: any | null;
|
|
16334
|
+
data: any | null;
|
|
16335
|
+
url: any | null;
|
|
16336
|
+
title: string | null;
|
|
13620
16337
|
} | null;
|
|
13621
|
-
|
|
13622
|
-
|
|
13623
|
-
|
|
13624
|
-
|
|
13625
|
-
start: any | null;
|
|
13626
|
-
end: any | null;
|
|
16338
|
+
valueCoding: {
|
|
16339
|
+
system: any | null;
|
|
16340
|
+
code: any | null;
|
|
16341
|
+
display: string | null;
|
|
13627
16342
|
} | null;
|
|
13628
|
-
|
|
16343
|
+
valueQuantity: {
|
|
13629
16344
|
value: number | null;
|
|
13630
16345
|
unit: string | null;
|
|
13631
16346
|
code: any | null;
|
|
13632
16347
|
comparator: any | null;
|
|
13633
16348
|
system: any | null;
|
|
13634
16349
|
} | null;
|
|
13635
|
-
|
|
13636
|
-
|
|
13637
|
-
|
|
13638
|
-
coding: Array<{
|
|
13639
|
-
system: any | null;
|
|
13640
|
-
code: any | null;
|
|
13641
|
-
display: string | null;
|
|
13642
|
-
} | null> | null;
|
|
13643
|
-
}> | null;
|
|
13644
|
-
courseOfTherapyType: {
|
|
13645
|
-
text: string | null;
|
|
13646
|
-
coding: Array<{
|
|
13647
|
-
system: any | null;
|
|
13648
|
-
code: any | null;
|
|
16350
|
+
valueReference: {
|
|
16351
|
+
reference: string | null;
|
|
16352
|
+
type: any | null;
|
|
13649
16353
|
display: string | null;
|
|
13650
|
-
|
|
13651
|
-
|
|
13652
|
-
|
|
13653
|
-
|
|
13654
|
-
|
|
13655
|
-
|
|
13656
|
-
|
|
13657
|
-
|
|
13658
|
-
|
|
13659
|
-
|
|
13660
|
-
|
|
13661
|
-
|
|
13662
|
-
|
|
13663
|
-
|
|
13664
|
-
|
|
13665
|
-
|
|
13666
|
-
|
|
16354
|
+
extension: Array<{
|
|
16355
|
+
id: string | null;
|
|
16356
|
+
url: any | null;
|
|
16357
|
+
valueBoolean: boolean | null;
|
|
16358
|
+
valueInteger: number | null;
|
|
16359
|
+
valueString: string | null;
|
|
16360
|
+
valueDateTime: any | null;
|
|
16361
|
+
valueCode: any | null;
|
|
16362
|
+
valueUri: any | null;
|
|
16363
|
+
valueExpression: {
|
|
16364
|
+
description: string | null;
|
|
16365
|
+
name: string | null;
|
|
16366
|
+
language: any | null;
|
|
16367
|
+
expression: string | null;
|
|
16368
|
+
reference: any | null;
|
|
16369
|
+
} | null;
|
|
16370
|
+
valueCodeableConcept: {
|
|
16371
|
+
text: string | null;
|
|
16372
|
+
coding: Array<{
|
|
16373
|
+
id: string | null;
|
|
16374
|
+
system: any | null;
|
|
16375
|
+
code: any | null;
|
|
16376
|
+
display: string | null;
|
|
16377
|
+
} | null> | null;
|
|
16378
|
+
} | null;
|
|
16379
|
+
valueReference: {
|
|
16380
|
+
reference: string | null;
|
|
16381
|
+
type: any | null;
|
|
16382
|
+
display: string | null;
|
|
16383
|
+
} | null;
|
|
16384
|
+
} | null> | null;
|
|
16385
|
+
} | null;
|
|
16386
|
+
} | null> | null;
|
|
16387
|
+
} | null> | null;
|
|
16388
|
+
contained: Array<{
|
|
16389
|
+
resourceType: string | null;
|
|
13667
16390
|
id: string;
|
|
13668
|
-
|
|
13669
|
-
|
|
16391
|
+
name: string | null;
|
|
16392
|
+
title: string | null;
|
|
16393
|
+
status: any | null;
|
|
16394
|
+
description: any | null;
|
|
13670
16395
|
meta: {
|
|
13671
16396
|
versionId: string | null;
|
|
13672
16397
|
lastUpdated: any | null;
|
|
13673
16398
|
source: any | null;
|
|
13674
|
-
security: Array<{
|
|
13675
|
-
system: any | null;
|
|
13676
|
-
code: any | null;
|
|
13677
|
-
display: string | null;
|
|
13678
|
-
} | null> | null;
|
|
13679
|
-
tag: Array<{
|
|
13680
|
-
system: any | null;
|
|
13681
|
-
code: any | null;
|
|
13682
|
-
display: string | null;
|
|
13683
|
-
} | null> | null;
|
|
13684
|
-
} | null;
|
|
13685
|
-
status: {
|
|
13686
|
-
code: any | null;
|
|
13687
|
-
display: string | null;
|
|
13688
|
-
} | null;
|
|
13689
|
-
medication: {
|
|
13690
|
-
text: string | null;
|
|
13691
|
-
coding: Array<{
|
|
13692
|
-
system: any | null;
|
|
13693
|
-
code: any | null;
|
|
13694
|
-
display: string | null;
|
|
13695
|
-
} | null> | null;
|
|
13696
|
-
} | null;
|
|
13697
|
-
reasonCode: Array<{
|
|
13698
|
-
text: string | null;
|
|
13699
|
-
coding: Array<{
|
|
13700
|
-
system: any | null;
|
|
13701
|
-
code: any | null;
|
|
13702
|
-
display: string | null;
|
|
13703
|
-
} | null> | null;
|
|
13704
|
-
}> | null;
|
|
13705
|
-
requester: {
|
|
13706
|
-
__typename: 'Organization';
|
|
13707
|
-
organizationName: string | null;
|
|
13708
|
-
} | {
|
|
13709
|
-
__typename: 'Patient';
|
|
13710
|
-
name: Array<{
|
|
13711
|
-
text: string | null;
|
|
13712
|
-
family: string | null;
|
|
13713
|
-
given: Array<string | null> | null;
|
|
13714
|
-
prefix: Array<string | null> | null;
|
|
13715
|
-
suffix: Array<string | null> | null;
|
|
13716
|
-
} | null> | null;
|
|
13717
|
-
} | {
|
|
13718
|
-
__typename: 'Practitioner';
|
|
13719
|
-
name: Array<{
|
|
13720
|
-
text: string | null;
|
|
13721
|
-
family: string | null;
|
|
13722
|
-
given: Array<string | null> | null;
|
|
13723
|
-
prefix: Array<string | null> | null;
|
|
13724
|
-
suffix: Array<string | null> | null;
|
|
13725
|
-
} | null> | null;
|
|
13726
|
-
identifier: Array<{
|
|
13727
|
-
id: string | null;
|
|
13728
|
-
system: any | null;
|
|
13729
|
-
value: string | null;
|
|
13730
|
-
type: {
|
|
13731
|
-
text: string | null;
|
|
13732
|
-
coding: Array<{
|
|
13733
|
-
system: any | null;
|
|
13734
|
-
code: any | null;
|
|
13735
|
-
display: string | null;
|
|
13736
|
-
} | null> | null;
|
|
13737
|
-
} | null;
|
|
13738
|
-
}> | null;
|
|
13739
|
-
} | null;
|
|
13740
|
-
effectiveDate: {
|
|
13741
|
-
start: any | null;
|
|
13742
|
-
end: any | null;
|
|
16399
|
+
security: Array<{
|
|
16400
|
+
system: any | null;
|
|
16401
|
+
code: any | null;
|
|
16402
|
+
display: string | null;
|
|
16403
|
+
} | null> | null;
|
|
16404
|
+
tag: Array<{
|
|
16405
|
+
system: any | null;
|
|
16406
|
+
code: any | null;
|
|
16407
|
+
display: string | null;
|
|
16408
|
+
} | null> | null;
|
|
13743
16409
|
} | null;
|
|
13744
|
-
|
|
16410
|
+
identifier: Array<{
|
|
13745
16411
|
id: string | null;
|
|
13746
|
-
|
|
13747
|
-
|
|
13748
|
-
|
|
13749
|
-
text: string | null;
|
|
13750
|
-
additionalInstruction: Array<{
|
|
13751
|
-
text: string | null;
|
|
13752
|
-
coding: Array<{
|
|
13753
|
-
system: any | null;
|
|
13754
|
-
code: any | null;
|
|
13755
|
-
display: string | null;
|
|
13756
|
-
} | null> | null;
|
|
13757
|
-
}> | null;
|
|
13758
|
-
asNeededCodeableConcept: {
|
|
16412
|
+
system: any | null;
|
|
16413
|
+
value: string | null;
|
|
16414
|
+
type: {
|
|
13759
16415
|
text: string | null;
|
|
13760
16416
|
coding: Array<{
|
|
13761
16417
|
system: any | null;
|
|
@@ -13763,475 +16419,661 @@ export type GetMedicationStatementsQueryResults = {
|
|
|
13763
16419
|
display: string | null;
|
|
13764
16420
|
} | null> | null;
|
|
13765
16421
|
} | null;
|
|
13766
|
-
|
|
16422
|
+
} | null> | null;
|
|
16423
|
+
item: Array<{
|
|
16424
|
+
id: string | null;
|
|
16425
|
+
linkId: string | null;
|
|
16426
|
+
prefix: string | null;
|
|
16427
|
+
text: string | null;
|
|
16428
|
+
type: any | null;
|
|
16429
|
+
enableBehavior: any | null;
|
|
16430
|
+
required: boolean | null;
|
|
16431
|
+
repeats: boolean | null;
|
|
16432
|
+
readOnly: boolean | null;
|
|
16433
|
+
maxLength: number | null;
|
|
16434
|
+
item: Array<{
|
|
13767
16435
|
id: string | null;
|
|
13768
|
-
|
|
16436
|
+
linkId: string | null;
|
|
16437
|
+
prefix: string | null;
|
|
16438
|
+
text: string | null;
|
|
16439
|
+
type: any | null;
|
|
16440
|
+
enableBehavior: any | null;
|
|
16441
|
+
required: boolean | null;
|
|
16442
|
+
repeats: boolean | null;
|
|
16443
|
+
readOnly: boolean | null;
|
|
16444
|
+
maxLength: number | null;
|
|
16445
|
+
item: Array<{
|
|
16446
|
+
id: string | null;
|
|
16447
|
+
linkId: string | null;
|
|
16448
|
+
prefix: string | null;
|
|
13769
16449
|
text: string | null;
|
|
13770
|
-
|
|
13771
|
-
|
|
13772
|
-
|
|
16450
|
+
type: any | null;
|
|
16451
|
+
enableBehavior: any | null;
|
|
16452
|
+
required: boolean | null;
|
|
16453
|
+
repeats: boolean | null;
|
|
16454
|
+
readOnly: boolean | null;
|
|
16455
|
+
maxLength: number | null;
|
|
16456
|
+
extension: Array<{
|
|
16457
|
+
id: string | null;
|
|
16458
|
+
url: any | null;
|
|
16459
|
+
valueBoolean: boolean | null;
|
|
16460
|
+
valueInteger: number | null;
|
|
16461
|
+
valueString: string | null;
|
|
16462
|
+
valueDateTime: any | null;
|
|
16463
|
+
valueCode: any | null;
|
|
16464
|
+
valueUri: any | null;
|
|
16465
|
+
valueExpression: {
|
|
16466
|
+
description: string | null;
|
|
16467
|
+
name: string | null;
|
|
16468
|
+
language: any | null;
|
|
16469
|
+
expression: string | null;
|
|
16470
|
+
reference: any | null;
|
|
16471
|
+
} | null;
|
|
16472
|
+
valueCodeableConcept: {
|
|
16473
|
+
text: string | null;
|
|
16474
|
+
coding: Array<{
|
|
16475
|
+
id: string | null;
|
|
16476
|
+
system: any | null;
|
|
16477
|
+
code: any | null;
|
|
16478
|
+
display: string | null;
|
|
16479
|
+
} | null> | null;
|
|
16480
|
+
} | null;
|
|
16481
|
+
valueReference: {
|
|
16482
|
+
reference: string | null;
|
|
16483
|
+
type: any | null;
|
|
16484
|
+
display: string | null;
|
|
16485
|
+
} | null;
|
|
16486
|
+
extension: Array<{
|
|
16487
|
+
id: string | null;
|
|
16488
|
+
url: any | null;
|
|
16489
|
+
valueBoolean: boolean | null;
|
|
16490
|
+
valueInteger: number | null;
|
|
16491
|
+
valueString: string | null;
|
|
16492
|
+
valueDateTime: any | null;
|
|
16493
|
+
valueCode: any | null;
|
|
16494
|
+
valueUri: any | null;
|
|
16495
|
+
valueExpression: {
|
|
16496
|
+
description: string | null;
|
|
16497
|
+
name: string | null;
|
|
16498
|
+
language: any | null;
|
|
16499
|
+
expression: string | null;
|
|
16500
|
+
reference: any | null;
|
|
16501
|
+
} | null;
|
|
16502
|
+
valueCodeableConcept: {
|
|
16503
|
+
text: string | null;
|
|
16504
|
+
coding: Array<{
|
|
16505
|
+
id: string | null;
|
|
16506
|
+
system: any | null;
|
|
16507
|
+
code: any | null;
|
|
16508
|
+
display: string | null;
|
|
16509
|
+
} | null> | null;
|
|
16510
|
+
} | null;
|
|
16511
|
+
valueReference: {
|
|
16512
|
+
reference: string | null;
|
|
16513
|
+
type: any | null;
|
|
16514
|
+
display: string | null;
|
|
16515
|
+
} | null;
|
|
16516
|
+
} | null> | null;
|
|
16517
|
+
} | null> | null;
|
|
16518
|
+
enableWhen: Array<{
|
|
16519
|
+
id: string | null;
|
|
16520
|
+
question: string | null;
|
|
16521
|
+
operator: any | null;
|
|
16522
|
+
answerBoolean: boolean | null;
|
|
16523
|
+
answerDecimal: number | null;
|
|
16524
|
+
answerInteger: number | null;
|
|
16525
|
+
answerDate: any | null;
|
|
16526
|
+
answerDateTime: any | null;
|
|
16527
|
+
answerTime: any | null;
|
|
16528
|
+
answerString: string | null;
|
|
16529
|
+
answerCoding: {
|
|
16530
|
+
system: any | null;
|
|
16531
|
+
code: any | null;
|
|
16532
|
+
display: string | null;
|
|
16533
|
+
} | null;
|
|
16534
|
+
answerQuantity: {
|
|
16535
|
+
value: number | null;
|
|
16536
|
+
unit: string | null;
|
|
16537
|
+
code: any | null;
|
|
16538
|
+
comparator: any | null;
|
|
16539
|
+
system: any | null;
|
|
16540
|
+
} | null;
|
|
16541
|
+
answerReference: {
|
|
16542
|
+
reference: string | null;
|
|
16543
|
+
type: any | null;
|
|
16544
|
+
display: string | null;
|
|
16545
|
+
} | null;
|
|
16546
|
+
} | null> | null;
|
|
16547
|
+
answerOption: Array<{
|
|
16548
|
+
id: string | null;
|
|
16549
|
+
valueInteger: number | null;
|
|
16550
|
+
valueDate: any | null;
|
|
16551
|
+
valueTime: any | null;
|
|
16552
|
+
valueString: string | null;
|
|
16553
|
+
initialSelected: boolean | null;
|
|
16554
|
+
valueCoding: {
|
|
16555
|
+
system: any | null;
|
|
16556
|
+
code: any | null;
|
|
16557
|
+
display: string | null;
|
|
16558
|
+
} | null;
|
|
16559
|
+
valueReference: {
|
|
16560
|
+
reference: string | null;
|
|
16561
|
+
type: any | null;
|
|
16562
|
+
display: string | null;
|
|
16563
|
+
extension: Array<{
|
|
16564
|
+
id: string | null;
|
|
16565
|
+
url: any | null;
|
|
16566
|
+
valueBoolean: boolean | null;
|
|
16567
|
+
valueInteger: number | null;
|
|
16568
|
+
valueString: string | null;
|
|
16569
|
+
valueDateTime: any | null;
|
|
16570
|
+
valueCode: any | null;
|
|
16571
|
+
valueUri: any | null;
|
|
16572
|
+
valueExpression: {
|
|
16573
|
+
description: string | null;
|
|
16574
|
+
name: string | null;
|
|
16575
|
+
language: any | null;
|
|
16576
|
+
expression: string | null;
|
|
16577
|
+
reference: any | null;
|
|
16578
|
+
} | null;
|
|
16579
|
+
valueCodeableConcept: {
|
|
16580
|
+
text: string | null;
|
|
16581
|
+
coding: Array<{
|
|
16582
|
+
id: string | null;
|
|
16583
|
+
system: any | null;
|
|
16584
|
+
code: any | null;
|
|
16585
|
+
display: string | null;
|
|
16586
|
+
} | null> | null;
|
|
16587
|
+
} | null;
|
|
16588
|
+
valueReference: {
|
|
16589
|
+
reference: string | null;
|
|
16590
|
+
type: any | null;
|
|
16591
|
+
display: string | null;
|
|
16592
|
+
} | null;
|
|
16593
|
+
} | null> | null;
|
|
16594
|
+
} | null;
|
|
16595
|
+
} | null> | null;
|
|
16596
|
+
initial: Array<{
|
|
16597
|
+
id: string | null;
|
|
16598
|
+
valueBoolean: boolean | null;
|
|
16599
|
+
valueDecimal: number | null;
|
|
16600
|
+
valueInteger: number | null;
|
|
16601
|
+
valueDate: any | null;
|
|
16602
|
+
valueDateTime: any | null;
|
|
16603
|
+
valueTime: any | null;
|
|
16604
|
+
valueString: string | null;
|
|
16605
|
+
valueUri: any | null;
|
|
16606
|
+
valueAttachment: {
|
|
16607
|
+
contentType: any | null;
|
|
16608
|
+
data: any | null;
|
|
16609
|
+
url: any | null;
|
|
16610
|
+
title: string | null;
|
|
16611
|
+
} | null;
|
|
16612
|
+
valueCoding: {
|
|
16613
|
+
system: any | null;
|
|
16614
|
+
code: any | null;
|
|
16615
|
+
display: string | null;
|
|
16616
|
+
} | null;
|
|
16617
|
+
valueQuantity: {
|
|
16618
|
+
value: number | null;
|
|
16619
|
+
unit: string | null;
|
|
16620
|
+
code: any | null;
|
|
16621
|
+
comparator: any | null;
|
|
16622
|
+
system: any | null;
|
|
16623
|
+
} | null;
|
|
16624
|
+
valueReference: {
|
|
16625
|
+
reference: string | null;
|
|
16626
|
+
type: any | null;
|
|
16627
|
+
display: string | null;
|
|
16628
|
+
extension: Array<{
|
|
16629
|
+
id: string | null;
|
|
16630
|
+
url: any | null;
|
|
16631
|
+
valueBoolean: boolean | null;
|
|
16632
|
+
valueInteger: number | null;
|
|
16633
|
+
valueString: string | null;
|
|
16634
|
+
valueDateTime: any | null;
|
|
16635
|
+
valueCode: any | null;
|
|
16636
|
+
valueUri: any | null;
|
|
16637
|
+
valueExpression: {
|
|
16638
|
+
description: string | null;
|
|
16639
|
+
name: string | null;
|
|
16640
|
+
language: any | null;
|
|
16641
|
+
expression: string | null;
|
|
16642
|
+
reference: any | null;
|
|
16643
|
+
} | null;
|
|
16644
|
+
valueCodeableConcept: {
|
|
16645
|
+
text: string | null;
|
|
16646
|
+
coding: Array<{
|
|
16647
|
+
id: string | null;
|
|
16648
|
+
system: any | null;
|
|
16649
|
+
code: any | null;
|
|
16650
|
+
display: string | null;
|
|
16651
|
+
} | null> | null;
|
|
16652
|
+
} | null;
|
|
16653
|
+
valueReference: {
|
|
16654
|
+
reference: string | null;
|
|
16655
|
+
type: any | null;
|
|
16656
|
+
display: string | null;
|
|
16657
|
+
} | null;
|
|
16658
|
+
} | null> | null;
|
|
16659
|
+
} | null;
|
|
16660
|
+
} | null> | null;
|
|
16661
|
+
} | null> | null;
|
|
16662
|
+
extension: Array<{
|
|
16663
|
+
id: string | null;
|
|
16664
|
+
url: any | null;
|
|
16665
|
+
valueBoolean: boolean | null;
|
|
16666
|
+
valueInteger: number | null;
|
|
16667
|
+
valueString: string | null;
|
|
16668
|
+
valueDateTime: any | null;
|
|
16669
|
+
valueCode: any | null;
|
|
16670
|
+
valueUri: any | null;
|
|
16671
|
+
valueExpression: {
|
|
16672
|
+
description: string | null;
|
|
16673
|
+
name: string | null;
|
|
16674
|
+
language: any | null;
|
|
16675
|
+
expression: string | null;
|
|
16676
|
+
reference: any | null;
|
|
16677
|
+
} | null;
|
|
16678
|
+
valueCodeableConcept: {
|
|
16679
|
+
text: string | null;
|
|
16680
|
+
coding: Array<{
|
|
16681
|
+
id: string | null;
|
|
16682
|
+
system: any | null;
|
|
16683
|
+
code: any | null;
|
|
16684
|
+
display: string | null;
|
|
16685
|
+
} | null> | null;
|
|
16686
|
+
} | null;
|
|
16687
|
+
valueReference: {
|
|
16688
|
+
reference: string | null;
|
|
16689
|
+
type: any | null;
|
|
13773
16690
|
display: string | null;
|
|
16691
|
+
} | null;
|
|
16692
|
+
extension: Array<{
|
|
16693
|
+
id: string | null;
|
|
16694
|
+
url: any | null;
|
|
16695
|
+
valueBoolean: boolean | null;
|
|
16696
|
+
valueInteger: number | null;
|
|
16697
|
+
valueString: string | null;
|
|
16698
|
+
valueDateTime: any | null;
|
|
16699
|
+
valueCode: any | null;
|
|
16700
|
+
valueUri: any | null;
|
|
16701
|
+
valueExpression: {
|
|
16702
|
+
description: string | null;
|
|
16703
|
+
name: string | null;
|
|
16704
|
+
language: any | null;
|
|
16705
|
+
expression: string | null;
|
|
16706
|
+
reference: any | null;
|
|
16707
|
+
} | null;
|
|
16708
|
+
valueCodeableConcept: {
|
|
16709
|
+
text: string | null;
|
|
16710
|
+
coding: Array<{
|
|
16711
|
+
id: string | null;
|
|
16712
|
+
system: any | null;
|
|
16713
|
+
code: any | null;
|
|
16714
|
+
display: string | null;
|
|
16715
|
+
} | null> | null;
|
|
16716
|
+
} | null;
|
|
16717
|
+
valueReference: {
|
|
16718
|
+
reference: string | null;
|
|
16719
|
+
type: any | null;
|
|
16720
|
+
display: string | null;
|
|
16721
|
+
} | null;
|
|
13774
16722
|
} | null> | null;
|
|
13775
|
-
} | null;
|
|
13776
|
-
|
|
13777
|
-
|
|
13778
|
-
|
|
13779
|
-
|
|
13780
|
-
|
|
13781
|
-
|
|
16723
|
+
} | null> | null;
|
|
16724
|
+
enableWhen: Array<{
|
|
16725
|
+
id: string | null;
|
|
16726
|
+
question: string | null;
|
|
16727
|
+
operator: any | null;
|
|
16728
|
+
answerBoolean: boolean | null;
|
|
16729
|
+
answerDecimal: number | null;
|
|
16730
|
+
answerInteger: number | null;
|
|
16731
|
+
answerDate: any | null;
|
|
16732
|
+
answerDateTime: any | null;
|
|
16733
|
+
answerTime: any | null;
|
|
16734
|
+
answerString: string | null;
|
|
16735
|
+
answerCoding: {
|
|
13782
16736
|
system: any | null;
|
|
16737
|
+
code: any | null;
|
|
16738
|
+
display: string | null;
|
|
13783
16739
|
} | null;
|
|
13784
|
-
|
|
16740
|
+
answerQuantity: {
|
|
13785
16741
|
value: number | null;
|
|
13786
16742
|
unit: string | null;
|
|
13787
16743
|
code: any | null;
|
|
13788
16744
|
comparator: any | null;
|
|
13789
16745
|
system: any | null;
|
|
13790
16746
|
} | null;
|
|
13791
|
-
|
|
13792
|
-
|
|
13793
|
-
|
|
13794
|
-
|
|
13795
|
-
|
|
13796
|
-
|
|
13797
|
-
|
|
13798
|
-
|
|
13799
|
-
|
|
13800
|
-
|
|
13801
|
-
|
|
13802
|
-
|
|
13803
|
-
|
|
13804
|
-
|
|
13805
|
-
} | null;
|
|
13806
|
-
rateRange: {
|
|
13807
|
-
low: {
|
|
13808
|
-
value: number | null;
|
|
13809
|
-
unit: string | null;
|
|
13810
|
-
code: any | null;
|
|
13811
|
-
comparator: any | null;
|
|
16747
|
+
answerReference: {
|
|
16748
|
+
reference: string | null;
|
|
16749
|
+
type: any | null;
|
|
16750
|
+
display: string | null;
|
|
16751
|
+
} | null;
|
|
16752
|
+
} | null> | null;
|
|
16753
|
+
answerOption: Array<{
|
|
16754
|
+
id: string | null;
|
|
16755
|
+
valueInteger: number | null;
|
|
16756
|
+
valueDate: any | null;
|
|
16757
|
+
valueTime: any | null;
|
|
16758
|
+
valueString: string | null;
|
|
16759
|
+
initialSelected: boolean | null;
|
|
16760
|
+
valueCoding: {
|
|
13812
16761
|
system: any | null;
|
|
16762
|
+
code: any | null;
|
|
16763
|
+
display: string | null;
|
|
16764
|
+
} | null;
|
|
16765
|
+
valueReference: {
|
|
16766
|
+
reference: string | null;
|
|
16767
|
+
type: any | null;
|
|
16768
|
+
display: string | null;
|
|
16769
|
+
extension: Array<{
|
|
16770
|
+
id: string | null;
|
|
16771
|
+
url: any | null;
|
|
16772
|
+
valueBoolean: boolean | null;
|
|
16773
|
+
valueInteger: number | null;
|
|
16774
|
+
valueString: string | null;
|
|
16775
|
+
valueDateTime: any | null;
|
|
16776
|
+
valueCode: any | null;
|
|
16777
|
+
valueUri: any | null;
|
|
16778
|
+
valueExpression: {
|
|
16779
|
+
description: string | null;
|
|
16780
|
+
name: string | null;
|
|
16781
|
+
language: any | null;
|
|
16782
|
+
expression: string | null;
|
|
16783
|
+
reference: any | null;
|
|
16784
|
+
} | null;
|
|
16785
|
+
valueCodeableConcept: {
|
|
16786
|
+
text: string | null;
|
|
16787
|
+
coding: Array<{
|
|
16788
|
+
id: string | null;
|
|
16789
|
+
system: any | null;
|
|
16790
|
+
code: any | null;
|
|
16791
|
+
display: string | null;
|
|
16792
|
+
} | null> | null;
|
|
16793
|
+
} | null;
|
|
16794
|
+
valueReference: {
|
|
16795
|
+
reference: string | null;
|
|
16796
|
+
type: any | null;
|
|
16797
|
+
display: string | null;
|
|
16798
|
+
} | null;
|
|
16799
|
+
} | null> | null;
|
|
16800
|
+
} | null;
|
|
16801
|
+
} | null> | null;
|
|
16802
|
+
initial: Array<{
|
|
16803
|
+
id: string | null;
|
|
16804
|
+
valueBoolean: boolean | null;
|
|
16805
|
+
valueDecimal: number | null;
|
|
16806
|
+
valueInteger: number | null;
|
|
16807
|
+
valueDate: any | null;
|
|
16808
|
+
valueDateTime: any | null;
|
|
16809
|
+
valueTime: any | null;
|
|
16810
|
+
valueString: string | null;
|
|
16811
|
+
valueUri: any | null;
|
|
16812
|
+
valueAttachment: {
|
|
16813
|
+
contentType: any | null;
|
|
16814
|
+
data: any | null;
|
|
16815
|
+
url: any | null;
|
|
16816
|
+
title: string | null;
|
|
13813
16817
|
} | null;
|
|
13814
|
-
|
|
13815
|
-
value: number | null;
|
|
13816
|
-
unit: string | null;
|
|
13817
|
-
code: any | null;
|
|
13818
|
-
comparator: any | null;
|
|
16818
|
+
valueCoding: {
|
|
13819
16819
|
system: any | null;
|
|
13820
|
-
} | null;
|
|
13821
|
-
} | null;
|
|
13822
|
-
rateRatio: {
|
|
13823
|
-
numerator: {
|
|
13824
|
-
value: number | null;
|
|
13825
|
-
unit: string | null;
|
|
13826
16820
|
code: any | null;
|
|
13827
|
-
|
|
13828
|
-
system: any | null;
|
|
16821
|
+
display: string | null;
|
|
13829
16822
|
} | null;
|
|
13830
|
-
|
|
16823
|
+
valueQuantity: {
|
|
13831
16824
|
value: number | null;
|
|
13832
16825
|
unit: string | null;
|
|
13833
16826
|
code: any | null;
|
|
13834
16827
|
comparator: any | null;
|
|
13835
16828
|
system: any | null;
|
|
13836
16829
|
} | null;
|
|
13837
|
-
|
|
13838
|
-
|
|
13839
|
-
|
|
13840
|
-
|
|
13841
|
-
|
|
13842
|
-
|
|
13843
|
-
|
|
13844
|
-
|
|
13845
|
-
|
|
13846
|
-
|
|
13847
|
-
|
|
13848
|
-
|
|
13849
|
-
|
|
13850
|
-
|
|
13851
|
-
|
|
13852
|
-
|
|
13853
|
-
|
|
13854
|
-
|
|
13855
|
-
|
|
13856
|
-
|
|
13857
|
-
|
|
13858
|
-
|
|
13859
|
-
|
|
13860
|
-
|
|
13861
|
-
|
|
13862
|
-
|
|
13863
|
-
|
|
13864
|
-
|
|
13865
|
-
|
|
13866
|
-
|
|
13867
|
-
|
|
13868
|
-
|
|
13869
|
-
|
|
13870
|
-
|
|
13871
|
-
|
|
13872
|
-
|
|
13873
|
-
code: any | null;
|
|
13874
|
-
display: string | null;
|
|
13875
|
-
} | null> | null;
|
|
13876
|
-
} | null;
|
|
13877
|
-
route: {
|
|
13878
|
-
text: string | null;
|
|
13879
|
-
coding: Array<{
|
|
13880
|
-
system: any | null;
|
|
13881
|
-
code: any | null;
|
|
13882
|
-
display: string | null;
|
|
13883
|
-
} | null> | null;
|
|
13884
|
-
} | null;
|
|
13885
|
-
site: {
|
|
13886
|
-
text: string | null;
|
|
13887
|
-
coding: Array<{
|
|
13888
|
-
system: any | null;
|
|
13889
|
-
code: any | null;
|
|
13890
|
-
display: string | null;
|
|
16830
|
+
valueReference: {
|
|
16831
|
+
reference: string | null;
|
|
16832
|
+
type: any | null;
|
|
16833
|
+
display: string | null;
|
|
16834
|
+
extension: Array<{
|
|
16835
|
+
id: string | null;
|
|
16836
|
+
url: any | null;
|
|
16837
|
+
valueBoolean: boolean | null;
|
|
16838
|
+
valueInteger: number | null;
|
|
16839
|
+
valueString: string | null;
|
|
16840
|
+
valueDateTime: any | null;
|
|
16841
|
+
valueCode: any | null;
|
|
16842
|
+
valueUri: any | null;
|
|
16843
|
+
valueExpression: {
|
|
16844
|
+
description: string | null;
|
|
16845
|
+
name: string | null;
|
|
16846
|
+
language: any | null;
|
|
16847
|
+
expression: string | null;
|
|
16848
|
+
reference: any | null;
|
|
16849
|
+
} | null;
|
|
16850
|
+
valueCodeableConcept: {
|
|
16851
|
+
text: string | null;
|
|
16852
|
+
coding: Array<{
|
|
16853
|
+
id: string | null;
|
|
16854
|
+
system: any | null;
|
|
16855
|
+
code: any | null;
|
|
16856
|
+
display: string | null;
|
|
16857
|
+
} | null> | null;
|
|
16858
|
+
} | null;
|
|
16859
|
+
valueReference: {
|
|
16860
|
+
reference: string | null;
|
|
16861
|
+
type: any | null;
|
|
16862
|
+
display: string | null;
|
|
16863
|
+
} | null;
|
|
16864
|
+
} | null> | null;
|
|
16865
|
+
} | null;
|
|
13891
16866
|
} | null> | null;
|
|
13892
|
-
} | null;
|
|
13893
|
-
|
|
16867
|
+
} | null> | null;
|
|
16868
|
+
extension: Array<{
|
|
13894
16869
|
id: string | null;
|
|
13895
|
-
|
|
13896
|
-
|
|
16870
|
+
url: any | null;
|
|
16871
|
+
valueBoolean: boolean | null;
|
|
16872
|
+
valueInteger: number | null;
|
|
16873
|
+
valueString: string | null;
|
|
16874
|
+
valueDateTime: any | null;
|
|
16875
|
+
valueCode: any | null;
|
|
16876
|
+
valueUri: any | null;
|
|
16877
|
+
valueExpression: {
|
|
16878
|
+
description: string | null;
|
|
16879
|
+
name: string | null;
|
|
16880
|
+
language: any | null;
|
|
16881
|
+
expression: string | null;
|
|
16882
|
+
reference: any | null;
|
|
16883
|
+
} | null;
|
|
16884
|
+
valueCodeableConcept: {
|
|
13897
16885
|
text: string | null;
|
|
13898
16886
|
coding: Array<{
|
|
16887
|
+
id: string | null;
|
|
13899
16888
|
system: any | null;
|
|
13900
16889
|
code: any | null;
|
|
13901
16890
|
display: string | null;
|
|
13902
16891
|
} | null> | null;
|
|
13903
16892
|
} | null;
|
|
13904
|
-
|
|
16893
|
+
valueReference: {
|
|
16894
|
+
reference: string | null;
|
|
16895
|
+
type: any | null;
|
|
16896
|
+
display: string | null;
|
|
16897
|
+
} | null;
|
|
16898
|
+
extension: Array<{
|
|
13905
16899
|
id: string | null;
|
|
13906
|
-
|
|
13907
|
-
|
|
13908
|
-
|
|
13909
|
-
|
|
13910
|
-
|
|
13911
|
-
|
|
13912
|
-
|
|
13913
|
-
|
|
13914
|
-
|
|
13915
|
-
|
|
13916
|
-
|
|
13917
|
-
|
|
13918
|
-
|
|
13919
|
-
code: any | null;
|
|
13920
|
-
comparator: any | null;
|
|
13921
|
-
system: any | null;
|
|
13922
|
-
} | null;
|
|
13923
|
-
boundsPeriod: {
|
|
13924
|
-
start: any | null;
|
|
13925
|
-
end: any | null;
|
|
16900
|
+
url: any | null;
|
|
16901
|
+
valueBoolean: boolean | null;
|
|
16902
|
+
valueInteger: number | null;
|
|
16903
|
+
valueString: string | null;
|
|
16904
|
+
valueDateTime: any | null;
|
|
16905
|
+
valueCode: any | null;
|
|
16906
|
+
valueUri: any | null;
|
|
16907
|
+
valueExpression: {
|
|
16908
|
+
description: string | null;
|
|
16909
|
+
name: string | null;
|
|
16910
|
+
language: any | null;
|
|
16911
|
+
expression: string | null;
|
|
16912
|
+
reference: any | null;
|
|
13926
16913
|
} | null;
|
|
13927
|
-
|
|
13928
|
-
|
|
13929
|
-
|
|
13930
|
-
|
|
13931
|
-
code: any | null;
|
|
13932
|
-
comparator: any | null;
|
|
16914
|
+
valueCodeableConcept: {
|
|
16915
|
+
text: string | null;
|
|
16916
|
+
coding: Array<{
|
|
16917
|
+
id: string | null;
|
|
13933
16918
|
system: any | null;
|
|
13934
|
-
} | null;
|
|
13935
|
-
high: {
|
|
13936
|
-
value: number | null;
|
|
13937
|
-
unit: string | null;
|
|
13938
16919
|
code: any | null;
|
|
13939
|
-
|
|
13940
|
-
|
|
13941
|
-
} | null;
|
|
13942
|
-
} | null;
|
|
13943
|
-
dayOfWeek: Array<{
|
|
13944
|
-
code: any | null;
|
|
13945
|
-
display: string | null;
|
|
13946
|
-
}> | null;
|
|
13947
|
-
durationUnit: {
|
|
13948
|
-
code: any | null;
|
|
13949
|
-
display: string | null;
|
|
16920
|
+
display: string | null;
|
|
16921
|
+
} | null> | null;
|
|
13950
16922
|
} | null;
|
|
13951
|
-
|
|
13952
|
-
|
|
16923
|
+
valueReference: {
|
|
16924
|
+
reference: string | null;
|
|
16925
|
+
type: any | null;
|
|
13953
16926
|
display: string | null;
|
|
13954
16927
|
} | null;
|
|
13955
|
-
|
|
13956
|
-
|
|
13957
|
-
|
|
13958
|
-
|
|
13959
|
-
|
|
13960
|
-
|
|
13961
|
-
|
|
13962
|
-
|
|
13963
|
-
|
|
13964
|
-
|
|
13965
|
-
|
|
13966
|
-
|
|
13967
|
-
|
|
13968
|
-
|
|
13969
|
-
comparator: any | null;
|
|
13970
|
-
system: any | null;
|
|
13971
|
-
} | null;
|
|
13972
|
-
expectedSupplyDuration: {
|
|
13973
|
-
value: number | null;
|
|
13974
|
-
unit: string | null;
|
|
13975
|
-
code: any | null;
|
|
13976
|
-
comparator: any | null;
|
|
13977
|
-
system: any | null;
|
|
13978
|
-
} | null;
|
|
13979
|
-
initialFill: {
|
|
13980
|
-
duration: {
|
|
13981
|
-
value: number | null;
|
|
13982
|
-
unit: string | null;
|
|
13983
|
-
code: any | null;
|
|
13984
|
-
comparator: any | null;
|
|
13985
|
-
system: any | null;
|
|
13986
|
-
} | null;
|
|
13987
|
-
quantity: {
|
|
13988
|
-
value: number | null;
|
|
13989
|
-
unit: string | null;
|
|
13990
|
-
code: any | null;
|
|
13991
|
-
comparator: any | null;
|
|
13992
|
-
system: any | null;
|
|
13993
|
-
} | null;
|
|
13994
|
-
} | null;
|
|
13995
|
-
performer: {
|
|
13996
|
-
name: string | null;
|
|
13997
|
-
} | null;
|
|
13998
|
-
validityPeriod: {
|
|
13999
|
-
start: any | null;
|
|
14000
|
-
end: any | null;
|
|
14001
|
-
} | null;
|
|
14002
|
-
quantity: {
|
|
14003
|
-
value: number | null;
|
|
14004
|
-
unit: string | null;
|
|
14005
|
-
code: any | null;
|
|
14006
|
-
comparator: any | null;
|
|
14007
|
-
system: any | null;
|
|
14008
|
-
} | null;
|
|
14009
|
-
} | null;
|
|
14010
|
-
derivedFrom: Array<{
|
|
14011
|
-
reference: string | null;
|
|
14012
|
-
type: any | null;
|
|
14013
|
-
}> | null;
|
|
14014
|
-
}>;
|
|
14015
|
-
};
|
|
14016
|
-
};
|
|
14017
|
-
export type AppointmentsQueryVariables = Types.Exact<{
|
|
14018
|
-
source: Types.InputMaybe<Types.SearchString>;
|
|
14019
|
-
id: Types.InputMaybe<Types.SearchString>;
|
|
14020
|
-
count: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
14021
|
-
getPagesOffset: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
14022
|
-
date: Types.InputMaybe<Types.SearchDate>;
|
|
14023
|
-
supportingInformation: Types.InputMaybe<Types.SearchReference>;
|
|
14024
|
-
sort: Types.InputMaybe<Array<Types.InputMaybe<Types.Scalars['String']['input']>> | Types.InputMaybe<Types.Scalars['String']['input']>>;
|
|
14025
|
-
}>;
|
|
14026
|
-
export type AppointmentsQueryResults = {
|
|
14027
|
-
appointments: {
|
|
14028
|
-
entry: Array<{
|
|
14029
|
-
resource: {
|
|
14030
|
-
id: string;
|
|
14031
|
-
status: any | null;
|
|
14032
|
-
start: any | null;
|
|
14033
|
-
end: any | null;
|
|
14034
|
-
cancelationReason: {
|
|
14035
|
-
text: string | null;
|
|
14036
|
-
coding: Array<{
|
|
14037
|
-
system: any | null;
|
|
14038
|
-
code: any | null;
|
|
14039
|
-
display: string | null;
|
|
14040
|
-
} | null> | null;
|
|
14041
|
-
} | null;
|
|
14042
|
-
serviceType: Array<{
|
|
14043
|
-
text: string | null;
|
|
14044
|
-
coding: Array<{
|
|
16928
|
+
} | null> | null;
|
|
16929
|
+
} | null> | null;
|
|
16930
|
+
enableWhen: Array<{
|
|
16931
|
+
id: string | null;
|
|
16932
|
+
question: string | null;
|
|
16933
|
+
operator: any | null;
|
|
16934
|
+
answerBoolean: boolean | null;
|
|
16935
|
+
answerDecimal: number | null;
|
|
16936
|
+
answerInteger: number | null;
|
|
16937
|
+
answerDate: any | null;
|
|
16938
|
+
answerDateTime: any | null;
|
|
16939
|
+
answerTime: any | null;
|
|
16940
|
+
answerString: string | null;
|
|
16941
|
+
answerCoding: {
|
|
14045
16942
|
system: any | null;
|
|
14046
16943
|
code: any | null;
|
|
14047
16944
|
display: string | null;
|
|
14048
|
-
} | null
|
|
16945
|
+
} | null;
|
|
16946
|
+
answerQuantity: {
|
|
16947
|
+
value: number | null;
|
|
16948
|
+
unit: string | null;
|
|
16949
|
+
code: any | null;
|
|
16950
|
+
comparator: any | null;
|
|
16951
|
+
system: any | null;
|
|
16952
|
+
} | null;
|
|
16953
|
+
answerReference: {
|
|
16954
|
+
reference: string | null;
|
|
16955
|
+
type: any | null;
|
|
16956
|
+
display: string | null;
|
|
16957
|
+
} | null;
|
|
14049
16958
|
} | null> | null;
|
|
14050
|
-
|
|
16959
|
+
answerOption: Array<{
|
|
14051
16960
|
id: string | null;
|
|
14052
|
-
|
|
14053
|
-
|
|
16961
|
+
valueInteger: number | null;
|
|
16962
|
+
valueDate: any | null;
|
|
16963
|
+
valueTime: any | null;
|
|
16964
|
+
valueString: string | null;
|
|
16965
|
+
initialSelected: boolean | null;
|
|
16966
|
+
valueCoding: {
|
|
16967
|
+
system: any | null;
|
|
16968
|
+
code: any | null;
|
|
16969
|
+
display: string | null;
|
|
16970
|
+
} | null;
|
|
16971
|
+
valueReference: {
|
|
16972
|
+
reference: string | null;
|
|
16973
|
+
type: any | null;
|
|
16974
|
+
display: string | null;
|
|
16975
|
+
extension: Array<{
|
|
16976
|
+
id: string | null;
|
|
16977
|
+
url: any | null;
|
|
16978
|
+
valueBoolean: boolean | null;
|
|
16979
|
+
valueInteger: number | null;
|
|
16980
|
+
valueString: string | null;
|
|
16981
|
+
valueDateTime: any | null;
|
|
16982
|
+
valueCode: any | null;
|
|
16983
|
+
valueUri: any | null;
|
|
16984
|
+
valueExpression: {
|
|
16985
|
+
description: string | null;
|
|
16986
|
+
name: string | null;
|
|
16987
|
+
language: any | null;
|
|
16988
|
+
expression: string | null;
|
|
16989
|
+
reference: any | null;
|
|
16990
|
+
} | null;
|
|
16991
|
+
valueCodeableConcept: {
|
|
16992
|
+
text: string | null;
|
|
16993
|
+
coding: Array<{
|
|
16994
|
+
id: string | null;
|
|
16995
|
+
system: any | null;
|
|
16996
|
+
code: any | null;
|
|
16997
|
+
display: string | null;
|
|
16998
|
+
} | null> | null;
|
|
16999
|
+
} | null;
|
|
17000
|
+
valueReference: {
|
|
17001
|
+
reference: string | null;
|
|
17002
|
+
type: any | null;
|
|
17003
|
+
display: string | null;
|
|
17004
|
+
} | null;
|
|
17005
|
+
} | null> | null;
|
|
17006
|
+
} | null;
|
|
14054
17007
|
} | null> | null;
|
|
14055
|
-
|
|
17008
|
+
initial: Array<{
|
|
14056
17009
|
id: string | null;
|
|
14057
|
-
|
|
14058
|
-
|
|
14059
|
-
|
|
14060
|
-
|
|
14061
|
-
|
|
14062
|
-
|
|
14063
|
-
|
|
14064
|
-
|
|
14065
|
-
|
|
17010
|
+
valueBoolean: boolean | null;
|
|
17011
|
+
valueDecimal: number | null;
|
|
17012
|
+
valueInteger: number | null;
|
|
17013
|
+
valueDate: any | null;
|
|
17014
|
+
valueDateTime: any | null;
|
|
17015
|
+
valueTime: any | null;
|
|
17016
|
+
valueString: string | null;
|
|
17017
|
+
valueUri: any | null;
|
|
17018
|
+
valueAttachment: {
|
|
17019
|
+
contentType: any | null;
|
|
17020
|
+
data: any | null;
|
|
17021
|
+
url: any | null;
|
|
17022
|
+
title: string | null;
|
|
17023
|
+
} | null;
|
|
17024
|
+
valueCoding: {
|
|
17025
|
+
system: any | null;
|
|
17026
|
+
code: any | null;
|
|
17027
|
+
display: string | null;
|
|
17028
|
+
} | null;
|
|
17029
|
+
valueQuantity: {
|
|
17030
|
+
value: number | null;
|
|
17031
|
+
unit: string | null;
|
|
17032
|
+
code: any | null;
|
|
17033
|
+
comparator: any | null;
|
|
17034
|
+
system: any | null;
|
|
17035
|
+
} | null;
|
|
17036
|
+
valueReference: {
|
|
14066
17037
|
reference: string | null;
|
|
14067
|
-
|
|
14068
|
-
|
|
14069
|
-
|
|
14070
|
-
|
|
14071
|
-
|
|
14072
|
-
|
|
14073
|
-
|
|
14074
|
-
|
|
14075
|
-
|
|
14076
|
-
|
|
14077
|
-
|
|
14078
|
-
|
|
14079
|
-
|
|
14080
|
-
|
|
14081
|
-
|
|
14082
|
-
|
|
14083
|
-
|
|
14084
|
-
telecom: Array<{
|
|
14085
|
-
id: string | null;
|
|
14086
|
-
system: any | null;
|
|
14087
|
-
value: string | null;
|
|
14088
|
-
} | null> | null;
|
|
14089
|
-
address: {
|
|
14090
|
-
use: any | null;
|
|
14091
|
-
type: any | null;
|
|
14092
|
-
text: string | null;
|
|
14093
|
-
line: Array<string | null> | null;
|
|
14094
|
-
city: string | null;
|
|
14095
|
-
district: string | null;
|
|
14096
|
-
state: string | null;
|
|
14097
|
-
postalCode: string | null;
|
|
14098
|
-
country: string | null;
|
|
17038
|
+
type: any | null;
|
|
17039
|
+
display: string | null;
|
|
17040
|
+
extension: Array<{
|
|
17041
|
+
id: string | null;
|
|
17042
|
+
url: any | null;
|
|
17043
|
+
valueBoolean: boolean | null;
|
|
17044
|
+
valueInteger: number | null;
|
|
17045
|
+
valueString: string | null;
|
|
17046
|
+
valueDateTime: any | null;
|
|
17047
|
+
valueCode: any | null;
|
|
17048
|
+
valueUri: any | null;
|
|
17049
|
+
valueExpression: {
|
|
17050
|
+
description: string | null;
|
|
17051
|
+
name: string | null;
|
|
17052
|
+
language: any | null;
|
|
17053
|
+
expression: string | null;
|
|
17054
|
+
reference: any | null;
|
|
14099
17055
|
} | null;
|
|
14100
|
-
|
|
14101
|
-
|
|
14102
|
-
|
|
17056
|
+
valueCodeableConcept: {
|
|
17057
|
+
text: string | null;
|
|
17058
|
+
coding: Array<{
|
|
17059
|
+
id: string | null;
|
|
17060
|
+
system: any | null;
|
|
17061
|
+
code: any | null;
|
|
17062
|
+
display: string | null;
|
|
17063
|
+
} | null> | null;
|
|
14103
17064
|
} | null;
|
|
14104
|
-
|
|
17065
|
+
valueReference: {
|
|
14105
17066
|
reference: string | null;
|
|
17067
|
+
type: any | null;
|
|
17068
|
+
display: string | null;
|
|
14106
17069
|
} | null;
|
|
14107
|
-
} |
|
|
17070
|
+
} | null> | null;
|
|
14108
17071
|
} | null;
|
|
14109
17072
|
} | null> | null;
|
|
14110
|
-
} | null;
|
|
14111
|
-
} | null> | null;
|
|
17073
|
+
} | null> | null;
|
|
17074
|
+
} | {} | null> | null;
|
|
14112
17075
|
} | null;
|
|
14113
17076
|
};
|
|
14114
|
-
export type CancelAppointmentMutationVariables = Types.Exact<{
|
|
14115
|
-
appointment: Types.UpdateAppointmentInput;
|
|
14116
|
-
}>;
|
|
14117
|
-
export type CancelAppointmentMutationResults = {
|
|
14118
|
-
updateAppointment: {
|
|
14119
|
-
id: string;
|
|
14120
|
-
status: any | null;
|
|
14121
|
-
};
|
|
14122
|
-
};
|
|
14123
|
-
export type CancelationReasonsQueryVariables = Types.Exact<{
|
|
14124
|
-
organization: Types.SearchReference;
|
|
14125
|
-
}>;
|
|
14126
|
-
export type CancelationReasonsQueryResults = {
|
|
14127
|
-
cancelationReasons: {
|
|
14128
|
-
id: string;
|
|
14129
|
-
title: string | null;
|
|
14130
|
-
url: any | null;
|
|
14131
|
-
concept: Array<{
|
|
14132
|
-
code: any | null;
|
|
14133
|
-
display: string | null;
|
|
14134
|
-
} | null> | null;
|
|
14135
|
-
};
|
|
14136
|
-
};
|
|
14137
|
-
export type AuthenticateQueryVariables = Types.Exact<{
|
|
14138
|
-
[key: string]: never;
|
|
14139
|
-
}>;
|
|
14140
|
-
export type AuthenticateQueryResults = {
|
|
14141
|
-
getToken: {
|
|
14142
|
-
accessToken: {
|
|
14143
|
-
jwtToken: string;
|
|
14144
|
-
};
|
|
14145
|
-
idToken: {
|
|
14146
|
-
jwtToken: string;
|
|
14147
|
-
};
|
|
14148
|
-
refreshToken: {
|
|
14149
|
-
token: string;
|
|
14150
|
-
};
|
|
14151
|
-
};
|
|
14152
|
-
};
|
|
14153
|
-
export type CreateGuestAccessTokenMutationVariables = Types.Exact<{
|
|
14154
|
-
clientKey: Types.Scalars['String']['input'];
|
|
14155
|
-
}>;
|
|
14156
|
-
export type CreateGuestAccessTokenMutationResults = {
|
|
14157
|
-
createGuestAccessToken: {
|
|
14158
|
-
accessToken: string;
|
|
14159
|
-
refreshToken: string;
|
|
14160
|
-
identityToken: string;
|
|
14161
|
-
tokenType: string;
|
|
14162
|
-
issuedAt: number;
|
|
14163
|
-
expiresIn: number;
|
|
14164
|
-
};
|
|
14165
|
-
};
|
|
14166
|
-
export type ExchangeAuthCodeMutationVariables = Types.Exact<{
|
|
14167
|
-
authCode: Types.Scalars['String']['input'];
|
|
14168
|
-
}>;
|
|
14169
|
-
export type ExchangeAuthCodeMutationResults = {
|
|
14170
|
-
exchangeAuthCode: {
|
|
14171
|
-
accessToken: {
|
|
14172
|
-
jwtToken: string;
|
|
14173
|
-
};
|
|
14174
|
-
idToken: {
|
|
14175
|
-
jwtToken: string;
|
|
14176
|
-
};
|
|
14177
|
-
refreshToken: {
|
|
14178
|
-
token: string;
|
|
14179
|
-
};
|
|
14180
|
-
};
|
|
14181
|
-
};
|
|
14182
|
-
export type InitializeQueryVariables = Types.Exact<{
|
|
14183
|
-
clientKey: Types.Scalars['String']['input'];
|
|
14184
|
-
}>;
|
|
14185
|
-
export type InitializeQueryResults = {
|
|
14186
|
-
initSdk: {
|
|
14187
|
-
logLevel: Types.LogLevel | null;
|
|
14188
|
-
httpClient: {
|
|
14189
|
-
requestTimeout: number | null;
|
|
14190
|
-
retry: {
|
|
14191
|
-
interval: number;
|
|
14192
|
-
attempts: number;
|
|
14193
|
-
} | null;
|
|
14194
|
-
};
|
|
14195
|
-
graphQLClient: {
|
|
14196
|
-
url: string;
|
|
14197
|
-
authUrl: string;
|
|
14198
|
-
fetchPolicy: string;
|
|
14199
|
-
cache: {
|
|
14200
|
-
maxSizeBytes: number;
|
|
14201
|
-
};
|
|
14202
|
-
};
|
|
14203
|
-
telemetry: {
|
|
14204
|
-
enabled: boolean | null;
|
|
14205
|
-
collectorUrl: string;
|
|
14206
|
-
};
|
|
14207
|
-
};
|
|
14208
|
-
};
|
|
14209
|
-
export type LoginQueryVariables = Types.Exact<{
|
|
14210
|
-
email: Types.Scalars['String']['input'];
|
|
14211
|
-
password: Types.Scalars['String']['input'];
|
|
14212
|
-
}>;
|
|
14213
|
-
export type LoginQueryResults = {
|
|
14214
|
-
login: {
|
|
14215
|
-
accessToken: {
|
|
14216
|
-
jwtToken: string;
|
|
14217
|
-
};
|
|
14218
|
-
idToken: {
|
|
14219
|
-
jwtToken: string;
|
|
14220
|
-
};
|
|
14221
|
-
refreshToken: {
|
|
14222
|
-
token: string;
|
|
14223
|
-
};
|
|
14224
|
-
};
|
|
14225
|
-
};
|
|
14226
|
-
export type RefreshTokensQueryVariables = Types.Exact<{
|
|
14227
|
-
[key: string]: never;
|
|
14228
|
-
}>;
|
|
14229
|
-
export type RefreshTokensQueryResults = {
|
|
14230
|
-
refresh: {
|
|
14231
|
-
accessToken: string;
|
|
14232
|
-
idToken: string;
|
|
14233
|
-
};
|
|
14234
|
-
};
|
|
14235
17077
|
export type ProviderSearchQueryVariables = Types.Exact<{
|
|
14236
17078
|
client: Types.InputMaybe<Array<Types.InputMaybe<Types.Client>> | Types.InputMaybe<Types.Client>>;
|
|
14237
17079
|
searchTerm: Types.InputMaybe<Types.Scalars['String']['input']>;
|