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

21 lines
668 B
Plaintext

import { extendDrizzleTable } from './extendDrizzleTable.js';
export const executeSchemaHooks = async ({ type, adapter })=>{
for (const hook of adapter[type]){
const result = await hook({
adapter: adapter,
extendTable: extendDrizzleTable,
schema: {
enums: adapter.enums,
relations: adapter.relations,
tables: adapter.tables
}
});
if (result.enums) {
adapter.enums = result.enums;
}
adapter.tables = result.tables;
adapter.relations = result.relations;
}
};
//# sourceMappingURL=executeSchemaHooks.js.map