@icanbwell/bwell-sdk-ts 1.30.0-rc.1748968842 → 1.31.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.
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * This file is automatically generated. Please do not edit this file directly.
3
3
  */
4
- export declare const VERSION = "1.30.0-rc.1748968842";
4
+ export declare const VERSION = "1.31.0";
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * This file is automatically generated. Please do not edit this file directly.
3
3
  */
4
- export const VERSION = "1.30.0-rc.1748968842";
4
+ export const VERSION = "1.31.0";
@@ -399,6 +399,10 @@ export type AppointmentSupportingInformationReference = {
399
399
  };
400
400
  /** Individual who assert the record */
401
401
  export type Asserter = Patient | Practitioner;
402
+ export type Attachment = {
403
+ __typename?: 'Attachment';
404
+ data?: Maybe<Scalars['Base64Binary']['output']>;
405
+ };
402
406
  export type AttachmentInput = {
403
407
  contentType?: InputMaybe<Scalars['Code']['input']>;
404
408
  creation?: InputMaybe<Scalars['DateTime']['input']>;
@@ -1198,12 +1202,53 @@ export type DeviceRequest = {
1198
1202
  id: Scalars['ID']['output'];
1199
1203
  resourceType?: Maybe<Scalars['String']['output']>;
1200
1204
  };
1201
- export type DiagnosticReport = {
1205
+ export type DiagnosticReport = Resource & {
1202
1206
  __typename?: 'DiagnosticReport';
1207
+ basedOn?: Maybe<Array<Maybe<DiagnosticReportBasedOnReference>>>;
1208
+ category?: Maybe<Array<Maybe<CodeableConcept>>>;
1209
+ code?: Maybe<CodeableConcept>;
1210
+ effectiveDateTime?: Maybe<Scalars['DateTime']['output']>;
1211
+ encounter?: Maybe<DiagnosticReportEncounterReference>;
1203
1212
  /** Unique identifier for the diagnostic report (non-nullable) */
1204
- id?: Maybe<Scalars['ID']['output']>;
1213
+ id: Scalars['ID']['output'];
1214
+ implicitRules?: Maybe<Scalars['URI']['output']>;
1215
+ issued?: Maybe<Scalars['Instant']['output']>;
1216
+ language?: Maybe<Scalars['Code']['output']>;
1217
+ meta?: Maybe<Meta>;
1218
+ performer?: Maybe<Array<Maybe<DiagnosticReportPerformerReference>>>;
1219
+ presentedForm?: Maybe<Array<Maybe<Attachment>>>;
1205
1220
  /** Resource type for the diagnostic report */
1206
1221
  resourceType?: Maybe<Scalars['String']['output']>;
1222
+ result?: Maybe<Array<Maybe<DiagnosticReportResultReference>>>;
1223
+ status?: Maybe<Scalars['Code']['output']>;
1224
+ };
1225
+ export type DiagnosticReportBasedOnReference = {
1226
+ __typename?: 'DiagnosticReportBasedOnReference';
1227
+ display?: Maybe<Scalars['String']['output']>;
1228
+ reference?: Maybe<Scalars['String']['output']>;
1229
+ };
1230
+ export type DiagnosticReportBundle = {
1231
+ __typename?: 'DiagnosticReportBundle';
1232
+ entry?: Maybe<Array<Maybe<DiagnosticReportBundleEntry>>>;
1233
+ };
1234
+ export type DiagnosticReportBundleEntry = {
1235
+ __typename?: 'DiagnosticReportBundleEntry';
1236
+ resource?: Maybe<DiagnosticReport>;
1237
+ };
1238
+ export type DiagnosticReportEncounterReference = {
1239
+ __typename?: 'DiagnosticReportEncounterReference';
1240
+ display?: Maybe<Scalars['String']['output']>;
1241
+ reference?: Maybe<Scalars['String']['output']>;
1242
+ };
1243
+ export type DiagnosticReportPerformerReference = {
1244
+ __typename?: 'DiagnosticReportPerformerReference';
1245
+ display?: Maybe<Scalars['String']['output']>;
1246
+ reference?: Maybe<Scalars['String']['output']>;
1247
+ };
1248
+ export type DiagnosticReportResultReference = {
1249
+ __typename?: 'DiagnosticReportResultReference';
1250
+ display?: Maybe<Scalars['String']['output']>;
1251
+ reference?: Maybe<Scalars['String']['output']>;
1207
1252
  };
1208
1253
  /** Defines connection information after disconnection */
1209
1254
  export type DisconnectConnection = {
@@ -4112,6 +4157,7 @@ export type Query = {
4112
4157
  cancelationReasons: CodeSystem;
4113
4158
  consent?: Maybe<Array<Maybe<LegacyConsent>>>;
4114
4159
  consentAsyncTasks?: Maybe<Array<Maybe<Job>>>;
4160
+ diagnosticReports?: Maybe<DiagnosticReportBundle>;
4115
4161
  findPersonWithClientSlugAndId?: Maybe<PersonInfoForLogin>;
4116
4162
  getAllergyIntoleranceGroups: AllergyIntoleranceGroupQueryResults;
4117
4163
  /** Retrieves a list of AllergyIntolerance resources based on the provided search criteria. */
@@ -4209,6 +4255,7 @@ export type QueryAppointmentsArgs = {
4209
4255
  _source?: InputMaybe<SearchString>;
4210
4256
  date?: InputMaybe<SearchDate>;
4211
4257
  id?: InputMaybe<SearchString>;
4258
+ status?: InputMaybe<SearchToken>;
4212
4259
  supporting_info?: InputMaybe<SearchReference>;
4213
4260
  };
4214
4261
  export type QueryBootstrapArgs = {
@@ -4231,6 +4278,11 @@ export type QueryConsentAsyncTasksArgs = {
4231
4278
  start?: InputMaybe<Scalars['Int']['input']>;
4232
4279
  status: Array<InputMaybe<Scalars['String']['input']>>;
4233
4280
  };
4281
+ export type QueryDiagnosticReportsArgs = {
4282
+ _count?: InputMaybe<Scalars['Int']['input']>;
4283
+ _getpagesoffset?: InputMaybe<Scalars['Int']['input']>;
4284
+ id?: InputMaybe<SearchString>;
4285
+ };
4234
4286
  export type QueryFindPersonWithClientSlugAndIdArgs = {
4235
4287
  input?: InputMaybe<ClientSlugAndIdentifierInput>;
4236
4288
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icanbwell/bwell-sdk-ts",
3
- "version": "1.30.0-rc.1748968842",
3
+ "version": "1.31.0",
4
4
  "description": "b.well TypeScript SDK",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",