import { Coordinates, Worker, WorkerBlockTypes, WorkerStatus } from '@anthor/entities-types'; export interface WorkersByGeoNearFilter { geoPoints: Coordinates; limit: number; maxDistance: number; skip: number; statusParams: { in: WorkerStatus[]; }; } export interface WorkersByGeoNearInput { filter: WorkersByGeoNearFilter; } interface WorkerBlockInput { type: WorkerBlockTypes; key: string; description: string; } export interface CreateWorkerBlockManyInput { workerId: string; blocks: WorkerBlockInput[]; } export interface CreateWorkerUserInput { record: Worker; password: string; } export {};