@payrails/web-sdk 5.33.0 → 5.34.0
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/README.md +5 -0
- package/index.js +4 -4
- package/package.json +1 -1
- package/payrails.d.ts +2 -0
- package/payrails.js +4 -4
package/package.json
CHANGED
package/payrails.d.ts
CHANGED
|
@@ -1949,6 +1949,7 @@ declare enum PayrailsEnvironment {
|
|
|
1949
1949
|
interface ApplePayButtonOptions extends StoreInstrumentElementOptions {
|
|
1950
1950
|
clientDomain?: string;
|
|
1951
1951
|
showPaymentMethodLogo?: boolean;
|
|
1952
|
+
abortAfterAuthorizeFailed?: boolean;
|
|
1952
1953
|
translations?: {
|
|
1953
1954
|
labels?: {
|
|
1954
1955
|
storeInstrument?: string;
|
|
@@ -1978,6 +1979,7 @@ declare class ApplePayButton extends PayrailsElementWithStoreInstrumentCheckbox
|
|
|
1978
1979
|
mount(location: string): void;
|
|
1979
1980
|
unmount(): void;
|
|
1980
1981
|
private mountApplePayButton;
|
|
1982
|
+
private createOnAuthorizeFailedHandler;
|
|
1981
1983
|
private createApplePaySession;
|
|
1982
1984
|
private onApplePayAuthorized;
|
|
1983
1985
|
}
|