import type * as HydraDB from "../index.js"; export interface HandlerConfigureResponse { backfill?: boolean; configured?: number; /** Connector this resource belongs to. */ connectorId?: string; /** * FirstSyncAt/Message state the timing expectation: whether the first * sync is already running (configure triggers one) or when the scheduled * one runs, so clients stop inventing their own copy (PRO-1565). */ firstSyncAt?: string; /** Human-readable result message. */ message?: string; meta?: HydraDB.HandlerConfigureResponseMeta; /** * Warnings names resources that were saved but produced nothing when * probed. They are valid — the user may know a table is empty and expect it * to fill — so they are not rejected, but they are the case that is * otherwise indistinguishable from success at every layer, so they are * never saved silently either. */ warnings?: string[]; }