cecon-interfaces 1.3.2 → 1.3.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,8 +2,14 @@ import { CustomerEntity } from '../../../customer';
2
2
  import { IAddress } from '../../../general';
3
3
  import { ICustomerMobyo } from '../interfaces/i-customer-mobyo';
4
4
  export declare class CustomerMobyoEntity extends CustomerEntity implements ICustomerMobyo {
5
+ active: boolean;
5
6
  addresses: IAddress[];
7
+ companyId: string;
8
+ containerId: string;
6
9
  engines: string[];
10
+ isTest: boolean;
7
11
  ordersCountOnRestaurant: number;
12
+ uid: string;
13
+ version: string;
8
14
  constructor(data?: Partial<CustomerMobyoEntity>);
9
15
  }
@@ -24,9 +24,15 @@ var CustomerMobyoEntity = /** @class */ (function (_super) {
24
24
  function CustomerMobyoEntity(data) {
25
25
  var _this = _super.call(this, data) || this;
26
26
  // #region Properties (3)
27
+ _this.active = true;
27
28
  _this.addresses = [];
29
+ _this.companyId = '';
30
+ _this.containerId = '';
28
31
  _this.engines = [];
32
+ _this.isTest = false;
29
33
  _this.ordersCountOnRestaurant = 0;
34
+ _this.uid = '';
35
+ _this.version = '1.0.2';
30
36
  if (data) {
31
37
  for (var key in data) {
32
38
  if (data.hasOwnProperty(key) && key in _this) {
@@ -4,4 +4,5 @@ export interface ICustomerMobyo extends ICustomer {
4
4
  addresses: IAddress[];
5
5
  engines: string[];
6
6
  ordersCountOnRestaurant: number;
7
+ version: string;
7
8
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.3.02",
3
+ "version": "1.3.04",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.3.02",
3
+ "version": "1.3.04",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",