(
oldSessionId: string,
newSessionId: string,
namespace: string,
options: { mergeAgentState?: boolean } = {}
)
| 668 | } |
| 669 | |
| 670 | async mergeSessionHistory( |
| 671 | oldSessionId: string, |
| 672 | newSessionId: string, |
| 673 | namespace: string, |
| 674 | options: { mergeAgentState?: boolean } = {} |
| 675 | ): Promise<void> { |
| 676 | await this.mergeSessionData(oldSessionId, newSessionId, namespace, { |
| 677 | deleteOldSession: false, |
| 678 | mergeAgentState: options.mergeAgentState ?? true |
| 679 | }) |
| 680 | } |
| 681 | |
| 682 | private async mergeSessionData( |
| 683 | oldSessionId: string, |
no test coverage detected