cecon-interfaces 1.3.14 → 1.3.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,5 +16,7 @@ export declare class AddressEntity implements IAddress {
16
16
  state: string;
17
17
  streetName: string;
18
18
  streetNumber: string;
19
+ mobyoDeliveryFee: number | null;
20
+ mobyoDeliveryFeeOnline: number | null;
19
21
  constructor(data?: Partial<AddressEntity>);
20
22
  }
@@ -22,6 +22,8 @@ var AddressEntity = /** @class */ (function () {
22
22
  this.state = '';
23
23
  this.streetName = '';
24
24
  this.streetNumber = '';
25
+ this.mobyoDeliveryFee = null;
26
+ this.mobyoDeliveryFeeOnline = null;
25
27
  if (data) {
26
28
  for (var key in data) {
27
29
  if (data.hasOwnProperty(key) && key in this) {
@@ -16,4 +16,6 @@ export interface IAddress {
16
16
  isDefault: boolean;
17
17
  streetNumber: string;
18
18
  coords: ICoords;
19
+ mobyoDeliveryFee: number | null;
20
+ mobyoDeliveryFeeOnline: number | null;
19
21
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.3.14",
3
+ "version": "1.3.15",
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.14",
3
+ "version": "1.3.15",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",