fix: dont use hash imports

This commit is contained in:
Derrick Hammer 2024-03-18 11:10:20 -04:00
parent faf7492ff8
commit 61c9ef880a
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 2 additions and 6 deletions

View File

@ -3,12 +3,11 @@ import { ResponseType } from "axios";
import { S5Client } from "../client.js";
import { CustomClientOptions, optionsToConfig } from "../utils/options.js";
import path from "path";
import { DEFAULT_UPLOAD_OPTIONS } from "#methods/upload.js";
import {
getS5BlobCid,
getS5DownloadCid,
getS5MetadataCid,
} from "#generated/index.js";
} from "../generated/index.js";
import { addUrlQuery } from "#utils/url.js";
import { customInstance } from "#axios.js";

View File

@ -7,7 +7,6 @@ import {
createKeyPair,
KeyPairEd25519,
Packer,
REGISTRY_TYPES,
SignedRegistryEntry,
} from "@lumeweb/libs5";
import {
@ -25,9 +24,7 @@ import { buildRequestUrl } from "#request.js";
import {
getS5Registry,
postS5Registry,
type RegistrySetRequest,
} from "#generated/index.js";
import { DEFAULT_UPLOAD_OPTIONS } from "#methods/upload.js";
} from "../generated/index.js";
import { AxiosError } from "axios";
export const DEFAULT_GET_ENTRY_OPTIONS = {};