@payrails/web-sdk 5.12.0-RC.0 → 5.12.0-RC.1
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/index.js +4 -4
- package/package.json +1 -1
- package/payrails.d.ts +5 -1
- package/payrails.js +4 -4
package/package.json
CHANGED
package/payrails.d.ts
CHANGED
|
@@ -863,9 +863,13 @@ declare class GenericRedirectButton extends PayrailsElement {
|
|
|
863
863
|
protected options: GenericRedirectButtonOptions;
|
|
864
864
|
private readonly returnInfo?;
|
|
865
865
|
constructor(sdkConfig: SdkConfiguration, execution: WorkflowExecution, options: GenericRedirectButtonOptions, returnInfo?: ReturnInfo | undefined);
|
|
866
|
+
private popup;
|
|
866
867
|
private buildRedirectButton;
|
|
867
|
-
private paymentExecutor;
|
|
868
|
+
private readonly paymentExecutor;
|
|
868
869
|
private onClick;
|
|
870
|
+
private handleAuthorizationResult;
|
|
871
|
+
private createPopupWithTimeout;
|
|
872
|
+
private redirectToPaymentLink;
|
|
869
873
|
}
|
|
870
874
|
|
|
871
875
|
interface GenericRedirectDropinOptions {
|