@stashfin/grpc 1.2.849 → 1.2.850

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.849",
3
+ "version": "1.2.850",
4
4
  "description": "Grpc proto manger",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf src/ts && mkdirp src/ts && mkdirp dist",
@@ -20,6 +20,7 @@ export interface getCustomerByIdResponse {
20
20
  is_bureau_fetched: boolean;
21
21
  next_step?: string | undefined;
22
22
  is_akara_registered?: string | undefined;
23
+ eqx_customer_category?: string | undefined;
23
24
  }
24
25
  export declare const getCustomerByIdRequest: {
25
26
  encode(message: getCustomerByIdRequest, writer?: _m0.Writer): _m0.Writer;
@@ -81,6 +81,7 @@ function createBasegetCustomerByIdResponse() {
81
81
  is_bureau_fetched: false,
82
82
  next_step: undefined,
83
83
  is_akara_registered: undefined,
84
+ eqx_customer_category: undefined,
84
85
  };
85
86
  }
86
87
  exports.getCustomerByIdResponse = {
@@ -133,6 +134,9 @@ exports.getCustomerByIdResponse = {
133
134
  if (message.is_akara_registered !== undefined) {
134
135
  writer.uint32(130).string(message.is_akara_registered);
135
136
  }
137
+ if (message.eqx_customer_category !== undefined) {
138
+ writer.uint32(138).string(message.eqx_customer_category);
139
+ }
136
140
  return writer;
137
141
  },
138
142
  decode(input, length) {
@@ -238,6 +242,12 @@ exports.getCustomerByIdResponse = {
238
242
  }
239
243
  message.is_akara_registered = reader.string();
240
244
  continue;
245
+ case 17:
246
+ if (tag !== 138) {
247
+ break;
248
+ }
249
+ message.eqx_customer_category = reader.string();
250
+ continue;
241
251
  }
242
252
  if ((tag & 7) === 4 || tag === 0) {
243
253
  break;
@@ -266,6 +276,9 @@ exports.getCustomerByIdResponse = {
266
276
  is_akara_registered: isSet(object.is_akara_registered)
267
277
  ? globalThis.String(object.is_akara_registered)
268
278
  : undefined,
279
+ eqx_customer_category: isSet(object.eqx_customer_category)
280
+ ? globalThis.String(object.eqx_customer_category)
281
+ : undefined,
269
282
  };
270
283
  },
271
284
  toJSON(message) {
@@ -318,6 +331,9 @@ exports.getCustomerByIdResponse = {
318
331
  if (message.is_akara_registered !== undefined) {
319
332
  obj.is_akara_registered = message.is_akara_registered;
320
333
  }
334
+ if (message.eqx_customer_category !== undefined) {
335
+ obj.eqx_customer_category = message.eqx_customer_category;
336
+ }
321
337
  return obj;
322
338
  },
323
339
  create(base) {
@@ -341,6 +357,7 @@ exports.getCustomerByIdResponse = {
341
357
  message.is_bureau_fetched = object.is_bureau_fetched ?? false;
342
358
  message.next_step = object.next_step ?? undefined;
343
359
  message.is_akara_registered = object.is_akara_registered ?? undefined;
360
+ message.eqx_customer_category = object.eqx_customer_category ?? undefined;
344
361
  return message;
345
362
  },
346
363
  };