@stashfin/grpc 1.2.397 → 1.2.398
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
|
@@ -48,6 +48,7 @@ export interface getSummaryStaticFieldsResponse_Field {
|
|
|
48
48
|
export interface getSummaryStaticFieldsResponse_CreditSection {
|
|
49
49
|
title: string;
|
|
50
50
|
description: string;
|
|
51
|
+
icon: string;
|
|
51
52
|
}
|
|
52
53
|
export interface getSummaryStaticFieldsResponse_BrokenPeriod {
|
|
53
54
|
title: string;
|
|
@@ -733,7 +733,7 @@ exports.getSummaryStaticFieldsResponse_Field = {
|
|
|
733
733
|
},
|
|
734
734
|
};
|
|
735
735
|
function createBasegetSummaryStaticFieldsResponse_CreditSection() {
|
|
736
|
-
return { title: "", description: "" };
|
|
736
|
+
return { title: "", description: "", icon: "" };
|
|
737
737
|
}
|
|
738
738
|
exports.getSummaryStaticFieldsResponse_CreditSection = {
|
|
739
739
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
@@ -743,6 +743,9 @@ exports.getSummaryStaticFieldsResponse_CreditSection = {
|
|
|
743
743
|
if (message.description !== "") {
|
|
744
744
|
writer.uint32(18).string(message.description);
|
|
745
745
|
}
|
|
746
|
+
if (message.icon !== "") {
|
|
747
|
+
writer.uint32(26).string(message.icon);
|
|
748
|
+
}
|
|
746
749
|
return writer;
|
|
747
750
|
},
|
|
748
751
|
decode(input, length) {
|
|
@@ -764,6 +767,12 @@ exports.getSummaryStaticFieldsResponse_CreditSection = {
|
|
|
764
767
|
}
|
|
765
768
|
message.description = reader.string();
|
|
766
769
|
continue;
|
|
770
|
+
case 3:
|
|
771
|
+
if (tag !== 26) {
|
|
772
|
+
break;
|
|
773
|
+
}
|
|
774
|
+
message.icon = reader.string();
|
|
775
|
+
continue;
|
|
767
776
|
}
|
|
768
777
|
if ((tag & 7) === 4 || tag === 0) {
|
|
769
778
|
break;
|
|
@@ -776,6 +785,7 @@ exports.getSummaryStaticFieldsResponse_CreditSection = {
|
|
|
776
785
|
return {
|
|
777
786
|
title: isSet(object.title) ? globalThis.String(object.title) : "",
|
|
778
787
|
description: isSet(object.description) ? globalThis.String(object.description) : "",
|
|
788
|
+
icon: isSet(object.icon) ? globalThis.String(object.icon) : "",
|
|
779
789
|
};
|
|
780
790
|
},
|
|
781
791
|
toJSON(message) {
|
|
@@ -786,6 +796,9 @@ exports.getSummaryStaticFieldsResponse_CreditSection = {
|
|
|
786
796
|
if (message.description !== "") {
|
|
787
797
|
obj.description = message.description;
|
|
788
798
|
}
|
|
799
|
+
if (message.icon !== "") {
|
|
800
|
+
obj.icon = message.icon;
|
|
801
|
+
}
|
|
789
802
|
return obj;
|
|
790
803
|
},
|
|
791
804
|
create(base) {
|
|
@@ -795,6 +808,7 @@ exports.getSummaryStaticFieldsResponse_CreditSection = {
|
|
|
795
808
|
const message = createBasegetSummaryStaticFieldsResponse_CreditSection();
|
|
796
809
|
message.title = object.title ?? "";
|
|
797
810
|
message.description = object.description ?? "";
|
|
811
|
+
message.icon = object.icon ?? "";
|
|
798
812
|
return message;
|
|
799
813
|
},
|
|
800
814
|
};
|