@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/README.md +5 -0
- package/index.js +4 -4
- package/package.json +1 -1
- package/payrails.d.ts +4 -1
- package/payrails.js +4 -4
package/package.json
CHANGED
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
|
}
|