cecon-interfaces 1.8.61 → 1.8.62
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/payio/orders/entities/order.entity.mjs +4 -6
- package/dist/esm2022/payio/orders/interfaces/i-order.mjs +1 -1
- package/dist/esm2022/resume/entities/general-resume-total.entity.mjs +2 -2
- package/dist/esm2022/resume/interfaces/i-resume-general.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +2 -4
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/orders/entities/order.entity.d.ts +5 -4
- package/dist/payio/orders/entities/order.entity.js +1 -3
- package/dist/payio/orders/interfaces/i-order.d.ts +3 -2
- package/dist/resume/entities/general-resume-total.entity.d.ts +1 -1
- package/dist/resume/entities/general-resume-total.entity.js +1 -1
- package/dist/resume/interfaces/i-resume-general.d.ts +1 -1
- package/package.json +1 -1
@@ -1,11 +1,12 @@
|
|
1
|
-
import { OrderEntity } from
|
2
|
-
import { EPayuioAppSlug } from
|
3
|
-
import { IPayioOrder } from
|
4
|
-
import { PayioOrderIndoorEntity } from
|
1
|
+
import { OrderEntity } from "../../../order";
|
2
|
+
import { EPayuioAppSlug } from "../../app";
|
3
|
+
import { IPayioOrder } from "../interfaces";
|
4
|
+
import { PayioOrderIndoorEntity } from "./indoor.entity";
|
5
5
|
export declare class PayioOrderEntity extends OrderEntity implements IPayioOrder {
|
6
6
|
appId: string | null;
|
7
7
|
appSlug: EPayuioAppSlug;
|
8
8
|
deviceId: string | null;
|
9
9
|
indoor: PayioOrderIndoorEntity | null;
|
10
|
+
resumeVersion: string;
|
10
11
|
constructor(data?: Partial<PayioOrderEntity>);
|
11
12
|
}
|
@@ -20,15 +20,13 @@ var order_1 = require("../../../order");
|
|
20
20
|
var app_1 = require("../../app");
|
21
21
|
var PayioOrderEntity = /** @class */ (function (_super) {
|
22
22
|
__extends(PayioOrderEntity, _super);
|
23
|
-
// #endregion Properties (4)
|
24
|
-
// #region Constructors (1)
|
25
23
|
function PayioOrderEntity(data) {
|
26
24
|
var _this = _super.call(this) || this;
|
27
|
-
// #region Properties (4)
|
28
25
|
_this.appId = null;
|
29
26
|
_this.appSlug = app_1.EPayuioAppSlug.none;
|
30
27
|
_this.deviceId = null;
|
31
28
|
_this.indoor = null;
|
29
|
+
_this.resumeVersion = '';
|
32
30
|
if (data) {
|
33
31
|
for (var key in data) {
|
34
32
|
if (data.hasOwnProperty(key) && key in _this) {
|
@@ -2,8 +2,9 @@ import { IOrder } from '../../../order';
|
|
2
2
|
import { EPayuioAppSlug } from '../../app';
|
3
3
|
import { IPayioOrderIndoor } from './i-order-indoor';
|
4
4
|
export interface IPayioOrder extends IOrder {
|
5
|
-
indoor: IPayioOrderIndoor | null;
|
6
|
-
deviceId: string | null;
|
7
5
|
appId: string | null;
|
8
6
|
appSlug: EPayuioAppSlug;
|
7
|
+
deviceId: string | null;
|
8
|
+
indoor: IPayioOrderIndoor | null;
|
9
|
+
resumeVersion: string;
|
9
10
|
}
|
@@ -2,6 +2,6 @@ import { IGeneralResumeTotal } from '../interfaces';
|
|
2
2
|
export declare class GeneralResumeTotalEntity implements IGeneralResumeTotal {
|
3
3
|
amount: number;
|
4
4
|
count: number;
|
5
|
-
|
5
|
+
averageAmount: number;
|
6
6
|
constructor(data?: Partial<GeneralResumeTotalEntity>);
|
7
7
|
}
|
@@ -5,7 +5,7 @@ var GeneralResumeTotalEntity = /** @class */ (function () {
|
|
5
5
|
function GeneralResumeTotalEntity(data) {
|
6
6
|
this.amount = 0;
|
7
7
|
this.count = 0;
|
8
|
-
this.
|
8
|
+
this.averageAmount = 0;
|
9
9
|
if (data) {
|
10
10
|
for (var key in data) {
|
11
11
|
if (data.hasOwnProperty(key) && key in this) {
|