@stashfin/grpc 1.2.854 → 1.2.855
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
|
@@ -305,7 +305,7 @@ exports.Data = {
|
|
|
305
305
|
},
|
|
306
306
|
};
|
|
307
307
|
function createBasefetchEmploymentHistoryResponse() {
|
|
308
|
-
return { data: undefined, request_id: "", customer_id: 0, uan: "" };
|
|
308
|
+
return { data: undefined, request_id: "", customer_id: 0, url: "", uan: "" };
|
|
309
309
|
}
|
|
310
310
|
exports.fetchEmploymentHistoryResponse = {
|
|
311
311
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
@@ -318,8 +318,11 @@ exports.fetchEmploymentHistoryResponse = {
|
|
|
318
318
|
if (message.customer_id !== 0) {
|
|
319
319
|
writer.uint32(24).int32(message.customer_id);
|
|
320
320
|
}
|
|
321
|
+
if (message.url !== "") {
|
|
322
|
+
writer.uint32(34).string(message.url);
|
|
323
|
+
}
|
|
321
324
|
if (message.uan !== "") {
|
|
322
|
-
writer.uint32(
|
|
325
|
+
writer.uint32(42).string(message.uan);
|
|
323
326
|
}
|
|
324
327
|
return writer;
|
|
325
328
|
},
|
|
@@ -352,6 +355,12 @@ exports.fetchEmploymentHistoryResponse = {
|
|
|
352
355
|
if (tag !== 34) {
|
|
353
356
|
break;
|
|
354
357
|
}
|
|
358
|
+
message.url = reader.string();
|
|
359
|
+
continue;
|
|
360
|
+
case 5:
|
|
361
|
+
if (tag !== 42) {
|
|
362
|
+
break;
|
|
363
|
+
}
|
|
355
364
|
message.uan = reader.string();
|
|
356
365
|
continue;
|
|
357
366
|
}
|
|
@@ -367,6 +376,7 @@ exports.fetchEmploymentHistoryResponse = {
|
|
|
367
376
|
data: isSet(object.data) ? exports.Data.fromJSON(object.data) : undefined,
|
|
368
377
|
request_id: isSet(object.request_id) ? globalThis.String(object.request_id) : "",
|
|
369
378
|
customer_id: isSet(object.customer_id) ? globalThis.Number(object.customer_id) : 0,
|
|
379
|
+
url: isSet(object.url) ? globalThis.String(object.url) : "",
|
|
370
380
|
uan: isSet(object.uan) ? globalThis.String(object.uan) : "",
|
|
371
381
|
};
|
|
372
382
|
},
|
|
@@ -381,6 +391,9 @@ exports.fetchEmploymentHistoryResponse = {
|
|
|
381
391
|
if (message.customer_id !== 0) {
|
|
382
392
|
obj.customer_id = Math.round(message.customer_id);
|
|
383
393
|
}
|
|
394
|
+
if (message.url !== "") {
|
|
395
|
+
obj.url = message.url;
|
|
396
|
+
}
|
|
384
397
|
if (message.uan !== "") {
|
|
385
398
|
obj.uan = message.uan;
|
|
386
399
|
}
|
|
@@ -394,6 +407,7 @@ exports.fetchEmploymentHistoryResponse = {
|
|
|
394
407
|
message.data = (object.data !== undefined && object.data !== null) ? exports.Data.fromPartial(object.data) : undefined;
|
|
395
408
|
message.request_id = object.request_id ?? "";
|
|
396
409
|
message.customer_id = object.customer_id ?? 0;
|
|
410
|
+
message.url = object.url ?? "";
|
|
397
411
|
message.uan = object.uan ?? "";
|
|
398
412
|
return message;
|
|
399
413
|
},
|