pull/659/head
Travis Fischer 2024-06-30 00:33:17 -07:00
rodzic e3cad9dc13
commit 555f9d54f8
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -84,6 +84,7 @@ export namespace hunter {
department?: string
}
}
errors?: Error[]
}
export interface DomainSearchData {
@ -153,6 +154,7 @@ export namespace hunter {
max_duration?: string
}
}
errors?: Error[]
}
export interface EmailFinderData {
@ -178,6 +180,7 @@ export namespace hunter {
email: string
}
}
errors?: Error[]
}
export interface EmailVerifierData {
@ -203,6 +206,12 @@ export namespace hunter {
sources?: Source[]
_deprecation_notice?: string
}
export interface Error {
id: string
code: number
details: string
}
}
/**