resurgence-data 1.0.25 → 1.0.27

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.
@@ -474,6 +474,13 @@ export class CreateBillerChargeConfigurationDto {
474
474
  @IsNotEmpty({ message: "Service ID must not be empty" })
475
475
  @IsString({ message: "Service ID must be a valid string" })
476
476
  serviceId: string;
477
+ @ApiProperty({
478
+ description: "The ID of the biller",
479
+ example: "550e8400-e29b-41d4-a716-446655440001",
480
+ })
481
+ @IsNotEmpty({ message: "Biller ID must not be empty" })
482
+ @IsString({ message: "Biller ID must be a valid string" })
483
+ billerId: string;
477
484
 
478
485
  @ApiProperty({
479
486
  description: "Whether the configuration is active",
@@ -571,6 +578,14 @@ export class UpdateBillerChargeConfigurationDto {
571
578
  @IsOptional()
572
579
  serviceId?: string;
573
580
 
581
+ @ApiProperty({
582
+ description: "The ID of the biller",
583
+ example: "550e8400-e29b-41d4-a716-446655440001",
584
+ })
585
+ @IsString({ message: "Biller ID must be a valid string" })
586
+ @IsOptional()
587
+ billerId: string;
588
+
574
589
  @ApiProperty({
575
590
  description: "Whether the configuration is active",
576
591
  example: false,