fix(fulfillment): export schema types (#10700)

Export `ServiceZoneSchema` and `GeoZoneSchema` so that we can infer types correctly in references
This commit is contained in:
Shahed Nasser
2024-12-23 14:58:43 +02:00
committed by GitHub
parent 198fa53120
commit 3a0c69fbe0
2 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
---
"@medusajs/fulfillment": patch
---
fix(fulfillment): export schema types

View File

@@ -4,8 +4,8 @@ export { FulfillmentItem } from "./fulfillment-item"
export { FulfillmentLabel } from "./fulfillment-label"
export { FulfillmentProvider } from "./fulfillment-provider"
export { FulfillmentSet } from "./fulfillment-set"
export { GeoZone } from "./geo-zone"
export { ServiceZone } from "./service-zone"
export { GeoZone, GeoZoneSchema } from "./geo-zone"
export { ServiceZone, ServiceZoneSchema } from "./service-zone"
export { ShippingOption } from "./shipping-option"
export { ShippingOptionRule } from "./shipping-option-rule"
export { ShippingOptionType } from "./shipping-option-type"