Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Change topcoder-api-challenge to v4 version. #21

Merged
merged 1 commit into from
Oct 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
},
"homepage": "https://gitlab.com/luettich/processor#README",
"dependencies": {
"@topcoder-platform/topcoder-api-challenges-v4-wrapper": "^1.0.5",
"@topcoder-platform/topcoder-api-challenges-v4-wrapper-dev": "^1.0.5",
"axios": "^0.19.0",
"circular-json": "^0.5.7",
"config": "^1.30.0",
Expand All @@ -41,9 +43,7 @@
"node-gitlab-api": "^2.2.8",
"nodemailer": "^4.6.7",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6.3",
"topcoder-api-challenges": "^1.0.6",
"topcoder-api-projects": "^1.0.1",
"topcoder-dev-api-challenges": "^1.0.6",
"topcoder-dev-api-projects": "^1.0.1",
"topcoder-healthcheck-dropin": "^1.0.3",
"util": "^0.11.0",
Expand Down
4 changes: 2 additions & 2 deletions utils/topcoder-api-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ const m2mAuth = require('tc-core-library-js').auth.m2m;
const m2m = m2mAuth(_.pick(config, ['AUTH0_URL', 'AUTH0_AUDIENCE', 'TOKEN_CACHE_TIME', 'AUTH0_PROXY_SERVER_URL']));

let topcoderApiProjects = require('topcoder-api-projects');
let topcoderApiChallenges = require('topcoder-api-challenges');
let topcoderApiChallenges = require('@topcoder-platform/topcoder-api-challenges-v4-wrapper');

const topcoderDevApiProjects = require('topcoder-dev-api-projects');
const topcoderDevApiChallenges = require('topcoder-dev-api-challenges');
const topcoderDevApiChallenges = require('@topcoder-platform/topcoder-api-challenges-v4-wrapper-dev');

const logger = require('./logger');
const loggerFile = require('./logger-file');
Expand Down