@finverse/sdk-typescript 0.0.366 → 0.0.368
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/api.d.ts +8 -2
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -519,11 +519,11 @@ export interface AutopayEnrollmentConfiguration {
|
|
|
519
519
|
*/
|
|
520
520
|
display_enrollment_screen: boolean;
|
|
521
521
|
/**
|
|
522
|
-
* Indicate what value should be prefilled on the autopay enrollment screen
|
|
522
|
+
* Indicate what value should be prefilled on the autopay enrollment screen. Required when display_enrollment_screen is true; optional when display_enrollment_screen is false.
|
|
523
523
|
* @type {string}
|
|
524
524
|
* @memberof AutopayEnrollmentConfiguration
|
|
525
525
|
*/
|
|
526
|
-
enrollment_prefill_value
|
|
526
|
+
enrollment_prefill_value?: AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum;
|
|
527
527
|
}
|
|
528
528
|
export declare const AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum: {
|
|
529
529
|
readonly Yes: "YES";
|
|
@@ -8619,6 +8619,12 @@ export interface SelectPaymentMethodResponse {
|
|
|
8619
8619
|
* @memberof SelectPaymentMethodResponse
|
|
8620
8620
|
*/
|
|
8621
8621
|
mandate_processor_redirect_uri?: string;
|
|
8622
|
+
/**
|
|
8623
|
+
* URL to redirect to for making the payment
|
|
8624
|
+
* @type {string}
|
|
8625
|
+
* @memberof SelectPaymentMethodResponse
|
|
8626
|
+
*/
|
|
8627
|
+
processor_redirect_uri?: string;
|
|
8622
8628
|
}
|
|
8623
8629
|
/**
|
|
8624
8630
|
*
|