@experts_hub/shared 1.0.353 → 1.0.354

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
@@ -85,6 +85,7 @@ declare enum SendGuestOtpScopeEnum {
85
85
  FREELANCER = "FREELANCER"
86
86
  }
87
87
  declare class SendGuestOtpDto {
88
+ fullName: string;
88
89
  target: string;
89
90
  fallbackTarget: string;
90
91
  purpose: SendGuestOtpPurposeEnum;
package/dist/index.d.ts CHANGED
@@ -85,6 +85,7 @@ declare enum SendGuestOtpScopeEnum {
85
85
  FREELANCER = "FREELANCER"
86
86
  }
87
87
  declare class SendGuestOtpDto {
88
+ fullName: string;
88
89
  target: string;
89
90
  fallbackTarget: string;
90
91
  purpose: SendGuestOtpPurposeEnum;
package/dist/index.js CHANGED
@@ -416,6 +416,10 @@ var SendGuestOtpScopeEnum = /* @__PURE__ */ ((SendGuestOtpScopeEnum2) => {
416
416
  })(SendGuestOtpScopeEnum || {});
417
417
  var SendGuestOtpDto = class {
418
418
  };
419
+ __decorateClass([
420
+ (0, import_class_validator8.IsNotEmpty)({ message: "Please enter full name." }),
421
+ (0, import_class_validator8.IsString)({ message: "Please enter valid full name." })
422
+ ], SendGuestOtpDto.prototype, "fullName", 2);
419
423
  __decorateClass([
420
424
  (0, import_class_validator8.IsNotEmpty)({ message: "Please enter target." }),
421
425
  (0, import_class_validator8.IsString)({ message: "Please enter valid target." })
package/dist/index.mjs CHANGED
@@ -184,6 +184,10 @@ var SendGuestOtpScopeEnum = /* @__PURE__ */ ((SendGuestOtpScopeEnum2) => {
184
184
  })(SendGuestOtpScopeEnum || {});
185
185
  var SendGuestOtpDto = class {
186
186
  };
187
+ __decorateClass([
188
+ IsNotEmpty8({ message: "Please enter full name." }),
189
+ IsString({ message: "Please enter valid full name." })
190
+ ], SendGuestOtpDto.prototype, "fullName", 2);
187
191
  __decorateClass([
188
192
  IsNotEmpty8({ message: "Please enter target." }),
189
193
  IsString({ message: "Please enter valid target." })
@@ -6,6 +6,7 @@ export declare enum SendGuestOtpScopeEnum {
6
6
  FREELANCER = "FREELANCER"
7
7
  }
8
8
  export declare class SendGuestOtpDto {
9
+ fullName: string;
9
10
  target: string;
10
11
  fallbackTarget: string;
11
12
  purpose: SendGuestOtpPurposeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.353",
3
+ "version": "1.0.354",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",