interface Config {
    apiPrefix?: string;
    authentication?: (Without<{ jwt: JWT; }, (Without<{ personalAccessToken: string; }, (Without<{ basic: (Without<{ email: string; apiToken: string; }, { username: string; password: string; }> & { username: string; password: string; }) | (Without<...> & { ...; }); }, { ...; }> & { ...; }) | (Without<...> & { ...; })> & ((Without<...> & ...) | Without<((Without<{ personalAccessToken: string; }, (Without<{ basic: (Without<{ email: string; apiToken: string; }, { username: string; password: string; }> & { username: string; password: string; }) | (Without<...> & { ...; }); }, { ...; }> & { ...; }) | (Without<...> & { ...; })> & ((Without<...> & { ...; }) | (Without<.....), {
        jwt: JWT;
    }> & {
        jwt: JWT;
    };
    baseRequestConfig?: RequestConfig;
    host: string;
    middlewares?: Middlewares;
    newErrorHandling?: boolean;
    noCheckAtlassianToken?: boolean;
    telemetry?: any;
}

Properties

apiPrefix?: string

Prefix for all API routes.

authentication?: (Without<{ jwt: JWT; }, (Without<{ personalAccessToken: string; }, (Without<{ basic: (Without<{ email: string; apiToken: string; }, { username: string; password: string; }> & { username: string; password: string; }) | (Without<...> & { ...; }); }, { ...; }> & { ...; }) | (Without<...> & { ...; })> & ((Without<...> & ...) | Without<((Without<{ personalAccessToken: string; }, (Without<{ basic: (Without<{ email: string; apiToken: string; }, { username: string; password: string; }> & { username: string; password: string; }) | (Without<...> & { ...; }); }, { ...; }> & { ...; }) | (Without<...> & { ...; })> & ((Without<...> & { ...; }) | (Without<.....), {
    jwt: JWT;
}> & {
    jwt: JWT;
}
baseRequestConfig?: RequestConfig
host: string
middlewares?: Middlewares
newErrorHandling?: boolean

Enable new API error handling. false by default.

noCheckAtlassianToken?: boolean

Adds 'X-Atlassian-Token': 'no-check' to each request header

telemetry?: any

Deprecated

Disabled. Will be removed in the next major version.

Generated using TypeDoc v0.25.12