cecon-interfaces 1.6.43 → 1.6.45

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.43",
3
+ "version": "1.6.45",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,7 +14,7 @@ export declare class RequestedItemsEntity implements IRequestedItems {
14
14
  isPaid: boolean;
15
15
  status: EOrderExtraInfo | null;
16
16
  message: string | null;
17
- messageExepction: string | null;
17
+ messageException: string | null;
18
18
  referenceToken: string | null;
19
19
  resendCount: number;
20
20
  constructor(data?: Partial<RequestedItemsEntity>);
@@ -18,7 +18,7 @@ var RequestedItemsEntity = /** @class */ (function () {
18
18
  this.isPaid = false;
19
19
  this.status = null;
20
20
  this.message = null;
21
- this.messageExepction = null;
21
+ this.messageException = null;
22
22
  this.referenceToken = null;
23
23
  this.resendCount = 0;
24
24
  if (data) {
@@ -12,7 +12,7 @@ export interface IRequestedItems {
12
12
  token: string;
13
13
  status: EOrderExtraInfo | null;
14
14
  message: string | null;
15
- messageExepction: string | null;
15
+ messageException: string | null;
16
16
  data: IRequestedItemData[];
17
17
  referenceToken: string | null;
18
18
  resendCount: number;
@@ -15,5 +15,6 @@ export declare class WithDrawRequestEntity implements IWithdrawRequest {
15
15
  mobyoInfo: IMobyoInfo;
16
16
  desenfilaInfo: IDesenfilaInfo;
17
17
  name: string;
18
+ refusalReason: string | null;
18
19
  constructor(data?: Partial<WithDrawRequestEntity>);
19
20
  }
@@ -21,6 +21,7 @@ var WithDrawRequestEntity = /** @class */ (function () {
21
21
  this.mobyoInfo = new general_1.MobyoInfoEntity();
22
22
  this.desenfilaInfo = new general_1.DesenfilaInfoEntity();
23
23
  this.name = '';
24
+ this.refusalReason = null;
24
25
  if (data) {
25
26
  for (var key in data) {
26
27
  if (data.hasOwnProperty(key) && key in this) {
@@ -7,6 +7,7 @@ export interface IWithdrawRequest {
7
7
  id: string;
8
8
  liveMode: boolean;
9
9
  status: EWithdrawRequestStatus;
10
+ refusalReason: string | null;
10
11
  transactionId: string | null;
11
12
  transferDocumentUrl: string | null;
12
13
  updatedAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.43",
3
+ "version": "1.6.45",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",