cecon-interfaces 1.6.63 → 1.6.64
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/activation-key/entities/activation-key.entity.mjs +6 -3
- 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/package.json +1 -1
- package/dist/payio/activation-key/entities/activation-key.entity.d.ts +3 -0
- package/dist/payio/activation-key/entities/activation-key.entity.js +5 -2
- package/dist/payio/activation-key/interfaces/i-activation-key.d.ts +3 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -2,6 +2,8 @@ import { EPayuioActivationStatus } from '../enums/activation-key-status.enum';
|
|
2
2
|
import { IPayioActivationKey } from '../interfaces/i-activation-key';
|
3
3
|
export declare class PayioActivationKeyEntity implements IPayioActivationKey {
|
4
4
|
activationDate: Date | null;
|
5
|
+
appId: string | null;
|
6
|
+
appSlug: string | null;
|
5
7
|
clientKey: string | null;
|
6
8
|
companyId: string | null;
|
7
9
|
companyName: string | null;
|
@@ -13,6 +15,7 @@ export declare class PayioActivationKeyEntity implements IPayioActivationKey {
|
|
13
15
|
distributorName: string | null;
|
14
16
|
expirationDate: Date | null;
|
15
17
|
id: string;
|
18
|
+
keyGeneratorId: string | null;
|
16
19
|
logs: string[];
|
17
20
|
status: EPayuioActivationStatus;
|
18
21
|
usageLimit: number;
|
@@ -3,11 +3,13 @@ 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 (19)
|
7
7
|
// #region Constructors (1)
|
8
8
|
function PayioActivationKeyEntity(data) {
|
9
|
-
// #region Properties (
|
9
|
+
// #region Properties (19)
|
10
10
|
this.activationDate = null;
|
11
|
+
this.appId = null;
|
12
|
+
this.appSlug = null;
|
11
13
|
this.clientKey = null;
|
12
14
|
this.companyId = null;
|
13
15
|
this.companyName = null;
|
@@ -19,6 +21,7 @@ var PayioActivationKeyEntity = /** @class */ (function () {
|
|
19
21
|
this.distributorName = null;
|
20
22
|
this.expirationDate = null;
|
21
23
|
this.id = '';
|
24
|
+
this.keyGeneratorId = null;
|
22
25
|
this.logs = [];
|
23
26
|
this.status = activation_key_status_enum_1.EPayuioActivationStatus.PENDING;
|
24
27
|
this.usageLimit = 0;
|
@@ -1,10 +1,13 @@
|
|
1
1
|
import { EPayuioActivationStatus } from '../enums/activation-key-status.enum';
|
2
2
|
export interface IPayioActivationKey {
|
3
3
|
activationDate: Date | null;
|
4
|
+
appId: string | null;
|
5
|
+
appSlug: string | null;
|
4
6
|
clientKey: string | null;
|
5
7
|
companyId: string | null;
|
6
8
|
companyName: string | null;
|
7
9
|
createdAt: Date;
|
10
|
+
keyGeneratorId: string | null;
|
8
11
|
createdBy: string | null;
|
9
12
|
deviceId: string | null;
|
10
13
|
distributorId: string | null;
|