@finverse/sdk-typescript 0.0.13 → 0.0.14
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 +4 -4
- package/dist/api.js +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1949,17 +1949,17 @@ export interface PaymentDetails {
|
|
|
1949
1949
|
*/
|
|
1950
1950
|
export interface PaymentInstruction {
|
|
1951
1951
|
/**
|
|
1952
|
-
*
|
|
1952
|
+
* The user id to which the payment instruction will refer
|
|
1953
1953
|
* @type {string}
|
|
1954
1954
|
* @memberof PaymentInstruction
|
|
1955
1955
|
*/
|
|
1956
|
-
|
|
1956
|
+
user_id: string;
|
|
1957
1957
|
/**
|
|
1958
|
-
*
|
|
1958
|
+
* What type of payment is being created
|
|
1959
1959
|
* @type {string}
|
|
1960
1960
|
* @memberof PaymentInstruction
|
|
1961
1961
|
*/
|
|
1962
|
-
|
|
1962
|
+
payment_type: PaymentInstructionPaymentTypeEnum;
|
|
1963
1963
|
/**
|
|
1964
1964
|
* The recipient name
|
|
1965
1965
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -1308,7 +1308,7 @@ exports.LoginIdentityApiAxiosParamCreator = function (configuration) {
|
|
|
1308
1308
|
* @throws {RequiredError}
|
|
1309
1309
|
*/
|
|
1310
1310
|
listPaymentInstructions: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1311
|
-
const localVarPath = `/payments/instruction
|
|
1311
|
+
const localVarPath = `/payments/instruction`;
|
|
1312
1312
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1313
1313
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1314
1314
|
let baseOptions;
|