File tree Expand file tree Collapse file tree 4 files changed +0
-10
lines changed Expand file tree Collapse file tree 4 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,6 @@ export interface WorkflowClientInterceptor {
100
100
start ?: ( input : WorkflowStartInput , next : Next < this, 'start' > ) => Promise < string /* runId */ > ;
101
101
/**
102
102
* Intercept a service call to updateWorkflowExecution
103
- *
104
- * @experimental Update is an experimental feature.
105
103
*/
106
104
startUpdate ?: (
107
105
input : WorkflowStartUpdateInput ,
Original file line number Diff line number Diff line change @@ -125,8 +125,6 @@ export interface WorkflowHandle<T extends Workflow = Workflow> extends BaseWorkf
125
125
/**
126
126
* Start an Update and wait for the result.
127
127
*
128
- * @experimental Update is an experimental feature.
129
- *
130
128
* @throws {@link WorkflowUpdateFailedError } if Update validation fails or if ApplicationFailure is thrown in the Update handler.
131
129
* @throws {@link WorkflowUpdateRPCTimeoutOrCancelledError } if this Update call timed out or was cancelled. This doesn't
132
130
* mean the update itself was timed out or cancelled.
@@ -152,8 +150,6 @@ export interface WorkflowHandle<T extends Workflow = Workflow> extends BaseWorkf
152
150
* Start an Update and receive a handle to the Update. The Update validator (if present) is run
153
151
* before the handle is returned.
154
152
*
155
- * @experimental Update is an experimental feature.
156
- *
157
153
* @throws {@link WorkflowUpdateFailedError } if Update validation fails.
158
154
* @throws {@link WorkflowUpdateRPCTimeoutOrCancelledError } if this Update call timed out or was cancelled. This doesn't
159
155
* mean the update itself was timed out or cancelled.
Original file line number Diff line number Diff line change @@ -194,8 +194,6 @@ export interface UnsafeWorkflowInfo {
194
194
195
195
/**
196
196
* Information about a workflow update.
197
- *
198
- * @experimental
199
197
*/
200
198
export interface UpdateInfo {
201
199
/**
Original file line number Diff line number Diff line change @@ -879,8 +879,6 @@ export function workflowInfo(): WorkflowInfo {
879
879
*
880
880
* @return Info for the current update handler the code calling this is executing
881
881
* within if any.
882
- *
883
- * @experimental
884
882
*/
885
883
export function currentUpdateInfo ( ) : UpdateInfo | undefined {
886
884
assertInWorkflowContext ( 'Workflow.currentUpdateInfo(...) may only be used from a Workflow Execution.' ) ;
You can’t perform that action at this time.
0 commit comments