@payrails/web-sdk 5.33.0 → 5.34.0-RC.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payrails/web-sdk",
3
- "version": "5.33.0",
3
+ "version": "5.34.0-RC.0",
4
4
  "description": "SDK providing tokenization options on the client for merchants",
5
5
  "main": "index.js",
6
6
  "types": "payrails.d.ts",
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
  }