cecon-interfaces 2.0.28 → 2.0.29
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-batch/entities/activation-batch.entity.mjs +3 -3
- package/dist/esm2022/payio/activation-batch/interfaces/i-activation-batch.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/activation-batch/entities/activation-batch.entity.d.ts +3 -3
- package/dist/payio/activation-batch/interfaces/i-activation-batch.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { EPayioLicenseType } from
|
|
2
|
-
import { EPayioActivationBatchStatus } from
|
|
3
|
-
import { IPayioActivationBatch } from
|
|
1
|
+
import { EPayioLicenseType } from "../../activation-key/enums/license-type.enum";
|
|
2
|
+
import { EPayioActivationBatchStatus } from "../enums/activation-batch-status.enum";
|
|
3
|
+
import { IPayioActivationBatch } from "../interfaces/i-activation-batch";
|
|
4
4
|
export declare class PayioActivationBatchEntity implements IPayioActivationBatch {
|
|
5
5
|
/** Prazo em dias para ativar as licenças (a partir da criação do lote) */
|
|
6
6
|
activationDeadlineDays: number;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EPayioLicenseType } from '../../activation-key/enums/license-type.enum';
|
|
1
2
|
import { EPayioActivationBatchStatus } from '../enums/activation-batch-status.enum';
|
|
2
3
|
export interface IPayioActivationBatch {
|
|
3
4
|
/** Prazo em dias para ativar as licenças (a partir da criação do lote) */
|
|
@@ -28,6 +29,8 @@ export interface IPayioActivationBatch {
|
|
|
28
29
|
gracePeriodDays: number;
|
|
29
30
|
/** Identificador único do lote (UUID) */
|
|
30
31
|
id: string;
|
|
32
|
+
/** Tipo de licença que será gerada neste lote */
|
|
33
|
+
licenseType: EPayioLicenseType;
|
|
31
34
|
/** Logs de operações do lote */
|
|
32
35
|
logs: string[];
|
|
33
36
|
/** Preço total negociado com o distribuidor */
|