@medplum/fhirtypes 3.1.3 → 3.1.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 +29 -6
- package/package.json +1 -1
package/dist/Project.d.ts
CHANGED
|
@@ -94,10 +94,28 @@ export interface Project {
|
|
|
94
94
|
defaultPatientAccessPolicy?: Reference<AccessPolicy>;
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
|
-
*
|
|
98
|
-
*
|
|
97
|
+
* Option or parameter that can be adjusted within the Medplum Project to
|
|
98
|
+
* customize its behavior.
|
|
99
99
|
*/
|
|
100
|
-
|
|
100
|
+
setting?: ProjectSetting[];
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Option or parameter that can be adjusted within the Medplum Project to
|
|
104
|
+
* customize its behavior, only visible to project administrators.
|
|
105
|
+
*/
|
|
106
|
+
secret?: ProjectSetting[];
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Option or parameter that can be adjusted within the Medplum Project to
|
|
110
|
+
* customize its behavior, only modifiable by system administrators.
|
|
111
|
+
*/
|
|
112
|
+
systemSetting?: ProjectSetting[];
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Option or parameter that can be adjusted within the Medplum Project to
|
|
116
|
+
* customize its behavior, only visible to system administrators.
|
|
117
|
+
*/
|
|
118
|
+
systemSecret?: ProjectSetting[];
|
|
101
119
|
|
|
102
120
|
/**
|
|
103
121
|
* Web application or web site that is associated with the project.
|
|
@@ -122,10 +140,10 @@ export interface ProjectLink {
|
|
|
122
140
|
}
|
|
123
141
|
|
|
124
142
|
/**
|
|
125
|
-
*
|
|
126
|
-
*
|
|
143
|
+
* Option or parameter that can be adjusted within the Medplum Project to
|
|
144
|
+
* customize its behavior.
|
|
127
145
|
*/
|
|
128
|
-
export interface
|
|
146
|
+
export interface ProjectSetting {
|
|
129
147
|
|
|
130
148
|
/**
|
|
131
149
|
* The secret name.
|
|
@@ -200,3 +218,8 @@ export interface ProjectSite {
|
|
|
200
218
|
*/
|
|
201
219
|
recaptchaSecretKey?: string;
|
|
202
220
|
}
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* @deprecated Use ProjectSetting instead
|
|
224
|
+
*/
|
|
225
|
+
export type ProjectSecret = ProjectSetting;
|