@finverse/sdk-typescript 0.0.193 → 0.0.195
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 +3 -3
package/dist/api.d.ts
CHANGED
|
@@ -4758,6 +4758,12 @@ export interface PaymentLinkResponse {
|
|
|
4758
4758
|
* @memberof PaymentLinkResponse
|
|
4759
4759
|
*/
|
|
4760
4760
|
sender?: PaymentLinkSenderResponse;
|
|
4761
|
+
/**
|
|
4762
|
+
*
|
|
4763
|
+
* @type {PaymentMethodResponse}
|
|
4764
|
+
* @memberof PaymentLinkResponse
|
|
4765
|
+
*/
|
|
4766
|
+
payment_method?: PaymentMethodResponse;
|
|
4761
4767
|
}
|
|
4762
4768
|
export declare const PaymentLinkResponseModeEnum: {
|
|
4763
4769
|
readonly Payment: "PAYMENT";
|
|
@@ -4866,6 +4872,31 @@ export declare const PaymentLinkTokenResponseTokenTypeEnum: {
|
|
|
4866
4872
|
readonly Bearer: "Bearer";
|
|
4867
4873
|
};
|
|
4868
4874
|
export declare type PaymentLinkTokenResponseTokenTypeEnum = (typeof PaymentLinkTokenResponseTokenTypeEnum)[keyof typeof PaymentLinkTokenResponseTokenTypeEnum];
|
|
4875
|
+
/**
|
|
4876
|
+
*
|
|
4877
|
+
* @export
|
|
4878
|
+
* @interface PaymentMethodResponse
|
|
4879
|
+
*/
|
|
4880
|
+
export interface PaymentMethodResponse {
|
|
4881
|
+
/**
|
|
4882
|
+
*
|
|
4883
|
+
* @type {string}
|
|
4884
|
+
* @memberof PaymentMethodResponse
|
|
4885
|
+
*/
|
|
4886
|
+
payment_method_id?: string;
|
|
4887
|
+
/**
|
|
4888
|
+
*
|
|
4889
|
+
* @type {string}
|
|
4890
|
+
* @memberof PaymentMethodResponse
|
|
4891
|
+
*/
|
|
4892
|
+
payment_method_type?: string;
|
|
4893
|
+
/**
|
|
4894
|
+
*
|
|
4895
|
+
* @type {GetMandateResponse}
|
|
4896
|
+
* @memberof PaymentMethodResponse
|
|
4897
|
+
*/
|
|
4898
|
+
mandate?: GetMandateResponse;
|
|
4899
|
+
}
|
|
4869
4900
|
/**
|
|
4870
4901
|
*
|
|
4871
4902
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.195",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"axios": "^0.21.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@types/chai": "^4.3.
|
|
25
|
-
"@types/mocha": "^10.0.
|
|
24
|
+
"@types/chai": "^4.3.11",
|
|
25
|
+
"@types/mocha": "^10.0.6",
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.21.2",
|
|
28
28
|
"chai": "^4.3.10",
|