@stashfin/grpc 1.5.39 → 1.5.40
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
CHANGED
|
@@ -17,13 +17,6 @@ export interface GetLocWithdrawFormResponse {
|
|
|
17
17
|
request_max_percentage: number;
|
|
18
18
|
sanction_letter: string;
|
|
19
19
|
loc_disable: boolean;
|
|
20
|
-
left_limit_after_vkyc: number;
|
|
21
|
-
vkyc_limit: number;
|
|
22
|
-
nudge_limit: number;
|
|
23
|
-
is_vkyc_kyc_done: boolean;
|
|
24
|
-
is_vkyc_active: boolean;
|
|
25
|
-
shownudge: boolean;
|
|
26
|
-
vkyc_status: string;
|
|
27
20
|
}
|
|
28
21
|
export declare const GetLocWithdrawFormRequest: {
|
|
29
22
|
encode(_: GetLocWithdrawFormRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -65,13 +65,6 @@ function createBaseGetLocWithdrawFormResponse() {
|
|
|
65
65
|
request_max_percentage: 0,
|
|
66
66
|
sanction_letter: "",
|
|
67
67
|
loc_disable: false,
|
|
68
|
-
left_limit_after_vkyc: 0,
|
|
69
|
-
vkyc_limit: 0,
|
|
70
|
-
nudge_limit: 0,
|
|
71
|
-
is_vkyc_kyc_done: false,
|
|
72
|
-
is_vkyc_active: false,
|
|
73
|
-
shownudge: false,
|
|
74
|
-
vkyc_status: "",
|
|
75
68
|
};
|
|
76
69
|
}
|
|
77
70
|
exports.GetLocWithdrawFormResponse = {
|
|
@@ -118,27 +111,6 @@ exports.GetLocWithdrawFormResponse = {
|
|
|
118
111
|
if (message.loc_disable !== false) {
|
|
119
112
|
writer.uint32(112).bool(message.loc_disable);
|
|
120
113
|
}
|
|
121
|
-
if (message.left_limit_after_vkyc !== 0) {
|
|
122
|
-
writer.uint32(121).double(message.left_limit_after_vkyc);
|
|
123
|
-
}
|
|
124
|
-
if (message.vkyc_limit !== 0) {
|
|
125
|
-
writer.uint32(129).double(message.vkyc_limit);
|
|
126
|
-
}
|
|
127
|
-
if (message.nudge_limit !== 0) {
|
|
128
|
-
writer.uint32(137).double(message.nudge_limit);
|
|
129
|
-
}
|
|
130
|
-
if (message.is_vkyc_kyc_done !== false) {
|
|
131
|
-
writer.uint32(144).bool(message.is_vkyc_kyc_done);
|
|
132
|
-
}
|
|
133
|
-
if (message.is_vkyc_active !== false) {
|
|
134
|
-
writer.uint32(152).bool(message.is_vkyc_active);
|
|
135
|
-
}
|
|
136
|
-
if (message.shownudge !== false) {
|
|
137
|
-
writer.uint32(160).bool(message.shownudge);
|
|
138
|
-
}
|
|
139
|
-
if (message.vkyc_status !== "") {
|
|
140
|
-
writer.uint32(170).string(message.vkyc_status);
|
|
141
|
-
}
|
|
142
114
|
return writer;
|
|
143
115
|
},
|
|
144
116
|
decode(input, length) {
|
|
@@ -232,48 +204,6 @@ exports.GetLocWithdrawFormResponse = {
|
|
|
232
204
|
}
|
|
233
205
|
message.loc_disable = reader.bool();
|
|
234
206
|
continue;
|
|
235
|
-
case 15:
|
|
236
|
-
if (tag !== 121) {
|
|
237
|
-
break;
|
|
238
|
-
}
|
|
239
|
-
message.left_limit_after_vkyc = reader.double();
|
|
240
|
-
continue;
|
|
241
|
-
case 16:
|
|
242
|
-
if (tag !== 129) {
|
|
243
|
-
break;
|
|
244
|
-
}
|
|
245
|
-
message.vkyc_limit = reader.double();
|
|
246
|
-
continue;
|
|
247
|
-
case 17:
|
|
248
|
-
if (tag !== 137) {
|
|
249
|
-
break;
|
|
250
|
-
}
|
|
251
|
-
message.nudge_limit = reader.double();
|
|
252
|
-
continue;
|
|
253
|
-
case 18:
|
|
254
|
-
if (tag !== 144) {
|
|
255
|
-
break;
|
|
256
|
-
}
|
|
257
|
-
message.is_vkyc_kyc_done = reader.bool();
|
|
258
|
-
continue;
|
|
259
|
-
case 19:
|
|
260
|
-
if (tag !== 152) {
|
|
261
|
-
break;
|
|
262
|
-
}
|
|
263
|
-
message.is_vkyc_active = reader.bool();
|
|
264
|
-
continue;
|
|
265
|
-
case 20:
|
|
266
|
-
if (tag !== 160) {
|
|
267
|
-
break;
|
|
268
|
-
}
|
|
269
|
-
message.shownudge = reader.bool();
|
|
270
|
-
continue;
|
|
271
|
-
case 21:
|
|
272
|
-
if (tag !== 170) {
|
|
273
|
-
break;
|
|
274
|
-
}
|
|
275
|
-
message.vkyc_status = reader.string();
|
|
276
|
-
continue;
|
|
277
207
|
}
|
|
278
208
|
if ((tag & 7) === 4 || tag === 0) {
|
|
279
209
|
break;
|
|
@@ -304,13 +234,6 @@ exports.GetLocWithdrawFormResponse = {
|
|
|
304
234
|
: 0,
|
|
305
235
|
sanction_letter: isSet(object.sanction_letter) ? globalThis.String(object.sanction_letter) : "",
|
|
306
236
|
loc_disable: isSet(object.loc_disable) ? globalThis.Boolean(object.loc_disable) : false,
|
|
307
|
-
left_limit_after_vkyc: isSet(object.left_limit_after_vkyc) ? globalThis.Number(object.left_limit_after_vkyc) : 0,
|
|
308
|
-
vkyc_limit: isSet(object.vkyc_limit) ? globalThis.Number(object.vkyc_limit) : 0,
|
|
309
|
-
nudge_limit: isSet(object.nudge_limit) ? globalThis.Number(object.nudge_limit) : 0,
|
|
310
|
-
is_vkyc_kyc_done: isSet(object.is_vkyc_kyc_done) ? globalThis.Boolean(object.is_vkyc_kyc_done) : false,
|
|
311
|
-
is_vkyc_active: isSet(object.is_vkyc_active) ? globalThis.Boolean(object.is_vkyc_active) : false,
|
|
312
|
-
shownudge: isSet(object.shownudge) ? globalThis.Boolean(object.shownudge) : false,
|
|
313
|
-
vkyc_status: isSet(object.vkyc_status) ? globalThis.String(object.vkyc_status) : "",
|
|
314
237
|
};
|
|
315
238
|
},
|
|
316
239
|
toJSON(message) {
|
|
@@ -357,27 +280,6 @@ exports.GetLocWithdrawFormResponse = {
|
|
|
357
280
|
if (message.loc_disable !== false) {
|
|
358
281
|
obj.loc_disable = message.loc_disable;
|
|
359
282
|
}
|
|
360
|
-
if (message.left_limit_after_vkyc !== 0) {
|
|
361
|
-
obj.left_limit_after_vkyc = message.left_limit_after_vkyc;
|
|
362
|
-
}
|
|
363
|
-
if (message.vkyc_limit !== 0) {
|
|
364
|
-
obj.vkyc_limit = message.vkyc_limit;
|
|
365
|
-
}
|
|
366
|
-
if (message.nudge_limit !== 0) {
|
|
367
|
-
obj.nudge_limit = message.nudge_limit;
|
|
368
|
-
}
|
|
369
|
-
if (message.is_vkyc_kyc_done !== false) {
|
|
370
|
-
obj.is_vkyc_kyc_done = message.is_vkyc_kyc_done;
|
|
371
|
-
}
|
|
372
|
-
if (message.is_vkyc_active !== false) {
|
|
373
|
-
obj.is_vkyc_active = message.is_vkyc_active;
|
|
374
|
-
}
|
|
375
|
-
if (message.shownudge !== false) {
|
|
376
|
-
obj.shownudge = message.shownudge;
|
|
377
|
-
}
|
|
378
|
-
if (message.vkyc_status !== "") {
|
|
379
|
-
obj.vkyc_status = message.vkyc_status;
|
|
380
|
-
}
|
|
381
283
|
return obj;
|
|
382
284
|
},
|
|
383
285
|
create(base) {
|
|
@@ -399,13 +301,6 @@ exports.GetLocWithdrawFormResponse = {
|
|
|
399
301
|
message.request_max_percentage = object.request_max_percentage ?? 0;
|
|
400
302
|
message.sanction_letter = object.sanction_letter ?? "";
|
|
401
303
|
message.loc_disable = object.loc_disable ?? false;
|
|
402
|
-
message.left_limit_after_vkyc = object.left_limit_after_vkyc ?? 0;
|
|
403
|
-
message.vkyc_limit = object.vkyc_limit ?? 0;
|
|
404
|
-
message.nudge_limit = object.nudge_limit ?? 0;
|
|
405
|
-
message.is_vkyc_kyc_done = object.is_vkyc_kyc_done ?? false;
|
|
406
|
-
message.is_vkyc_active = object.is_vkyc_active ?? false;
|
|
407
|
-
message.shownudge = object.shownudge ?? false;
|
|
408
|
-
message.vkyc_status = object.vkyc_status ?? "";
|
|
409
304
|
return message;
|
|
410
305
|
},
|
|
411
306
|
};
|