Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
37 lines
982 B
TypeScript
37 lines
982 B
TypeScript
/**
|
|
* @schema AdminCollectionListResponse
|
|
* type: object
|
|
* description: The paginated list of product collections.
|
|
* x-schemaName: AdminCollectionListResponse
|
|
* required:
|
|
* - limit
|
|
* - offset
|
|
* - count
|
|
* - collections
|
|
* properties:
|
|
* limit:
|
|
* type: number
|
|
* title: limit
|
|
* description: The maximum number of items returned.
|
|
* offset:
|
|
* type: number
|
|
* title: offset
|
|
* description: The number of items skipped before retrieving the returned results.
|
|
* count:
|
|
* type: number
|
|
* title: count
|
|
* description: The total number of items.
|
|
* collections:
|
|
* type: array
|
|
* description: The list of product collections.
|
|
* items:
|
|
* $ref: "#/components/schemas/AdminCollection"
|
|
* estimate_count:
|
|
* type: number
|
|
* title: estimate_count
|
|
* description: The estimated count retrieved from the PostgreSQL query planner, which may be inaccurate.
|
|
* x-featureFlag: index_engine
|
|
*
|
|
*/
|
|
|