* 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
27 lines
619 B
Plaintext
27 lines
619 B
Plaintext
import faker from "faker"
|
|
import { DataSource } from "typeorm"
|
|
|
|
import { PublishableApiKey } from "@medusajs/medusa"
|
|
|
|
export type PublishableApiKeyData = {
|
|
id?: string
|
|
revoked_at?: Date
|
|
revoked_by?: string
|
|
created_by?: string
|
|
title?: string
|
|
}
|
|
|
|
export const simplePublishableApiKeyFactory = async (
|
|
dataSource: DataSource,
|
|
data: PublishableApiKeyData = {}
|
|
): Promise<PublishableApiKey> => {
|
|
const manager = dataSource.manager
|
|
|
|
const pubKey = manager.create(PublishableApiKey, {
|
|
...data,
|
|
title: data.title || `${faker.commerce.department()} API key`,
|
|
})
|
|
|
|
return await manager.save(pubKey)
|
|
}
|