cecon-interfaces 1.6.34 → 1.6.35
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/orders/entities/order.entity.mjs +5 -2
- package/dist/esm2022/payio/orders/interfaces/i-order.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +4 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/orders/entities/order.entity.d.ts +3 -1
- package/dist/payio/orders/entities/order.entity.js +4 -1
- package/dist/payio/orders/interfaces/i-order.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
import { OrderEntity } from '../../../order';
|
2
|
+
import { IPayioOrder } from '../interfaces';
|
2
3
|
import { PayioOrderIndoorEntity } from './indoor.entity';
|
3
|
-
export declare class PayioOrderEntity extends OrderEntity {
|
4
|
+
export declare class PayioOrderEntity extends OrderEntity implements IPayioOrder {
|
5
|
+
deviceId: string | null;
|
4
6
|
indoor: PayioOrderIndoorEntity | null;
|
5
7
|
constructor(data?: Partial<PayioOrderEntity>);
|
6
8
|
}
|
@@ -19,9 +19,12 @@ exports.PayioOrderEntity = void 0;
|
|
19
19
|
var order_1 = require("../../../order");
|
20
20
|
var PayioOrderEntity = /** @class */ (function (_super) {
|
21
21
|
__extends(PayioOrderEntity, _super);
|
22
|
+
// #endregion Properties (2)
|
23
|
+
// #region Constructors (1)
|
22
24
|
function PayioOrderEntity(data) {
|
23
25
|
var _this = _super.call(this) || this;
|
24
|
-
// #region
|
26
|
+
// #region Properties (2)
|
27
|
+
_this.deviceId = null;
|
25
28
|
_this.indoor = null;
|
26
29
|
if (data) {
|
27
30
|
for (var key in data) {
|