@experts_hub/shared 1.0.407 → 1.0.409

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/index.d.mts CHANGED
@@ -183,6 +183,7 @@ declare class FreelancerProfileQuestionDto {
183
183
  uuid: string;
184
184
  question_slug: string;
185
185
  answer: any;
186
+ numberOfHours?: number;
186
187
  currency?: string;
187
188
  }
188
189
 
package/dist/index.d.ts CHANGED
@@ -183,6 +183,7 @@ declare class FreelancerProfileQuestionDto {
183
183
  uuid: string;
184
184
  question_slug: string;
185
185
  answer: any;
186
+ numberOfHours?: number;
186
187
  currency?: string;
187
188
  }
188
189
 
package/dist/index.js CHANGED
@@ -845,6 +845,9 @@ __decorateClass([
845
845
  __decorateClass([
846
846
  (0, import_class_validator23.IsNotEmpty)({ message: "Please enter answer." })
847
847
  ], FreelancerProfileQuestionDto.prototype, "answer", 2);
848
+ __decorateClass([
849
+ (0, import_class_validator23.IsOptional)()
850
+ ], FreelancerProfileQuestionDto.prototype, "numberOfHours", 2);
848
851
  __decorateClass([
849
852
  (0, import_class_validator23.IsOptional)()
850
853
  ], FreelancerProfileQuestionDto.prototype, "currency", 2);
package/dist/index.mjs CHANGED
@@ -599,6 +599,9 @@ __decorateClass([
599
599
  __decorateClass([
600
600
  IsNotEmpty20({ message: "Please enter answer." })
601
601
  ], FreelancerProfileQuestionDto.prototype, "answer", 2);
602
+ __decorateClass([
603
+ IsOptional5()
604
+ ], FreelancerProfileQuestionDto.prototype, "numberOfHours", 2);
602
605
  __decorateClass([
603
606
  IsOptional5()
604
607
  ], FreelancerProfileQuestionDto.prototype, "currency", 2);
@@ -2,5 +2,6 @@ export declare class FreelancerProfileQuestionDto {
2
2
  uuid: string;
3
3
  question_slug: string;
4
4
  answer: any;
5
+ numberOfHours?: number;
5
6
  currency?: string;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.407",
3
+ "version": "1.0.409",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",