@finverse/sdk-typescript 0.0.11 → 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 +16 -4
- package/dist/api.js +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -225,6 +225,12 @@ export interface AllProductStatus {
|
|
|
225
225
|
* @memberof AllProductStatus
|
|
226
226
|
*/
|
|
227
227
|
balance_history?: ProductStatus;
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @type {ProductStatus}
|
|
231
|
+
* @memberof AllProductStatus
|
|
232
|
+
*/
|
|
233
|
+
payments?: ProductStatus;
|
|
228
234
|
}
|
|
229
235
|
/**
|
|
230
236
|
*
|
|
@@ -1943,17 +1949,17 @@ export interface PaymentDetails {
|
|
|
1943
1949
|
*/
|
|
1944
1950
|
export interface PaymentInstruction {
|
|
1945
1951
|
/**
|
|
1946
|
-
*
|
|
1952
|
+
* The user id to which the payment instruction will refer
|
|
1947
1953
|
* @type {string}
|
|
1948
1954
|
* @memberof PaymentInstruction
|
|
1949
1955
|
*/
|
|
1950
|
-
|
|
1956
|
+
user_id: string;
|
|
1951
1957
|
/**
|
|
1952
|
-
*
|
|
1958
|
+
* What type of payment is being created
|
|
1953
1959
|
* @type {string}
|
|
1954
1960
|
* @memberof PaymentInstruction
|
|
1955
1961
|
*/
|
|
1956
|
-
|
|
1962
|
+
payment_type: PaymentInstructionPaymentTypeEnum;
|
|
1957
1963
|
/**
|
|
1958
1964
|
* The recipient name
|
|
1959
1965
|
* @type {string}
|
|
@@ -2026,6 +2032,12 @@ export interface PaymentInstruction {
|
|
|
2026
2032
|
* @memberof PaymentInstruction
|
|
2027
2033
|
*/
|
|
2028
2034
|
payment_status?: string;
|
|
2035
|
+
/**
|
|
2036
|
+
* Reference identification returned by institution
|
|
2037
|
+
* @type {string}
|
|
2038
|
+
* @memberof PaymentInstruction
|
|
2039
|
+
*/
|
|
2040
|
+
reference_id?: string;
|
|
2029
2041
|
}
|
|
2030
2042
|
export declare const PaymentInstructionPaymentTypeEnum: {
|
|
2031
2043
|
readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
|
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;
|