cecon-interfaces 1.2.91 → 1.2.93
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/esm2022/mottu/entities/order.entity.mjs +3 -3
- package/dist/esm2022/plan/enums/plans-identifier.enum.mjs +4 -1
- package/dist/fesm2022/cecon-interfaces.mjs +5 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/mottu/entities/order.entity.js +2 -2
- package/dist/package.json +1 -1
- package/dist/plan/enums/plans-identifier.enum.d.ts +4 -1
- package/dist/plan/enums/plans-identifier.enum.js +3 -0
- package/package.json +1 -1
@@ -3,10 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MottuOrderEntity = void 0;
|
4
4
|
var order_deliverery_man_entity_1 = require("./order-deliverery-man.entity");
|
5
5
|
var MottuOrderEntity = /** @class */ (function () {
|
6
|
-
// #endregion Properties (
|
6
|
+
// #endregion Properties (18)
|
7
7
|
// #region Constructors (1)
|
8
8
|
function MottuOrderEntity(data) {
|
9
|
-
// #region Properties (
|
9
|
+
// #region Properties (18)
|
10
10
|
this.code = '';
|
11
11
|
this.createdAt = new Date();
|
12
12
|
this.deliveryFee = 0;
|
package/dist/package.json
CHANGED
@@ -7,4 +7,7 @@ var EPlanIdentifier;
|
|
7
7
|
EPlanIdentifier["SAT_MANAGER_NAPOLEON"] = "SAT-MANAGER-NAPOLEON";
|
8
8
|
EPlanIdentifier["NATI_PDV"] = "NATI-PDV";
|
9
9
|
EPlanIdentifier["NATI_WA"] = "NATI-WA";
|
10
|
+
EPlanIdentifier["NATI"] = "NATI";
|
11
|
+
EPlanIdentifier["MOBYO"] = "MOBYO";
|
12
|
+
EPlanIdentifier["NOTAPP"] = "NOTAPP";
|
10
13
|
})(EPlanIdentifier || (exports.EPlanIdentifier = EPlanIdentifier = {}));
|