fix(client,curriculum): add lang property to Challenge type (#64552)

This commit is contained in:
Huyen Nguyen
2025-12-12 04:51:07 -08:00
committed by GitHub
parent c425156fc7
commit 4558096cee
2 changed files with 2 additions and 0 deletions

View File

@@ -326,6 +326,7 @@ exports.createSchemaCustomization = ({ actions }) => {
instructions: String instructions: String
isLastChallengeInBlock: Boolean isLastChallengeInBlock: Boolean
isPrivate: Boolean isPrivate: Boolean
lang: String
module: String module: String
msTrophyId: String msTrophyId: String
nodules: [Nodule] nodules: [Nodule]

View File

@@ -153,6 +153,7 @@ export type Challenge = {
missing?: boolean; missing?: boolean;
challengeFiles?: ChallengeFile[]; challengeFiles?: ChallengeFile[];
solutions?: ChallengeFile[][]; solutions?: ChallengeFile[][];
lang?: string;
}; };
export interface BlockStructure { export interface BlockStructure {