chore(docs): Updated API Reference (automated) (#14470)

* chore(docs): Generated API Reference (automated)

* fixes

* fix locale header

---------

Co-authored-by: olivermrbl <olivermrbl@users.noreply.github.com>
Co-authored-by: Shahed Nasser <shahednasser@gmail.com>
This commit is contained in:
github-actions[bot]
2026-01-06 19:00:02 +02:00
committed by GitHub
co-authored by olivermrbl Shahed Nasser
parent 76ff8dcca8
commit 1af99f8d5c
219 changed files with 1509 additions and 236 deletions
+37 -1
View File
@@ -294,7 +294,7 @@
"name": "auth.password_reset",
"parentName": "AuthWorkflowEvents",
"propertyName": "PASSWORD_RESET",
"payload": "```ts\n{\n entity_id, // The identifier of the user or customer. For example, an email address.\n actor_type, // The type of actor. For example, \"customer\", \"user\", or custom.\n token, // The generated token.\n}\n```",
"payload": "```ts\n{\n entity_id, // The identifier of the user or customer. For example, an email address.\n actor_type, // The type of actor. For example, \"customer\", \"user\", or custom.\n token, // The generated token.\n metadata, // Optional custom metadata passed from the request.\n}\n```",
"description": "Emitted when a reset password token is generated. You can listen to this event\nto send a reset password email to the user or customer, for example.",
"workflows": [
"generateResetPasswordTokenWorkflow"
@@ -712,6 +712,42 @@
"since": "2.10.0",
"deprecated": false
},
{
"name": "shipping-option.created",
"parentName": "ShippingOptionWorkflowEvents",
"propertyName": "CREATED",
"payload": "```ts\n{\n id, // The ID of the shipping option\n}\n```",
"description": "Emitted when shipping options are created.",
"workflows": [
"createShippingOptionsWorkflow"
],
"since": "2.12.4",
"deprecated": false
},
{
"name": "shipping-option.updated",
"parentName": "ShippingOptionWorkflowEvents",
"propertyName": "UPDATED",
"payload": "```ts\n{\n id, // The ID of the shipping option\n}\n```",
"description": "Emitted when shipping options are updated.",
"workflows": [
"updateShippingOptionsWorkflow"
],
"since": "2.12.4",
"deprecated": false
},
{
"name": "shipping-option.deleted",
"parentName": "ShippingOptionWorkflowEvents",
"propertyName": "DELETED",
"payload": "```ts\n{\n id, // The ID of the shipping option\n}\n```",
"description": "Emitted when shipping options are deleted.",
"workflows": [
"deleteShippingOptionsWorkflow"
],
"since": "2.12.4",
"deprecated": false
},
{
"name": "payment.captured",
"parentName": "PaymentEvents",