@stashfin/grpc 1.2.746 → 1.2.747
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
package/ts/bureau/getreport.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface Report {
|
|
|
20
20
|
tradelines: TradeLine[];
|
|
21
21
|
dpd?: DPD | undefined;
|
|
22
22
|
enquiries?: Enquiries | undefined;
|
|
23
|
-
|
|
23
|
+
dpd_chars?: dpdChar | undefined;
|
|
24
24
|
report_path?: string | undefined;
|
|
25
25
|
dpd_counts?: DPDCounts | undefined;
|
|
26
26
|
enquiries_data: EnquiriesData[];
|
package/ts/bureau/getreport.js
CHANGED
|
@@ -223,7 +223,7 @@ function createBaseReport() {
|
|
|
223
223
|
tradelines: [],
|
|
224
224
|
dpd: undefined,
|
|
225
225
|
enquiries: undefined,
|
|
226
|
-
|
|
226
|
+
dpd_chars: undefined,
|
|
227
227
|
report_path: undefined,
|
|
228
228
|
dpd_counts: undefined,
|
|
229
229
|
enquiries_data: [],
|
|
@@ -252,8 +252,8 @@ exports.Report = {
|
|
|
252
252
|
if (message.enquiries !== undefined) {
|
|
253
253
|
exports.Enquiries.encode(message.enquiries, writer.uint32(50).fork()).ldelim();
|
|
254
254
|
}
|
|
255
|
-
if (message.
|
|
256
|
-
exports.dpdChar.encode(message.
|
|
255
|
+
if (message.dpd_chars !== undefined) {
|
|
256
|
+
exports.dpdChar.encode(message.dpd_chars, writer.uint32(58).fork()).ldelim();
|
|
257
257
|
}
|
|
258
258
|
if (message.report_path !== undefined) {
|
|
259
259
|
writer.uint32(66).string(message.report_path);
|
|
@@ -322,7 +322,7 @@ exports.Report = {
|
|
|
322
322
|
if (tag !== 58) {
|
|
323
323
|
break;
|
|
324
324
|
}
|
|
325
|
-
message.
|
|
325
|
+
message.dpd_chars = exports.dpdChar.decode(reader, reader.uint32());
|
|
326
326
|
continue;
|
|
327
327
|
case 8:
|
|
328
328
|
if (tag !== 66) {
|
|
@@ -378,7 +378,7 @@ exports.Report = {
|
|
|
378
378
|
: [],
|
|
379
379
|
dpd: isSet(object.dpd) ? exports.DPD.fromJSON(object.dpd) : undefined,
|
|
380
380
|
enquiries: isSet(object.enquiries) ? exports.Enquiries.fromJSON(object.enquiries) : undefined,
|
|
381
|
-
|
|
381
|
+
dpd_chars: isSet(object.dpd_chars) ? exports.dpdChar.fromJSON(object.dpd_chars) : undefined,
|
|
382
382
|
report_path: isSet(object.report_path) ? globalThis.String(object.report_path) : undefined,
|
|
383
383
|
dpd_counts: isSet(object.dpd_counts) ? exports.DPDCounts.fromJSON(object.dpd_counts) : undefined,
|
|
384
384
|
enquiries_data: globalThis.Array.isArray(object?.enquiries_data)
|
|
@@ -411,8 +411,8 @@ exports.Report = {
|
|
|
411
411
|
if (message.enquiries !== undefined) {
|
|
412
412
|
obj.enquiries = exports.Enquiries.toJSON(message.enquiries);
|
|
413
413
|
}
|
|
414
|
-
if (message.
|
|
415
|
-
obj.
|
|
414
|
+
if (message.dpd_chars !== undefined) {
|
|
415
|
+
obj.dpd_chars = exports.dpdChar.toJSON(message.dpd_chars);
|
|
416
416
|
}
|
|
417
417
|
if (message.report_path !== undefined) {
|
|
418
418
|
obj.report_path = message.report_path;
|
|
@@ -447,8 +447,8 @@ exports.Report = {
|
|
|
447
447
|
message.enquiries = (object.enquiries !== undefined && object.enquiries !== null)
|
|
448
448
|
? exports.Enquiries.fromPartial(object.enquiries)
|
|
449
449
|
: undefined;
|
|
450
|
-
message.
|
|
451
|
-
? exports.dpdChar.fromPartial(object.
|
|
450
|
+
message.dpd_chars = (object.dpd_chars !== undefined && object.dpd_chars !== null)
|
|
451
|
+
? exports.dpdChar.fromPartial(object.dpd_chars)
|
|
452
452
|
: undefined;
|
|
453
453
|
message.report_path = object.report_path ?? undefined;
|
|
454
454
|
message.dpd_counts = (object.dpd_counts !== undefined && object.dpd_counts !== null)
|