diff --git a/packages/hoppscotch-common/src/helpers/auth/types/basic.ts b/packages/hoppscotch-common/src/helpers/auth/types/basic.ts index 4359c963..0cabffc9 100644 --- a/packages/hoppscotch-common/src/helpers/auth/types/basic.ts +++ b/packages/hoppscotch-common/src/helpers/auth/types/basic.ts @@ -4,7 +4,6 @@ import { HoppRESTRequest, Environment, HoppRESTHeader, - HoppRESTParam, } from "@hoppscotch/data" export async function generateBasicAuthHeaders( diff --git a/packages/hoppscotch-common/src/helpers/auth/types/bearer.ts b/packages/hoppscotch-common/src/helpers/auth/types/bearer.ts index 720c09dc..980bcfdc 100644 --- a/packages/hoppscotch-common/src/helpers/auth/types/bearer.ts +++ b/packages/hoppscotch-common/src/helpers/auth/types/bearer.ts @@ -4,7 +4,6 @@ import { HoppRESTRequest, Environment, HoppRESTHeader, - HoppRESTParam, } from "@hoppscotch/data" export async function generateBearerAuthHeaders( diff --git a/packages/hoppscotch-common/src/helpers/auth/types/digest.ts b/packages/hoppscotch-common/src/helpers/auth/types/digest.ts index 43aa6c06..c6989af0 100644 --- a/packages/hoppscotch-common/src/helpers/auth/types/digest.ts +++ b/packages/hoppscotch-common/src/helpers/auth/types/digest.ts @@ -4,7 +4,6 @@ import { HoppRESTRequest, Environment, HoppRESTHeader, - HoppRESTParam, } from "@hoppscotch/data" import { DigestAuthParams, diff --git a/packages/hoppscotch-common/src/helpers/auth/types/hawk.ts b/packages/hoppscotch-common/src/helpers/auth/types/hawk.ts index e02d37ea..e97b1a8e 100644 --- a/packages/hoppscotch-common/src/helpers/auth/types/hawk.ts +++ b/packages/hoppscotch-common/src/helpers/auth/types/hawk.ts @@ -5,7 +5,6 @@ import { HoppRESTRequest, Environment, HoppRESTHeader, - HoppRESTParam, } from "@hoppscotch/data" import { getFinalBodyFromRequest } from "~/helpers/utils/EffectiveURL"