-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docs): Updated API Reference (automated) (#10531)
* chore(docs): Generated API Reference (automated) * fixes --------- Co-authored-by: olivermrbl <[email protected]> Co-authored-by: Shahed Nasser <[email protected]>
- Loading branch information
1 parent
16192d9
commit a5ed061
Showing
24 changed files
with
1,235 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
www/apps/api-reference/specs/admin/components/schemas/StoreCalculatedPrice.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
type: object | ||
description: The shipping option's calculated price. | ||
x-schemaName: StoreCalculatedPrice | ||
required: | ||
- id | ||
- calculated_amount | ||
- original_amount | ||
- currency_code | ||
properties: | ||
id: | ||
type: string | ||
title: id | ||
description: The ID of the price set from which the price was selected. | ||
is_calculated_price_price_list: | ||
type: boolean | ||
title: is_calculated_price_price_list | ||
description: Whether the calculated price belongs to a price list. | ||
is_calculated_price_tax_inclusive: | ||
type: boolean | ||
title: is_calculated_price_tax_inclusive | ||
description: Whether the calculated price is tax inclusive. | ||
externalDocs: | ||
url: >- | ||
https://docs.medusajs.com/resources/commerce-modules/pricing/tax-inclusive-pricing | ||
calculated_amount: | ||
type: number | ||
title: calculated_amount | ||
description: >- | ||
The amount of the calculated price, or `null` if there isn't a calculated | ||
price. This is the amount shown to the customer. | ||
calculated_amount_with_tax: | ||
type: number | ||
title: calculated_amount_with_tax | ||
description: The `calculated_amount` with taxes applied. | ||
calculated_amount_without_tax: | ||
type: number | ||
title: calculated_amount_without_tax | ||
description: The `calculated_amount` without taxes applied. | ||
is_original_price_price_list: | ||
type: boolean | ||
title: is_original_price_price_list | ||
description: Whether the original price belongs to a price list. | ||
is_original_price_tax_inclusive: | ||
type: boolean | ||
title: is_original_price_tax_inclusive | ||
description: Whether the original price is tax inclusive. | ||
externalDocs: | ||
url: >- | ||
https://docs.medusajs.com/resources/commerce-modules/pricing/tax-inclusive-pricing | ||
original_amount: | ||
type: number | ||
title: original_amount | ||
description: >- | ||
The amount of the original price, or `null` if there isn't an original | ||
price. This amount is useful to compare with the `calculated_amount`, such | ||
as to check for discounted value. | ||
currency_code: | ||
type: string | ||
title: currency_code | ||
description: >- | ||
The currency code of the calculated price, or `null` if there isn't a | ||
calculated price. | ||
calculated_price: | ||
type: object | ||
description: The calculated price's details. | ||
required: | ||
- id | ||
- price_list_id | ||
- price_list_type | ||
- min_quantity | ||
- max_quantity | ||
properties: | ||
id: | ||
type: string | ||
title: id | ||
description: The ID of the price. | ||
price_list_id: | ||
type: string | ||
title: price_list_id | ||
description: The ID of the associated price list. | ||
price_list_type: | ||
type: string | ||
title: price_list_type | ||
description: The price list's type. For example, `sale` or `override`. | ||
min_quantity: | ||
type: number | ||
title: min_quantity | ||
description: The minimum quantity required in the cart for the price to apply. | ||
max_quantity: | ||
type: number | ||
title: max_quantity | ||
description: The maximum quantity required in the cart for the price to apply. | ||
original_price: | ||
type: object | ||
description: The origin price's details. | ||
required: | ||
- id | ||
- price_list_id | ||
- price_list_type | ||
- min_quantity | ||
- max_quantity | ||
properties: | ||
id: | ||
type: string | ||
title: id | ||
description: The ID of the price. | ||
price_list_id: | ||
type: string | ||
title: price_list_id | ||
description: The ID of the associated price list. | ||
price_list_type: | ||
type: string | ||
title: price_list_type | ||
description: The price list's type. For example, `sale` or `override`. | ||
min_quantity: | ||
type: number | ||
title: min_quantity | ||
description: The minimum quantity required in the cart for the price to apply. | ||
max_quantity: | ||
type: number | ||
title: max_quantity | ||
description: The maximum quantity required in the cart for the price to apply. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
www/apps/api-reference/specs/admin/components/schemas/StorePrice.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
type: object | ||
description: The price's details. | ||
x-schemaName: StorePrice | ||
required: | ||
- id | ||
- currency_code | ||
- amount | ||
- min_quantity | ||
- max_quantity | ||
properties: | ||
id: | ||
type: string | ||
title: id | ||
description: The price's ID. | ||
currency_code: | ||
type: string | ||
title: currency_code | ||
description: The price's ISO 2 currency code. | ||
example: usd | ||
amount: | ||
type: number | ||
title: amount | ||
description: The price's amount. | ||
min_quantity: | ||
type: number | ||
title: min_quantity | ||
description: The minimum quantity required in the cart for the price to apply. | ||
max_quantity: | ||
type: number | ||
title: max_quantity | ||
description: The maximum quantity required in the cart for the price to apply. | ||
price_rules: | ||
type: array | ||
description: The price's rules. | ||
items: | ||
$ref: ./StorePriceRule.yaml |
30 changes: 30 additions & 0 deletions
30
www/apps/api-reference/specs/admin/components/schemas/StorePriceRule.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
type: object | ||
description: The price rule's details. | ||
x-schemaName: StorePriceRule | ||
required: | ||
- id | ||
- attribute | ||
- operator | ||
- value | ||
properties: | ||
id: | ||
type: string | ||
title: id | ||
description: The price rule's ID. | ||
attribute: | ||
type: string | ||
title: attribute | ||
description: The price rule's attribute. | ||
operator: | ||
type: string | ||
description: The price rule's operator. | ||
enum: | ||
- gt | ||
- lt | ||
- eq | ||
- lte | ||
- gte | ||
value: | ||
type: string | ||
title: value | ||
description: The price rule's value. |
Oops, something went wrong.