@experts_hub/shared 1.0.59 → 1.0.60

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.js CHANGED
@@ -360,13 +360,13 @@ __decorateClass([
360
360
  (0, import_class_validator13.IsNotEmpty)({ message: "Please enter unique id." })
361
361
  ], CreateQuestionDto.prototype, "questionId", 2);
362
362
  __decorateClass([
363
- (0, import_class_validator13.IsNotEmpty)({ message: "Please enter username." })
363
+ (0, import_class_validator13.IsNotEmpty)({ message: "Please enter question." })
364
364
  ], CreateQuestionDto.prototype, "question", 2);
365
365
  __decorateClass([
366
- (0, import_class_validator13.IsNotEmpty)({ message: "Please enter first name." })
366
+ (0, import_class_validator13.IsNotEmpty)({ message: "Please enter for whom the question is." })
367
367
  ], CreateQuestionDto.prototype, "questionFor", 2);
368
368
  __decorateClass([
369
- (0, import_class_validator13.IsNotEmpty)({ message: "Please enter last name." })
369
+ (0, import_class_validator13.IsNotEmpty)({ message: "Please enter options." })
370
370
  ], CreateQuestionDto.prototype, "options", 2);
371
371
  __decorateClass([
372
372
  (0, import_class_validator13.IsOptional)(),
package/dist/index.mjs CHANGED
@@ -333,13 +333,13 @@ __decorateClass([
333
333
  IsNotEmpty11({ message: "Please enter unique id." })
334
334
  ], CreateQuestionDto.prototype, "questionId", 2);
335
335
  __decorateClass([
336
- IsNotEmpty11({ message: "Please enter username." })
336
+ IsNotEmpty11({ message: "Please enter question." })
337
337
  ], CreateQuestionDto.prototype, "question", 2);
338
338
  __decorateClass([
339
- IsNotEmpty11({ message: "Please enter first name." })
339
+ IsNotEmpty11({ message: "Please enter for whom the question is." })
340
340
  ], CreateQuestionDto.prototype, "questionFor", 2);
341
341
  __decorateClass([
342
- IsNotEmpty11({ message: "Please enter last name." })
342
+ IsNotEmpty11({ message: "Please enter options." })
343
343
  ], CreateQuestionDto.prototype, "options", 2);
344
344
  __decorateClass([
345
345
  IsOptional4(),
@@ -0,0 +1,5 @@
1
+ export declare class ClientProfileQuestionDto {
2
+ uuid: string;
3
+ question_slug: string;
4
+ answer: any;
5
+ }
@@ -0,0 +1,7 @@
1
+ export declare class ClientCreateAccountDto {
2
+ fullName: string;
3
+ email: string;
4
+ companyName: string;
5
+ password: string;
6
+ confirmPassword: string;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",