@icanbwell/bwell-sdk-ts 1.43.0 → 1.44.0-rc.1762272531
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/financial/coverage-request.d.ts +39 -0
- package/dist/api/base/financial/coverage-request.js +59 -0
- package/dist/api/base/financial/financial-manager.d.ts +19 -0
- package/dist/api/base/financial/financial-manager.js +1 -0
- package/dist/api/base/financial/index.d.ts +1 -0
- package/dist/api/base/financial/index.js +1 -0
- 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 +1 -0
- package/dist/api/base/questionnaire/index.js +1 -0
- package/dist/api/base/questionnaire/questionnaire-manager.d.ts +14 -4
- package/dist/api/base/questionnaire/questionnaires-request.d.ts +18 -0
- package/dist/api/base/questionnaire/questionnaires-request.js +42 -0
- package/dist/api/base/requests/search-reference.d.ts +18 -0
- package/dist/api/base/requests/search-reference.js +24 -0
- package/dist/api/graphql-api/financial/graphql-coverages-bwell-request-factory.d.ts +6 -0
- package/dist/api/graphql-api/financial/graphql-coverages-bwell-request-factory.js +17 -0
- package/dist/api/graphql-api/financial/graphql-financial-manager.d.ts +19 -0
- package/dist/api/graphql-api/financial/graphql-financial-manager.js +58 -0
- package/dist/api/graphql-api/financial/index.d.ts +1 -0
- package/dist/api/graphql-api/financial/index.js +1 -0
- 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/questionnaire/get-questionnaires-request-factory.d.ts +6 -0
- package/dist/api/graphql-api/questionnaire/get-questionnaires-request-factory.js +16 -0
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.d.ts +3 -1
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.js +20 -2
- package/dist/api/graphql-api/questionnaire/index.d.ts +1 -0
- package/dist/api/graphql-api/questionnaire/index.js +1 -0
- package/dist/bwell-sdk/bwell-sdk.d.ts +2 -0
- package/dist/bwell-sdk/bwell-sdk.js +3 -0
- package/dist/graphql/operations/index.d.ts +21 -0
- package/dist/graphql/operations/index.js +115 -0
- package/dist/graphql/operations/types.d.ts +911 -13
- package/dist/graphql/schema.d.ts +419 -32
- package/dist/graphql/schema.js +8 -0
- package/package.json +1 -1
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -87,6 +87,10 @@ export type Scalars = {
|
|
|
87
87
|
input: any;
|
|
88
88
|
output: any;
|
|
89
89
|
};
|
|
90
|
+
Decimal: {
|
|
91
|
+
input: any;
|
|
92
|
+
output: any;
|
|
93
|
+
};
|
|
90
94
|
Error: {
|
|
91
95
|
input: any;
|
|
92
96
|
output: any;
|
|
@@ -326,6 +330,7 @@ export type ApiMap = {
|
|
|
326
330
|
consent: Scalars['String']['output'];
|
|
327
331
|
default: Scalars['String']['output'];
|
|
328
332
|
enterprisePerson: Scalars['String']['output'];
|
|
333
|
+
gqlv2Api: Scalars['String']['output'];
|
|
329
334
|
healthCircle: Scalars['String']['output'];
|
|
330
335
|
hpTask: Scalars['String']['output'];
|
|
331
336
|
identityGateway: Scalars['String']['output'];
|
|
@@ -495,6 +500,45 @@ export type BootstrapConfiguration = {
|
|
|
495
500
|
export declare enum BootstrapVariant {
|
|
496
501
|
Guest = "GUEST"
|
|
497
502
|
}
|
|
503
|
+
export type BundleLink = {
|
|
504
|
+
__typename?: 'BundleLink';
|
|
505
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
506
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
507
|
+
modifierExtension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
508
|
+
relation?: Maybe<Scalars['String']['output']>;
|
|
509
|
+
url?: Maybe<Scalars['URI']['output']>;
|
|
510
|
+
};
|
|
511
|
+
export type BundleRequest = {
|
|
512
|
+
__typename?: 'BundleRequest';
|
|
513
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
514
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
515
|
+
ifMatch?: Maybe<Scalars['String']['output']>;
|
|
516
|
+
ifModifiedSince?: Maybe<Scalars['Instant']['output']>;
|
|
517
|
+
ifNoneExist?: Maybe<Scalars['String']['output']>;
|
|
518
|
+
ifNoneMatch?: Maybe<Scalars['String']['output']>;
|
|
519
|
+
method?: Maybe<Scalars['Code']['output']>;
|
|
520
|
+
modifierExtension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
521
|
+
url?: Maybe<Scalars['URI']['output']>;
|
|
522
|
+
};
|
|
523
|
+
export type BundleResponse = {
|
|
524
|
+
__typename?: 'BundleResponse';
|
|
525
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
526
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
527
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
528
|
+
lastModified?: Maybe<Scalars['Instant']['output']>;
|
|
529
|
+
location?: Maybe<Scalars['URI']['output']>;
|
|
530
|
+
modifierExtension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
531
|
+
outcome?: Maybe<Resource>;
|
|
532
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
533
|
+
};
|
|
534
|
+
export type BundleSearch = {
|
|
535
|
+
__typename?: 'BundleSearch';
|
|
536
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
537
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
538
|
+
mode?: Maybe<Scalars['Code']['output']>;
|
|
539
|
+
modifierExtension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
540
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
541
|
+
};
|
|
498
542
|
export type Cache = {
|
|
499
543
|
__typename?: 'Cache';
|
|
500
544
|
maxSizeBytes: Scalars['Float']['output'];
|
|
@@ -583,11 +627,21 @@ export type CarePlanResource = {
|
|
|
583
627
|
/** The human-readable title of the CarePlan. */
|
|
584
628
|
title?: Maybe<Scalars['String']['output']>;
|
|
585
629
|
};
|
|
630
|
+
export type CareTeam = {
|
|
631
|
+
__typename?: 'CareTeam';
|
|
632
|
+
id: Scalars['ID']['output'];
|
|
633
|
+
};
|
|
586
634
|
export type CareTeamParticipant = {
|
|
587
635
|
__typename?: 'CareTeamParticipant';
|
|
588
636
|
member?: Maybe<CareTeamParticipantMember>;
|
|
589
637
|
role?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
590
638
|
};
|
|
639
|
+
export type CareTeamParticipantInput = {
|
|
640
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
641
|
+
member: ReferenceInput;
|
|
642
|
+
period?: InputMaybe<PeriodInput>;
|
|
643
|
+
role?: InputMaybe<Array<InputMaybe<CodeableConceptInput>>>;
|
|
644
|
+
};
|
|
591
645
|
export type CareTeamParticipantMember = Organization | Practitioner | PractitionerRole | RelatedPerson | ResourceReference;
|
|
592
646
|
export type CareTeamQueryResults = PagedQueryResults & {
|
|
593
647
|
__typename?: 'CareTeamQueryResults';
|
|
@@ -923,6 +977,8 @@ export type Connection = {
|
|
|
923
977
|
created: Scalars['DateTime']['output'];
|
|
924
978
|
/** Uniquely identifies a data source */
|
|
925
979
|
id: Scalars['String']['output'];
|
|
980
|
+
/** Specifies whether the connection is direct or indirect or proa */
|
|
981
|
+
integrationType?: Maybe<Scalars['String']['output']>;
|
|
926
982
|
/** Data source is direct or not */
|
|
927
983
|
isDirect: Scalars['Boolean']['output'];
|
|
928
984
|
/** Last sync datetime */
|
|
@@ -1215,6 +1271,11 @@ export type CoveragePolicyHolderReference = {
|
|
|
1215
1271
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1216
1272
|
type?: Maybe<Scalars['URI']['output']>;
|
|
1217
1273
|
};
|
|
1274
|
+
export type CreateHealthLinkInput = {
|
|
1275
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
1276
|
+
resources?: InputMaybe<Array<ResourceInput>>;
|
|
1277
|
+
securityConfig: SecurityConfigInput;
|
|
1278
|
+
};
|
|
1218
1279
|
/** Supported ISO 4217 CurrencyCodes */
|
|
1219
1280
|
export declare enum CurrencyCode {
|
|
1220
1281
|
Usd = "USD"
|
|
@@ -1255,6 +1316,8 @@ export type DataSource = {
|
|
|
1255
1316
|
category: ConnectionCategory;
|
|
1256
1317
|
/** Uniquely identifies a data source */
|
|
1257
1318
|
id: Scalars['String']['output'];
|
|
1319
|
+
/** Specifies whether the connection is direct or indirect or proa */
|
|
1320
|
+
integrationType?: Maybe<Scalars['String']['output']>;
|
|
1258
1321
|
/** Data source is direct or not */
|
|
1259
1322
|
isDirect: Scalars['Boolean']['output'];
|
|
1260
1323
|
/** Name of data source */
|
|
@@ -1338,12 +1401,18 @@ export type DiagnosticReport = Resource & {
|
|
|
1338
1401
|
/** Resource type for the diagnostic report */
|
|
1339
1402
|
resourceType?: Maybe<Scalars['String']['output']>;
|
|
1340
1403
|
result?: Maybe<Array<Maybe<DiagnosticReportResultReference>>>;
|
|
1404
|
+
resultsInterpreter?: Maybe<Array<Maybe<DiagnosticReportResultsInterpreterReference>>>;
|
|
1341
1405
|
status?: Maybe<Scalars['Code']['output']>;
|
|
1406
|
+
subject?: Maybe<DiagnosticReportSubjectReference>;
|
|
1342
1407
|
};
|
|
1343
1408
|
export type DiagnosticReportBasedOnReference = {
|
|
1344
1409
|
__typename?: 'DiagnosticReportBasedOnReference';
|
|
1345
1410
|
display?: Maybe<Scalars['String']['output']>;
|
|
1411
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
1412
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1413
|
+
identifier?: Maybe<Identifier>;
|
|
1346
1414
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1415
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1347
1416
|
};
|
|
1348
1417
|
export type DiagnosticReportBundle = {
|
|
1349
1418
|
__typename?: 'DiagnosticReportBundle';
|
|
@@ -1357,7 +1426,11 @@ export type DiagnosticReportBundleEntry = {
|
|
|
1357
1426
|
export type DiagnosticReportEncounterReference = {
|
|
1358
1427
|
__typename?: 'DiagnosticReportEncounterReference';
|
|
1359
1428
|
display?: Maybe<Scalars['String']['output']>;
|
|
1429
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
1430
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1431
|
+
identifier?: Maybe<Identifier>;
|
|
1360
1432
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1433
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1361
1434
|
};
|
|
1362
1435
|
export type DiagnosticReportLabGroup = ResourceGroup & {
|
|
1363
1436
|
__typename?: 'DiagnosticReportLabGroup';
|
|
@@ -1392,12 +1465,38 @@ export type DiagnosticReportLabGroupQueryResults = PagedQueryResults & {
|
|
|
1392
1465
|
export type DiagnosticReportPerformerReference = {
|
|
1393
1466
|
__typename?: 'DiagnosticReportPerformerReference';
|
|
1394
1467
|
display?: Maybe<Scalars['String']['output']>;
|
|
1468
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
1469
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1470
|
+
identifier?: Maybe<Identifier>;
|
|
1395
1471
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1472
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1396
1473
|
};
|
|
1397
1474
|
export type DiagnosticReportResultReference = {
|
|
1398
1475
|
__typename?: 'DiagnosticReportResultReference';
|
|
1399
1476
|
display?: Maybe<Scalars['String']['output']>;
|
|
1477
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
1478
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1479
|
+
identifier?: Maybe<Identifier>;
|
|
1480
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1481
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1482
|
+
};
|
|
1483
|
+
export type DiagnosticReportResultsInterpreterReference = {
|
|
1484
|
+
__typename?: 'DiagnosticReportResultsInterpreterReference';
|
|
1485
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1486
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
1487
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1488
|
+
identifier?: Maybe<Identifier>;
|
|
1489
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1490
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1491
|
+
};
|
|
1492
|
+
export type DiagnosticReportSubjectReference = {
|
|
1493
|
+
__typename?: 'DiagnosticReportSubjectReference';
|
|
1494
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1495
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
1496
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1497
|
+
identifier?: Maybe<Identifier>;
|
|
1400
1498
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1499
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1401
1500
|
};
|
|
1402
1501
|
/** Defines connection information after disconnection */
|
|
1403
1502
|
export type DisconnectConnection = {
|
|
@@ -1432,6 +1531,10 @@ export type DispenseRequest = {
|
|
|
1432
1531
|
/** Period A time period defined by a start and end date and optionally time. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions */
|
|
1433
1532
|
validityPeriod?: Maybe<Period>;
|
|
1434
1533
|
};
|
|
1534
|
+
export type DocumentReference = {
|
|
1535
|
+
__typename?: 'DocumentReference';
|
|
1536
|
+
id: Scalars['ID']['output'];
|
|
1537
|
+
};
|
|
1435
1538
|
/** Where to access the document */
|
|
1436
1539
|
export type DocumentReferenceAttachment = {
|
|
1437
1540
|
__typename?: 'DocumentReferenceAttachment';
|
|
@@ -1740,7 +1843,7 @@ export type ExplanationOfBenefit = {
|
|
|
1740
1843
|
};
|
|
1741
1844
|
export type ExplanationOfBenefitAdjudication = {
|
|
1742
1845
|
__typename?: 'ExplanationOfBenefitAdjudication';
|
|
1743
|
-
amount?: Maybe<
|
|
1846
|
+
amount?: Maybe<Money>;
|
|
1744
1847
|
category?: Maybe<CodeableConcept>;
|
|
1745
1848
|
reason?: Maybe<CodeableConcept>;
|
|
1746
1849
|
value?: Maybe<Scalars['Float']['output']>;
|
|
@@ -1770,32 +1873,32 @@ export type ExplanationOfBenefitCareTeamProviderReference = {
|
|
|
1770
1873
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1771
1874
|
type?: Maybe<Scalars['URI']['output']>;
|
|
1772
1875
|
};
|
|
1773
|
-
export type ExplanationOfBenefitCoverageReference = {
|
|
1774
|
-
__typename?: 'ExplanationOfBenefitCoverageReference';
|
|
1775
|
-
display?: Maybe<Scalars['String']['output']>;
|
|
1776
|
-
reference?: Maybe<Scalars['String']['output']>;
|
|
1777
|
-
type?: Maybe<Scalars['URI']['output']>;
|
|
1778
|
-
};
|
|
1779
1876
|
export type ExplanationOfBenefitDiagnosis = {
|
|
1780
1877
|
__typename?: 'ExplanationOfBenefitDiagnosis';
|
|
1781
1878
|
diagnosisCodeableConcept?: Maybe<CodeableConcept>;
|
|
1782
|
-
diagnosisReference?: Maybe<
|
|
1879
|
+
diagnosisReference?: Maybe<ExplanationOfBenefitDiagnosisDiagnosisReferenceReference>;
|
|
1783
1880
|
onAdmission?: Maybe<CodeableConcept>;
|
|
1784
1881
|
packageCode?: Maybe<CodeableConcept>;
|
|
1785
1882
|
sequence?: Maybe<Scalars['Int']['output']>;
|
|
1786
1883
|
type?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
1787
1884
|
};
|
|
1788
|
-
export type
|
|
1789
|
-
__typename?: '
|
|
1885
|
+
export type ExplanationOfBenefitDiagnosisDiagnosisReferenceReference = {
|
|
1886
|
+
__typename?: 'ExplanationOfBenefitDiagnosisDiagnosisReferenceReference';
|
|
1790
1887
|
display?: Maybe<Scalars['String']['output']>;
|
|
1791
1888
|
reference?: Maybe<Scalars['String']['output']>;
|
|
1792
1889
|
type?: Maybe<Scalars['URI']['output']>;
|
|
1793
1890
|
};
|
|
1794
1891
|
export type ExplanationOfBenefitInsurance = {
|
|
1795
1892
|
__typename?: 'ExplanationOfBenefitInsurance';
|
|
1796
|
-
coverage?: Maybe<
|
|
1893
|
+
coverage?: Maybe<ExplanationOfBenefitInsuranceCoverageReference>;
|
|
1797
1894
|
focal?: Maybe<Scalars['Boolean']['output']>;
|
|
1798
1895
|
};
|
|
1896
|
+
export type ExplanationOfBenefitInsuranceCoverageReference = {
|
|
1897
|
+
__typename?: 'ExplanationOfBenefitInsuranceCoverageReference';
|
|
1898
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1899
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
1900
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
1901
|
+
};
|
|
1799
1902
|
export type ExplanationOfBenefitInsurerReference = {
|
|
1800
1903
|
__typename?: 'ExplanationOfBenefitInsurerReference';
|
|
1801
1904
|
display?: Maybe<Scalars['String']['output']>;
|
|
@@ -1831,9 +1934,9 @@ export type ExplanationOfBenefitPayeePartyReference = {
|
|
|
1831
1934
|
};
|
|
1832
1935
|
export type ExplanationOfBenefitPayment = {
|
|
1833
1936
|
__typename?: 'ExplanationOfBenefitPayment';
|
|
1834
|
-
adjustment?: Maybe<
|
|
1937
|
+
adjustment?: Maybe<Money>;
|
|
1835
1938
|
adjustmentReason?: Maybe<CodeableConcept>;
|
|
1836
|
-
amount?: Maybe<
|
|
1939
|
+
amount?: Maybe<Money>;
|
|
1837
1940
|
date?: Maybe<Scalars['Date']['output']>;
|
|
1838
1941
|
type?: Maybe<CodeableConcept>;
|
|
1839
1942
|
};
|
|
@@ -1865,7 +1968,7 @@ export type ExplanationOfBenefitSupportingInfoValueReferenceReference = {
|
|
|
1865
1968
|
};
|
|
1866
1969
|
export type ExplanationOfBenefitTotal = {
|
|
1867
1970
|
__typename?: 'ExplanationOfBenefitTotal';
|
|
1868
|
-
amount?: Maybe<
|
|
1971
|
+
amount?: Maybe<Money>;
|
|
1869
1972
|
category?: Maybe<CodeableConcept>;
|
|
1870
1973
|
};
|
|
1871
1974
|
/**
|
|
@@ -2174,6 +2277,9 @@ export type GuestAccessToken = {
|
|
|
2174
2277
|
refreshToken: Scalars['String']['output'];
|
|
2175
2278
|
tokenType: Scalars['String']['output'];
|
|
2176
2279
|
};
|
|
2280
|
+
export type HealthLinkFilter = {
|
|
2281
|
+
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2282
|
+
};
|
|
2177
2283
|
/** Unified search result type */
|
|
2178
2284
|
export type HealthResourceSearchResult = {
|
|
2179
2285
|
__typename?: 'HealthResourceSearchResult';
|
|
@@ -3079,6 +3185,7 @@ export type Mutation = {
|
|
|
3079
3185
|
createConsent?: Maybe<Consent>;
|
|
3080
3186
|
createDataExportDirectDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
3081
3187
|
createGuestAccessToken: GuestAccessToken;
|
|
3188
|
+
createHealthLink: DocumentReference;
|
|
3082
3189
|
createMissingConsents?: Maybe<Scalars['String']['output']>;
|
|
3083
3190
|
createPersonWithClientId?: Maybe<PersonWithMetadata>;
|
|
3084
3191
|
createQuestionnaireResponse?: Maybe<ConsentQuestionnaireResponse>;
|
|
@@ -3299,6 +3406,7 @@ export type Mutation = {
|
|
|
3299
3406
|
/** @deprecated Use `updateTaskStatus` instead. */
|
|
3300
3407
|
taskUpdateStatus?: Maybe<TaskUpdateStatusResponse>;
|
|
3301
3408
|
updateAppointment: Appointment;
|
|
3409
|
+
updateCareTeamMember: CareTeam;
|
|
3302
3410
|
updateDeviceRegistration?: Maybe<OperationOutcome>;
|
|
3303
3411
|
updatePersonAndPatient?: Maybe<UpdatedPersonMetadata>;
|
|
3304
3412
|
updatePersonDetails: Array<UpdatePersonDetailsOutput>;
|
|
@@ -3334,6 +3442,9 @@ export type MutationCreateDataExportDirectDownloadUrlArgs = {
|
|
|
3334
3442
|
export type MutationCreateGuestAccessTokenArgs = {
|
|
3335
3443
|
clientKey: Scalars['String']['input'];
|
|
3336
3444
|
};
|
|
3445
|
+
export type MutationCreateHealthLinkArgs = {
|
|
3446
|
+
input: CreateHealthLinkInput;
|
|
3447
|
+
};
|
|
3337
3448
|
export type MutationCreateMissingConsentsArgs = {
|
|
3338
3449
|
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3339
3450
|
patientId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3475,6 +3586,9 @@ export type MutationTaskUpdateStatusArgs = {
|
|
|
3475
3586
|
export type MutationUpdateAppointmentArgs = {
|
|
3476
3587
|
appointment: UpdateAppointmentInput;
|
|
3477
3588
|
};
|
|
3589
|
+
export type MutationUpdateCareTeamMemberArgs = {
|
|
3590
|
+
participant: Array<InputMaybe<CareTeamParticipantInput>>;
|
|
3591
|
+
};
|
|
3478
3592
|
export type MutationUpdateDeviceRegistrationArgs = {
|
|
3479
3593
|
input: UpdateDeviceRegistrationRequest;
|
|
3480
3594
|
};
|
|
@@ -4682,6 +4796,7 @@ export type Query = {
|
|
|
4682
4796
|
/** Retrieves a list of vital signs based on the provided request parameters. */
|
|
4683
4797
|
getVitalSigns: ObservationQueryResults;
|
|
4684
4798
|
goals?: Maybe<GoalBundle>;
|
|
4799
|
+
healthLinks?: Maybe<Array<DocumentReference>>;
|
|
4685
4800
|
initSdk: SdkConfiguration;
|
|
4686
4801
|
login: LogInResponse;
|
|
4687
4802
|
patients?: Maybe<PatientBundle>;
|
|
@@ -4697,6 +4812,14 @@ export type Query = {
|
|
|
4697
4812
|
questionnaire?: Maybe<FhirFormQuestionnaire>;
|
|
4698
4813
|
questionnaireResponse?: Maybe<ConsentQuestionnaireResponse>;
|
|
4699
4814
|
questionnaireResponses?: Maybe<QuestionnaireResponseBundle>;
|
|
4815
|
+
/**
|
|
4816
|
+
* Questionnaire
|
|
4817
|
+
* A structured set of questions intended to guide the collection of answers from
|
|
4818
|
+
* end-users. Questionnaires provide detailed control over order, presentation,
|
|
4819
|
+
* phraseology and grouping to allow coherent, consistent data collection.
|
|
4820
|
+
* If the element is present, it must have either a @value, an @id, or extensions
|
|
4821
|
+
*/
|
|
4822
|
+
questionnaires?: Maybe<QuestionnaireBundle>;
|
|
4700
4823
|
refresh: RefreshToken;
|
|
4701
4824
|
relatedPersons?: Maybe<RelatedPersonBundle>;
|
|
4702
4825
|
requestConnection?: Maybe<RequestConnectionOutput>;
|
|
@@ -4710,7 +4833,6 @@ export type Query = {
|
|
|
4710
4833
|
searchProviders: SearchProvidersResults;
|
|
4711
4834
|
status?: Maybe<Scalars['String']['output']>;
|
|
4712
4835
|
subscription_subscription?: Maybe<Subscription_SubscriptionBundle>;
|
|
4713
|
-
temp?: Maybe<Temp>;
|
|
4714
4836
|
userProfile?: Maybe<Person>;
|
|
4715
4837
|
verificationStatus?: Maybe<VerificationResult>;
|
|
4716
4838
|
who?: Maybe<Scalars['String']['output']>;
|
|
@@ -4868,6 +4990,11 @@ export type QueryGetMedicationRequestArgs = {
|
|
|
4868
4990
|
export type QueryGetMedicationStatementsArgs = {
|
|
4869
4991
|
request?: InputMaybe<MedicationStatementQueryRequest>;
|
|
4870
4992
|
};
|
|
4993
|
+
export type QueryGetMemberConnectionsArgs = {
|
|
4994
|
+
integrationType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4995
|
+
status?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4996
|
+
syncStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4997
|
+
};
|
|
4871
4998
|
export type QueryGetOauthUrlArgs = {
|
|
4872
4999
|
connectionId: Scalars['String']['input'];
|
|
4873
5000
|
};
|
|
@@ -4908,6 +5035,9 @@ export type QueryGoalsArgs = {
|
|
|
4908
5035
|
id?: InputMaybe<SearchString>;
|
|
4909
5036
|
subject?: InputMaybe<SearchReference>;
|
|
4910
5037
|
};
|
|
5038
|
+
export type QueryHealthLinksArgs = {
|
|
5039
|
+
input?: InputMaybe<HealthLinkFilter>;
|
|
5040
|
+
};
|
|
4911
5041
|
export type QueryInitSdkArgs = {
|
|
4912
5042
|
clientKey: Scalars['String']['input'];
|
|
4913
5043
|
organizationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4978,6 +5108,9 @@ export type QueryQuestionnaireResponsesArgs = {
|
|
|
4978
5108
|
questionnaire?: InputMaybe<SearchReference>;
|
|
4979
5109
|
status?: InputMaybe<SearchToken>;
|
|
4980
5110
|
};
|
|
5111
|
+
export type QueryQuestionnairesArgs = {
|
|
5112
|
+
parameters: QuestionnaireSearchParameters;
|
|
5113
|
+
};
|
|
4981
5114
|
export type QueryRelatedPersonsArgs = {
|
|
4982
5115
|
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
4983
5116
|
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -5008,9 +5141,6 @@ export type QuerySubscription_SubscriptionArgs = {
|
|
|
5008
5141
|
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
5009
5142
|
_total?: InputMaybe<TotalType>;
|
|
5010
5143
|
};
|
|
5011
|
-
export type QueryTempArgs = {
|
|
5012
|
-
id: Scalars['ID']['input'];
|
|
5013
|
-
};
|
|
5014
5144
|
export type Questionnaire = Resource & {
|
|
5015
5145
|
__typename?: 'Questionnaire';
|
|
5016
5146
|
contained?: Maybe<Array<Maybe<Resource>>>;
|
|
@@ -5052,6 +5182,26 @@ export type QuestionnaireAnswerOptionValueReferenceReference = {
|
|
|
5052
5182
|
reference?: Maybe<Scalars['String']['output']>;
|
|
5053
5183
|
type?: Maybe<Scalars['URI']['output']>;
|
|
5054
5184
|
};
|
|
5185
|
+
export type QuestionnaireBundle = {
|
|
5186
|
+
__typename?: 'QuestionnaireBundle';
|
|
5187
|
+
entry?: Maybe<Array<Maybe<QuestionnaireBundleEntry>>>;
|
|
5188
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
5189
|
+
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
5190
|
+
meta?: Maybe<Meta>;
|
|
5191
|
+
timestamp?: Maybe<Scalars['Instant']['output']>;
|
|
5192
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
5193
|
+
type?: Maybe<Scalars['Code']['output']>;
|
|
5194
|
+
};
|
|
5195
|
+
export type QuestionnaireBundleEntry = {
|
|
5196
|
+
__typename?: 'QuestionnaireBundleEntry';
|
|
5197
|
+
fullUrl?: Maybe<Scalars['URI']['output']>;
|
|
5198
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
5199
|
+
link?: Maybe<Array<Maybe<BundleLink>>>;
|
|
5200
|
+
request?: Maybe<BundleRequest>;
|
|
5201
|
+
resource?: Maybe<Questionnaire>;
|
|
5202
|
+
response?: Maybe<BundleResponse>;
|
|
5203
|
+
search?: Maybe<BundleSearch>;
|
|
5204
|
+
};
|
|
5055
5205
|
export type QuestionnaireEnableWhen = {
|
|
5056
5206
|
__typename?: 'QuestionnaireEnableWhen';
|
|
5057
5207
|
answerBoolean?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5263,6 +5413,134 @@ export type QuestionnaireResponse_Input = {
|
|
|
5263
5413
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
5264
5414
|
subject?: InputMaybe<Scalars['String']['input']>;
|
|
5265
5415
|
};
|
|
5416
|
+
export type QuestionnaireSearchParameters = {
|
|
5417
|
+
/** limit records to this count. Default is 10 */
|
|
5418
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
5419
|
+
/** page number to retrieve */
|
|
5420
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
5421
|
+
/**
|
|
5422
|
+
* _id (FHIR type: token)
|
|
5423
|
+
* Logical id of this artifact
|
|
5424
|
+
*/
|
|
5425
|
+
_id?: InputMaybe<SearchString>;
|
|
5426
|
+
/**
|
|
5427
|
+
* _lastUpdated (FHIR type: date)
|
|
5428
|
+
* When the resource version last changed
|
|
5429
|
+
*/
|
|
5430
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
5431
|
+
/**
|
|
5432
|
+
* _profile (FHIR type: uri)
|
|
5433
|
+
* Profiles this resource claims to conform to
|
|
5434
|
+
*/
|
|
5435
|
+
_profile?: InputMaybe<SearchString>;
|
|
5436
|
+
/**
|
|
5437
|
+
* _security (FHIR type: token)
|
|
5438
|
+
* Security Labels applied to this resource
|
|
5439
|
+
*/
|
|
5440
|
+
_security?: InputMaybe<SearchToken>;
|
|
5441
|
+
/**
|
|
5442
|
+
* sort records by these fields. The fields can be nested fields. Prepend with "-" to indicate descending sort
|
|
5443
|
+
* Examples: ["id", "-meta.lastUpdated"]
|
|
5444
|
+
*/
|
|
5445
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
5446
|
+
/**
|
|
5447
|
+
* _source (FHIR type: uri)
|
|
5448
|
+
* Identifies where the resource comes from
|
|
5449
|
+
*/
|
|
5450
|
+
_source?: InputMaybe<SearchString>;
|
|
5451
|
+
/**
|
|
5452
|
+
* _tag (FHIR type: token)
|
|
5453
|
+
* Tags applied to this resource
|
|
5454
|
+
*/
|
|
5455
|
+
_tag?: InputMaybe<SearchToken>;
|
|
5456
|
+
/** return total number of records that meet this query */
|
|
5457
|
+
_total?: InputMaybe<TotalType>;
|
|
5458
|
+
/**
|
|
5459
|
+
* code (FHIR type: token)
|
|
5460
|
+
* A code that corresponds to one of its items in the questionnaire
|
|
5461
|
+
*/
|
|
5462
|
+
code?: InputMaybe<SearchToken>;
|
|
5463
|
+
/**
|
|
5464
|
+
* context (FHIR type: token)
|
|
5465
|
+
* A use context assigned to the questionnaire
|
|
5466
|
+
*/
|
|
5467
|
+
context?: InputMaybe<SearchToken>;
|
|
5468
|
+
/**
|
|
5469
|
+
* context-quantity (FHIR type: quantity)
|
|
5470
|
+
* A quantity- or range-valued use context assigned to the questionnaire
|
|
5471
|
+
*/
|
|
5472
|
+
context_quantity?: InputMaybe<SearchQuantity>;
|
|
5473
|
+
/**
|
|
5474
|
+
* context-type (FHIR type: token)
|
|
5475
|
+
* A type of use context assigned to the questionnaire
|
|
5476
|
+
*/
|
|
5477
|
+
context_type?: InputMaybe<SearchToken>;
|
|
5478
|
+
/**
|
|
5479
|
+
* date (FHIR type: date)
|
|
5480
|
+
* The questionnaire publication date
|
|
5481
|
+
*/
|
|
5482
|
+
date?: InputMaybe<SearchDate>;
|
|
5483
|
+
/**
|
|
5484
|
+
* definition (FHIR type: uri)
|
|
5485
|
+
* ElementDefinition - details for the item
|
|
5486
|
+
*/
|
|
5487
|
+
definition?: InputMaybe<SearchString>;
|
|
5488
|
+
/**
|
|
5489
|
+
* description (FHIR type: string)
|
|
5490
|
+
* The description of the questionnaire
|
|
5491
|
+
*/
|
|
5492
|
+
description?: InputMaybe<SearchString>;
|
|
5493
|
+
/**
|
|
5494
|
+
* effective (FHIR type: date)
|
|
5495
|
+
* The time during which the questionnaire is intended to be in use
|
|
5496
|
+
*/
|
|
5497
|
+
effective?: InputMaybe<SearchDate>;
|
|
5498
|
+
/**
|
|
5499
|
+
* identifier (FHIR type: token)
|
|
5500
|
+
* External identifier for the questionnaire
|
|
5501
|
+
*/
|
|
5502
|
+
identifier?: InputMaybe<SearchToken>;
|
|
5503
|
+
/**
|
|
5504
|
+
* jurisdiction (FHIR type: token)
|
|
5505
|
+
* Intended jurisdiction for the questionnaire
|
|
5506
|
+
*/
|
|
5507
|
+
jurisdiction?: InputMaybe<SearchToken>;
|
|
5508
|
+
/**
|
|
5509
|
+
* name (FHIR type: string)
|
|
5510
|
+
* Computationally friendly name of the questionnaire
|
|
5511
|
+
*/
|
|
5512
|
+
name?: InputMaybe<SearchString>;
|
|
5513
|
+
/**
|
|
5514
|
+
* publisher (FHIR type: string)
|
|
5515
|
+
* Name of the publisher of the questionnaire
|
|
5516
|
+
*/
|
|
5517
|
+
publisher?: InputMaybe<SearchString>;
|
|
5518
|
+
/**
|
|
5519
|
+
* status (FHIR type: token)
|
|
5520
|
+
* The current status of the questionnaire
|
|
5521
|
+
*/
|
|
5522
|
+
status?: InputMaybe<SearchToken>;
|
|
5523
|
+
/**
|
|
5524
|
+
* subject-type (FHIR type: token)
|
|
5525
|
+
* Resource that can be subject of QuestionnaireResponse
|
|
5526
|
+
*/
|
|
5527
|
+
subject_type?: InputMaybe<SearchToken>;
|
|
5528
|
+
/**
|
|
5529
|
+
* title (FHIR type: string)
|
|
5530
|
+
* The human-friendly name of the questionnaire
|
|
5531
|
+
*/
|
|
5532
|
+
title?: InputMaybe<SearchString>;
|
|
5533
|
+
/**
|
|
5534
|
+
* url (FHIR type: uri)
|
|
5535
|
+
* The uri that identifies the questionnaire
|
|
5536
|
+
*/
|
|
5537
|
+
url?: InputMaybe<SearchString>;
|
|
5538
|
+
/**
|
|
5539
|
+
* version (FHIR type: token)
|
|
5540
|
+
* The business version of the questionnaire
|
|
5541
|
+
*/
|
|
5542
|
+
version?: InputMaybe<SearchToken>;
|
|
5543
|
+
};
|
|
5266
5544
|
export declare enum Questionnaire_Enum_Schema {
|
|
5267
5545
|
QuestionnaireResponse = "QuestionnaireResponse"
|
|
5268
5546
|
}
|
|
@@ -5413,6 +5691,9 @@ export type ResourceGroup = {
|
|
|
5413
5691
|
/** Array of Strings representing the source of the data */
|
|
5414
5692
|
source?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
5415
5693
|
};
|
|
5694
|
+
export type ResourceInput = {
|
|
5695
|
+
resourceType: Scalars['String']['input'];
|
|
5696
|
+
};
|
|
5416
5697
|
export type ResourceReference = {
|
|
5417
5698
|
__typename?: 'ResourceReference';
|
|
5418
5699
|
reference?: Maybe<Scalars['String']['output']>;
|
|
@@ -5661,6 +5942,21 @@ export type SearchProvidersResults = {
|
|
|
5661
5942
|
pagingInfo?: Maybe<PagingInfoType>;
|
|
5662
5943
|
results?: Maybe<Array<Maybe<SearchProvidersResult>>>;
|
|
5663
5944
|
};
|
|
5945
|
+
export type SearchQuantity = {
|
|
5946
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
5947
|
+
missing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5948
|
+
notEquals?: InputMaybe<SearchQuantityValue>;
|
|
5949
|
+
prefix?: InputMaybe<Scalars['String']['input']>;
|
|
5950
|
+
searchType?: InputMaybe<Scalars['String']['input']>;
|
|
5951
|
+
system?: InputMaybe<Scalars['String']['input']>;
|
|
5952
|
+
value?: InputMaybe<Scalars['Decimal']['input']>;
|
|
5953
|
+
};
|
|
5954
|
+
export type SearchQuantityValue = {
|
|
5955
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
5956
|
+
prefix?: InputMaybe<Scalars['String']['input']>;
|
|
5957
|
+
system?: InputMaybe<Scalars['String']['input']>;
|
|
5958
|
+
value?: InputMaybe<Scalars['Decimal']['input']>;
|
|
5959
|
+
};
|
|
5664
5960
|
export type SearchReference = {
|
|
5665
5961
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
5666
5962
|
};
|
|
@@ -5708,20 +6004,92 @@ export type Security = {
|
|
|
5708
6004
|
id?: Maybe<Scalars['String']['output']>;
|
|
5709
6005
|
system?: Maybe<Scalars['String']['output']>;
|
|
5710
6006
|
};
|
|
5711
|
-
export type
|
|
6007
|
+
export type SecurityConfigInput = {
|
|
6008
|
+
passcode: Scalars['String']['input'];
|
|
6009
|
+
};
|
|
6010
|
+
export type ServiceRequest = Resource & {
|
|
5712
6011
|
__typename?: 'ServiceRequest';
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
|
|
6012
|
+
authoredOn?: Maybe<Scalars['DateTime']['output']>;
|
|
6013
|
+
category?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
6014
|
+
code?: Maybe<CodeableConcept>;
|
|
6015
|
+
doNotPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
6016
|
+
encounter?: Maybe<ServiceRequestEncounterReference>;
|
|
5717
6017
|
id: Scalars['ID']['output'];
|
|
5718
|
-
|
|
5719
|
-
|
|
5720
|
-
|
|
5721
|
-
|
|
5722
|
-
|
|
6018
|
+
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
6019
|
+
implicitRules?: Maybe<Scalars['URI']['output']>;
|
|
6020
|
+
intent?: Maybe<Scalars['Code']['output']>;
|
|
6021
|
+
language?: Maybe<Scalars['Code']['output']>;
|
|
6022
|
+
locationReference?: Maybe<Array<Maybe<ServiceRequestLocationReferenceReference>>>;
|
|
6023
|
+
meta?: Maybe<Meta>;
|
|
6024
|
+
occurrenceDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
6025
|
+
performer?: Maybe<Array<Maybe<ServiceRequestPerformerReference>>>;
|
|
5723
6026
|
reasonCode?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
6027
|
+
reasonReference?: Maybe<Array<Maybe<ServiceRequestReasonReferenceReference>>>;
|
|
6028
|
+
requester?: Maybe<ServiceRequestRequesterReference>;
|
|
5724
6029
|
resourceType?: Maybe<Scalars['String']['output']>;
|
|
6030
|
+
status?: Maybe<Scalars['Code']['output']>;
|
|
6031
|
+
subject?: Maybe<ServiceRequestSubjectReference>;
|
|
6032
|
+
};
|
|
6033
|
+
export type ServiceRequestBundle = {
|
|
6034
|
+
__typename?: 'ServiceRequestBundle';
|
|
6035
|
+
entry?: Maybe<Array<Maybe<ServiceRequestBundleEntry>>>;
|
|
6036
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
6037
|
+
};
|
|
6038
|
+
export type ServiceRequestBundleEntry = {
|
|
6039
|
+
__typename?: 'ServiceRequestBundleEntry';
|
|
6040
|
+
resource?: Maybe<ServiceRequest>;
|
|
6041
|
+
};
|
|
6042
|
+
export type ServiceRequestEncounterReference = {
|
|
6043
|
+
__typename?: 'ServiceRequestEncounterReference';
|
|
6044
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
6045
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
6046
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
6047
|
+
identifier?: Maybe<Identifier>;
|
|
6048
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
6049
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
6050
|
+
};
|
|
6051
|
+
export type ServiceRequestLocationReferenceReference = {
|
|
6052
|
+
__typename?: 'ServiceRequestLocationReferenceReference';
|
|
6053
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
6054
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
6055
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
6056
|
+
identifier?: Maybe<Identifier>;
|
|
6057
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
6058
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
6059
|
+
};
|
|
6060
|
+
export type ServiceRequestPerformerReference = {
|
|
6061
|
+
__typename?: 'ServiceRequestPerformerReference';
|
|
6062
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
6063
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
6064
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
6065
|
+
identifier?: Maybe<Identifier>;
|
|
6066
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
6067
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
6068
|
+
};
|
|
6069
|
+
export type ServiceRequestReasonReferenceReference = {
|
|
6070
|
+
__typename?: 'ServiceRequestReasonReferenceReference';
|
|
6071
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
6072
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
6073
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
6074
|
+
identifier?: Maybe<Identifier>;
|
|
6075
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
6076
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
6077
|
+
};
|
|
6078
|
+
export type ServiceRequestRequesterReference = {
|
|
6079
|
+
__typename?: 'ServiceRequestRequesterReference';
|
|
6080
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
6081
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
6082
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
6083
|
+
identifier?: Maybe<Identifier>;
|
|
6084
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
6085
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
6086
|
+
};
|
|
6087
|
+
export type ServiceRequestSubjectReference = {
|
|
6088
|
+
__typename?: 'ServiceRequestSubjectReference';
|
|
6089
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
6090
|
+
identifier?: Maybe<Identifier>;
|
|
6091
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
6092
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
5725
6093
|
};
|
|
5726
6094
|
export declare enum SortField {
|
|
5727
6095
|
Content = "content",
|
|
@@ -5758,12 +6126,27 @@ export declare enum SourceEnum {
|
|
|
5758
6126
|
Sayt = "SAYT",
|
|
5759
6127
|
Unspecified = "UNSPECIFIED"
|
|
5760
6128
|
}
|
|
6129
|
+
export type Specimen = {
|
|
6130
|
+
__typename?: 'Specimen';
|
|
6131
|
+
id: Scalars['ID']['output'];
|
|
6132
|
+
};
|
|
6133
|
+
export type SpecimenCollection = {
|
|
6134
|
+
__typename?: 'SpecimenCollection';
|
|
6135
|
+
bodySite?: Maybe<CodeableConcept>;
|
|
6136
|
+
};
|
|
5761
6137
|
export type SpecimenResource = {
|
|
5762
6138
|
__typename?: 'SpecimenResource';
|
|
5763
6139
|
accessionIdentifier?: Maybe<Identifier>;
|
|
6140
|
+
collection?: Maybe<SpecimenCollection>;
|
|
6141
|
+
condition?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
6142
|
+
id: Scalars['ID']['output'];
|
|
5764
6143
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
6144
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
6145
|
+
status?: Maybe<Scalars['Code']['output']>;
|
|
6146
|
+
subject?: Maybe<SpecimenSubject>;
|
|
5765
6147
|
type?: Maybe<CodeableConcept>;
|
|
5766
6148
|
};
|
|
6149
|
+
export type SpecimenSubject = Patient;
|
|
5767
6150
|
/** Represents the subject (patient or group) of the care plan. */
|
|
5768
6151
|
export type Subject = {
|
|
5769
6152
|
__typename?: 'Subject';
|
|
@@ -5902,6 +6285,8 @@ export type SyncErrorCoding = {
|
|
|
5902
6285
|
};
|
|
5903
6286
|
/** Defines the data sync statuses */
|
|
5904
6287
|
export declare enum SyncStatus {
|
|
6288
|
+
DataDeleted = "DATA_DELETED",
|
|
6289
|
+
Deleting = "DELETING",
|
|
5905
6290
|
Error = "ERROR",
|
|
5906
6291
|
Pending = "PENDING",
|
|
5907
6292
|
Retrieved = "RETRIEVED",
|
|
@@ -6013,10 +6398,6 @@ export type TelemetryConfig = {
|
|
|
6013
6398
|
collectorUrl: Scalars['String']['output'];
|
|
6014
6399
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
6015
6400
|
};
|
|
6016
|
-
export type Temp = {
|
|
6017
|
-
__typename?: 'Temp';
|
|
6018
|
-
id: Scalars['ID']['output'];
|
|
6019
|
-
};
|
|
6020
6401
|
export type Timing = {
|
|
6021
6402
|
__typename?: 'Timing';
|
|
6022
6403
|
code?: Maybe<CodeableConcept>;
|
|
@@ -6172,8 +6553,14 @@ export type Variant = {
|
|
|
6172
6553
|
percent: Scalars['Float']['output'];
|
|
6173
6554
|
value: Scalars['Boolean']['output'];
|
|
6174
6555
|
};
|
|
6556
|
+
/** Error codes for verification failures */
|
|
6557
|
+
export declare enum VerificationErrorCode {
|
|
6558
|
+
PersonMatchError = "PERSON_MATCH_ERROR",
|
|
6559
|
+
ServerError = "SERVER_ERROR"
|
|
6560
|
+
}
|
|
6175
6561
|
export type VerificationResult = {
|
|
6176
6562
|
__typename?: 'VerificationResult';
|
|
6563
|
+
errorCode?: Maybe<VerificationErrorCode>;
|
|
6177
6564
|
failureAction?: Maybe<CodeableConcept>;
|
|
6178
6565
|
id: Scalars['ID']['output'];
|
|
6179
6566
|
implicitRules?: Maybe<Scalars['URI']['output']>;
|