@stashfin/grpc 1.2.139 → 1.2.140

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.
Files changed (169) hide show
  1. package/package.json +4 -1
  2. package/ts/bureau/getbasicdetails.d.ts +57 -0
  3. package/ts/bureau/getbasicdetails.js +341 -0
  4. package/ts/bureau/getdemogs.d.ts +113 -0
  5. package/ts/bureau/getdemogs.js +611 -0
  6. package/ts/bureau/getreport.d.ts +184 -0
  7. package/ts/bureau/getreport.js +1581 -0
  8. package/ts/bureau.d.ts +56 -0
  9. package/ts/bureau.js +44 -0
  10. package/ts/colender/disburseLoan.d.ts +44 -0
  11. package/ts/colender/disburseLoan.js +256 -0
  12. package/ts/colender/forecloseLoan.d.ts +41 -0
  13. package/ts/colender/forecloseLoan.js +205 -0
  14. package/ts/colender/repayLoan.d.ts +48 -0
  15. package/ts/colender/repayLoan.js +313 -0
  16. package/ts/colender.d.ts +56 -0
  17. package/ts/colender.js +44 -0
  18. package/ts/customers/aa/getbanklist.d.ts +48 -0
  19. package/ts/customers/aa/getbanklist.js +198 -0
  20. package/ts/customers/aa/initiate.d.ts +40 -0
  21. package/ts/customers/aa/initiate.js +209 -0
  22. package/ts/customers/addaddress.d.ts +50 -0
  23. package/ts/customers/addaddress.js +265 -0
  24. package/ts/customers/addbankaccountdetails.d.ts +37 -0
  25. package/ts/customers/addbankaccountdetails.js +147 -0
  26. package/ts/customers/addgstnumber.d.ts +35 -0
  27. package/ts/customers/addgstnumber.js +117 -0
  28. package/ts/customers/addsuspendedcustomer.d.ts +36 -0
  29. package/ts/customers/addsuspendedcustomer.js +133 -0
  30. package/ts/customers/adduserapps.d.ts +74 -0
  31. package/ts/customers/adduserapps.js +210 -0
  32. package/ts/customers/changempin.d.ts +36 -0
  33. package/ts/customers/changempin.js +133 -0
  34. package/ts/customers/createcustomerreference.d.ts +43 -0
  35. package/ts/customers/createcustomerreference.js +226 -0
  36. package/ts/customers/deleteprofile.d.ts +35 -0
  37. package/ts/customers/deleteprofile.js +120 -0
  38. package/ts/customers/disablempin.d.ts +34 -0
  39. package/ts/customers/disablempin.js +104 -0
  40. package/ts/customers/fetchrcprofile.d.ts +45 -0
  41. package/ts/customers/fetchrcprofile.js +271 -0
  42. package/ts/customers/forgotmpin.d.ts +35 -0
  43. package/ts/customers/forgotmpin.js +117 -0
  44. package/ts/customers/forgotmpinverify.d.ts +36 -0
  45. package/ts/customers/forgotmpinverify.js +133 -0
  46. package/ts/customers/getbankaccountdetails.d.ts +36 -0
  47. package/ts/customers/getbankaccountdetails.js +134 -0
  48. package/ts/customers/getbasicinfo.d.ts +56 -0
  49. package/ts/customers/getbasicinfo.js +323 -0
  50. package/ts/customers/getcities.d.ts +47 -0
  51. package/ts/customers/getcities.js +183 -0
  52. package/ts/customers/getcustomerbyid.d.ts +128 -0
  53. package/ts/customers/getcustomerbyid.js +1411 -0
  54. package/ts/customers/getdashboard.d.ts +91 -0
  55. package/ts/customers/getdashboard.js +618 -0
  56. package/ts/customers/getdashboardmaincard.d.ts +69 -0
  57. package/ts/customers/getdashboardmaincard.js +520 -0
  58. package/ts/customers/getdocuments.d.ts +36 -0
  59. package/ts/customers/getdocuments.js +134 -0
  60. package/ts/customers/getprofessionalinfo.d.ts +54 -0
  61. package/ts/customers/getprofessionalinfo.js +286 -0
  62. package/ts/customers/getprofile.d.ts +54 -0
  63. package/ts/customers/getprofile.js +296 -0
  64. package/ts/customers/getselfieetxnid.d.ts +34 -0
  65. package/ts/customers/getselfieetxnid.js +104 -0
  66. package/ts/customers/getstates.d.ts +46 -0
  67. package/ts/customers/getstates.js +170 -0
  68. package/ts/customers/getstep.d.ts +69 -0
  69. package/ts/customers/getstep.js +406 -0
  70. package/ts/customers/profilebasic.d.ts +38 -0
  71. package/ts/customers/profilebasic.js +161 -0
  72. package/ts/customers/profileupdatetnc.d.ts +35 -0
  73. package/ts/customers/profileupdatetnc.js +117 -0
  74. package/ts/customers/savebasicdetails.d.ts +47 -0
  75. package/ts/customers/savebasicdetails.js +185 -0
  76. package/ts/customers/saveunlocklimit.d.ts +34 -0
  77. package/ts/customers/saveunlocklimit.js +104 -0
  78. package/ts/customers/sendotp.d.ts +38 -0
  79. package/ts/customers/sendotp.js +165 -0
  80. package/ts/customers/sendotptoemail.d.ts +35 -0
  81. package/ts/customers/sendotptoemail.js +117 -0
  82. package/ts/customers/setmpin.d.ts +36 -0
  83. package/ts/customers/setmpin.js +133 -0
  84. package/ts/customers/step10.d.ts +73 -0
  85. package/ts/customers/step10.js +459 -0
  86. package/ts/customers/step7.d.ts +68 -0
  87. package/ts/customers/step7.js +381 -0
  88. package/ts/customers/step8.d.ts +69 -0
  89. package/ts/customers/step8.js +395 -0
  90. package/ts/customers/step9.d.ts +75 -0
  91. package/ts/customers/step9.js +489 -0
  92. package/ts/customers/stepstatic.d.ts +66 -0
  93. package/ts/customers/stepstatic.js +354 -0
  94. package/ts/customers/updatedob.d.ts +35 -0
  95. package/ts/customers/updatedob.js +117 -0
  96. package/ts/customers/updatelocstatus.d.ts +36 -0
  97. package/ts/customers/updatelocstatus.js +133 -0
  98. package/ts/customers/updatemobilesendotp.d.ts +35 -0
  99. package/ts/customers/updatemobilesendotp.js +117 -0
  100. package/ts/customers/updatemobileverifyotp.d.ts +36 -0
  101. package/ts/customers/updatemobileverifyotp.js +133 -0
  102. package/ts/customers/updateokyctxn.d.ts +37 -0
  103. package/ts/customers/updateokyctxn.js +147 -0
  104. package/ts/customers/updateselfieetxn.d.ts +36 -0
  105. package/ts/customers/updateselfieetxn.js +133 -0
  106. package/ts/customers/validatepan.d.ts +45 -0
  107. package/ts/customers/validatepan.js +274 -0
  108. package/ts/customers/verifympin.d.ts +37 -0
  109. package/ts/customers/verifympin.js +149 -0
  110. package/ts/customers/verifyotp.d.ts +41 -0
  111. package/ts/customers/verifyotp.js +205 -0
  112. package/ts/customers/verifyotptoemail.d.ts +35 -0
  113. package/ts/customers/verifyotptoemail.js +117 -0
  114. package/ts/customers.d.ts +764 -0
  115. package/ts/customers.js +548 -0
  116. package/ts/example.d.ts +78 -0
  117. package/ts/example.js +199 -0
  118. package/ts/loans/approveloan.d.ts +40 -0
  119. package/ts/loans/approveloan.js +189 -0
  120. package/ts/loans/banklist.d.ts +37 -0
  121. package/ts/loans/banklist.js +148 -0
  122. package/ts/loans/calculateemi.d.ts +57 -0
  123. package/ts/loans/calculateemi.js +340 -0
  124. package/ts/loans/creditlimit.d.ts +51 -0
  125. package/ts/loans/creditlimit.js +381 -0
  126. package/ts/loans/futurepaymentmoredetails.d.ts +50 -0
  127. package/ts/loans/futurepaymentmoredetails.js +230 -0
  128. package/ts/loans/getcustomerloanstatus.d.ts +34 -0
  129. package/ts/loans/getcustomerloanstatus.js +104 -0
  130. package/ts/loans/getloanbyid.d.ts +53 -0
  131. package/ts/loans/getloanbyid.js +393 -0
  132. package/ts/loans/getpendingemiamount.d.ts +34 -0
  133. package/ts/loans/getpendingemiamount.js +104 -0
  134. package/ts/loans/getsummarystaticfields.d.ts +80 -0
  135. package/ts/loans/getsummarystaticfields.js +700 -0
  136. package/ts/loans/loansummary.d.ts +66 -0
  137. package/ts/loans/loansummary.js +593 -0
  138. package/ts/loans/paymentallocation.d.ts +37 -0
  139. package/ts/loans/paymentallocation.js +147 -0
  140. package/ts/loans/paymenthistory.d.ts +47 -0
  141. package/ts/loans/paymenthistory.js +188 -0
  142. package/ts/loans/restructureloan.d.ts +36 -0
  143. package/ts/loans/restructureloan.js +133 -0
  144. package/ts/loans/sendemail.d.ts +35 -0
  145. package/ts/loans/sendemail.js +117 -0
  146. package/ts/loans/sendnocemail.d.ts +35 -0
  147. package/ts/loans/sendnocemail.js +117 -0
  148. package/ts/loans/transactionlist.d.ts +52 -0
  149. package/ts/loans/transactionlist.js +257 -0
  150. package/ts/loans/updateinstallments.d.ts +42 -0
  151. package/ts/loans/updateinstallments.js +226 -0
  152. package/ts/loans/updateloan.d.ts +39 -0
  153. package/ts/loans/updateloan.js +175 -0
  154. package/ts/loans.d.ts +266 -0
  155. package/ts/loans.js +194 -0
  156. package/ts/payments.d.ts +239 -0
  157. package/ts/payments.js +1117 -0
  158. package/ts/stashcash/creditsc.d.ts +54 -0
  159. package/ts/stashcash/creditsc.js +301 -0
  160. package/ts/stashcash/debitsc.d.ts +59 -0
  161. package/ts/stashcash/debitsc.js +380 -0
  162. package/ts/stashcash/getscbalance.d.ts +53 -0
  163. package/ts/stashcash/getscbalance.js +293 -0
  164. package/ts/stashcash/getschistory.d.ts +73 -0
  165. package/ts/stashcash/getschistory.js +479 -0
  166. package/ts/stashcash/reversesc.d.ts +52 -0
  167. package/ts/stashcash/reversesc.js +273 -0
  168. package/ts/stashcash.d.ts +84 -0
  169. package/ts/stashcash.js +64 -0
