@experts_hub/shared 1.0.106 → 1.0.108

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.
@@ -11,6 +11,8 @@ export declare enum ModeOfWork {
11
11
  BOTH = "BOTH"
12
12
  }
13
13
  export declare enum OnboardingStepEnum {
14
+ SIGN_UP = "SIGN_UP",
15
+ OTP_VERIFIED = "OTP_VERIFIED",
14
16
  UPLOAD_RESUME = "UPLOAD_RESUME",
15
17
  AI_VIDEO_ASSESMENT = "AI_VIDEO_ASSESMENT",
16
18
  CODING_CHALLENGE = "CODING_CHALLENGE",
package/dist/index.d.mts CHANGED
@@ -85,7 +85,8 @@ declare class ClientProfileQuestionDto {
85
85
  }
86
86
 
87
87
  declare class ClientCreateAccountDto {
88
- fullName: string;
88
+ firstName: string;
89
+ lastName: string;
89
90
  email: string;
90
91
  companyName: string;
91
92
  password: string;
@@ -277,6 +278,8 @@ declare enum ModeOfWork {
277
278
  BOTH = "BOTH"
278
279
  }
279
280
  declare enum OnboardingStepEnum {
281
+ SIGN_UP = "SIGN_UP",
282
+ OTP_VERIFIED = "OTP_VERIFIED",
280
283
  UPLOAD_RESUME = "UPLOAD_RESUME",
281
284
  AI_VIDEO_ASSESMENT = "AI_VIDEO_ASSESMENT",
282
285
  CODING_CHALLENGE = "CODING_CHALLENGE",
package/dist/index.d.ts CHANGED
@@ -85,7 +85,8 @@ declare class ClientProfileQuestionDto {
85
85
  }
86
86
 
87
87
  declare class ClientCreateAccountDto {
88
- fullName: string;
88
+ firstName: string;
89
+ lastName: string;
89
90
  email: string;
90
91
  companyName: string;
91
92
  password: string;
@@ -277,6 +278,8 @@ declare enum ModeOfWork {
277
278
  BOTH = "BOTH"
278
279
  }
279
280
  declare enum OnboardingStepEnum {
281
+ SIGN_UP = "SIGN_UP",
282
+ OTP_VERIFIED = "OTP_VERIFIED",
280
283
  UPLOAD_RESUME = "UPLOAD_RESUME",
281
284
  AI_VIDEO_ASSESMENT = "AI_VIDEO_ASSESMENT",
282
285
  CODING_CHALLENGE = "CODING_CHALLENGE",
package/dist/index.js CHANGED
@@ -361,9 +361,13 @@ var import_class_validator11 = require("class-validator");
361
361
  var ClientCreateAccountDto = class {
362
362
  };
363
363
  __decorateClass([
364
- (0, import_class_validator11.IsNotEmpty)({ message: "Please enter full name." }),
365
- (0, import_class_validator11.IsString)({ message: "Please enter valid full name." })
366
- ], ClientCreateAccountDto.prototype, "fullName", 2);
364
+ (0, import_class_validator11.IsNotEmpty)({ message: "Please enter first name." }),
365
+ (0, import_class_validator11.IsString)({ message: "Please enter valid first name." })
366
+ ], ClientCreateAccountDto.prototype, "firstName", 2);
367
+ __decorateClass([
368
+ (0, import_class_validator11.IsNotEmpty)({ message: "Please enter last name." }),
369
+ (0, import_class_validator11.IsString)({ message: "Please enter valid last name." })
370
+ ], ClientCreateAccountDto.prototype, "lastName", 2);
367
371
  __decorateClass([
368
372
  (0, import_class_validator11.IsNotEmpty)({ message: "Please enter email." }),
369
373
  (0, import_class_validator11.IsEmail)()
@@ -662,6 +666,8 @@ var ModeOfWork = /* @__PURE__ */ ((ModeOfWork2) => {
662
666
  return ModeOfWork2;
663
667
  })(ModeOfWork || {});
664
668
  var OnboardingStepEnum = /* @__PURE__ */ ((OnboardingStepEnum2) => {
669
+ OnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
670
+ OnboardingStepEnum2["OTP_VERIFIED"] = "OTP_VERIFIED";
665
671
  OnboardingStepEnum2["UPLOAD_RESUME"] = "UPLOAD_RESUME";
666
672
  OnboardingStepEnum2["AI_VIDEO_ASSESMENT"] = "AI_VIDEO_ASSESMENT";
667
673
  OnboardingStepEnum2["CODING_CHALLENGE"] = "CODING_CHALLENGE";
package/dist/index.mjs CHANGED
@@ -296,9 +296,13 @@ import {
296
296
  var ClientCreateAccountDto = class {
297
297
  };
298
298
  __decorateClass([
299
- IsNotEmpty10({ message: "Please enter full name." }),
300
- IsString5({ message: "Please enter valid full name." })
301
- ], ClientCreateAccountDto.prototype, "fullName", 2);
299
+ IsNotEmpty10({ message: "Please enter first name." }),
300
+ IsString5({ message: "Please enter valid first name." })
301
+ ], ClientCreateAccountDto.prototype, "firstName", 2);
302
+ __decorateClass([
303
+ IsNotEmpty10({ message: "Please enter last name." }),
304
+ IsString5({ message: "Please enter valid last name." })
305
+ ], ClientCreateAccountDto.prototype, "lastName", 2);
302
306
  __decorateClass([
303
307
  IsNotEmpty10({ message: "Please enter email." }),
304
308
  IsEmail2()
@@ -647,6 +651,8 @@ var ModeOfWork = /* @__PURE__ */ ((ModeOfWork2) => {
647
651
  return ModeOfWork2;
648
652
  })(ModeOfWork || {});
649
653
  var OnboardingStepEnum = /* @__PURE__ */ ((OnboardingStepEnum2) => {
654
+ OnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
655
+ OnboardingStepEnum2["OTP_VERIFIED"] = "OTP_VERIFIED";
650
656
  OnboardingStepEnum2["UPLOAD_RESUME"] = "UPLOAD_RESUME";
651
657
  OnboardingStepEnum2["AI_VIDEO_ASSESMENT"] = "AI_VIDEO_ASSESMENT";
652
658
  OnboardingStepEnum2["CODING_CHALLENGE"] = "CODING_CHALLENGE";
@@ -1,5 +1,6 @@
1
1
  export declare class ClientCreateAccountDto {
2
- fullName: string;
2
+ firstName: string;
3
+ lastName: string;
3
4
  email: string;
4
5
  companyName: string;
5
6
  password: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.106",
3
+ "version": "1.0.108",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",