@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1760653171 → 2.0.0-alpha.0-rc.1760723921
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 +12 -0
- package/package.json +1 -1
package/dist/__version__.d.ts
CHANGED
package/dist/__version__.js
CHANGED
package/dist/graphql/schema.d.ts
CHANGED
|
@@ -4226,6 +4226,11 @@ export type BodyStructurePatientReference = {
|
|
|
4226
4226
|
resource?: Maybe<Patient>;
|
|
4227
4227
|
type?: Maybe<Scalars['URI']['output']>;
|
|
4228
4228
|
};
|
|
4229
|
+
export type Bookable = {
|
|
4230
|
+
__typename?: 'Bookable';
|
|
4231
|
+
online?: Maybe<Scalars['Boolean']['output']>;
|
|
4232
|
+
phone?: Maybe<Scalars['Boolean']['output']>;
|
|
4233
|
+
};
|
|
4229
4234
|
export type BootstrapConfiguration = {
|
|
4230
4235
|
__typename?: 'BootstrapConfiguration';
|
|
4231
4236
|
apertureProxyPageUrl: Scalars['String']['output'];
|
|
@@ -31147,6 +31152,7 @@ export type GuidanceResponseSubjectReference = {
|
|
|
31147
31152
|
/** Unified search result type */
|
|
31148
31153
|
export type HealthResourceSearchResult = {
|
|
31149
31154
|
__typename?: 'HealthResourceSearchResult';
|
|
31155
|
+
bookable?: Maybe<Bookable>;
|
|
31150
31156
|
content?: Maybe<Scalars['String']['output']>;
|
|
31151
31157
|
endpoint?: Maybe<Array<Maybe<EndpointType>>>;
|
|
31152
31158
|
gender?: Maybe<GenderEnum>;
|
|
@@ -51656,6 +51662,7 @@ export type ProviderLocation = {
|
|
|
51656
51662
|
*/
|
|
51657
51663
|
name?: Maybe<Scalars['String']['output']>;
|
|
51658
51664
|
position?: Maybe<Position>;
|
|
51665
|
+
scheduling?: Maybe<ProviderSchedule>;
|
|
51659
51666
|
telecom?: Maybe<Array<Maybe<ProviderContactPoint>>>;
|
|
51660
51667
|
type?: Maybe<Array<Maybe<ProviderCodeableConcept>>>;
|
|
51661
51668
|
};
|
|
@@ -51713,6 +51720,11 @@ export type ProviderResults = {
|
|
|
51713
51720
|
paging_info?: Maybe<PagingInfo>;
|
|
51714
51721
|
results?: Maybe<Array<Maybe<ProviderResult>>>;
|
|
51715
51722
|
};
|
|
51723
|
+
export type ProviderSchedule = {
|
|
51724
|
+
__typename?: 'ProviderSchedule';
|
|
51725
|
+
bookable?: Maybe<Bookable>;
|
|
51726
|
+
identifier?: Maybe<Array<Maybe<ProviderIdentifier>>>;
|
|
51727
|
+
};
|
|
51716
51728
|
export type ProviderType = 'practice' | 'practitioner';
|
|
51717
51729
|
/**
|
|
51718
51730
|
* Provider Type enum
|