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 {
4444
4545/**
4646 * Input for WorkflowClientInterceptor.startUpdateWithStart
47- *
48- * @experimental Update-with-Start is an experimental feature and may be subject to change.
4947 */
5048export 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 */
6561export 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 ,
Original file line number Diff line number Diff 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 */
463461export 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 ,
You can’t perform that action at this time.
0 commit comments