Skip to content

Packages  ›  trotsky  ›  StepThreadUnmute

StepThreadUnmute class

Represents a step that performs a thread unmute operation using the Bluesky API. Unmuting a thread re-enables notifications for that thread.

Signature:

typescript
export declare class StepThreadUnmute<P = StepPost, C extends StepPostOutput = StepPostOutput, O = null> extends Step<P, C, O>

Extends: Step<P, C, O>

Example

Unmute a specific thread:

ts
await Trotsky.init(agent)
  .post("at://did:plc:example/app.bsky.feed.post/postid")
  .threadUnmute()
  .run()

Methods

Method

Modifiers

Description

apply()

Applies the step by performing a thread unmute operation. Requires the context to provide the root post URI.