cecon-interfaces 2.0.32 → 2.0.33
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 +4 -3
- package/dist/esm2022/payio/activation-key/interfaces/i-activation-key.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +1 -0
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/activation-key/entities/activation-key.entity.d.ts +4 -3
- package/dist/payio/activation-key/entities/activation-key.entity.js +1 -0
- package/dist/payio/activation-key/interfaces/i-activation-key.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { EPayioActivationKeyStatus } from
|
|
2
|
-
import { EPayioLicenseType } from
|
|
3
|
-
import { IPayioActivationKey } from
|
|
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
|
activatedAt: Date | null;
|
|
6
6
|
allowMultipleTrialActivations: boolean;
|
|
@@ -13,6 +13,7 @@ export declare class PayioActivationKeyEntity implements IPayioActivationKey {
|
|
|
13
13
|
companyName: string | null;
|
|
14
14
|
createdAt: Date;
|
|
15
15
|
expiredAt: Date | null;
|
|
16
|
+
expiresAt: Date | null;
|
|
16
17
|
gracePeriodDays: number;
|
|
17
18
|
id: string;
|
|
18
19
|
key: string | null;
|
|
@@ -24,6 +24,7 @@ var PayioActivationKeyEntity = /** @class */ (function () {
|
|
|
24
24
|
// Data de criação da chave
|
|
25
25
|
this.createdAt = new Date();
|
|
26
26
|
this.expiredAt = null;
|
|
27
|
+
this.expiresAt = null;
|
|
27
28
|
// Dias de tolerância (copiado do batch)
|
|
28
29
|
this.gracePeriodDays = 0;
|
|
29
30
|
// Identificador único da chave (UUID)
|