cecon-interfaces 1.6.95 → 1.6.97
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/orders-queue/entities/order-queue.entity.mjs +2 -2
- package/dist/esm2022/payio/orders-queue/interfaces/i-order-queue.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/orders-queue/entities/order-queue.entity.d.ts +1 -0
- package/dist/payio/orders-queue/entities/order-queue.entity.js +1 -2
- package/dist/payio/orders-queue/interfaces/i-order-queue.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -4,10 +4,10 @@ exports.PayioOrderQueueEntity = void 0;
|
|
4
4
|
var enums_1 = require("../enums");
|
5
5
|
var PayioOrderQueueEntity = /** @class */ (function () {
|
6
6
|
function PayioOrderQueueEntity() {
|
7
|
-
// #region Properties (10)
|
8
7
|
this.appId = '';
|
9
8
|
this.attempts = 0;
|
10
9
|
this.companyId = '';
|
10
|
+
this.companyName = '';
|
11
11
|
this.createdAt = new Date();
|
12
12
|
this.data = '';
|
13
13
|
this.error = '';
|
@@ -15,7 +15,6 @@ var PayioOrderQueueEntity = /** @class */ (function () {
|
|
15
15
|
this.lastAttemptAt = new Date();
|
16
16
|
this.reference = '';
|
17
17
|
this.status = enums_1.PayioOrderQueueStatusEnum.pending;
|
18
|
-
// #endregion Properties (10)
|
19
18
|
}
|
20
19
|
return PayioOrderQueueEntity;
|
21
20
|
}());
|