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.
Files changed (28) hide show
  1. package/dist/company/entities/company.entity.d.ts +2 -0
  2. package/dist/company/entities/company.entity.js +2 -0
  3. package/dist/company/enums/index.d.ts +1 -0
  4. package/dist/company/enums/index.js +3 -1
  5. package/dist/company/enums/key-type.enum.d.ts +7 -0
  6. package/dist/company/enums/key-type.enum.js +11 -0
  7. package/dist/company/interfaces/i-company.d.ts +2 -0
  8. package/dist/esm2022/company/entities/company.entity.mjs +3 -1
  9. package/dist/esm2022/company/enums/index.mjs +2 -1
  10. package/dist/esm2022/company/enums/key-type.enum.mjs +9 -0
  11. package/dist/esm2022/company/interfaces/i-company.mjs +1 -1
  12. package/dist/esm2022/envelope/interfaces/factory-envelope-array-pag.functions.mjs +1 -1
  13. package/dist/esm2022/envelope/interfaces/factory-envelope-array.functions.mjs +1 -1
  14. package/dist/esm2022/envelope/interfaces/factory-envelope.functions.mjs +1 -1
  15. package/dist/esm2022/payio/payload/entities/payload-subscription.entity.mjs +2 -1
  16. package/dist/esm2022/payio/payload/interfaces/i-payload-subscription.mjs +1 -1
  17. package/dist/esm2022/withdraw/entities/withdraw-request.entity.mjs +2 -1
  18. package/dist/esm2022/withdraw/interfaces/i-withdraw-request.mjs +1 -1
  19. package/dist/fesm2022/cecon-interfaces.mjs +34 -22
  20. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  21. package/dist/package.json +1 -1
  22. package/dist/payio/payload/entities/payload-subscription.entity.d.ts +1 -0
  23. package/dist/payio/payload/entities/payload-subscription.entity.js +1 -0
  24. package/dist/payio/payload/interfaces/i-payload-subscription.d.ts +1 -0
  25. package/dist/withdraw/entities/withdraw-request.entity.d.ts +1 -0
  26. package/dist/withdraw/entities/withdraw-request.entity.js +1 -0
  27. package/dist/withdraw/interfaces/i-withdraw-request.d.ts +1 -0
  28. package/package.json +1 -1
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.44",
3
+ "version": "1.6.46",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -4,5 +4,6 @@ export declare class PayioJwtPayloadSubscriptionEntity implements IPayioJwtPaylo
4
4
  expiresAt: number;
5
5
  id: string;
6
6
  status: ESubsStatus;
7
+ usedTrial: boolean;
7
8
  constructor(data?: Partial<PayioJwtPayloadSubscriptionEntity>);
8
9
  }
@@ -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) {
@@ -3,4 +3,5 @@ export interface IPayioJwtPayloadSubscription {
3
3
  expiresAt: number;
4
4
  id: string;
5
5
  status: ESubsStatus;
6
+ usedTrial: boolean;
6
7
  }
@@ -15,5 +15,6 @@ export declare class WithDrawRequestEntity implements IWithdrawRequest {
15
15
  mobyoInfo: IMobyoInfo;
16
16
  desenfilaInfo: IDesenfilaInfo;
17
17
  name: string;
18
+ refusalReason: string | null;
18
19
  constructor(data?: Partial<WithDrawRequestEntity>);
19
20
  }
@@ -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) {
@@ -7,6 +7,7 @@ export interface IWithdrawRequest {
7
7
  id: string;
8
8
  liveMode: boolean;
9
9
  status: EWithdrawRequestStatus;
10
+ refusalReason: string | null;
10
11
  transactionId: string | null;
11
12
  transferDocumentUrl: string | null;
12
13
  updatedAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.44",
3
+ "version": "1.6.46",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",