cecon-interfaces 1.9.16 → 1.9.18

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.
@@ -1,12 +1,13 @@
1
- import { EPayioActivationKeyStatus } from '../enums/activation-key-status.enum';
2
- import { EPayioLicenseType } from '../enums/license-type.enum';
3
- import { IPayioActivationKey } from '../interfaces/i-activation-key';
1
+ import { EPayioActivationKeyStatus } from "../enums/activation-key-status.enum";
2
+ import { EPayioLicenseType } from "../enums/license-type.enum";
3
+ import { IPayioActivationKey } from "../interfaces/i-activation-key";
4
4
  export declare class PayioActivationKeyEntity implements IPayioActivationKey {
5
5
  activationDate: Date | null;
6
6
  appId: string | null;
7
7
  appSlug: string | null;
8
8
  batchId: string;
9
9
  companyId: string | null;
10
+ companyName: string | null;
10
11
  createdAt: Date;
11
12
  deviceId: string | null;
12
13
  distributorId: string;
@@ -18,6 +18,7 @@ var PayioActivationKeyEntity = /** @class */ (function () {
18
18
  this.batchId = '';
19
19
  // ID da empresa (preenchido na ativação)
20
20
  this.companyId = null;
21
+ this.companyName = null;
21
22
  // === AUDITORIA ===
22
23
  // Data de criação da chave
23
24
  this.createdAt = new Date();
@@ -15,6 +15,7 @@ export interface IPayioActivationKey {
15
15
  appId: string | null;
16
16
  appSlug: string | null;
17
17
  companyId: string | null;
18
+ companyName: string | null;
18
19
  deviceId: string | null;
19
20
  distributorId: string;
20
21
  distributorName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.9.16",
3
+ "version": "1.9.18",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",