cecon-interfaces 1.9.9 → 1.9.11
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 +1 -2
- package/dist/esm2022/payio/activation-batch/interfaces/i-activation-batch.mjs +1 -1
- package/dist/esm2022/payio/app/enums/activation-mode.enum.mjs +2 -1
- package/dist/esm2022/payio/terminals/entities/terminal.entity.mjs +2 -2
- package/dist/esm2022/payio/terminals/interfaces/i-terminal.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +2 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/activation-batch/entities/activation-batch.entity.d.ts +0 -1
- package/dist/payio/activation-batch/entities/activation-batch.entity.js +0 -1
- package/dist/payio/activation-batch/interfaces/i-activation-batch.d.ts +0 -2
- package/dist/payio/app/enums/activation-mode.enum.d.ts +2 -1
- package/dist/payio/app/enums/activation-mode.enum.js +1 -0
- package/dist/payio/terminals/entities/terminal.entity.d.ts +1 -1
- package/dist/payio/terminals/entities/terminal.entity.js +1 -1
- package/dist/payio/terminals/interfaces/i-terminal.d.ts +1 -1
- package/package.json +1 -1
@@ -26,7 +26,6 @@ var PayioActivationBatchEntity = /** @class */ (function () {
|
|
26
26
|
this.unitPrice = 0;
|
27
27
|
this.updatedAt = new Date();
|
28
28
|
this.validUntil = new Date();
|
29
|
-
this.validityPeriodMonths = 12;
|
30
29
|
this.year = new Date().getFullYear();
|
31
30
|
if (data) {
|
32
31
|
for (var key in data) {
|
@@ -46,8 +46,6 @@ export interface IPayioActivationBatch {
|
|
46
46
|
updatedAt: Date;
|
47
47
|
/** Data limite para ativação das licenças */
|
48
48
|
validUntil: Date;
|
49
|
-
/** Período de validade após ativação (em meses, padrão: 12) */
|
50
|
-
validityPeriodMonths: number;
|
51
49
|
/** Ano de referência do lote */
|
52
50
|
year: number;
|
53
51
|
}
|
@@ -5,4 +5,5 @@ var EAppActivationMode;
|
|
5
5
|
(function (EAppActivationMode) {
|
6
6
|
EAppActivationMode["DIRECT_1_TO_1"] = "DIRECT";
|
7
7
|
EAppActivationMode["MANAGED_1_TO_N"] = "MANAGED";
|
8
|
+
EAppActivationMode["NONE"] = "NONE";
|
8
9
|
})(EAppActivationMode || (exports.EAppActivationMode = EAppActivationMode = {}));
|
@@ -11,7 +11,7 @@ var PayioTerminalEntity = /** @class */ (function () {
|
|
11
11
|
this.companyId = '';
|
12
12
|
this.createdAt = new Date();
|
13
13
|
this.deviceId = '';
|
14
|
-
this.id =
|
14
|
+
this.id = '';
|
15
15
|
this.ipAddress = '';
|
16
16
|
this.ipServerAddress = null;
|
17
17
|
this.model = enum_1.EPayioVisionTerminalModel.CONTROL_ID;
|