feat: Add skeleton for Store module (#6506)

This commit is contained in:
Stevche Radevski
2024-02-26 12:00:48 +00:00
committed by GitHub
parent 8ea37d03c9
commit 63be07031b
30 changed files with 428 additions and 0 deletions
+1
View File
@@ -23,3 +23,4 @@ export * as TransactionBaseTypes from "./transaction-base"
export * as UserTypes from "./user"
export * as WorkflowTypes from "./workflow"
export * as ApiKeyTypes from "./api-key"
export * as StoreTypes from "./store"
+1
View File
@@ -33,3 +33,4 @@ export * from "./transaction-base"
export * from "./user"
export * from "./workflow"
export * from "./api-key"
export * from "./store"
+1
View File
@@ -0,0 +1 @@
export * from "./store"
+3
View File
@@ -0,0 +1,3 @@
export interface StoreDTO {
id: string
}
+3
View File
@@ -0,0 +1,3 @@
export * from "./common"
export * from "./mutations"
export * from "./service"
@@ -0,0 +1 @@
export * from "./store"
@@ -0,0 +1 @@
export interface CreateStoreDTO {}
+3
View File
@@ -0,0 +1,3 @@
import { IModuleService } from "../modules-sdk"
export interface IStoreModuleService extends IModuleService {}