@finverse/sdk-typescript 0.0.392 → 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 -47
- 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; }}
|
|
@@ -5616,12 +5616,6 @@ export interface MandateDetailsRequest {
|
|
|
5616
5616
|
* @memberof MandateDetailsRequest
|
|
5617
5617
|
*/
|
|
5618
5618
|
description?: string;
|
|
5619
|
-
/**
|
|
5620
|
-
* A bank specific reference, what the end user may see
|
|
5621
|
-
* @type {string}
|
|
5622
|
-
* @memberof MandateDetailsRequest
|
|
5623
|
-
*/
|
|
5624
|
-
mandate_bank_reference?: string;
|
|
5625
5619
|
}
|
|
5626
5620
|
/**
|
|
5627
5621
|
*
|
|
@@ -6402,88 +6396,125 @@ export interface PaymentDetails {
|
|
|
6402
6396
|
/**
|
|
6403
6397
|
*
|
|
6404
6398
|
* @export
|
|
6405
|
-
* @interface
|
|
6399
|
+
* @interface PaymentDetailsReferences
|
|
6406
6400
|
*/
|
|
6407
|
-
export interface
|
|
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
|
|
6425
|
+
*/
|
|
6426
|
+
export interface PaymentDetailsRequest {
|
|
6408
6427
|
/**
|
|
6409
6428
|
* The transaction description provided to banks, which banks will show to their customers.
|
|
6410
6429
|
* @type {string}
|
|
6411
|
-
* @memberof
|
|
6430
|
+
* @memberof PaymentDetailsRequest
|
|
6412
6431
|
*/
|
|
6413
6432
|
description?: string;
|
|
6414
6433
|
/**
|
|
6415
|
-
* ID of the mandate this
|
|
6434
|
+
* ID of the mandate this payment is referring to.
|
|
6416
6435
|
* @type {string}
|
|
6417
|
-
* @memberof
|
|
6436
|
+
* @memberof PaymentDetailsRequest
|
|
6418
6437
|
*/
|
|
6419
6438
|
mandate_id?: string;
|
|
6420
6439
|
/**
|
|
6421
6440
|
* Deprecated: Customer\'s ID for this transaction
|
|
6422
6441
|
* @type {string}
|
|
6423
|
-
* @memberof
|
|
6442
|
+
* @memberof PaymentDetailsRequest
|
|
6424
6443
|
*/
|
|
6425
6444
|
transaction_reference_id?: string;
|
|
6426
6445
|
/**
|
|
6427
6446
|
* Customer reference for this transaction
|
|
6428
6447
|
* @type {string}
|
|
6429
|
-
* @memberof
|
|
6448
|
+
* @memberof PaymentDetailsRequest
|
|
6430
6449
|
*/
|
|
6431
6450
|
external_transaction_reference?: string;
|
|
6432
6451
|
/**
|
|
6433
|
-
*
|
|
6434
|
-
* @type {
|
|
6435
|
-
* @memberof
|
|
6452
|
+
* The recurring payment mode
|
|
6453
|
+
* @type {string}
|
|
6454
|
+
* @memberof PaymentDetailsRequest
|
|
6436
6455
|
*/
|
|
6437
|
-
|
|
6456
|
+
recurring_payment_mode?: string;
|
|
6457
|
+
}
|
|
6458
|
+
/**
|
|
6459
|
+
*
|
|
6460
|
+
* @export
|
|
6461
|
+
* @interface PaymentDetailsResponse
|
|
6462
|
+
*/
|
|
6463
|
+
export interface PaymentDetailsResponse {
|
|
6438
6464
|
/**
|
|
6439
|
-
*
|
|
6465
|
+
* The transaction description provided to banks, which banks will show to their customers.
|
|
6440
6466
|
* @type {string}
|
|
6441
|
-
* @memberof
|
|
6467
|
+
* @memberof PaymentDetailsResponse
|
|
6442
6468
|
*/
|
|
6443
|
-
|
|
6469
|
+
description?: string;
|
|
6444
6470
|
/**
|
|
6445
|
-
*
|
|
6471
|
+
* ID of the mandate this payment is referring to.
|
|
6446
6472
|
* @type {string}
|
|
6447
|
-
* @memberof
|
|
6473
|
+
* @memberof PaymentDetailsResponse
|
|
6448
6474
|
*/
|
|
6449
|
-
|
|
6475
|
+
mandate_id?: string;
|
|
6450
6476
|
/**
|
|
6451
|
-
*
|
|
6452
|
-
* @type {
|
|
6453
|
-
* @memberof
|
|
6477
|
+
* Deprecated: Customer\'s ID for this transaction
|
|
6478
|
+
* @type {string}
|
|
6479
|
+
* @memberof PaymentDetailsResponse
|
|
6454
6480
|
*/
|
|
6455
|
-
|
|
6481
|
+
transaction_reference_id?: string;
|
|
6456
6482
|
/**
|
|
6457
|
-
*
|
|
6483
|
+
* Customer reference for this transaction
|
|
6458
6484
|
* @type {string}
|
|
6459
|
-
* @memberof
|
|
6485
|
+
* @memberof PaymentDetailsResponse
|
|
6460
6486
|
*/
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6467
|
-
|
|
6468
|
-
export interface PaymentDetailsReferences {
|
|
6487
|
+
external_transaction_reference?: string;
|
|
6488
|
+
/**
|
|
6489
|
+
*
|
|
6490
|
+
* @type {PaymentDetailsReferences}
|
|
6491
|
+
* @memberof PaymentDetailsResponse
|
|
6492
|
+
*/
|
|
6493
|
+
references?: PaymentDetailsReferences;
|
|
6469
6494
|
/**
|
|
6470
6495
|
*
|
|
6471
6496
|
* @type {string}
|
|
6472
|
-
* @memberof
|
|
6497
|
+
* @memberof PaymentDetailsResponse
|
|
6473
6498
|
*/
|
|
6474
|
-
|
|
6499
|
+
processor_entity_name?: string;
|
|
6475
6500
|
/**
|
|
6476
6501
|
*
|
|
6477
6502
|
* @type {string}
|
|
6478
|
-
* @memberof
|
|
6503
|
+
* @memberof PaymentDetailsResponse
|
|
6479
6504
|
*/
|
|
6480
|
-
|
|
6505
|
+
collection_entity_name?: string;
|
|
6481
6506
|
/**
|
|
6482
6507
|
*
|
|
6508
|
+
* @type {PaymentProcessorDetails}
|
|
6509
|
+
* @memberof PaymentDetailsResponse
|
|
6510
|
+
*/
|
|
6511
|
+
processor_details?: PaymentProcessorDetails;
|
|
6512
|
+
/**
|
|
6513
|
+
* The recurring payment mode
|
|
6483
6514
|
* @type {string}
|
|
6484
|
-
* @memberof
|
|
6515
|
+
* @memberof PaymentDetailsResponse
|
|
6485
6516
|
*/
|
|
6486
|
-
|
|
6517
|
+
recurring_payment_mode?: string;
|
|
6487
6518
|
}
|
|
6488
6519
|
/**
|
|
6489
6520
|
*
|
|
@@ -7535,10 +7566,10 @@ export interface PaymentResponse {
|
|
|
7535
7566
|
payment_method_id?: string;
|
|
7536
7567
|
/**
|
|
7537
7568
|
*
|
|
7538
|
-
* @type {
|
|
7569
|
+
* @type {PaymentDetailsResponse}
|
|
7539
7570
|
* @memberof PaymentResponse
|
|
7540
7571
|
*/
|
|
7541
|
-
payment_details?:
|
|
7572
|
+
payment_details?: PaymentDetailsResponse;
|
|
7542
7573
|
/**
|
|
7543
7574
|
*
|
|
7544
7575
|
* @type {MandateRecipient}
|