docs-util: fixes to OAS generator + generate OAS (#10867)
This commit is contained in:
+6
-1
@@ -26,7 +26,12 @@
|
||||
* schema:
|
||||
* type: object
|
||||
* title: input
|
||||
* description: The input data necessary for authentication. For example, for email-pass authentication, pass `email` and `password` properties.
|
||||
* description: >
|
||||
* The input data necessary for authentication.
|
||||
*
|
||||
* For example, for email-pass authentication, pass `email` and `password` properties.
|
||||
*
|
||||
* For the Google and GitHub authentication providers, you can pass `callback_url` to indicate the URL in the frontend that the user should be redirected to after completing their authentication. This will override the provider's `callbackUrl` configurations in `medusa-config.ts`.
|
||||
* x-codeSamples:
|
||||
* - lang: Shell
|
||||
* label: EmailPass Provider
|
||||
|
||||
+6
-1
@@ -26,7 +26,12 @@
|
||||
* schema:
|
||||
* type: object
|
||||
* title: input
|
||||
* description: The input data necessary for authentication. For example, for email-pass authentication, pass `email` and `password` properties.
|
||||
* description: >
|
||||
* The input data necessary for authentication.
|
||||
*
|
||||
* For example, for email-pass authentication, pass `email` and `password` properties.
|
||||
*
|
||||
* For the Google and GitHub authentication providers, you can pass `callback_url` to indicate the URL in the frontend that the customer should be redirected to after completing their authentication. This will override the provider's `callbackUrl` configurations in `medusa-config.ts`.
|
||||
* x-codeSamples:
|
||||
* - lang: Shell
|
||||
* label: EmailPass Provider
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
* - payment_collections
|
||||
* - items
|
||||
* - shipping_methods
|
||||
* - status
|
||||
* - currency_code
|
||||
* - id
|
||||
* - version
|
||||
@@ -237,6 +238,10 @@
|
||||
* type: number
|
||||
* title: original_shipping_tax_total
|
||||
* description: The tax total of the order's shipping excluding promotions.
|
||||
* status:
|
||||
* type: string
|
||||
* title: status
|
||||
* description: The order's status.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
* required:
|
||||
* - return_requested_total
|
||||
* - order_change
|
||||
* - status
|
||||
* - currency_code
|
||||
* - id
|
||||
* - version
|
||||
@@ -617,6 +618,10 @@
|
||||
* $ref: "#/components/schemas/AdminCustomer"
|
||||
* sales_channel:
|
||||
* $ref: "#/components/schemas/AdminSalesChannel"
|
||||
* status:
|
||||
* type: string
|
||||
* title: status
|
||||
* description: The order's status.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
* - sales_channel_id
|
||||
* - email
|
||||
* - currency_code
|
||||
* - status
|
||||
* - items
|
||||
* - shipping_methods
|
||||
* - payment_status
|
||||
@@ -232,6 +233,10 @@
|
||||
* type: number
|
||||
* title: original_shipping_tax_total
|
||||
* description: The tax total of the order's shipping excluding promotions.
|
||||
* status:
|
||||
* type: string
|
||||
* title: status
|
||||
* description: The order's status.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
* required:
|
||||
* - items
|
||||
* - shipping_methods
|
||||
* - status
|
||||
* - currency_code
|
||||
* - id
|
||||
* - region_id
|
||||
@@ -230,6 +231,10 @@
|
||||
* description: The order's transactions.
|
||||
* items:
|
||||
* $ref: "#/components/schemas/BaseOrderTransaction"
|
||||
* status:
|
||||
* type: string
|
||||
* title: status
|
||||
* description: The order's status.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user