fix(core-flows,utils): move fulfillment workflow events (#12338)

Move fulfillment workflow events to be with other workflow events.

Could be considered a breaking change for users using the previously `FulfillmentEvents` variable
This commit is contained in:
Shahed Nasser
2025-05-01 12:11:17 +03:00
committed by GitHub
parent 2bfe936185
commit a53d645f8a
5 changed files with 41 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ import {
OrderWorkflow,
ProductVariantDTO,
} from "@medusajs/framework/types"
import { FulfillmentEvents, MathBN, Modules } from "@medusajs/framework/utils"
import { FulfillmentWorkflowEvents, MathBN, Modules } from "@medusajs/framework/utils"
import {
WorkflowData,
WorkflowResponse,
@@ -243,7 +243,7 @@ export const createOrderShipmentWorkflow = createWorkflow(
)
emitEventStep({
eventName: FulfillmentEvents.SHIPMENT_CREATED,
eventName: FulfillmentWorkflowEvents.SHIPMENT_CREATED,
data: { id: shipment.id, no_notification: input.no_notification },
})

View File

@@ -7,7 +7,7 @@ import {
ProductVariantDTO,
RegisterOrderDeliveryDTO,
} from "@medusajs/framework/types"
import { FulfillmentEvents, MathBN, Modules } from "@medusajs/framework/utils"
import { FulfillmentWorkflowEvents, MathBN, Modules } from "@medusajs/framework/utils"
import {
WorkflowData,
WorkflowResponse,
@@ -261,7 +261,7 @@ export const markOrderFulfillmentAsDeliveredWorkflow = createWorkflow(
)
emitEventStep({
eventName: FulfillmentEvents.DELIVERY_CREATED,
eventName: FulfillmentWorkflowEvents.DELIVERY_CREATED,
data: { id: deliveredFulfillment.id },
})