chore: generate and update OAS for translations (#14281)
* chore: generate and update OAS for translations * support localization header * add locale to all store routes * fixes * small fix
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
/**
|
||||
* @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"
|
||||
*
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user