@stashfin/grpc 1.2.626 → 1.2.628

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/ts/loans.d.ts CHANGED
@@ -19,10 +19,12 @@ import { getCustomerLoanStatusRequest, getCustomerLoanStatusResponse } from "./l
19
19
  import { getForecloseAmountRequest, getForecloseAmountResponse } from "./loans/getforecloseamount";
20
20
  import { getLoanByIdRequest, getLoanByIdResponse } from "./loans/getloanbyid";
21
21
  import { GetLocConfirmRequest, GetLocConfirmResponse } from "./loans/getlocconfirms";
22
+ import { GetLocPartnerTenureRequest, GetLocPartnerTenureResponse } from "./loans/getlocpartnertenure";
22
23
  import { GetLocTenureRequest, GetLocTenureResponse } from "./loans/getloctenure";
23
24
  import { GetLocWithdrawlRequest, GetLocWithdrawlResponse } from "./loans/getlocwithdraw";
24
25
  import { GetLocWithdrawFormRequest, GetLocWithdrawFormResponse } from "./loans/getlocwithdrawform";
25
26
  import { getNextdueAmountRequest, getNextdueAmountResponse } from "./loans/getnextdueamount";
27
+ import { GetPartnerLocWithdrawRequest, GetPartnerLocWithdrawResponse } from "./loans/getpartnerlocwithdraw";
26
28
  import { getPaymentOptionsRequest, getPaymentOptionsResponse } from "./loans/getpaymentoptions";
27
29
  import { getPendingEmiAmountRequest, getPendingEmiAmountResponse } from "./loans/getpendingemiamount";
28
30
  import { getSetuBillDetailsRequest, getSetuBillDetailsResponse } from "./loans/getsetubilldetails";
@@ -462,6 +464,24 @@ export declare const loansService: {
462
464
  readonly responseSerialize: (value: GetLocConfirmResponse) => Buffer;
463
465
  readonly responseDeserialize: (value: Buffer) => GetLocConfirmResponse;
464
466
  };
467
+ readonly getPartnerLocWithdraw: {
468
+ readonly path: "/service.loans/getPartnerLocWithdraw";
469
+ readonly requestStream: false;
470
+ readonly responseStream: false;
471
+ readonly requestSerialize: (value: GetPartnerLocWithdrawRequest) => Buffer;
472
+ readonly requestDeserialize: (value: Buffer) => GetPartnerLocWithdrawRequest;
473
+ readonly responseSerialize: (value: GetPartnerLocWithdrawResponse) => Buffer;
474
+ readonly responseDeserialize: (value: Buffer) => GetPartnerLocWithdrawResponse;
475
+ };
476
+ readonly getPartnerLocTenure: {
477
+ readonly path: "/service.loans/getPartnerLocTenure";
478
+ readonly requestStream: false;
479
+ readonly responseStream: false;
480
+ readonly requestSerialize: (value: GetLocPartnerTenureRequest) => Buffer;
481
+ readonly requestDeserialize: (value: Buffer) => GetLocPartnerTenureRequest;
482
+ readonly responseSerialize: (value: GetLocPartnerTenureResponse) => Buffer;
483
+ readonly responseDeserialize: (value: Buffer) => GetLocPartnerTenureResponse;
484
+ };
465
485
  };
