Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions typescript-sdk/.npmrc
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we please remove this?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes

Copy link
Author

@qz1543706741 qz1543706741 Sep 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we please remove this?

I have fixed on commit f067412, thank u merge it soon @tylerslaton

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @qz1543706741, we're reviewing now. Things look good, just running the tests.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmmirror.com
8 changes: 7 additions & 1 deletion typescript-sdk/packages/client/src/agent/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ import { convertToLegacyEvents } from "@/legacy/convert";
import { LegacyRuntimeProtocolEvent } from "@/legacy/types";
import { lastValueFrom } from "rxjs";
import { transformChunks } from "@/chunks";
import { AgentStateMutation, AgentSubscriber, runSubscribersWithMutation } from "./subscriber";
import {
AgentStateMutation,
AgentSubscriber,
runSubscribersWithMutation,
AgentSubscriberParams,
MaybePromise,
} from "./subscriber";

export interface RunAgentResult {
result: any;
Expand Down
1 change: 1 addition & 0 deletions typescript-sdk/packages/client/src/agent/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { AbstractAgent } from "./agent";
export { HttpAgent } from "./http";
export type { AgentConfig } from "./types";
export type { AgentStateMutation, AgentSubscriberParams, AgentSubscriber } from "./subscriber";