Files
klz-cables.com/.pnpm-store/v10/files/f1/6b413bb1aff5fc367dca460365684e534c7b11eddad3d3154ef4aee5cd0a17dd13ea5c965965c9b917c0ffbd174e809c632d3610f1a128a75b746f4c4c7fe2
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

22 lines
726 B
Plaintext

import { DirectusVersion } from "../../../schema/version.cjs";
import { RestCommand } from "../../types.cjs";
//#region src/rest/commands/delete/versions.d.ts
/**
* Delete multiple existing Content Versions.
* @param keys
* @returns
* @throws Will throw if keys is empty
*/
declare const deleteContentVersions: <Schema>(keys: DirectusVersion<Schema>["id"][]) => RestCommand<void, Schema>;
/**
* Delete an existing Content Version.
* @param key
* @returns
* @throws Will throw if key is empty
*/
declare const deleteContentVersion: <Schema>(key: DirectusVersion<Schema>["id"]) => RestCommand<void, Schema>;
//#endregion
export { deleteContentVersion, deleteContentVersions };
//# sourceMappingURL=versions.d.cts.map