chore: Remove typeORM (#9005)
* chore: rename js files to txt * chore: rename ts files to txt * chore: delete environment helpers * chore: convert global setup & teardown to txt * chore: rename helper js/ts files to txt * chore: rename seeder js/ts files to txt * chore: remove typeorm * chore: reintroduce used helpers
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
import { ShippingProfile, ShippingProfileType } from "@medusajs/medusa"
|
||||
import faker from "faker"
|
||||
import { Connection } from "typeorm"
|
||||
|
||||
export type ShippingProfileFactoryData = {
|
||||
id?: string
|
||||
name?: string
|
||||
type?: ShippingProfileType
|
||||
metadata?: Record<string, unknown>
|
||||
}
|
||||
|
||||
export const simpleShippingProfileFactory = async (
|
||||
connection: Connection,
|
||||
data: ShippingOptionFactoryData = {},
|
||||
seed?: number
|
||||
): Promise<ShippingProfile> => {
|
||||
if (typeof seed !== "undefined") {
|
||||
faker.seed(seed)
|
||||
}
|
||||
|
||||
const manager = connection.manager
|
||||
|
||||
const shippingProfileData = {
|
||||
id: data.id ?? `simple-sp-${Math.random() * 1000}`,
|
||||
name: data.name || `sp-${Math.random() * 1000}`,
|
||||
type: data.type || ShippingProfileType.DEFAULT,
|
||||
metadata: data.metadata,
|
||||
products: [],
|
||||
shipping_options: [],
|
||||
}
|
||||
|
||||
const created = manager.create(ShippingProfile, shippingProfileData)
|
||||
|
||||
return await manager.save(created)
|
||||
}
|
||||
Reference in New Issue
Block a user