@experts_hub/shared 1.0.606 → 1.0.607

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
@@ -3947,6 +3947,7 @@ declare const WALLET_ADMIN_PATTERN: {
3947
3947
 
3948
3948
  declare class AddTopupEscrowAmountDto {
3949
3949
  amount: number;
3950
+ escrowWalletUuid: string;
3950
3951
  }
3951
3952
 
3952
3953
  declare class DebitCommissionFteHiringDto {
package/dist/index.d.ts CHANGED
@@ -3947,6 +3947,7 @@ declare const WALLET_ADMIN_PATTERN: {
3947
3947
 
3948
3948
  declare class AddTopupEscrowAmountDto {
3949
3949
  amount: number;
3950
+ escrowWalletUuid: string;
3950
3951
  }
3951
3952
 
3952
3953
  declare class DebitCommissionFteHiringDto {
package/dist/index.js CHANGED
@@ -10519,6 +10519,10 @@ __decorateClass([
10519
10519
  (0, import_class_validator141.IsNotEmpty)({ message: "Amount is required" }),
10520
10520
  (0, import_class_validator141.IsNumber)({}, { message: "Amount must be a number" })
10521
10521
  ], AddTopupEscrowAmountDto.prototype, "amount", 2);
10522
+ __decorateClass([
10523
+ (0, import_class_validator141.IsNotEmpty)({ message: "Escrow wallet UUID is required" }),
10524
+ (0, import_class_validator141.IsUUID)("4", { message: "Escrow wallet UUID must be a valid UUID" })
10525
+ ], AddTopupEscrowAmountDto.prototype, "escrowWalletUuid", 2);
10522
10526
 
10523
10527
  // src/modules/wallet/dto/debit-commission-fte-hiring.dto.ts
10524
10528
  var import_class_validator142 = require("class-validator");
package/dist/index.mjs CHANGED
@@ -10635,20 +10635,24 @@ var WALLET_ADMIN_PATTERN = {
10635
10635
  };
10636
10636
 
10637
10637
  // src/modules/wallet/dto/add-topup-escrow-amount.dto.ts
10638
- import { IsNotEmpty as IsNotEmpty118, IsNumber as IsNumber38 } from "class-validator";
10638
+ import { IsNotEmpty as IsNotEmpty118, IsNumber as IsNumber38, IsUUID as IsUUID29 } from "class-validator";
10639
10639
  var AddTopupEscrowAmountDto = class {
10640
10640
  };
10641
10641
  __decorateClass([
10642
10642
  IsNotEmpty118({ message: "Amount is required" }),
10643
10643
  IsNumber38({}, { message: "Amount must be a number" })
10644
10644
  ], AddTopupEscrowAmountDto.prototype, "amount", 2);
10645
+ __decorateClass([
10646
+ IsNotEmpty118({ message: "Escrow wallet UUID is required" }),
10647
+ IsUUID29("4", { message: "Escrow wallet UUID must be a valid UUID" })
10648
+ ], AddTopupEscrowAmountDto.prototype, "escrowWalletUuid", 2);
10645
10649
 
10646
10650
  // src/modules/wallet/dto/debit-commission-fte-hiring.dto.ts
10647
- import { IsNotEmpty as IsNotEmpty119, IsUUID as IsUUID29 } from "class-validator";
10651
+ import { IsNotEmpty as IsNotEmpty119, IsUUID as IsUUID30 } from "class-validator";
10648
10652
  var DebitCommissionFteHiringDto = class {
10649
10653
  };
10650
10654
  __decorateClass([
10651
- IsUUID29("4", { message: "Invoice UUID must be a valid UUID." }),
10655
+ IsUUID30("4", { message: "Invoice UUID must be a valid UUID." }),
10652
10656
  IsNotEmpty119({ message: "Invoice UUID is required." })
10653
10657
  ], DebitCommissionFteHiringDto.prototype, "invoiceUuid", 2);
10654
10658
 
@@ -1,3 +1,4 @@
1
1
  export declare class AddTopupEscrowAmountDto {
2
2
  amount: number;
3
+ escrowWalletUuid: string;
3
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.606",
3
+ "version": "1.0.607",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",