@senior-gestao-pessoas/payroll-core 9.0.0-a4fbab57-d394-4e67-8b53-439fdbf2234f → 9.0.0-e0d978a5-4bcc-4d90-975a-199ff4cd698c

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.
@@ -3201,6 +3201,7 @@ var InputRestAutoCompleteEmployeeComponent = /** @class */ (function () {
3201
3201
  InputRestAutoCompleteEmployeeComponent.prototype.getParamsRest = function (search) {
3202
3202
  var returnFilter = {
3203
3203
  valueSearch: search,
3204
+ timeTrackingResumeType: { key: "FIRED" },
3204
3205
  enableEntityFilters: this.enableEntityFilters,
3205
3206
  };
3206
3207
  if (this.company) {
@@ -3437,6 +3438,9 @@ var InputRestAutoCompleteEmployeeModelComponent = /** @class */ (function () {
3437
3438
  if (this.employeeType) {
3438
3439
  returnFilter['employeeType'] = this.employeeType;
3439
3440
  }
3441
+ if (this.timeTrackingResumeType) {
3442
+ returnFilter['timeTrackingResumeType'] = { key: "FIRED" };
3443
+ }
3440
3444
  return returnFilter;
3441
3445
  };
3442
3446
  /**
@@ -3521,6 +3525,9 @@ var InputRestAutoCompleteEmployeeModelComponent = /** @class */ (function () {
3521
3525
  __decorate([
3522
3526
  Input()
3523
3527
  ], InputRestAutoCompleteEmployeeModelComponent.prototype, "inputStyle", void 0);
3528
+ __decorate([
3529
+ Input()
3530
+ ], InputRestAutoCompleteEmployeeModelComponent.prototype, "timeTrackingResumeType", void 0);
3524
3531
  __decorate([
3525
3532
  Output()
3526
3533
  ], InputRestAutoCompleteEmployeeModelComponent.prototype, "onBlur", void 0);