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
package/src/biller/biller.dto.ts
CHANGED
@@ -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
|
|