@stashfin/grpc 1.2.826 → 1.2.827

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.826",
3
+ "version": "1.2.827",
4
4
  "description": "Grpc proto manger",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf src/ts && mkdirp src/ts && mkdirp dist",
@@ -3,7 +3,7 @@ export declare const protobufPackage = "eqxcustomers.getallcustomers";
3
3
  export interface getAllCustomersRequest {
4
4
  page?: number | undefined;
5
5
  limit?: number | undefined;
6
- id?: string | undefined;
6
+ id?: number | undefined;
7
7
  mobile?: string | undefined;
8
8
  email?: string | undefined;
9
9
  upi_linked?: string | undefined;
@@ -34,7 +34,7 @@ exports.getAllCustomersRequest = {
34
34
  writer.uint32(16).int32(message.limit);
35
35
  }
36
36
  if (message.id !== undefined) {
37
- writer.uint32(26).string(message.id);
37
+ writer.uint32(24).int32(message.id);
38
38
  }
39
39
  if (message.mobile !== undefined) {
40
40
  writer.uint32(34).string(message.mobile);
@@ -73,10 +73,10 @@ exports.getAllCustomersRequest = {
73
73
  message.limit = reader.int32();
74
74
  continue;
75
75
  case 3:
76
- if (tag !== 26) {
76
+ if (tag !== 24) {
77
77
  break;
78
78
  }
79
- message.id = reader.string();
79
+ message.id = reader.int32();
80
80
  continue;
81
81
  case 4:
82
82
  if (tag !== 34) {
@@ -120,7 +120,7 @@ exports.getAllCustomersRequest = {
120
120
  return {
121
121
  page: isSet(object.page) ? globalThis.Number(object.page) : undefined,
122
122
  limit: isSet(object.limit) ? globalThis.Number(object.limit) : undefined,
123
- id: isSet(object.id) ? globalThis.String(object.id) : undefined,
123
+ id: isSet(object.id) ? globalThis.Number(object.id) : undefined,
124
124
  mobile: isSet(object.mobile) ? globalThis.String(object.mobile) : undefined,
125
125
  email: isSet(object.email) ? globalThis.String(object.email) : undefined,
126
126
  upi_linked: isSet(object.upi_linked) ? globalThis.String(object.upi_linked) : undefined,
@@ -137,7 +137,7 @@ exports.getAllCustomersRequest = {
137
137
  obj.limit = Math.round(message.limit);
138
138
  }
139
139
  if (message.id !== undefined) {
140
- obj.id = message.id;
140
+ obj.id = Math.round(message.id);
141
141
  }
142
142
  if (message.mobile !== undefined) {
143
143
  obj.mobile = message.mobile;