Shahed Nasser
5fe8e2ec04
docs: fix links in submenu navigation ( #12220 )
2025-04-17 18:06:46 +03:00
Shahed Nasser
c9fd0422c8
docs: document conditional shipping option prices + expand on price rules ( #12217 )
...
* docs: document conditional shipping option prices + expand on price rules
* fix errors
2025-04-17 17:52:10 +03:00
Carlos R. L. Rodrigues
e180253d60
feat(orchestration): skip on permanent failure ( #12027 )
...
What:
- Added step config `skipOnPermanentFailure`. Skip all the next steps when the current step fails. If a string is used, the workflow will resume from the given step.
- Fix `continueOnPermanentFailure` to continue the execution of the flow when a step fails.
```ts
createWorkflow("some-workflow", () => {
errorStep().config({
skipOnPermanentFailure: true,
})
nextStep1() // skipped
nextStep2() // skipped
})
createWorkflow("some-workflow", () => {
errorStep().config({
skipOnPermanentFailure: "resume-from-here",
});
nextStep1(); // skipped
nextStep2(); // skipped
nextStep3().config({ name: "resume-from-here" }); // executed
nextStep4(); // executed
});
```
2025-04-17 12:49:58 +00:00
Shahed Nasser
9d27c0c194
docs: add new troubleshooting guides for Query and middlewares ( #12214 )
2025-04-17 14:18:07 +03:00
Shahed Nasser
eb73bdb478
docs: rename Architectural Modules to Infrastructure Modules ( #12212 )
...
* docs: rename Architectural Modules to Infrastructure Modules
* generate again
2025-04-17 13:20:43 +03:00
Shahed Nasser
9abcf7a83a
docs: update introduction and homepage following Framework changes ( #12211 )
2025-04-17 11:40:56 +03:00
Shahed Nasser
42262d41a1
docs: capitalize use of Framework across docs ( #12207 )
...
* docs: capitalize use of Framework across docs
* generate llm
2025-04-17 10:40:26 +03:00
Shahed Nasser
b182bbb9a9
docs: add framework to navbar ( #12206 )
...
* support link submenu
* updated navbar
* small fix
2025-04-16 18:34:14 +03:00
Shahed Nasser
757ba6cd7f
docs: add framework page ( #12162 )
...
* initial draft
* finalize page
* fix vale error
* changes to intro
* small fix
* added features list
2025-04-16 17:58:27 +03:00
Shahed Nasser
6c59d3fe6f
docs: hide colon when a note's title has a punctuation ( #12205 )
2025-04-16 17:23:10 +03:00
Shahed Nasser
d98b560f26
docs: add a note to loyalty points guide ( #12201 )
2025-04-16 14:39:00 +03:00
Shahed Nasser
fe48f825f8
docs: add loyalty points guide ( #12130 )
...
* docs: add loyalty points guide
* remove og
2025-04-16 10:58:27 +03:00
Shahed Nasser
a12b5f7456
docs: changes to plugins page ( #12190 )
...
* docs: changes to plugins page
* text fix
2025-04-15 10:09:04 +03:00
Rohan
a29214c44d
Update page.mdx ( #12188 )
...
while returning CartContext.Provider component, unsetCard was missing in the value object
2025-04-15 10:08:49 +03:00
Shahed Nasser
734f4fecbc
docs: generate JS SDK reference with fixes ( #12161 )
2025-04-11 16:42:09 +03:00
Shahed Nasser
cd66cdd2bb
docs: generate OAS manually for 2.7.0 ( #12158 )
...
* original changes
* changes
* fixes for delete operations
* generate oas
2025-04-11 16:41:39 +03:00
Shahed Nasser
f8023f419e
docs: more updates after 2.7.0 update ( #12156 )
...
* docs: more updates after 2.7.0 update
* add versions
* small fix
* add plugin keywords
* change to text
2025-04-11 15:55:52 +03:00
github-actions[bot]
94e98190ff
chore(docs): Generated References (automated) ( #12154 )
...
Generated the following references:
- `api_key`
- `auth`
- `cart`
- `cart_models`
- `core_flows`
- `currency`
- `customer`
- `event`
- `file_service`
- `fulfillment`
- `fulfillment_provider`
- `inventory_next`
- `js_sdk`
- `locking`
- `medusa`
- `modules`
- `modules_sdk`
- `notification_service`
- `order`
- `payment`
- `payment_provider`
- `pricing`
- `product`
- `promotion`
- `region`
- `sales_channel`
- `stock_location_next`
- `store`
- `tax`
- `types`
- `user`
- `utils`
- `workflows`
Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com >
Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com >
2025-04-11 11:15:08 +00:00
valerioXplo
df5d410be2
docs: fixed POST request in code snippet for quotation acceptance ( #11983 )
...
docs: fixed POST request in code snippet for quotation acceptance
2025-04-11 13:42:11 +03:00
Sai-Santhan-Dodda
7ae02194f4
docs: fix path in algolia guide ( #12141 )
...
Converted "src/api/store/search/route.ts" to "src/api/store/products/search/route.ts"
2025-04-11 13:40:56 +03:00
Shahed Nasser
4283fa37b7
docs: fix schema of product category ( #12145 )
2025-04-11 12:48:53 +03:00
github-actions[bot]
46952e9fa5
chore(docs): Generated DML JSON files (automated) ( #12153 )
...
This PR holds all generated DML JSON files for the upcoming release.
Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com >
Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com >
2025-04-11 09:21:20 +00:00
github-actions[bot]
e0bbe85f18
chore(docs): Update version in documentation (automated) ( #12152 )
...
Co-authored-by: olivermrbl <olivermrbl@users.noreply.github.com >
2025-04-11 12:02:02 +03:00
Shahed Nasser
18dc3cf9c9
docs: changes for next release ( #12098 )
...
* docs: changes for next release
* generate
* generate
2025-04-11 11:58:19 +03:00
Shahed Nasser
78ee2e3063
docs: remove start-cluster command + update start options ( #12116 )
2025-04-08 15:47:10 +03:00
Muhammad Abdullah Haider
65b5beb59c
Fixed typo ( #12107 )
2025-04-07 16:47:59 +00:00
Shahed Nasser
6c6c3dec9f
docs: added missing information on plugin migrations ( #12108 )
2025-04-07 18:12:25 +03:00
Shahed Nasser
cc71dc2620
docs: update bulk editor user guide + add redirect from old v1 next js ( #12104 )
...
* docs: update bulk editor user guide + add redirect from old v1 next js
* update page titles
2025-04-07 17:27:45 +03:00
Shahed Nasser
9ece840027
docs: fixes to content and UI ( #12101 )
2025-04-07 16:10:12 +03:00
Shahed Nasser
fde85888bd
docs-util: handle workflows with intersection hook types ( #12099 )
2025-04-07 14:00:08 +03:00
Shahed Nasser
5a1f2db542
docs: added a routes summary section in API reference ( #12035 )
...
* docs: added routes summary
* added sorting
2025-03-28 19:29:57 +02:00
Shahed Nasser
9c90a39f1c
docs: sort API reference sidebar items and sections ( #12032 )
2025-03-28 17:19:28 +02:00
Shahed Nasser
da52501518
docs: small fix to abandoned cart guide ( #12029 )
2025-03-28 14:56:41 +02:00
Shahed Nasser
3fa19ae4f1
docs: updates and improvements to JS SDK guides ( #12026 )
2025-03-28 12:45:45 +02:00
Shahed Nasser
95230ef670
docs: migrate magento to medusa guide ( #11418 )
...
* initial
* initial draft
* finished
* small change to intro
* make card description shorter
* fix plugin name
* updates
* fixes
* generate llms
* updates
2025-03-28 09:12:53 +02:00
Shahed Nasser
82da3c97a5
docs: added algolia guide ( #11971 )
...
* initial
* finished changes
* small title change
* improve title
* add cover
2025-03-27 20:22:40 +02:00
Shahed Nasser
532780897b
docs: added tutorial for abandoned cart ( #11917 )
...
* docs: added tutorial for abandoned cart
* small fixes
* add cover image
2025-03-27 19:59:29 +02:00
Shahed Nasser
e593d44cc9
docs: add JS SDK snippets in API reference introduction sections ( #12018 )
2025-03-27 19:36:39 +02:00
Shahed Nasser
bf882b5aff
docs: update storefront development guides to use JS SDK [2] ( #12015 )
2025-03-27 17:14:22 +02:00
Shahed Nasser
e950e2b2d2
docs: update storefront development guides to use JS SDK [1] ( #11991 )
...
* docs: update storefront development guides to use JS SDK [1]
* build and lint fixes
* fix links
* fix links
2025-03-26 16:20:21 +02:00
Shahed Nasser
82d774b395
docs-util: add a prefix for JS SDK examples in OAS ( #11989 )
2025-03-26 13:28:23 +02:00
Shahed Nasser
2df3c5a7a1
docs: improve page titles ( #11987 )
2025-03-26 11:39:22 +02:00
Shahed Nasser
c96560ccb7
docs: remove custom searching mechanism ( #11984 )
...
* docs: remove custom searching mechanism
* remove grouping
* changes to grouping
* small title change
* update resources sitemap
2025-03-26 10:56:02 +02:00
Shahed Nasser
87b75ea959
docs: add sitemap to API reference ( #11985 )
...
* docs: add sitemap to API reference
* remove duplicate sitemap
* update sitemap
2025-03-26 08:52:44 +02:00
Shahed Nasser
cbd1786ca5
docs: small improvements to the general deployment guide ( #11978 )
2025-03-25 19:25:53 +02:00
Shahed Nasser
178e034561
docs-util: sort examples to show JS SDK first ( #11986 )
2025-03-25 19:25:34 +02:00
Shahed Nasser
80e320e094
docs: clarify limitations in query brands guide ( #11980 )
2025-03-25 16:50:00 +02:00
Shahed Nasser
c8389834a1
docs: fixes to quotes management guide ( #11981 )
...
* docs: fix request snippet in quote management guide
* fix hook
2025-03-25 16:49:46 +02:00
Shahed Nasser
83e063229b
docs-utils: support routes that include global variables ( #11976 )
...
* docs-util: support urls that have variable names
* re-generate examples
* disable removing js sdk examples and replace with warning
2025-03-25 15:36:00 +02:00
Shahed Nasser
8a302130b3
docs-util: add JS SDK examples to generated OAS ( #11935 )
2025-03-25 11:11:48 +02:00