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
isLastChallengeInBlock: Boolean
isPrivate: Boolean
lang: String
module: String
msTrophyId: String
nodules: [Nodule]

View File

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