* feat(): Translation settings + user configuration * feat(): Translation settings + user configuration * Create gentle-bees-grow.md * add entities end point * add entities end point * add admin hook and js sdk method * update changeset * fix tests * fix tests * rm unnecessary copy * update dashboard to use the new resources * update dashboard to use the new resources * update dashboard to use the new resources * allow type inference through interface augmentation in the defineConfig of medusa-config * allow type inference through interface augmentation in the defineConfig of medusa-config * exclude id and _id props --------- Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
9 lines
310 B
TypeScript
9 lines
310 B
TypeScript
import { defineMikroOrmCliConfig } from "@medusajs/framework/utils"
|
|
import Locale from "./src/models/locale"
|
|
import Translation from "./src/models/translation"
|
|
import Settings from "./src/models/settings"
|
|
|
|
export default defineMikroOrmCliConfig("translation", {
|
|
entities: [Locale, Translation, Settings],
|
|
})
|