@medplum/definitions 4.5.1 → 4.5.2

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.
@@ -60258,6 +60258,10 @@
60258
60258
  "userAgent": {
60259
60259
  "description": "The User-Agent request header as sent by the client.",
60260
60260
  "$ref": "#/definitions/string"
60261
+ },
60262
+ "pictureUrl": {
60263
+ "description": "Optional picture URL from the external identity provider.",
60264
+ "$ref": "#/definitions/string"
60261
60265
  }
60262
60266
  },
60263
60267
  "additionalProperties": false,
@@ -2714,6 +2714,21 @@
2714
2714
  "min" : 0,
2715
2715
  "max" : "1"
2716
2716
  }
2717
+ },
2718
+ {
2719
+ "id" : "Login.pictureUrl",
2720
+ "path" : "Login.pictureUrl",
2721
+ "definition" : "Optional picture URL from the external identity provider.",
2722
+ "min" : 0,
2723
+ "max" : "1",
2724
+ "type" : [{
2725
+ "code" : "string"
2726
+ }],
2727
+ "base" : {
2728
+ "path" : "Login.pictureUrl",
2729
+ "min" : 0,
2730
+ "max" : "1"
2731
+ }
2717
2732
  }
2718
2733
  ]
2719
2734
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/definitions",
3
- "version": "4.5.1",
3
+ "version": "4.5.2",
4
4
  "description": "Medplum Data Definitions",
5
5
  "keywords": [
6
6
  "medplum",
@@ -35,7 +35,7 @@
35
35
  ],
36
36
  "scripts": {
37
37
  "build": "npm run clean && tsc --project tsconfig.build.json",
38
- "clean": "rimraf dist/index.js dist/index.d.ts",
38
+ "clean": "rimraf --glob \"dist/!(fhir)\"",
39
39
  "lint": "eslint .",
40
40
  "lint:fix": "eslint . --fix",
41
41
  "test": "jest"