import { Repository } from "./index"; import { StaffWorkingPlanningEntity, WorkingPlanningEntity } from "../data/scheduling/WorkingPlanning"; import { AuthenticationService } from "../service/authenticationService"; import { Logger } from "../utils/logger"; interface Args { account: string; companyId?: string; start?: Date; end?: Date; withOccupancy?: boolean; } export declare class WorkingPlanningRepository extends Repository { private workingPlanningService; constructor(authenticationService: AuthenticationService, baseURL: string, logger?: Logger); getAllCompanyWorkingPlannings(bearer: string, account: string, companyId: string, start: Date, end: Date, withOccupancy: boolean): Promise; createWorkingPlanning(bearer: string, account: string, workingPlanning: WorkingPlanningEntity): Promise; protected localBulkDelete(items: WorkingPlanningEntity[]): Promise; protected localBulkSave(args: Args, items: WorkingPlanningEntity[]): Promise; protected localDelete(args: Args): Promise; protected localGet(args: Args): Promise; protected localList(args: Args): Promise; protected remoteCreate(bearer: string, args: Args, item: StaffWorkingPlanningEntity): Promise; protected remoteDelete(bearer: string, args: Args): Promise; protected remoteGet(bearer: string, args: Args): Promise; protected remoteList(bearer: string, args: Args): Promise; protected remoteUpdate(bearer: string, args: Args, item: WorkingPlanningEntity): Promise; } export {};