Files
klz-cables.com/.pnpm-store/v10/files/3b/4cb97100295a5ad23f84b8828bfa8b0d88318a40b44253208fea86ec8659524657477601d78979b345b358794e502d8a5d5eb40380d081b54514bc3cac19a1
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

20 lines
938 B
Plaintext

import type { CollectionConfig } from '../../index.js';
import type { Payload } from '../../types/index.js';
import type { KVAdapter, KVAdapterResult, KVStoreValue } from '../index.js';
export declare class DatabaseKVAdapter implements KVAdapter {
readonly payload: Payload;
readonly collectionSlug: string;
constructor(payload: Payload, collectionSlug: string);
clear(): Promise<void>;
delete(key: string): Promise<void>;
get<T extends KVStoreValue>(key: string): Promise<null | T>;
has(key: string): Promise<boolean>;
keys(): Promise<string[]>;
set(key: string, data: KVStoreValue): Promise<void>;
}
export type DatabaseKVAdapterOptions = {
/** Override options for the generated collection */
kvCollectionOverrides?: Partial<CollectionConfig>;
};
export declare const databaseKVAdapter: (options?: DatabaseKVAdapterOptions) => KVAdapterResult;
//# sourceMappingURL=DatabaseKVAdapter.d.ts.map