@@ -2012,6 +2012,7 @@ paths:
20122012 - TASK_QUEUE_KIND_UNSPECIFIED
20132013 - TASK_QUEUE_KIND_NORMAL
20142014 - TASK_QUEUE_KIND_STICKY
2015+ - TASK_QUEUE_KIND_WORKER_COMMANDS
20152016 type: string
20162017 format: enum
20172018 - name: taskQueue.normalName
@@ -6678,6 +6679,7 @@ paths:
66786679 - TASK_QUEUE_KIND_UNSPECIFIED
66796680 - TASK_QUEUE_KIND_NORMAL
66806681 - TASK_QUEUE_KIND_STICKY
6682+ - TASK_QUEUE_KIND_WORKER_COMMANDS
66816683 type: string
66826684 format: enum
66836685 - name: taskQueue.normalName
@@ -12588,18 +12590,16 @@ components:
1258812590 properties:
1258912591 attachRequestId:
1259012592 type: boolean
12591- description: Attaches the request ID to the running workflow .
12593+ description: Attaches the request ID to the running execution .
1259212594 attachCompletionCallbacks:
1259312595 type: boolean
12594- description: Attaches the completion callbacks to the running workflow .
12596+ description: Attaches the completion callbacks to the running execution .
1259512597 attachLinks:
1259612598 type: boolean
12597- description: Attaches the links to the WorkflowExecutionOptionsUpdatedEvent history event .
12599+ description: Attaches the links to the running execution .
1259812600 description: |-
12599- When StartWorkflowExecution uses the conflict policy WORKFLOW_ID_CONFLICT_POLICY_USE_EXISTING and
12600- there is already an existing running workflow, OnConflictOptions defines actions to be taken on
12601- the existing running workflow. In this case, it will create a WorkflowExecutionOptionsUpdatedEvent
12602- history event in the running workflow with the changes requested in this object.
12601+ When starting an execution with a conflict policy that uses an existing execution and there is already an existing
12602+ running execution, OnConflictOptions defines actions to be taken on the existing running execution.
1260312603 Outcome:
1260412604 type: object
1260512605 properties:
@@ -15109,6 +15109,13 @@ components:
1510915109 started:
1511015110 type: boolean
1511115111 description: If true, a new workflow was started.
15112+ signalLink:
15113+ allOf:
15114+ - $ref: '#/components/schemas/Link'
15115+ description: |-
15116+ Link to be associated with the WorkflowExecutionSignaled event.
15117+ Added on the response to propagate the backlink.
15118+ Available from Temporal server 1.31 and up.
1511215119 SignalWorkflowExecutionRequest:
1511315120 type: object
1511415121 properties:
@@ -15149,7 +15156,14 @@ components:
1514915156 - temporal.api.workflow.v1.PostResetOperation.SignalWorkflow.
1515015157 SignalWorkflowExecutionResponse:
1515115158 type: object
15152- properties: {}
15159+ properties:
15160+ link:
15161+ allOf:
15162+ - $ref: '#/components/schemas/Link'
15163+ description: |-
15164+ Link to be associated with the WorkflowExecutionSignaled event.
15165+ Added on the response to propagate the backlink.
15166+ Available from Temporal server 1.31 and up.
1515315167 StartActivityExecutionRequest:
1515415168 type: object
1515515169 properties:
@@ -15267,6 +15281,10 @@ components:
1526715281 description: |-
1526815282 Links to be associated with the activity. Callbacks may also have associated links;
1526915283 links already included with a callback should not be duplicated here.
15284+ onConflictOptions:
15285+ allOf:
15286+ - $ref: '#/components/schemas/OnConflictOptions'
15287+ description: Options for handling conflicts when using ACTIVITY_ID_CONFLICT_POLICY_USE_EXISTING.
1527015288 StartActivityExecutionResponse:
1527115289 type: object
1527215290 properties:
@@ -15731,6 +15749,7 @@ components:
1573115749 - TASK_QUEUE_KIND_UNSPECIFIED
1573215750 - TASK_QUEUE_KIND_NORMAL
1573315751 - TASK_QUEUE_KIND_STICKY
15752+ - TASK_QUEUE_KIND_WORKER_COMMANDS
1573415753 type: string
1573515754 description: 'Default: TASK_QUEUE_KIND_NORMAL.'
1573615755 format: enum
@@ -18149,6 +18168,11 @@ components:
1814918168 allOf:
1815018169 - $ref: '#/components/schemas/WorkflowExecution'
1815118170 description: When signal origin is a workflow execution, this field is set.
18171+ requestId:
18172+ type: string
18173+ description: |-
18174+ The request ID of the Signal request, used by the server to attach this to
18175+ the correct Event ID when generating link.
1815218176 WorkflowExecutionStartedEventAttributes:
1815318177 type: object
1815418178 properties:
@@ -18389,6 +18413,16 @@ components:
1838918413
1839018414 Used internally by the server during continue-as-new and retry.
1839118415 Should not be read or interpreted by SDKs.
18416+ timeSkippingConfig:
18417+ allOf:
18418+ - $ref: '#/components/schemas/TimeSkippingConfig'
18419+ description: |-
18420+ Initial time-skipping configuration for this workflow execution, recorded at start time.
18421+ This may have been set explicitly via the start workflow request, or propagated from a
18422+ parent/previous execution.
18423+
18424+ The configuration may be updated after start via UpdateWorkflowExecutionOptions, which
18425+ will be reflected in the WorkflowExecutionOptionsUpdatedEvent.
1839218426 description: Always the first event in workflow history
1839318427 WorkflowExecutionTerminatedEventAttributes:
1839418428 type: object
0 commit comments