export declare const PAYMENTS_BUDGET_STATUS_INPUT_SCHEMA: Record; export declare const PAYMENTS_BUDGET_STATUS_OUTPUT_SCHEMA: Record; export declare const PAYMENTS_CARDS_LIST_INPUT_SCHEMA: Record; export declare const PAYMENTS_CARDS_LIST_OUTPUT_SCHEMA: Record; /** * Adding a card. Card material goes IN and never comes back out. * * The response is the metadata record only, there is deliberately no echo of * what was submitted, because an echo is a read path and the whole point is * that no read path exists. */ export declare const PAYMENTS_CARDS_CREATE_INPUT_SCHEMA: Record; export declare const PAYMENTS_CARDS_CREATE_OUTPUT_SCHEMA: Record; export declare const PAYMENTS_CARDS_DELETE_INPUT_SCHEMA: Record; export declare const PAYMENTS_CARDS_DELETE_OUTPUT_SCHEMA: Record; export declare const PAYMENTS_PURCHASES_LIST_INPUT_SCHEMA: Record; export declare const PAYMENTS_PURCHASES_LIST_OUTPUT_SCHEMA: Record; export declare const PAYMENTS_CHECKOUT_FILL_CARD_INPUT_SCHEMA: Record; /** * What comes back: which fields were filled, and nothing else. * * `filled` is a list of field NAMES. `failedField` names the one that did not * work. There is deliberately no property here that could carry a value, a * length, a prefix or a masked form, an echo is a read path, and the whole * design rests on no read path existing. */ export declare const PAYMENTS_CHECKOUT_FILL_CARD_OUTPUT_SCHEMA: Record; /** * Beginning a checkout. * * Note which `required` entries are present. The handler refuses without every * one of them, and a catalog that declared fewer would produce a 400 no * consumer could have predicted from the schema, the omission found in * method-catalog-email.ts, where the handler enforces `uid` and the descriptor * declares nothing. */ export declare const PAYMENTS_CHECKOUT_BEGIN_INPUT_SCHEMA: Record; /** * What comes back. * * Amounts are integers WE computed, never the merchant's text, and there is no * field here that could carry card material. */ export declare const PAYMENTS_CHECKOUT_BEGIN_OUTPUT_SCHEMA: Record; //# sourceMappingURL=operator-contract-schemas-payments.d.ts.map