Skip to content

Commit e61727c

Browse files
dandavisonmjameswh
authored andcommitted
chore: Remove "experimental" notices from update APIs (#1590)
(cherry picked from commit 0cd8980)
1 parent 471be88 commit e61727c

File tree

4 files changed

+0
-10
lines changed

4 files changed

+0
-10
lines changed

packages/client/src/interceptors.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,6 @@ export interface WorkflowClientInterceptor {
100100
start?: (input: WorkflowStartInput, next: Next<this, 'start'>) => Promise<string /* runId */>;
101101
/**
102102
* Intercept a service call to updateWorkflowExecution
103-
*
104-
* @experimental Update is an experimental feature.
105103
*/
106104
startUpdate?: (
107105
input: WorkflowStartUpdateInput,

packages/client/src/workflow-client.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,6 @@ export interface WorkflowHandle<T extends Workflow = Workflow> extends BaseWorkf
125125
/**
126126
* Start an Update and wait for the result.
127127
*
128-
* @experimental Update is an experimental feature.
129-
*
130128
* @throws {@link WorkflowUpdateFailedError} if Update validation fails or if ApplicationFailure is thrown in the Update handler.
131129
* @throws {@link WorkflowUpdateRPCTimeoutOrCancelledError} if this Update call timed out or was cancelled. This doesn't
132130
* mean the update itself was timed out or cancelled.
@@ -152,8 +150,6 @@ export interface WorkflowHandle<T extends Workflow = Workflow> extends BaseWorkf
152150
* Start an Update and receive a handle to the Update. The Update validator (if present) is run
153151
* before the handle is returned.
154152
*
155-
* @experimental Update is an experimental feature.
156-
*
157153
* @throws {@link WorkflowUpdateFailedError} if Update validation fails.
158154
* @throws {@link WorkflowUpdateRPCTimeoutOrCancelledError} if this Update call timed out or was cancelled. This doesn't
159155
* mean the update itself was timed out or cancelled.

packages/workflow/src/interfaces.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,6 @@ export interface UnsafeWorkflowInfo {
194194

195195
/**
196196
* Information about a workflow update.
197-
*
198-
* @experimental
199197
*/
200198
export interface UpdateInfo {
201199
/**

packages/workflow/src/workflow.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -879,8 +879,6 @@ export function workflowInfo(): WorkflowInfo {
879879
*
880880
* @return Info for the current update handler the code calling this is executing
881881
* within if any.
882-
*
883-
* @experimental
884882
*/
885883
export function currentUpdateInfo(): UpdateInfo | undefined {
886884
assertInWorkflowContext('Workflow.currentUpdateInfo(...) may only be used from a Workflow Execution.');

0 commit comments

Comments
 (0)