@tonder.io/ionic-lite-sdk 0.0.35-beta.27 → 0.0.35-beta.28
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -269,11 +269,11 @@ export class TonderService {
|
|
|
269
269
|
}
|
|
270
270
|
|
|
271
271
|
configureCheckout(customerData: IConfigureCheckout): void {
|
|
272
|
-
this.liteCheckout.configureCheckout({ ...customerData });
|
|
272
|
+
return this.liteCheckout.configureCheckout({ ...customerData });
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
async injectCheckout(): Promise<void> {
|
|
276
|
-
await this.liteCheckout.injectCheckout();
|
|
276
|
+
return await this.liteCheckout.injectCheckout();
|
|
277
277
|
}
|
|
278
278
|
|
|
279
279
|
verify3dsTransaction(): Promise<ITransaction | IStartCheckoutResponse | void> {
|