File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ export interface WorkflowStartUpdateOutput {
44
44
45
45
/**
46
46
* Input for WorkflowClientInterceptor.startUpdateWithStart
47
- *
48
- * @experimental Update-with-Start is an experimental feature and may be subject to change.
49
47
*/
50
48
export interface WorkflowStartUpdateWithStartInput {
51
49
readonly workflowType : string ;
@@ -59,8 +57,6 @@ export interface WorkflowStartUpdateWithStartInput {
59
57
60
58
/**
61
59
* Output for WorkflowClientInterceptor.startUpdateWithStart
62
- *
63
- * @experimental Update-with-Start is an experimental feature and may be subject to change.
64
60
*/
65
61
export interface WorkflowStartUpdateWithStartOutput {
66
62
readonly workflowExecution : WorkflowExecution ;
@@ -133,8 +129,6 @@ export interface WorkflowClientInterceptor {
133
129
) => Promise < WorkflowStartUpdateOutput > ;
134
130
/**
135
131
* Intercept a service call to startUpdateWithStart
136
- *
137
- * @experimental Update-with-Start is an experimental feature and may be subject to change.
138
132
*/
139
133
startUpdateWithStart ?: (
140
134
input : WorkflowStartUpdateWithStartInput ,
Original file line number Diff line number Diff line change @@ -457,8 +457,6 @@ const withStartWorkflowOperationUsed: unique symbol = Symbol();
457
457
/**
458
458
* Define how to start a workflow when using {@link WorkflowClient.startUpdateWithStart} and
459
459
* {@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.
462
460
*/
463
461
export class WithStartWorkflowOperation < T extends Workflow > {
464
462
private [ withStartWorkflowOperationUsed ] : boolean = false ;
@@ -629,8 +627,6 @@ export class WorkflowClient extends BaseClient {
629
627
* succeeds.
630
628
*
631
629
* @returns the Update result
632
- *
633
- * @experimental Update-with-Start is an experimental feature and may be subject to change.
634
630
*/
635
631
public async executeUpdateWithStart < T extends Workflow , Ret , Args extends any [ ] > (
636
632
updateDef : UpdateDefinition < Ret , Args > | string ,
@@ -663,8 +659,6 @@ export class WorkflowClient extends BaseClient {
663
659
* {@link WithStartWorkflowOperation.workflowHandle}, whether or not the Update succeeds.
664
660
*
665
661
* @returns a {@link WorkflowUpdateHandle} to the started Update
666
- *
667
- * @experimental Update-with-Start is an experimental feature and may be subject to change.
668
662
*/
669
663
public async startUpdateWithStart < T extends Workflow , Ret , Args extends any [ ] > (
670
664
updateDef : UpdateDefinition < Ret , Args > | string ,
You can’t perform that action at this time.
0 commit comments