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:
Shahed Nasser
2025-12-16 15:52:33 +02:00
committed by GitHub
parent 6815b3d7db
commit 53cdbaa069
75 changed files with 2322 additions and 6 deletions
+39
View File
@@ -735,5 +735,44 @@
"refundPaymentWorkflow"
],
"deprecated": false
},
{
"name": "translation.created",
"parentName": "TranslationWorkflowEvents",
"propertyName": "CREATED",
"payload": "```ts\n{\n id, // The ID of the translation\n}\n```",
"description": "Emitted when translations are created.",
"workflows": [
"createTranslationsWorkflow",
"batchTranslationsWorkflow"
],
"since": "2.12.3",
"deprecated": false
},
{
"name": "translation.updated",
"parentName": "TranslationWorkflowEvents",
"propertyName": "UPDATED",
"payload": "```ts\n{\n id, // The ID of the translation\n}\n```",
"description": "Emitted when translations are updated.",
"workflows": [
"updateTranslationsWorkflow",
"batchTranslationsWorkflow"
],
"since": "2.12.3",
"deprecated": false
},
{
"name": "translation.deleted",
"parentName": "TranslationWorkflowEvents",
"propertyName": "DELETED",
"payload": "```ts\n{\n id, // The ID of the translation\n}\n```",
"description": "Emitted when translations are deleted.",
"workflows": [
"deleteTranslationsWorkflow",
"batchTranslationsWorkflow"
],
"since": "2.12.3",
"deprecated": false
}
]