cecon-interfaces 1.6.1 → 1.6.2

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.02",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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 = '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.01",
3
+ "version": "1.6.02",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",