cecon-interfaces 1.6.17 → 1.6.20

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
- import { INatiVValidateCode } from '../interfaces/i-validate-code';
2
- export declare class NatiV2ValidateCodeEntity implements INatiVValidateCode {
1
+ import { INatiV2ValidateCode } from '../interfaces/i-validate-code';
2
+ export declare class NatiV2ValidateCodeEntity implements INatiV2ValidateCode {
3
3
  updatedAt: number;
4
4
  verified: boolean;
5
5
  verifiedAt: Date;
@@ -1,4 +1,4 @@
1
- export interface INatiVValidateCode {
1
+ export interface INatiV2ValidateCode {
2
2
  updatedAt: number;
3
3
  verified: boolean;
4
4
  verifiedAt: Date;
@@ -1 +1 @@
1
- export { INatiVValidateCode } from './i-validate-code';
1
+ export { INatiV2ValidateCode } from './i-validate-code';
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.17",
3
+ "version": "1.6.20",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -3,7 +3,6 @@ import { IPayioJwtPayloadSubscription } from '../interfaces/i-payload-subscripti
3
3
  export declare class PayioJwtPayloadSubscriptionEntity implements IPayioJwtPayloadSubscription {
4
4
  expiresAt: number;
5
5
  id: string;
6
- planId: string;
7
6
  status: ESubsStatus;
8
7
  constructor(data?: Partial<PayioJwtPayloadSubscriptionEntity>);
9
8
  }
@@ -9,7 +9,6 @@ var PayioJwtPayloadSubscriptionEntity = /** @class */ (function () {
9
9
  // #region Properties (4)
10
10
  this.expiresAt = 0;
11
11
  this.id = '';
12
- this.planId = '';
13
12
  this.status = general_1.ESubsStatus.PENDING;
14
13
  if (data) {
15
14
  for (var key in data) {
@@ -9,6 +9,7 @@ export declare class PayioSubscriptionEntity implements IPayioSubscription {
9
9
  amount: number;
10
10
  appIds: string[];
11
11
  cancellationReason: string;
12
+ companyId: string;
12
13
  createdAt: Date;
13
14
  customVariables: CustomVariableEntity[];
14
15
  expiresAt: Date;
@@ -3,14 +3,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioSubscriptionEntity = void 0;
4
4
  var general_1 = require("../../../general");
5
5
  var PayioSubscriptionEntity = /** @class */ (function () {
6
- // #endregion Properties (24)
6
+ // #endregion Properties (25)
7
7
  // #region Constructors (1)
8
8
  function PayioSubscriptionEntity(data) {
9
- // #region Properties (24)
9
+ // #region Properties (25)
10
10
  this.activeDevices = [];
11
11
  this.amount = 0;
12
12
  this.appIds = [];
13
13
  this.cancellationReason = '';
14
+ this.companyId = '';
14
15
  this.createdAt = new Date();
15
16
  this.customVariables = [];
16
17
  this.expiresAt = new Date();
@@ -8,6 +8,7 @@ export interface IPayioSubscription {
8
8
  amount: number;
9
9
  appIds: string[];
10
10
  cancellationReason: string;
11
+ companyId: string;
11
12
  createdAt: Date;
12
13
  customVariables: ICustomVariable[];
13
14
  expiresAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.17",
3
+ "version": "1.6.20",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",