@payrails/web-sdk 5.37.8 → 5.37.9-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.37.8",
3
+ "version": "5.37.9-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
@@ -1472,13 +1472,16 @@ declare class GooglePayButton extends PayrailsElementWithStoreInstrumentCheckbox
1472
1472
  private sdkLoadedCalled;
1473
1473
  private isProcessing;
1474
1474
  private buttonElement;
1475
+ private action;
1475
1476
  private static getGooglePayConfigAsArray;
1476
1477
  private static getSDKClient;
1477
1478
  static isGooglePayAvailable(allowedPaymentMethods: GooglePayConfigInput, environment?: PayrailsEnvironment, merchantInfo?: google.payments.api.MerchantInfo): Promise<boolean>;
1478
1479
  constructor(options: GooglePayButtonOptions);
1479
1480
  private sdkLoaded;
1480
- private onLoadPaymentData;
1481
1481
  private authorize;
1482
+ private onLoadPaymentData;
1483
+ private doTokenize;
1484
+ private doAuthorizePayment;
1482
1485
  mount(location: string): void;
1483
1486
  unmount(): void;
1484
1487
  }