@netceterapx/click-to-pay-sdk 2.2.0 → 2.4.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/build/click-to-pay-sdk.es.js +178 -372
- package/build/click-to-pay-sdk.js +1 -1
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -202,6 +202,8 @@ export declare enum LANG {
|
|
|
202
202
|
en_GB = "en_GB",
|
|
203
203
|
/** English - United States of America */
|
|
204
204
|
en_US = "en_US",
|
|
205
|
+
/** English - Australia */
|
|
206
|
+
en_AU = "en_AU",
|
|
205
207
|
/** Spanish - Spain */
|
|
206
208
|
es_ES = "es_ES",
|
|
207
209
|
/** Finnish - Finland */
|
|
@@ -814,6 +816,7 @@ export declare type VisaPaymentOptions = {
|
|
|
814
816
|
dynamicDataType?: VisaDynamicDataTypeEnum;
|
|
815
817
|
/**
|
|
816
818
|
* Whether PAN data is requested.
|
|
819
|
+
* This field is not relevant since Visa always uses tokens and will never return PAN data.
|
|
817
820
|
*/
|
|
818
821
|
dpaPanRequested?: boolean;
|
|
819
822
|
};
|
package/package.json
CHANGED