@medplum/fhirtypes 3.0.3 → 3.0.4
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/Project.d.ts +22 -0
- package/dist/User.d.ts +6 -0
- package/package.json +1 -1
package/dist/Project.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { AccessPolicy } from './AccessPolicy';
|
|
7
|
+
import { Identifier } from './Identifier';
|
|
7
8
|
import { Meta } from './Meta';
|
|
8
9
|
import { Reference } from './Reference';
|
|
9
10
|
import { User } from './User';
|
|
@@ -44,6 +45,11 @@ export interface Project {
|
|
|
44
45
|
*/
|
|
45
46
|
language?: string;
|
|
46
47
|
|
|
48
|
+
/**
|
|
49
|
+
* An identifier for this project.
|
|
50
|
+
*/
|
|
51
|
+
identifier?: Identifier[];
|
|
52
|
+
|
|
47
53
|
/**
|
|
48
54
|
* A name associated with the Project.
|
|
49
55
|
*/
|
|
@@ -97,6 +103,22 @@ export interface Project {
|
|
|
97
103
|
* Web application or web site that is associated with the project.
|
|
98
104
|
*/
|
|
99
105
|
site?: ProjectSite[];
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Linked Projects whose contents are made available to this one
|
|
109
|
+
*/
|
|
110
|
+
link?: ProjectLink[];
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Linked Projects whose contents are made available to this one
|
|
115
|
+
*/
|
|
116
|
+
export interface ProjectLink {
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* A reference to the Project to be linked into this one
|
|
120
|
+
*/
|
|
121
|
+
project: Reference<Project>;
|
|
100
122
|
}
|
|
101
123
|
|
|
102
124
|
/**
|
package/dist/User.d.ts
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
+
import { Identifier } from './Identifier';
|
|
6
7
|
import { Meta } from './Meta';
|
|
7
8
|
import { Project } from './Project';
|
|
8
9
|
import { Reference } from './Reference';
|
|
@@ -43,6 +44,11 @@ export interface User {
|
|
|
43
44
|
*/
|
|
44
45
|
language?: string;
|
|
45
46
|
|
|
47
|
+
/**
|
|
48
|
+
* An identifier for this user.
|
|
49
|
+
*/
|
|
50
|
+
identifier?: Identifier[];
|
|
51
|
+
|
|
46
52
|
/**
|
|
47
53
|
* The first name or given name of the user. This is the value as entered
|
|
48
54
|
* when the user is created. It is used to populate the profile resource.
|