cecon-interfaces 1.7.33 → 1.7.35

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.
@@ -23,6 +23,7 @@ export { IPaymentProviderAgent } from './i-payment-provider-agent';
23
23
  export { IPaymentToken } from './i-payment-token';
24
24
  export { IPaymentTokenData } from './i-payment-token-data';
25
25
  export { IPaymentWallet } from './i-payment-wallet';
26
+ export { IPixKey } from './i-pix-key';
26
27
  export { IQuery } from './i-query';
27
28
  export { IRating } from './i-rating';
28
29
  export { ISponsorshipValue } from './i-sponsorship-value';
@@ -3,8 +3,10 @@ import { NatipayMemberTypeEnum } from '../enums/member-type.enum';
3
3
  import { INatipayMember } from '../interfaces';
4
4
  export declare class NatipayMemberEntity implements INatipayMember {
5
5
  active: boolean;
6
+ companyId: string;
6
7
  companyName: string;
7
- containerName: string;
8
+ containerId: string;
9
+ containerName: string | null;
8
10
  createdAt: Date;
9
11
  email: string;
10
12
  id: string;
@@ -6,7 +6,9 @@ var member_type_enum_1 = require("../enums/member-type.enum");
6
6
  var NatipayMemberEntity = /** @class */ (function () {
7
7
  function NatipayMemberEntity(data) {
8
8
  this.active = true;
9
+ this.companyId = '';
9
10
  this.companyName = '';
11
+ this.containerId = '';
10
12
  this.containerName = '';
11
13
  this.createdAt = new Date();
12
14
  this.email = '';
@@ -2,18 +2,20 @@ import { NatipayMemberRulesEnum } from '../enums/member-rules.enum';
2
2
  import { NatipayMemberTypeEnum } from '../enums/member-type.enum';
3
3
  export interface INatipayMember {
4
4
  active: boolean;
5
+ companyId: string;
6
+ companyName: string | null;
7
+ containerId: string;
8
+ containerName: string | null;
5
9
  createdAt: Date;
6
- upadatedAt: Date;
7
- id: string;
8
- companyName: string;
9
- containerName: string;
10
10
  email: string | null;
11
- name: string;
11
+ id: string;
12
+ imageUrl: string | null;
12
13
  internationalCode: string;
14
+ name: string;
13
15
  phoneNumber: string;
14
- imageUrl: string | null;
15
16
  rule: NatipayMemberRulesEnum;
16
- type: NatipayMemberTypeEnum | null;
17
17
  tags: string[];
18
+ type: NatipayMemberTypeEnum | null;
19
+ upadatedAt: Date;
18
20
  userId: string;
19
21
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.33",
3
+ "version": "1.7.35",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.33",
3
+ "version": "1.7.35",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",