docs: fix OAS generator + generate OAS (#11584)
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
* @schema AdminDraftOrderListResponse
|
||||
* type: object
|
||||
* description: The list of draft orders with pagination fields.
|
||||
* x-schemaName: AdminDraftOrderListResponse
|
||||
* required:
|
||||
* - limit
|
||||
* - offset
|
||||
* - count
|
||||
* - draft_orders
|
||||
* properties:
|
||||
* limit:
|
||||
* type: number
|
||||
* title: limit
|
||||
* description: The maximum number of items retrieved.
|
||||
* offset:
|
||||
* type: number
|
||||
* title: offset
|
||||
* description: The number of items skipped before retrieving the returned items.
|
||||
* count:
|
||||
* type: number
|
||||
* title: count
|
||||
* description: The total count of items available.
|
||||
* draft_orders:
|
||||
* type: array
|
||||
* description: The list of draft orders.
|
||||
* items:
|
||||
* $ref: "#/components/schemas/AdminDraftOrder"
|
||||
*
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user