cecon-interfaces 1.7.6 → 1.7.9

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.7.06",
3
+ "version": "1.7.09",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,6 +10,7 @@ export declare class PayioGlobalProductEntity implements IPayioGlobalProduct {
10
10
  maxPrice: number;
11
11
  minPrice: number;
12
12
  name: string;
13
+ ncm: string | null;
13
14
  quantityPackaging: number;
14
15
  tags: string[];
15
16
  thumbnail: string | null;
@@ -2,10 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioGlobalProductEntity = void 0;
4
4
  var PayioGlobalProductEntity = /** @class */ (function () {
5
- // #endregion Properties (16)
6
- // #region Constructors (1)
7
5
  function PayioGlobalProductEntity(data) {
8
- // #region Properties (16)
9
6
  this.active = true;
10
7
  this.avgPrice = 0;
11
8
  this.brand = '';
@@ -16,6 +13,7 @@ var PayioGlobalProductEntity = /** @class */ (function () {
16
13
  this.maxPrice = 0;
17
14
  this.minPrice = 0;
18
15
  this.name = '';
16
+ this.ncm = null;
19
17
  this.quantityPackaging = 0;
20
18
  this.tags = [];
21
19
  this.thumbnail = null;
@@ -7,6 +7,7 @@ export interface IPayioGlobalProduct {
7
7
  id: string;
8
8
  lastPrices: number[];
9
9
  maxPrice: number;
10
+ ncm: string | null;
10
11
  minPrice: number;
11
12
  name: string;
12
13
  quantityPackaging: number;
@@ -6,7 +6,9 @@ export declare class PayioProductEntity implements IPayioProduct {
6
6
  createdAt: Date;
7
7
  id: string;
8
8
  name: string;
9
+ ncm: string | null;
9
10
  price: number;
11
+ sandbox: boolean;
10
12
  quantityPackaging: number;
11
13
  tags: string[];
12
14
  thumbnail: string | null;
@@ -2,17 +2,16 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioProductEntity = void 0;
4
4
  var PayioProductEntity = /** @class */ (function () {
5
- // #endregion Properties (13)
6
- // #region Constructors (1)
7
5
  function PayioProductEntity(data) {
8
- // #region Properties (13)
9
6
  this.active = true;
10
7
  this.brand = '';
11
8
  this.code = '';
12
9
  this.createdAt = new Date();
13
10
  this.id = '';
14
11
  this.name = '';
12
+ this.ncm = '';
15
13
  this.price = 0;
14
+ this.sandbox = false;
16
15
  this.quantityPackaging = 0;
17
16
  this.tags = [];
18
17
  this.thumbnail = null;
@@ -8,8 +8,10 @@ export interface IPayioProduct {
8
8
  price: number;
9
9
  quantityPackaging: number;
10
10
  tags: string[];
11
+ sandbox: boolean;
11
12
  thumbnail: string | null;
12
13
  unit: string;
14
+ ncm: string | null;
13
15
  updatedAt: Date;
14
16
  weight: number;
15
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.06",
3
+ "version": "1.7.09",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",