@experts_hub/shared 1.0.54 → 1.0.55

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.
@@ -1,4 +1,4 @@
1
- import { BaseEntity } from './base.entity';
1
+ import { BaseEntity } from "./base.entity";
2
2
  export declare enum QuestionFor {
3
3
  CLIENT = "CLIENT",
4
4
  FREELANCER = "FREELANCER"
@@ -9,6 +9,10 @@ export declare class Question extends BaseEntity {
9
9
  slug: string;
10
10
  questionFor: QuestionFor;
11
11
  type: string;
12
- options: [];
12
+ options: {
13
+ label: string;
14
+ hint: string;
15
+ value: string;
16
+ }[];
13
17
  isActive: boolean;
14
18
  }
package/dist/index.d.mts CHANGED
@@ -309,7 +309,11 @@ declare class Question extends BaseEntity {
309
309
  slug: string;
310
310
  questionFor: QuestionFor;
311
311
  type: string;
312
- options: [];
312
+ options: {
313
+ label: string;
314
+ hint: string;
315
+ value: string;
316
+ }[];
313
317
  isActive: boolean;
314
318
  }
315
319
 
package/dist/index.d.ts CHANGED
@@ -309,7 +309,11 @@ declare class Question extends BaseEntity {
309
309
  slug: string;
310
310
  questionFor: QuestionFor;
311
311
  type: string;
312
- options: [];
312
+ options: {
313
+ label: string;
314
+ hint: string;
315
+ value: string;
316
+ }[];
313
317
  isActive: boolean;
314
318
  }
315
319
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.54",
3
+ "version": "1.0.55",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",