dda049075f
Moves approve, reject, cancel, and request vacation business logic out of the tRPC procedure layer into packages/application, matching the pattern used by allocation use-cases. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
715 B
TypeScript
30 lines
715 B
TypeScript
export {
|
|
approveVacation,
|
|
batchApproveVacations,
|
|
type ApproveVacationInput,
|
|
type ApproveVacationResult,
|
|
type ApproveVacationDeps,
|
|
type BatchApproveVacationInput,
|
|
type BatchApproveVacationResult,
|
|
type BatchApproveVacationDeps,
|
|
type VacationChargeableInput,
|
|
} from "./approve-vacation.js";
|
|
|
|
export {
|
|
rejectVacation,
|
|
batchRejectVacations,
|
|
type RejectVacationInput,
|
|
type RejectVacationResult,
|
|
type RejectVacationDeps,
|
|
type BatchRejectVacationInput,
|
|
type BatchRejectVacationResult,
|
|
type BatchRejectVacationDeps,
|
|
} from "./reject-vacation.js";
|
|
|
|
export {
|
|
cancelVacation,
|
|
type CancelVacationInput,
|
|
type CancelVacationResult,
|
|
type CancelVacationDeps,
|
|
} from "./cancel-vacation.js";
|