/** * schema-domain-at-rest.ts, config for the at-rest redaction + retention policy * applied to the on-disk transcript journal (agents/session.ts) and local * execution ledger (runtime/telemetry/exporters/local-ledger.ts). Consumed by * runtime/at-rest-persistence.ts (resolveAtRestPolicy). * * Honest defaults: redaction ON by default (secrets never persisted in the * clear); retention generous but bounded (30 days / 512 MB) so a normal * debugging window survives while a long-lived daemon cannot grow these files * without limit. */ import type { AtRestConfig, ConfigSetting } from './schema-types.js'; export declare const atRestConfigDefaults: { atRest: AtRestConfig; }; export declare const atRestConfigSettings: ConfigSetting[]; //# sourceMappingURL=schema-domain-at-rest.d.ts.map