@finverse/sdk-typescript 0.0.393 → 0.0.394
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/api.d.ts +78 -41
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1907,10 +1907,10 @@ export interface CreatePaymentRequest {
|
|
|
1907
1907
|
payment_method_id?: string;
|
|
1908
1908
|
/**
|
|
1909
1909
|
*
|
|
1910
|
-
* @type {
|
|
1910
|
+
* @type {PaymentDetailsRequest}
|
|
1911
1911
|
* @memberof CreatePaymentRequest
|
|
1912
1912
|
*/
|
|
1913
|
-
payment_details:
|
|
1913
|
+
payment_details: PaymentDetailsRequest;
|
|
1914
1914
|
/**
|
|
1915
1915
|
*
|
|
1916
1916
|
* @type {{ [key: string]: string; }}
|
|
@@ -6396,88 +6396,125 @@ export interface PaymentDetails {
|
|
|
6396
6396
|
/**
|
|
6397
6397
|
*
|
|
6398
6398
|
* @export
|
|
6399
|
-
* @interface
|
|
6399
|
+
* @interface PaymentDetailsReferences
|
|
6400
|
+
*/
|
|
6401
|
+
export interface PaymentDetailsReferences {
|
|
6402
|
+
/**
|
|
6403
|
+
*
|
|
6404
|
+
* @type {string}
|
|
6405
|
+
* @memberof PaymentDetailsReferences
|
|
6406
|
+
*/
|
|
6407
|
+
finverse_transaction_reference?: string;
|
|
6408
|
+
/**
|
|
6409
|
+
*
|
|
6410
|
+
* @type {string}
|
|
6411
|
+
* @memberof PaymentDetailsReferences
|
|
6412
|
+
*/
|
|
6413
|
+
dda_reference?: string;
|
|
6414
|
+
/**
|
|
6415
|
+
*
|
|
6416
|
+
* @type {string}
|
|
6417
|
+
* @memberof PaymentDetailsReferences
|
|
6418
|
+
*/
|
|
6419
|
+
bank_transaction_reference?: string;
|
|
6420
|
+
}
|
|
6421
|
+
/**
|
|
6422
|
+
*
|
|
6423
|
+
* @export
|
|
6424
|
+
* @interface PaymentDetailsRequest
|
|
6400
6425
|
*/
|
|
6401
|
-
export interface
|
|
6426
|
+
export interface PaymentDetailsRequest {
|
|
6402
6427
|
/**
|
|
6403
6428
|
* The transaction description provided to banks, which banks will show to their customers.
|
|
6404
6429
|
* @type {string}
|
|
6405
|
-
* @memberof
|
|
6430
|
+
* @memberof PaymentDetailsRequest
|
|
6406
6431
|
*/
|
|
6407
6432
|
description?: string;
|
|
6408
6433
|
/**
|
|
6409
|
-
* ID of the mandate this
|
|
6434
|
+
* ID of the mandate this payment is referring to.
|
|
6410
6435
|
* @type {string}
|
|
6411
|
-
* @memberof
|
|
6436
|
+
* @memberof PaymentDetailsRequest
|
|
6412
6437
|
*/
|
|
6413
6438
|
mandate_id?: string;
|
|
6414
6439
|
/**
|
|
6415
6440
|
* Deprecated: Customer\'s ID for this transaction
|
|
6416
6441
|
* @type {string}
|
|
6417
|
-
* @memberof
|
|
6442
|
+
* @memberof PaymentDetailsRequest
|
|
6418
6443
|
*/
|
|
6419
6444
|
transaction_reference_id?: string;
|
|
6420
6445
|
/**
|
|
6421
6446
|
* Customer reference for this transaction
|
|
6422
6447
|
* @type {string}
|
|
6423
|
-
* @memberof
|
|
6448
|
+
* @memberof PaymentDetailsRequest
|
|
6424
6449
|
*/
|
|
6425
6450
|
external_transaction_reference?: string;
|
|
6426
6451
|
/**
|
|
6427
|
-
*
|
|
6428
|
-
* @type {
|
|
6429
|
-
* @memberof
|
|
6452
|
+
* The recurring payment mode
|
|
6453
|
+
* @type {string}
|
|
6454
|
+
* @memberof PaymentDetailsRequest
|
|
6430
6455
|
*/
|
|
6431
|
-
|
|
6456
|
+
recurring_payment_mode?: string;
|
|
6457
|
+
}
|
|
6458
|
+
/**
|
|
6459
|
+
*
|
|
6460
|
+
* @export
|
|
6461
|
+
* @interface PaymentDetailsResponse
|
|
6462
|
+
*/
|
|
6463
|
+
export interface PaymentDetailsResponse {
|
|
6432
6464
|
/**
|
|
6433
|
-
*
|
|
6465
|
+
* The transaction description provided to banks, which banks will show to their customers.
|
|
6434
6466
|
* @type {string}
|
|
6435
|
-
* @memberof
|
|
6467
|
+
* @memberof PaymentDetailsResponse
|
|
6436
6468
|
*/
|
|
6437
|
-
|
|
6469
|
+
description?: string;
|
|
6438
6470
|
/**
|
|
6439
|
-
*
|
|
6471
|
+
* ID of the mandate this payment is referring to.
|
|
6440
6472
|
* @type {string}
|
|
6441
|
-
* @memberof
|
|
6473
|
+
* @memberof PaymentDetailsResponse
|
|
6442
6474
|
*/
|
|
6443
|
-
|
|
6475
|
+
mandate_id?: string;
|
|
6444
6476
|
/**
|
|
6445
|
-
*
|
|
6446
|
-
* @type {
|
|
6447
|
-
* @memberof
|
|
6477
|
+
* Deprecated: Customer\'s ID for this transaction
|
|
6478
|
+
* @type {string}
|
|
6479
|
+
* @memberof PaymentDetailsResponse
|
|
6448
6480
|
*/
|
|
6449
|
-
|
|
6481
|
+
transaction_reference_id?: string;
|
|
6450
6482
|
/**
|
|
6451
|
-
*
|
|
6483
|
+
* Customer reference for this transaction
|
|
6452
6484
|
* @type {string}
|
|
6453
|
-
* @memberof
|
|
6485
|
+
* @memberof PaymentDetailsResponse
|
|
6454
6486
|
*/
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
export interface PaymentDetailsReferences {
|
|
6487
|
+
external_transaction_reference?: string;
|
|
6488
|
+
/**
|
|
6489
|
+
*
|
|
6490
|
+
* @type {PaymentDetailsReferences}
|
|
6491
|
+
* @memberof PaymentDetailsResponse
|
|
6492
|
+
*/
|
|
6493
|
+
references?: PaymentDetailsReferences;
|
|
6463
6494
|
/**
|
|
6464
6495
|
*
|
|
6465
6496
|
* @type {string}
|
|
6466
|
-
* @memberof
|
|
6497
|
+
* @memberof PaymentDetailsResponse
|
|
6467
6498
|
*/
|
|
6468
|
-
|
|
6499
|
+
processor_entity_name?: string;
|
|
6469
6500
|
/**
|
|
6470
6501
|
*
|
|
6471
6502
|
* @type {string}
|
|
6472
|
-
* @memberof
|
|
6503
|
+
* @memberof PaymentDetailsResponse
|
|
6473
6504
|
*/
|
|
6474
|
-
|
|
6505
|
+
collection_entity_name?: string;
|
|
6475
6506
|
/**
|
|
6476
6507
|
*
|
|
6508
|
+
* @type {PaymentProcessorDetails}
|
|
6509
|
+
* @memberof PaymentDetailsResponse
|
|
6510
|
+
*/
|
|
6511
|
+
processor_details?: PaymentProcessorDetails;
|
|
6512
|
+
/**
|
|
6513
|
+
* The recurring payment mode
|
|
6477
6514
|
* @type {string}
|
|
6478
|
-
* @memberof
|
|
6515
|
+
* @memberof PaymentDetailsResponse
|
|
6479
6516
|
*/
|
|
6480
|
-
|
|
6517
|
+
recurring_payment_mode?: string;
|
|
6481
6518
|
}
|
|
6482
6519
|
/**
|
|
6483
6520
|
*
|
|
@@ -7529,10 +7566,10 @@ export interface PaymentResponse {
|
|
|
7529
7566
|
payment_method_id?: string;
|
|
7530
7567
|
/**
|
|
7531
7568
|
*
|
|
7532
|
-
* @type {
|
|
7569
|
+
* @type {PaymentDetailsResponse}
|
|
7533
7570
|
* @memberof PaymentResponse
|
|
7534
7571
|
*/
|
|
7535
|
-
payment_details?:
|
|
7572
|
+
payment_details?: PaymentDetailsResponse;
|
|
7536
7573
|
/**
|
|
7537
7574
|
*
|
|
7538
7575
|
* @type {MandateRecipient}
|