cecon-interfaces 1.6.22 → 1.6.24

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.22",
3
+ "version": "1.6.24",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,7 +1,6 @@
1
1
  import { IPayioApp } from '../interfaces/i-app';
2
2
  export declare class PayioAppEntity implements IPayioApp {
3
3
  active: boolean;
4
- activeInstalls: number;
5
4
  description: string;
6
5
  downloadUrl: string;
7
6
  features: string[];
@@ -7,7 +7,6 @@ var PayioAppEntity = /** @class */ (function () {
7
7
  function PayioAppEntity(data) {
8
8
  // #region Properties (11)
9
9
  this.active = false;
10
- this.activeInstalls = 0;
11
10
  this.description = '';
12
11
  this.downloadUrl = '';
13
12
  this.features = [];
@@ -1,6 +1,5 @@
1
1
  export interface IPayioApp {
2
2
  active: boolean;
3
- activeInstalls: number;
4
3
  description: string;
5
4
  downloadUrl: string;
6
5
  features: string[];
@@ -18,7 +18,7 @@ export declare class PayioSubscriptionEntity implements IPayioSubscription {
18
18
  items: PayioFeatureEntity[];
19
19
  logs: PayioSubscriptionLogEntity[];
20
20
  notes: string;
21
- payment: PaymentMethodEntity;
21
+ payment: PaymentMethodEntity | null;
22
22
  planId: string;
23
23
  planName: string;
24
24
  renewPaymentDate: Date;
@@ -20,7 +20,7 @@ var PayioSubscriptionEntity = /** @class */ (function () {
20
20
  this.items = [];
21
21
  this.logs = [];
22
22
  this.notes = '';
23
- this.payment = new general_1.PaymentMethodEntity();
23
+ this.payment = null;
24
24
  this.planId = '';
25
25
  this.planName = '';
26
26
  this.renewPaymentDate = new Date();
@@ -16,7 +16,7 @@ export interface IPayioSubscription {
16
16
  items: IPayioFeature[];
17
17
  logs: IPayioSubscriptionLog[];
18
18
  notes: string;
19
- payment: IPaymentMethod;
19
+ payment: IPaymentMethod | null;
20
20
  planId: string;
21
21
  planName: string;
22
22
  renewPaymentDate: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.22",
3
+ "version": "1.6.24",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",