docs: added mark fulfillment delivered step in digital products recipe (#12290)

* docs: add fulfillment delivered step to digital products recipe

* generate llms

* small change
This commit is contained in:
Shahed Nasser
2025-04-24 19:08:05 +03:00
committed by GitHub
parent 35d7c143ea
commit 13071172b3
15 changed files with 15379 additions and 15305 deletions
@@ -71,17 +71,17 @@ class BlogModuleService extends MedusaService({
): Promise<any> {
const existingPost = await this.postRepository_.find({
where: {
id
}
id,
},
})
const posts = await this.postRepository_.update([
{
entity: existingPost[0],
update: {
title: "My Post Updated"
}
}
title: "My Post Updated",
},
},
])
return posts