UPDATE: Draft
All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 1m1s

This commit is contained in:
2026-01-10 16:32:12 +07:00
parent 2e821c455f
commit cb2f040010
2 changed files with 23 additions and 1 deletions

View File

@@ -9,5 +9,16 @@ export interface ExtraData {
cm: boolean
first_person: boolean
hide_ui: boolean
};
}
challenge: {
skip_node: number
challenge_peak_group_id: number
challenge_peak_group_id_list: number[]
}
multi_path: {
main: number
march_7: number
multi_path_main: number[]
multi_path_march_7: number[]
}
}

View File

@@ -12,5 +12,16 @@ export const extraDataSchema = z.object({
cm: z.boolean(),
first_person: z.boolean(),
hide_ui: z.boolean()
}),
challenge: z.object({
skip_node: z.number(),
challenge_peak_group_id: z.number(),
challenge_peak_group_id_list: z.array(z.number())
}),
multi_path: z.object({
main: z.number(),
march_7: z.number(),
multi_path_main: z.array(z.number()),
multi_path_march_7: z.array(z.number())
})
});