@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.cjs
CHANGED
|
@@ -12669,7 +12669,7 @@ class ReadOnlyModelService extends BaseModelService {
|
|
|
12669
12669
|
if (detailModel) {
|
|
12670
12670
|
const validation = await detailModel.validate(detail, { strict: false });
|
|
12671
12671
|
if (validation.issues) {
|
|
12672
|
-
console.warn(`${detailModel.labels.singularLabel} shape did not match the expected schema
|
|
12672
|
+
console.warn(`${detailModel.labels.singularLabel} shape did not match the expected schema`, validation);
|
|
12673
12673
|
} else {
|
|
12674
12674
|
return validation.value;
|
|
12675
12675
|
}
|
|
@@ -13117,5 +13117,5 @@ class MockMemoryRepository {
|
|
|
13117
13117
|
}
|
|
13118
13118
|
}
|
|
13119
13119
|
|
|
13120
|
-
//# debugId=
|
|
13120
|
+
//# debugId=02E485F6A311A3CD64756E2164756E21
|
|
13121
13121
|
//# sourceMappingURL=index.cjs.map
|