@@ -133,7 +133,7 @@ Defines the workflow's reusable components.
133133| authentications | [ ` map[string, authentication] ` ] ( #authentication ) | ` no ` | A name/value mapping of the workflow's reusable authentication policies. |
134134| catalogs | [ ` map[string, catalog] ` ] ( #catalog ) | ` no ` | A name/value mapping of the workflow's reusable resource catalogs. |
135135| errors | [ ` map[string, error] ` ] ( #error ) | ` no ` | A name/value mapping of the workflow's reusable errors. |
136- | extensions | [ ` map[string, extension]` ] ( #extension ) | ` no ` | A list of the workflow's reusable extensions. |
136+ | extensions | [ ` extension[ ] ` ] ( #extension ) | ` no ` | A list of the workflow's reusable extensions. |
137137| functions | [ ` map[string, task] ` ] ( #task ) | ` no ` | A name/value mapping of the workflow's reusable tasks. |
138138| retries | [ ` map[string, retryPolicy] ` ] ( #retry ) | ` no ` | A name/value mapping of the workflow's reusable retry policies. |
139139| secrets | ` string[] ` | ` no ` | A list containing the workflow's secrets. |
@@ -2006,8 +2006,8 @@ Extensions enable the execution of tasks prior to those they extend, offering th
20062006|----------|:----:|:--------:|-------------|
20072007| extend | `string` | `yes` | The type of task to extend<br>Supported values are : ` call` , `composite`, `emit`, `extension`, `for`, `listen`, `raise`, `run`, `set`, `switch`, `try`, `wait` and `all` |
20082008| when | `string` | `no` | A runtime expression used to determine whether or not the extension should apply in the specified context |
2009- | before | [`map[string, task]`](#task) | `no` | The task to execute, if any, before the extended task |
2010- | after | [`map[string, task]`](#task) | `no` | The task to execute, if any, after the extended task |
2009+ | before | [`task[ ]`](#task) | `no` | The list of tasks to execute, if any, before the extended task |
2010+ | after | [`task[ ]`](#task) | `no` | The list of tasks to execute, if any, after the extended task |
20112011
20122012# ### Examples
20132013
0 commit comments