Files
klz-cables.com/.pnpm-store/v10/files/92/a12e43d657857b708477a7724d0e0858d048ba1be4d15e2b48d89b1edae947a7c3928761b44c4cc8022b645a8a59bf00bfdfd5a655e2e59e75003a53c20473
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

14 lines
606 B
Plaintext

import { RestCommand } from "../../types.cjs";
import { SchemaDiffOutput } from "./diff.cjs";
//#region src/rest/commands/schema/apply.d.ts
/**
* Update the instance's schema by passing the diff previously retrieved via /schema/diff endpoint in the request body. This endpoint is only available to admin users.
* @param diff JSON object containing hash and diffs of collections, fields, and relations to apply.
* @returns Empty body.
*/
declare const schemaApply: <Schema>(diff: SchemaDiffOutput) => RestCommand<void, Schema>;
//#endregion
export { schemaApply };
//# sourceMappingURL=apply.d.cts.map