@finverse/sdk-typescript 0.0.336 → 0.0.338
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 +13 -0
- package/dist/api.js +1 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -548,6 +548,12 @@ export interface AvailablePaymentMethod {
|
|
|
548
548
|
* @memberof AvailablePaymentMethod
|
|
549
549
|
*/
|
|
550
550
|
payment_method_type?: string;
|
|
551
|
+
/**
|
|
552
|
+
* The payment method subtype, e.g., EDDA_HK, CARD_GENERIC etc
|
|
553
|
+
* @type {string}
|
|
554
|
+
* @memberof AvailablePaymentMethod
|
|
555
|
+
*/
|
|
556
|
+
payment_method_subtype?: string;
|
|
551
557
|
/**
|
|
552
558
|
*
|
|
553
559
|
* @type {boolean}
|
|
@@ -6695,6 +6701,12 @@ export interface PaymentMethodOverview {
|
|
|
6695
6701
|
* @memberof PaymentMethodOverview
|
|
6696
6702
|
*/
|
|
6697
6703
|
payment_method_type?: string;
|
|
6704
|
+
/**
|
|
6705
|
+
* The payment method subtype, e.g., EDDA_HK, CARD_GENERIC etc
|
|
6706
|
+
* @type {string}
|
|
6707
|
+
* @memberof PaymentMethodOverview
|
|
6708
|
+
*/
|
|
6709
|
+
payment_method_subtype?: string;
|
|
6698
6710
|
/**
|
|
6699
6711
|
* Only shown if funds flow via Finverse, possible values FINVERSE
|
|
6700
6712
|
* @type {string}
|
|
@@ -9944,6 +9956,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
9944
9956
|
export declare const GetLineItemsForDisplayPaymentTypeEnum: {
|
|
9945
9957
|
readonly Mandate: "MANDATE";
|
|
9946
9958
|
readonly Manual: "MANUAL";
|
|
9959
|
+
readonly Card: "CARD";
|
|
9947
9960
|
};
|
|
9948
9961
|
export type GetLineItemsForDisplayPaymentTypeEnum = (typeof GetLineItemsForDisplayPaymentTypeEnum)[keyof typeof GetLineItemsForDisplayPaymentTypeEnum];
|
|
9949
9962
|
/**
|
package/dist/api.js
CHANGED