cecon-interfaces 2.0.15 → 2.0.16
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 +3 -2
- package/dist/esm2022/payio/activation-key/interfaces/i-activation-key.mjs +1 -1
- package/dist/esm2022/payio/payload/entities/payload-device.entity.mjs +2 -1
- package/dist/esm2022/payio/payload/interfaces/i-payload-device.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/activation-key/entities/activation-key.entity.d.ts +2 -1
- package/dist/payio/activation-key/entities/activation-key.entity.js +2 -1
- package/dist/payio/activation-key/interfaces/i-activation-key.d.ts +4 -3
- package/dist/payio/payload/entities/payload-device.entity.d.ts +1 -0
- package/dist/payio/payload/entities/payload-device.entity.js +1 -0
- package/dist/payio/payload/interfaces/i-payload-device.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ import { EPayioLicenseType } from '../enums/license-type.enum';
|
|
|
3
3
|
import { IPayioActivationKey } from '../interfaces/i-activation-key';
|
|
4
4
|
export declare class PayioActivationKeyEntity implements IPayioActivationKey {
|
|
5
5
|
activationAt: Date | null;
|
|
6
|
+
allowMultipleTrialActivations: boolean;
|
|
6
7
|
appId: string | null;
|
|
7
8
|
appSlug: string | null;
|
|
8
9
|
batchId: string;
|
|
@@ -10,7 +11,7 @@ export declare class PayioActivationKeyEntity implements IPayioActivationKey {
|
|
|
10
11
|
companyName: string | null;
|
|
11
12
|
confirmationKey: boolean;
|
|
12
13
|
createdAt: Date;
|
|
13
|
-
|
|
14
|
+
deviceUid: string | null;
|
|
14
15
|
distributorId: string;
|
|
15
16
|
distributorName: string;
|
|
16
17
|
expiresAt: Date | null;
|
|
@@ -8,6 +8,7 @@ var PayioActivationKeyEntity = /** @class */ (function () {
|
|
|
8
8
|
// === CAMPOS PREENCHIDOS NA ATIVAÇÃO ===
|
|
9
9
|
// Data em que a chave foi ativada (null = não ativada)
|
|
10
10
|
this.activationAt = null;
|
|
11
|
+
this.allowMultipleTrialActivations = false;
|
|
11
12
|
// === REFERÊNCIAS DO SISTEMA ===
|
|
12
13
|
// ID do aplicativo (copiado do batch)
|
|
13
14
|
this.appId = null;
|
|
@@ -24,7 +25,7 @@ var PayioActivationKeyEntity = /** @class */ (function () {
|
|
|
24
25
|
// Data de criação da chave
|
|
25
26
|
this.createdAt = new Date();
|
|
26
27
|
// ID do dispositivo (preenchido na ativação)
|
|
27
|
-
this.
|
|
28
|
+
this.deviceUid = null;
|
|
28
29
|
// === DADOS DE DISTRIBUIÇÃO (copiados do batch) ===
|
|
29
30
|
// ID do distribuidor
|
|
30
31
|
this.distributorId = '';
|
|
@@ -1,5 +1,5 @@
|
|
|
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
4
|
activationAt: Date | null;
|
|
5
5
|
appId: string | null;
|
|
@@ -9,7 +9,7 @@ export interface IPayioActivationKey {
|
|
|
9
9
|
companyName: string | null;
|
|
10
10
|
confirmationKey: boolean;
|
|
11
11
|
createdAt: Date;
|
|
12
|
-
|
|
12
|
+
deviceUid: string | null;
|
|
13
13
|
distributorId: string;
|
|
14
14
|
distributorName: string;
|
|
15
15
|
expiresAt: Date | null;
|
|
@@ -26,5 +26,6 @@ export interface IPayioActivationKey {
|
|
|
26
26
|
updatedAt: Date;
|
|
27
27
|
validityPeriodMonths: number;
|
|
28
28
|
validityTrialPeriodDays: number;
|
|
29
|
+
allowMultipleTrialActivations: boolean;
|
|
29
30
|
versionConstraint: string[];
|
|
30
31
|
}
|