@finverse/sdk-typescript 0.0.128 → 0.0.129
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 +17 -4
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -3579,6 +3579,19 @@ export interface ManualPaymentConfirmationRequest {
|
|
|
3579
3579
|
*/
|
|
3580
3580
|
account_number_last4: string;
|
|
3581
3581
|
}
|
|
3582
|
+
/**
|
|
3583
|
+
*
|
|
3584
|
+
* @export
|
|
3585
|
+
* @interface ManualPaymentConfirmationResponse
|
|
3586
|
+
*/
|
|
3587
|
+
export interface ManualPaymentConfirmationResponse {
|
|
3588
|
+
/**
|
|
3589
|
+
*
|
|
3590
|
+
* @type {string}
|
|
3591
|
+
* @memberof ManualPaymentConfirmationResponse
|
|
3592
|
+
*/
|
|
3593
|
+
payment_id?: string;
|
|
3594
|
+
}
|
|
3582
3595
|
/**
|
|
3583
3596
|
*
|
|
3584
3597
|
* @export
|
|
@@ -5881,7 +5894,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
5881
5894
|
* @param {*} [options] Override http request option.
|
|
5882
5895
|
* @throws {RequiredError}
|
|
5883
5896
|
*/
|
|
5884
|
-
confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5897
|
+
confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManualPaymentConfirmationResponse>>;
|
|
5885
5898
|
/**
|
|
5886
5899
|
* Confirm a payment against a payment Link
|
|
5887
5900
|
* @param {*} [options] Override http request option.
|
|
@@ -5951,7 +5964,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
5951
5964
|
* @param {*} [options] Override http request option.
|
|
5952
5965
|
* @throws {RequiredError}
|
|
5953
5966
|
*/
|
|
5954
|
-
confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: any): AxiosPromise<
|
|
5967
|
+
confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: any): AxiosPromise<ManualPaymentConfirmationResponse>;
|
|
5955
5968
|
/**
|
|
5956
5969
|
* Confirm a payment against a payment Link
|
|
5957
5970
|
* @param {*} [options] Override http request option.
|
|
@@ -6023,7 +6036,7 @@ export interface DefaultApiInterface {
|
|
|
6023
6036
|
* @throws {RequiredError}
|
|
6024
6037
|
* @memberof DefaultApiInterface
|
|
6025
6038
|
*/
|
|
6026
|
-
confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
6039
|
+
confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: AxiosRequestConfig): AxiosPromise<ManualPaymentConfirmationResponse>;
|
|
6027
6040
|
/**
|
|
6028
6041
|
* Confirm a payment against a payment Link
|
|
6029
6042
|
* @param {*} [options] Override http request option.
|
|
@@ -6102,7 +6115,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
6102
6115
|
* @throws {RequiredError}
|
|
6103
6116
|
* @memberof DefaultApi
|
|
6104
6117
|
*/
|
|
6105
|
-
confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6118
|
+
confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManualPaymentConfirmationResponse>>;
|
|
6106
6119
|
/**
|
|
6107
6120
|
* Confirm a payment against a payment Link
|
|
6108
6121
|
* @param {*} [options] Override http request option.
|