Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit committed Jun 30, 2024
1 parent e3cad9d commit 555f9d5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/services/hunter-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export namespace hunter {
department?: string
}
}
errors?: Error[]
}

export interface DomainSearchData {
Expand Down Expand Up @@ -153,6 +154,7 @@ export namespace hunter {
max_duration?: string
}
}
errors?: Error[]
}

export interface EmailFinderData {
Expand All @@ -178,6 +180,7 @@ export namespace hunter {
email: string
}
}
errors?: Error[]
}

export interface EmailVerifierData {
Expand All @@ -203,6 +206,12 @@ export namespace hunter {
sources?: Source[]
_deprecation_notice?: string
}

export interface Error {
id: string
code: number
details: string
}
}

/**
Expand Down

0 comments on commit 555f9d5

Please sign in to comment.