cecon-interfaces 1.6.44 → 1.6.46
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/company/entities/company.entity.d.ts +2 -0
- package/dist/company/entities/company.entity.js +2 -0
- package/dist/company/enums/index.d.ts +1 -0
- package/dist/company/enums/index.js +3 -1
- package/dist/company/enums/key-type.enum.d.ts +7 -0
- package/dist/company/enums/key-type.enum.js +11 -0
- package/dist/company/interfaces/i-company.d.ts +2 -0
- package/dist/esm2022/company/entities/company.entity.mjs +3 -1
- package/dist/esm2022/company/enums/index.mjs +2 -1
- package/dist/esm2022/company/enums/key-type.enum.mjs +9 -0
- package/dist/esm2022/company/interfaces/i-company.mjs +1 -1
- package/dist/esm2022/envelope/interfaces/factory-envelope-array-pag.functions.mjs +1 -1
- package/dist/esm2022/envelope/interfaces/factory-envelope-array.functions.mjs +1 -1
- package/dist/esm2022/envelope/interfaces/factory-envelope.functions.mjs +1 -1
- package/dist/esm2022/payio/payload/entities/payload-subscription.entity.mjs +2 -1
- package/dist/esm2022/payio/payload/interfaces/i-payload-subscription.mjs +1 -1
- package/dist/esm2022/withdraw/entities/withdraw-request.entity.mjs +2 -1
- package/dist/esm2022/withdraw/interfaces/i-withdraw-request.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +34 -22
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/payload/entities/payload-subscription.entity.d.ts +1 -0
- package/dist/payio/payload/entities/payload-subscription.entity.js +1 -0
- package/dist/payio/payload/interfaces/i-payload-subscription.d.ts +1 -0
- package/dist/withdraw/entities/withdraw-request.entity.d.ts +1 -0
- package/dist/withdraw/entities/withdraw-request.entity.js +1 -0
- package/dist/withdraw/interfaces/i-withdraw-request.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -10,6 +10,7 @@ var PayioJwtPayloadSubscriptionEntity = /** @class */ (function () {
|
|
10
10
|
this.expiresAt = 0;
|
11
11
|
this.id = '';
|
12
12
|
this.status = general_1.ESubsStatus.PENDING;
|
13
|
+
this.usedTrial = false;
|
13
14
|
if (data) {
|
14
15
|
for (var key in data) {
|
15
16
|
if (data.hasOwnProperty(key) && key in this) {
|
@@ -21,6 +21,7 @@ var WithDrawRequestEntity = /** @class */ (function () {
|
|
21
21
|
this.mobyoInfo = new general_1.MobyoInfoEntity();
|
22
22
|
this.desenfilaInfo = new general_1.DesenfilaInfoEntity();
|
23
23
|
this.name = '';
|
24
|
+
this.refusalReason = null;
|
24
25
|
if (data) {
|
25
26
|
for (var key in data) {
|
26
27
|
if (data.hasOwnProperty(key) && key in this) {
|