Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnisLielturks committed Apr 26, 2024
1 parent d9f511d commit 8539392
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rootxpdev/medusa-email-plugin",
"version": "0.4.6",
"version": "0.4.7",
"description": "Send emails when certain actions happens in medusa store",
"main": "index.js",
"repository": {
Expand Down
8 changes: 4 additions & 4 deletions src/services/emails.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {
AbstractNotificationService, CartService, LineItemService,
BaseService,
Logger,
OrderService,
} from "medusa-interfaces";
Expand All @@ -15,13 +15,13 @@ interface EmailConfig {
smtpPassword: string;
}

class EmailsService extends AbstractNotificationService {
class EmailsService extends BaseService {
static identifier = 'emails';
static is_installed = true;

protected orderService: OrderService;
protected cartService: CartService;
protected lineItemService: LineItemService;
protected cartService: any;
protected lineItemService: any;
protected logger: Logger;
protected emailConfig: EmailConfig;

Expand Down

0 comments on commit 8539392

Please sign in to comment.