@experts_hub/shared 1.0.196 → 1.0.197

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.
@@ -0,0 +1,13 @@
1
+ import { BaseEntity } from "./base.entity";
2
+ import { AssessmetQuestion } from "./assessment-question.entity";
3
+ export declare enum AnswerTypeEnum {
4
+ CORRECT = "CORRECT",
5
+ ACCEPTABLE = "ACCEPTABLE",
6
+ ELIMINATE = "ELIMINATE"
7
+ }
8
+ export declare class AssessmetQuestionOption extends BaseEntity {
9
+ text: string;
10
+ answerType: AnswerTypeEnum;
11
+ isActive: boolean;
12
+ question: AssessmetQuestion;
13
+ }
@@ -0,0 +1,12 @@
1
+ import { BaseEntity } from "./base.entity";
2
+ import { AssessmetQuestionOption } from "./assessment-question-option";
3
+ export declare enum QuestionForEnum {
4
+ ASSESSMENT = "ASSESSMENT",
5
+ INTERVIEW = "INTERVIEW"
6
+ }
7
+ export declare class AssessmetQuestion extends BaseEntity {
8
+ text: string;
9
+ questionFor: QuestionForEnum;
10
+ isActive: boolean;
11
+ options: AssessmetQuestionOption[];
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.196",
3
+ "version": "1.0.197",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",