@pay-com/js 1.1.13 → 1.1.15
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/lib/dts/types/index.d.ts +2 -0
- package/lib/index.d.ts +2 -0
- package/package.json +1 -1
package/lib/dts/types/index.d.ts
CHANGED
|
@@ -304,6 +304,7 @@ export interface CheckoutOpts {
|
|
|
304
304
|
displayFailureMessages: boolean
|
|
305
305
|
displayEndOfSessionFailureMessages?: boolean
|
|
306
306
|
disableAdditionalFields?: boolean
|
|
307
|
+
whiteLabel?: boolean
|
|
307
308
|
}
|
|
308
309
|
locale?: Locale
|
|
309
310
|
}
|
|
@@ -436,6 +437,7 @@ export type UpdateTransactionDetailsOpts = {
|
|
|
436
437
|
|
|
437
438
|
export type PayOpts = {
|
|
438
439
|
source: string
|
|
440
|
+
cvv?: string
|
|
439
441
|
}
|
|
440
442
|
|
|
441
443
|
export type PayFn = (Opts: PayOpts) => Promise<unknown>
|
package/lib/index.d.ts
CHANGED
|
@@ -309,6 +309,7 @@ interface CheckoutOpts {
|
|
|
309
309
|
displayFailureMessages: boolean
|
|
310
310
|
displayEndOfSessionFailureMessages?: boolean
|
|
311
311
|
disableAdditionalFields?: boolean
|
|
312
|
+
whiteLabel?: boolean
|
|
312
313
|
}
|
|
313
314
|
locale?: Locale
|
|
314
315
|
}
|
|
@@ -435,6 +436,7 @@ type UpdateTransactionDetailsOpts = {
|
|
|
435
436
|
|
|
436
437
|
type PayOpts = {
|
|
437
438
|
source: string
|
|
439
|
+
cvv?: string
|
|
438
440
|
}
|
|
439
441
|
|
|
440
442
|
type PayFn = (Opts: PayOpts) => Promise<unknown>
|