feat(auth): Migrate auth module to DML (#10387)
* feat(auth): Migrate auth module to DML * Create lazy-eagles-bow.md
This commit is contained in:
committed by
GitHub
parent
913cf15e2b
commit
4ef353a7b9
@@ -5,6 +5,7 @@ import {
|
||||
AuthTypes,
|
||||
Context,
|
||||
DAL,
|
||||
InferEntityType,
|
||||
InternalModuleDeclaration,
|
||||
Logger,
|
||||
ModuleJoinerConfig,
|
||||
@@ -35,8 +36,12 @@ export default class AuthModuleService
|
||||
implements AuthTypes.IAuthModuleService
|
||||
{
|
||||
protected baseRepository_: DAL.RepositoryService
|
||||
protected authIdentityService_: ModulesSdkTypes.IMedusaInternalService<AuthIdentity>
|
||||
protected providerIdentityService_: ModulesSdkTypes.IMedusaInternalService<ProviderIdentity>
|
||||
protected authIdentityService_: ModulesSdkTypes.IMedusaInternalService<
|
||||
InferEntityType<typeof AuthIdentity>
|
||||
>
|
||||
protected providerIdentityService_: ModulesSdkTypes.IMedusaInternalService<
|
||||
InferEntityType<typeof ProviderIdentity>
|
||||
>
|
||||
protected readonly authProviderService_: AuthProviderService
|
||||
|
||||
constructor(
|
||||
|
||||
Reference in New Issue
Block a user