@declaro/data 2.0.0-beta.112 → 2.0.0-beta.114
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/browser/index.js +2 -2
- package/dist/browser/index.js.map +3 -3
- package/dist/node/index.cjs +2 -2
- package/dist/node/index.cjs.map +3 -3
- package/dist/node/index.js +2 -2
- package/dist/node/index.js.map +3 -3
- package/package.json +5 -5
- package/src/domain/services/read-only-model-service.ts +1 -1
package/dist/node/index.js
CHANGED
|
@@ -12630,7 +12630,7 @@ class ReadOnlyModelService extends BaseModelService {
|
|
|
12630
12630
|
if (detailModel) {
|
|
12631
12631
|
const validation = await detailModel.validate(detail, { strict: false });
|
|
12632
12632
|
if (validation.issues) {
|
|
12633
|
-
console.warn(`${detailModel.labels.singularLabel} shape did not match the expected schema
|
|
12633
|
+
console.warn(`${detailModel.labels.singularLabel} shape did not match the expected schema`, validation);
|
|
12634
12634
|
} else {
|
|
12635
12635
|
return validation.value;
|
|
12636
12636
|
}
|
|
@@ -13096,5 +13096,5 @@ export {
|
|
|
13096
13096
|
BaseModelService
|
|
13097
13097
|
};
|
|
13098
13098
|
|
|
13099
|
-
//# debugId=
|
|
13099
|
+
//# debugId=71BB4C5702006B2764756E2164756E21
|
|
13100
13100
|
//# sourceMappingURL=index.js.map
|