Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
dalechyn committed May 15, 2024
1 parent c0d0dcb commit d3e2ede
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/actions/app/channel.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/actions/app/createChannel.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/actions/app/pollChannelTillCompleted.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/actions/auth/authenticate.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down

0 comments on commit d3e2ede

Please sign in to comment.