flit-modulo-exportacoes 2.0.28 → 2.0.29

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.
package/dist/models.js CHANGED
@@ -1,6 +1,22 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TipoFolhaExportacao = exports.TiposEventosExportar = exports.TipoEventoExportacao = void 0;
3
+ exports.TipoFolhaExportacao = exports.TiposEventosExportar = exports.TipoEventoExportacao = exports.EnumFormaEnvioFaltasEventosExportacoes = exports.EnumTipoEventosExportacoes = void 0;
4
+ var EnumTipoEventosExportacoes;
5
+ (function (EnumTipoEventosExportacoes) {
6
+ EnumTipoEventosExportacoes["Dexion"] = "DEXION";
7
+ EnumTipoEventosExportacoes["Dominio"] = "DOMINIO";
8
+ EnumTipoEventosExportacoes["Najason"] = "NAJASON";
9
+ EnumTipoEventosExportacoes["Prosoft"] = "PROSOFT";
10
+ EnumTipoEventosExportacoes["Questor"] = "QUESTOR";
11
+ EnumTipoEventosExportacoes["NetSpeed"] = "NETSPEED";
12
+ EnumTipoEventosExportacoes["Alterdata"] = "ALTERDATA";
13
+ })(EnumTipoEventosExportacoes || (exports.EnumTipoEventosExportacoes = EnumTipoEventosExportacoes = {}));
14
+ var EnumFormaEnvioFaltasEventosExportacoes;
15
+ (function (EnumFormaEnvioFaltasEventosExportacoes) {
16
+ EnumFormaEnvioFaltasEventosExportacoes["Dias"] = "DIAS";
17
+ EnumFormaEnvioFaltasEventosExportacoes["Horas"] = "HORAS";
18
+ EnumFormaEnvioFaltasEventosExportacoes["Minutos"] = "MINUTOS";
19
+ })(EnumFormaEnvioFaltasEventosExportacoes || (exports.EnumFormaEnvioFaltasEventosExportacoes = EnumFormaEnvioFaltasEventosExportacoes = {}));
4
20
  /**
5
21
  * Enum com a declaração dos campos do objeto "eventos" da coleção "eventos_exportacoes".
6
22
  *
@@ -1,183 +1,210 @@
1
1
  "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
14
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
15
+ if (ar || !(i in from)) {
16
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
17
+ ar[i] = from[i];
18
+ }
19
+ }
20
+ return to.concat(ar || Array.prototype.slice.call(from));
21
+ };
2
22
  Object.defineProperty(exports, "__esModule", { value: true });
3
23
  exports.UnificacaoEventosRepetidos = void 0;
4
- const models_1 = require("./models");
5
- class UnificacaoEventosRepetidos {
6
- adicionarEvento({ tipoEvento, parametrosIntegracao, codigosEventos }) {
7
- const codigoEvento = parametrosIntegracao[tipoEvento];
24
+ var models_1 = require("./models");
25
+ var UnificacaoEventosRepetidos = /** @class */ (function () {
26
+ function UnificacaoEventosRepetidos() {
27
+ }
28
+ UnificacaoEventosRepetidos.prototype.adicionarEvento = function (_a) {
29
+ var tipoEvento = _a.tipoEvento, parametrosIntegracao = _a.parametrosIntegracao, codigosEventos = _a.codigosEventos;
30
+ var codigoEvento = parametrosIntegracao[tipoEvento];
8
31
  if (codigoEvento) {
9
32
  codigosEventos.push({
10
33
  codigo: codigoEvento,
11
34
  tipo: tipoEvento,
12
35
  });
13
36
  }
14
- }
15
- agruparArray({ campo, array }) {
16
- return array.reduce((acc, item) => ({
17
- ...acc,
18
- [item[campo]]: [...(acc[item[campo]] ?? []), item],
19
- }), {});
20
- }
21
- processarValoresCodigosRepetidos({ valoresEventos, eventosAgrupados }) {
22
- let somatorioHoras = 0;
23
- let somatorioMinutos = 0;
24
- for (let index = 0; index < eventosAgrupados.length; index++) {
37
+ };
38
+ UnificacaoEventosRepetidos.prototype.agruparArray = function (_a) {
39
+ var campo = _a.campo, array = _a.array;
40
+ return array.reduce(function (acc, item) {
41
+ var _a;
42
+ var _b;
43
+ return (__assign(__assign({}, acc), (_a = {}, _a[item[campo]] = __spreadArray(__spreadArray([], ((_b = acc[item[campo]]) !== null && _b !== void 0 ? _b : []), true), [item], false), _a)));
44
+ }, {});
45
+ };
46
+ UnificacaoEventosRepetidos.prototype.processarValoresCodigosRepetidos = function (_a) {
47
+ var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16;
48
+ var valoresEventos = _a.valoresEventos, eventosAgrupados = _a.eventosAgrupados;
49
+ var somatorioHoras = 0;
50
+ var somatorioMinutos = 0;
51
+ for (var index = 0; index < eventosAgrupados.length; index++) {
25
52
  switch (eventosAgrupados[index].tipo) {
26
53
  case models_1.TipoEventoExportacao.ATRASO:
27
- somatorioHoras += valoresEventos.ValorAtraso.Horas ?? 0;
28
- somatorioMinutos += valoresEventos.ValorAtraso.Minutos ?? 0;
54
+ somatorioHoras += (_b = valoresEventos.ValorAtraso.Horas) !== null && _b !== void 0 ? _b : 0;
55
+ somatorioMinutos += (_c = valoresEventos.ValorAtraso.Minutos) !== null && _c !== void 0 ? _c : 0;
29
56
  if (index > 0) {
30
57
  valoresEventos.ValorAtraso.Horas = 0;
31
58
  valoresEventos.ValorAtraso.Minutos = 0;
32
59
  }
33
60
  break;
34
61
  case models_1.TipoEventoExportacao.HORA_NORMAL:
35
- somatorioHoras += valoresEventos.ValorNormal.Horas ?? 0;
36
- somatorioMinutos += valoresEventos.ValorNormal.Minutos ?? 0;
62
+ somatorioHoras += (_d = valoresEventos.ValorNormal.Horas) !== null && _d !== void 0 ? _d : 0;
63
+ somatorioMinutos += (_e = valoresEventos.ValorNormal.Minutos) !== null && _e !== void 0 ? _e : 0;
37
64
  if (index > 0) {
38
65
  valoresEventos.ValorNormal.Horas = 0;
39
66
  valoresEventos.ValorNormal.Minutos = 0;
40
67
  }
41
68
  break;
42
69
  case models_1.TipoEventoExportacao.HORA_NOTURNA:
43
- somatorioHoras += valoresEventos.ValorNoturno.Horas ?? 0;
44
- somatorioMinutos += valoresEventos.ValorNoturno.Minutos ?? 0;
70
+ somatorioHoras += (_f = valoresEventos.ValorNoturno.Horas) !== null && _f !== void 0 ? _f : 0;
71
+ somatorioMinutos += (_g = valoresEventos.ValorNoturno.Minutos) !== null && _g !== void 0 ? _g : 0;
45
72
  if (index > 0) {
46
73
  valoresEventos.ValorNoturno.Horas = 0;
47
74
  valoresEventos.ValorNoturno.Minutos = 0;
48
75
  }
49
76
  break;
50
77
  case models_1.TipoEventoExportacao.HORA_EXTRA_SEG_SEX:
51
- somatorioHoras += valoresEventos.ValorExtraSegSex.Horas ?? 0;
52
- somatorioMinutos += valoresEventos.ValorExtraSegSex.Minutos ?? 0;
78
+ somatorioHoras += (_h = valoresEventos.ValorExtraSegSex.Horas) !== null && _h !== void 0 ? _h : 0;
79
+ somatorioMinutos += (_j = valoresEventos.ValorExtraSegSex.Minutos) !== null && _j !== void 0 ? _j : 0;
53
80
  if (index > 0) {
54
81
  valoresEventos.ValorExtraSegSex.Horas = 0;
55
82
  valoresEventos.ValorExtraSegSex.Minutos = 0;
56
83
  }
57
84
  break;
58
85
  case models_1.TipoEventoExportacao.HORA_EXTRA_SAB:
59
- somatorioHoras += valoresEventos.ValorExtraSabado.Horas ?? 0;
60
- somatorioMinutos += valoresEventos.ValorExtraSabado.Minutos ?? 0;
86
+ somatorioHoras += (_k = valoresEventos.ValorExtraSabado.Horas) !== null && _k !== void 0 ? _k : 0;
87
+ somatorioMinutos += (_l = valoresEventos.ValorExtraSabado.Minutos) !== null && _l !== void 0 ? _l : 0;
61
88
  if (index > 0) {
62
89
  valoresEventos.ValorExtraSabado.Horas = 0;
63
90
  valoresEventos.ValorExtraSabado.Minutos = 0;
64
91
  }
65
92
  break;
66
93
  case models_1.TipoEventoExportacao.HORA_EXTRA_DOM:
67
- somatorioHoras += valoresEventos.ValorExtraDomingo.Horas ?? 0;
68
- somatorioMinutos += valoresEventos.ValorExtraDomingo.Minutos ?? 0;
94
+ somatorioHoras += (_m = valoresEventos.ValorExtraDomingo.Horas) !== null && _m !== void 0 ? _m : 0;
95
+ somatorioMinutos += (_o = valoresEventos.ValorExtraDomingo.Minutos) !== null && _o !== void 0 ? _o : 0;
69
96
  if (index > 0) {
70
97
  valoresEventos.ValorExtraDomingo.Horas = 0;
71
98
  valoresEventos.ValorExtraDomingo.Minutos = 0;
72
99
  }
73
100
  break;
74
101
  case models_1.TipoEventoExportacao.HORA_EXTRA_FER:
75
- somatorioHoras += valoresEventos.ValorExtraFeriado.Horas ?? 0;
76
- somatorioMinutos += valoresEventos.ValorExtraFeriado.Minutos ?? 0;
102
+ somatorioHoras += (_p = valoresEventos.ValorExtraFeriado.Horas) !== null && _p !== void 0 ? _p : 0;
103
+ somatorioMinutos += (_q = valoresEventos.ValorExtraFeriado.Minutos) !== null && _q !== void 0 ? _q : 0;
77
104
  if (index > 0) {
78
105
  valoresEventos.ValorExtraFeriado.Horas = 0;
79
106
  valoresEventos.ValorExtraFeriado.Minutos = 0;
80
107
  }
81
108
  break;
82
109
  case models_1.TipoEventoExportacao.HORA_EXTRA_INTRAJORNADA:
83
- somatorioHoras += valoresEventos.ValorExtraIntrajornada.Horas ?? 0;
84
- somatorioMinutos += valoresEventos.ValorExtraIntrajornada.Minutos ?? 0;
110
+ somatorioHoras += (_r = valoresEventos.ValorExtraIntrajornada.Horas) !== null && _r !== void 0 ? _r : 0;
111
+ somatorioMinutos += (_s = valoresEventos.ValorExtraIntrajornada.Minutos) !== null && _s !== void 0 ? _s : 0;
85
112
  if (index > 0) {
86
113
  valoresEventos.ValorExtraIntrajornada.Horas = 0;
87
114
  valoresEventos.ValorExtraIntrajornada.Minutos = 0;
88
115
  }
89
116
  break;
90
117
  case models_1.TipoEventoExportacao.HORA_EXTRA_INTRAJORNADA_COM_REDUCAO:
91
- somatorioHoras += valoresEventos.ValorExtraIntrajornadaComReducao.Horas ?? 0;
92
- somatorioMinutos += valoresEventos.ValorExtraIntrajornadaComReducao.Minutos ?? 0;
118
+ somatorioHoras += (_t = valoresEventos.ValorExtraIntrajornadaComReducao.Horas) !== null && _t !== void 0 ? _t : 0;
119
+ somatorioMinutos += (_u = valoresEventos.ValorExtraIntrajornadaComReducao.Minutos) !== null && _u !== void 0 ? _u : 0;
93
120
  if (index > 0) {
94
121
  valoresEventos.ValorExtraIntrajornadaComReducao.Horas = 0;
95
122
  valoresEventos.ValorExtraIntrajornadaComReducao.Minutos = 0;
96
123
  }
97
124
  break;
98
125
  case models_1.TipoEventoExportacao.HORA_EXTRA_NOTURNA_SEG_SEX:
99
- somatorioHoras += valoresEventos.ValorExtraNoturnoSegSex.Horas ?? 0;
100
- somatorioMinutos += valoresEventos.ValorExtraNoturnoSegSex.Minutos ?? 0;
126
+ somatorioHoras += (_v = valoresEventos.ValorExtraNoturnoSegSex.Horas) !== null && _v !== void 0 ? _v : 0;
127
+ somatorioMinutos += (_w = valoresEventos.ValorExtraNoturnoSegSex.Minutos) !== null && _w !== void 0 ? _w : 0;
101
128
  if (index > 0) {
102
129
  valoresEventos.ValorExtraNoturnoSegSex.Horas = 0;
103
130
  valoresEventos.ValorExtraNoturnoSegSex.Minutos = 0;
104
131
  }
105
132
  break;
106
133
  case models_1.TipoEventoExportacao.HORA_EXTRA_NOTURNA_SAB:
107
- somatorioHoras += valoresEventos.ValorExtraNoturnoSabado.Horas ?? 0;
108
- somatorioMinutos += valoresEventos.ValorExtraNoturnoSabado.Minutos ?? 0;
134
+ somatorioHoras += (_x = valoresEventos.ValorExtraNoturnoSabado.Horas) !== null && _x !== void 0 ? _x : 0;
135
+ somatorioMinutos += (_y = valoresEventos.ValorExtraNoturnoSabado.Minutos) !== null && _y !== void 0 ? _y : 0;
109
136
  if (index > 0) {
110
137
  valoresEventos.ValorExtraNoturnoSabado.Horas = 0;
111
138
  valoresEventos.ValorExtraNoturnoSabado.Minutos = 0;
112
139
  }
113
140
  break;
114
141
  case models_1.TipoEventoExportacao.HORA_EXTRA_NOTURNA_DOM:
115
- somatorioHoras += valoresEventos.ValorExtraNoturnoDomingo.Horas ?? 0;
116
- somatorioMinutos += valoresEventos.ValorExtraNoturnoDomingo.Minutos ?? 0;
142
+ somatorioHoras += (_z = valoresEventos.ValorExtraNoturnoDomingo.Horas) !== null && _z !== void 0 ? _z : 0;
143
+ somatorioMinutos += (_0 = valoresEventos.ValorExtraNoturnoDomingo.Minutos) !== null && _0 !== void 0 ? _0 : 0;
117
144
  if (index > 0) {
118
145
  valoresEventos.ValorExtraNoturnoDomingo.Horas = 0;
119
146
  valoresEventos.ValorExtraNoturnoDomingo.Minutos = 0;
120
147
  }
121
148
  break;
122
149
  case models_1.TipoEventoExportacao.HORA_EXTRA_NOTURNA_FER:
123
- somatorioHoras += valoresEventos.ValorExtraNoturnoFeriado.Horas ?? 0;
124
- somatorioMinutos += valoresEventos.ValorExtraNoturnoFeriado.Minutos ?? 0;
150
+ somatorioHoras += (_1 = valoresEventos.ValorExtraNoturnoFeriado.Horas) !== null && _1 !== void 0 ? _1 : 0;
151
+ somatorioMinutos += (_2 = valoresEventos.ValorExtraNoturnoFeriado.Minutos) !== null && _2 !== void 0 ? _2 : 0;
125
152
  if (index > 0) {
126
153
  valoresEventos.ValorExtraNoturnoFeriado.Horas = 0;
127
154
  valoresEventos.ValorExtraNoturnoFeriado.Minutos = 0;
128
155
  }
129
156
  break;
130
157
  case models_1.TipoEventoExportacao.FAIXA_HORA_EXTRA_SEMANAL_1:
131
- somatorioHoras += valoresEventos.FaixaSemanal.ValorFaixa1.Horas ?? 0;
132
- somatorioMinutos += valoresEventos.FaixaSemanal.ValorFaixa1.Minutos ?? 0;
158
+ somatorioHoras += (_3 = valoresEventos.FaixaSemanal.ValorFaixa1.Horas) !== null && _3 !== void 0 ? _3 : 0;
159
+ somatorioMinutos += (_4 = valoresEventos.FaixaSemanal.ValorFaixa1.Minutos) !== null && _4 !== void 0 ? _4 : 0;
133
160
  if (index > 0) {
134
161
  valoresEventos.FaixaSemanal.ValorFaixa1.Horas = 0;
135
162
  valoresEventos.FaixaSemanal.ValorFaixa1.Minutos = 0;
136
163
  }
137
164
  break;
138
165
  case models_1.TipoEventoExportacao.FAIXA_HORA_EXTRA_SEMANAL_2:
139
- somatorioHoras += valoresEventos.FaixaSemanal.ValorFaixa2.Horas ?? 0;
140
- somatorioMinutos += valoresEventos.FaixaSemanal.ValorFaixa2.Minutos ?? 0;
166
+ somatorioHoras += (_5 = valoresEventos.FaixaSemanal.ValorFaixa2.Horas) !== null && _5 !== void 0 ? _5 : 0;
167
+ somatorioMinutos += (_6 = valoresEventos.FaixaSemanal.ValorFaixa2.Minutos) !== null && _6 !== void 0 ? _6 : 0;
141
168
  if (index > 0) {
142
169
  valoresEventos.FaixaSemanal.ValorFaixa2.Horas = 0;
143
170
  valoresEventos.FaixaSemanal.ValorFaixa2.Minutos = 0;
144
171
  }
145
172
  break;
146
173
  case models_1.TipoEventoExportacao.FAIXA_HORA_EXTRA_SEMANAL_3:
147
- somatorioHoras += valoresEventos.FaixaSemanal.ValorFaixa3.Horas ?? 0;
148
- somatorioMinutos += valoresEventos.FaixaSemanal.ValorFaixa3.Minutos ?? 0;
174
+ somatorioHoras += (_7 = valoresEventos.FaixaSemanal.ValorFaixa3.Horas) !== null && _7 !== void 0 ? _7 : 0;
175
+ somatorioMinutos += (_8 = valoresEventos.FaixaSemanal.ValorFaixa3.Minutos) !== null && _8 !== void 0 ? _8 : 0;
149
176
  if (index > 0) {
150
177
  valoresEventos.FaixaSemanal.ValorFaixa3.Horas = 0;
151
178
  valoresEventos.FaixaSemanal.ValorFaixa3.Minutos = 0;
152
179
  }
153
180
  break;
154
181
  case models_1.TipoEventoExportacao.FAIXA_HORA_EXTRA_DIFERENCIADA_1:
155
- somatorioHoras += valoresEventos.FaixaDiferenciada.ValorFaixa1.Horas ?? 0;
156
- somatorioMinutos += valoresEventos.FaixaDiferenciada.ValorFaixa1.Minutos ?? 0;
182
+ somatorioHoras += (_9 = valoresEventos.FaixaDiferenciada.ValorFaixa1.Horas) !== null && _9 !== void 0 ? _9 : 0;
183
+ somatorioMinutos += (_10 = valoresEventos.FaixaDiferenciada.ValorFaixa1.Minutos) !== null && _10 !== void 0 ? _10 : 0;
157
184
  if (index > 0) {
158
185
  valoresEventos.FaixaDiferenciada.ValorFaixa1.Horas = 0;
159
186
  valoresEventos.FaixaDiferenciada.ValorFaixa1.Minutos = 0;
160
187
  }
161
188
  break;
162
189
  case models_1.TipoEventoExportacao.FAIXA_HORA_EXTRA_DIFERENCIADA_2:
163
- somatorioHoras += valoresEventos.FaixaDiferenciada.ValorFaixa2.Horas ?? 0;
164
- somatorioMinutos += valoresEventos.FaixaDiferenciada.ValorFaixa2.Minutos ?? 0;
190
+ somatorioHoras += (_11 = valoresEventos.FaixaDiferenciada.ValorFaixa2.Horas) !== null && _11 !== void 0 ? _11 : 0;
191
+ somatorioMinutos += (_12 = valoresEventos.FaixaDiferenciada.ValorFaixa2.Minutos) !== null && _12 !== void 0 ? _12 : 0;
165
192
  if (index > 0) {
166
193
  valoresEventos.FaixaDiferenciada.ValorFaixa2.Horas = 0;
167
194
  valoresEventos.FaixaDiferenciada.ValorFaixa2.Minutos = 0;
168
195
  }
169
196
  break;
170
197
  case models_1.TipoEventoExportacao.FAIXA_HORA_EXTRA_DIFERENCIADA_3:
171
- somatorioHoras += valoresEventos.FaixaDiferenciada.ValorFaixa3.Horas ?? 0;
172
- somatorioMinutos += valoresEventos.FaixaDiferenciada.ValorFaixa3.Minutos ?? 0;
198
+ somatorioHoras += (_13 = valoresEventos.FaixaDiferenciada.ValorFaixa3.Horas) !== null && _13 !== void 0 ? _13 : 0;
199
+ somatorioMinutos += (_14 = valoresEventos.FaixaDiferenciada.ValorFaixa3.Minutos) !== null && _14 !== void 0 ? _14 : 0;
173
200
  if (index > 0) {
174
201
  valoresEventos.FaixaDiferenciada.ValorFaixa3.Horas = 0;
175
202
  valoresEventos.FaixaDiferenciada.ValorFaixa3.Minutos = 0;
176
203
  }
177
204
  break;
178
205
  case models_1.TipoEventoExportacao.HORAS_TRABALHADAS:
179
- somatorioHoras += valoresEventos.ValorHorasTrabalhadas.Horas ?? 0;
180
- somatorioMinutos += valoresEventos.ValorHorasTrabalhadas.Minutos ?? 0;
206
+ somatorioHoras += (_15 = valoresEventos.ValorHorasTrabalhadas.Horas) !== null && _15 !== void 0 ? _15 : 0;
207
+ somatorioMinutos += (_16 = valoresEventos.ValorHorasTrabalhadas.Minutos) !== null && _16 !== void 0 ? _16 : 0;
181
208
  if (index > 0) {
182
209
  valoresEventos.ValorHorasTrabalhadas.Horas = 0;
183
210
  valoresEventos.ValorHorasTrabalhadas.Minutos = 0;
@@ -271,21 +298,24 @@ class UnificacaoEventosRepetidos {
271
298
  default:
272
299
  break;
273
300
  }
274
- }
275
- unificarEventosComCodigosRepetidos({ parametrosIntegracao, valoresEventos }) {
276
- const codigosEventos = new Array();
277
- for (const tipoEvento of Object.values(Object.freeze(models_1.TipoEventoExportacao))) {
301
+ };
302
+ UnificacaoEventosRepetidos.prototype.unificarEventosComCodigosRepetidos = function (_a) {
303
+ var parametrosIntegracao = _a.parametrosIntegracao, valoresEventos = _a.valoresEventos;
304
+ var codigosEventos = new Array();
305
+ for (var _i = 0, _b = Object.values(Object.freeze(models_1.TipoEventoExportacao)); _i < _b.length; _i++) {
306
+ var tipoEvento = _b[_i];
278
307
  this.adicionarEvento({
279
308
  tipoEvento: tipoEvento,
280
309
  codigosEventos: codigosEventos,
281
310
  parametrosIntegracao: parametrosIntegracao
282
311
  });
283
312
  }
284
- const eventosAgrupados = this.agruparArray({
313
+ var eventosAgrupados = this.agruparArray({
285
314
  campo: 'codigo',
286
315
  array: codigosEventos
287
316
  });
288
- for (const eventoAgrupado of Object.keys(eventosAgrupados)) {
317
+ for (var _c = 0, _d = Object.keys(eventosAgrupados); _c < _d.length; _c++) {
318
+ var eventoAgrupado = _d[_c];
289
319
  if (eventosAgrupados[eventoAgrupado].length > 1) {
290
320
  this.processarValoresCodigosRepetidos({
291
321
  valoresEventos: valoresEventos,
@@ -293,6 +323,7 @@ class UnificacaoEventosRepetidos {
293
323
  });
294
324
  }
295
325
  }
296
- }
297
- }
326
+ };
327
+ return UnificacaoEventosRepetidos;
328
+ }());
298
329
  exports.UnificacaoEventosRepetidos = UnificacaoEventosRepetidos;