cecon-interfaces 1.1.40 → 1.1.42

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.1.40",
3
+ "version": "1.1.42",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,6 +11,7 @@ export declare class PartnerEntity implements IPartner {
11
11
  id: string;
12
12
  imageUrl?: string;
13
13
  internationalCode: string;
14
+ level: number;
14
15
  logoUrl?: string;
15
16
  name: string;
16
17
  paymentProvider: PaymentProviderEntity;
@@ -17,6 +17,7 @@ var PartnerEntity = /** @class */ (function () {
17
17
  this.id = '';
18
18
  this.imageUrl = '';
19
19
  this.internationalCode = '';
20
+ this.level = 50;
20
21
  this.logoUrl = '';
21
22
  this.name = '';
22
23
  this.paymentProvider = new general_1.PaymentProviderEntity();
@@ -6,6 +6,7 @@ export interface IPartner {
6
6
  doc: string;
7
7
  docType: DocTypeEnum;
8
8
  email: string;
9
+ level: number;
9
10
  fullName: string;
10
11
  id: string;
11
12
  imageUrl?: string;
@@ -30,6 +30,7 @@ export declare class SubscriptionEntity implements ISubscription {
30
30
  phoneNumberNotification: string;
31
31
  planId: string;
32
32
  planName: string;
33
+ recentInvoice: InvoiceEntity[];
33
34
  renewPaymentDate: Date;
34
35
  renovatedAt: Date;
35
36
  startsAt: Date;
@@ -5,10 +5,10 @@ var general_1 = require("../../general");
5
5
  var enums_1 = require("../enums");
6
6
  var subscription_company_entity_1 = require("./subscription-company.entity");
7
7
  var SubscriptionEntity = /** @class */ (function () {
8
- // #endregion Properties (30)
8
+ // #endregion Properties (31)
9
9
  // #region Constructors (1)
10
10
  function SubscriptionEntity(data) {
11
- // #region Properties (30)
11
+ // #region Properties (31)
12
12
  this.amount = 0;
13
13
  this.appId = '';
14
14
  this.appName = '';
@@ -32,6 +32,7 @@ var SubscriptionEntity = /** @class */ (function () {
32
32
  this.phoneNumberNotification = '';
33
33
  this.planId = '';
34
34
  this.planName = '';
35
+ this.recentInvoice = [];
35
36
  this.renewPaymentDate = new Date();
36
37
  this.renovatedAt = new Date();
37
38
  this.startsAt = new Date();
@@ -30,6 +30,7 @@ export interface ISubscription {
30
30
  phoneNumberNotification: string;
31
31
  planId: string;
32
32
  planName: string;
33
+ recentInvoice: IInvoice[];
33
34
  renewPaymentDate: Date;
34
35
  renovatedAt: Date;
35
36
  startsAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.40",
3
+ "version": "1.1.42",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",