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/esm2022/sponsor/entities/sponsor.entity.mjs +5 -2
- package/dist/esm2022/sponsor/interfaces/i-sponsor.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -0
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/sponsor/entities/sponsor.entity.d.ts +4 -1
- package/dist/sponsor/entities/sponsor.entity.js +3 -0
- package/dist/sponsor/interfaces/i-sponsor.d.ts +4 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -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
|
}
|