cecon-interfaces 1.1.95 → 1.1.96
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/order/entities/order.entity.mjs +4 -3
- package/dist/esm2022/order/interfaces/i-order.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/order/entities/order.entity.d.ts +1 -0
- package/dist/order/entities/order.entity.js +3 -2
- package/dist/order/interfaces/i-order.d.ts +1 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -7,10 +7,10 @@ var customer_entity_1 = require("./customer.entity");
|
|
7
7
|
var payment_entity_1 = require("./payment.entity");
|
8
8
|
var total_entity_1 = require("./total.entity");
|
9
9
|
var OrderEntity = /** @class */ (function () {
|
10
|
-
// #endregion Properties (
|
10
|
+
// #endregion Properties (22)
|
11
11
|
// #region Constructors (1)
|
12
12
|
function OrderEntity(data) {
|
13
|
-
// #region Properties (
|
13
|
+
// #region Properties (22)
|
14
14
|
this.additionalFees = [];
|
15
15
|
this.benefits = [];
|
16
16
|
this.cancellation = new cancellation_entity_1.OrderCancellationEntity();
|
@@ -21,6 +21,7 @@ var OrderEntity = /** @class */ (function () {
|
|
21
21
|
this.delivery = null;
|
22
22
|
this.displayId = Math.round(Math.random() * 100000).toString();
|
23
23
|
this.id = '';
|
24
|
+
this.invoiceId = null;
|
24
25
|
this.items = [];
|
25
26
|
this.orderTiming = enums_1.EOrderTiming.IMMEDIATE;
|
26
27
|
this.orderType = null;
|
package/dist/package.json
CHANGED