Files
Microsoft-Rewards-Script/src/interface/QuizData.ts
TheNetsky 2c4d85f732 v3 init
Based of v3.0.0b10.
2025-12-11 16:16:32 +01:00

51 lines
1.5 KiB
TypeScript

export interface QuizData {
offerId: string
quizId: string
quizCategory: string
IsCurrentQuestionCompleted: boolean
quizRenderSummaryPage: boolean
resetQuiz: boolean
userClickedOnHint: boolean
isDemoEnabled: boolean
correctAnswer: string
isMultiChoiceQuizType: boolean
isPutInOrderQuizType: boolean
isListicleQuizType: boolean
isWOTQuizType: boolean
isBugsForRewardsQuizType: boolean
currentQuestionNumber: number
maxQuestions: number
resetTrackingCounters: boolean
showWelcomePanel: boolean
isAjaxCall: boolean
showHint: boolean
numberOfOptions: number
isMobile: boolean
inRewardsMode: boolean
enableDailySetWelcomePane: boolean
enableDailySetNonWelcomePane: boolean
isDailySetUrlOffer: boolean
isDailySetFlightEnabled: boolean
dailySetUrlOfferId: string
earnedCredits: number
maxCredits: number
creditsPerQuestion: number
userAlreadyClickedOptions: number
hasUserClickedOnOption: boolean
recentAnswerChoice: string
sessionTimerSeconds: string
isOverlayMinimized: number
ScreenReaderMsgOnMove: string
ScreenReaderMsgOnDrop: string
IsPartialPointsEnabled: boolean
PrioritizeUrlOverCookies: boolean
UseNewReportActivityAPI: boolean
CorrectlyAnsweredQuestionCount: number
showJoinRewardsPage: boolean
CorrectOptionAnswer_WOT: string
WrongOptionAnswer_WOT: string
enableSlideAnimation: boolean
ariaLoggingEnabled: boolean
UseQuestionIndexInActivityId: boolean
}