@stashfin/grpc 1.2.864 → 1.2.865

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/grpc",
3
- "version": "1.2.864",
3
+ "version": "1.2.865",
4
4
  "description": "Grpc proto manger",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf src/ts && mkdirp src/ts && mkdirp dist",
@@ -13,6 +13,7 @@ export interface getAllBbpsTnxRequest {
13
13
  status?: string | undefined;
14
14
  customer_id?: string | undefined;
15
15
  account_no?: string | undefined;
16
+ biller_status?: string | undefined;
16
17
  }
17
18
  export interface BBPSTransactions {
18
19
  transaction_id?: number | undefined;
@@ -28,6 +29,7 @@ export interface BBPSTransactions {
28
29
  account_no?: string | undefined;
29
30
  biller_id?: string | undefined;
30
31
  pg_txn_ref_id?: string | undefined;
32
+ biller_status?: string | undefined;
31
33
  }
32
34
  export interface getAllBbpsTnxResponse {
33
35
  transactions: BBPSTransactions[];
@@ -25,6 +25,7 @@ function createBasegetAllBbpsTnxRequest() {
25
25
  status: undefined,
26
26
  customer_id: undefined,
27
27
  account_no: undefined,
28
+ biller_status: undefined,
28
29
  };
29
30
  }
30
31
  exports.getAllBbpsTnxRequest = {
@@ -62,6 +63,9 @@ exports.getAllBbpsTnxRequest = {
62
63
  if (message.account_no !== undefined) {
63
64
  writer.uint32(90).string(message.account_no);
64
65
  }
66
+ if (message.biller_status !== undefined) {
67
+ writer.uint32(98).string(message.biller_status);
68
+ }
65
69
  return writer;
66
70
  },
67
71
  decode(input, length) {
@@ -137,6 +141,12 @@ exports.getAllBbpsTnxRequest = {
137
141
  }
138
142
  message.account_no = reader.string();
139
143
  continue;
144
+ case 12:
145
+ if (tag !== 98) {
146
+ break;
147
+ }
148
+ message.biller_status = reader.string();
149
+ continue;
140
150
  }
141
151
  if ((tag & 7) === 4 || tag === 0) {
142
152
  break;
@@ -158,6 +168,7 @@ exports.getAllBbpsTnxRequest = {
158
168
  status: isSet(object.status) ? globalThis.String(object.status) : undefined,
159
169
  customer_id: isSet(object.customer_id) ? globalThis.String(object.customer_id) : undefined,
160
170
  account_no: isSet(object.account_no) ? globalThis.String(object.account_no) : undefined,
171
+ biller_status: isSet(object.biller_status) ? globalThis.String(object.biller_status) : undefined,
161
172
  };
162
173
  },
163
174
  toJSON(message) {
@@ -195,6 +206,9 @@ exports.getAllBbpsTnxRequest = {
195
206
  if (message.account_no !== undefined) {
196
207
  obj.account_no = message.account_no;
197
208
  }
209
+ if (message.biller_status !== undefined) {
210
+ obj.biller_status = message.biller_status;
211
+ }
198
212
  return obj;
199
213
  },
200
214
  create(base) {
@@ -213,6 +227,7 @@ exports.getAllBbpsTnxRequest = {
213
227
  message.status = object.status ?? undefined;
214
228
  message.customer_id = object.customer_id ?? undefined;
215
229
  message.account_no = object.account_no ?? undefined;
230
+ message.biller_status = object.biller_status ?? undefined;
216
231
  return message;
217
232
  },
218
233
  };
@@ -231,6 +246,7 @@ function createBaseBBPSTransactions() {
231
246
  account_no: undefined,
232
247
  biller_id: undefined,
233
248
  pg_txn_ref_id: undefined,
249
+ biller_status: undefined,
234
250
  };
235
251
  }
236
252
  exports.BBPSTransactions = {
@@ -274,6 +290,9 @@ exports.BBPSTransactions = {
274
290
  if (message.pg_txn_ref_id !== undefined) {
275
291
  writer.uint32(106).string(message.pg_txn_ref_id);
276
292
  }
293
+ if (message.biller_status !== undefined) {
294
+ writer.uint32(114).string(message.biller_status);
295
+ }
277
296
  return writer;
278
297
  },
279
298
  decode(input, length) {
@@ -361,6 +380,12 @@ exports.BBPSTransactions = {
361
380
  }
362
381
  message.pg_txn_ref_id = reader.string();
363
382
  continue;
383
+ case 14:
384
+ if (tag !== 114) {
385
+ break;
386
+ }
387
+ message.biller_status = reader.string();
388
+ continue;
364
389
  }
365
390
  if ((tag & 7) === 4 || tag === 0) {
366
391
  break;
@@ -384,6 +409,7 @@ exports.BBPSTransactions = {
384
409
  account_no: isSet(object.account_no) ? globalThis.String(object.account_no) : undefined,
385
410
  biller_id: isSet(object.biller_id) ? globalThis.String(object.biller_id) : undefined,
386
411
  pg_txn_ref_id: isSet(object.pg_txn_ref_id) ? globalThis.String(object.pg_txn_ref_id) : undefined,
412
+ biller_status: isSet(object.biller_status) ? globalThis.String(object.biller_status) : undefined,
387
413
  };
388
414
  },
389
415
  toJSON(message) {
@@ -427,6 +453,9 @@ exports.BBPSTransactions = {
427
453
  if (message.pg_txn_ref_id !== undefined) {
428
454
  obj.pg_txn_ref_id = message.pg_txn_ref_id;
429
455
  }
456
+ if (message.biller_status !== undefined) {
457
+ obj.biller_status = message.biller_status;
458
+ }
430
459
  return obj;
431
460
  },
432
461
  create(base) {
@@ -447,6 +476,7 @@ exports.BBPSTransactions = {
447
476
  message.account_no = object.account_no ?? undefined;
448
477
  message.biller_id = object.biller_id ?? undefined;
449
478
  message.pg_txn_ref_id = object.pg_txn_ref_id ?? undefined;
479
+ message.biller_status = object.biller_status ?? undefined;
450
480
  return message;
451
481
  },
452
482
  };