fix(medusa-fulfillment-manual): Missing retrieveDocuments override (#4221)

* adds missing retrieveDocuments override

* Create short-numbers-cheer.md

---------

Co-authored-by: Oliver Windall Juhl <59018053+olivermrbl@users.noreply.github.com>
This commit is contained in:
Josip Matić
2023-06-05 10:03:37 +02:00
committed by GitHub
parent b23207ef88
commit 109096465d
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
---
"medusa-fulfillment-manual": patch
"@medusajs/medusa": patch
---
fix(medusa-fulfillment-manual): Missing retrieveDocuments override

View File

@@ -53,6 +53,10 @@ class ManualFulfillmentService extends FulfillmentService {
cancelFulfillment() {
return Promise.resolve({})
}
retrieveDocuments() {
return Promise.resolve([])
}
}
export default ManualFulfillmentService