@stashfin/grpc 1.2.516 → 1.2.517
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
|
@@ -160,13 +160,13 @@ exports.NotificationData = {
|
|
|
160
160
|
writer.uint32(26).string(message.template_id);
|
|
161
161
|
}
|
|
162
162
|
if (message.created_at !== "") {
|
|
163
|
-
writer.uint32(
|
|
163
|
+
writer.uint32(34).string(message.created_at);
|
|
164
164
|
}
|
|
165
165
|
if (message.body !== undefined) {
|
|
166
|
-
writer.uint32(
|
|
166
|
+
writer.uint32(42).string(message.body);
|
|
167
167
|
}
|
|
168
168
|
if (message.description !== undefined) {
|
|
169
|
-
writer.uint32(
|
|
169
|
+
writer.uint32(50).string(message.description);
|
|
170
170
|
}
|
|
171
171
|
return writer;
|
|
172
172
|
},
|
|
@@ -195,20 +195,20 @@ exports.NotificationData = {
|
|
|
195
195
|
}
|
|
196
196
|
message.template_id = reader.string();
|
|
197
197
|
continue;
|
|
198
|
-
case
|
|
199
|
-
if (tag !==
|
|
198
|
+
case 4:
|
|
199
|
+
if (tag !== 34) {
|
|
200
200
|
break;
|
|
201
201
|
}
|
|
202
202
|
message.created_at = reader.string();
|
|
203
203
|
continue;
|
|
204
|
-
case
|
|
205
|
-
if (tag !==
|
|
204
|
+
case 5:
|
|
205
|
+
if (tag !== 42) {
|
|
206
206
|
break;
|
|
207
207
|
}
|
|
208
208
|
message.body = reader.string();
|
|
209
209
|
continue;
|
|
210
|
-
case
|
|
211
|
-
if (tag !==
|
|
210
|
+
case 6:
|
|
211
|
+
if (tag !== 50) {
|
|
212
212
|
break;
|
|
213
213
|
}
|
|
214
214
|
message.description = reader.string();
|