1
1
import { sendFrontendMessage } from '../../main_window'
2
- import axios , { AxiosError , AxiosRequestHeaders , AxiosResponse } from 'axios'
2
+ import axios , { AxiosError , AxiosResponse } from 'axios'
3
3
import { GOGUser } from './user'
4
4
import {
5
5
GameInfo ,
@@ -680,6 +680,7 @@ export async function gogToUnifiedInfo(
680
680
681
681
return object
682
682
}
683
+
683
684
/**
684
685
* Fetches data from gog about game
685
686
* https://api.gog.com/v2/games
@@ -701,6 +702,7 @@ export async function getGamesData(appName: string, lang?: string) {
701
702
702
703
return response . data
703
704
}
705
+
704
706
/**
705
707
* Creates Array based on returned from API
706
708
* If no recommended data is present it just stays empty
@@ -874,7 +876,7 @@ export async function getGamesdbData(
874
876
875
877
const response = await axios
876
878
. get < GamesDBData > ( url , { headers : headers } )
877
- . catch ( ( error : AxiosError ) => {
879
+ . catch ( ( error : AxiosError < { error_description : string } > ) => {
878
880
logError (
879
881
[
880
882
`Was not able to get GamesDB data for ${ game_id } ` ,
@@ -922,9 +924,9 @@ export async function getProductApi(
922
924
url . searchParams . set ( 'expand' , expand . join ( ',' ) )
923
925
}
924
926
925
- const headers : AxiosRequestHeaders = { }
927
+ const headers = { }
926
928
if ( access_token ) {
927
- headers . Authorization = `Bearer ${ access_token } `
929
+ headers [ ' Authorization' ] = `Bearer ${ access_token } `
928
930
}
929
931
930
932
// `https://api.gog.com/products/${appName}?locale=${language}${expandString}`
0 commit comments