@stashfin/grpc 1.2.576 → 1.2.578
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/banking/aa/getrpdlink.d.ts +41 -0
- package/ts/banking/aa/getrpdlink.js +217 -0
- package/ts/banking.d.ts +14 -0
- package/ts/banking.js +10 -0
- package/ts/customers.d.ts +0 -14
- package/ts/customers.js +0 -10
- package/ts/loans/addrefrences.d.ts +49 -0
- package/ts/loans/addrefrences.js +229 -0
- package/ts/loans.d.ts +14 -0
- package/ts/loans.js +10 -0
package/package.json
CHANGED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal";
|
|
2
|
+
export declare const protobufPackage = "banking.aa.getrpdlink";
|
|
3
|
+
export interface createRpdLinkRequest {
|
|
4
|
+
customer_id: number;
|
|
5
|
+
}
|
|
6
|
+
export interface createRpdLinkResponse {
|
|
7
|
+
id: string;
|
|
8
|
+
shortUrl: string;
|
|
9
|
+
status: string;
|
|
10
|
+
traceId: string;
|
|
11
|
+
upiBillId: string;
|
|
12
|
+
upiLink: string;
|
|
13
|
+
validUpto: string;
|
|
14
|
+
}
|
|
15
|
+
export declare const createRpdLinkRequest: {
|
|
16
|
+
encode(message: createRpdLinkRequest, writer?: _m0.Writer): _m0.Writer;
|
|
17
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): createRpdLinkRequest;
|
|
18
|
+
fromJSON(object: any): createRpdLinkRequest;
|
|
19
|
+
toJSON(message: createRpdLinkRequest): unknown;
|
|
20
|
+
create<I extends Exact<DeepPartial<createRpdLinkRequest>, I>>(base?: I): createRpdLinkRequest;
|
|
21
|
+
fromPartial<I extends Exact<DeepPartial<createRpdLinkRequest>, I>>(object: I): createRpdLinkRequest;
|
|
22
|
+
};
|
|
23
|
+
export declare const createRpdLinkResponse: {
|
|
24
|
+
encode(message: createRpdLinkResponse, writer?: _m0.Writer): _m0.Writer;
|
|
25
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): createRpdLinkResponse;
|
|
26
|
+
fromJSON(object: any): createRpdLinkResponse;
|
|
27
|
+
toJSON(message: createRpdLinkResponse): unknown;
|
|
28
|
+
create<I extends Exact<DeepPartial<createRpdLinkResponse>, I>>(base?: I): createRpdLinkResponse;
|
|
29
|
+
fromPartial<I extends Exact<DeepPartial<createRpdLinkResponse>, I>>(object: I): createRpdLinkResponse;
|
|
30
|
+
};
|
|
31
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
32
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
33
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
34
|
+
} : Partial<T>;
|
|
35
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
36
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
37
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
38
|
+
} & {
|
|
39
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
40
|
+
};
|
|
41
|
+
export {};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
|
+
// versions:
|
|
4
|
+
// protoc-gen-ts_proto v1.181.0
|
|
5
|
+
// protoc v5.29.3
|
|
6
|
+
// source: banking/aa/getrpdlink.proto
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.createRpdLinkResponse = exports.createRpdLinkRequest = exports.protobufPackage = void 0;
|
|
12
|
+
/* eslint-disable */
|
|
13
|
+
const long_1 = __importDefault(require("long"));
|
|
14
|
+
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
15
|
+
exports.protobufPackage = "banking.aa.getrpdlink";
|
|
16
|
+
function createBasecreateRpdLinkRequest() {
|
|
17
|
+
return { customer_id: 0 };
|
|
18
|
+
}
|
|
19
|
+
exports.createRpdLinkRequest = {
|
|
20
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
21
|
+
if (message.customer_id !== 0) {
|
|
22
|
+
writer.uint32(8).int64(message.customer_id);
|
|
23
|
+
}
|
|
24
|
+
return writer;
|
|
25
|
+
},
|
|
26
|
+
decode(input, length) {
|
|
27
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
28
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
29
|
+
const message = createBasecreateRpdLinkRequest();
|
|
30
|
+
while (reader.pos < end) {
|
|
31
|
+
const tag = reader.uint32();
|
|
32
|
+
switch (tag >>> 3) {
|
|
33
|
+
case 1:
|
|
34
|
+
if (tag !== 8) {
|
|
35
|
+
break;
|
|
36
|
+
}
|
|
37
|
+
message.customer_id = longToNumber(reader.int64());
|
|
38
|
+
continue;
|
|
39
|
+
}
|
|
40
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
41
|
+
break;
|
|
42
|
+
}
|
|
43
|
+
reader.skipType(tag & 7);
|
|
44
|
+
}
|
|
45
|
+
return message;
|
|
46
|
+
},
|
|
47
|
+
fromJSON(object) {
|
|
48
|
+
return { customer_id: isSet(object.customer_id) ? globalThis.Number(object.customer_id) : 0 };
|
|
49
|
+
},
|
|
50
|
+
toJSON(message) {
|
|
51
|
+
const obj = {};
|
|
52
|
+
if (message.customer_id !== 0) {
|
|
53
|
+
obj.customer_id = Math.round(message.customer_id);
|
|
54
|
+
}
|
|
55
|
+
return obj;
|
|
56
|
+
},
|
|
57
|
+
create(base) {
|
|
58
|
+
return exports.createRpdLinkRequest.fromPartial(base ?? {});
|
|
59
|
+
},
|
|
60
|
+
fromPartial(object) {
|
|
61
|
+
const message = createBasecreateRpdLinkRequest();
|
|
62
|
+
message.customer_id = object.customer_id ?? 0;
|
|
63
|
+
return message;
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
function createBasecreateRpdLinkResponse() {
|
|
67
|
+
return { id: "", shortUrl: "", status: "", traceId: "", upiBillId: "", upiLink: "", validUpto: "" };
|
|
68
|
+
}
|
|
69
|
+
exports.createRpdLinkResponse = {
|
|
70
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
71
|
+
if (message.id !== "") {
|
|
72
|
+
writer.uint32(10).string(message.id);
|
|
73
|
+
}
|
|
74
|
+
if (message.shortUrl !== "") {
|
|
75
|
+
writer.uint32(18).string(message.shortUrl);
|
|
76
|
+
}
|
|
77
|
+
if (message.status !== "") {
|
|
78
|
+
writer.uint32(26).string(message.status);
|
|
79
|
+
}
|
|
80
|
+
if (message.traceId !== "") {
|
|
81
|
+
writer.uint32(34).string(message.traceId);
|
|
82
|
+
}
|
|
83
|
+
if (message.upiBillId !== "") {
|
|
84
|
+
writer.uint32(42).string(message.upiBillId);
|
|
85
|
+
}
|
|
86
|
+
if (message.upiLink !== "") {
|
|
87
|
+
writer.uint32(50).string(message.upiLink);
|
|
88
|
+
}
|
|
89
|
+
if (message.validUpto !== "") {
|
|
90
|
+
writer.uint32(58).string(message.validUpto);
|
|
91
|
+
}
|
|
92
|
+
return writer;
|
|
93
|
+
},
|
|
94
|
+
decode(input, length) {
|
|
95
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
96
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
97
|
+
const message = createBasecreateRpdLinkResponse();
|
|
98
|
+
while (reader.pos < end) {
|
|
99
|
+
const tag = reader.uint32();
|
|
100
|
+
switch (tag >>> 3) {
|
|
101
|
+
case 1:
|
|
102
|
+
if (tag !== 10) {
|
|
103
|
+
break;
|
|
104
|
+
}
|
|
105
|
+
message.id = reader.string();
|
|
106
|
+
continue;
|
|
107
|
+
case 2:
|
|
108
|
+
if (tag !== 18) {
|
|
109
|
+
break;
|
|
110
|
+
}
|
|
111
|
+
message.shortUrl = reader.string();
|
|
112
|
+
continue;
|
|
113
|
+
case 3:
|
|
114
|
+
if (tag !== 26) {
|
|
115
|
+
break;
|
|
116
|
+
}
|
|
117
|
+
message.status = reader.string();
|
|
118
|
+
continue;
|
|
119
|
+
case 4:
|
|
120
|
+
if (tag !== 34) {
|
|
121
|
+
break;
|
|
122
|
+
}
|
|
123
|
+
message.traceId = reader.string();
|
|
124
|
+
continue;
|
|
125
|
+
case 5:
|
|
126
|
+
if (tag !== 42) {
|
|
127
|
+
break;
|
|
128
|
+
}
|
|
129
|
+
message.upiBillId = reader.string();
|
|
130
|
+
continue;
|
|
131
|
+
case 6:
|
|
132
|
+
if (tag !== 50) {
|
|
133
|
+
break;
|
|
134
|
+
}
|
|
135
|
+
message.upiLink = reader.string();
|
|
136
|
+
continue;
|
|
137
|
+
case 7:
|
|
138
|
+
if (tag !== 58) {
|
|
139
|
+
break;
|
|
140
|
+
}
|
|
141
|
+
message.validUpto = reader.string();
|
|
142
|
+
continue;
|
|
143
|
+
}
|
|
144
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
145
|
+
break;
|
|
146
|
+
}
|
|
147
|
+
reader.skipType(tag & 7);
|
|
148
|
+
}
|
|
149
|
+
return message;
|
|
150
|
+
},
|
|
151
|
+
fromJSON(object) {
|
|
152
|
+
return {
|
|
153
|
+
id: isSet(object.id) ? globalThis.String(object.id) : "",
|
|
154
|
+
shortUrl: isSet(object.shortUrl) ? globalThis.String(object.shortUrl) : "",
|
|
155
|
+
status: isSet(object.status) ? globalThis.String(object.status) : "",
|
|
156
|
+
traceId: isSet(object.traceId) ? globalThis.String(object.traceId) : "",
|
|
157
|
+
upiBillId: isSet(object.upiBillId) ? globalThis.String(object.upiBillId) : "",
|
|
158
|
+
upiLink: isSet(object.upiLink) ? globalThis.String(object.upiLink) : "",
|
|
159
|
+
validUpto: isSet(object.validUpto) ? globalThis.String(object.validUpto) : "",
|
|
160
|
+
};
|
|
161
|
+
},
|
|
162
|
+
toJSON(message) {
|
|
163
|
+
const obj = {};
|
|
164
|
+
if (message.id !== "") {
|
|
165
|
+
obj.id = message.id;
|
|
166
|
+
}
|
|
167
|
+
if (message.shortUrl !== "") {
|
|
168
|
+
obj.shortUrl = message.shortUrl;
|
|
169
|
+
}
|
|
170
|
+
if (message.status !== "") {
|
|
171
|
+
obj.status = message.status;
|
|
172
|
+
}
|
|
173
|
+
if (message.traceId !== "") {
|
|
174
|
+
obj.traceId = message.traceId;
|
|
175
|
+
}
|
|
176
|
+
if (message.upiBillId !== "") {
|
|
177
|
+
obj.upiBillId = message.upiBillId;
|
|
178
|
+
}
|
|
179
|
+
if (message.upiLink !== "") {
|
|
180
|
+
obj.upiLink = message.upiLink;
|
|
181
|
+
}
|
|
182
|
+
if (message.validUpto !== "") {
|
|
183
|
+
obj.validUpto = message.validUpto;
|
|
184
|
+
}
|
|
185
|
+
return obj;
|
|
186
|
+
},
|
|
187
|
+
create(base) {
|
|
188
|
+
return exports.createRpdLinkResponse.fromPartial(base ?? {});
|
|
189
|
+
},
|
|
190
|
+
fromPartial(object) {
|
|
191
|
+
const message = createBasecreateRpdLinkResponse();
|
|
192
|
+
message.id = object.id ?? "";
|
|
193
|
+
message.shortUrl = object.shortUrl ?? "";
|
|
194
|
+
message.status = object.status ?? "";
|
|
195
|
+
message.traceId = object.traceId ?? "";
|
|
196
|
+
message.upiBillId = object.upiBillId ?? "";
|
|
197
|
+
message.upiLink = object.upiLink ?? "";
|
|
198
|
+
message.validUpto = object.validUpto ?? "";
|
|
199
|
+
return message;
|
|
200
|
+
},
|
|
201
|
+
};
|
|
202
|
+
function longToNumber(long) {
|
|
203
|
+
if (long.gt(globalThis.Number.MAX_SAFE_INTEGER)) {
|
|
204
|
+
throw new globalThis.Error("Value is larger than Number.MAX_SAFE_INTEGER");
|
|
205
|
+
}
|
|
206
|
+
if (long.lt(globalThis.Number.MIN_SAFE_INTEGER)) {
|
|
207
|
+
throw new globalThis.Error("Value is smaller than Number.MIN_SAFE_INTEGER");
|
|
208
|
+
}
|
|
209
|
+
return long.toNumber();
|
|
210
|
+
}
|
|
211
|
+
if (minimal_1.default.util.Long !== long_1.default) {
|
|
212
|
+
minimal_1.default.util.Long = long_1.default;
|
|
213
|
+
minimal_1.default.configure();
|
|
214
|
+
}
|
|
215
|
+
function isSet(value) {
|
|
216
|
+
return value !== null && value !== undefined;
|
|
217
|
+
}
|
package/ts/banking.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type CallOptions, ChannelCredentials, Client, type ClientOptions, type ClientUnaryCall, type handleUnaryCall, Metadata, type ServiceError, type UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
2
2
|
import { getBankListRequest, getBankListResponse } from "./banking/aa/getbanklist";
|
|
3
|
+
import { createRpdLinkRequest, createRpdLinkResponse } from "./banking/aa/getrpdlink";
|
|
3
4
|
import { initiateRequest, initiateResponse } from "./banking/aa/initiate";
|
|
4
5
|
export declare const protobufPackage = "service";
|
|
5
6
|
export type bankingService = typeof bankingService;
|
|
@@ -22,10 +23,20 @@ export declare const bankingService: {
|
|
|
22
23
|
readonly responseSerialize: (value: initiateResponse) => Buffer;
|
|
23
24
|
readonly responseDeserialize: (value: Buffer) => initiateResponse;
|
|
24
25
|
};
|
|
26
|
+
readonly getRpdLink: {
|
|
27
|
+
readonly path: "/service.banking/getRpdLink";
|
|
28
|
+
readonly requestStream: false;
|
|
29
|
+
readonly responseStream: false;
|
|
30
|
+
readonly requestSerialize: (value: createRpdLinkRequest) => Buffer;
|
|
31
|
+
readonly requestDeserialize: (value: Buffer) => createRpdLinkRequest;
|
|
32
|
+
readonly responseSerialize: (value: createRpdLinkResponse) => Buffer;
|
|
33
|
+
readonly responseDeserialize: (value: Buffer) => createRpdLinkResponse;
|
|
34
|
+
};
|
|
25
35
|
};
|
|
26
36
|
export interface bankingServer extends UntypedServiceImplementation {
|
|
27
37
|
getBankList: handleUnaryCall<getBankListRequest, getBankListResponse>;
|
|
28
38
|
initiateRequest: handleUnaryCall<initiateRequest, initiateResponse>;
|
|
39
|
+
getRpdLink: handleUnaryCall<createRpdLinkRequest, createRpdLinkResponse>;
|
|
29
40
|
}
|
|
30
41
|
export interface bankingClient extends Client {
|
|
31
42
|
getBankList(request: getBankListRequest, callback: (error: ServiceError | null, response: getBankListResponse) => void): ClientUnaryCall;
|
|
@@ -34,6 +45,9 @@ export interface bankingClient extends Client {
|
|
|
34
45
|
initiateRequest(request: initiateRequest, callback: (error: ServiceError | null, response: initiateResponse) => void): ClientUnaryCall;
|
|
35
46
|
initiateRequest(request: initiateRequest, metadata: Metadata, callback: (error: ServiceError | null, response: initiateResponse) => void): ClientUnaryCall;
|
|
36
47
|
initiateRequest(request: initiateRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: initiateResponse) => void): ClientUnaryCall;
|
|
48
|
+
getRpdLink(request: createRpdLinkRequest, callback: (error: ServiceError | null, response: createRpdLinkResponse) => void): ClientUnaryCall;
|
|
49
|
+
getRpdLink(request: createRpdLinkRequest, metadata: Metadata, callback: (error: ServiceError | null, response: createRpdLinkResponse) => void): ClientUnaryCall;
|
|
50
|
+
getRpdLink(request: createRpdLinkRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: createRpdLinkResponse) => void): ClientUnaryCall;
|
|
37
51
|
}
|
|
38
52
|
export declare const bankingClient: {
|
|
39
53
|
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): bankingClient;
|
package/ts/banking.js
CHANGED
|
@@ -9,6 +9,7 @@ exports.bankingClient = exports.bankingService = exports.protobufPackage = void
|
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const grpc_js_1 = require("@grpc/grpc-js");
|
|
11
11
|
const getbanklist_1 = require("./banking/aa/getbanklist");
|
|
12
|
+
const getrpdlink_1 = require("./banking/aa/getrpdlink");
|
|
12
13
|
const initiate_1 = require("./banking/aa/initiate");
|
|
13
14
|
exports.protobufPackage = "service";
|
|
14
15
|
exports.bankingService = {
|
|
@@ -30,5 +31,14 @@ exports.bankingService = {
|
|
|
30
31
|
responseSerialize: (value) => Buffer.from(initiate_1.initiateResponse.encode(value).finish()),
|
|
31
32
|
responseDeserialize: (value) => initiate_1.initiateResponse.decode(value),
|
|
32
33
|
},
|
|
34
|
+
getRpdLink: {
|
|
35
|
+
path: "/service.banking/getRpdLink",
|
|
36
|
+
requestStream: false,
|
|
37
|
+
responseStream: false,
|
|
38
|
+
requestSerialize: (value) => Buffer.from(getrpdlink_1.createRpdLinkRequest.encode(value).finish()),
|
|
39
|
+
requestDeserialize: (value) => getrpdlink_1.createRpdLinkRequest.decode(value),
|
|
40
|
+
responseSerialize: (value) => Buffer.from(getrpdlink_1.createRpdLinkResponse.encode(value).finish()),
|
|
41
|
+
responseDeserialize: (value) => getrpdlink_1.createRpdLinkResponse.decode(value),
|
|
42
|
+
},
|
|
33
43
|
};
|
|
34
44
|
exports.bankingClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.bankingService, "service.banking");
|
package/ts/customers.d.ts
CHANGED
|
@@ -53,7 +53,6 @@ import { getBasicInfoRequest, getBasicInfoResponse } from "./customers/getbasici
|
|
|
53
53
|
import { getCitiesRequest, getCitiesResponse } from "./customers/getcities";
|
|
54
54
|
import { getCliStatusRequest, getCliStatusResponse } from "./customers/getclistatus";
|
|
55
55
|
import { getCompanyAccDetailsRequest, getCompanyAccDetailsResponse } from "./customers/getcompanyaccdetails";
|
|
56
|
-
import { getCustomerRequest as getCustomerRequest1, getCustomerResponse as getCustomerResponse2 } from "./customers/getcustomer";
|
|
57
56
|
import { getCustomerByIdRequest, getCustomerByIdResponse } from "./customers/getcustomerbyid";
|
|
58
57
|
import { getCustomerDetailsRequest, getCustomerDetailsResponse } from "./customers/getcustomerdetailsbymobile";
|
|
59
58
|
import { getDashboardRequest, getDashboardResponse } from "./customers/getdashboard";
|
|
@@ -1180,15 +1179,6 @@ export declare const customersService: {
|
|
|
1180
1179
|
readonly responseSerialize: (value: getMessengerModeResponse) => Buffer;
|
|
1181
1180
|
readonly responseDeserialize: (value: Buffer) => getMessengerModeResponse;
|
|
1182
1181
|
};
|
|
1183
|
-
readonly getCustomer: {
|
|
1184
|
-
readonly path: "/service.customers/getCustomer";
|
|
1185
|
-
readonly requestStream: false;
|
|
1186
|
-
readonly responseStream: false;
|
|
1187
|
-
readonly requestSerialize: (value: getCustomerRequest1) => Buffer;
|
|
1188
|
-
readonly requestDeserialize: (value: Buffer) => getCustomerRequest1;
|
|
1189
|
-
readonly responseSerialize: (value: getCustomerResponse2) => Buffer;
|
|
1190
|
-
readonly responseDeserialize: (value: Buffer) => getCustomerResponse2;
|
|
1191
|
-
};
|
|
1192
1182
|
};
|
|
1193
1183
|
export interface customersServer extends UntypedServiceImplementation {
|
|
1194
1184
|
sendOtp: handleUnaryCall<sendOtpRequest, sendOtpRespone>;
|
|
@@ -1309,7 +1299,6 @@ export interface customersServer extends UntypedServiceImplementation {
|
|
|
1309
1299
|
applyLamf: handleUnaryCall<applyLamfRequest, applyLamfResponse>;
|
|
1310
1300
|
updateSanctionAmount: handleUnaryCall<updateSanctionAmountRequest, updateSanctionAmountResponse>;
|
|
1311
1301
|
getMessengerMode: handleUnaryCall<getMessengerModeRequest, getMessengerModeResponse>;
|
|
1312
|
-
getCustomer: handleUnaryCall<getCustomerRequest1, getCustomerResponse2>;
|
|
1313
1302
|
}
|
|
1314
1303
|
export interface customersClient extends Client {
|
|
1315
1304
|
sendOtp(request: sendOtpRequest, callback: (error: ServiceError | null, response: sendOtpRespone) => void): ClientUnaryCall;
|
|
@@ -1666,9 +1655,6 @@ export interface customersClient extends Client {
|
|
|
1666
1655
|
getMessengerMode(request: getMessengerModeRequest, callback: (error: ServiceError | null, response: getMessengerModeResponse) => void): ClientUnaryCall;
|
|
1667
1656
|
getMessengerMode(request: getMessengerModeRequest, metadata: Metadata, callback: (error: ServiceError | null, response: getMessengerModeResponse) => void): ClientUnaryCall;
|
|
1668
1657
|
getMessengerMode(request: getMessengerModeRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: getMessengerModeResponse) => void): ClientUnaryCall;
|
|
1669
|
-
getCustomer(request: getCustomerRequest1, callback: (error: ServiceError | null, response: getCustomerResponse2) => void): ClientUnaryCall;
|
|
1670
|
-
getCustomer(request: getCustomerRequest1, metadata: Metadata, callback: (error: ServiceError | null, response: getCustomerResponse2) => void): ClientUnaryCall;
|
|
1671
|
-
getCustomer(request: getCustomerRequest1, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: getCustomerResponse2) => void): ClientUnaryCall;
|
|
1672
1658
|
}
|
|
1673
1659
|
export declare const customersClient: {
|
|
1674
1660
|
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): customersClient;
|
package/ts/customers.js
CHANGED
|
@@ -62,7 +62,6 @@ const getbasicinfo_1 = require("./customers/getbasicinfo");
|
|
|
62
62
|
const getcities_1 = require("./customers/getcities");
|
|
63
63
|
const getclistatus_1 = require("./customers/getclistatus");
|
|
64
64
|
const getcompanyaccdetails_1 = require("./customers/getcompanyaccdetails");
|
|
65
|
-
const getcustomer_1 = require("./customers/getcustomer");
|
|
66
65
|
const getcustomerbyid_1 = require("./customers/getcustomerbyid");
|
|
67
66
|
const getcustomerdetailsbymobile_1 = require("./customers/getcustomerdetailsbymobile");
|
|
68
67
|
const getdashboard_1 = require("./customers/getdashboard");
|
|
@@ -1188,14 +1187,5 @@ exports.customersService = {
|
|
|
1188
1187
|
responseSerialize: (value) => Buffer.from(getmessengermode_1.getMessengerModeResponse.encode(value).finish()),
|
|
1189
1188
|
responseDeserialize: (value) => getmessengermode_1.getMessengerModeResponse.decode(value),
|
|
1190
1189
|
},
|
|
1191
|
-
getCustomer: {
|
|
1192
|
-
path: "/service.customers/getCustomer",
|
|
1193
|
-
requestStream: false,
|
|
1194
|
-
responseStream: false,
|
|
1195
|
-
requestSerialize: (value) => Buffer.from(getcustomer_1.getCustomerRequest.encode(value).finish()),
|
|
1196
|
-
requestDeserialize: (value) => getcustomer_1.getCustomerRequest.decode(value),
|
|
1197
|
-
responseSerialize: (value) => Buffer.from(getcustomer_1.getCustomerResponse.encode(value).finish()),
|
|
1198
|
-
responseDeserialize: (value) => getcustomer_1.getCustomerResponse.decode(value),
|
|
1199
|
-
},
|
|
1200
1190
|
};
|
|
1201
1191
|
exports.customersClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.customersService, "service.customers");
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal";
|
|
2
|
+
export declare const protobufPackage = "loans.addrefrences";
|
|
3
|
+
export interface customerReferencesRequest {
|
|
4
|
+
customer_id: number;
|
|
5
|
+
references: Reference[];
|
|
6
|
+
}
|
|
7
|
+
export interface Reference {
|
|
8
|
+
name: string;
|
|
9
|
+
mobile: string;
|
|
10
|
+
relation: string;
|
|
11
|
+
}
|
|
12
|
+
export interface customerReferencesResponse {
|
|
13
|
+
success: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare const customerReferencesRequest: {
|
|
16
|
+
encode(message: customerReferencesRequest, writer?: _m0.Writer): _m0.Writer;
|
|
17
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): customerReferencesRequest;
|
|
18
|
+
fromJSON(object: any): customerReferencesRequest;
|
|
19
|
+
toJSON(message: customerReferencesRequest): unknown;
|
|
20
|
+
create<I extends Exact<DeepPartial<customerReferencesRequest>, I>>(base?: I): customerReferencesRequest;
|
|
21
|
+
fromPartial<I extends Exact<DeepPartial<customerReferencesRequest>, I>>(object: I): customerReferencesRequest;
|
|
22
|
+
};
|
|
23
|
+
export declare const Reference: {
|
|
24
|
+
encode(message: Reference, writer?: _m0.Writer): _m0.Writer;
|
|
25
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Reference;
|
|
26
|
+
fromJSON(object: any): Reference;
|
|
27
|
+
toJSON(message: Reference): unknown;
|
|
28
|
+
create<I extends Exact<DeepPartial<Reference>, I>>(base?: I): Reference;
|
|
29
|
+
fromPartial<I extends Exact<DeepPartial<Reference>, I>>(object: I): Reference;
|
|
30
|
+
};
|
|
31
|
+
export declare const customerReferencesResponse: {
|
|
32
|
+
encode(message: customerReferencesResponse, writer?: _m0.Writer): _m0.Writer;
|
|
33
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): customerReferencesResponse;
|
|
34
|
+
fromJSON(object: any): customerReferencesResponse;
|
|
35
|
+
toJSON(message: customerReferencesResponse): unknown;
|
|
36
|
+
create<I extends Exact<DeepPartial<customerReferencesResponse>, I>>(base?: I): customerReferencesResponse;
|
|
37
|
+
fromPartial<I extends Exact<DeepPartial<customerReferencesResponse>, I>>(object: I): customerReferencesResponse;
|
|
38
|
+
};
|
|
39
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
40
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
41
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
42
|
+
} : Partial<T>;
|
|
43
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
44
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
45
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
46
|
+
} & {
|
|
47
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
48
|
+
};
|
|
49
|
+
export {};
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
|
+
// versions:
|
|
4
|
+
// protoc-gen-ts_proto v1.181.0
|
|
5
|
+
// protoc v5.29.3
|
|
6
|
+
// source: loans/addrefrences.proto
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.customerReferencesResponse = exports.Reference = exports.customerReferencesRequest = exports.protobufPackage = void 0;
|
|
12
|
+
/* eslint-disable */
|
|
13
|
+
const long_1 = __importDefault(require("long"));
|
|
14
|
+
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
15
|
+
exports.protobufPackage = "loans.addrefrences";
|
|
16
|
+
function createBasecustomerReferencesRequest() {
|
|
17
|
+
return { customer_id: 0, references: [] };
|
|
18
|
+
}
|
|
19
|
+
exports.customerReferencesRequest = {
|
|
20
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
21
|
+
if (message.customer_id !== 0) {
|
|
22
|
+
writer.uint32(8).int64(message.customer_id);
|
|
23
|
+
}
|
|
24
|
+
for (const v of message.references) {
|
|
25
|
+
exports.Reference.encode(v, writer.uint32(18).fork()).ldelim();
|
|
26
|
+
}
|
|
27
|
+
return writer;
|
|
28
|
+
},
|
|
29
|
+
decode(input, length) {
|
|
30
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
31
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
32
|
+
const message = createBasecustomerReferencesRequest();
|
|
33
|
+
while (reader.pos < end) {
|
|
34
|
+
const tag = reader.uint32();
|
|
35
|
+
switch (tag >>> 3) {
|
|
36
|
+
case 1:
|
|
37
|
+
if (tag !== 8) {
|
|
38
|
+
break;
|
|
39
|
+
}
|
|
40
|
+
message.customer_id = longToNumber(reader.int64());
|
|
41
|
+
continue;
|
|
42
|
+
case 2:
|
|
43
|
+
if (tag !== 18) {
|
|
44
|
+
break;
|
|
45
|
+
}
|
|
46
|
+
message.references.push(exports.Reference.decode(reader, reader.uint32()));
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
49
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
50
|
+
break;
|
|
51
|
+
}
|
|
52
|
+
reader.skipType(tag & 7);
|
|
53
|
+
}
|
|
54
|
+
return message;
|
|
55
|
+
},
|
|
56
|
+
fromJSON(object) {
|
|
57
|
+
return {
|
|
58
|
+
customer_id: isSet(object.customer_id) ? globalThis.Number(object.customer_id) : 0,
|
|
59
|
+
references: globalThis.Array.isArray(object?.references)
|
|
60
|
+
? object.references.map((e) => exports.Reference.fromJSON(e))
|
|
61
|
+
: [],
|
|
62
|
+
};
|
|
63
|
+
},
|
|
64
|
+
toJSON(message) {
|
|
65
|
+
const obj = {};
|
|
66
|
+
if (message.customer_id !== 0) {
|
|
67
|
+
obj.customer_id = Math.round(message.customer_id);
|
|
68
|
+
}
|
|
69
|
+
if (message.references?.length) {
|
|
70
|
+
obj.references = message.references.map((e) => exports.Reference.toJSON(e));
|
|
71
|
+
}
|
|
72
|
+
return obj;
|
|
73
|
+
},
|
|
74
|
+
create(base) {
|
|
75
|
+
return exports.customerReferencesRequest.fromPartial(base ?? {});
|
|
76
|
+
},
|
|
77
|
+
fromPartial(object) {
|
|
78
|
+
const message = createBasecustomerReferencesRequest();
|
|
79
|
+
message.customer_id = object.customer_id ?? 0;
|
|
80
|
+
message.references = object.references?.map((e) => exports.Reference.fromPartial(e)) || [];
|
|
81
|
+
return message;
|
|
82
|
+
},
|
|
83
|
+
};
|
|
84
|
+
function createBaseReference() {
|
|
85
|
+
return { name: "", mobile: "", relation: "" };
|
|
86
|
+
}
|
|
87
|
+
exports.Reference = {
|
|
88
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
89
|
+
if (message.name !== "") {
|
|
90
|
+
writer.uint32(10).string(message.name);
|
|
91
|
+
}
|
|
92
|
+
if (message.mobile !== "") {
|
|
93
|
+
writer.uint32(18).string(message.mobile);
|
|
94
|
+
}
|
|
95
|
+
if (message.relation !== "") {
|
|
96
|
+
writer.uint32(26).string(message.relation);
|
|
97
|
+
}
|
|
98
|
+
return writer;
|
|
99
|
+
},
|
|
100
|
+
decode(input, length) {
|
|
101
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
102
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
103
|
+
const message = createBaseReference();
|
|
104
|
+
while (reader.pos < end) {
|
|
105
|
+
const tag = reader.uint32();
|
|
106
|
+
switch (tag >>> 3) {
|
|
107
|
+
case 1:
|
|
108
|
+
if (tag !== 10) {
|
|
109
|
+
break;
|
|
110
|
+
}
|
|
111
|
+
message.name = reader.string();
|
|
112
|
+
continue;
|
|
113
|
+
case 2:
|
|
114
|
+
if (tag !== 18) {
|
|
115
|
+
break;
|
|
116
|
+
}
|
|
117
|
+
message.mobile = reader.string();
|
|
118
|
+
continue;
|
|
119
|
+
case 3:
|
|
120
|
+
if (tag !== 26) {
|
|
121
|
+
break;
|
|
122
|
+
}
|
|
123
|
+
message.relation = reader.string();
|
|
124
|
+
continue;
|
|
125
|
+
}
|
|
126
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
127
|
+
break;
|
|
128
|
+
}
|
|
129
|
+
reader.skipType(tag & 7);
|
|
130
|
+
}
|
|
131
|
+
return message;
|
|
132
|
+
},
|
|
133
|
+
fromJSON(object) {
|
|
134
|
+
return {
|
|
135
|
+
name: isSet(object.name) ? globalThis.String(object.name) : "",
|
|
136
|
+
mobile: isSet(object.mobile) ? globalThis.String(object.mobile) : "",
|
|
137
|
+
relation: isSet(object.relation) ? globalThis.String(object.relation) : "",
|
|
138
|
+
};
|
|
139
|
+
},
|
|
140
|
+
toJSON(message) {
|
|
141
|
+
const obj = {};
|
|
142
|
+
if (message.name !== "") {
|
|
143
|
+
obj.name = message.name;
|
|
144
|
+
}
|
|
145
|
+
if (message.mobile !== "") {
|
|
146
|
+
obj.mobile = message.mobile;
|
|
147
|
+
}
|
|
148
|
+
if (message.relation !== "") {
|
|
149
|
+
obj.relation = message.relation;
|
|
150
|
+
}
|
|
151
|
+
return obj;
|
|
152
|
+
},
|
|
153
|
+
create(base) {
|
|
154
|
+
return exports.Reference.fromPartial(base ?? {});
|
|
155
|
+
},
|
|
156
|
+
fromPartial(object) {
|
|
157
|
+
const message = createBaseReference();
|
|
158
|
+
message.name = object.name ?? "";
|
|
159
|
+
message.mobile = object.mobile ?? "";
|
|
160
|
+
message.relation = object.relation ?? "";
|
|
161
|
+
return message;
|
|
162
|
+
},
|
|
163
|
+
};
|
|
164
|
+
function createBasecustomerReferencesResponse() {
|
|
165
|
+
return { success: false };
|
|
166
|
+
}
|
|
167
|
+
exports.customerReferencesResponse = {
|
|
168
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
169
|
+
if (message.success !== false) {
|
|
170
|
+
writer.uint32(8).bool(message.success);
|
|
171
|
+
}
|
|
172
|
+
return writer;
|
|
173
|
+
},
|
|
174
|
+
decode(input, length) {
|
|
175
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
176
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
177
|
+
const message = createBasecustomerReferencesResponse();
|
|
178
|
+
while (reader.pos < end) {
|
|
179
|
+
const tag = reader.uint32();
|
|
180
|
+
switch (tag >>> 3) {
|
|
181
|
+
case 1:
|
|
182
|
+
if (tag !== 8) {
|
|
183
|
+
break;
|
|
184
|
+
}
|
|
185
|
+
message.success = reader.bool();
|
|
186
|
+
continue;
|
|
187
|
+
}
|
|
188
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
189
|
+
break;
|
|
190
|
+
}
|
|
191
|
+
reader.skipType(tag & 7);
|
|
192
|
+
}
|
|
193
|
+
return message;
|
|
194
|
+
},
|
|
195
|
+
fromJSON(object) {
|
|
196
|
+
return { success: isSet(object.success) ? globalThis.Boolean(object.success) : false };
|
|
197
|
+
},
|
|
198
|
+
toJSON(message) {
|
|
199
|
+
const obj = {};
|
|
200
|
+
if (message.success !== false) {
|
|
201
|
+
obj.success = message.success;
|
|
202
|
+
}
|
|
203
|
+
return obj;
|
|
204
|
+
},
|
|
205
|
+
create(base) {
|
|
206
|
+
return exports.customerReferencesResponse.fromPartial(base ?? {});
|
|
207
|
+
},
|
|
208
|
+
fromPartial(object) {
|
|
209
|
+
const message = createBasecustomerReferencesResponse();
|
|
210
|
+
message.success = object.success ?? false;
|
|
211
|
+
return message;
|
|
212
|
+
},
|
|
213
|
+
};
|
|
214
|
+
function longToNumber(long) {
|
|
215
|
+
if (long.gt(globalThis.Number.MAX_SAFE_INTEGER)) {
|
|
216
|
+
throw new globalThis.Error("Value is larger than Number.MAX_SAFE_INTEGER");
|
|
217
|
+
}
|
|
218
|
+
if (long.lt(globalThis.Number.MIN_SAFE_INTEGER)) {
|
|
219
|
+
throw new globalThis.Error("Value is smaller than Number.MIN_SAFE_INTEGER");
|
|
220
|
+
}
|
|
221
|
+
return long.toNumber();
|
|
222
|
+
}
|
|
223
|
+
if (minimal_1.default.util.Long !== long_1.default) {
|
|
224
|
+
minimal_1.default.util.Long = long_1.default;
|
|
225
|
+
minimal_1.default.configure();
|
|
226
|
+
}
|
|
227
|
+
function isSet(value) {
|
|
228
|
+
return value !== null && value !== undefined;
|
|
229
|
+
}
|
package/ts/loans.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type CallOptions, ChannelCredentials, Client, type ClientOptions, type ClientUnaryCall, type handleUnaryCall, Metadata, type ServiceError, type UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
2
|
+
import { customerReferencesRequest, customerReferencesResponse } from "./loans/addrefrences";
|
|
2
3
|
import { amortizationRequest, amortizationResponse } from "./loans/amortization";
|
|
3
4
|
import { approveLoanRequest, approveLoanResponse } from "./loans/approveloan";
|
|
4
5
|
import { bankListRequest, bankListResponse } from "./loans/banklist";
|
|
@@ -412,6 +413,15 @@ export declare const loansService: {
|
|
|
412
413
|
readonly responseSerialize: (value: manualPaymentAllocationResponse) => Buffer;
|
|
413
414
|
readonly responseDeserialize: (value: Buffer) => manualPaymentAllocationResponse;
|
|
414
415
|
};
|
|
416
|
+
readonly addCustomerRefrence: {
|
|
417
|
+
readonly path: "/service.loans/addCustomerRefrence";
|
|
418
|
+
readonly requestStream: false;
|
|
419
|
+
readonly responseStream: false;
|
|
420
|
+
readonly requestSerialize: (value: customerReferencesRequest) => Buffer;
|
|
421
|
+
readonly requestDeserialize: (value: Buffer) => customerReferencesRequest;
|
|
422
|
+
readonly responseSerialize: (value: customerReferencesResponse) => Buffer;
|
|
423
|
+
readonly responseDeserialize: (value: Buffer) => customerReferencesResponse;
|
|
424
|
+
};
|
|
415
425
|
};
|
|
416
426
|
export interface loansServer extends UntypedServiceImplementation {
|
|
417
427
|
creditlimit: handleUnaryCall<creditLimitRequest, creditLimitResponse>;
|
|
@@ -455,6 +465,7 @@ export interface loansServer extends UntypedServiceImplementation {
|
|
|
455
465
|
getCBloanDetails: handleUnaryCall<getCBloanDetailsRequest, getCBloanDetailsResponse>;
|
|
456
466
|
createLamFloan: handleUnaryCall<createLamfLoanRequest, createLamfLoanResponse>;
|
|
457
467
|
manualPaymentAllocation: handleUnaryCall<manualPaymentAllocationRequest, manualPaymentAllocationResponse>;
|
|
468
|
+
addCustomerRefrence: handleUnaryCall<customerReferencesRequest, customerReferencesResponse>;
|
|
458
469
|
}
|
|
459
470
|
export interface loansClient extends Client {
|
|
460
471
|
creditlimit(request: creditLimitRequest, callback: (error: ServiceError | null, response: creditLimitResponse) => void): ClientUnaryCall;
|
|
@@ -580,6 +591,9 @@ export interface loansClient extends Client {
|
|
|
580
591
|
manualPaymentAllocation(request: manualPaymentAllocationRequest, callback: (error: ServiceError | null, response: manualPaymentAllocationResponse) => void): ClientUnaryCall;
|
|
581
592
|
manualPaymentAllocation(request: manualPaymentAllocationRequest, metadata: Metadata, callback: (error: ServiceError | null, response: manualPaymentAllocationResponse) => void): ClientUnaryCall;
|
|
582
593
|
manualPaymentAllocation(request: manualPaymentAllocationRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: manualPaymentAllocationResponse) => void): ClientUnaryCall;
|
|
594
|
+
addCustomerRefrence(request: customerReferencesRequest, callback: (error: ServiceError | null, response: customerReferencesResponse) => void): ClientUnaryCall;
|
|
595
|
+
addCustomerRefrence(request: customerReferencesRequest, metadata: Metadata, callback: (error: ServiceError | null, response: customerReferencesResponse) => void): ClientUnaryCall;
|
|
596
|
+
addCustomerRefrence(request: customerReferencesRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: customerReferencesResponse) => void): ClientUnaryCall;
|
|
583
597
|
}
|
|
584
598
|
export declare const loansClient: {
|
|
585
599
|
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): loansClient;
|
package/ts/loans.js
CHANGED
|
@@ -8,6 +8,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
8
8
|
exports.loansClient = exports.loansService = exports.protobufPackage = void 0;
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const grpc_js_1 = require("@grpc/grpc-js");
|
|
11
|
+
const addrefrences_1 = require("./loans/addrefrences");
|
|
11
12
|
const amortization_1 = require("./loans/amortization");
|
|
12
13
|
const approveloan_1 = require("./loans/approveloan");
|
|
13
14
|
const banklist_1 = require("./loans/banklist");
|
|
@@ -420,5 +421,14 @@ exports.loansService = {
|
|
|
420
421
|
responseSerialize: (value) => Buffer.from(manualpaymentallocation_1.manualPaymentAllocationResponse.encode(value).finish()),
|
|
421
422
|
responseDeserialize: (value) => manualpaymentallocation_1.manualPaymentAllocationResponse.decode(value),
|
|
422
423
|
},
|
|
424
|
+
addCustomerRefrence: {
|
|
425
|
+
path: "/service.loans/addCustomerRefrence",
|
|
426
|
+
requestStream: false,
|
|
427
|
+
responseStream: false,
|
|
428
|
+
requestSerialize: (value) => Buffer.from(addrefrences_1.customerReferencesRequest.encode(value).finish()),
|
|
429
|
+
requestDeserialize: (value) => addrefrences_1.customerReferencesRequest.decode(value),
|
|
430
|
+
responseSerialize: (value) => Buffer.from(addrefrences_1.customerReferencesResponse.encode(value).finish()),
|
|
431
|
+
responseDeserialize: (value) => addrefrences_1.customerReferencesResponse.decode(value),
|
|
432
|
+
},
|
|
423
433
|
};
|
|
424
434
|
exports.loansClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.loansService, "service.loans");
|