@medplum/definitions 0.9.19 → 0.9.22

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.
@@ -61098,6 +61098,13 @@
61098
61098
  "$ref": "#/definitions/string"
61099
61099
  },
61100
61100
  "type": "array"
61101
+ },
61102
+ "recaptchaSiteKey": {
61103
+ "description": "A list of approved reCAPTCHA site keys for new user registration.",
61104
+ "items": {
61105
+ "$ref": "#/definitions/string"
61106
+ },
61107
+ "type": "array"
61101
61108
  }
61102
61109
  },
61103
61110
  "required": [
@@ -61254,6 +61261,10 @@
61254
61261
  "admin": {
61255
61262
  "description": "Whether this user is a system administrator.",
61256
61263
  "$ref": "#/definitions/boolean"
61264
+ },
61265
+ "project": {
61266
+ "description": "Project where the memberships are available.",
61267
+ "$ref": "#/definitions/Reference"
61257
61268
  }
61258
61269
  },
61259
61270
  "required": [
@@ -115,6 +115,16 @@
115
115
  "type" : [{
116
116
  "code" : "string"
117
117
  }]
118
+ },
119
+ {
120
+ "id" : "Project.recaptchaSiteKey",
121
+ "path" : "Project.recaptchaSiteKey",
122
+ "definition" : "A list of approved reCAPTCHA site keys for new user registration.",
123
+ "min" : 0,
124
+ "max" : "*",
125
+ "type" : [{
126
+ "code" : "string"
127
+ }]
118
128
  }
119
129
  ]
120
130
  }
@@ -293,6 +303,17 @@
293
303
  "type" : [{
294
304
  "code" : "string"
295
305
  }]
306
+ },
307
+ {
308
+ "id" : "User.project",
309
+ "path" : "User.project",
310
+ "definition" : "Optional project if the user only exists for the project. This is used for the project-specific user database.",
311
+ "min" : 0,
312
+ "max" : "1",
313
+ "type" : [{
314
+ "code" : "Reference",
315
+ "targetProfile" : ["https://medplum.com/fhir/StructureDefinition/Project"]
316
+ }]
296
317
  }
297
318
  ]
298
319
  }
@@ -65531,6 +65531,23 @@
65531
65531
  "xpathUsage" : "normal"
65532
65532
  }
65533
65533
  },
65534
+ {
65535
+ "fullUrl" : "https://medplum.com/fhir/SearchParameter/Project-recaptcha-site-key",
65536
+ "resource" : {
65537
+ "resourceType" : "SearchParameter",
65538
+ "id" : "Project-recaptcha-site-key",
65539
+ "url" : "https://medplum.com/fhir/SearchParameter/Project-recaptcha-site-key",
65540
+ "version" : "4.0.1",
65541
+ "name" : "name",
65542
+ "publisher" : "Medplum",
65543
+ "code" : "recaptcha-site-key",
65544
+ "base" : ["Project"],
65545
+ "type" : "token",
65546
+ "expression" : "Project.recaptchaSiteKey",
65547
+ "xpath" : "f:Project/f:recaptchaSiteKey",
65548
+ "xpathUsage" : "normal"
65549
+ }
65550
+ },
65534
65551
  {
65535
65552
  "fullUrl" : "https://medplum.com/fhir/SearchParameter/ProjectMembership-project",
65536
65553
  "resource" : {
@@ -65637,6 +65654,23 @@
65637
65654
  "xpathUsage" : "normal"
65638
65655
  }
65639
65656
  },
65657
+ {
65658
+ "fullUrl" : "https://medplum.com/fhir/SearchParameter/User-project",
65659
+ "resource" : {
65660
+ "resourceType" : "SearchParameter",
65661
+ "id" : "User-project",
65662
+ "url" : "https://medplum.com/fhir/SearchParameter/User-project",
65663
+ "version" : "4.0.1",
65664
+ "name" : "project",
65665
+ "publisher" : "Medplum",
65666
+ "code" : "project",
65667
+ "base" : ["User"],
65668
+ "type" : "token",
65669
+ "expression" : "User.project",
65670
+ "xpath" : "f:User/f:project",
65671
+ "xpathUsage" : "normal"
65672
+ }
65673
+ },
65640
65674
  {
65641
65675
  "fullUrl" : "https://medplum.com/fhir/SearchParameter/Login-code",
65642
65676
  "resource" : {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/definitions",
3
- "version": "0.9.19",
3
+ "version": "0.9.22",
4
4
  "description": "Medplum Data Definitions",
5
5
  "author": "Medplum <hello@medplum.com>",
6
6
  "license": "Apache-2.0",