@medplum/fhirtypes 3.2.8 → 3.2.10
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/README.md +1 -1
- package/dist/Project.d.ts +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/Project.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { Meta } from './Meta';
|
|
|
10
10
|
import { Narrative } from './Narrative';
|
|
11
11
|
import { Reference } from './Reference';
|
|
12
12
|
import { Resource } from './Resource';
|
|
13
|
+
import { ResourceType } from './ResourceType';
|
|
13
14
|
import { User } from './User';
|
|
14
15
|
|
|
15
16
|
/**
|
|
@@ -176,6 +177,29 @@ export interface Project {
|
|
|
176
177
|
* Linked Projects whose contents are made available to this one
|
|
177
178
|
*/
|
|
178
179
|
link?: ProjectLink[];
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Default profiles to apply to resources in this project that do not
|
|
183
|
+
* individually specify profiles
|
|
184
|
+
*/
|
|
185
|
+
defaultProfile?: ProjectDefaultProfile[];
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Default profiles to apply to resources in this project that do not
|
|
190
|
+
* individually specify profiles
|
|
191
|
+
*/
|
|
192
|
+
export interface ProjectDefaultProfile {
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* The resource type onto which to apply the default profiles
|
|
196
|
+
*/
|
|
197
|
+
resourceType: ResourceType;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* The profiles to add by default
|
|
201
|
+
*/
|
|
202
|
+
profile: string[];
|
|
179
203
|
}
|
|
180
204
|
|
|
181
205
|
/**
|