(body: {
id: string;
files: ChallengeFiles;
})
| 372 | } |
| 373 | |
| 374 | export function postSaveChallenge(body: { |
| 375 | id: string; |
| 376 | files: ChallengeFiles; |
| 377 | }): Promise<ResponseWithData<void>> { |
| 378 | return post('/encoded/save-challenge', body); |
| 379 | } |
| 380 | |
| 381 | export function postSubmitSurvey(body: { |
| 382 | surveyResults: SurveyResults; |