taxtank-core 2.0.122 → 2.0.123

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sources":["../../../projects/tt-core/common/src/services/mixpanel.service.ts","../../../projects/tt-core/common/src/services/auth/jwt-decoded.interface.ts","../../../projects/tt-core/common/src/services/auth/auth-tokens.interface.ts","../../../projects/tt-core/common/src/services/auth/jwt.service.ts","../../../projects/tt-core/common/src/services/auth/auth.service.ts","../../../projects/tt-core/common/src/services/auth/auth-messages.enum.ts","../../../projects/tt-core/common/src/interceptors/interceptors.module.ts","../../../projects/tt-core/common/src/common.module.ts","../../../projects/tt-core/common/src/db/enums/user/user-roles.enum.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;;;AAGA;;AAEG;AACH;AAIqC;AAAQ;AAE3C;AAQA;AASA;AAQA;AAAmC;AAAyB;;AAQT;AAAyB;AAQ5E;;;AAOD;;;;;;ACxDC;;;;;;AAGD;;ACPD;;AAEG;;;;AAIF;;ACKD;;AAKE;AAEA;AAIA;AAIA;AAQA;AAYA;AAIA;AAIA;;;AAGD;;AClDD;AAKI;AACA;AACA;AACuB;AAHf;;AAYV;;;AAiCA;;;AAKD;;AC9DD;AACE;AACD;;ACED;;;;AAUC;;ACVD;;AAEG;AACH;;;;;AAsBC;;AC7BD;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACD;;;"}
@@ -23993,7 +23993,7 @@ class CalendarReminderForm extends AbstractForm {
23993
23993
  tankType: new UntypedFormControl(reminder.tankType ?? TankTypeEnum.PERSONAL, Validators.required),
23994
23994
  type: new UntypedFormControl(reminder.type, Validators.required),
23995
23995
  startDate: new FormControl(reminder.startDate, Validators.required),
23996
- endDate: new FormControl({ value: reminder.endDate, disabled: !reminder.frequency }, [Validators.required, conditionalValidator(() => this.get('frequency').value, compareWithControlValidator('startDate', '>', 'Reminder start date'))]),
23996
+ endDate: new FormControl({ value: reminder.endDate, disabled: !reminder.frequency }, [conditionalValidator(() => this.get('frequency').value, compareWithControlValidator('startDate', '>', 'Reminder start date'))]),
23997
23997
  frequency: new FormControl(reminder.frequency),
23998
23998
  description: new UntypedFormControl(reminder.description),
23999
23999
  file: new UntypedFormControl(reminder.file),