cecon-interfaces 1.6.93 → 1.6.95

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.93",
3
+ "version": "1.6.95",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -4,8 +4,7 @@ export declare class PayioScheduleProductEntity implements IPayioScheduleProduct
4
4
  description: string;
5
5
  exceededWeightMessageText: string | null;
6
6
  exceededWeightPrice: number;
7
- helpYourSelfId: string;
8
- helpYourSelfPrice: number;
7
+ helpYourSelf: boolean;
9
8
  id: string;
10
9
  price: number;
11
10
  unit: string;
@@ -10,8 +10,7 @@ var PayioScheduleProductEntity = /** @class */ (function () {
10
10
  this.description = '';
11
11
  this.exceededWeightMessageText = '';
12
12
  this.exceededWeightPrice = 0;
13
- this.helpYourSelfId = '';
14
- this.helpYourSelfPrice = 0;
13
+ this.helpYourSelf = false;
15
14
  this.id = '';
16
15
  this.price = 0;
17
16
  this.unit = 'KG';
@@ -3,8 +3,7 @@ export interface IPayioScheduleProduct {
3
3
  description: string;
4
4
  exceededWeightMessageText: string | null;
5
5
  exceededWeightPrice: number;
6
- helpYourSelfId: string | null;
7
- helpYourSelfPrice: number;
6
+ helpYourSelf: boolean;
8
7
  id: string;
9
8
  price: number;
10
9
  unit: string;
@@ -3,6 +3,7 @@ import { IUser } from '../interfaces';
3
3
  export declare class UserEntity implements IUser {
4
4
  accessCount: number;
5
5
  active: boolean;
6
+ code: string | null;
6
7
  createdAt: Date;
7
8
  currentCompanyId: string | null;
8
9
  currentCompanyName: string | null;
@@ -3,12 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.UserEntity = void 0;
4
4
  var enums_1 = require("../enums");
5
5
  var UserEntity = /** @class */ (function () {
6
- // #endregion Properties (17)
6
+ // #endregion Properties (16)
7
7
  // #region Constructors (1)
8
8
  function UserEntity(data) {
9
- // #region Properties (17)
9
+ // #region Properties (16)
10
10
  this.accessCount = 0;
11
11
  this.active = true;
12
+ this.code = null;
12
13
  this.createdAt = new Date();
13
14
  this.currentCompanyId = null;
14
15
  this.currentCompanyName = null;
@@ -11,6 +11,7 @@ export interface IUser {
11
11
  internationalCode: string;
12
12
  lastAccessAt: Date;
13
13
  name: string;
14
+ code: string | null;
14
15
  phoneNumber: string;
15
16
  tags: string[];
16
17
  type: PayioUserTypeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.93",
3
+ "version": "1.6.95",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",