@pay-com/js 1.1.9 → 1.1.12
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 +32 -0
- package/lib/index.d.ts +32 -0
- package/package.json +1 -1
package/lib/dts/types/index.d.ts
CHANGED
|
@@ -251,6 +251,36 @@ export type FailureError = {
|
|
|
251
251
|
data?: Record<string, unknown>
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
+
export type Locale =
|
|
255
|
+
| 'en-US'
|
|
256
|
+
| 'en-GB'
|
|
257
|
+
| 'ro-RO'
|
|
258
|
+
| 'zh-CN'
|
|
259
|
+
| 'cs-CZ'
|
|
260
|
+
| 'da-DK'
|
|
261
|
+
| 'nl-NL'
|
|
262
|
+
| 'de-DE'
|
|
263
|
+
| 'fr-FR'
|
|
264
|
+
| 'fi-FI'
|
|
265
|
+
| 'el-GR'
|
|
266
|
+
| 'hu-HU'
|
|
267
|
+
| 'id-ID'
|
|
268
|
+
| 'it-IT'
|
|
269
|
+
| 'ja-JP'
|
|
270
|
+
| 'ko-KR'
|
|
271
|
+
| 'ko-KP'
|
|
272
|
+
| 'nb-NO'
|
|
273
|
+
| 'pl-PL'
|
|
274
|
+
| 'pt-PT'
|
|
275
|
+
| 'pt-BR'
|
|
276
|
+
| 'ru-RU'
|
|
277
|
+
| 'es-ES'
|
|
278
|
+
| 'se-SE'
|
|
279
|
+
| 'se-FI'
|
|
280
|
+
| 'se-NO'
|
|
281
|
+
| 'tr-TR'
|
|
282
|
+
| 'vi-VN'
|
|
283
|
+
|
|
254
284
|
export interface CheckoutOpts {
|
|
255
285
|
/**
|
|
256
286
|
* @deprecated Got replaced by clientSecret
|
|
@@ -273,6 +303,7 @@ export interface CheckoutOpts {
|
|
|
273
303
|
displayEndOfSessionFailureMessages?: boolean
|
|
274
304
|
disableAdditionalFields?: boolean
|
|
275
305
|
}
|
|
306
|
+
locale?: Locale
|
|
276
307
|
}
|
|
277
308
|
|
|
278
309
|
interface PayComI {
|
|
@@ -398,6 +429,7 @@ export type UpdateTransactionDetailsOpts = {
|
|
|
398
429
|
state?: string
|
|
399
430
|
countryAlpha2: string
|
|
400
431
|
}
|
|
432
|
+
customFieldsValues: Record<string, string | number | boolean>
|
|
401
433
|
}
|
|
402
434
|
|
|
403
435
|
export type PayOpts = {
|
package/lib/index.d.ts
CHANGED
|
@@ -256,6 +256,36 @@ type FailureError = {
|
|
|
256
256
|
data?: Record<string, unknown>
|
|
257
257
|
}
|
|
258
258
|
|
|
259
|
+
type Locale =
|
|
260
|
+
| 'en-US'
|
|
261
|
+
| 'en-GB'
|
|
262
|
+
| 'ro-RO'
|
|
263
|
+
| 'zh-CN'
|
|
264
|
+
| 'cs-CZ'
|
|
265
|
+
| 'da-DK'
|
|
266
|
+
| 'nl-NL'
|
|
267
|
+
| 'de-DE'
|
|
268
|
+
| 'fr-FR'
|
|
269
|
+
| 'fi-FI'
|
|
270
|
+
| 'el-GR'
|
|
271
|
+
| 'hu-HU'
|
|
272
|
+
| 'id-ID'
|
|
273
|
+
| 'it-IT'
|
|
274
|
+
| 'ja-JP'
|
|
275
|
+
| 'ko-KR'
|
|
276
|
+
| 'ko-KP'
|
|
277
|
+
| 'nb-NO'
|
|
278
|
+
| 'pl-PL'
|
|
279
|
+
| 'pt-PT'
|
|
280
|
+
| 'pt-BR'
|
|
281
|
+
| 'ru-RU'
|
|
282
|
+
| 'es-ES'
|
|
283
|
+
| 'se-SE'
|
|
284
|
+
| 'se-FI'
|
|
285
|
+
| 'se-NO'
|
|
286
|
+
| 'tr-TR'
|
|
287
|
+
| 'vi-VN'
|
|
288
|
+
|
|
259
289
|
interface CheckoutOpts {
|
|
260
290
|
/**
|
|
261
291
|
* @deprecated Got replaced by clientSecret
|
|
@@ -278,6 +308,7 @@ interface CheckoutOpts {
|
|
|
278
308
|
displayEndOfSessionFailureMessages?: boolean
|
|
279
309
|
disableAdditionalFields?: boolean
|
|
280
310
|
}
|
|
311
|
+
locale?: Locale
|
|
281
312
|
}
|
|
282
313
|
|
|
283
314
|
interface PayComOpts {
|
|
@@ -397,6 +428,7 @@ type UpdateTransactionDetailsOpts = {
|
|
|
397
428
|
state?: string
|
|
398
429
|
countryAlpha2: string
|
|
399
430
|
}
|
|
431
|
+
customFieldsValues: Record<string, string | number | boolean>
|
|
400
432
|
}
|
|
401
433
|
|
|
402
434
|
type PayOpts = {
|