cecon-interfaces 1.1.83 → 1.1.84

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.1.83",
3
+ "version": "1.1.84",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,6 +1,6 @@
1
1
  import { IProductBrand } from '../interfaces';
2
2
  export declare class ProductBrandEntity implements IProductBrand {
3
- imageUrl: string;
3
+ picture: string;
4
4
  name: string;
5
5
  constructor(data?: Partial<ProductBrandEntity>);
6
6
  }
@@ -6,7 +6,7 @@ var ProductBrandEntity = /** @class */ (function () {
6
6
  // #region Constructors (1)
7
7
  function ProductBrandEntity(data) {
8
8
  // #region Properties (2)
9
- this.imageUrl = '';
9
+ this.picture = '';
10
10
  this.name = '';
11
11
  if (data) {
12
12
  for (var key in data) {
@@ -10,5 +10,5 @@ export interface IProductBrand {
10
10
  * It should be a valid URL.
11
11
  * @example "http://www.example.com"
12
12
  */
13
- imageUrl: string;
13
+ picture: string;
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.83",
3
+ "version": "1.1.84",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",