@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1756482682 → 2.0.0-alpha.0-rc.1756490690

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 = "2.0.0-alpha.0-rc.1756482682";
4
+ export declare const VERSION = "2.0.0-alpha.0-rc.1756490690";
@@ -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 = "2.0.0-alpha.0-rc.1756482682";
4
+ export const VERSION = "2.0.0-alpha.0-rc.1756490690";
@@ -8,5 +8,5 @@ import { HealthDataRequest } from "../../base/index.js";
8
8
  */
9
9
  export type HealthDataRequestVariables = GetAllergyIntolerancesQueryVariables;
10
10
  export declare class HealthDataRequestFactory implements RequestFactory<HealthDataRequest, HealthDataRequestVariables> {
11
- create(request: HealthDataRequest): GetAllergyIntolerancesQueryVariables;
11
+ create(request: HealthDataRequest): HealthDataRequestVariables;
12
12
  }
@@ -3,6 +3,7 @@ export class HealthDataRequestFactory {
3
3
  var _a, _b;
4
4
  const input = request.data();
5
5
  return {
6
+ id: input.ids ? { values: input.ids } : null,
6
7
  page: input.page,
7
8
  pageSize: input.pageSize,
8
9
  code: (_a = input.groupCode) !== null && _a !== void 0 ? _a : null,
@@ -46,7 +46,7 @@ export declare const GetMemberConnectionsDocument = "\n query getMemberConnec
46
46
  export declare const GetOauthUrlDocument = "\n query getOauthUrl($connectionId: String!) {\n getOauthUrl(connectionId: $connectionId) {\n redirectUrl\n }\n}\n ";
47
47
  export declare const UpdateDeviceRegistrationDocument = "\n mutation updateDeviceRegistration($deviceToken: String!, $platformName: String!, $applicationName: String!, $notificationPreference: Boolean!) {\n updateDeviceRegistration(\n input: {deviceToken: $deviceToken, platform: $platformName, applicationName: $applicationName, notificationPreference: $notificationPreference}\n ) {\n id\n }\n}\n ";
48
48
  export declare const GetAllergyIntoleranceGroupsDocument = "\n query getAllergyIntoleranceGroups($request: AllergyIntoleranceGroupQueryRequest) {\n getAllergyIntoleranceGroups(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n coding {\n ...CodingFields\n }\n references\n criticality {\n ...CodingFields\n }\n recordedDate\n source\n sourceDisplay\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n ";
49
- export declare const GetAllergyIntolerancesDocument = "\n query getAllergyIntolerances($page: Int, $pageSize: Int, $code: SearchToken, $lastUpdated: SearchDate) {\n allergyIntolerances(\n _count: $pageSize\n _getpagesoffset: $page\n code: $code\n _lastUpdated: $lastUpdated\n ) {\n id\n entry {\n id\n resource {\n id\n meta {\n ...MetaFields\n }\n resourceType\n category\n code {\n ...CodeableConceptFields\n }\n criticality\n onsetDateTime\n onsetPeriod {\n ...PeriodFields\n }\n text {\n ...NarrativeFields\n }\n type\n recorder {\n id\n reference\n type\n resource {\n ...PractitionerFields\n }\n }\n lastOccurrence\n reaction {\n ...ReactionFields\n }\n recordedDate\n note {\n ...AnnotationFields\n }\n verificationStatus {\n ...CodeableConceptFields\n }\n clinicalStatus {\n ...CodeableConceptFields\n }\n }\n }\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n id\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment NarrativeFields on Narrative {\n div\n status\n}\n \n\n fragment PractitionerFields on Practitioner {\n id\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n id\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment ReactionFields on AllergyIntoleranceReaction {\n id\n onset\n severity\n description\n manifestation {\n ...CodeableConceptFields\n }\n note {\n ...AnnotationFields\n }\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n id\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment AnnotationFields on Annotation {\n id\n authorString\n time\n text\n}\n \n\n fragment AnnotationFields on Annotation {\n id\n authorString\n time\n text\n}\n ";
49
+ export declare const GetAllergyIntolerancesDocument = "\n query getAllergyIntolerances($page: Int, $pageSize: Int, $code: SearchToken, $id: SearchString, $lastUpdated: SearchDate) {\n allergyIntolerances(\n _count: $pageSize\n _getpagesoffset: $page\n code: $code\n id: $id\n _lastUpdated: $lastUpdated\n ) {\n id\n entry {\n id\n resource {\n id\n meta {\n ...MetaFields\n }\n resourceType\n category\n code {\n ...CodeableConceptFields\n }\n criticality\n onsetDateTime\n onsetPeriod {\n ...PeriodFields\n }\n text {\n ...NarrativeFields\n }\n type\n recorder {\n id\n reference\n type\n resource {\n ...PractitionerFields\n }\n }\n lastOccurrence\n reaction {\n ...ReactionFields\n }\n recordedDate\n note {\n ...AnnotationFields\n }\n verificationStatus {\n ...CodeableConceptFields\n }\n clinicalStatus {\n ...CodeableConceptFields\n }\n }\n }\n }\n}\n \n fragment MetaFields on Meta {\n versionId\n lastUpdated\n source\n security {\n ...CodingFields\n }\n tag {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment CodeableConceptFields on CodeableConcept {\n id\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n \n\n fragment NarrativeFields on Narrative {\n div\n status\n}\n \n\n fragment PractitionerFields on Practitioner {\n id\n name {\n ...HumanNameFields\n }\n identifier {\n ...IdentifierFields\n }\n}\n \n fragment HumanNameFields on HumanName {\n text\n family\n given\n prefix\n suffix\n}\n \n\n fragment IdentifierFields on Identifier {\n id\n type {\n ...CodeableConceptFields\n }\n system\n value\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n id\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment ReactionFields on AllergyIntoleranceReaction {\n id\n onset\n severity\n description\n manifestation {\n ...CodeableConceptFields\n }\n note {\n ...AnnotationFields\n }\n}\n \n fragment CodeableConceptFields on CodeableConcept {\n id\n text\n coding {\n ...CodingFields\n }\n}\n \n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment AnnotationFields on Annotation {\n id\n authorString\n time\n text\n}\n \n\n fragment AnnotationFields on Annotation {\n id\n authorString\n time\n text\n}\n ";
50
50
  export declare const GetCarePlanGroupsDocument = "\n query getCarePlanGroups($request: CarePlanGroupQueryRequest) {\n getCarePlanGroups(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n references\n coding {\n ...CodingFields\n }\n source\n period {\n ...PeriodFields\n }\n sourceDisplay\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment PeriodFields on Period {\n start\n end\n}\n ";
51
51
  export declare const GetConditionGroupsDocument = "\n query getConditionGroups($request: ConditionGroupQueryRequest) {\n getConditionGroups(request: $request) {\n paging_info {\n ...PagingFields\n }\n resources {\n id\n name\n coding {\n ...CodingFields\n }\n references\n recordedDate\n source\n sourceDisplay\n }\n }\n}\n \n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n \n\n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n ";
52
52
  export declare const GetDiagnosticReportLabGroupsDocument = "\n query getDiagnosticReportLabGroups($request: DiagnosticReportLabGroupQueryRequest) {\n getDiagnosticReportLabGroups(request: $request) {\n resources {\n id\n effectiveDateTime\n issued\n name\n performer\n references\n source\n sourceDisplay\n coding {\n ...CodingFields\n }\n }\n paging_info {\n ...PagingFields\n }\n }\n}\n \n fragment CodingFields on Coding {\n id\n system\n code\n display\n}\n \n\n fragment PagingFields on PagingResults {\n page_number\n page_size\n total_pages\n total_items\n}\n ";
@@ -616,11 +616,12 @@ export const GetAllergyIntoleranceGroupsDocument = `
616
616
  ${PagingFieldsFragmentDoc}
617
617
  ${CodingFieldsFragmentDoc}`;
618
618
  export const GetAllergyIntolerancesDocument = `
619
- query getAllergyIntolerances($page: Int, $pageSize: Int, $code: SearchToken, $lastUpdated: SearchDate) {
619
+ query getAllergyIntolerances($page: Int, $pageSize: Int, $code: SearchToken, $id: SearchString, $lastUpdated: SearchDate) {
620
620
  allergyIntolerances(
621
621
  _count: $pageSize
622
622
  _getpagesoffset: $page
623
623
  code: $code
624
+ id: $id
624
625
  _lastUpdated: $lastUpdated
625
626
  ) {
626
627
  id
@@ -2394,6 +2394,7 @@ export type GetAllergyIntolerancesQueryVariables = Types.Exact<{
2394
2394
  page: Types.InputMaybe<Types.Scalars['Int']['input']>;
2395
2395
  pageSize: Types.InputMaybe<Types.Scalars['Int']['input']>;
2396
2396
  code: Types.InputMaybe<Types.SearchToken>;
2397
+ id: Types.InputMaybe<Types.SearchString>;
2397
2398
  lastUpdated: Types.InputMaybe<Types.SearchDate>;
2398
2399
  }>;
2399
2400
  export type GetAllergyIntolerancesQueryResults = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icanbwell/bwell-sdk-ts",
3
- "version": "2.0.0-alpha.0-rc.1756482682",
3
+ "version": "2.0.0-alpha.0-rc.1756490690",
4
4
  "description": "b.well TypeScript SDK",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",