@medplum/definitions 4.3.8 → 4.3.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.
|
@@ -59971,9 +59971,16 @@
|
|
|
59971
59971
|
"$ref": "#/definitions/uri"
|
|
59972
59972
|
},
|
|
59973
59973
|
"redirectUri": {
|
|
59974
|
-
"description": "
|
|
59974
|
+
"description": "@deprecated This field is deprecated. Use redirectUris instead.",
|
|
59975
59975
|
"$ref": "#/definitions/uri"
|
|
59976
59976
|
},
|
|
59977
|
+
"redirectUris": {
|
|
59978
|
+
"description": "Optional redirect URI array used when redirecting a client back to the client application.",
|
|
59979
|
+
"items": {
|
|
59980
|
+
"$ref": "#/definitions/uri"
|
|
59981
|
+
},
|
|
59982
|
+
"type": "array"
|
|
59983
|
+
},
|
|
59977
59984
|
"launchUri": {
|
|
59978
59985
|
"description": "Optional launch URI for SMART EHR launch sequence.",
|
|
59979
59986
|
"$ref": "#/definitions/uri"
|
|
@@ -890,7 +890,7 @@
|
|
|
890
890
|
{
|
|
891
891
|
"id" : "ClientApplication.redirectUri",
|
|
892
892
|
"path" : "ClientApplication.redirectUri",
|
|
893
|
-
"definition" : "
|
|
893
|
+
"definition" : "@deprecated This field is deprecated. Use redirectUris instead.",
|
|
894
894
|
"min" : 0,
|
|
895
895
|
"max" : "1",
|
|
896
896
|
"type" : [{
|
|
@@ -902,6 +902,21 @@
|
|
|
902
902
|
"max" : "1"
|
|
903
903
|
}
|
|
904
904
|
},
|
|
905
|
+
{
|
|
906
|
+
"id" : "ClientApplication.redirectUris",
|
|
907
|
+
"path" : "ClientApplication.redirectUris",
|
|
908
|
+
"definition" : "Optional redirect URI array used when redirecting a client back to the client application.",
|
|
909
|
+
"min" : 0,
|
|
910
|
+
"max" : "*",
|
|
911
|
+
"type" : [{
|
|
912
|
+
"code" : "uri"
|
|
913
|
+
}],
|
|
914
|
+
"base": {
|
|
915
|
+
"path" : "ClientApplication.redirectUris",
|
|
916
|
+
"min" : 0,
|
|
917
|
+
"max" : "*"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
905
920
|
{
|
|
906
921
|
"id" : "ClientApplication.launchUri",
|
|
907
922
|
"path" : "ClientApplication.launchUri",
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAKA,wBAAgB,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,GAAG,CAE9C;AAED;;;GAGG;AACH,eAAO,MAAM,6BAA6B,UAIzC,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SEARCH_PARAMETER_BUNDLE_FILES = void 0;
|
|
4
4
|
exports.readJson = readJson;
|
|
5
|
+
// SPDX-FileCopyrightText: Copyright Orangebot, Inc. and Medplum contributors
|
|
6
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
5
7
|
const fs_1 = require("fs");
|
|
6
8
|
const path_1 = require("path");
|
|
7
9
|
function readJson(filename) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medplum/definitions",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.10",
|
|
4
4
|
"description": "Medplum Data Definitions",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"medplum",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"build": "npm run clean && tsc --project tsconfig.build.json",
|
|
38
38
|
"clean": "rimraf dist/index.js dist/index.d.ts",
|
|
39
39
|
"lint": "eslint .",
|
|
40
|
+
"lint:fix": "eslint . --fix",
|
|
40
41
|
"test": "jest"
|
|
41
42
|
},
|
|
42
43
|
"engines": {
|