import { SuccessRO } from '@escapenavigator/types/dist/shared/success.ro'; import { ApiMethodDeclaration } from '..'; type ParamsData = { data: { questroomId: number; date: string; }; }; type ResponseData = SuccessRO; /** * Self-healing сброс серверного day-cache слотов. Используется CRM, когда * `GET /orders/:id` вернул 404 на ордер, который ещё виден в календаре * (ghost id в Redis после удаления ордера кроном). */ export declare const invalidateDay: ApiMethodDeclaration; export {};