feat: Payment module package setup

This commit is contained in:
fPolic
2024-01-11 11:26:41 +01:00
parent b6ac768698
commit 824bcce3dd
34 changed files with 485 additions and 1 deletions
+1 -1
View File
@@ -16,6 +16,7 @@ export * from "./logger"
export * from "./modules-sdk"
export * from "./pricing"
export * from "./product"
export * from "./payment"
export * from "./product-category"
export * from "./promotion"
export * from "./region"
@@ -25,4 +26,3 @@ export * from "./shared-context"
export * from "./stock-location"
export * from "./transaction-base"
export * from "./workflow"
+1
View File
@@ -0,0 +1 @@
export * from "./service"
+3
View File
@@ -0,0 +1,3 @@
import { IModuleService } from "../modules-sdk"
export interface IPaymentModuleService extends IModuleService {}