cecon-interfaces 1.6.90 → 1.6.92

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.90",
3
+ "version": "1.6.92",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,7 +19,7 @@ export declare class PayioDistributorEntity implements IPayioDistributor {
19
19
  logs: string[];
20
20
  name: string;
21
21
  phoneNumber: string;
22
- responsible: PayioDistributorResponsibleEntity[];
22
+ responsibles: PayioDistributorResponsibleEntity[];
23
23
  sandbox: boolean;
24
24
  slug: string;
25
25
  status: EPayioDistributorStatus;
@@ -23,7 +23,7 @@ var PayioDistributorEntity = /** @class */ (function () {
23
23
  this.logs = [];
24
24
  this.name = '';
25
25
  this.phoneNumber = '';
26
- this.responsible = [];
26
+ this.responsibles = [];
27
27
  this.sandbox = false;
28
28
  this.slug = '';
29
29
  this.status = enums_1.EPayioDistributorStatus.PLACED;
@@ -18,7 +18,7 @@ export interface IPayioDistributor {
18
18
  logs: string[];
19
19
  name: string;
20
20
  phoneNumber: string;
21
- responsible: IPayioDistributorResponsible[];
21
+ responsibles: IPayioDistributorResponsible[];
22
22
  sandbox: boolean;
23
23
  slug: string;
24
24
  status: EPayioDistributorStatus;
@@ -4,6 +4,8 @@ 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
9
  id: string;
8
10
  price: number;
9
11
  unit: string;
@@ -2,14 +2,16 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioScheduleProductEntity = void 0;
4
4
  var PayioScheduleProductEntity = /** @class */ (function () {
5
- // #endregion Properties (9)
5
+ // #endregion Properties (11)
6
6
  // #region Constructors (1)
7
7
  function PayioScheduleProductEntity(data) {
8
- // #region Properties (9)
8
+ // #region Properties (11)
9
9
  this.code = '';
10
10
  this.description = '';
11
11
  this.exceededWeightMessageText = '';
12
12
  this.exceededWeightPrice = 0;
13
+ this.helpYourSelfId = '';
14
+ this.helpYourSelfPrice = 0;
13
15
  this.id = '';
14
16
  this.price = 0;
15
17
  this.unit = 'KG';
@@ -3,6 +3,8 @@ export interface IPayioScheduleProduct {
3
3
  description: string;
4
4
  exceededWeightMessageText: string | null;
5
5
  exceededWeightPrice: number;
6
+ helpYourSelfId: string | null;
7
+ helpYourSelfPrice: number;
6
8
  id: string;
7
9
  price: number;
8
10
  unit: string;
@@ -1,4 +1,5 @@
1
1
  export interface IPayioScheduleSlot {
2
- productCode: string;
2
+ productId?: string;
3
+ productCode?: string;
3
4
  time: string;
4
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.90",
3
+ "version": "1.6.92",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",