@senior-gestao-pessoas/payroll-core 9.0.0-e0d978a5-4bcc-4d90-975a-199ff4cd698c → 9.0.0-ffa996ad-435c-4748-b85e-90746de85131

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.
@@ -3428,6 +3428,7 @@ var InputRestAutoCompleteEmployeeModelComponent = /** @class */ (function () {
3428
3428
  InputRestAutoCompleteEmployeeModelComponent.prototype.getParamsRest = function (search) {
3429
3429
  var returnFilter = {
3430
3430
  valueSearch: search,
3431
+ timeTrackingResumeType: { key: "FIRED" },
3431
3432
  };
3432
3433
  if (this.company) {
3433
3434
  returnFilter['company'] = this.company;
@@ -3438,9 +3439,6 @@ var InputRestAutoCompleteEmployeeModelComponent = /** @class */ (function () {
3438
3439
  if (this.employeeType) {
3439
3440
  returnFilter['employeeType'] = this.employeeType;
3440
3441
  }
3441
- if (this.timeTrackingResumeType) {
3442
- returnFilter['timeTrackingResumeType'] = { key: "FIRED" };
3443
- }
3444
3442
  return returnFilter;
3445
3443
  };
3446
3444
  /**