feat(medusa,types): added store apis for products (#7144)

what:

- adds products list api
- adds products retrieve api

RESOLVES CORE-2016
This commit is contained in:
Riqwan Thamir
2024-04-29 15:14:41 +00:00
committed by GitHub
parent 32c2a9d76b
commit 11517f0faf
24 changed files with 980 additions and 48 deletions
@@ -4,4 +4,5 @@ export * from "./price-list"
export * from "./price-rule"
export * from "./price-set"
export * from "./price-set-rule-type"
export * from "./pricing-context"
export * from "./rule-type"
@@ -0,0 +1,6 @@
export type MedusaPricingContext = {
region_id?: string
currency_code?: string
customer_id?: string
customer_group_id?: string[]
}