@icanbwell/bwell-sdk-ts 1.43.0-rc.1761326381 → 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/questionnaire/index.d.ts +1 -0
- package/dist/api/base/questionnaire/index.js +1 -0
- package/dist/api/base/questionnaire/questionnaire-manager.d.ts +14 -4
- package/dist/api/base/questionnaire/questionnaires-request.d.ts +18 -0
- package/dist/api/base/questionnaire/questionnaires-request.js +42 -0
- package/dist/api/graphql-api/questionnaire/get-questionnaires-request-factory.d.ts +6 -0
- package/dist/api/graphql-api/questionnaire/get-questionnaires-request-factory.js +16 -0
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.d.ts +3 -1
- package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.js +20 -2
- package/dist/api/graphql-api/questionnaire/index.d.ts +1 -0
- package/dist/api/graphql-api/questionnaire/index.js +1 -0
- package/dist/graphql/operations/index.d.ts +8 -0
- package/dist/graphql/operations/index.js +17 -0
- package/dist/graphql/operations/types.d.ts +688 -0
- package/dist/graphql/schema.d.ts +338 -10
- 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 */
|
|
@@ -1260,6 +1316,8 @@ export type DataSource = {
|
|
|
1260
1316
|
category: ConnectionCategory;
|
|
1261
1317
|
/** Uniquely identifies a data source */
|
|
1262
1318
|
id: Scalars['String']['output'];
|
|
1319
|
+
/** Specifies whether the connection is direct or indirect or proa */
|
|
1320
|
+
integrationType?: Maybe<Scalars['String']['output']>;
|
|
1263
1321
|
/** Data source is direct or not */
|
|
1264
1322
|
isDirect: Scalars['Boolean']['output'];
|
|
1265
1323
|
/** Name of data source */
|
|
@@ -3348,6 +3406,7 @@ export type Mutation = {
|
|
|
3348
3406
|
/** @deprecated Use `updateTaskStatus` instead. */
|
|
3349
3407
|
taskUpdateStatus?: Maybe<TaskUpdateStatusResponse>;
|
|
3350
3408
|
updateAppointment: Appointment;
|
|
3409
|
+
updateCareTeamMember: CareTeam;
|
|
3351
3410
|
updateDeviceRegistration?: Maybe<OperationOutcome>;
|
|
3352
3411
|
updatePersonAndPatient?: Maybe<UpdatedPersonMetadata>;
|
|
3353
3412
|
updatePersonDetails: Array<UpdatePersonDetailsOutput>;
|
|
@@ -3527,6 +3586,9 @@ export type MutationTaskUpdateStatusArgs = {
|
|
|
3527
3586
|
export type MutationUpdateAppointmentArgs = {
|
|
3528
3587
|
appointment: UpdateAppointmentInput;
|
|
3529
3588
|
};
|
|
3589
|
+
export type MutationUpdateCareTeamMemberArgs = {
|
|
3590
|
+
participant: Array<InputMaybe<CareTeamParticipantInput>>;
|
|
3591
|
+
};
|
|
3530
3592
|
export type MutationUpdateDeviceRegistrationArgs = {
|
|
3531
3593
|
input: UpdateDeviceRegistrationRequest;
|
|
3532
3594
|
};
|
|
@@ -4750,6 +4812,14 @@ export type Query = {
|
|
|
4750
4812
|
questionnaire?: Maybe<FhirFormQuestionnaire>;
|
|
4751
4813
|
questionnaireResponse?: Maybe<ConsentQuestionnaireResponse>;
|
|
4752
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>;
|
|
4753
4823
|
refresh: RefreshToken;
|
|
4754
4824
|
relatedPersons?: Maybe<RelatedPersonBundle>;
|
|
4755
4825
|
requestConnection?: Maybe<RequestConnectionOutput>;
|
|
@@ -5038,6 +5108,9 @@ export type QueryQuestionnaireResponsesArgs = {
|
|
|
5038
5108
|
questionnaire?: InputMaybe<SearchReference>;
|
|
5039
5109
|
status?: InputMaybe<SearchToken>;
|
|
5040
5110
|
};
|
|
5111
|
+
export type QueryQuestionnairesArgs = {
|
|
5112
|
+
parameters: QuestionnaireSearchParameters;
|
|
5113
|
+
};
|
|
5041
5114
|
export type QueryRelatedPersonsArgs = {
|
|
5042
5115
|
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
5043
5116
|
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -5109,6 +5182,26 @@ export type QuestionnaireAnswerOptionValueReferenceReference = {
|
|
|
5109
5182
|
reference?: Maybe<Scalars['String']['output']>;
|
|
5110
5183
|
type?: Maybe<Scalars['URI']['output']>;
|
|
5111
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
|
+
};
|
|
5112
5205
|
export type QuestionnaireEnableWhen = {
|
|
5113
5206
|
__typename?: 'QuestionnaireEnableWhen';
|
|
5114
5207
|
answerBoolean?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5320,6 +5413,134 @@ export type QuestionnaireResponse_Input = {
|
|
|
5320
5413
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
5321
5414
|
subject?: InputMaybe<Scalars['String']['input']>;
|
|
5322
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
|
+
};
|
|
5323
5544
|
export declare enum Questionnaire_Enum_Schema {
|
|
5324
5545
|
QuestionnaireResponse = "QuestionnaireResponse"
|
|
5325
5546
|
}
|
|
@@ -5721,6 +5942,21 @@ export type SearchProvidersResults = {
|
|
|
5721
5942
|
pagingInfo?: Maybe<PagingInfoType>;
|
|
5722
5943
|
results?: Maybe<Array<Maybe<SearchProvidersResult>>>;
|
|
5723
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
|
+
};
|
|
5724
5960
|
export type SearchReference = {
|
|
5725
5961
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
5726
5962
|
};
|
|
@@ -5771,20 +6007,89 @@ export type Security = {
|
|
|
5771
6007
|
export type SecurityConfigInput = {
|
|
5772
6008
|
passcode: Scalars['String']['input'];
|
|
5773
6009
|
};
|
|
5774
|
-
export type ServiceRequest = {
|
|
6010
|
+
export type ServiceRequest = Resource & {
|
|
5775
6011
|
__typename?: 'ServiceRequest';
|
|
5776
|
-
|
|
5777
|
-
|
|
5778
|
-
|
|
5779
|
-
|
|
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>;
|
|
5780
6017
|
id: Scalars['ID']['output'];
|
|
5781
|
-
|
|
5782
|
-
|
|
5783
|
-
|
|
5784
|
-
|
|
5785
|
-
|
|
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>>>;
|
|
5786
6026
|
reasonCode?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
6027
|
+
reasonReference?: Maybe<Array<Maybe<ServiceRequestReasonReferenceReference>>>;
|
|
6028
|
+
requester?: Maybe<ServiceRequestRequesterReference>;
|
|
5787
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']>;
|
|
5788
6093
|
};
|
|
5789
6094
|
export declare enum SortField {
|
|
5790
6095
|
Content = "content",
|
|
@@ -5821,12 +6126,27 @@ export declare enum SourceEnum {
|
|
|
5821
6126
|
Sayt = "SAYT",
|
|
5822
6127
|
Unspecified = "UNSPECIFIED"
|
|
5823
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
|
+
};
|
|
5824
6137
|
export type SpecimenResource = {
|
|
5825
6138
|
__typename?: 'SpecimenResource';
|
|
5826
6139
|
accessionIdentifier?: Maybe<Identifier>;
|
|
6140
|
+
collection?: Maybe<SpecimenCollection>;
|
|
6141
|
+
condition?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
6142
|
+
id: Scalars['ID']['output'];
|
|
5827
6143
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
6144
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
6145
|
+
status?: Maybe<Scalars['Code']['output']>;
|
|
6146
|
+
subject?: Maybe<SpecimenSubject>;
|
|
5828
6147
|
type?: Maybe<CodeableConcept>;
|
|
5829
6148
|
};
|
|
6149
|
+
export type SpecimenSubject = Patient;
|
|
5830
6150
|
/** Represents the subject (patient or group) of the care plan. */
|
|
5831
6151
|
export type Subject = {
|
|
5832
6152
|
__typename?: 'Subject';
|
|
@@ -5965,6 +6285,8 @@ export type SyncErrorCoding = {
|
|
|
5965
6285
|
};
|
|
5966
6286
|
/** Defines the data sync statuses */
|
|
5967
6287
|
export declare enum SyncStatus {
|
|
6288
|
+
DataDeleted = "DATA_DELETED",
|
|
6289
|
+
Deleting = "DELETING",
|
|
5968
6290
|
Error = "ERROR",
|
|
5969
6291
|
Pending = "PENDING",
|
|
5970
6292
|
Retrieved = "RETRIEVED",
|
|
@@ -6231,8 +6553,14 @@ export type Variant = {
|
|
|
6231
6553
|
percent: Scalars['Float']['output'];
|
|
6232
6554
|
value: Scalars['Boolean']['output'];
|
|
6233
6555
|
};
|
|
6556
|
+
/** Error codes for verification failures */
|
|
6557
|
+
export declare enum VerificationErrorCode {
|
|
6558
|
+
PersonMatchError = "PERSON_MATCH_ERROR",
|
|
6559
|
+
ServerError = "SERVER_ERROR"
|
|
6560
|
+
}
|
|
6234
6561
|
export type VerificationResult = {
|
|
6235
6562
|
__typename?: 'VerificationResult';
|
|
6563
|
+
errorCode?: Maybe<VerificationErrorCode>;
|
|
6236
6564
|
failureAction?: Maybe<CodeableConcept>;
|
|
6237
6565
|
id: Scalars['ID']['output'];
|
|
6238
6566
|
implicitRules?: Maybe<Scalars['URI']['output']>;
|
package/dist/graphql/schema.js
CHANGED
|
@@ -413,6 +413,8 @@ export var SourceEnum;
|
|
|
413
413
|
/** Defines the data sync statuses */
|
|
414
414
|
export var SyncStatus;
|
|
415
415
|
(function (SyncStatus) {
|
|
416
|
+
SyncStatus["DataDeleted"] = "DATA_DELETED";
|
|
417
|
+
SyncStatus["Deleting"] = "DELETING";
|
|
416
418
|
SyncStatus["Error"] = "ERROR";
|
|
417
419
|
SyncStatus["Pending"] = "PENDING";
|
|
418
420
|
SyncStatus["Retrieved"] = "RETRIEVED";
|
|
@@ -438,3 +440,9 @@ export var TotalType;
|
|
|
438
440
|
TotalType["Accurate"] = "accurate";
|
|
439
441
|
TotalType["Estimate"] = "estimate";
|
|
440
442
|
})(TotalType || (TotalType = {}));
|
|
443
|
+
/** Error codes for verification failures */
|
|
444
|
+
export var VerificationErrorCode;
|
|
445
|
+
(function (VerificationErrorCode) {
|
|
446
|
+
VerificationErrorCode["PersonMatchError"] = "PERSON_MATCH_ERROR";
|
|
447
|
+
VerificationErrorCode["ServerError"] = "SERVER_ERROR";
|
|
448
|
+
})(VerificationErrorCode || (VerificationErrorCode = {}));
|