mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-28 17:38:31 +00:00
api-client: rename CobaltAPIResponse type to CobaltResponse
This commit is contained in:
parent
afe9917169
commit
a80c7b7a5a
@ -1,6 +1,6 @@
|
||||
import { CobaltResponseType, type CobaltAPIResponse } from "../types/response";
|
||||
import type { CobaltRequest } from "../types/request";
|
||||
import { CobaltResponseType, type CobaltResponse } from "../types/response";
|
||||
import { CobaltReachabilityError } from "../types/errors";
|
||||
import type { CobaltRequest } from "../types/request";
|
||||
|
||||
export default class BaseCobaltAPI {
|
||||
#baseURL: string;
|
||||
@ -22,7 +22,7 @@ export default class BaseCobaltAPI {
|
||||
headers['user-agent'] = this.#userAgent;
|
||||
}
|
||||
|
||||
const response: CobaltAPIResponse = await fetch(this.#baseURL, {
|
||||
const response: CobaltResponse = await fetch(this.#baseURL, {
|
||||
method: 'POST',
|
||||
redirect: 'manual',
|
||||
signal: AbortSignal.timeout(10000),
|
||||
|
@ -65,7 +65,7 @@ export type CobaltServerInfo = {
|
||||
export type CobaltSessionResponse = CobaltSession | CobaltErrorResponse;
|
||||
export type CobaltServerInfoResponse = CobaltServerInfo | CobaltErrorResponse;
|
||||
|
||||
export type CobaltAPIResponse = CobaltErrorResponse
|
||||
| CobaltPickerResponse
|
||||
| CobaltRedirectResponse
|
||||
| CobaltTunnelResponse;
|
||||
export type CobaltResponse = CobaltErrorResponse
|
||||
| CobaltPickerResponse
|
||||
| CobaltRedirectResponse
|
||||
| CobaltTunnelResponse;
|
||||
|
Loading…
Reference in New Issue
Block a user