cecon-interfaces 1.3.12 → 1.3.13

Sign up to get free protection for your applications and to get access to all the features.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.3.12",
3
+ "version": "1.3.13",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,3 +1,4 @@
1
+ import { IDesenfilaInfo, IMobyoInfo, INatiInfo } from '../../general';
1
2
  import { EWithdrawRequestStatus } from '../enums';
2
3
  import { IWithdrawRequest } from '../interfaces/i-withdraw-request';
3
4
  export declare class WithDrawRequestEntity implements IWithdrawRequest {
@@ -12,5 +13,8 @@ export declare class WithDrawRequestEntity implements IWithdrawRequest {
12
13
  transactionId: string | null;
13
14
  transferDocumentUrl: string | null;
14
15
  updatedAt: Date;
16
+ natiInfo: INatiInfo;
17
+ mobyoInfo: IMobyoInfo;
18
+ desenfilaInfo: IDesenfilaInfo;
15
19
  constructor(data?: Partial<WithDrawRequestEntity>);
16
20
  }
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.WithDrawRequestEntity = void 0;
4
+ var general_1 = require("../../general");
4
5
  var enums_1 = require("../enums");
5
6
  var WithDrawRequestEntity = /** @class */ (function () {
6
7
  // #endregion Properties (11)
@@ -18,6 +19,9 @@ var WithDrawRequestEntity = /** @class */ (function () {
18
19
  this.transactionId = null;
19
20
  this.transferDocumentUrl = null;
20
21
  this.updatedAt = new Date();
22
+ this.natiInfo = new general_1.NatiInfoEntity();
23
+ this.mobyoInfo = new general_1.MobyoInfoEntity();
24
+ this.desenfilaInfo = new general_1.DesenfilaInfoEntity();
21
25
  if (data) {
22
26
  for (var key in data) {
23
27
  if (data.hasOwnProperty(key) && key in this) {
@@ -1,8 +1,7 @@
1
+ import { INatiInfo, IMobyoInfo, IDesenfilaInfo } from '../../general';
1
2
  import { EWithdrawRequestStatus } from '../enums';
2
3
  export interface IWithdrawRequest {
3
4
  amount: number;
4
- containerId: string;
5
- merchantId: string;
6
5
  createdAt: Date;
7
6
  aprovedAt: Date | null;
8
7
  id: string;
@@ -11,4 +10,7 @@ export interface IWithdrawRequest {
11
10
  transactionId: string | null;
12
11
  transferDocumentUrl: string | null;
13
12
  updatedAt: Date;
13
+ natiInfo: INatiInfo;
14
+ mobyoInfo: IMobyoInfo;
15
+ desenfilaInfo: IDesenfilaInfo;
14
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.3.12",
3
+ "version": "1.3.13",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",