@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.
@@ -3367,6 +3367,7 @@
3367
3367
  InputRestAutoCompleteEmployeeComponent.prototype.getParamsRest = function (search) {
3368
3368
  var returnFilter = {
3369
3369
  valueSearch: search,
3370
+ timeTrackingResumeType: { key: "FIRED" },
3370
3371
  enableEntityFilters: this.enableEntityFilters,
3371
3372
  };
3372
3373
  if (this.company) {
@@ -3603,6 +3604,9 @@
3603
3604
  if (this.employeeType) {
3604
3605
  returnFilter['employeeType'] = this.employeeType;
3605
3606
  }
3607
+ if (this.timeTrackingResumeType) {
3608
+ returnFilter['timeTrackingResumeType'] = { key: "FIRED" };
3609
+ }
3606
3610
  return returnFilter;
3607
3611
  };
3608
3612
  /**
@@ -3687,6 +3691,9 @@
3687
3691
  __decorate([
3688
3692
  core.Input()
3689
3693
  ], InputRestAutoCompleteEmployeeModelComponent.prototype, "inputStyle", void 0);
3694
+ __decorate([
3695
+ core.Input()
3696
+ ], InputRestAutoCompleteEmployeeModelComponent.prototype, "timeTrackingResumeType", void 0);
3690
3697
  __decorate([
3691
3698
  core.Output()
3692
3699
  ], InputRestAutoCompleteEmployeeModelComponent.prototype, "onBlur", void 0);