@stashfin/grpc 1.2.537 → 1.2.538
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/upi/getallmandates.js
CHANGED
|
@@ -152,6 +152,7 @@ function createBaseMandateData() {
|
|
|
152
152
|
payee_vpa: undefined,
|
|
153
153
|
created_date: undefined,
|
|
154
154
|
amount: undefined,
|
|
155
|
+
mandate_state: undefined,
|
|
155
156
|
};
|
|
156
157
|
}
|
|
157
158
|
exports.MandateData = {
|
|
@@ -180,6 +181,9 @@ exports.MandateData = {
|
|
|
180
181
|
if (message.amount !== undefined) {
|
|
181
182
|
writer.uint32(69).float(message.amount);
|
|
182
183
|
}
|
|
184
|
+
if (message.mandate_state !== undefined) {
|
|
185
|
+
writer.uint32(74).string(message.mandate_state);
|
|
186
|
+
}
|
|
183
187
|
return writer;
|
|
184
188
|
},
|
|
185
189
|
decode(input, length) {
|
|
@@ -237,6 +241,12 @@ exports.MandateData = {
|
|
|
237
241
|
}
|
|
238
242
|
message.amount = reader.float();
|
|
239
243
|
continue;
|
|
244
|
+
case 9:
|
|
245
|
+
if (tag !== 74) {
|
|
246
|
+
break;
|
|
247
|
+
}
|
|
248
|
+
message.mandate_state = reader.string();
|
|
249
|
+
continue;
|
|
240
250
|
}
|
|
241
251
|
if ((tag & 7) === 4 || tag === 0) {
|
|
242
252
|
break;
|
|
@@ -255,6 +265,7 @@ exports.MandateData = {
|
|
|
255
265
|
payee_vpa: isSet(object.payee_vpa) ? globalThis.String(object.payee_vpa) : undefined,
|
|
256
266
|
created_date: isSet(object.created_date) ? globalThis.String(object.created_date) : undefined,
|
|
257
267
|
amount: isSet(object.amount) ? globalThis.Number(object.amount) : undefined,
|
|
268
|
+
mandate_state: isSet(object.mandate_state) ? globalThis.String(object.mandate_state) : undefined,
|
|
258
269
|
};
|
|
259
270
|
},
|
|
260
271
|
toJSON(message) {
|
|
@@ -283,6 +294,9 @@ exports.MandateData = {
|
|
|
283
294
|
if (message.amount !== undefined) {
|
|
284
295
|
obj.amount = message.amount;
|
|
285
296
|
}
|
|
297
|
+
if (message.mandate_state !== undefined) {
|
|
298
|
+
obj.mandate_state = message.mandate_state;
|
|
299
|
+
}
|
|
286
300
|
return obj;
|
|
287
301
|
},
|
|
288
302
|
create(base) {
|
|
@@ -298,6 +312,7 @@ exports.MandateData = {
|
|
|
298
312
|
message.payee_vpa = object.payee_vpa ?? undefined;
|
|
299
313
|
message.created_date = object.created_date ?? undefined;
|
|
300
314
|
message.amount = object.amount ?? undefined;
|
|
315
|
+
message.mandate_state = object.mandate_state ?? undefined;
|
|
301
316
|
return message;
|
|
302
317
|
},
|
|
303
318
|
};
|