@paydock/client-sdk 1.118.0-beta → 1.119.0-beta
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 +1 -0
- package/bundles/index.cjs +224 -13
- package/bundles/index.mjs +224 -13
- package/bundles/types/api/api-base.d.ts.map +1 -1
- package/bundles/types/checkout/helpers/resource-helper.d.ts +4 -3
- package/bundles/types/checkout/helpers/resource-helper.d.ts.map +1 -1
- package/bundles/types/checkout/helpers/session-helper.d.ts +3 -0
- package/bundles/types/checkout/helpers/session-helper.d.ts.map +1 -1
- package/bundles/types/checkout/instructions/v1/instruction.afterpay_checkout_form.show.d.ts.map +1 -1
- package/bundles/types/checkout/instructions/v1/instruction.zip_checkout_form.show.d.ts.map +1 -1
- package/bundles/types/checkout/layout-widgets/payment-methods-template.d.ts.map +1 -1
- package/bundles/types/secure-remote-commerce/index.d.ts +1 -0
- package/bundles/types/secure-remote-commerce/index.d.ts.map +1 -1
- package/bundles/types/secure-remote-commerce/interfaces.d.ts +1 -0
- package/bundles/types/secure-remote-commerce/interfaces.d.ts.map +1 -1
- package/bundles/widget.umd.js +224 -13
- package/bundles/widget.umd.min.js +1 -1
- package/docs/click-to-pay.md +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7736,6 +7736,7 @@ When the flow type is src, masked checkoutData available is also returned
|
|
|
7736
7736
|
| --- | --- | --- |
|
|
7737
7737
|
| type | <code>string</code> | type of the checkout, can be `src` or `manual`. |
|
|
7738
7738
|
| token | <code>string</code> | one time token value. |
|
|
7739
|
+
| token_type | <code>string</code> | one time token type value, can be `card` or `card_scheme_token`. |
|
|
7739
7740
|
| [checkoutData] | <code>object</code> | Optional checkout data related to the checkout information. Only available on src flow. |
|
|
7740
7741
|
| [checkoutData.card_number_bin] | <code>string</code> | The BIN of the card used for the transaction. |
|
|
7741
7742
|
| [checkoutData.card_number_last4] | <code>string</code> | The last four digits of the card number. |
|