* chore: generate and update OAS for translations * support localization header * add locale to all store routes * fixes * small fix
37 lines
977 B
TypeScript
37 lines
977 B
TypeScript
/**
|
|
* @schema AdminLocaleListResponse
|
|
* type: object
|
|
* description: The list of locales with pagination details.
|
|
* x-schemaName: AdminLocaleListResponse
|
|
* required:
|
|
* - limit
|
|
* - offset
|
|
* - count
|
|
* - locales
|
|
* properties:
|
|
* limit:
|
|
* type: number
|
|
* title: limit
|
|
* description: The maximum number of locales returned.
|
|
* offset:
|
|
* type: number
|
|
* title: offset
|
|
* description: The number of locales skipped before retrieving the returned locales.
|
|
* count:
|
|
* type: number
|
|
* title: count
|
|
* description: The total number of locales matching the query.
|
|
* 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
|
|
* locales:
|
|
* type: array
|
|
* description: The list of locales.
|
|
* items:
|
|
* $ref: "#/components/schemas/AdminLocale"
|
|
*
|
|
*/
|
|
|