@infrab4a/connect 0.13.1-beta.3 → 0.13.2-beta.0
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/bundles/infrab4a-connect.umd.js +2 -1
- package/bundles/infrab4a-connect.umd.js.map +1 -1
- package/esm2015/lib/domain/users/models/subscription/enums/status.enum.js +2 -1
- package/esm2015/lib/infra/firebase/firestore/mixins/with-firestore.mixin.js +2 -2
- package/fesm2015/infrab4a-connect.js +2 -1
- package/fesm2015/infrab4a-connect.js.map +1 -1
- package/lib/domain/users/models/subscription/enums/status.enum.d.ts +2 -1
- package/package.json +1 -1
|
@@ -260,6 +260,7 @@
|
|
|
260
260
|
exports.Status = void 0;
|
|
261
261
|
(function (Status) {
|
|
262
262
|
Status["ACTIVE"] = "active";
|
|
263
|
+
Status["CANCELLED"] = "Cancelado";
|
|
263
264
|
})(exports.Status || (exports.Status = {}));
|
|
264
265
|
|
|
265
266
|
/*! *****************************************************************************
|
|
@@ -1485,7 +1486,7 @@
|
|
|
1485
1486
|
data[key] = data[key].toDate();
|
|
1486
1487
|
}
|
|
1487
1488
|
});
|
|
1488
|
-
return _this.model.toInstance(Object.assign({ id: snap.id }
|
|
1489
|
+
return _this.model.toInstance(Object.assign(Object.assign({}, data), { id: snap.id }));
|
|
1489
1490
|
},
|
|
1490
1491
|
};
|
|
1491
1492
|
};
|