/** * method-catalog-checkin.ts * * Contract descriptors for the proactive check-in verbs (checkin.config.get/set, * checkin.receipts.list, checkin.run). These expose the CheckinService * (../../checkin) over the operator surface: read/update the cadence, delivery * channel, and quiet hours; read the visible run receipts; and trigger a check-in * now. The scheduled runs ride the automation scheduler as a kind:'checkin' job. */ import type { GatewayMethodDescriptor } from './method-catalog-shared.js'; export declare const CHECKIN_CONFIG_SCHEMA: Record; export declare const CHECKIN_RECEIPT_SCHEMA: Record; export declare const CHECKIN_CONFIG_GET_INPUT_SCHEMA: { readonly type: "object"; readonly properties: {}; readonly additionalProperties: false; }; export declare const CHECKIN_CONFIG_GET_OUTPUT_SCHEMA: Record; export declare const CHECKIN_CONFIG_SET_INPUT_SCHEMA: Record; export declare const CHECKIN_CONFIG_SET_OUTPUT_SCHEMA: Record; export declare const CHECKIN_RECEIPTS_LIST_INPUT_SCHEMA: Record; export declare const CHECKIN_RECEIPTS_LIST_OUTPUT_SCHEMA: Record; export declare const CHECKIN_RUN_INPUT_SCHEMA: { readonly type: "object"; readonly properties: {}; readonly additionalProperties: false; }; export declare const CHECKIN_RUN_OUTPUT_SCHEMA: Record; export declare const builtinGatewayCheckinMethodDescriptors: readonly GatewayMethodDescriptor[]; //# sourceMappingURL=method-catalog-checkin.d.ts.map