resurgence-data 1.0.31 → 1.0.33

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.
@@ -53,6 +53,7 @@ export declare class CreateBillerDto extends BaseDTO {
53
53
  active: boolean;
54
54
  slug?: string;
55
55
  billerCode?: string;
56
+ chargeConfigurations?: CreateBillerChargeConfigurationDto[];
56
57
  createdAt?: string;
57
58
  updatedAt?: string;
58
59
  }
@@ -1,3 +1,3 @@
1
1
  export declare class BaseDTO {
2
- requestUserId: string;
2
+ requestUserId?: string;
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resurgence-data",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "description": "DTOs and shareable resources",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.js",
@@ -194,6 +194,8 @@ export class CreateBillerDto extends BaseDTO {
194
194
  @Length(1, 15, { message: "Biller code must be between 1 and 15 characters long." })
195
195
  billerCode?: string;
196
196
 
197
+ chargeConfigurations?: CreateBillerChargeConfigurationDto[];
198
+
197
199
  @ApiProperty({ description: "The creation timestamp of the biller.", example: "2025-01-01T00:00:00Z" })
198
200
  @IsOptional()
199
201
  @IsString({ message: "CreatedAt must be a string." })
@@ -2,5 +2,5 @@ import { IsOptional } from "class-validator";
2
2
 
3
3
  export class BaseDTO {
4
4
  @IsOptional()
5
- requestUserId: string;
5
+ requestUserId?: string;
6
6
  }