@myinterview/widget-react 1.1.47 → 1.1.49-development-4577eb9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/AssessmentController.d.ts +1 -0
- package/dist/cjs/components/AssessmentFreeText.d.ts +1 -0
- package/dist/cjs/index.js +15 -10
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/configInterface.d.ts +1 -0
- package/dist/cjs/interfaces/jobInterface.d.ts +1 -0
- package/dist/esm/components/AssessmentController.d.ts +1 -0
- package/dist/esm/components/AssessmentFreeText.d.ts +1 -0
- package/dist/esm/index.js +15 -10
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/configInterface.d.ts +1 -0
- package/dist/esm/interfaces/jobInterface.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ interface IQuestionTextAnswer extends IQuestion {
|
|
|
24
24
|
config?: {
|
|
25
25
|
minChars?: number;
|
|
26
26
|
maxChars?: number;
|
|
27
|
+
antiCheat?: boolean;
|
|
27
28
|
};
|
|
28
29
|
}
|
|
29
30
|
interface IMultipleChoiceOptionDefinition {
|
|
@@ -208,6 +209,7 @@ interface IConfig {
|
|
|
208
209
|
forcedView?: IViews;
|
|
209
210
|
useSafeUpload?: boolean;
|
|
210
211
|
useLightDom?: boolean;
|
|
212
|
+
antiCheat?: boolean;
|
|
211
213
|
}
|
|
212
214
|
type IClientConfig = Omit<IConfig, 'practiceQuestions'> & {
|
|
213
215
|
practiceQuestions?: IClientQuestion[];
|