@pay-com/js 1.1.13 → 1.1.14
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 +6 -0
- package/lib/index.d.ts +6 -0
- package/package.json +1 -1
package/lib/dts/types/index.d.ts
CHANGED
|
@@ -146,6 +146,11 @@ export interface UniversalToggles {
|
|
|
146
146
|
* A title to display above the Universal form.
|
|
147
147
|
*/
|
|
148
148
|
title?: string
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* If false, the form will render without the save for future usage checkbox.
|
|
152
|
+
*/
|
|
153
|
+
disableSetupFutureUsageCheckbox?: boolean
|
|
149
154
|
}
|
|
150
155
|
|
|
151
156
|
export type LanguageLocalizationOverride = {
|
|
@@ -436,6 +441,7 @@ export type UpdateTransactionDetailsOpts = {
|
|
|
436
441
|
|
|
437
442
|
export type PayOpts = {
|
|
438
443
|
source: string
|
|
444
|
+
cvv?: string
|
|
439
445
|
}
|
|
440
446
|
|
|
441
447
|
export type PayFn = (Opts: PayOpts) => Promise<unknown>
|
package/lib/index.d.ts
CHANGED
|
@@ -151,6 +151,11 @@ interface UniversalToggles {
|
|
|
151
151
|
* A title to display above the Universal form.
|
|
152
152
|
*/
|
|
153
153
|
title?: string
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* If false, the form will render without the save for future usage checkbox.
|
|
157
|
+
*/
|
|
158
|
+
disableSetupFutureUsageCheckbox?: boolean
|
|
154
159
|
}
|
|
155
160
|
|
|
156
161
|
type LanguageLocalizationOverride = {
|
|
@@ -435,6 +440,7 @@ type UpdateTransactionDetailsOpts = {
|
|
|
435
440
|
|
|
436
441
|
type PayOpts = {
|
|
437
442
|
source: string
|
|
443
|
+
cvv?: string
|
|
438
444
|
}
|
|
439
445
|
|
|
440
446
|
type PayFn = (Opts: PayOpts) => Promise<unknown>
|