cecon-interfaces 1.9.21 → 1.9.22
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.
- package/dist/esm2022/payio/activation-key/entities/activation-key.entity.mjs +3 -2
- package/dist/esm2022/payio/activation-key/interfaces/i-activation-key.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +2 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/activation-key/entities/activation-key.entity.d.ts +2 -1
- package/dist/payio/activation-key/entities/activation-key.entity.js +3 -1
- package/dist/payio/activation-key/interfaces/i-activation-key.d.ts +2 -1
- package/package.json +1 -1
@@ -2,7 +2,7 @@ import { EPayioActivationKeyStatus } from "../enums/activation-key-status.enum";
|
|
2
2
|
import { EPayioLicenseType } from "../enums/license-type.enum";
|
3
3
|
import { IPayioActivationKey } from "../interfaces/i-activation-key";
|
4
4
|
export declare class PayioActivationKeyEntity implements IPayioActivationKey {
|
5
|
-
|
5
|
+
activationAt: Date | null;
|
6
6
|
appId: string | null;
|
7
7
|
appSlug: string | null;
|
8
8
|
batchId: string;
|
@@ -15,6 +15,7 @@ export declare class PayioActivationKeyEntity implements IPayioActivationKey {
|
|
15
15
|
gracePeriodDays: number;
|
16
16
|
hardwareFingerprint: string | null;
|
17
17
|
id: string;
|
18
|
+
installationAt: Date | null;
|
18
19
|
key: string | null;
|
19
20
|
licenseType: EPayioLicenseType;
|
20
21
|
logs: string[];
|
@@ -7,7 +7,7 @@ var PayioActivationKeyEntity = /** @class */ (function () {
|
|
7
7
|
function PayioActivationKeyEntity(data) {
|
8
8
|
// === CAMPOS PREENCHIDOS NA ATIVAÇÃO ===
|
9
9
|
// Data em que a chave foi ativada (null = não ativada)
|
10
|
-
this.
|
10
|
+
this.activationAt = null;
|
11
11
|
// === REFERÊNCIAS DO SISTEMA ===
|
12
12
|
// ID do aplicativo (copiado do batch)
|
13
13
|
this.appId = null;
|
@@ -34,6 +34,8 @@ var PayioActivationKeyEntity = /** @class */ (function () {
|
|
34
34
|
this.hardwareFingerprint = null;
|
35
35
|
// Identificador único da chave (UUID)
|
36
36
|
this.id = '';
|
37
|
+
// data da instalaçao do dispositivo
|
38
|
+
this.installationAt = null;
|
37
39
|
// A chave de ativação em si (ex.: "PAYIO-XXXXX-XXXXX-XXXXX")
|
38
40
|
this.key = null;
|
39
41
|
// === DADOS COPIADOS DO LOTE (para performance) ===
|
@@ -10,13 +10,14 @@ export interface IPayioActivationKey {
|
|
10
10
|
validityTrialPeriodDays: number;
|
11
11
|
gracePeriodDays: number;
|
12
12
|
versionConstraint: string[];
|
13
|
-
|
13
|
+
activationAt: Date | null;
|
14
14
|
hardwareFingerprint: string | null;
|
15
15
|
appId: string | null;
|
16
16
|
appSlug: string | null;
|
17
17
|
companyId: string | null;
|
18
18
|
companyName: string | null;
|
19
19
|
deviceId: string | null;
|
20
|
+
installationAt: Date | null;
|
20
21
|
distributorId: string;
|
21
22
|
distributorName: string;
|
22
23
|
createdAt: Date;
|