bruce-models 5.0.3 → 5.0.4
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/bruce-models.es5.js +2 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +2 -2
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity.js +1 -1
- package/dist/lib/entity/entity.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -3495,7 +3495,7 @@
|
|
|
3495
3495
|
let curData = data;
|
|
3496
3496
|
for (let i = 0; i < path.length; i++) {
|
|
3497
3497
|
const step = path[i];
|
|
3498
|
-
if (!curData[step]) {
|
|
3498
|
+
if (!curData[step] && curData[step] != 0) {
|
|
3499
3499
|
return null;
|
|
3500
3500
|
}
|
|
3501
3501
|
if (i >= path.length - 1) {
|
|
@@ -14190,7 +14190,7 @@
|
|
|
14190
14190
|
})(exports.DataSource || (exports.DataSource = {}));
|
|
14191
14191
|
|
|
14192
14192
|
// This is updated with the package.json version on build.
|
|
14193
|
-
const VERSION = "5.0.
|
|
14193
|
+
const VERSION = "5.0.4";
|
|
14194
14194
|
|
|
14195
14195
|
exports.VERSION = VERSION;
|
|
14196
14196
|
exports.AbstractApi = AbstractApi;
|