cecon-interfaces 1.9.22 → 1.9.23
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/esm2022/payio/terminals/entities/terminal.entity.mjs +4 -1
- package/dist/esm2022/payio/terminals/interfaces/i-terminal.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -0
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/activation-key/entities/activation-key.entity.d.ts +3 -3
- package/dist/payio/activation-key/interfaces/i-activation-key.d.ts +15 -15
- package/dist/payio/terminals/entities/terminal.entity.d.ts +3 -0
- package/dist/payio/terminals/entities/terminal.entity.js +3 -0
- package/dist/payio/terminals/interfaces/i-terminal.d.ts +3 -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
|
activationAt: Date | null;
|
6
6
|
appId: string | null;
|
@@ -1,28 +1,28 @@
|
|
1
|
-
import { EPayioActivationKeyStatus } from
|
2
|
-
import { EPayioLicenseType } from
|
1
|
+
import { EPayioActivationKeyStatus } from "../enums/activation-key-status.enum";
|
2
|
+
import { EPayioLicenseType } from "../enums/license-type.enum";
|
3
3
|
export interface IPayioActivationKey {
|
4
|
-
id: string;
|
5
|
-
key: string | null;
|
6
|
-
status: EPayioActivationKeyStatus;
|
7
|
-
batchId: string;
|
8
|
-
licenseType: EPayioLicenseType;
|
9
|
-
validityPeriodMonths: number;
|
10
|
-
validityTrialPeriodDays: number;
|
11
|
-
gracePeriodDays: number;
|
12
|
-
versionConstraint: string[];
|
13
4
|
activationAt: Date | null;
|
14
|
-
hardwareFingerprint: string | null;
|
15
5
|
appId: string | null;
|
16
6
|
appSlug: string | null;
|
7
|
+
batchId: string;
|
17
8
|
companyId: string | null;
|
18
9
|
companyName: string | null;
|
10
|
+
createdAt: Date;
|
19
11
|
deviceId: string | null;
|
20
|
-
installationAt: Date | null;
|
21
12
|
distributorId: string;
|
22
13
|
distributorName: string;
|
23
|
-
|
14
|
+
gracePeriodDays: number;
|
15
|
+
hardwareFingerprint: string | null;
|
16
|
+
id: string;
|
17
|
+
installationAt: Date | null;
|
18
|
+
key: string | null;
|
19
|
+
licenseType: EPayioLicenseType;
|
20
|
+
logs: string[];
|
24
21
|
notes: string | null;
|
22
|
+
status: EPayioActivationKeyStatus;
|
25
23
|
tags: string[];
|
26
|
-
logs: string[];
|
27
24
|
updatedAt: Date;
|
25
|
+
validityPeriodMonths: number;
|
26
|
+
validityTrialPeriodDays: number;
|
27
|
+
versionConstraint: string[];
|
28
28
|
}
|
@@ -1,8 +1,11 @@
|
|
1
|
+
import { EPayioActivationKeyStatus } from '../../activation-key';
|
1
2
|
import { EPayioVisionTerminalModel } from '../enum';
|
2
3
|
import { EPayioVisionTerminalOperation } from '../enum/operation.enum';
|
3
4
|
import { IPayioTerminal } from '../interfaces/i-terminal';
|
4
5
|
export declare class PayioTerminalEntity implements IPayioTerminal {
|
6
|
+
activationKey: string | null;
|
5
7
|
activationKeyId: string | null;
|
8
|
+
activationKeyStatus: EPayioActivationKeyStatus;
|
6
9
|
active: boolean;
|
7
10
|
appId: string;
|
8
11
|
companyId: string;
|
@@ -1,11 +1,14 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.PayioTerminalEntity = void 0;
|
4
|
+
var activation_key_1 = require("../../activation-key");
|
4
5
|
var enum_1 = require("../enum");
|
5
6
|
var operation_enum_1 = require("../enum/operation.enum");
|
6
7
|
var PayioTerminalEntity = /** @class */ (function () {
|
7
8
|
function PayioTerminalEntity(data) {
|
9
|
+
this.activationKey = null;
|
8
10
|
this.activationKeyId = null;
|
11
|
+
this.activationKeyStatus = activation_key_1.EPayioActivationKeyStatus.NONE;
|
9
12
|
this.active = false;
|
10
13
|
this.appId = '';
|
11
14
|
this.companyId = '';
|
@@ -1,8 +1,11 @@
|
|
1
|
+
import { EPayioActivationKeyStatus } from '../../activation-key';
|
1
2
|
import { EPayioVisionTerminalModel } from '../enum';
|
2
3
|
import { EPayioVisionTerminalOperation } from '../enum/operation.enum';
|
3
4
|
export interface IPayioTerminal {
|
4
5
|
active: boolean;
|
5
6
|
activationKeyId: string | null;
|
7
|
+
activationKeyStatus: EPayioActivationKeyStatus;
|
8
|
+
activationKey: string | null;
|
6
9
|
appId: string;
|
7
10
|
companyId: string;
|
8
11
|
createdAt: Date;
|