Files
klz-cables.com/.pnpm-store/v10/files/b6/1651fcf78d74bb75cae2b8a1adc187a1ccbec969af00b13c8902736675bd93eeec514d6168da88e611c321b9ea0da1aeeee9f2e6409a32fb7017dab4d6d233
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
633 B
Plaintext

import { RestCommand } from "../../types.cjs";
//#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.cts.map