@stashfin/grpc 1.2.8 → 1.2.10
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/customers/getcustomerbyid.d.ts +50 -0
- package/ts/customers/getcustomerbyid.js +346 -0
- package/ts/customers/getdashboard.d.ts +90 -0
- package/ts/customers/getdashboard.js +603 -0
- package/ts/customers/getdashboardmaincard.d.ts +69 -0
- package/ts/customers/getdashboardmaincard.js +520 -0
- package/ts/customers.d.ts +42 -0
- package/ts/customers.js +30 -0
- package/ts/google/protobuf/timestamp.d.ts +127 -0
- package/ts/google/protobuf/timestamp.js +97 -0
- package/ts/loans/approveloan.d.ts +39 -0
- package/ts/loans/approveloan.js +175 -0
- package/ts/loans/banklist.d.ts +13 -1
- package/ts/loans/banklist.js +88 -20
- package/ts/loans/calculateemi.d.ts +0 -11
- package/ts/loans/calculateemi.js +17 -71
- package/ts/loans/updateinstallments.d.ts +38 -0
- package/ts/loans/updateinstallments.js +161 -0
- package/ts/loans/updateloan.d.ts +39 -0
- package/ts/loans/updateloan.js +175 -0
- package/ts/loans.d.ts +42 -0
- package/ts/loans.js +30 -0
|
@@ -0,0 +1,520 @@
|
|
|
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 v3.20.3
|
|
6
|
+
// source: customers/getdashboardmaincard.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.MainCardData = exports.getDashboardMainCardResponse = exports.getDashboardMainCardRequest = exports.protobufPackage = void 0;
|
|
12
|
+
/* eslint-disable */
|
|
13
|
+
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
14
|
+
exports.protobufPackage = "customers.getdashboardmaincard";
|
|
15
|
+
function createBasegetDashboardMainCardRequest() {
|
|
16
|
+
return {};
|
|
17
|
+
}
|
|
18
|
+
exports.getDashboardMainCardRequest = {
|
|
19
|
+
encode(_, writer = minimal_1.default.Writer.create()) {
|
|
20
|
+
return writer;
|
|
21
|
+
},
|
|
22
|
+
decode(input, length) {
|
|
23
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
24
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
25
|
+
const message = createBasegetDashboardMainCardRequest();
|
|
26
|
+
while (reader.pos < end) {
|
|
27
|
+
const tag = reader.uint32();
|
|
28
|
+
switch (tag >>> 3) {
|
|
29
|
+
}
|
|
30
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
31
|
+
break;
|
|
32
|
+
}
|
|
33
|
+
reader.skipType(tag & 7);
|
|
34
|
+
}
|
|
35
|
+
return message;
|
|
36
|
+
},
|
|
37
|
+
fromJSON(_) {
|
|
38
|
+
return {};
|
|
39
|
+
},
|
|
40
|
+
toJSON(_) {
|
|
41
|
+
const obj = {};
|
|
42
|
+
return obj;
|
|
43
|
+
},
|
|
44
|
+
create(base) {
|
|
45
|
+
return exports.getDashboardMainCardRequest.fromPartial(base ?? {});
|
|
46
|
+
},
|
|
47
|
+
fromPartial(_) {
|
|
48
|
+
const message = createBasegetDashboardMainCardRequest();
|
|
49
|
+
return message;
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
function createBasegetDashboardMainCardResponse() {
|
|
53
|
+
return { block_name: "", block_code: "", block_data: undefined };
|
|
54
|
+
}
|
|
55
|
+
exports.getDashboardMainCardResponse = {
|
|
56
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
57
|
+
if (message.block_name !== "") {
|
|
58
|
+
writer.uint32(10).string(message.block_name);
|
|
59
|
+
}
|
|
60
|
+
if (message.block_code !== "") {
|
|
61
|
+
writer.uint32(18).string(message.block_code);
|
|
62
|
+
}
|
|
63
|
+
if (message.block_data !== undefined) {
|
|
64
|
+
exports.MainCardData.encode(message.block_data, writer.uint32(26).fork()).ldelim();
|
|
65
|
+
}
|
|
66
|
+
return writer;
|
|
67
|
+
},
|
|
68
|
+
decode(input, length) {
|
|
69
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
70
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
71
|
+
const message = createBasegetDashboardMainCardResponse();
|
|
72
|
+
while (reader.pos < end) {
|
|
73
|
+
const tag = reader.uint32();
|
|
74
|
+
switch (tag >>> 3) {
|
|
75
|
+
case 1:
|
|
76
|
+
if (tag !== 10) {
|
|
77
|
+
break;
|
|
78
|
+
}
|
|
79
|
+
message.block_name = reader.string();
|
|
80
|
+
continue;
|
|
81
|
+
case 2:
|
|
82
|
+
if (tag !== 18) {
|
|
83
|
+
break;
|
|
84
|
+
}
|
|
85
|
+
message.block_code = reader.string();
|
|
86
|
+
continue;
|
|
87
|
+
case 3:
|
|
88
|
+
if (tag !== 26) {
|
|
89
|
+
break;
|
|
90
|
+
}
|
|
91
|
+
message.block_data = exports.MainCardData.decode(reader, reader.uint32());
|
|
92
|
+
continue;
|
|
93
|
+
}
|
|
94
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
95
|
+
break;
|
|
96
|
+
}
|
|
97
|
+
reader.skipType(tag & 7);
|
|
98
|
+
}
|
|
99
|
+
return message;
|
|
100
|
+
},
|
|
101
|
+
fromJSON(object) {
|
|
102
|
+
return {
|
|
103
|
+
block_name: isSet(object.block_name) ? globalThis.String(object.block_name) : "",
|
|
104
|
+
block_code: isSet(object.block_code) ? globalThis.String(object.block_code) : "",
|
|
105
|
+
block_data: isSet(object.block_data) ? exports.MainCardData.fromJSON(object.block_data) : undefined,
|
|
106
|
+
};
|
|
107
|
+
},
|
|
108
|
+
toJSON(message) {
|
|
109
|
+
const obj = {};
|
|
110
|
+
if (message.block_name !== "") {
|
|
111
|
+
obj.block_name = message.block_name;
|
|
112
|
+
}
|
|
113
|
+
if (message.block_code !== "") {
|
|
114
|
+
obj.block_code = message.block_code;
|
|
115
|
+
}
|
|
116
|
+
if (message.block_data !== undefined) {
|
|
117
|
+
obj.block_data = exports.MainCardData.toJSON(message.block_data);
|
|
118
|
+
}
|
|
119
|
+
return obj;
|
|
120
|
+
},
|
|
121
|
+
create(base) {
|
|
122
|
+
return exports.getDashboardMainCardResponse.fromPartial(base ?? {});
|
|
123
|
+
},
|
|
124
|
+
fromPartial(object) {
|
|
125
|
+
const message = createBasegetDashboardMainCardResponse();
|
|
126
|
+
message.block_name = object.block_name ?? "";
|
|
127
|
+
message.block_code = object.block_code ?? "";
|
|
128
|
+
message.block_data = (object.block_data !== undefined && object.block_data !== null)
|
|
129
|
+
? exports.MainCardData.fromPartial(object.block_data)
|
|
130
|
+
: undefined;
|
|
131
|
+
return message;
|
|
132
|
+
},
|
|
133
|
+
};
|
|
134
|
+
function createBaseMainCardData() {
|
|
135
|
+
return {
|
|
136
|
+
text: "",
|
|
137
|
+
amount_text: "",
|
|
138
|
+
sub_text: "",
|
|
139
|
+
action_button_text: "",
|
|
140
|
+
action: "",
|
|
141
|
+
action_type: "",
|
|
142
|
+
total_loc: 0,
|
|
143
|
+
used_loc: 0,
|
|
144
|
+
available_sp_loc: 0,
|
|
145
|
+
can_reload_card: false,
|
|
146
|
+
disbursed_amount: "",
|
|
147
|
+
remaining_emi: "",
|
|
148
|
+
balance_emi_amount: 0,
|
|
149
|
+
comment: "",
|
|
150
|
+
landing_page: "",
|
|
151
|
+
timer: "",
|
|
152
|
+
image: "",
|
|
153
|
+
loc_error: "",
|
|
154
|
+
show_button: false,
|
|
155
|
+
total_stash_cash: "",
|
|
156
|
+
supp_title: "",
|
|
157
|
+
supp_loc_status: 0,
|
|
158
|
+
supp_sub_title: "",
|
|
159
|
+
};
|
|
160
|
+
}
|
|
161
|
+
exports.MainCardData = {
|
|
162
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
163
|
+
if (message.text !== "") {
|
|
164
|
+
writer.uint32(10).string(message.text);
|
|
165
|
+
}
|
|
166
|
+
if (message.amount_text !== "") {
|
|
167
|
+
writer.uint32(18).string(message.amount_text);
|
|
168
|
+
}
|
|
169
|
+
if (message.sub_text !== "") {
|
|
170
|
+
writer.uint32(26).string(message.sub_text);
|
|
171
|
+
}
|
|
172
|
+
if (message.action_button_text !== "") {
|
|
173
|
+
writer.uint32(34).string(message.action_button_text);
|
|
174
|
+
}
|
|
175
|
+
if (message.action !== "") {
|
|
176
|
+
writer.uint32(42).string(message.action);
|
|
177
|
+
}
|
|
178
|
+
if (message.action_type !== "") {
|
|
179
|
+
writer.uint32(50).string(message.action_type);
|
|
180
|
+
}
|
|
181
|
+
if (message.total_loc !== 0) {
|
|
182
|
+
writer.uint32(56).int32(message.total_loc);
|
|
183
|
+
}
|
|
184
|
+
if (message.used_loc !== 0) {
|
|
185
|
+
writer.uint32(64).int32(message.used_loc);
|
|
186
|
+
}
|
|
187
|
+
if (message.available_sp_loc !== 0) {
|
|
188
|
+
writer.uint32(72).int32(message.available_sp_loc);
|
|
189
|
+
}
|
|
190
|
+
if (message.can_reload_card !== false) {
|
|
191
|
+
writer.uint32(80).bool(message.can_reload_card);
|
|
192
|
+
}
|
|
193
|
+
if (message.disbursed_amount !== "") {
|
|
194
|
+
writer.uint32(90).string(message.disbursed_amount);
|
|
195
|
+
}
|
|
196
|
+
if (message.remaining_emi !== "") {
|
|
197
|
+
writer.uint32(98).string(message.remaining_emi);
|
|
198
|
+
}
|
|
199
|
+
if (message.balance_emi_amount !== 0) {
|
|
200
|
+
writer.uint32(104).int32(message.balance_emi_amount);
|
|
201
|
+
}
|
|
202
|
+
if (message.comment !== "") {
|
|
203
|
+
writer.uint32(114).string(message.comment);
|
|
204
|
+
}
|
|
205
|
+
if (message.landing_page !== "") {
|
|
206
|
+
writer.uint32(122).string(message.landing_page);
|
|
207
|
+
}
|
|
208
|
+
if (message.timer !== "") {
|
|
209
|
+
writer.uint32(130).string(message.timer);
|
|
210
|
+
}
|
|
211
|
+
if (message.image !== "") {
|
|
212
|
+
writer.uint32(138).string(message.image);
|
|
213
|
+
}
|
|
214
|
+
if (message.loc_error !== "") {
|
|
215
|
+
writer.uint32(146).string(message.loc_error);
|
|
216
|
+
}
|
|
217
|
+
if (message.show_button !== false) {
|
|
218
|
+
writer.uint32(152).bool(message.show_button);
|
|
219
|
+
}
|
|
220
|
+
if (message.total_stash_cash !== "") {
|
|
221
|
+
writer.uint32(162).string(message.total_stash_cash);
|
|
222
|
+
}
|
|
223
|
+
if (message.supp_title !== "") {
|
|
224
|
+
writer.uint32(170).string(message.supp_title);
|
|
225
|
+
}
|
|
226
|
+
if (message.supp_loc_status !== 0) {
|
|
227
|
+
writer.uint32(176).int32(message.supp_loc_status);
|
|
228
|
+
}
|
|
229
|
+
if (message.supp_sub_title !== "") {
|
|
230
|
+
writer.uint32(186).string(message.supp_sub_title);
|
|
231
|
+
}
|
|
232
|
+
return writer;
|
|
233
|
+
},
|
|
234
|
+
decode(input, length) {
|
|
235
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
236
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
237
|
+
const message = createBaseMainCardData();
|
|
238
|
+
while (reader.pos < end) {
|
|
239
|
+
const tag = reader.uint32();
|
|
240
|
+
switch (tag >>> 3) {
|
|
241
|
+
case 1:
|
|
242
|
+
if (tag !== 10) {
|
|
243
|
+
break;
|
|
244
|
+
}
|
|
245
|
+
message.text = reader.string();
|
|
246
|
+
continue;
|
|
247
|
+
case 2:
|
|
248
|
+
if (tag !== 18) {
|
|
249
|
+
break;
|
|
250
|
+
}
|
|
251
|
+
message.amount_text = reader.string();
|
|
252
|
+
continue;
|
|
253
|
+
case 3:
|
|
254
|
+
if (tag !== 26) {
|
|
255
|
+
break;
|
|
256
|
+
}
|
|
257
|
+
message.sub_text = reader.string();
|
|
258
|
+
continue;
|
|
259
|
+
case 4:
|
|
260
|
+
if (tag !== 34) {
|
|
261
|
+
break;
|
|
262
|
+
}
|
|
263
|
+
message.action_button_text = reader.string();
|
|
264
|
+
continue;
|
|
265
|
+
case 5:
|
|
266
|
+
if (tag !== 42) {
|
|
267
|
+
break;
|
|
268
|
+
}
|
|
269
|
+
message.action = reader.string();
|
|
270
|
+
continue;
|
|
271
|
+
case 6:
|
|
272
|
+
if (tag !== 50) {
|
|
273
|
+
break;
|
|
274
|
+
}
|
|
275
|
+
message.action_type = reader.string();
|
|
276
|
+
continue;
|
|
277
|
+
case 7:
|
|
278
|
+
if (tag !== 56) {
|
|
279
|
+
break;
|
|
280
|
+
}
|
|
281
|
+
message.total_loc = reader.int32();
|
|
282
|
+
continue;
|
|
283
|
+
case 8:
|
|
284
|
+
if (tag !== 64) {
|
|
285
|
+
break;
|
|
286
|
+
}
|
|
287
|
+
message.used_loc = reader.int32();
|
|
288
|
+
continue;
|
|
289
|
+
case 9:
|
|
290
|
+
if (tag !== 72) {
|
|
291
|
+
break;
|
|
292
|
+
}
|
|
293
|
+
message.available_sp_loc = reader.int32();
|
|
294
|
+
continue;
|
|
295
|
+
case 10:
|
|
296
|
+
if (tag !== 80) {
|
|
297
|
+
break;
|
|
298
|
+
}
|
|
299
|
+
message.can_reload_card = reader.bool();
|
|
300
|
+
continue;
|
|
301
|
+
case 11:
|
|
302
|
+
if (tag !== 90) {
|
|
303
|
+
break;
|
|
304
|
+
}
|
|
305
|
+
message.disbursed_amount = reader.string();
|
|
306
|
+
continue;
|
|
307
|
+
case 12:
|
|
308
|
+
if (tag !== 98) {
|
|
309
|
+
break;
|
|
310
|
+
}
|
|
311
|
+
message.remaining_emi = reader.string();
|
|
312
|
+
continue;
|
|
313
|
+
case 13:
|
|
314
|
+
if (tag !== 104) {
|
|
315
|
+
break;
|
|
316
|
+
}
|
|
317
|
+
message.balance_emi_amount = reader.int32();
|
|
318
|
+
continue;
|
|
319
|
+
case 14:
|
|
320
|
+
if (tag !== 114) {
|
|
321
|
+
break;
|
|
322
|
+
}
|
|
323
|
+
message.comment = reader.string();
|
|
324
|
+
continue;
|
|
325
|
+
case 15:
|
|
326
|
+
if (tag !== 122) {
|
|
327
|
+
break;
|
|
328
|
+
}
|
|
329
|
+
message.landing_page = reader.string();
|
|
330
|
+
continue;
|
|
331
|
+
case 16:
|
|
332
|
+
if (tag !== 130) {
|
|
333
|
+
break;
|
|
334
|
+
}
|
|
335
|
+
message.timer = reader.string();
|
|
336
|
+
continue;
|
|
337
|
+
case 17:
|
|
338
|
+
if (tag !== 138) {
|
|
339
|
+
break;
|
|
340
|
+
}
|
|
341
|
+
message.image = reader.string();
|
|
342
|
+
continue;
|
|
343
|
+
case 18:
|
|
344
|
+
if (tag !== 146) {
|
|
345
|
+
break;
|
|
346
|
+
}
|
|
347
|
+
message.loc_error = reader.string();
|
|
348
|
+
continue;
|
|
349
|
+
case 19:
|
|
350
|
+
if (tag !== 152) {
|
|
351
|
+
break;
|
|
352
|
+
}
|
|
353
|
+
message.show_button = reader.bool();
|
|
354
|
+
continue;
|
|
355
|
+
case 20:
|
|
356
|
+
if (tag !== 162) {
|
|
357
|
+
break;
|
|
358
|
+
}
|
|
359
|
+
message.total_stash_cash = reader.string();
|
|
360
|
+
continue;
|
|
361
|
+
case 21:
|
|
362
|
+
if (tag !== 170) {
|
|
363
|
+
break;
|
|
364
|
+
}
|
|
365
|
+
message.supp_title = reader.string();
|
|
366
|
+
continue;
|
|
367
|
+
case 22:
|
|
368
|
+
if (tag !== 176) {
|
|
369
|
+
break;
|
|
370
|
+
}
|
|
371
|
+
message.supp_loc_status = reader.int32();
|
|
372
|
+
continue;
|
|
373
|
+
case 23:
|
|
374
|
+
if (tag !== 186) {
|
|
375
|
+
break;
|
|
376
|
+
}
|
|
377
|
+
message.supp_sub_title = reader.string();
|
|
378
|
+
continue;
|
|
379
|
+
}
|
|
380
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
381
|
+
break;
|
|
382
|
+
}
|
|
383
|
+
reader.skipType(tag & 7);
|
|
384
|
+
}
|
|
385
|
+
return message;
|
|
386
|
+
},
|
|
387
|
+
fromJSON(object) {
|
|
388
|
+
return {
|
|
389
|
+
text: isSet(object.text) ? globalThis.String(object.text) : "",
|
|
390
|
+
amount_text: isSet(object.amount_text) ? globalThis.String(object.amount_text) : "",
|
|
391
|
+
sub_text: isSet(object.sub_text) ? globalThis.String(object.sub_text) : "",
|
|
392
|
+
action_button_text: isSet(object.action_button_text) ? globalThis.String(object.action_button_text) : "",
|
|
393
|
+
action: isSet(object.action) ? globalThis.String(object.action) : "",
|
|
394
|
+
action_type: isSet(object.action_type) ? globalThis.String(object.action_type) : "",
|
|
395
|
+
total_loc: isSet(object.total_loc) ? globalThis.Number(object.total_loc) : 0,
|
|
396
|
+
used_loc: isSet(object.used_loc) ? globalThis.Number(object.used_loc) : 0,
|
|
397
|
+
available_sp_loc: isSet(object.available_sp_loc) ? globalThis.Number(object.available_sp_loc) : 0,
|
|
398
|
+
can_reload_card: isSet(object.can_reload_card) ? globalThis.Boolean(object.can_reload_card) : false,
|
|
399
|
+
disbursed_amount: isSet(object.disbursed_amount) ? globalThis.String(object.disbursed_amount) : "",
|
|
400
|
+
remaining_emi: isSet(object.remaining_emi) ? globalThis.String(object.remaining_emi) : "",
|
|
401
|
+
balance_emi_amount: isSet(object.balance_emi_amount) ? globalThis.Number(object.balance_emi_amount) : 0,
|
|
402
|
+
comment: isSet(object.comment) ? globalThis.String(object.comment) : "",
|
|
403
|
+
landing_page: isSet(object.landing_page) ? globalThis.String(object.landing_page) : "",
|
|
404
|
+
timer: isSet(object.timer) ? globalThis.String(object.timer) : "",
|
|
405
|
+
image: isSet(object.image) ? globalThis.String(object.image) : "",
|
|
406
|
+
loc_error: isSet(object.loc_error) ? globalThis.String(object.loc_error) : "",
|
|
407
|
+
show_button: isSet(object.show_button) ? globalThis.Boolean(object.show_button) : false,
|
|
408
|
+
total_stash_cash: isSet(object.total_stash_cash) ? globalThis.String(object.total_stash_cash) : "",
|
|
409
|
+
supp_title: isSet(object.supp_title) ? globalThis.String(object.supp_title) : "",
|
|
410
|
+
supp_loc_status: isSet(object.supp_loc_status) ? globalThis.Number(object.supp_loc_status) : 0,
|
|
411
|
+
supp_sub_title: isSet(object.supp_sub_title) ? globalThis.String(object.supp_sub_title) : "",
|
|
412
|
+
};
|
|
413
|
+
},
|
|
414
|
+
toJSON(message) {
|
|
415
|
+
const obj = {};
|
|
416
|
+
if (message.text !== "") {
|
|
417
|
+
obj.text = message.text;
|
|
418
|
+
}
|
|
419
|
+
if (message.amount_text !== "") {
|
|
420
|
+
obj.amount_text = message.amount_text;
|
|
421
|
+
}
|
|
422
|
+
if (message.sub_text !== "") {
|
|
423
|
+
obj.sub_text = message.sub_text;
|
|
424
|
+
}
|
|
425
|
+
if (message.action_button_text !== "") {
|
|
426
|
+
obj.action_button_text = message.action_button_text;
|
|
427
|
+
}
|
|
428
|
+
if (message.action !== "") {
|
|
429
|
+
obj.action = message.action;
|
|
430
|
+
}
|
|
431
|
+
if (message.action_type !== "") {
|
|
432
|
+
obj.action_type = message.action_type;
|
|
433
|
+
}
|
|
434
|
+
if (message.total_loc !== 0) {
|
|
435
|
+
obj.total_loc = Math.round(message.total_loc);
|
|
436
|
+
}
|
|
437
|
+
if (message.used_loc !== 0) {
|
|
438
|
+
obj.used_loc = Math.round(message.used_loc);
|
|
439
|
+
}
|
|
440
|
+
if (message.available_sp_loc !== 0) {
|
|
441
|
+
obj.available_sp_loc = Math.round(message.available_sp_loc);
|
|
442
|
+
}
|
|
443
|
+
if (message.can_reload_card !== false) {
|
|
444
|
+
obj.can_reload_card = message.can_reload_card;
|
|
445
|
+
}
|
|
446
|
+
if (message.disbursed_amount !== "") {
|
|
447
|
+
obj.disbursed_amount = message.disbursed_amount;
|
|
448
|
+
}
|
|
449
|
+
if (message.remaining_emi !== "") {
|
|
450
|
+
obj.remaining_emi = message.remaining_emi;
|
|
451
|
+
}
|
|
452
|
+
if (message.balance_emi_amount !== 0) {
|
|
453
|
+
obj.balance_emi_amount = Math.round(message.balance_emi_amount);
|
|
454
|
+
}
|
|
455
|
+
if (message.comment !== "") {
|
|
456
|
+
obj.comment = message.comment;
|
|
457
|
+
}
|
|
458
|
+
if (message.landing_page !== "") {
|
|
459
|
+
obj.landing_page = message.landing_page;
|
|
460
|
+
}
|
|
461
|
+
if (message.timer !== "") {
|
|
462
|
+
obj.timer = message.timer;
|
|
463
|
+
}
|
|
464
|
+
if (message.image !== "") {
|
|
465
|
+
obj.image = message.image;
|
|
466
|
+
}
|
|
467
|
+
if (message.loc_error !== "") {
|
|
468
|
+
obj.loc_error = message.loc_error;
|
|
469
|
+
}
|
|
470
|
+
if (message.show_button !== false) {
|
|
471
|
+
obj.show_button = message.show_button;
|
|
472
|
+
}
|
|
473
|
+
if (message.total_stash_cash !== "") {
|
|
474
|
+
obj.total_stash_cash = message.total_stash_cash;
|
|
475
|
+
}
|
|
476
|
+
if (message.supp_title !== "") {
|
|
477
|
+
obj.supp_title = message.supp_title;
|
|
478
|
+
}
|
|
479
|
+
if (message.supp_loc_status !== 0) {
|
|
480
|
+
obj.supp_loc_status = Math.round(message.supp_loc_status);
|
|
481
|
+
}
|
|
482
|
+
if (message.supp_sub_title !== "") {
|
|
483
|
+
obj.supp_sub_title = message.supp_sub_title;
|
|
484
|
+
}
|
|
485
|
+
return obj;
|
|
486
|
+
},
|
|
487
|
+
create(base) {
|
|
488
|
+
return exports.MainCardData.fromPartial(base ?? {});
|
|
489
|
+
},
|
|
490
|
+
fromPartial(object) {
|
|
491
|
+
const message = createBaseMainCardData();
|
|
492
|
+
message.text = object.text ?? "";
|
|
493
|
+
message.amount_text = object.amount_text ?? "";
|
|
494
|
+
message.sub_text = object.sub_text ?? "";
|
|
495
|
+
message.action_button_text = object.action_button_text ?? "";
|
|
496
|
+
message.action = object.action ?? "";
|
|
497
|
+
message.action_type = object.action_type ?? "";
|
|
498
|
+
message.total_loc = object.total_loc ?? 0;
|
|
499
|
+
message.used_loc = object.used_loc ?? 0;
|
|
500
|
+
message.available_sp_loc = object.available_sp_loc ?? 0;
|
|
501
|
+
message.can_reload_card = object.can_reload_card ?? false;
|
|
502
|
+
message.disbursed_amount = object.disbursed_amount ?? "";
|
|
503
|
+
message.remaining_emi = object.remaining_emi ?? "";
|
|
504
|
+
message.balance_emi_amount = object.balance_emi_amount ?? 0;
|
|
505
|
+
message.comment = object.comment ?? "";
|
|
506
|
+
message.landing_page = object.landing_page ?? "";
|
|
507
|
+
message.timer = object.timer ?? "";
|
|
508
|
+
message.image = object.image ?? "";
|
|
509
|
+
message.loc_error = object.loc_error ?? "";
|
|
510
|
+
message.show_button = object.show_button ?? false;
|
|
511
|
+
message.total_stash_cash = object.total_stash_cash ?? "";
|
|
512
|
+
message.supp_title = object.supp_title ?? "";
|
|
513
|
+
message.supp_loc_status = object.supp_loc_status ?? 0;
|
|
514
|
+
message.supp_sub_title = object.supp_sub_title ?? "";
|
|
515
|
+
return message;
|
|
516
|
+
},
|
|
517
|
+
};
|
|
518
|
+
function isSet(value) {
|
|
519
|
+
return value !== null && value !== undefined;
|
|
520
|
+
}
|
package/ts/customers.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { type CallOptions, ChannelCredentials, Client, type ClientOptions, type ClientUnaryCall, type handleUnaryCall, Metadata, type ServiceError, type UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
2
|
+
import { getCustomerByIdRequest, getCustomerByIdResponse } from "./customers/getcustomerbyid";
|
|
3
|
+
import { getDashboardRequest, getDashboardResponse } from "./customers/getdashboard";
|
|
4
|
+
import { getDashboardMainCardRequest, getDashboardMainCardResponse } from "./customers/getdashboardmaincard";
|
|
2
5
|
import { getCustomerProfileRequest, getCustomerProfileResponse } from "./customers/getprofile";
|
|
3
6
|
import { getstepRequest, getstepResponse } from "./customers/getstep";
|
|
4
7
|
import { updateProfileBasicRequest, updateProfileBasicResponse } from "./customers/profilebasic";
|
|
@@ -208,6 +211,33 @@ export declare const customersService: {
|
|
|
208
211
|
readonly responseSerialize: (value: verifyEmailResponse) => Buffer;
|
|
209
212
|
readonly responseDeserialize: (value: Buffer) => verifyEmailResponse;
|
|
210
213
|
};
|
|
214
|
+
readonly getCustomerById: {
|
|
215
|
+
readonly path: "/service.customers/getCustomerById";
|
|
216
|
+
readonly requestStream: false;
|
|
217
|
+
readonly responseStream: false;
|
|
218
|
+
readonly requestSerialize: (value: getCustomerByIdRequest) => Buffer;
|
|
219
|
+
readonly requestDeserialize: (value: Buffer) => getCustomerByIdRequest;
|
|
220
|
+
readonly responseSerialize: (value: getCustomerByIdResponse) => Buffer;
|
|
221
|
+
readonly responseDeserialize: (value: Buffer) => getCustomerByIdResponse;
|
|
222
|
+
};
|
|
223
|
+
readonly getDashboard: {
|
|
224
|
+
readonly path: "/service.customers/getDashboard";
|
|
225
|
+
readonly requestStream: false;
|
|
226
|
+
readonly responseStream: false;
|
|
227
|
+
readonly requestSerialize: (value: getDashboardRequest) => Buffer;
|
|
228
|
+
readonly requestDeserialize: (value: Buffer) => getDashboardRequest;
|
|
229
|
+
readonly responseSerialize: (value: getDashboardResponse) => Buffer;
|
|
230
|
+
readonly responseDeserialize: (value: Buffer) => getDashboardResponse;
|
|
231
|
+
};
|
|
232
|
+
readonly getDashboardMainCard: {
|
|
233
|
+
readonly path: "/service.customers/getDashboardMainCard";
|
|
234
|
+
readonly requestStream: false;
|
|
235
|
+
readonly responseStream: false;
|
|
236
|
+
readonly requestSerialize: (value: getDashboardMainCardRequest) => Buffer;
|
|
237
|
+
readonly requestDeserialize: (value: Buffer) => getDashboardMainCardRequest;
|
|
238
|
+
readonly responseSerialize: (value: getDashboardMainCardResponse) => Buffer;
|
|
239
|
+
readonly responseDeserialize: (value: Buffer) => getDashboardMainCardResponse;
|
|
240
|
+
};
|
|
211
241
|
};
|
|
212
242
|
export interface customersServer extends UntypedServiceImplementation {
|
|
213
243
|
sendOtp: handleUnaryCall<sendOtpRequest, sendOtpRespone>;
|
|
@@ -231,6 +261,9 @@ export interface customersServer extends UntypedServiceImplementation {
|
|
|
231
261
|
step11: handleUnaryCall<stepstaticRequest, stepstaticRequest>;
|
|
232
262
|
sendEmailToken: handleUnaryCall<sendEmailTokenRequest, sendEmailTokenResponse>;
|
|
233
263
|
verifyEmail: handleUnaryCall<verifyEmailRequest, verifyEmailResponse>;
|
|
264
|
+
getCustomerById: handleUnaryCall<getCustomerByIdRequest, getCustomerByIdResponse>;
|
|
265
|
+
getDashboard: handleUnaryCall<getDashboardRequest, getDashboardResponse>;
|
|
266
|
+
getDashboardMainCard: handleUnaryCall<getDashboardMainCardRequest, getDashboardMainCardResponse>;
|
|
234
267
|
}
|
|
235
268
|
export interface customersClient extends Client {
|
|
236
269
|
sendOtp(request: sendOtpRequest, callback: (error: ServiceError | null, response: sendOtpRespone) => void): ClientUnaryCall;
|
|
@@ -296,6 +329,15 @@ export interface customersClient extends Client {
|
|
|
296
329
|
verifyEmail(request: verifyEmailRequest, callback: (error: ServiceError | null, response: verifyEmailResponse) => void): ClientUnaryCall;
|
|
297
330
|
verifyEmail(request: verifyEmailRequest, metadata: Metadata, callback: (error: ServiceError | null, response: verifyEmailResponse) => void): ClientUnaryCall;
|
|
298
331
|
verifyEmail(request: verifyEmailRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: verifyEmailResponse) => void): ClientUnaryCall;
|
|
332
|
+
getCustomerById(request: getCustomerByIdRequest, callback: (error: ServiceError | null, response: getCustomerByIdResponse) => void): ClientUnaryCall;
|
|
333
|
+
getCustomerById(request: getCustomerByIdRequest, metadata: Metadata, callback: (error: ServiceError | null, response: getCustomerByIdResponse) => void): ClientUnaryCall;
|
|
334
|
+
getCustomerById(request: getCustomerByIdRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: getCustomerByIdResponse) => void): ClientUnaryCall;
|
|
335
|
+
getDashboard(request: getDashboardRequest, callback: (error: ServiceError | null, response: getDashboardResponse) => void): ClientUnaryCall;
|
|
336
|
+
getDashboard(request: getDashboardRequest, metadata: Metadata, callback: (error: ServiceError | null, response: getDashboardResponse) => void): ClientUnaryCall;
|
|
337
|
+
getDashboard(request: getDashboardRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: getDashboardResponse) => void): ClientUnaryCall;
|
|
338
|
+
getDashboardMainCard(request: getDashboardMainCardRequest, callback: (error: ServiceError | null, response: getDashboardMainCardResponse) => void): ClientUnaryCall;
|
|
339
|
+
getDashboardMainCard(request: getDashboardMainCardRequest, metadata: Metadata, callback: (error: ServiceError | null, response: getDashboardMainCardResponse) => void): ClientUnaryCall;
|
|
340
|
+
getDashboardMainCard(request: getDashboardMainCardRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: getDashboardMainCardResponse) => void): ClientUnaryCall;
|
|
299
341
|
}
|
|
300
342
|
export declare const customersClient: {
|
|
301
343
|
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): customersClient;
|
package/ts/customers.js
CHANGED
|
@@ -8,6 +8,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
8
8
|
exports.customersClient = exports.customersService = exports.protobufPackage = void 0;
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const grpc_js_1 = require("@grpc/grpc-js");
|
|
11
|
+
const getcustomerbyid_1 = require("./customers/getcustomerbyid");
|
|
12
|
+
const getdashboard_1 = require("./customers/getdashboard");
|
|
13
|
+
const getdashboardmaincard_1 = require("./customers/getdashboardmaincard");
|
|
11
14
|
const getprofile_1 = require("./customers/getprofile");
|
|
12
15
|
const getstep_1 = require("./customers/getstep");
|
|
13
16
|
const profilebasic_1 = require("./customers/profilebasic");
|
|
@@ -216,5 +219,32 @@ exports.customersService = {
|
|
|
216
219
|
responseSerialize: (value) => Buffer.from(verifyemail_1.verifyEmailResponse.encode(value).finish()),
|
|
217
220
|
responseDeserialize: (value) => verifyemail_1.verifyEmailResponse.decode(value),
|
|
218
221
|
},
|
|
222
|
+
getCustomerById: {
|
|
223
|
+
path: "/service.customers/getCustomerById",
|
|
224
|
+
requestStream: false,
|
|
225
|
+
responseStream: false,
|
|
226
|
+
requestSerialize: (value) => Buffer.from(getcustomerbyid_1.getCustomerByIdRequest.encode(value).finish()),
|
|
227
|
+
requestDeserialize: (value) => getcustomerbyid_1.getCustomerByIdRequest.decode(value),
|
|
228
|
+
responseSerialize: (value) => Buffer.from(getcustomerbyid_1.getCustomerByIdResponse.encode(value).finish()),
|
|
229
|
+
responseDeserialize: (value) => getcustomerbyid_1.getCustomerByIdResponse.decode(value),
|
|
230
|
+
},
|
|
231
|
+
getDashboard: {
|
|
232
|
+
path: "/service.customers/getDashboard",
|
|
233
|
+
requestStream: false,
|
|
234
|
+
responseStream: false,
|
|
235
|
+
requestSerialize: (value) => Buffer.from(getdashboard_1.getDashboardRequest.encode(value).finish()),
|
|
236
|
+
requestDeserialize: (value) => getdashboard_1.getDashboardRequest.decode(value),
|
|
237
|
+
responseSerialize: (value) => Buffer.from(getdashboard_1.getDashboardResponse.encode(value).finish()),
|
|
238
|
+
responseDeserialize: (value) => getdashboard_1.getDashboardResponse.decode(value),
|
|
239
|
+
},
|
|
240
|
+
getDashboardMainCard: {
|
|
241
|
+
path: "/service.customers/getDashboardMainCard",
|
|
242
|
+
requestStream: false,
|
|
243
|
+
responseStream: false,
|
|
244
|
+
requestSerialize: (value) => Buffer.from(getdashboardmaincard_1.getDashboardMainCardRequest.encode(value).finish()),
|
|
245
|
+
requestDeserialize: (value) => getdashboardmaincard_1.getDashboardMainCardRequest.decode(value),
|
|
246
|
+
responseSerialize: (value) => Buffer.from(getdashboardmaincard_1.getDashboardMainCardResponse.encode(value).finish()),
|
|
247
|
+
responseDeserialize: (value) => getdashboardmaincard_1.getDashboardMainCardResponse.decode(value),
|
|
248
|
+
},
|
|
219
249
|
};
|
|
220
250
|
exports.customersClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.customersService, "service.customers");
|