@netceterapx/click-to-pay-sdk 2.1.2 → 2.2.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 +8 -1
- package/build/click-to-pay-sdk.es.js +1390 -1532
- package/build/click-to-pay-sdk.js +1 -1
- package/index.d.ts +10 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -739,7 +739,13 @@ export declare type VisaDpaTransactionOptions = {
|
|
|
739
739
|
};
|
|
740
740
|
|
|
741
741
|
export declare enum VisaDynamicDataTypeEnum {
|
|
742
|
+
/** Transaction Authentication Verification Value */
|
|
743
|
+
CARD_APPLICATION_CRYPTOGRAM_LONG_FORM = "CARD_APPLICATION_CRYPTOGRAM_LONG_FORM",
|
|
744
|
+
/** Dynamic Token Verification Value */
|
|
745
|
+
DYNAMIC_CARD_SECURITY_CODE = "DYNAMIC_CARD_SECURITY_CODE",
|
|
746
|
+
/** Deprecated – Transaction Authentication Verification Value */
|
|
742
747
|
TAVV = "TAVV",
|
|
748
|
+
/** Deprecated – Dynamic Token Verification Value */
|
|
743
749
|
DTVV = "DTVV"
|
|
744
750
|
}
|
|
745
751
|
|
|
@@ -800,8 +806,10 @@ export declare type VisaPaymentOptions = {
|
|
|
800
806
|
/**
|
|
801
807
|
* The dynamic data type.
|
|
802
808
|
* Valid values for enum:
|
|
803
|
-
* •
|
|
804
|
-
* •
|
|
809
|
+
* • CARD_APPLICATION_CRYPTOGRAM_LONG_FORM – Transaction Authentication Verification Value
|
|
810
|
+
* • DYNAMIC_CARD_SECURITY_CODE – Dynamic Token Verification Value
|
|
811
|
+
* • TAVV Deprecated – Transaction Authentication Verification Value
|
|
812
|
+
* • DTVV Deprecated – Dynamic Token Verification Value
|
|
805
813
|
*/
|
|
806
814
|
dynamicDataType?: VisaDynamicDataTypeEnum;
|
|
807
815
|
/**
|
package/package.json
CHANGED