cecon-interfaces 1.8.82 → 1.8.83
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 +5 -3
- package/dist/esm2022/payio/activation-key/enums/activation-key-status.enum.mjs +2 -1
- package/dist/esm2022/payio/activation-key/interfaces/i-activation-key.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +5 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/activation-key/entities/activation-key.entity.d.ts +2 -0
- package/dist/payio/activation-key/entities/activation-key.entity.js +4 -2
- package/dist/payio/activation-key/enums/activation-key-status.enum.d.ts +1 -0
- package/dist/payio/activation-key/enums/activation-key-status.enum.js +1 -0
- package/dist/payio/activation-key/interfaces/i-activation-key.d.ts +2 -0
- package/package.json +1 -1
@@ -10,6 +10,8 @@ export declare class PayioActivationKeyEntity implements IPayioActivationKey {
|
|
10
10
|
companyName: string | null;
|
11
11
|
createdAt: Date;
|
12
12
|
createdBy: string | null;
|
13
|
+
distributionDate: Date | null;
|
14
|
+
distributedBy: string | null;
|
13
15
|
deviceId: string | null;
|
14
16
|
distributorId: string | null;
|
15
17
|
distributorKey: string | null;
|
@@ -3,10 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PayioActivationKeyEntity = void 0;
|
4
4
|
var activation_key_status_enum_1 = require("../enums/activation-key-status.enum");
|
5
5
|
var PayioActivationKeyEntity = /** @class */ (function () {
|
6
|
-
// #endregion Properties (
|
6
|
+
// #endregion Properties (22)
|
7
7
|
// #region Constructors (1)
|
8
8
|
function PayioActivationKeyEntity(data) {
|
9
|
-
// #region Properties (
|
9
|
+
// #region Properties (22)
|
10
10
|
this.activationDate = null;
|
11
11
|
this.activationReleasedId = '';
|
12
12
|
this.appId = null;
|
@@ -16,6 +16,8 @@ var PayioActivationKeyEntity = /** @class */ (function () {
|
|
16
16
|
this.companyName = null;
|
17
17
|
this.createdAt = new Date();
|
18
18
|
this.createdBy = null;
|
19
|
+
this.distributionDate = null;
|
20
|
+
this.distributedBy = null;
|
19
21
|
this.deviceId = null;
|
20
22
|
this.distributorId = null;
|
21
23
|
this.distributorKey = null;
|
@@ -5,6 +5,7 @@ var EPayuioActivationStatus;
|
|
5
5
|
(function (EPayuioActivationStatus) {
|
6
6
|
EPayuioActivationStatus["NONE"] = "NONE";
|
7
7
|
EPayuioActivationStatus["PENDING"] = "PENDING";
|
8
|
+
EPayuioActivationStatus["IN_DISTRIBUTION"] = "IN_DISTRIBUTION";
|
8
9
|
EPayuioActivationStatus["ACTIVE"] = "ACTIVE";
|
9
10
|
EPayuioActivationStatus["EXPIRED"] = "EXPIRED";
|
10
11
|
EPayuioActivationStatus["CANCELLED"] = "CANCELLED";
|
@@ -9,6 +9,8 @@ export interface IPayioActivationKey {
|
|
9
9
|
companyName: string | null;
|
10
10
|
createdAt: Date;
|
11
11
|
createdBy: string | null;
|
12
|
+
distributionDate: Date | null;
|
13
|
+
distributedBy: string | null;
|
12
14
|
sandbox: boolean;
|
13
15
|
deviceId: string | null;
|
14
16
|
distributorId: string | null;
|