@icanbwell/bwell-sdk-ts 1.44.0-rc.1762272531 → 1.45.0
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/graphql/schema.d.ts +67 -2
- package/package.json +1 -1
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -4831,6 +4831,8 @@ export type Query = {
|
|
|
4831
4831
|
* Searches providers based on filters.
|
|
4832
4832
|
*/
|
|
4833
4833
|
searchProviders: SearchProvidersResults;
|
|
4834
|
+
serviceRequests?: Maybe<ServiceRequestBundle>;
|
|
4835
|
+
specimens?: Maybe<SpecimenBundle>;
|
|
4834
4836
|
status?: Maybe<Scalars['String']['output']>;
|
|
4835
4837
|
subscription_subscription?: Maybe<Subscription_SubscriptionBundle>;
|
|
4836
4838
|
userProfile?: Maybe<Person>;
|
|
@@ -5132,6 +5134,24 @@ export type QuerySearchHealthResourcesArgs = {
|
|
|
5132
5134
|
export type QuerySearchProvidersArgs = {
|
|
5133
5135
|
searchProvidersInput?: InputMaybe<SearchProvidersInput>;
|
|
5134
5136
|
};
|
|
5137
|
+
export type QueryServiceRequestsArgs = {
|
|
5138
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
5139
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
5140
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
5141
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
5142
|
+
_total?: InputMaybe<TotalType>;
|
|
5143
|
+
id?: InputMaybe<SearchString>;
|
|
5144
|
+
patient?: InputMaybe<SearchReference>;
|
|
5145
|
+
};
|
|
5146
|
+
export type QuerySpecimensArgs = {
|
|
5147
|
+
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
5148
|
+
_getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
|
|
5149
|
+
_lastUpdated?: InputMaybe<SearchDate>;
|
|
5150
|
+
_sort?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
5151
|
+
_total?: InputMaybe<TotalType>;
|
|
5152
|
+
id?: InputMaybe<SearchString>;
|
|
5153
|
+
patient?: InputMaybe<SearchReference>;
|
|
5154
|
+
};
|
|
5135
5155
|
export type QuerySubscription_SubscriptionArgs = {
|
|
5136
5156
|
_count?: InputMaybe<Scalars['Int']['input']>;
|
|
5137
5157
|
_debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6126,18 +6146,52 @@ export declare enum SourceEnum {
|
|
|
6126
6146
|
Sayt = "SAYT",
|
|
6127
6147
|
Unspecified = "UNSPECIFIED"
|
|
6128
6148
|
}
|
|
6129
|
-
export type Specimen = {
|
|
6149
|
+
export type Specimen = Resource & {
|
|
6130
6150
|
__typename?: 'Specimen';
|
|
6151
|
+
accessionIdentifier?: Maybe<Identifier>;
|
|
6152
|
+
collection?: Maybe<SpecimenCollection>;
|
|
6153
|
+
condition?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
6131
6154
|
id: Scalars['ID']['output'];
|
|
6155
|
+
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
6156
|
+
implicitRules?: Maybe<Scalars['URI']['output']>;
|
|
6157
|
+
language?: Maybe<Scalars['Code']['output']>;
|
|
6158
|
+
meta?: Maybe<Meta>;
|
|
6159
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
6160
|
+
status?: Maybe<Scalars['Code']['output']>;
|
|
6161
|
+
subject?: Maybe<SpecimenSubjectReference>;
|
|
6162
|
+
type?: Maybe<CodeableConcept>;
|
|
6163
|
+
};
|
|
6164
|
+
export type SpecimenBundle = {
|
|
6165
|
+
__typename?: 'SpecimenBundle';
|
|
6166
|
+
entry?: Maybe<Array<Maybe<SpecimenBundleEntry>>>;
|
|
6167
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
6168
|
+
};
|
|
6169
|
+
export type SpecimenBundleEntry = {
|
|
6170
|
+
__typename?: 'SpecimenBundleEntry';
|
|
6171
|
+
resource?: Maybe<Specimen>;
|
|
6132
6172
|
};
|
|
6133
6173
|
export type SpecimenCollection = {
|
|
6134
6174
|
__typename?: 'SpecimenCollection';
|
|
6135
6175
|
bodySite?: Maybe<CodeableConcept>;
|
|
6176
|
+
collectedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
6177
|
+
collector?: Maybe<SpecimenCollectionCollectorReference>;
|
|
6178
|
+
extension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
6179
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
6180
|
+
method?: Maybe<CodeableConcept>;
|
|
6181
|
+
modifierExtension?: Maybe<Array<Maybe<FhirExtension>>>;
|
|
6182
|
+
quantity?: Maybe<Quantity>;
|
|
6183
|
+
};
|
|
6184
|
+
export type SpecimenCollectionCollectorReference = {
|
|
6185
|
+
__typename?: 'SpecimenCollectionCollectorReference';
|
|
6186
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
6187
|
+
identifier?: Maybe<Identifier>;
|
|
6188
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
6189
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
6136
6190
|
};
|
|
6137
6191
|
export type SpecimenResource = {
|
|
6138
6192
|
__typename?: 'SpecimenResource';
|
|
6139
6193
|
accessionIdentifier?: Maybe<Identifier>;
|
|
6140
|
-
collection?: Maybe<
|
|
6194
|
+
collection?: Maybe<SpecimenResourceCollection>;
|
|
6141
6195
|
condition?: Maybe<Array<Maybe<CodeableConcept>>>;
|
|
6142
6196
|
id: Scalars['ID']['output'];
|
|
6143
6197
|
identifier?: Maybe<Array<Maybe<Identifier>>>;
|
|
@@ -6146,7 +6200,18 @@ export type SpecimenResource = {
|
|
|
6146
6200
|
subject?: Maybe<SpecimenSubject>;
|
|
6147
6201
|
type?: Maybe<CodeableConcept>;
|
|
6148
6202
|
};
|
|
6203
|
+
export type SpecimenResourceCollection = {
|
|
6204
|
+
__typename?: 'SpecimenResourceCollection';
|
|
6205
|
+
bodySite?: Maybe<CodeableConcept>;
|
|
6206
|
+
};
|
|
6149
6207
|
export type SpecimenSubject = Patient;
|
|
6208
|
+
export type SpecimenSubjectReference = {
|
|
6209
|
+
__typename?: 'SpecimenSubjectReference';
|
|
6210
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
6211
|
+
identifier?: Maybe<Identifier>;
|
|
6212
|
+
reference?: Maybe<Scalars['String']['output']>;
|
|
6213
|
+
type?: Maybe<Scalars['URI']['output']>;
|
|
6214
|
+
};
|
|
6150
6215
|
/** Represents the subject (patient or group) of the care plan. */
|
|
6151
6216
|
export type Subject = {
|
|
6152
6217
|
__typename?: 'Subject';
|