From 04b5778dd4b7017ff946e6b47e5146a48d8f90ad Mon Sep 17 00:00:00 2001 From: Matthieu Haineault Date: Tue, 9 Sep 2025 09:37:33 -0400 Subject: [PATCH] refactor(timesheet): moved payload interfaces to seperate file --- .../components/timesheet/timesheet-save-payload.vue | 3 ++- .../components/timesheet/timesheet-shift-form.vue | 2 +- .../timesheets/composables/use-timesheet-api.ts | 2 +- .../timesheets/pages/timesheet-temp-page.vue | 2 +- .../timesheets/types/timesheet-shift-interface.ts | 13 ------------- .../types/timesheet-shifts-payload-interface.ts | 12 ++++++++++++ 6 files changed, 17 insertions(+), 17 deletions(-) create mode 100644 src/modules/timesheets/types/timesheet-shifts-payload-interface.ts diff --git a/src/modules/timesheets/components/timesheet/timesheet-save-payload.vue b/src/modules/timesheets/components/timesheet/timesheet-save-payload.vue index c71840b..a2f3c2a 100644 --- a/src/modules/timesheets/components/timesheet/timesheet-save-payload.vue +++ b/src/modules/timesheets/components/timesheet/timesheet-save-payload.vue @@ -1,7 +1,8 @@