cecon-interfaces 1.6.1 → 1.6.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/company/entities/address.entity.mjs +1 -3
- package/dist/esm2022/payio/company/entities/company.entity.mjs +4 -3
- package/dist/esm2022/payio/company/interfaces/i-address.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +1 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/company/entities/address.entity.d.ts +0 -2
- package/dist/payio/company/entities/address.entity.js +0 -1
- package/dist/payio/company/entities/company.entity.d.ts +3 -2
- package/dist/payio/company/entities/company.entity.js +2 -1
- package/dist/payio/company/interfaces/i-address.d.ts +0 -2
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -5,8 +5,6 @@ export declare class PayioAddressEntity implements IPayioAddress {
|
|
5
5
|
complement: string | null;
|
6
6
|
coords: CoordsEntity;
|
7
7
|
country: string | null | undefined;
|
8
|
-
formattedAddress: string | null | undefined;
|
9
|
-
name: string | null;
|
10
8
|
neighborhood: string;
|
11
9
|
postalCode: string;
|
12
10
|
state: string;
|
@@ -1,8 +1,9 @@
|
|
1
|
-
import {
|
1
|
+
import { EDocType, IPaymentProvider } from '../../../general';
|
2
2
|
import { IPayioCompany } from '../interfaces/i-company';
|
3
|
+
import { PayioAddressEntity } from './address.entity';
|
3
4
|
export declare class PayioCompanyEntity implements IPayioCompany {
|
4
5
|
active: boolean;
|
5
|
-
address:
|
6
|
+
address: PayioAddressEntity;
|
6
7
|
containerId: string;
|
7
8
|
createdAt: Date;
|
8
9
|
doc: string;
|
@@ -2,13 +2,14 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.PayioCompanyEntity = void 0;
|
4
4
|
var general_1 = require("../../../general");
|
5
|
+
var address_entity_1 = require("./address.entity");
|
5
6
|
var PayioCompanyEntity = /** @class */ (function () {
|
6
7
|
// #endregion Properties (19)
|
7
8
|
// #region Constructors (1)
|
8
9
|
function PayioCompanyEntity(data) {
|
9
10
|
// #region Properties (19)
|
10
11
|
this.active = false;
|
11
|
-
this.address = new
|
12
|
+
this.address = new address_entity_1.PayioAddressEntity();
|
12
13
|
this.containerId = '';
|
13
14
|
this.createdAt = new Date();
|
14
15
|
this.doc = '';
|