@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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/dist/modules/otp/dto/send-guest-otp.dto.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
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." })
|