cecon-interfaces 1.5.29 → 1.5.32
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/device/enums/app-images.enum.d.ts +3 -0
- package/dist/device/enums/app-images.enum.js +7 -0
- package/dist/device/enums/index.d.ts +1 -0
- package/dist/device/enums/index.js +3 -1
- package/dist/esm2022/device/enums/app-images.enum.mjs +5 -0
- package/dist/esm2022/device/enums/index.mjs +2 -1
- package/dist/esm2022/mobyo/mobyo-api/interfaces/i-device-app-images.mjs +2 -0
- package/dist/esm2022/mobyo/mobyo-api/interfaces/i-device-app.mjs +1 -1
- package/dist/esm2022/mobyo/mobyo-api/interfaces/index.mjs +1 -1
- package/dist/esm2022/withdraw/entities/withdraw-request.entity.mjs +1 -3
- package/dist/fesm2022/cecon-interfaces.mjs +6 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/mobyo/mobyo-api/interfaces/i-device-app-images.d.ts +3 -0
- package/dist/mobyo/mobyo-api/interfaces/i-device-app-images.js +2 -0
- package/dist/mobyo/mobyo-api/interfaces/i-device-app.d.ts +2 -0
- package/dist/mobyo/mobyo-api/interfaces/index.d.ts +1 -0
- package/dist/package.json +1 -1
- package/dist/withdraw/entities/withdraw-request.entity.d.ts +0 -2
- package/dist/withdraw/entities/withdraw-request.entity.js +0 -2
- package/package.json +1 -1
@@ -1,8 +1,10 @@
|
|
1
1
|
import { EDeviceAppMode } from '../enum/device-app-mode.enum';
|
2
2
|
import { EOrderDeliveredBy } from '../enum/order-delivered-by.enum';
|
3
3
|
import { IDeviceAppConfig } from './i-device-app-configs';
|
4
|
+
import { IDeviceAppImages } from './i-device-app-images';
|
4
5
|
export interface IDeviceApp {
|
5
6
|
configs: IDeviceAppConfig;
|
6
7
|
defaultDeliveredBy?: EOrderDeliveredBy;
|
7
8
|
mode: EDeviceAppMode;
|
9
|
+
pictures: IDeviceAppImages;
|
8
10
|
}
|
@@ -138,3 +138,4 @@ export { IProductSimple as MobyoIProductSimple } from './product-simple.interfac
|
|
138
138
|
export { StatisticsProduct as MobyoStatisticsProduct } from './statistics-product.interface';
|
139
139
|
export { IStatistics as MobyoIStatistics } from './statistics.interface';
|
140
140
|
export { TaxConfig as MobyoTaxConfig } from './tax-config.interface';
|
141
|
+
export { IDeviceAppImages } from './i-device-app-images';
|
package/dist/package.json
CHANGED
@@ -4,11 +4,9 @@ import { IWithdrawRequest } from '../interfaces/i-withdraw-request';
|
|
4
4
|
export declare class WithDrawRequestEntity implements IWithdrawRequest {
|
5
5
|
amount: number;
|
6
6
|
aprovedAt: Date | null;
|
7
|
-
containerId: string;
|
8
7
|
createdAt: Date;
|
9
8
|
id: string;
|
10
9
|
liveMode: boolean;
|
11
|
-
merchantId: string;
|
12
10
|
status: EWithdrawRequestStatus;
|
13
11
|
transactionId: string | null;
|
14
12
|
transferDocumentUrl: string | null;
|
@@ -10,11 +10,9 @@ var WithDrawRequestEntity = /** @class */ (function () {
|
|
10
10
|
// #region Properties (11)
|
11
11
|
this.amount = 0;
|
12
12
|
this.aprovedAt = null;
|
13
|
-
this.containerId = '';
|
14
13
|
this.createdAt = new Date();
|
15
14
|
this.id = '';
|
16
15
|
this.liveMode = false;
|
17
|
-
this.merchantId = '';
|
18
16
|
this.status = enums_1.EWithdrawRequestStatus.PENDING;
|
19
17
|
this.transactionId = null;
|
20
18
|
this.transferDocumentUrl = null;
|