Files
klz-cables.com/.pnpm-store/v10/files/4d/f7bd2df09b5f37f55674eec6ea5208914de41fc8f673666b00cafedca5265ff31a89ded9d9cfcc473d70908b750a82b26e1c96b59d57f6400eab1dafdf480c
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

18 lines
905 B
Plaintext

import type { SanitizedCollectionConfig } from '../collections/config/types.js';
import type { SanitizedGlobalConfig } from '../globals/config/types.js';
import type { Payload, TypeWithVersion } from '../index.js';
import type { JsonObject, PayloadRequest, SelectType } from '../types/index.js';
type Args<T extends JsonObject = JsonObject> = {
autosave?: boolean;
collection?: SanitizedCollectionConfig;
data?: T;
global?: SanitizedGlobalConfig;
id?: number | string;
payload: Payload;
publishSpecificLocale?: string;
req?: PayloadRequest;
select?: SelectType;
};
export declare const saveSnapshot: <T extends JsonObject = JsonObject>({ id, autosave, collection, data, global, payload, publishSpecificLocale, req, select, }: Args<T>) => Promise<Omit<TypeWithVersion<T>, "parent"> | TypeWithVersion<T> | undefined>;
export {};
//# sourceMappingURL=saveSnapshot.d.ts.map