add SearchService interface to medusa-interfaces add DefaultSearchService skeleton implementation to core add search-index.js loader to core for indexing db documents add SearchSubscriber to core add loadToSearchEngine method in ProductService switch order of loaders in core to load subscriptions AFTER plugins adjust service and loader for medusa-plugin-meilisearch
9 lines
486 B
JavaScript
9 lines
486 B
JavaScript
export { default as BaseService } from "./base-service"
|
|
export { default as BaseModel } from "./base-model"
|
|
export { default as PaymentService } from "./payment-service"
|
|
export { default as FulfillmentService } from "./fulfillment-service"
|
|
export { default as FileService } from "./file-service"
|
|
export { default as NotificationService } from "./notification-service"
|
|
export { default as OauthService } from "./oauth-service"
|
|
export { default as SearchService } from "./search-service"
|