chore: remove container registration name (#9137)
This commit is contained in:
committed by
GitHub
parent
ab4a422fc8
commit
950cf9af79
@@ -56,7 +56,7 @@ moduleIntegrationTestRunner<IApiKeyModuleService>({
|
||||
linkable: "api_key_id",
|
||||
entity: "ApiKey",
|
||||
primaryKey: "id",
|
||||
serviceName: "apiKey",
|
||||
serviceName: "ApiKey",
|
||||
field: "apiKey",
|
||||
},
|
||||
publishable_key_id: {
|
||||
@@ -64,7 +64,7 @@ moduleIntegrationTestRunner<IApiKeyModuleService>({
|
||||
entity: "ApiKey",
|
||||
linkable: "publishable_key_id",
|
||||
primaryKey: "publishable_key_id",
|
||||
serviceName: "apiKey",
|
||||
serviceName: "ApiKey",
|
||||
},
|
||||
})
|
||||
})
|
||||
|
||||
@@ -1,9 +1,14 @@
|
||||
import { ApiKeyType, RevokeApiKeyDTO, UpdateApiKeyDTO } from "@medusajs/types"
|
||||
import { IEventBusModuleService, Logger } from "@medusajs/types"
|
||||
import {
|
||||
ApiKeyType,
|
||||
IEventBusModuleService,
|
||||
Logger,
|
||||
RevokeApiKeyDTO,
|
||||
UpdateApiKeyDTO,
|
||||
} from "@medusajs/types"
|
||||
|
||||
export type InitializeModuleInjectableDependencies = {
|
||||
logger?: Logger
|
||||
eventBusModuleService?: IEventBusModuleService
|
||||
EventBus?: IEventBusModuleService
|
||||
}
|
||||
|
||||
export type CreateApiKeyDTO = {
|
||||
|
||||
Reference in New Issue
Block a user