cecon-interfaces 1.6.17 → 1.6.20
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/nati-v2/entities/validate-code.entity.mjs +1 -1
- package/dist/esm2022/nati-v2/interfaces/i-validate-code.mjs +1 -1
- package/dist/esm2022/nati-v2/interfaces/index.mjs +1 -1
- package/dist/esm2022/payio/payload/entities/payload-subscription.entity.mjs +1 -2
- package/dist/esm2022/payio/subscriptions/entities/subscription.entity.mjs +4 -3
- package/dist/esm2022/payio/subscriptions/interfaces/i-subscription.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/nati-v2/entities/validate-code.entity.d.ts +2 -2
- package/dist/nati-v2/interfaces/i-validate-code.d.ts +1 -1
- package/dist/nati-v2/interfaces/index.d.ts +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/payload/entities/payload-subscription.entity.d.ts +0 -1
- package/dist/payio/payload/entities/payload-subscription.entity.js +0 -1
- package/dist/payio/subscriptions/entities/subscription.entity.d.ts +1 -0
- package/dist/payio/subscriptions/entities/subscription.entity.js +3 -2
- package/dist/payio/subscriptions/interfaces/i-subscription.d.ts +1 -0
- package/package.json +1 -1
@@ -1,5 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
export declare class NatiV2ValidateCodeEntity implements
|
1
|
+
import { INatiV2ValidateCode } from '../interfaces/i-validate-code';
|
2
|
+
export declare class NatiV2ValidateCodeEntity implements INatiV2ValidateCode {
|
3
3
|
updatedAt: number;
|
4
4
|
verified: boolean;
|
5
5
|
verifiedAt: Date;
|
@@ -1 +1 @@
|
|
1
|
-
export {
|
1
|
+
export { INatiV2ValidateCode } from './i-validate-code';
|
package/dist/package.json
CHANGED
@@ -3,7 +3,6 @@ import { IPayioJwtPayloadSubscription } from '../interfaces/i-payload-subscripti
|
|
3
3
|
export declare class PayioJwtPayloadSubscriptionEntity implements IPayioJwtPayloadSubscription {
|
4
4
|
expiresAt: number;
|
5
5
|
id: string;
|
6
|
-
planId: string;
|
7
6
|
status: ESubsStatus;
|
8
7
|
constructor(data?: Partial<PayioJwtPayloadSubscriptionEntity>);
|
9
8
|
}
|
@@ -3,14 +3,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PayioSubscriptionEntity = void 0;
|
4
4
|
var general_1 = require("../../../general");
|
5
5
|
var PayioSubscriptionEntity = /** @class */ (function () {
|
6
|
-
// #endregion Properties (
|
6
|
+
// #endregion Properties (25)
|
7
7
|
// #region Constructors (1)
|
8
8
|
function PayioSubscriptionEntity(data) {
|
9
|
-
// #region Properties (
|
9
|
+
// #region Properties (25)
|
10
10
|
this.activeDevices = [];
|
11
11
|
this.amount = 0;
|
12
12
|
this.appIds = [];
|
13
13
|
this.cancellationReason = '';
|
14
|
+
this.companyId = '';
|
14
15
|
this.createdAt = new Date();
|
15
16
|
this.customVariables = [];
|
16
17
|
this.expiresAt = new Date();
|