@evervault/js 2.10.0 → 2.11.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/dist/evervault.d.ts +5 -0
- package/package.json +2 -2
package/dist/evervault.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ declare interface ApplePayErrorMessage {
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
declare interface ApplePayEvents {
|
|
73
|
+
ready: () => void;
|
|
73
74
|
success: () => void;
|
|
74
75
|
error: (message?: string) => void;
|
|
75
76
|
cancel: () => void;
|
|
@@ -844,6 +845,7 @@ declare interface EncryptedDPAN<P> {
|
|
|
844
845
|
brand: string;
|
|
845
846
|
lastFour?: string;
|
|
846
847
|
displayName?: string;
|
|
848
|
+
paymentMethodType?: PaymentMethodType;
|
|
847
849
|
};
|
|
848
850
|
cryptogram: string;
|
|
849
851
|
eci: string;
|
|
@@ -857,6 +859,7 @@ declare interface EncryptedFPAN {
|
|
|
857
859
|
number: string;
|
|
858
860
|
lastFour?: string;
|
|
859
861
|
displayName?: string;
|
|
862
|
+
paymentMethodType?: PaymentMethodType;
|
|
860
863
|
expiry: {
|
|
861
864
|
month: string;
|
|
862
865
|
year: string;
|
|
@@ -2540,6 +2543,8 @@ declare interface ObsoleteProperties<TLength = (string & {}) | 0, TTime = string
|
|
|
2540
2543
|
WebkitScrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
|
|
2541
2544
|
}
|
|
2542
2545
|
|
|
2546
|
+
declare type PaymentMethodType = "credit" | "debit" | "prepaid" | "store";
|
|
2547
|
+
|
|
2543
2548
|
declare interface PaymentMethodUpdate {
|
|
2544
2549
|
type?: string;
|
|
2545
2550
|
billingContact?: BillingContact;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@evervault/js",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.11.0",
|
|
5
5
|
"description": "Evervault.js loader for client-side browser applications",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"typescript": "5.5.4",
|
|
21
21
|
"vite": "^7.3.1",
|
|
22
22
|
"vite-plugin-dts": "^4.5.4",
|
|
23
|
-
"@evervault/browser": "2.52.0",
|
|
24
23
|
"themes": "0.1.22",
|
|
25
24
|
"tsconfig": "0.1.0",
|
|
25
|
+
"@evervault/browser": "2.54.0",
|
|
26
26
|
"types": "0.22.0"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|