466
486
  export interface loansServer extends UntypedServiceImplementation {
467
487
  creditlimit: handleUnaryCall<creditLimitRequest, creditLimitResponse>;
@@ -510,6 +530,8 @@ export interface loansServer extends UntypedServiceImplementation {
510
530
  getLocTenure: handleUnaryCall<GetLocTenureRequest, GetLocTenureResponse>;
511
531
  getLocWithdraw: handleUnaryCall<GetLocWithdrawlRequest, GetLocWithdrawlResponse>;
512
532
  getLocConfirms: handleUnaryCall<GetLocConfirmRequest, GetLocConfirmResponse>;
533
+ getPartnerLocWithdraw: handleUnaryCall<GetPartnerLocWithdrawRequest, GetPartnerLocWithdrawResponse>;
534
+ getPartnerLocTenure: handleUnaryCall<GetLocPartnerTenureRequest, GetLocPartnerTenureResponse>;
513
535
  }
514
536
  export interface loansClient extends Client {
515
537
  creditlimit(request: creditLimitRequest, callback: (error: ServiceError | null, response: creditLimitResponse) => void): ClientUnaryCall;
@@ -650,6 +672,12 @@ export interface loansClient extends Client {
650
672
  getLocConfirms(request: GetLocConfirmRequest, callback: (error: ServiceError | null, response: GetLocConfirmResponse) => void): ClientUnaryCall;
651
673
  getLocConfirms(request: GetLocConfirmRequest, metadata: Metadata, callback: (error: ServiceError | null, response: GetLocConfirmResponse) => void): ClientUnaryCall;
652
674
  getLocConfirms(request: GetLocConfirmRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: GetLocConfirmResponse) => void): ClientUnaryCall;
675
+ getPartnerLocWithdraw(request: GetPartnerLocWithdrawRequest, callback: (error: ServiceError | null, response: GetPartnerLocWithdrawResponse) => void): ClientUnaryCall;
676
+ getPartnerLocWithdraw(request: GetPartnerLocWithdrawRequest, metadata: Metadata, callback: (error: ServiceError | null, response: GetPartnerLocWithdrawResponse) => void): ClientUnaryCall;
677
+ getPartnerLocWithdraw(request: GetPartnerLocWithdrawRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: GetPartnerLocWithdrawResponse) => void): ClientUnaryCall;
678
+ getPartnerLocTenure(request: GetLocPartnerTenureRequest, callback: (error: ServiceError | null, response: GetLocPartnerTenureResponse) => void): ClientUnaryCall;
679
+ getPartnerLocTenure(request: GetLocPartnerTenureRequest, metadata: Metadata, callback: (error: ServiceError | null, response: GetLocPartnerTenureResponse) => void): ClientUnaryCall;
680
+ getPartnerLocTenure(request: GetLocPartnerTenureRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: GetLocPartnerTenureResponse) => void): ClientUnaryCall;
653
681
  }
654
682
  export declare const loansClient: {
655
683
  new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): loansClient;
package/ts/loans.js CHANGED
@@ -28,10 +28,12 @@ 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 getlocconfirms_1 = require("./loans/getlocconfirms");
31
+ const getlocpartnertenure_1 = require("./loans/getlocpartnertenure");
31
32
  const getloctenure_1 = require("./loans/getloctenure");
32
33
  const getlocwithdraw_1 = require("./loans/getlocwithdraw");
33
34
  const getlocwithdrawform_1 = require("./loans/getlocwithdrawform");
34
35
  const getnextdueamount_1 = require("./loans/getnextdueamount");
36
+ const getpartnerlocwithdraw_1 = require("./loans/getpartnerlocwithdraw");
35
37
  const getpaymentoptions_1 = require("./loans/getpaymentoptions");
36
38
  const getpendingemiamount_1 = require("./loans/getpendingemiamount");
37
39
  const getsetubilldetails_1 = require("./loans/getsetubilldetails");
@@ -470,5 +472,23 @@ exports.loansService = {
470
472
  responseSerialize: (value) => Buffer.from(getlocconfirms_1.GetLocConfirmResponse.encode(value).finish()),
471
473
  responseDeserialize: (value) => getlocconfirms_1.GetLocConfirmResponse.decode(value),
472
474
  },
475
+ getPartnerLocWithdraw: {
476
+ path: "/service.loans/getPartnerLocWithdraw",
477
+ requestStream: false,
478
+ responseStream: false,
479
+ requestSerialize: (value) => Buffer.from(getpartnerlocwithdraw_1.GetPartnerLocWithdrawRequest.encode(value).finish()),
480
+ requestDeserialize: (value) => getpartnerlocwithdraw_1.GetPartnerLocWithdrawRequest.decode(value),
481
+ responseSerialize: (value) => Buffer.from(getpartnerlocwithdraw_1.GetPartnerLocWithdrawResponse.encode(value).finish()),
482
+ responseDeserialize: (value) => getpartnerlocwithdraw_1.GetPartnerLocWithdrawResponse.decode(value),
483
+ },
484
+ getPartnerLocTenure: {
485
+ path: "/service.loans/getPartnerLocTenure",
486
+ requestStream: false,
487
+ responseStream: false,
488
+ requestSerialize: (value) => Buffer.from(getlocpartnertenure_1.GetLocPartnerTenureRequest.encode(value).finish()),
489
+ requestDeserialize: (value) => getlocpartnertenure_1.GetLocPartnerTenureRequest.decode(value),
490
+ responseSerialize: (value) => Buffer.from(getlocpartnertenure_1.GetLocPartnerTenureResponse.encode(value).finish()),
491
+ responseDeserialize: (value) => getlocpartnertenure_1.GetLocPartnerTenureResponse.decode(value),
492
+ },
473
493
  };
474
494
  exports.loansClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.loansService, "service.loans");