@stashfin/grpc 1.2.465 → 1.2.466
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
|
@@ -136,13 +136,13 @@ exports.checkTransactionStatusResponse = {
|
|
|
136
136
|
writer.uint32(42).string(message.payee_vpa);
|
|
137
137
|
}
|
|
138
138
|
if (message.payer_name !== "") {
|
|
139
|
-
writer.uint32(
|
|
139
|
+
writer.uint32(50).string(message.payer_name);
|
|
140
140
|
}
|
|
141
141
|
if (message.payer_vpa !== "") {
|
|
142
|
-
writer.uint32(
|
|
142
|
+
writer.uint32(58).string(message.payer_vpa);
|
|
143
143
|
}
|
|
144
144
|
if (message.message !== "") {
|
|
145
|
-
writer.uint32(
|
|
145
|
+
writer.uint32(66).string(message.message);
|
|
146
146
|
}
|
|
147
147
|
return writer;
|
|
148
148
|
},
|
|
@@ -183,20 +183,20 @@ exports.checkTransactionStatusResponse = {
|
|
|
183
183
|
}
|
|
184
184
|
message.payee_vpa = reader.string();
|
|
185
185
|
continue;
|
|
186
|
-
case
|
|
187
|
-
if (tag !==
|
|
186
|
+
case 6:
|
|
187
|
+
if (tag !== 50) {
|
|
188
188
|
break;
|
|
189
189
|
}
|
|
190
190
|
message.payer_name = reader.string();
|
|
191
191
|
continue;
|
|
192
|
-
case
|
|
193
|
-
if (tag !==
|
|
192
|
+
case 7:
|
|
193
|
+
if (tag !== 58) {
|
|
194
194
|
break;
|
|
195
195
|
}
|
|
196
196
|
message.payer_vpa = reader.string();
|
|
197
197
|
continue;
|
|
198
|
-
case
|
|
199
|
-
if (tag !==
|
|
198
|
+
case 8:
|
|
199
|
+
if (tag !== 66) {
|
|
200
200
|
break;
|
|
201
201
|
}
|
|
202
202
|
message.message = reader.string();
|