@@ -0,0 +1,340 @@
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.27.3
6
+ // source: loans/calculateemi.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.calculateEmiResponse_Field = exports.calculateEmiResponse = exports.calculateEmiRequest = exports.protobufPackage = void 0;
12
+ /* eslint-disable */
13
+ const minimal_1 = __importDefault(require("protobufjs/minimal"));
14
+ exports.protobufPackage = "loans.calculateemi";
15
+ function createBasecalculateEmiRequest() {
16
+ return { amount: 0, addons: 0 };
17
+ }
18
+ exports.calculateEmiRequest = {
19
+ encode(message, writer = minimal_1.default.Writer.create()) {
20
+ if (message.amount !== 0) {
21
+ writer.uint32(8).int32(message.amount);
22
+ }
23
+ if (message.addons !== 0) {
24
+ writer.uint32(16).int32(message.addons);
25
+ }
26
+ return writer;
27
+ },
28
+ decode(input, length) {
29
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
30
+ let end = length === undefined ? reader.len : reader.pos + length;
31
+ const message = createBasecalculateEmiRequest();
32
+ while (reader.pos < end) {
33
+ const tag = reader.uint32();
34
+ switch (tag >>> 3) {
35
+ case 1:
36
+ if (tag !== 8) {
37
+ break;
38
+ }
39
+ message.amount = reader.int32();
40
+ continue;
41
+ case 2:
42
+ if (tag !== 16) {
43
+ break;
44
+ }
45
+ message.addons = reader.int32();
46
+ continue;
47
+ }
48
+ if ((tag & 7) === 4 || tag === 0) {
49
+ break;
50
+ }
51
+ reader.skipType(tag & 7);
52
+ }
53
+ return message;
54
+ },
55
+ fromJSON(object) {
56
+ return {
57
+ amount: isSet(object.amount) ? globalThis.Number(object.amount) : 0,
58
+ addons: isSet(object.addons) ? globalThis.Number(object.addons) : 0,
59
+ };
60
+ },
61
+ toJSON(message) {
62
+ const obj = {};
63
+ if (message.amount !== 0) {
64
+ obj.amount = Math.round(message.amount);
65
+ }
66
+ if (message.addons !== 0) {
67
+ obj.addons = Math.round(message.addons);
68
+ }
69
+ return obj;
70
+ },
71
+ create(base) {
72
+ return exports.calculateEmiRequest.fromPartial(base ?? {});
73
+ },
74
+ fromPartial(object) {
75
+ const message = createBasecalculateEmiRequest();
76
+ message.amount = object.amount ?? 0;
77
+ message.addons = object.addons ?? 0;
78
+ return message;
79
+ },
80
+ };
81
+ function createBasecalculateEmiResponse() {
82
+ return {
83
+ disbursal_amount: 0,
84
+ tenure: 0,
85
+ expected_emi: [],
86
+ min_tenure: 0,
87
+ max_tenure: 0,
88
+ bill_date: "",
89
+ fcp_fee: 0,
90
+ fcp_interest: 0,
91
+ roi: 0,
92
+ first_emi_date: "",
93
+ };
94
+ }
95
+ exports.calculateEmiResponse = {
96
+ encode(message, writer = minimal_1.default.Writer.create()) {
97
+ if (message.disbursal_amount !== 0) {
98
+ writer.uint32(8).int32(message.disbursal_amount);
99
+ }
100
+ if (message.tenure !== 0) {
101
+ writer.uint32(16).int32(message.tenure);
102
+ }
103
+ for (const v of message.expected_emi) {
104
+ exports.calculateEmiResponse_Field.encode(v, writer.uint32(26).fork()).ldelim();
105
+ }
106
+ if (message.min_tenure !== 0) {
107
+ writer.uint32(32).int32(message.min_tenure);
108
+ }
109
+ if (message.max_tenure !== 0) {
110
+ writer.uint32(40).int32(message.max_tenure);
111
+ }
112
+ if (message.bill_date !== "") {
113
+ writer.uint32(50).string(message.bill_date);
114
+ }
115
+ if (message.fcp_fee !== 0) {
116
+ writer.uint32(61).float(message.fcp_fee);
117
+ }
118
+ if (message.fcp_interest !== 0) {
119
+ writer.uint32(69).float(message.fcp_interest);
120
+ }
121
+ if (message.roi !== 0) {
122
+ writer.uint32(77).float(message.roi);
123
+ }
124
+ if (message.first_emi_date !== "") {
125
+ writer.uint32(82).string(message.first_emi_date);
126
+ }
127
+ return writer;
128
+ },
129
+ decode(input, length) {
130
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
131
+ let end = length === undefined ? reader.len : reader.pos + length;
132
+ const message = createBasecalculateEmiResponse();
133
+ while (reader.pos < end) {
134
+ const tag = reader.uint32();
135
+ switch (tag >>> 3) {
136
+ case 1:
137
+ if (tag !== 8) {
138
+ break;
139
+ }
140
+ message.disbursal_amount = reader.int32();
141
+ continue;
142
+ case 2:
143
+ if (tag !== 16) {
144
+ break;
145
+ }
146
+ message.tenure = reader.int32();
147
+ continue;
148
+ case 3:
149
+ if (tag !== 26) {
150
+ break;
151
+ }
152
+ message.expected_emi.push(exports.calculateEmiResponse_Field.decode(reader, reader.uint32()));
153
+ continue;
154
+ case 4:
155
+ if (tag !== 32) {
156
+ break;
157
+ }
158
+ message.min_tenure = reader.int32();
159
+ continue;
160
+ case 5:
161
+ if (tag !== 40) {
162
+ break;
163
+ }
164
+ message.max_tenure = reader.int32();
165
+ continue;
166
+ case 6:
167
+ if (tag !== 50) {
168
+ break;
169
+ }
170
+ message.bill_date = reader.string();
171
+ continue;
172
+ case 7:
173
+ if (tag !== 61) {
174
+ break;
175
+ }
176
+ message.fcp_fee = reader.float();
177
+ continue;
178
+ case 8:
179
+ if (tag !== 69) {
180
+ break;
181
+ }
182
+ message.fcp_interest = reader.float();
183
+ continue;
184
+ case 9:
185
+ if (tag !== 77) {
186
+ break;
187
+ }
188
+ message.roi = reader.float();
189
+ continue;
190
+ case 10:
191
+ if (tag !== 82) {
192
+ break;
193
+ }
194
+ message.first_emi_date = reader.string();
195
+ continue;
196
+ }
197
+ if ((tag & 7) === 4 || tag === 0) {
198
+ break;
199
+ }
200
+ reader.skipType(tag & 7);
201
+ }
202
+ return message;
203
+ },
204
+ fromJSON(object) {
205
+ return {
206
+ disbursal_amount: isSet(object.disbursal_amount) ? globalThis.Number(object.disbursal_amount) : 0,
207
+ tenure: isSet(object.tenure) ? globalThis.Number(object.tenure) : 0,
208
+ expected_emi: globalThis.Array.isArray(object?.expected_emi)
209
+ ? object.expected_emi.map((e) => exports.calculateEmiResponse_Field.fromJSON(e))
210
+ : [],
211
+ min_tenure: isSet(object.min_tenure) ? globalThis.Number(object.min_tenure) : 0,
212
+ max_tenure: isSet(object.max_tenure) ? globalThis.Number(object.max_tenure) : 0,
213
+ bill_date: isSet(object.bill_date) ? globalThis.String(object.bill_date) : "",
214
+ fcp_fee: isSet(object.fcp_fee) ? globalThis.Number(object.fcp_fee) : 0,
215
+ fcp_interest: isSet(object.fcp_interest) ? globalThis.Number(object.fcp_interest) : 0,
216
+ roi: isSet(object.roi) ? globalThis.Number(object.roi) : 0,
217
+ first_emi_date: isSet(object.first_emi_date) ? globalThis.String(object.first_emi_date) : "",
218
+ };
219
+ },
220
+ toJSON(message) {
221
+ const obj = {};
222
+ if (message.disbursal_amount !== 0) {
223
+ obj.disbursal_amount = Math.round(message.disbursal_amount);
224
+ }
225
+ if (message.tenure !== 0) {
226
+ obj.tenure = Math.round(message.tenure);
227
+ }
228
+ if (message.expected_emi?.length) {
229
+ obj.expected_emi = message.expected_emi.map((e) => exports.calculateEmiResponse_Field.toJSON(e));
230
+ }
231
+ if (message.min_tenure !== 0) {
232
+ obj.min_tenure = Math.round(message.min_tenure);
233
+ }
234
+ if (message.max_tenure !== 0) {
235
+ obj.max_tenure = Math.round(message.max_tenure);
236
+ }
237
+ if (message.bill_date !== "") {
238
+ obj.bill_date = message.bill_date;
239
+ }
240
+ if (message.fcp_fee !== 0) {
241
+ obj.fcp_fee = message.fcp_fee;
242
+ }
243
+ if (message.fcp_interest !== 0) {
244
+ obj.fcp_interest = message.fcp_interest;
245
+ }
246
+ if (message.roi !== 0) {
247
+ obj.roi = message.roi;
248
+ }
249
+ if (message.first_emi_date !== "") {
250
+ obj.first_emi_date = message.first_emi_date;
251
+ }
252
+ return obj;
253
+ },
254
+ create(base) {
255
+ return exports.calculateEmiResponse.fromPartial(base ?? {});
256
+ },
257
+ fromPartial(object) {
258
+ const message = createBasecalculateEmiResponse();
259
+ message.disbursal_amount = object.disbursal_amount ?? 0;
260
+ message.tenure = object.tenure ?? 0;
261
+ message.expected_emi = object.expected_emi?.map((e) => exports.calculateEmiResponse_Field.fromPartial(e)) || [];
262
+ message.min_tenure = object.min_tenure ?? 0;
263
+ message.max_tenure = object.max_tenure ?? 0;
264
+ message.bill_date = object.bill_date ?? "";
265
+ message.fcp_fee = object.fcp_fee ?? 0;
266
+ message.fcp_interest = object.fcp_interest ?? 0;
267
+ message.roi = object.roi ?? 0;
268
+ message.first_emi_date = object.first_emi_date ?? "";
269
+ return message;
270
+ },
271
+ };
272
+ function createBasecalculateEmiResponse_Field() {
273
+ return { tenure: 0, emi_amount: 0 };
274
+ }
275
+ exports.calculateEmiResponse_Field = {
276
+ encode(message, writer = minimal_1.default.Writer.create()) {
277
+ if (message.tenure !== 0) {
278
+ writer.uint32(8).int32(message.tenure);
279
+ }
280
+ if (message.emi_amount !== 0) {
281
+ writer.uint32(21).float(message.emi_amount);
282
+ }
283
+ return writer;
284
+ },
285
+ decode(input, length) {
286
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
287
+ let end = length === undefined ? reader.len : reader.pos + length;
288
+ const message = createBasecalculateEmiResponse_Field();
289
+ while (reader.pos < end) {
290
+ const tag = reader.uint32();
291
+ switch (tag >>> 3) {
292
+ case 1:
293
+ if (tag !== 8) {
294
+ break;
295
+ }
296
+ message.tenure = reader.int32();
297
+ continue;
298
+ case 2:
299
+ if (tag !== 21) {
300
+ break;
301
+ }
302
+ message.emi_amount = reader.float();
303
+ continue;
304
+ }
305
+ if ((tag & 7) === 4 || tag === 0) {
306
+ break;
307
+ }
308
+ reader.skipType(tag & 7);
309
+ }
310
+ return message;
311
+ },
312
+ fromJSON(object) {
313
+ return {
314
+ tenure: isSet(object.tenure) ? globalThis.Number(object.tenure) : 0,
315
+ emi_amount: isSet(object.emi_amount) ? globalThis.Number(object.emi_amount) : 0,
316
+ };
317
+ },
318
+ toJSON(message) {
319
+ const obj = {};
320
+ if (message.tenure !== 0) {
321
+ obj.tenure = Math.round(message.tenure);
322
+ }
323
+ if (message.emi_amount !== 0) {
324
+ obj.emi_amount = message.emi_amount;
325
+ }
326
+ return obj;
327
+ },
328
+ create(base) {
329
+ return exports.calculateEmiResponse_Field.fromPartial(base ?? {});
330
+ },
331
+ fromPartial(object) {
332
+ const message = createBasecalculateEmiResponse_Field();
333
+ message.tenure = object.tenure ?? 0;
334
+ message.emi_amount = object.emi_amount ?? 0;
335
+ return message;
336
+ },
337
+ };
338
+ function isSet(value) {
339
+ return value !== null && value !== undefined;
340
+ }
@@ -0,0 +1,51 @@
1
+ import _m0 from "protobufjs/minimal";
2
+ export declare const protobufPackage = "loans.creditlimit";
3
+ export interface creditLimitRequest {
4
+ }
5
+ export interface creditLimitResponse {
6
+ loc_limit: number;
7
+ used_limit: number;
8
+ min_tenure: number;
9
+ max_tenure: number;
10
+ rate_of_interest: number;
11
+ increment_step: number;
12
+ loc_disable: boolean;
13
+ request_max_percentage: number;
14
+ bill_date: string;
15
+ minimum_request_amount: number;
16
+ sanctioned_limit: number;
17
+ remaining_sanctioned_limit: number;
18
+ sanctioned_limit_info_popup_heading: string;
19
+ sanctioned_limit_info_popup_body: string;
20
+ exposure_limit_info_popup_heading: string;
21
+ exposure_limit_info_popup_body: string;
22
+ sanctioned_limit_heading: string;
23
+ exposure_limit_heading: string;
24
+ }
25
+ export declare const creditLimitRequest: {
26
+ encode(_: creditLimitRequest, writer?: _m0.Writer): _m0.Writer;
27
+ decode(input: _m0.Reader | Uint8Array, length?: number): creditLimitRequest;
28
+ fromJSON(_: any): creditLimitRequest;
29
+ toJSON(_: creditLimitRequest): unknown;
30
+ create<I extends Exact<DeepPartial<creditLimitRequest>, I>>(base?: I): creditLimitRequest;
31
+ fromPartial<I extends Exact<DeepPartial<creditLimitRequest>, I>>(_: I): creditLimitRequest;
32
+ };
33
+ export declare const creditLimitResponse: {
34
+ encode(message: creditLimitResponse, writer?: _m0.Writer): _m0.Writer;
35
+ decode(input: _m0.Reader | Uint8Array, length?: number): creditLimitResponse;
36
+ fromJSON(object: any): creditLimitResponse;
37
+ toJSON(message: creditLimitResponse): unknown;
38
+ create<I extends Exact<DeepPartial<creditLimitResponse>, I>>(base?: I): creditLimitResponse;
39
+ fromPartial<I extends Exact<DeepPartial<creditLimitResponse>, I>>(object: I): creditLimitResponse;
40
+ };
41
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
42
+ 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 {} ? {
43
+ [K in keyof T]?: DeepPartial<T[K]>;
44
+ } : Partial<T>;
45
+ type KeysOfUnion<T> = T extends T ? keyof T : never;
46
+ export type Exact<P, I extends P> = P extends Builtin ? P : P & {
47
+ [K in keyof P]: Exact<P[K], I[K]>;
48
+ } & {
49
+ [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
50
+ };
51
+ export {};