@@ -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 ,
0 commit comments