Skip to content

Commit 1e64d6f

Browse files
committed
Remove UwS experimental notices
1 parent 8d489e3 commit 1e64d6f

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

packages/client/src/interceptors.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ export interface WorkflowStartUpdateOutput {
4444

4545
/**
4646
* Input for WorkflowClientInterceptor.startUpdateWithStart
47-
*
48-
* @experimental Update-with-Start is an experimental feature and may be subject to change.
4947
*/
5048
export interface WorkflowStartUpdateWithStartInput {
5149
readonly workflowType: string;
@@ -59,8 +57,6 @@ export interface WorkflowStartUpdateWithStartInput {
5957

6058
/**
6159
* Output for WorkflowClientInterceptor.startUpdateWithStart
62-
*
63-
* @experimental Update-with-Start is an experimental feature and may be subject to change.
6460
*/
6561
export interface WorkflowStartUpdateWithStartOutput {
6662
readonly workflowExecution: WorkflowExecution;
@@ -133,8 +129,6 @@ export interface WorkflowClientInterceptor {
133129
) => Promise<WorkflowStartUpdateOutput>;
134130
/**
135131
* Intercept a service call to startUpdateWithStart
136-
*
137-
* @experimental Update-with-Start is an experimental feature and may be subject to change.
138132
*/
139133
startUpdateWithStart?: (
140134
input: WorkflowStartUpdateWithStartInput,

packages/client/src/workflow-client.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -457,8 +457,6 @@ const withStartWorkflowOperationUsed: unique symbol = Symbol();
457457
/**
458458
* Define how to start a workflow when using {@link WorkflowClient.startUpdateWithStart} and
459459
* {@link WorkflowClient.executeUpdateWithStart}. `workflowIdConflictPolicy` is required in the options.
460-
*
461-
* @experimental Update-with-Start is an experimental feature and may be subject to change.
462460
*/
463461
export class WithStartWorkflowOperation<T extends Workflow> {
464462
private [withStartWorkflowOperationUsed]: boolean = false;
@@ -629,8 +627,6 @@ export class WorkflowClient extends BaseClient {
629627
* succeeds.
630628
*
631629
* @returns the Update result
632-
*
633-
* @experimental Update-with-Start is an experimental feature and may be subject to change.
634630
*/
635631
public async executeUpdateWithStart<T extends Workflow, Ret, Args extends any[]>(
636632
updateDef: UpdateDefinition<Ret, Args> | string,
@@ -663,8 +659,6 @@ export class WorkflowClient extends BaseClient {
663659
* {@link WithStartWorkflowOperation.workflowHandle}, whether or not the Update succeeds.
664660
*
665661
* @returns a {@link WorkflowUpdateHandle} to the started Update
666-
*
667-
* @experimental Update-with-Start is an experimental feature and may be subject to change.
668662
*/
669663
public async startUpdateWithStart<T extends Workflow, Ret, Args extends any[]>(
670664
updateDef: UpdateDefinition<Ret, Args> | string,

0 commit comments

Comments
 (0)