@finverse/sdk-typescript 0.0.388 → 0.0.389
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 +47 -24
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -267,6 +267,20 @@ export interface ActionRequest {
|
|
|
267
267
|
*/
|
|
268
268
|
action_id: string;
|
|
269
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* Raw Adyen /payments or /payments/details JSON response; passed directly to Drop-in actions.resolve()
|
|
272
|
+
* @export
|
|
273
|
+
* @interface AdyenCardSetupPaymentResponse
|
|
274
|
+
*/
|
|
275
|
+
export interface AdyenCardSetupPaymentResponse {
|
|
276
|
+
[key: string]: any;
|
|
277
|
+
/**
|
|
278
|
+
*
|
|
279
|
+
* @type {FrontendFvErrorModel}
|
|
280
|
+
* @memberof AdyenCardSetupPaymentResponse
|
|
281
|
+
*/
|
|
282
|
+
error?: FrontendFvErrorModel;
|
|
283
|
+
}
|
|
270
284
|
/**
|
|
271
285
|
*
|
|
272
286
|
* @export
|
|
@@ -2797,6 +2811,31 @@ export interface FpsQrCodeResponse {
|
|
|
2797
2811
|
*/
|
|
2798
2812
|
qr_code: string;
|
|
2799
2813
|
}
|
|
2814
|
+
/**
|
|
2815
|
+
* Finverse error details surfaced to the frontend; absent on success and action-required outcomes
|
|
2816
|
+
* @export
|
|
2817
|
+
* @interface FrontendFvErrorModel
|
|
2818
|
+
*/
|
|
2819
|
+
export interface FrontendFvErrorModel {
|
|
2820
|
+
/**
|
|
2821
|
+
* Finverse error code
|
|
2822
|
+
* @type {string}
|
|
2823
|
+
* @memberof FrontendFvErrorModel
|
|
2824
|
+
*/
|
|
2825
|
+
error_code: string;
|
|
2826
|
+
/**
|
|
2827
|
+
* Short human-readable error message
|
|
2828
|
+
* @type {string}
|
|
2829
|
+
* @memberof FrontendFvErrorModel
|
|
2830
|
+
*/
|
|
2831
|
+
message: string;
|
|
2832
|
+
/**
|
|
2833
|
+
* Human-readable error detail safe for display to the end user
|
|
2834
|
+
* @type {string}
|
|
2835
|
+
* @memberof FrontendFvErrorModel
|
|
2836
|
+
*/
|
|
2837
|
+
display_details: string;
|
|
2838
|
+
}
|
|
2800
2839
|
/**
|
|
2801
2840
|
*
|
|
2802
2841
|
* @export
|
|
@@ -11569,9 +11608,7 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
|
11569
11608
|
*/
|
|
11570
11609
|
submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
|
|
11571
11610
|
[key: string]: any;
|
|
11572
|
-
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11573
|
-
[key: string]: any;
|
|
11574
|
-
}>>;
|
|
11611
|
+
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdyenCardSetupPaymentResponse>>;
|
|
11575
11612
|
/**
|
|
11576
11613
|
* Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
|
|
11577
11614
|
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
|
|
@@ -11580,9 +11617,7 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
|
11580
11617
|
*/
|
|
11581
11618
|
submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
|
|
11582
11619
|
[key: string]: any;
|
|
11583
|
-
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11584
|
-
[key: string]: any;
|
|
11585
|
-
}>>;
|
|
11620
|
+
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdyenCardSetupPaymentResponse>>;
|
|
11586
11621
|
/**
|
|
11587
11622
|
* Submit authorization checklist items
|
|
11588
11623
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
@@ -11940,9 +11975,7 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
|
|
|
11940
11975
|
*/
|
|
11941
11976
|
submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
|
|
11942
11977
|
[key: string]: any;
|
|
11943
|
-
}, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11944
|
-
[key: string]: any;
|
|
11945
|
-
}>;
|
|
11978
|
+
}, options?: RawAxiosRequestConfig): AxiosPromise<AdyenCardSetupPaymentResponse>;
|
|
11946
11979
|
/**
|
|
11947
11980
|
* Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
|
|
11948
11981
|
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
|
|
@@ -11951,9 +11984,7 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
|
|
|
11951
11984
|
*/
|
|
11952
11985
|
submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
|
|
11953
11986
|
[key: string]: any;
|
|
11954
|
-
}, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11955
|
-
[key: string]: any;
|
|
11956
|
-
}>;
|
|
11987
|
+
}, options?: RawAxiosRequestConfig): AxiosPromise<AdyenCardSetupPaymentResponse>;
|
|
11957
11988
|
/**
|
|
11958
11989
|
* Submit authorization checklist items
|
|
11959
11990
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
@@ -12349,9 +12380,7 @@ export interface PaymentApiInterface {
|
|
|
12349
12380
|
*/
|
|
12350
12381
|
submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
|
|
12351
12382
|
[key: string]: any;
|
|
12352
|
-
}, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12353
|
-
[key: string]: any;
|
|
12354
|
-
}>;
|
|
12383
|
+
}, options?: RawAxiosRequestConfig): AxiosPromise<AdyenCardSetupPaymentResponse>;
|
|
12355
12384
|
/**
|
|
12356
12385
|
* Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
|
|
12357
12386
|
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
|
|
@@ -12361,9 +12390,7 @@ export interface PaymentApiInterface {
|
|
|
12361
12390
|
*/
|
|
12362
12391
|
submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
|
|
12363
12392
|
[key: string]: any;
|
|
12364
|
-
}, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12365
|
-
[key: string]: any;
|
|
12366
|
-
}>;
|
|
12393
|
+
}, options?: RawAxiosRequestConfig): AxiosPromise<AdyenCardSetupPaymentResponse>;
|
|
12367
12394
|
/**
|
|
12368
12395
|
* Submit authorization checklist items
|
|
12369
12396
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
@@ -12764,9 +12791,7 @@ export declare class PaymentApi extends BaseAPI implements PaymentApiInterface {
|
|
|
12764
12791
|
*/
|
|
12765
12792
|
submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
|
|
12766
12793
|
[key: string]: any;
|
|
12767
|
-
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
12768
|
-
[key: string]: any;
|
|
12769
|
-
}, any, {}>>;
|
|
12794
|
+
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdyenCardSetupPaymentResponse, any, {}>>;
|
|
12770
12795
|
/**
|
|
12771
12796
|
* Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
|
|
12772
12797
|
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
|
|
@@ -12776,9 +12801,7 @@ export declare class PaymentApi extends BaseAPI implements PaymentApiInterface {
|
|
|
12776
12801
|
*/
|
|
12777
12802
|
submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
|
|
12778
12803
|
[key: string]: any;
|
|
12779
|
-
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
12780
|
-
[key: string]: any;
|
|
12781
|
-
}, any, {}>>;
|
|
12804
|
+
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdyenCardSetupPaymentResponse, any, {}>>;
|
|
12782
12805
|
/**
|
|
12783
12806
|
* Submit authorization checklist items
|
|
12784
12807
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|