@finverse/sdk-typescript 0.0.304 → 0.0.305
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 +68 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -5550,6 +5550,18 @@ export interface PaymentDetails2 {
|
|
|
5550
5550
|
* @memberof PaymentDetails2
|
|
5551
5551
|
*/
|
|
5552
5552
|
collection_entity_name?: string;
|
|
5553
|
+
/**
|
|
5554
|
+
*
|
|
5555
|
+
* @type {PaymentProcessorDetails}
|
|
5556
|
+
* @memberof PaymentDetails2
|
|
5557
|
+
*/
|
|
5558
|
+
processor_details?: PaymentProcessorDetails;
|
|
5559
|
+
/**
|
|
5560
|
+
* The recurring payment mode
|
|
5561
|
+
* @type {string}
|
|
5562
|
+
* @memberof PaymentDetails2
|
|
5563
|
+
*/
|
|
5564
|
+
recurring_payment_mode?: string;
|
|
5553
5565
|
}
|
|
5554
5566
|
/**
|
|
5555
5567
|
*
|
|
@@ -6281,6 +6293,62 @@ export interface PaymentMethodResponse {
|
|
|
6281
6293
|
*/
|
|
6282
6294
|
integration_metadata?: PaymentMethodIntegrationMetadata;
|
|
6283
6295
|
}
|
|
6296
|
+
/**
|
|
6297
|
+
*
|
|
6298
|
+
* @export
|
|
6299
|
+
* @interface PaymentProcessorDetails
|
|
6300
|
+
*/
|
|
6301
|
+
export interface PaymentProcessorDetails {
|
|
6302
|
+
/**
|
|
6303
|
+
*
|
|
6304
|
+
* @type {string}
|
|
6305
|
+
* @memberof PaymentProcessorDetails
|
|
6306
|
+
*/
|
|
6307
|
+
auth_code?: string;
|
|
6308
|
+
/**
|
|
6309
|
+
*
|
|
6310
|
+
* @type {string}
|
|
6311
|
+
* @memberof PaymentProcessorDetails
|
|
6312
|
+
*/
|
|
6313
|
+
processor_id?: string;
|
|
6314
|
+
/**
|
|
6315
|
+
*
|
|
6316
|
+
* @type {string}
|
|
6317
|
+
* @memberof PaymentProcessorDetails
|
|
6318
|
+
*/
|
|
6319
|
+
processor_reference?: string;
|
|
6320
|
+
/**
|
|
6321
|
+
*
|
|
6322
|
+
* @type {PaymentProcessorResult}
|
|
6323
|
+
* @memberof PaymentProcessorDetails
|
|
6324
|
+
*/
|
|
6325
|
+
result?: PaymentProcessorResult;
|
|
6326
|
+
}
|
|
6327
|
+
/**
|
|
6328
|
+
*
|
|
6329
|
+
* @export
|
|
6330
|
+
* @interface PaymentProcessorResult
|
|
6331
|
+
*/
|
|
6332
|
+
export interface PaymentProcessorResult {
|
|
6333
|
+
/**
|
|
6334
|
+
* Payment processor\'s decline code (e.g. \"2\")
|
|
6335
|
+
* @type {string}
|
|
6336
|
+
* @memberof PaymentProcessorResult
|
|
6337
|
+
*/
|
|
6338
|
+
decline_code?: string;
|
|
6339
|
+
/**
|
|
6340
|
+
* Payment processor\'s decline explanation (e.g. \"Blocked card\")
|
|
6341
|
+
* @type {string}
|
|
6342
|
+
* @memberof PaymentProcessorResult
|
|
6343
|
+
*/
|
|
6344
|
+
decline_reason?: string;
|
|
6345
|
+
/**
|
|
6346
|
+
* Payment processor\'s result code (e.g. \"Authorized\", \"Refused\").
|
|
6347
|
+
* @type {string}
|
|
6348
|
+
* @memberof PaymentProcessorResult
|
|
6349
|
+
*/
|
|
6350
|
+
result_code?: string;
|
|
6351
|
+
}
|
|
6284
6352
|
/**
|
|
6285
6353
|
*
|
|
6286
6354
|
* @export
|