Skip to content

Commit 8b2776d

Browse files
authored
Merge pull request #1306 from topcoder-platform/dev
Merge in AI changes to this branch
2 parents 0e678d5 + e1d150c commit 8b2776d

File tree

134 files changed

+3208
-507
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+3208
-507
lines changed

.circleci/config.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,15 +139,15 @@ jobs:
139139
environment:
140140
DEPLOY_ENV: "QA"
141141
LOGICAL_ENV: "qa"
142-
APPNAME: "platform-ui-mvp-v6"
142+
APPNAME: "platform-ui-mvp"
143143
steps: *build_steps
144144

145145
build-prod:
146146
<<: *defaults
147147
environment:
148148
DEPLOY_ENV: "PROD"
149149
LOGICAL_ENV: "prod"
150-
APPNAME: "platform-ui-mvp-v6"
150+
APPNAME: "platform-ui-mvp"
151151
steps: *build_steps
152152

153153
# Just tests commited code.
@@ -157,7 +157,7 @@ jobs:
157157
DEPLOY_ENV: "DEV"
158158
LOGICAL_ENV: "dev"
159159
ENABLE_CACHE: true
160-
APPNAME: "platform-ui-mvp-v6"
160+
APPNAME: "platform-ui-mvp"
161161
steps: *deploy_steps
162162

163163
deployQa:
@@ -166,7 +166,7 @@ jobs:
166166
DEPLOY_ENV: "QA"
167167
LOGICAL_ENV: "qa"
168168
ENABLE_CACHE: true
169-
APPNAME: "platform-ui-mvp-v6"
169+
APPNAME: "platform-ui-mvp"
170170
steps: *deploy_steps
171171

172172
deployProd:
@@ -175,7 +175,7 @@ jobs:
175175
DEPLOY_ENV: "PROD"
176176
LOGICAL_ENV: "prod"
177177
ENABLE_CACHE: true
178-
APPNAME: "platform-ui-mvp-v6"
178+
APPNAME: "platform-ui-mvp"
179179
steps: *deploy_steps
180180

181181
workflows:
@@ -232,6 +232,7 @@ workflows:
232232
- feat/system-admin
233233
- feat/v6
234234
- pm-2074_1
235+
- feat/ai-workflows
235236

236237
- deployQa:
237238
context: org-global

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"sass": "^1.79.0",
110110
"styled-components": "^5.3.6",
111111
"swr": "^1.3.0",
112-
"tc-auth-lib": "topcoder-platform/tc-auth-lib#1.0.27",
112+
"tc-auth-lib": "topcoder-platform/tc-auth-lib#master",
113113
"tinymce": "^7.9.1",
114114
"typescript": "^4.8.4",
115115
"universal-navigation": "https://github.com/topcoder-platform/universal-navigation#9fc50d938be7182",

public/llm-icons/chatgpt-icon.svg

Lines changed: 1 addition & 0 deletions
Loading

public/llm-icons/deepseek-icon.svg

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 66 additions & 0 deletions
Loading

public/llm-icons/qwen-icon.svg

Lines changed: 15 additions & 0 deletions
Loading

src/apps/admin/src/lib/services/payments.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ export async function getChallengePayments(
4040
challengeId: string,
4141
): Promise<ChallengePaymentsResponse> {
4242
return xhrGetAsync<ChallengePaymentsResponse>(
43-
`${EnvironmentConfig.API.V6}/payments/challenges/${challengeId}`,
43+
`${EnvironmentConfig.API.V6}/finance/challenge-payments/${challengeId}`,
4444
)
4545
}
4646

4747
export async function createWinning(payload: any): Promise<unknown> {
48-
return xhrPostAsync(`${EnvironmentConfig.API.V5}/finance/winnings`, payload)
48+
return xhrPostAsync(`${EnvironmentConfig.API.V6}/finance/winnings`, payload)
4949
}
5050

5151
export async function autocompleteMembers(term: string): Promise<Array<{ handle: string }>> {

0 commit comments

Comments
 (0)