@finverse/sdk-typescript 0.0.239 → 0.0.241
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 +31 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1450,6 +1450,18 @@ export interface CreatePaymentUserRequest {
|
|
|
1450
1450
|
metadata?: {
|
|
1451
1451
|
[key: string]: string;
|
|
1452
1452
|
};
|
|
1453
|
+
/**
|
|
1454
|
+
*
|
|
1455
|
+
* @type {boolean}
|
|
1456
|
+
* @memberof CreatePaymentUserRequest
|
|
1457
|
+
*/
|
|
1458
|
+
autopay_consent?: boolean;
|
|
1459
|
+
/**
|
|
1460
|
+
*
|
|
1461
|
+
* @type {IntegrationMetadataRequest}
|
|
1462
|
+
* @memberof CreatePaymentUserRequest
|
|
1463
|
+
*/
|
|
1464
|
+
integration_metadata?: IntegrationMetadataRequest;
|
|
1453
1465
|
}
|
|
1454
1466
|
export declare const CreatePaymentUserRequestUserTypeEnum: {
|
|
1455
1467
|
readonly Individual: "INDIVIDUAL";
|
|
@@ -4764,6 +4776,25 @@ export interface PaymentDetails2 {
|
|
|
4764
4776
|
* @memberof PaymentDetails2
|
|
4765
4777
|
*/
|
|
4766
4778
|
external_transaction_reference?: string;
|
|
4779
|
+
/**
|
|
4780
|
+
*
|
|
4781
|
+
* @type {PaymentDetailsReferences}
|
|
4782
|
+
* @memberof PaymentDetails2
|
|
4783
|
+
*/
|
|
4784
|
+
references?: PaymentDetailsReferences;
|
|
4785
|
+
}
|
|
4786
|
+
/**
|
|
4787
|
+
*
|
|
4788
|
+
* @export
|
|
4789
|
+
* @interface PaymentDetailsReferences
|
|
4790
|
+
*/
|
|
4791
|
+
export interface PaymentDetailsReferences {
|
|
4792
|
+
/**
|
|
4793
|
+
*
|
|
4794
|
+
* @type {string}
|
|
4795
|
+
* @memberof PaymentDetailsReferences
|
|
4796
|
+
*/
|
|
4797
|
+
finverse_transaction_reference?: string;
|
|
4767
4798
|
}
|
|
4768
4799
|
/**
|
|
4769
4800
|
*
|