docs: fix OAS generator + generate OAS (#11584)

This commit is contained in:
Shahed Nasser
2025-02-24 15:30:38 +02:00
committed by GitHub
parent 41f070be9a
commit be566ca6fb
44 changed files with 10904 additions and 8753 deletions
@@ -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"
*
*/