@experts_hub/shared 1.0.586 → 1.0.587

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
@@ -3264,7 +3264,7 @@ declare const ADMIN_ROLE_PATTERN: {
3264
3264
  declare class CreateAdminRoleDto {
3265
3265
  roleName: string;
3266
3266
  roleDescription?: string;
3267
- iaActive?: boolean;
3267
+ isActive?: boolean;
3268
3268
  }
3269
3269
 
3270
3270
  declare class UpdateAdminRoleDto {
package/dist/index.d.ts CHANGED
@@ -3264,7 +3264,7 @@ declare const ADMIN_ROLE_PATTERN: {
3264
3264
  declare class CreateAdminRoleDto {
3265
3265
  roleName: string;
3266
3266
  roleDescription?: string;
3267
- iaActive?: boolean;
3267
+ isActive?: boolean;
3268
3268
  }
3269
3269
 
3270
3270
  declare class UpdateAdminRoleDto {
package/dist/index.js CHANGED
@@ -8537,7 +8537,7 @@ __decorateClass([
8537
8537
  __decorateClass([
8538
8538
  (0, import_class_validator89.IsOptional)(),
8539
8539
  (0, import_class_validator89.IsBoolean)({ message: "Is active must be a boolean value" })
8540
- ], CreateAdminRoleDto.prototype, "iaActive", 2);
8540
+ ], CreateAdminRoleDto.prototype, "isActive", 2);
8541
8541
 
8542
8542
  // src/modules/admin-role/dto/update-admin-role.dto.ts
8543
8543
  var import_class_validator90 = require("class-validator");
package/dist/index.mjs CHANGED
@@ -8585,7 +8585,7 @@ __decorateClass([
8585
8585
  __decorateClass([
8586
8586
  IsOptional49(),
8587
8587
  IsBoolean15({ message: "Is active must be a boolean value" })
8588
- ], CreateAdminRoleDto.prototype, "iaActive", 2);
8588
+ ], CreateAdminRoleDto.prototype, "isActive", 2);
8589
8589
 
8590
8590
  // src/modules/admin-role/dto/update-admin-role.dto.ts
8591
8591
  import { IsBoolean as IsBoolean16, IsNotEmpty as IsNotEmpty74, IsOptional as IsOptional50, IsString as IsString53 } from "class-validator";
@@ -1,5 +1,5 @@
1
1
  export declare class CreateAdminRoleDto {
2
2
  roleName: string;
3
3
  roleDescription?: string;
4
- iaActive?: boolean;
4
+ isActive?: boolean;
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.586",
3
+ "version": "1.0.587",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",