cecon-interfaces 1.3.11 → 1.3.12

Sign up to get free protection for your applications and to get access to all the features.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.3.11",
3
+ "version": "1.3.12",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,4 +1,4 @@
1
- import { EDesenfilaFrom, EDocType } from '../../general';
1
+ import { EDesenfilaFrom, EDocType, IDesenfilaInfo, IMobyoInfo, INatiInfo } from '../../general';
2
2
  import { ISponsor } from '../interfaces/i-sponsor';
3
3
  import { ISponsorFee } from '../interfaces/i-sponsor-fee';
4
4
  export declare class SponsorEntity implements ISponsor {
@@ -16,5 +16,8 @@ export declare class SponsorEntity implements ISponsor {
16
16
  internationalCode: string;
17
17
  phoneNumer: string;
18
18
  email: string;
19
+ natiInfo: INatiInfo;
20
+ mobyoInfo: IMobyoInfo;
21
+ desenfilaInfo: IDesenfilaInfo;
19
22
  constructor(data?: Partial<SponsorEntity>);
20
23
  }
@@ -18,6 +18,9 @@ var SponsorEntity = /** @class */ (function () {
18
18
  this.internationalCode = '';
19
19
  this.phoneNumer = '';
20
20
  this.email = '';
21
+ this.natiInfo = new general_1.NatiInfoEntity();
22
+ this.mobyoInfo = new general_1.MobyoInfoEntity();
23
+ this.desenfilaInfo = new general_1.DesenfilaInfoEntity();
21
24
  if (data) {
22
25
  for (var key in data) {
23
26
  if (data.hasOwnProperty(key) && key in this) {
@@ -1,4 +1,4 @@
1
- import { EDesenfilaFrom, EDocType } from '../../general';
1
+ import { EDesenfilaFrom, EDocType, IDesenfilaInfo, IMobyoInfo, INatiInfo } from '../../general';
2
2
  import { ISponsorFee } from './i-sponsor-fee';
3
3
  export interface ISponsor {
4
4
  id: string;
@@ -15,4 +15,7 @@ export interface ISponsor {
15
15
  email: string;
16
16
  natiRefId: string | null;
17
17
  mobyoRefId: string | null;
18
+ natiInfo: INatiInfo;
19
+ mobyoInfo: IMobyoInfo;
20
+ desenfilaInfo: IDesenfilaInfo;
18
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.3.11",
3
+ "version": "1.3.12",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",