Files
medusa-store/packages/modules/api-key/integration-tests/__fixtures__/index.ts
2024-09-26 11:14:35 +05:30

15 lines
372 B
TypeScript

import { CreateApiKeyDTO } from "@types"
import { ApiKeyType } from "@medusajs/framework/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",
}