@experts_hub/shared 1.0.586 → 1.0.589

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.
@@ -47,5 +47,6 @@ export declare class Contract extends BaseEntity {
47
47
  isWorkContractSent: boolean;
48
48
  isEscrowDeposited: boolean;
49
49
  signaturePositions: any;
50
+ metaData: any;
50
51
  escrowWallet: EscrowWallet;
51
52
  }
package/dist/index.d.mts CHANGED
@@ -1725,6 +1725,7 @@ declare class Contract extends BaseEntity {
1725
1725
  isWorkContractSent: boolean;
1726
1726
  isEscrowDeposited: boolean;
1727
1727
  signaturePositions: any;
1728
+ metaData: any;
1728
1729
  escrowWallet: EscrowWallet;
1729
1730
  }
1730
1731
 
@@ -3264,7 +3265,7 @@ declare const ADMIN_ROLE_PATTERN: {
3264
3265
  declare class CreateAdminRoleDto {
3265
3266
  roleName: string;
3266
3267
  roleDescription?: string;
3267
- iaActive?: boolean;
3268
+ isActive?: boolean;
3268
3269
  }
3269
3270
 
3270
3271
  declare class UpdateAdminRoleDto {
package/dist/index.d.ts CHANGED
@@ -1725,6 +1725,7 @@ declare class Contract extends BaseEntity {
1725
1725
  isWorkContractSent: boolean;
1726
1726
  isEscrowDeposited: boolean;
1727
1727
  signaturePositions: any;
1728
+ metaData: any;
1728
1729
  escrowWallet: EscrowWallet;
1729
1730
  }
1730
1731
 
@@ -3264,7 +3265,7 @@ declare const ADMIN_ROLE_PATTERN: {
3264
3265
  declare class CreateAdminRoleDto {
3265
3266
  roleName: string;
3266
3267
  roleDescription?: string;
3267
- iaActive?: boolean;
3268
+ isActive?: boolean;
3268
3269
  }
3269
3270
 
3270
3271
  declare class UpdateAdminRoleDto {
package/dist/index.js CHANGED
@@ -4911,6 +4911,9 @@ __decorateClass([
4911
4911
  __decorateClass([
4912
4912
  (0, import_typeorm30.Column)({ name: "signature_positions", type: "jsonb", nullable: true })
4913
4913
  ], Contract.prototype, "signaturePositions", 2);
4914
+ __decorateClass([
4915
+ (0, import_typeorm30.Column)({ name: "meta_data", type: "jsonb", nullable: true })
4916
+ ], Contract.prototype, "metaData", 2);
4914
4917
  __decorateClass([
4915
4918
  (0, import_typeorm30.OneToOne)(() => EscrowWallet, (escrowWallet) => escrowWallet.contract)
4916
4919
  ], Contract.prototype, "escrowWallet", 2);
@@ -8537,7 +8540,7 @@ __decorateClass([
8537
8540
  __decorateClass([
8538
8541
  (0, import_class_validator89.IsOptional)(),
8539
8542
  (0, import_class_validator89.IsBoolean)({ message: "Is active must be a boolean value" })
8540
- ], CreateAdminRoleDto.prototype, "iaActive", 2);
8543
+ ], CreateAdminRoleDto.prototype, "isActive", 2);
8541
8544
 
8542
8545
  // src/modules/admin-role/dto/update-admin-role.dto.ts
8543
8546
  var import_class_validator90 = require("class-validator");
package/dist/index.mjs CHANGED
@@ -4751,6 +4751,9 @@ __decorateClass([
4751
4751
  __decorateClass([
4752
4752
  Column30({ name: "signature_positions", type: "jsonb", nullable: true })
4753
4753
  ], Contract.prototype, "signaturePositions", 2);
4754
+ __decorateClass([
4755
+ Column30({ name: "meta_data", type: "jsonb", nullable: true })
4756
+ ], Contract.prototype, "metaData", 2);
4754
4757
  __decorateClass([
4755
4758
  OneToOne9(() => EscrowWallet, (escrowWallet) => escrowWallet.contract)
4756
4759
  ], Contract.prototype, "escrowWallet", 2);
@@ -8585,7 +8588,7 @@ __decorateClass([
8585
8588
  __decorateClass([
8586
8589
  IsOptional49(),
8587
8590
  IsBoolean15({ message: "Is active must be a boolean value" })
8588
- ], CreateAdminRoleDto.prototype, "iaActive", 2);
8591
+ ], CreateAdminRoleDto.prototype, "isActive", 2);
8589
8592
 
8590
8593
  // src/modules/admin-role/dto/update-admin-role.dto.ts
8591
8594
  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.589",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",