cecon-interfaces 1.6.40 → 1.6.42

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.
@@ -1,6 +1,8 @@
1
1
  export declare enum EOrderExtraInfo {
2
2
  FAIL_SEND = "FAIL_SEND",
3
3
  FAIL_ADD = "FAIL_ADD",
4
+ FAIL_CLOSE = "FAIL_CLOSE",
4
5
  SEND = "SEND",
5
- ADD = "ADD"
6
+ ADD = "ADD",
7
+ CLOSE = "CLOSE"
6
8
  }
@@ -5,6 +5,8 @@ var EOrderExtraInfo;
5
5
  (function (EOrderExtraInfo) {
6
6
  EOrderExtraInfo["FAIL_SEND"] = "FAIL_SEND";
7
7
  EOrderExtraInfo["FAIL_ADD"] = "FAIL_ADD";
8
+ EOrderExtraInfo["FAIL_CLOSE"] = "FAIL_CLOSE";
8
9
  EOrderExtraInfo["SEND"] = "SEND";
9
10
  EOrderExtraInfo["ADD"] = "ADD";
11
+ EOrderExtraInfo["CLOSE"] = "CLOSE";
10
12
  })(EOrderExtraInfo || (exports.EOrderExtraInfo = EOrderExtraInfo = {}));
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.40",
3
+ "version": "1.6.42",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -4,7 +4,7 @@ export declare class PayioScheduleEntity implements IPayioSchedule {
4
4
  active: boolean;
5
5
  createdAt: Date;
6
6
  id: string;
7
- time: PayioScheduleSlotEntity[];
7
+ slots: PayioScheduleSlotEntity[];
8
8
  updatedAt: Date;
9
9
  constructor(data?: Partial<PayioScheduleEntity>);
10
10
  }
@@ -9,7 +9,7 @@ var PayioScheduleEntity = /** @class */ (function () {
9
9
  this.active = true;
10
10
  this.createdAt = new Date();
11
11
  this.id = 'SEG';
12
- this.time = [];
12
+ this.slots = [];
13
13
  this.updatedAt = new Date();
14
14
  if (data) {
15
15
  for (var key in data) {
@@ -1,8 +1,8 @@
1
- import { IPayioScheduleSlot } from "./i-schedule-slot";
1
+ import { IPayioScheduleSlot } from './i-schedule-slot';
2
2
  export interface IPayioSchedule {
3
3
  active: boolean;
4
4
  createdAt: Date;
5
- time: IPayioScheduleSlot[];
5
+ slots: IPayioScheduleSlot[];
6
6
  id: string;
7
7
  updatedAt: Date;
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.40",
3
+ "version": "1.6.42",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",