@pprogroup/drop-in-checkout 2.24.0 → 2.24.2

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.
@@ -212,6 +212,7 @@ declare const resources: {
212
212
  "validation.invalidInput": string;
213
213
  "validation.invalidPAN": string;
214
214
  "validation.name": string;
215
+ "validation.nameContainsCardNumber": string;
215
216
  "validation.phoneNumber": string;
216
217
  "validation.postcode": string;
217
218
  "validation.requiredField": string;
@@ -205,6 +205,7 @@ declare const _default: {
205
205
  "validation.invalidInput": "Invalid input",
206
206
  "validation.invalidPAN": "Invalid card number",
207
207
  "validation.name": "Invalid name format",
208
+ "validation.nameContainsCardNumber": "Please enter your name, not a card number",
208
209
  "validation.phoneNumber": "Invalid phone number",
209
210
  "validation.postcode": "Invalid postcode",
210
211
  "validation.requiredField": "Required field",
@@ -12,7 +12,6 @@ export interface CardPPROVaultedInstrumentDetails {
12
12
  holderName: string;
13
13
  panAlias: string;
14
14
  cvvAlias: string;
15
- isCvvPresent: boolean;
16
15
  }
17
16
  export interface BankAccountInstrument {
18
17
  type: "BANK_ACCOUNT";
@@ -0,0 +1 @@
1
+ export declare function containsPan(value: string): boolean;
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pprogroup/drop-in-checkout",
3
- "version": "2.24.0",
3
+ "version": "2.24.2",
4
4
  "scripts": {
5
5
  "dev": "vite --host --open",
6
6
  "build": "tsc && vite build",