@finverse/sdk-typescript 0.0.114 → 0.0.116
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 +12 -0
- package/dist/api.js +2 -2
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1749,6 +1749,18 @@ export interface GetMandateAuthResponse {
|
|
|
1749
1749
|
* @memberof GetMandateAuthResponse
|
|
1750
1750
|
*/
|
|
1751
1751
|
error?: FvErrorModelV2;
|
|
1752
|
+
/**
|
|
1753
|
+
*
|
|
1754
|
+
* @type {MandateDetails}
|
|
1755
|
+
* @memberof GetMandateAuthResponse
|
|
1756
|
+
*/
|
|
1757
|
+
mandate_details?: MandateDetails;
|
|
1758
|
+
/**
|
|
1759
|
+
*
|
|
1760
|
+
* @type {MandateRecipient}
|
|
1761
|
+
* @memberof GetMandateAuthResponse
|
|
1762
|
+
*/
|
|
1763
|
+
recipient?: MandateRecipient;
|
|
1752
1764
|
}
|
|
1753
1765
|
export declare const GetMandateAuthResponseMandateStatusEnum: {
|
|
1754
1766
|
readonly Created: "CREATED";
|
package/dist/api.js
CHANGED
|
@@ -2098,7 +2098,7 @@ exports.DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2098
2098
|
* @throws {RequiredError}
|
|
2099
2099
|
*/
|
|
2100
2100
|
confirmPayment: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2101
|
-
const localVarPath = `/
|
|
2101
|
+
const localVarPath = `/payment_link/confirm`;
|
|
2102
2102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2103
2103
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2104
2104
|
let baseOptions;
|
|
@@ -2128,7 +2128,7 @@ exports.DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2128
2128
|
createPaymentLinkMandate: (createPaymentLinkMandateRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2129
2129
|
// verify required parameter 'createPaymentLinkMandateRequest' is not null or undefined
|
|
2130
2130
|
common_1.assertParamExists('createPaymentLinkMandate', 'createPaymentLinkMandateRequest', createPaymentLinkMandateRequest);
|
|
2131
|
-
const localVarPath = `/
|
|
2131
|
+
const localVarPath = `/payment_link/mandates`;
|
|
2132
2132
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2133
2133
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2134
2134
|
let baseOptions;
|