File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export class TopcoderChallengesService {
1818 accessToken ?: string ,
1919 ) {
2020 // Format the input parameters
21- const url = new URL ( `${ TOPCODER_API_BASE_URL } /challenges` ) ;
21+ const url = new URL ( `${ TOPCODER_API_BASE_URL } /v6/ challenges` ) ;
2222 Object . entries ( queryParams ) . forEach ( ( [ key , value ] ) => {
2323 if ( value !== undefined && value !== null ) {
2424 if ( Array . isArray ( value ) ) {
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ export class TopcoderSkillsService {
1818 accessToken ?: string ,
1919 ) {
2020 // Format the input parameters
21- const url = new URL ( `${ TOPCODER_API_BASE_URL } /standardized-skills/skills` ) ;
21+ const url = new URL (
22+ `${ TOPCODER_API_BASE_URL } /v5/standardized-skills/skills` ,
23+ ) ;
2224 Object . entries ( queryParams ) . forEach ( ( [ key , value ] ) => {
2325 if ( value !== undefined && value !== null ) {
2426 if ( Array . isArray ( value ) ) {
You can’t perform that action at this time.
0 commit comments