cecon-interfaces 1.9.23 → 1.9.24

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.
@@ -12,6 +12,7 @@ export declare class PayioActivationKeyEntity implements IPayioActivationKey {
12
12
  deviceId: string | null;
13
13
  distributorId: string;
14
14
  distributorName: string;
15
+ expiresAt: Date | null;
15
16
  gracePeriodDays: number;
16
17
  hardwareFingerprint: string | null;
17
18
  id: string;
@@ -28,6 +28,7 @@ var PayioActivationKeyEntity = /** @class */ (function () {
28
28
  // ID do distribuidor
29
29
  this.distributorId = '';
30
30
  this.distributorName = '';
31
+ this.expiresAt = null;
31
32
  // Dias de tolerância (copiado do batch)
32
33
  this.gracePeriodDays = 0;
33
34
  // Hash da máquina que consumiu a licença
@@ -11,6 +11,7 @@ export interface IPayioActivationKey {
11
11
  deviceId: string | null;
12
12
  distributorId: string;
13
13
  distributorName: string;
14
+ expiresAt: Date | null;
14
15
  gracePeriodDays: number;
15
16
  hardwareFingerprint: string | null;
16
17
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.9.23",
3
+ "version": "1.9.24",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",