cecon-interfaces 1.7.58 → 1.7.60
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/natipay/payload/entities/payload-app.entity.mjs +3 -4
- package/dist/esm2022/natipay/payload/interfaces/i-payload-app.mjs +1 -1
- package/dist/esm2022/payio/app/entities/app.entity.mjs +9 -4
- package/dist/esm2022/payio/app/interfaces/i-app.mjs +1 -1
- package/dist/esm2022/payio/global-products/entities/global-product.entity.mjs +2 -1
- package/dist/esm2022/payio/global-products/interfaces/i-global-products.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +11 -6
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/natipay/payload/entities/payload-app.entity.d.ts +2 -0
- package/dist/natipay/payload/entities/payload-app.entity.js +2 -3
- package/dist/natipay/payload/interfaces/i-payload-app.d.ts +3 -1
- package/dist/package.json +1 -1
- package/dist/payio/app/entities/app.entity.d.ts +8 -0
- package/dist/payio/app/entities/app.entity.js +8 -3
- package/dist/payio/app/interfaces/i-app.d.ts +10 -2
- package/dist/payio/global-products/entities/global-product.entity.d.ts +1 -0
- package/dist/payio/global-products/entities/global-product.entity.js +1 -0
- package/dist/payio/global-products/interfaces/i-global-products.d.ts +1 -0
- package/package.json +1 -1
@@ -1,6 +1,8 @@
|
|
1
1
|
import { INatipayJwtPayloadApp } from '../interfaces/i-payload-app';
|
2
2
|
export declare class NatipayJwtPayloadAppEntity implements INatipayJwtPayloadApp {
|
3
|
+
developerId: string | null;
|
3
4
|
id: string;
|
5
|
+
name: string | null;
|
4
6
|
slug: string;
|
5
7
|
constructor(data?: Partial<NatipayJwtPayloadAppEntity>);
|
6
8
|
}
|
@@ -2,11 +2,10 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.NatipayJwtPayloadAppEntity = void 0;
|
4
4
|
var NatipayJwtPayloadAppEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (3)
|
6
|
-
// #region Constructors (1)
|
7
5
|
function NatipayJwtPayloadAppEntity(data) {
|
8
|
-
|
6
|
+
this.developerId = null;
|
9
7
|
this.id = '';
|
8
|
+
this.name = null;
|
10
9
|
this.slug = '';
|
11
10
|
if (data) {
|
12
11
|
for (var key in data) {
|
package/dist/package.json
CHANGED
@@ -2,14 +2,22 @@ import { EPayuioAppSlug } from '../enums';
|
|
2
2
|
import { IPayioApp } from '../interfaces/i-app';
|
3
3
|
export declare class PayioAppEntity implements IPayioApp {
|
4
4
|
active: boolean;
|
5
|
+
clientKey: string | null;
|
6
|
+
clientSecret: string | null;
|
7
|
+
createdAt: Date;
|
5
8
|
description: string;
|
6
9
|
downloadUrl: string;
|
10
|
+
expiresAt: Date | null;
|
11
|
+
expiresIn: number | null;
|
7
12
|
id: string;
|
8
13
|
name: string;
|
9
14
|
price: number;
|
15
|
+
refreshToken: string | null;
|
10
16
|
secret: string;
|
11
17
|
slug: EPayuioAppSlug;
|
12
18
|
tags: string[];
|
19
|
+
token: string | null;
|
20
|
+
updatedAt: Date;
|
13
21
|
version: string;
|
14
22
|
constructor(data?: Partial<PayioAppEntity>);
|
15
23
|
}
|
@@ -3,19 +3,24 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PayioAppEntity = void 0;
|
4
4
|
var enums_1 = require("../enums");
|
5
5
|
var PayioAppEntity = /** @class */ (function () {
|
6
|
-
// #endregion Properties (10)
|
7
|
-
// #region Constructors (1)
|
8
6
|
function PayioAppEntity(data) {
|
9
|
-
// #region Properties (10)
|
10
7
|
this.active = false;
|
8
|
+
this.clientKey = null;
|
9
|
+
this.clientSecret = null;
|
10
|
+
this.createdAt = new Date();
|
11
11
|
this.description = '';
|
12
12
|
this.downloadUrl = '';
|
13
|
+
this.expiresAt = null;
|
14
|
+
this.expiresIn = null;
|
13
15
|
this.id = '';
|
14
16
|
this.name = '';
|
15
17
|
this.price = 0;
|
18
|
+
this.refreshToken = null;
|
16
19
|
this.secret = '';
|
17
20
|
this.slug = enums_1.EPayuioAppSlug.none;
|
18
21
|
this.tags = [];
|
22
|
+
this.token = null;
|
23
|
+
this.updatedAt = new Date();
|
19
24
|
this.version = '0.0.1';
|
20
25
|
if (data) {
|
21
26
|
for (var key in data) {
|
@@ -1,13 +1,21 @@
|
|
1
1
|
import { EPayuioAppSlug } from '../enums';
|
2
2
|
export interface IPayioApp {
|
3
3
|
active: boolean;
|
4
|
+
clientKey: string | null;
|
5
|
+
clientSecret: string | null;
|
6
|
+
createdAt: Date;
|
4
7
|
description: string;
|
5
8
|
downloadUrl: string;
|
9
|
+
expiresAt: Date | null;
|
10
|
+
expiresIn: number | null;
|
6
11
|
id: string;
|
7
12
|
name: string;
|
8
|
-
slug: EPayuioAppSlug;
|
9
13
|
price: number;
|
14
|
+
refreshToken: string | null;
|
10
15
|
secret: string;
|
11
|
-
|
16
|
+
slug: EPayuioAppSlug;
|
12
17
|
tags: string[];
|
18
|
+
token: string | null;
|
19
|
+
updatedAt: Date;
|
20
|
+
version: string;
|
13
21
|
}
|