fix: update stale @agent-orchestrator/core imports to @composio/ao-core

Package was renamed in PR #32 but these two files were missed.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Prateek 2026-02-15 04:56:36 +05:30
parent 5dd554387b
commit c54ad4d63c
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import type { Session, ProjectConfig } from "@agent-orchestrator/core";
import type { Session, ProjectConfig } from "@composio/ao-core";
import { NextResponse } from "next/server";
import { getServices, getSCM, getTracker } from "@/lib/services";
import { sessionToDashboard, enrichSessionPR, enrichSessionIssue, computeStats } from "@/lib/serialize";

View File

@ -3,7 +3,7 @@
*/
import { describe, it, expect, beforeEach, vi } from "vitest";
import type { Session, PRInfo, SCM } from "@agent-orchestrator/core";
import type { Session, PRInfo, SCM } from "@composio/ao-core";
import { sessionToDashboard, enrichSessionPR } from "../serialize";
import { prCache, prCacheKey } from "../cache";
import type { DashboardSession } from "../types";