@experts_hub/shared 1.0.505 → 1.0.506

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
@@ -144,6 +144,7 @@ declare class FreelancerCreateAccountDto {
144
144
  email: string;
145
145
  mobileCode: string;
146
146
  mobile: string;
147
+ countryISOCode: string;
147
148
  onBoardedBy: string;
148
149
  }
149
150
 
package/dist/index.d.ts CHANGED
@@ -144,6 +144,7 @@ declare class FreelancerCreateAccountDto {
144
144
  email: string;
145
145
  mobileCode: string;
146
146
  mobile: string;
147
+ countryISOCode: string;
147
148
  onBoardedBy: string;
148
149
  }
149
150
 
package/dist/index.js CHANGED
@@ -775,6 +775,9 @@ __decorateClass([
775
775
  (0, import_class_validator15.IsNotEmpty)({ message: "Please enter mobile number." }),
776
776
  IsValidMobileNumber({ message: "Mobile number is not valid for the selected country code." })
777
777
  ], FreelancerCreateAccountDto.prototype, "mobile", 2);
778
+ __decorateClass([
779
+ (0, import_class_validator15.IsNotEmpty)({ message: "Please enter country iso code." })
780
+ ], FreelancerCreateAccountDto.prototype, "countryISOCode", 2);
778
781
  __decorateClass([
779
782
  (0, import_class_validator15.IsOptional)()
780
783
  ], FreelancerCreateAccountDto.prototype, "onBoardedBy", 2);
package/dist/index.mjs CHANGED
@@ -491,6 +491,9 @@ __decorateClass([
491
491
  IsNotEmpty12({ message: "Please enter mobile number." }),
492
492
  IsValidMobileNumber({ message: "Mobile number is not valid for the selected country code." })
493
493
  ], FreelancerCreateAccountDto.prototype, "mobile", 2);
494
+ __decorateClass([
495
+ IsNotEmpty12({ message: "Please enter country iso code." })
496
+ ], FreelancerCreateAccountDto.prototype, "countryISOCode", 2);
494
497
  __decorateClass([
495
498
  IsOptional3()
496
499
  ], FreelancerCreateAccountDto.prototype, "onBoardedBy", 2);
@@ -3,5 +3,6 @@ export declare class FreelancerCreateAccountDto {
3
3
  email: string;
4
4
  mobileCode: string;
5
5
  mobile: string;
6
+ countryISOCode: string;
6
7
  onBoardedBy: string;
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.505",
3
+ "version": "1.0.506",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",