@medplum/core 0.9.17 → 0.9.18
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/cjs/index.js +5 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/index.min.js +1 -1
- package/dist/cjs/index.min.js.map +1 -1
- package/dist/esm/index.js +5 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.min.js +1 -1
- package/dist/esm/index.min.js.map +1 -1
- package/package.json +3 -3
package/dist/cjs/index.js
CHANGED
|
@@ -7372,11 +7372,12 @@
|
|
|
7372
7372
|
}
|
|
7373
7373
|
const typeSchema = globalSchema.types[input.type];
|
|
7374
7374
|
if (typeSchema) {
|
|
7375
|
-
|
|
7376
|
-
|
|
7377
|
-
|
|
7378
|
-
|
|
7375
|
+
const typedResult = getTypedPropertyValueWithSchema(input, path, typeSchema);
|
|
7376
|
+
if (typedResult) {
|
|
7377
|
+
return typedResult;
|
|
7378
|
+
}
|
|
7379
7379
|
}
|
|
7380
|
+
return getTypedPropertyValueWithoutSchema(input, path);
|
|
7380
7381
|
}
|
|
7381
7382
|
/**
|
|
7382
7383
|
* Returns the value of the property and the property type using a type schema.
|