15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
import { CreateApiKeyDTO } from "@types"
|
|
import { ApiKeyType } from "@medusajs/utils"
|
|
|
|
export const createSecretKeyFixture: CreateApiKeyDTO = {
|
|
title: "Secret key",
|
|
type: ApiKeyType.SECRET,
|
|
created_by: "test",
|
|
}
|
|
|
|
export const createPublishableKeyFixture: CreateApiKeyDTO = {
|
|
title: "Test API Key",
|
|
type: ApiKeyType.PUBLISHABLE,
|
|
created_by: "test",
|
|
}
|