@finverse/sdk-typescript 0.0.393 → 0.0.395
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 +84 -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; }}
|
|
@@ -5261,6 +5261,12 @@ export interface LoginIdentity {
|
|
|
5261
5261
|
* @memberof LoginIdentity
|
|
5262
5262
|
*/
|
|
5263
5263
|
last_session_id?: string;
|
|
5264
|
+
/**
|
|
5265
|
+
* stable id for the hashed bank username, used to track unique end-user online-banking accounts
|
|
5266
|
+
* @type {string}
|
|
5267
|
+
* @memberof LoginIdentity
|
|
5268
|
+
*/
|
|
5269
|
+
username_hash_id?: string;
|
|
5264
5270
|
/**
|
|
5265
5271
|
*
|
|
5266
5272
|
* @type {RefreshData}
|
|
@@ -6396,88 +6402,125 @@ export interface PaymentDetails {
|
|
|
6396
6402
|
/**
|
|
6397
6403
|
*
|
|
6398
6404
|
* @export
|
|
6399
|
-
* @interface
|
|
6405
|
+
* @interface PaymentDetailsReferences
|
|
6406
|
+
*/
|
|
6407
|
+
export interface PaymentDetailsReferences {
|
|
6408
|
+
/**
|
|
6409
|
+
*
|
|
6410
|
+
* @type {string}
|
|
6411
|
+
* @memberof PaymentDetailsReferences
|
|
6412
|
+
*/
|
|
6413
|
+
finverse_transaction_reference?: string;
|
|
6414
|
+
/**
|
|
6415
|
+
*
|
|
6416
|
+
* @type {string}
|
|
6417
|
+
* @memberof PaymentDetailsReferences
|
|
6418
|
+
*/
|
|
6419
|
+
dda_reference?: string;
|
|
6420
|
+
/**
|
|
6421
|
+
*
|
|
6422
|
+
* @type {string}
|
|
6423
|
+
* @memberof PaymentDetailsReferences
|
|
6424
|
+
*/
|
|
6425
|
+
bank_transaction_reference?: string;
|
|
6426
|
+
}
|
|
6427
|
+
/**
|
|
6428
|
+
*
|
|
6429
|
+
* @export
|
|
6430
|
+
* @interface PaymentDetailsRequest
|
|
6400
6431
|
*/
|
|
6401
|
-
export interface
|
|
6432
|
+
export interface PaymentDetailsRequest {
|
|
6402
6433
|
/**
|
|
6403
6434
|
* The transaction description provided to banks, which banks will show to their customers.
|
|
6404
6435
|
* @type {string}
|
|
6405
|
-
* @memberof
|
|
6436
|
+
* @memberof PaymentDetailsRequest
|
|
6406
6437
|
*/
|
|
6407
6438
|
description?: string;
|
|
6408
6439
|
/**
|
|
6409
|
-
* ID of the mandate this
|
|
6440
|
+
* ID of the mandate this payment is referring to.
|
|
6410
6441
|
* @type {string}
|
|
6411
|
-
* @memberof
|
|
6442
|
+
* @memberof PaymentDetailsRequest
|
|
6412
6443
|
*/
|
|
6413
6444
|
mandate_id?: string;
|
|
6414
6445
|
/**
|
|
6415
6446
|
* Deprecated: Customer\'s ID for this transaction
|
|
6416
6447
|
* @type {string}
|
|
6417
|
-
* @memberof
|
|
6448
|
+
* @memberof PaymentDetailsRequest
|
|
6418
6449
|
*/
|
|
6419
6450
|
transaction_reference_id?: string;
|
|
6420
6451
|
/**
|
|
6421
6452
|
* Customer reference for this transaction
|
|
6422
6453
|
* @type {string}
|
|
6423
|
-
* @memberof
|
|
6454
|
+
* @memberof PaymentDetailsRequest
|
|
6424
6455
|
*/
|
|
6425
6456
|
external_transaction_reference?: string;
|
|
6426
6457
|
/**
|
|
6427
|
-
*
|
|
6428
|
-
* @type {
|
|
6429
|
-
* @memberof
|
|
6458
|
+
* The recurring payment mode
|
|
6459
|
+
* @type {string}
|
|
6460
|
+
* @memberof PaymentDetailsRequest
|
|
6430
6461
|
*/
|
|
6431
|
-
|
|
6462
|
+
recurring_payment_mode?: string;
|
|
6463
|
+
}
|
|
6464
|
+
/**
|
|
6465
|
+
*
|
|
6466
|
+
* @export
|
|
6467
|
+
* @interface PaymentDetailsResponse
|
|
6468
|
+
*/
|
|
6469
|
+
export interface PaymentDetailsResponse {
|
|
6432
6470
|
/**
|
|
6433
|
-
*
|
|
6471
|
+
* The transaction description provided to banks, which banks will show to their customers.
|
|
6434
6472
|
* @type {string}
|
|
6435
|
-
* @memberof
|
|
6473
|
+
* @memberof PaymentDetailsResponse
|
|
6436
6474
|
*/
|
|
6437
|
-
|
|
6475
|
+
description?: string;
|
|
6438
6476
|
/**
|
|
6439
|
-
*
|
|
6477
|
+
* ID of the mandate this payment is referring to.
|
|
6440
6478
|
* @type {string}
|
|
6441
|
-
* @memberof
|
|
6479
|
+
* @memberof PaymentDetailsResponse
|
|
6442
6480
|
*/
|
|
6443
|
-
|
|
6481
|
+
mandate_id?: string;
|
|
6444
6482
|
/**
|
|
6445
|
-
*
|
|
6446
|
-
* @type {
|
|
6447
|
-
* @memberof
|
|
6483
|
+
* Deprecated: Customer\'s ID for this transaction
|
|
6484
|
+
* @type {string}
|
|
6485
|
+
* @memberof PaymentDetailsResponse
|
|
6448
6486
|
*/
|
|
6449
|
-
|
|
6487
|
+
transaction_reference_id?: string;
|
|
6450
6488
|
/**
|
|
6451
|
-
*
|
|
6489
|
+
* Customer reference for this transaction
|
|
6452
6490
|
* @type {string}
|
|
6453
|
-
* @memberof
|
|
6491
|
+
* @memberof PaymentDetailsResponse
|
|
6454
6492
|
*/
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
export interface PaymentDetailsReferences {
|
|
6493
|
+
external_transaction_reference?: string;
|
|
6494
|
+
/**
|
|
6495
|
+
*
|
|
6496
|
+
* @type {PaymentDetailsReferences}
|
|
6497
|
+
* @memberof PaymentDetailsResponse
|
|
6498
|
+
*/
|
|
6499
|
+
references?: PaymentDetailsReferences;
|
|
6463
6500
|
/**
|
|
6464
6501
|
*
|
|
6465
6502
|
* @type {string}
|
|
6466
|
-
* @memberof
|
|
6503
|
+
* @memberof PaymentDetailsResponse
|
|
6467
6504
|
*/
|
|
6468
|
-
|
|
6505
|
+
processor_entity_name?: string;
|
|
6469
6506
|
/**
|
|
6470
6507
|
*
|
|
6471
6508
|
* @type {string}
|
|
6472
|
-
* @memberof
|
|
6509
|
+
* @memberof PaymentDetailsResponse
|
|
6473
6510
|
*/
|
|
6474
|
-
|
|
6511
|
+
collection_entity_name?: string;
|
|
6475
6512
|
/**
|
|
6476
6513
|
*
|
|
6514
|
+
* @type {PaymentProcessorDetails}
|
|
6515
|
+
* @memberof PaymentDetailsResponse
|
|
6516
|
+
*/
|
|
6517
|
+
processor_details?: PaymentProcessorDetails;
|
|
6518
|
+
/**
|
|
6519
|
+
* The recurring payment mode
|
|
6477
6520
|
* @type {string}
|
|
6478
|
-
* @memberof
|
|
6521
|
+
* @memberof PaymentDetailsResponse
|
|
6479
6522
|
*/
|
|
6480
|
-
|
|
6523
|
+
recurring_payment_mode?: string;
|
|
6481
6524
|
}
|
|
6482
6525
|
/**
|
|
6483
6526
|
*
|
|
@@ -7529,10 +7572,10 @@ export interface PaymentResponse {
|
|
|
7529
7572
|
payment_method_id?: string;
|
|
7530
7573
|
/**
|
|
7531
7574
|
*
|
|
7532
|
-
* @type {
|
|
7575
|
+
* @type {PaymentDetailsResponse}
|
|
7533
7576
|
* @memberof PaymentResponse
|
|
7534
7577
|
*/
|
|
7535
|
-
payment_details?:
|
|
7578
|
+
payment_details?: PaymentDetailsResponse;
|
|
7536
7579
|
/**
|
|
7537
7580
|
*
|
|
7538
7581
|
* @type {MandateRecipient}
|