File tree 2 files changed +3
-2
lines changed 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 31
31
"lint:js" : " ./node_modules/.bin/eslint --ext .js,.jsx ." ,
32
32
"test" : " npm run lint && npm run jest"
33
33
},
34
- "version" : " 1000.25.5 " ,
34
+ "version" : " 1000.25.6 " ,
35
35
"dependencies" : {
36
36
"auth0-js" : " ^6.8.4" ,
37
37
"config" : " ^3.2.0" ,
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ class LookupService {
15
15
constructor ( tokenV3 ) {
16
16
this . private = {
17
17
api : getApi ( 'V3' , tokenV3 ) ,
18
+ apiV4 : getApi ( 'V4' , tokenV3 ) ,
18
19
apiV5 : getApi ( 'V5' , tokenV3 ) ,
19
20
tokenV3,
20
21
} ;
@@ -125,7 +126,7 @@ class LookupService {
125
126
* @return {Promise } Resolves to the review types.
126
127
*/
127
128
async getTechnologies ( ) {
128
- const res = await this . private . api . get ( '/technologies' ) ;
129
+ const res = await this . private . apiV4 . get ( '/technologies' ) ;
129
130
return getApiResponsePayload ( res ) ;
130
131
}
131
132
}
You can’t perform that action at this time.
0 commit comments