fix: dont use hash imports
This commit is contained in:
parent
07048c526b
commit
457c8081a3
|
@ -1,6 +1,6 @@
|
||||||
import { CustomClientOptions, optionsToConfig } from "#utils/options.js";
|
import { CustomClientOptions, optionsToConfig } from "../utils/options.js";
|
||||||
import { S5Client } from "#client.js";
|
import { S5Client } from "../client.js";
|
||||||
import { AccountPinsResponse, getS5AccountPins } from "#generated/index.js";
|
import { AccountPinsResponse, getS5AccountPins } from "../generated/index.js";
|
||||||
|
|
||||||
export async function accountPins(
|
export async function accountPins(
|
||||||
this: S5Client,
|
this: S5Client,
|
||||||
|
|
|
@ -19,9 +19,9 @@ import {
|
||||||
PostS5UploadDirectoryParams,
|
PostS5UploadDirectoryParams,
|
||||||
PostS5UploadResult,
|
PostS5UploadResult,
|
||||||
} from "#generated/index.js";
|
} from "#generated/index.js";
|
||||||
import { BaseCustomOptions } from "#methods/registry.js";
|
import { BaseCustomOptions } from "./registry.js";
|
||||||
import { optionsToConfig } from "#utils/options.js";
|
import { optionsToConfig } from "../utils/options.js";
|
||||||
import { buildRequestUrl } from "#request.js";
|
import { buildRequestUrl } from "../request.js";
|
||||||
import defer from "p-defer";
|
import defer from "p-defer";
|
||||||
import { Multihash } from "@lumeweb/libs5/lib/multihash.js";
|
import { Multihash } from "@lumeweb/libs5/lib/multihash.js";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue