cecon-interfaces 1.6.42 → 1.6.44

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.6.42",
3
+ "version": "1.6.44",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1 +1,2 @@
1
1
  export { EPlanIdentifier } from './plans-identifier.enum';
2
+ export { EPlanFeatureType } from './plans-feature-type.enum';
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EPlanIdentifier = void 0;
3
+ exports.EPlanFeatureType = exports.EPlanIdentifier = void 0;
4
4
  var plans_identifier_enum_1 = require("./plans-identifier.enum");
5
5
  Object.defineProperty(exports, "EPlanIdentifier", { enumerable: true, get: function () { return plans_identifier_enum_1.EPlanIdentifier; } });
6
+ var plans_feature_type_enum_1 = require("./plans-feature-type.enum");
7
+ Object.defineProperty(exports, "EPlanFeatureType", { enumerable: true, get: function () { return plans_feature_type_enum_1.EPlanFeatureType; } });
@@ -13,6 +13,8 @@ export declare class RequestedItemsEntity implements IRequestedItems {
13
13
  updatedAt: Date;
14
14
  isPaid: boolean;
15
15
  status: EOrderExtraInfo | null;
16
+ message: string | null;
17
+ messageException: string | null;
16
18
  referenceToken: string | null;
17
19
  resendCount: number;
18
20
  constructor(data?: Partial<RequestedItemsEntity>);
@@ -17,6 +17,8 @@ var RequestedItemsEntity = /** @class */ (function () {
17
17
  this.updatedAt = new Date();
18
18
  this.isPaid = false;
19
19
  this.status = null;
20
+ this.message = null;
21
+ this.messageException = null;
20
22
  this.referenceToken = null;
21
23
  this.resendCount = 0;
22
24
  if (data) {
@@ -11,6 +11,8 @@ export interface IRequestedItems {
11
11
  isPaid: boolean;
12
12
  token: string;
13
13
  status: EOrderExtraInfo | null;
14
+ message: string | null;
15
+ messageException: string | null;
14
16
  data: IRequestedItemData[];
15
17
  referenceToken: string | null;
16
18
  resendCount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.42",
3
+ "version": "1.6.44",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",