@stashfin/grpc 1.2.327 → 1.2.328
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
|
@@ -32,6 +32,7 @@ export interface MainCardData {
|
|
|
32
32
|
supp_title: string;
|
|
33
33
|
supp_loc_status: number;
|
|
34
34
|
supp_sub_title: string;
|
|
35
|
+
card_type: string;
|
|
35
36
|
}
|
|
36
37
|
export declare const getDashboardMainCardRequest: {
|
|
37
38
|
encode(_: getDashboardMainCardRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -170,6 +170,7 @@ function createBaseMainCardData() {
|
|
|
170
170
|
supp_title: "",
|
|
171
171
|
supp_loc_status: 0,
|
|
172
172
|
supp_sub_title: "",
|
|
173
|
+
card_type: "",
|
|
173
174
|
};
|
|
174
175
|
}
|
|
175
176
|
exports.MainCardData = {
|
|
@@ -243,6 +244,9 @@ exports.MainCardData = {
|
|
|
243
244
|
if (message.supp_sub_title !== "") {
|
|
244
245
|
writer.uint32(186).string(message.supp_sub_title);
|
|
245
246
|
}
|
|
247
|
+
if (message.card_type !== "") {
|
|
248
|
+
writer.uint32(194).string(message.card_type);
|
|
249
|
+
}
|
|
246
250
|
return writer;
|
|
247
251
|
},
|
|
248
252
|
decode(input, length) {
|
|
@@ -390,6 +394,12 @@ exports.MainCardData = {
|
|
|
390
394
|
}
|
|
391
395
|
message.supp_sub_title = reader.string();
|
|
392
396
|
continue;
|
|
397
|
+
case 24:
|
|
398
|
+
if (tag !== 194) {
|
|
399
|
+
break;
|
|
400
|
+
}
|
|
401
|
+
message.card_type = reader.string();
|
|
402
|
+
continue;
|
|
393
403
|
}
|
|
394
404
|
if ((tag & 7) === 4 || tag === 0) {
|
|
395
405
|
break;
|
|
@@ -423,6 +433,7 @@ exports.MainCardData = {
|
|
|
423
433
|
supp_title: isSet(object.supp_title) ? globalThis.String(object.supp_title) : "",
|
|
424
434
|
supp_loc_status: isSet(object.supp_loc_status) ? globalThis.Number(object.supp_loc_status) : 0,
|
|
425
435
|
supp_sub_title: isSet(object.supp_sub_title) ? globalThis.String(object.supp_sub_title) : "",
|
|
436
|
+
card_type: isSet(object.card_type) ? globalThis.String(object.card_type) : "",
|
|
426
437
|
};
|
|
427
438
|
},
|
|
428
439
|
toJSON(message) {
|
|
@@ -496,6 +507,9 @@ exports.MainCardData = {
|
|
|
496
507
|
if (message.supp_sub_title !== "") {
|
|
497
508
|
obj.supp_sub_title = message.supp_sub_title;
|
|
498
509
|
}
|
|
510
|
+
if (message.card_type !== "") {
|
|
511
|
+
obj.card_type = message.card_type;
|
|
512
|
+
}
|
|
499
513
|
return obj;
|
|
500
514
|
},
|
|
501
515
|
create(base) {
|
|
@@ -526,6 +540,7 @@ exports.MainCardData = {
|
|
|
526
540
|
message.supp_title = object.supp_title ?? "";
|
|
527
541
|
message.supp_loc_status = object.supp_loc_status ?? 0;
|
|
528
542
|
message.supp_sub_title = object.supp_sub_title ?? "";
|
|
543
|
+
message.card_type = object.card_type ?? "";
|
|
529
544
|
return message;
|
|
530
545
|
},
|
|
531
546
|
};
|