@stashfin/grpc 1.5.7 → 1.5.8

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.5.7",
3
+ "version": "1.5.8",
4
4
  "description": "Grpc proto manger",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf src/ts && mkdirp src/ts && mkdirp dist",
@@ -22,6 +22,7 @@ export interface getCustomerByIdResponse {
22
22
  is_akara_registered?: string | undefined;
23
23
  eqx_customer_category?: string | undefined;
24
24
  integrityStatus?: boolean | undefined;
25
+ bureau_source?: string | undefined;
25
26
  }
26
27
  export declare const getCustomerByIdRequest: {
27
28
  encode(message: getCustomerByIdRequest, writer?: _m0.Writer): _m0.Writer;
@@ -83,6 +83,7 @@ function createBasegetCustomerByIdResponse() {
83
83
  is_akara_registered: undefined,
84
84
  eqx_customer_category: undefined,
85
85
  integrityStatus: undefined,
86
+ bureau_source: undefined,
86
87
  };
87
88
  }
88
89
  exports.getCustomerByIdResponse = {
@@ -141,6 +142,9 @@ exports.getCustomerByIdResponse = {
141
142
  if (message.integrityStatus !== undefined) {
142
143
  writer.uint32(144).bool(message.integrityStatus);
143
144
  }
145
+ if (message.bureau_source !== undefined) {
146
+ writer.uint32(154).string(message.bureau_source);
147
+ }
144
148
  return writer;
145
149
  },
146
150
  decode(input, length) {
@@ -258,6 +262,12 @@ exports.getCustomerByIdResponse = {
258
262
  }
259
263
  message.integrityStatus = reader.bool();
260
264
  continue;
265
+ case 19:
266
+ if (tag !== 154) {
267
+ break;
268
+ }
269
+ message.bureau_source = reader.string();
270
+ continue;
261
271
  }
262
272
  if ((tag & 7) === 4 || tag === 0) {
263
273
  break;
@@ -290,6 +300,7 @@ exports.getCustomerByIdResponse = {
290
300
  ? globalThis.String(object.eqx_customer_category)
291
301
  : undefined,
292
302
  integrityStatus: isSet(object.integrityStatus) ? globalThis.Boolean(object.integrityStatus) : undefined,
303
+ bureau_source: isSet(object.bureau_source) ? globalThis.String(object.bureau_source) : undefined,
293
304
  };
294
305
  },
295
306
  toJSON(message) {
@@ -348,6 +359,9 @@ exports.getCustomerByIdResponse = {
348
359
  if (message.integrityStatus !== undefined) {
349
360
  obj.integrityStatus = message.integrityStatus;
350
361
  }
362
+ if (message.bureau_source !== undefined) {
363
+ obj.bureau_source = message.bureau_source;
364
+ }
351
365
  return obj;
352
366
  },
353
367
  create(base) {
@@ -373,6 +387,7 @@ exports.getCustomerByIdResponse = {
373
387
  message.is_akara_registered = object.is_akara_registered ?? undefined;
374
388
  message.eqx_customer_category = object.eqx_customer_category ?? undefined;
375
389
  message.integrityStatus = object.integrityStatus ?? undefined;
390
+ message.bureau_source = object.bureau_source ?? undefined;
376
391
  return message;
377
392
  },
378
393
  };