flit-models 3.2.64 → 3.2.65

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.
@@ -42,7 +42,7 @@ export declare class RelatorioAbsenteismoDadosDiarios implements RelatorioAbsent
42
42
  porcentagem: number;
43
43
  horas: number;
44
44
  };
45
- constructor({ data_hora, horas_previstas, horas_trabalhadas, horas_extras, atrasos, absenteismo, }: RelatorioAbsenteismoDadosDiarios);
45
+ constructor({ data_hora, dias_trabalhados, horas_previstas, horas_trabalhadas, horas_extras, atrasos, absenteismo, }: RelatorioAbsenteismoDadosDiarios);
46
46
  }
47
47
  export declare class RelatorioAbsenteismo implements RelatorioAbsenteismoBase {
48
48
  _id: string;
@@ -3,9 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RelatorioAbsenteismo = exports.RelatorioAbsenteismoDadosDiarios = void 0;
4
4
  var RelatorioAbsenteismoDadosDiarios = /** @class */ (function () {
5
5
  function RelatorioAbsenteismoDadosDiarios(_a) {
6
- var data_hora = _a.data_hora, horas_previstas = _a.horas_previstas, horas_trabalhadas = _a.horas_trabalhadas, horas_extras = _a.horas_extras, atrasos = _a.atrasos, absenteismo = _a.absenteismo;
6
+ var data_hora = _a.data_hora, dias_trabalhados = _a.dias_trabalhados, horas_previstas = _a.horas_previstas, horas_trabalhadas = _a.horas_trabalhadas, horas_extras = _a.horas_extras, atrasos = _a.atrasos, absenteismo = _a.absenteismo;
7
7
  var _b, _c, _d, _e;
8
8
  this.data_hora = data_hora !== null && data_hora !== void 0 ? data_hora : null;
9
+ this.dias_trabalhados = dias_trabalhados !== null && dias_trabalhados !== void 0 ? dias_trabalhados : 0;
9
10
  this.horas_previstas = horas_previstas !== null && horas_previstas !== void 0 ? horas_previstas : 0;
10
11
  this.horas_trabalhadas = horas_trabalhadas !== null && horas_trabalhadas !== void 0 ? horas_trabalhadas : 0;
11
12
  this.horas_extras = horas_extras !== null && horas_extras !== void 0 ? horas_extras : 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flit-models",
3
- "version": "3.2.64",
3
+ "version": "3.2.65",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",