From 3452e721fa44510582647a2c08c1ea28a5528877 Mon Sep 17 00:00:00 2001 From: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com> Date: Wed, 9 Jul 2025 17:04:00 +0530 Subject: [PATCH] chore: remove unused imports --- packages/hoppscotch-common/src/helpers/auth/types/basic.ts | 1 - packages/hoppscotch-common/src/helpers/auth/types/bearer.ts | 1 - packages/hoppscotch-common/src/helpers/auth/types/digest.ts | 1 - packages/hoppscotch-common/src/helpers/auth/types/hawk.ts | 1 - 4 files changed, 4 deletions(-) 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"