Skip to content

Remove UwS experimental notices #1745

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions packages/client/src/interceptors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ export interface WorkflowStartUpdateOutput {

/**
* Input for WorkflowClientInterceptor.startUpdateWithStart
*
* @experimental Update-with-Start is an experimental feature and may be subject to change.
*/
export interface WorkflowStartUpdateWithStartInput {
readonly workflowType: string;
Expand All @@ -59,8 +57,6 @@ export interface WorkflowStartUpdateWithStartInput {

/**
* Output for WorkflowClientInterceptor.startUpdateWithStart
*
* @experimental Update-with-Start is an experimental feature and may be subject to change.
*/
export interface WorkflowStartUpdateWithStartOutput {
readonly workflowExecution: WorkflowExecution;
Expand Down Expand Up @@ -133,8 +129,6 @@ export interface WorkflowClientInterceptor {
) => Promise<WorkflowStartUpdateOutput>;
/**
* Intercept a service call to startUpdateWithStart
*
* @experimental Update-with-Start is an experimental feature and may be subject to change.
*/
startUpdateWithStart?: (
input: WorkflowStartUpdateWithStartInput,
Expand Down
6 changes: 0 additions & 6 deletions packages/client/src/workflow-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,6 @@ const withStartWorkflowOperationUsed: unique symbol = Symbol();
/**
* Define how to start a workflow when using {@link WorkflowClient.startUpdateWithStart} and
* {@link WorkflowClient.executeUpdateWithStart}. `workflowIdConflictPolicy` is required in the options.
*
* @experimental Update-with-Start is an experimental feature and may be subject to change.
*/
export class WithStartWorkflowOperation<T extends Workflow> {
private [withStartWorkflowOperationUsed]: boolean = false;
Expand Down Expand Up @@ -629,8 +627,6 @@ export class WorkflowClient extends BaseClient {
* succeeds.
*
* @returns the Update result
*
* @experimental Update-with-Start is an experimental feature and may be subject to change.
*/
public async executeUpdateWithStart<T extends Workflow, Ret, Args extends any[]>(
updateDef: UpdateDefinition<Ret, Args> | string,
Expand Down Expand Up @@ -663,8 +659,6 @@ export class WorkflowClient extends BaseClient {
* {@link WithStartWorkflowOperation.workflowHandle}, whether or not the Update succeeds.
*
* @returns a {@link WorkflowUpdateHandle} to the started Update
*
* @experimental Update-with-Start is an experimental feature and may be subject to change.
*/
public async startUpdateWithStart<T extends Workflow, Ret, Args extends any[]>(
updateDef: UpdateDefinition<Ret, Args> | string,
Expand Down
Loading