@finverse/sdk-typescript 0.0.93 → 0.0.94
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.js +3 -3
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -252,7 +252,7 @@ exports.CustomerApiAxiosParamCreator = function (configuration) {
|
|
|
252
252
|
cancelPayoutInstruction: (payoutInstructionId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
253
253
|
// verify required parameter 'payoutInstructionId' is not null or undefined
|
|
254
254
|
common_1.assertParamExists('cancelPayoutInstruction', 'payoutInstructionId', payoutInstructionId);
|
|
255
|
-
const localVarPath = `/
|
|
255
|
+
const localVarPath = `/payout_instructions/{payoutInstructionId}/cancel`.replace(`{${'payoutInstructionId'}}`, encodeURIComponent(String(payoutInstructionId)));
|
|
256
256
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
257
257
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
258
258
|
let baseOptions;
|
|
@@ -387,7 +387,7 @@ exports.CustomerApiAxiosParamCreator = function (configuration) {
|
|
|
387
387
|
createPayoutInstruction: (createPayoutInstructionRequest, idempotencyKey, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
388
388
|
// verify required parameter 'createPayoutInstructionRequest' is not null or undefined
|
|
389
389
|
common_1.assertParamExists('createPayoutInstruction', 'createPayoutInstructionRequest', createPayoutInstructionRequest);
|
|
390
|
-
const localVarPath = `/
|
|
390
|
+
const localVarPath = `/payout_instructions`;
|
|
391
391
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
392
392
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
393
393
|
let baseOptions;
|
|
@@ -755,7 +755,7 @@ exports.CustomerApiAxiosParamCreator = function (configuration) {
|
|
|
755
755
|
getPayoutInstruction: (payoutInstructionId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
756
756
|
// verify required parameter 'payoutInstructionId' is not null or undefined
|
|
757
757
|
common_1.assertParamExists('getPayoutInstruction', 'payoutInstructionId', payoutInstructionId);
|
|
758
|
-
const localVarPath = `/
|
|
758
|
+
const localVarPath = `/payout_instructions/{payoutInstructionId}`.replace(`{${'payoutInstructionId'}}`, encodeURIComponent(String(payoutInstructionId)));
|
|
759
759
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
760
760
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
761
761
|
let baseOptions;
|