Files
klz-cables.com/.pnpm-store/v10/files/8f/f4e694172723c746dc25e93e610f05a26d35faef65b321d4aa673842b986302d70f467bf76c75a830d1a394d0fb75be838dd476b9daf3452c47646cdfef8a0
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

19 lines
631 B
Plaintext

import { RestCommand } from "../../types.js";
//#region src/rest/commands/schema/snapshot.d.ts
type SchemaSnapshotOutput = {
version: number;
directus: string;
vendor: string;
collections: Record<string, any>[];
fields: Record<string, any>[];
relations: Record<string, any>[];
};
/**
* Retrieve the current schema. This endpoint is only available to admin users.
* @returns Returns the JSON object containing schema details.
*/
declare const schemaSnapshot: <Schema>() => RestCommand<SchemaSnapshotOutput, Schema>;
//#endregion
export { SchemaSnapshotOutput, schemaSnapshot };
//# sourceMappingURL=snapshot.d.ts.map