feat(medusa,types,core-flows): apply created_by values - claims, exchanges, returns, fulfillment (#8712)

what:

- Applies created_by values - claims, exchanges, returns, fulfillment

RESOLVES CC-96
This commit is contained in:
Riqwan Thamir
2024-08-21 18:15:55 +00:00
committed by GitHub
parent f00889fe4e
commit 335061d8cd
26 changed files with 121 additions and 17 deletions
@@ -45,6 +45,7 @@ export const beginClaimOrderWorkflow = createWorkflow(
type: input.type,
order_id: input.order_id,
metadata: input.metadata,
created_by: input.created_by,
},
])
@@ -44,6 +44,7 @@ export const beginExchangeOrderWorkflow = createWorkflow(
{
order_id: input.order_id,
metadata: input.metadata,
created_by: input.created_by,
},
])
@@ -44,6 +44,7 @@ export const beginReturnOrderWorkflow = createWorkflow(
order_id: input.order_id,
location_id: input.location_id,
metadata: input.metadata,
created_by: input.created_by,
},
])