@stashfin/grpc 1.2.610 → 1.2.612
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/package.json +1 -1
- package/ts/loans/getlocwithdraw.d.ts +165 -0
- package/ts/loans/getlocwithdraw.js +1893 -0
- package/ts/loans.d.ts +14 -0
- package/ts/loans.js +10 -0
package/ts/loans.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ import { getCustomerLoanStatusRequest, getCustomerLoanStatusResponse } from "./l
|
|
|
19
19
|
import { getForecloseAmountRequest, getForecloseAmountResponse } from "./loans/getforecloseamount";
|
|
20
20
|
import { getLoanByIdRequest, getLoanByIdResponse } from "./loans/getloanbyid";
|
|
21
21
|
import { GetLocTenureRequest, GetLocTenureResponse } from "./loans/getloctenure";
|
|
22
|
+
import { GetLocWithdrawlRequest, GetLocWithdrawlResponse } from "./loans/getlocwithdraw";
|
|
22
23
|
import { GetLocWithdrawFormRequest, GetLocWithdrawFormResponse } from "./loans/getlocwithdrawform";
|
|
23
24
|
import { getNextdueAmountRequest, getNextdueAmountResponse } from "./loans/getnextdueamount";
|
|
24
25
|
import { getPaymentOptionsRequest, getPaymentOptionsResponse } from "./loans/getpaymentoptions";
|
|
@@ -442,6 +443,15 @@ export declare const loansService: {
|
|
|
442
443
|
readonly responseSerialize: (value: GetLocTenureResponse) => Buffer;
|
|
443
444
|
readonly responseDeserialize: (value: Buffer) => GetLocTenureResponse;
|
|
444
445
|
};
|
|
446
|
+
readonly getLocWithdraw: {
|
|
447
|
+
readonly path: "/service.loans/getLocWithdraw";
|
|
448
|
+
readonly requestStream: false;
|
|
449
|
+
readonly responseStream: false;
|
|
450
|
+
readonly requestSerialize: (value: GetLocWithdrawlRequest) => Buffer;
|
|
451
|
+
readonly requestDeserialize: (value: Buffer) => GetLocWithdrawlRequest;
|
|
452
|
+
readonly responseSerialize: (value: GetLocWithdrawlResponse) => Buffer;
|
|
453
|
+
readonly responseDeserialize: (value: Buffer) => GetLocWithdrawlResponse;
|
|
454
|
+
};
|
|
445
455
|
};
|
|
446
456
|
export interface loansServer extends UntypedServiceImplementation {
|
|
447
457
|
creditlimit: handleUnaryCall<creditLimitRequest, creditLimitResponse>;
|
|
@@ -488,6 +498,7 @@ export interface loansServer extends UntypedServiceImplementation {
|
|
|
488
498
|
addCustomerReference: handleUnaryCall<customerReferencesRequest, customerReferencesResponse>;
|
|
489
499
|
getWithdrawForm: handleUnaryCall<GetLocWithdrawFormRequest, GetLocWithdrawFormResponse>;
|
|
490
500
|
getLocTenure: handleUnaryCall<GetLocTenureRequest, GetLocTenureResponse>;
|
|
501
|
+
getLocWithdraw: handleUnaryCall<GetLocWithdrawlRequest, GetLocWithdrawlResponse>;
|
|
491
502
|
}
|
|
492
503
|
export interface loansClient extends Client {
|
|
493
504
|
creditlimit(request: creditLimitRequest, callback: (error: ServiceError | null, response: creditLimitResponse) => void): ClientUnaryCall;
|
|
@@ -622,6 +633,9 @@ export interface loansClient extends Client {
|
|
|
622
633
|
getLocTenure(request: GetLocTenureRequest, callback: (error: ServiceError | null, response: GetLocTenureResponse) => void): ClientUnaryCall;
|
|
623
634
|
getLocTenure(request: GetLocTenureRequest, metadata: Metadata, callback: (error: ServiceError | null, response: GetLocTenureResponse) => void): ClientUnaryCall;
|
|
624
635
|
getLocTenure(request: GetLocTenureRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: GetLocTenureResponse) => void): ClientUnaryCall;
|
|
636
|
+
getLocWithdraw(request: GetLocWithdrawlRequest, callback: (error: ServiceError | null, response: GetLocWithdrawlResponse) => void): ClientUnaryCall;
|
|
637
|
+
getLocWithdraw(request: GetLocWithdrawlRequest, metadata: Metadata, callback: (error: ServiceError | null, response: GetLocWithdrawlResponse) => void): ClientUnaryCall;
|
|
638
|
+
getLocWithdraw(request: GetLocWithdrawlRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: GetLocWithdrawlResponse) => void): ClientUnaryCall;
|
|
625
639
|
}
|
|
626
640
|
export declare const loansClient: {
|
|
627
641
|
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): loansClient;
|
package/ts/loans.js
CHANGED
|
@@ -28,6 +28,7 @@ const getcustomerloanstatus_1 = require("./loans/getcustomerloanstatus");
|
|
|
28
28
|
const getforecloseamount_1 = require("./loans/getforecloseamount");
|
|
29
29
|
const getloanbyid_1 = require("./loans/getloanbyid");
|
|
30
30
|
const getloctenure_1 = require("./loans/getloctenure");
|
|
31
|
+
const getlocwithdraw_1 = require("./loans/getlocwithdraw");
|
|
31
32
|
const getlocwithdrawform_1 = require("./loans/getlocwithdrawform");
|
|
32
33
|
const getnextdueamount_1 = require("./loans/getnextdueamount");
|
|
33
34
|
const getpaymentoptions_1 = require("./loans/getpaymentoptions");
|
|
@@ -450,5 +451,14 @@ exports.loansService = {
|
|
|
450
451
|
responseSerialize: (value) => Buffer.from(getloctenure_1.GetLocTenureResponse.encode(value).finish()),
|
|
451
452
|
responseDeserialize: (value) => getloctenure_1.GetLocTenureResponse.decode(value),
|
|
452
453
|
},
|
|
454
|
+
getLocWithdraw: {
|
|
455
|
+
path: "/service.loans/getLocWithdraw",
|
|
456
|
+
requestStream: false,
|
|
457
|
+
responseStream: false,
|
|
458
|
+
requestSerialize: (value) => Buffer.from(getlocwithdraw_1.GetLocWithdrawlRequest.encode(value).finish()),
|
|
459
|
+
requestDeserialize: (value) => getlocwithdraw_1.GetLocWithdrawlRequest.decode(value),
|
|
460
|
+
responseSerialize: (value) => Buffer.from(getlocwithdraw_1.GetLocWithdrawlResponse.encode(value).finish()),
|
|
461
|
+
responseDeserialize: (value) => getlocwithdraw_1.GetLocWithdrawlResponse.decode(value),
|
|
462
|
+
},
|
|
453
463
|
};
|
|
454
464
|
exports.loansClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.loansService, "service.loans");
|