resurgence-data 1.1.13 → 1.1.15

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.
@@ -229,6 +229,7 @@ export declare class UpdateBillerItemDto extends BaseDTO {
229
229
  export declare class EnrollBillerDto extends CreateBillerDto {
230
230
  id: string;
231
231
  chargeConfigurations?: CreateBillerChargeConfigurationDto[];
232
+ contact?: CreateBillerContactDto;
232
233
  apiKeys?: BillerApiKeyDto[];
233
234
  }
234
235
  export declare class EnrollBillerSettlementAccount extends CreateSettlementAccountDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resurgence-data",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "description": "DTOs and shareable resources",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.js",
@@ -1332,6 +1332,7 @@ export class UpdateBillerItemDto extends BaseDTO {
1332
1332
  export class EnrollBillerDto extends CreateBillerDto {
1333
1333
  id: string;
1334
1334
  chargeConfigurations?: CreateBillerChargeConfigurationDto[];
1335
+ contact?: CreateBillerContactDto;
1335
1336
  apiKeys?: BillerApiKeyDto[];
1336
1337
  }
1337
1338