diff --git a/packages/core/src/actions/app/channel.ts b/packages/core/src/actions/app/channel.ts index 8776d03..5f278e8 100644 --- a/packages/core/src/actions/app/channel.ts +++ b/packages/core/src/actions/app/channel.ts @@ -1,6 +1,6 @@ import { type Client } from "../../clients/createClient.js"; import { get } from "../../clients/transports/http.js"; -import { type ChannelGetReturnType } from "@farcaster/relay"; +import { type ChannelGetReturnType } from "@fc-auth/relay"; export type ChannelParameters = { channelToken: string; diff --git a/packages/core/src/actions/app/createChannel.ts b/packages/core/src/actions/app/createChannel.ts index fb53a8f..0853839 100644 --- a/packages/core/src/actions/app/createChannel.ts +++ b/packages/core/src/actions/app/createChannel.ts @@ -1,4 +1,4 @@ -import { type ChannelCreateParameters, type ChannelCreateReturnType } from "@farcaster/relay"; +import { type ChannelCreateParameters, type ChannelCreateReturnType } from "@fc-auth/relay"; import { type Client } from "../../clients/createClient.js"; import { post } from "../../clients/transports/http.js"; diff --git a/packages/core/src/actions/app/pollChannelTillCompleted.ts b/packages/core/src/actions/app/pollChannelTillCompleted.ts index 98cb9b2..a4451f3 100644 --- a/packages/core/src/actions/app/pollChannelTillCompleted.ts +++ b/packages/core/src/actions/app/pollChannelTillCompleted.ts @@ -2,7 +2,7 @@ import { AuthClientError } from "../../errors.js"; import { type Client } from "../../clients/createClient.js"; import { poll } from "../../clients/transports/http.js"; import { type ChannelReturnType } from "./channel.js"; -import type { CompletedChannel } from "@farcaster/relay"; +import type { CompletedChannel } from "@fc-auth/relay"; export type PollChannelTillCompletedParameters = { channelToken: string; diff --git a/packages/core/src/actions/auth/authenticate.ts b/packages/core/src/actions/auth/authenticate.ts index 4039289..3462157 100644 --- a/packages/core/src/actions/auth/authenticate.ts +++ b/packages/core/src/actions/auth/authenticate.ts @@ -1,4 +1,4 @@ -import { type ChannelAuthenticateParameters, type ChannelAuthenticateReturnType } from "@farcaster/relay"; +import { type ChannelAuthenticateParameters, type ChannelAuthenticateReturnType } from "@fc-auth/relay"; import { post } from "../../clients/transports/http.js"; import { type Client } from "../../clients/createClient.js";