@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1758311895 → 2.0.0-alpha.0-rc.1758316655
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/operations/index.d.ts +11 -13
- package/dist/graphql/operations/index.js +106 -229
- package/dist/graphql/operations/types.d.ts +197 -1871
- package/dist/models/common/location.d.ts +0 -2
- package/dist/models/common/organization.d.ts +1 -7
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Endpoint } from "./endpoint.js";
|
|
2
|
-
import { Address,
|
|
2
|
+
import { Address, ContactPoint, Identifier, Reference } from "./index.js";
|
|
3
3
|
/**
|
|
4
4
|
* Represents a healthcare organization.
|
|
5
5
|
*
|
|
@@ -20,12 +20,6 @@ export type Organization = {
|
|
|
20
20
|
address: (Address | null)[] | null;
|
|
21
21
|
/** Contact information */
|
|
22
22
|
telecom: (ContactPoint | null)[] | null;
|
|
23
|
-
/** Active status of the organization */
|
|
24
|
-
active: boolean | null;
|
|
25
|
-
/** The unique identifier for the organization resource */
|
|
26
|
-
id: string | null;
|
|
27
|
-
/** The type of the organization */
|
|
28
|
-
type: Array<CodeableConcept | null> | null;
|
|
29
23
|
};
|
|
30
24
|
/**
|
|
31
25
|
* Represents a healthcare organization.
|