docs-util: support models implemented with DML in typedoc custom plugins (#7847)
- Support generating reference for models implemented with DML - Support resolving and generating mermaid diagram for relations The Currency Module was used an example so its reference is generated to showcase the work of this PR.
This commit is contained in:
@@ -17,7 +17,7 @@ This method creates fulfillment sets.
|
||||
### Example
|
||||
|
||||
```ts
|
||||
const fulfillmentSets = await fulfillmentModuleService.createFulfillmentSets(
|
||||
const fulfillmentSets = await fulfillmentModuleService.create(
|
||||
[
|
||||
{
|
||||
name: "Shipping",
|
||||
@@ -46,7 +46,7 @@ This method creates a fulfillment set.
|
||||
### Example
|
||||
|
||||
```ts
|
||||
const fulfillmentSet = await fulfillmentModuleService.createFulfillmentSets({
|
||||
const fulfillmentSet = await fulfillmentModuleService.create({
|
||||
name: "Shipping",
|
||||
type: "default",
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user