export type SetCacheParams = { key: string; value: Record; namespace: string; ttlInSeconds?: number; }; export type GetCacheParams = { key: string; namespace: string; }; export type CacheReadModelSchema = { key: string; value: Record; namespace: string; ttlInSeconds: number | null; createdAt: string; updatedAt: string; object: 'cache'; }; //# sourceMappingURL=types.d.ts.map