@experts_hub/shared 1.0.251 → 1.0.253

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.
@@ -1 +1,2 @@
1
1
  export * from './match.decorator';
2
+ export * from './is-valid-mobile-number.decorator';
@@ -0,0 +1,6 @@
1
+ import { ValidatorConstraintInterface, ValidationArguments, ValidationOptions } from "class-validator";
2
+ export declare class IsValidMobileNumberConstraint implements ValidatorConstraintInterface {
3
+ validate(mobile: string, args: ValidationArguments): boolean;
4
+ defaultMessage(args: ValidationArguments): string;
5
+ }
6
+ export declare function IsValidMobileNumber(validationOptions?: ValidationOptions): (object: Object, propertyName: string) => void;
package/dist/index.d.mts CHANGED
@@ -1796,6 +1796,7 @@ interface IFetchCmsQuery {
1796
1796
 
1797
1797
  declare const COUNTRY_PATTERN: {
1798
1798
  fetchCountryDropdown: string;
1799
+ fetchCountryPhoneCodeDropdown: string;
1799
1800
  };
1800
1801
  declare const STATE_PATTERN: {
1801
1802
  fetchStateDropdown: string;
package/dist/index.d.ts CHANGED
@@ -1796,6 +1796,7 @@ interface IFetchCmsQuery {
1796
1796
 
1797
1797
  declare const COUNTRY_PATTERN: {
1798
1798
  fetchCountryDropdown: string;
1799
+ fetchCountryPhoneCodeDropdown: string;
1799
1800
  };
1800
1801
  declare const STATE_PATTERN: {
1801
1802
  fetchStateDropdown: string;