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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.01",
3
+ "version": "1.6.03",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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;
@@ -10,7 +10,6 @@ var PayioAddressEntity = /** @class */ (function () {
10
10
  this.city = '';
11
11
  this.complement = '';
12
12
  this.coords = new coords_entity_1.CoordsEntity();
13
- this.name = '';
14
13
  this.neighborhood = '';
15
14
  this.postalCode = '';
16
15
  this.state = '';
@@ -1,8 +1,9 @@
1
- import { AddressEntity, EDocType, IPaymentProvider } from '../../../general';
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: AddressEntity;
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 general_1.AddressEntity();
12
+ this.address = new address_entity_1.PayioAddressEntity();
12
13
  this.containerId = '';
13
14
  this.createdAt = new Date();
14
15
  this.doc = '';
@@ -4,8 +4,6 @@ export interface IPayioAddress {
4
4
  complement: string | null;
5
5
  coords: ICoords;
6
6
  country: string | null | undefined;
7
- formattedAddress: string | null | undefined;
8
- name: string | null;
9
7
  neighborhood: string;
10
8
  postalCode: string;
11
9
  state: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.01",
3
+ "version": "1.6.03",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",