@stashfin/grpc 1.2.409 → 1.2.410

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.409",
3
+ "version": "1.2.410",
4
4
  "description": "Grpc proto manger",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf src/ts && mkdirp src/ts && mkdirp dist",
@@ -7,8 +7,8 @@ export interface request {
7
7
  }
8
8
  export interface response {
9
9
  statusCode?: number | undefined;
10
- totatInvestedAmount: number;
11
- totalCurrentMarketValue: number;
10
+ totatInvestedAmount?: number | undefined;
11
+ totalCurrentMarketValue?: number | undefined;
12
12
  maxLoanAmount?: number | undefined;
13
13
  data?: response_Data | undefined;
14
14
  }
@@ -17,7 +17,7 @@ export interface response_Errors {
17
17
  message?: string | undefined;
18
18
  }
19
19
  export interface response_Data {
20
- reqId?: number | undefined;
20
+ reqId?: string | undefined;
21
21
  errors: response_Errors[];
22
22
  }
23
23
  export declare const request: {
@@ -95,8 +95,8 @@ exports.request = {
95
95
  function createBaseresponse() {
96
96
  return {
97
97
  statusCode: undefined,
98
- totatInvestedAmount: 0,
99
- totalCurrentMarketValue: 0,
98
+ totatInvestedAmount: undefined,
99
+ totalCurrentMarketValue: undefined,
100
100
  maxLoanAmount: undefined,
101
101
  data: undefined,
102
102
  };
@@ -106,10 +106,10 @@ exports.response = {
106
106
  if (message.statusCode !== undefined) {
107
107
  writer.uint32(8).int32(message.statusCode);
108
108
  }
109
- if (message.totatInvestedAmount !== 0) {
109
+ if (message.totatInvestedAmount !== undefined) {
110
110
  writer.uint32(17).double(message.totatInvestedAmount);
111
111
  }
112
- if (message.totalCurrentMarketValue !== 0) {
112
+ if (message.totalCurrentMarketValue !== undefined) {
113
113
  writer.uint32(25).double(message.totalCurrentMarketValue);
114
114
  }
115
115
  if (message.maxLoanAmount !== undefined) {
@@ -168,10 +168,12 @@ exports.response = {
168
168
  fromJSON(object) {
169
169
  return {
170
170
  statusCode: isSet(object.statusCode) ? globalThis.Number(object.statusCode) : undefined,
171
- totatInvestedAmount: isSet(object.totatInvestedAmount) ? globalThis.Number(object.totatInvestedAmount) : 0,
171
+ totatInvestedAmount: isSet(object.totatInvestedAmount)
172
+ ? globalThis.Number(object.totatInvestedAmount)
173
+ : undefined,
172
174
  totalCurrentMarketValue: isSet(object.totalCurrentMarketValue)
173
175
  ? globalThis.Number(object.totalCurrentMarketValue)
174
- : 0,
176
+ : undefined,
175
177
  maxLoanAmount: isSet(object.maxLoanAmount) ? globalThis.Number(object.maxLoanAmount) : undefined,
176
178
  data: isSet(object.data) ? exports.response_Data.fromJSON(object.data) : undefined,
177
179
  };
@@ -181,10 +183,10 @@ exports.response = {
181
183
  if (message.statusCode !== undefined) {
182
184
  obj.statusCode = Math.round(message.statusCode);
183
185
  }
184
- if (message.totatInvestedAmount !== 0) {
186
+ if (message.totatInvestedAmount !== undefined) {
185
187
  obj.totatInvestedAmount = message.totatInvestedAmount;
186
188
  }
187
- if (message.totalCurrentMarketValue !== 0) {
189
+ if (message.totalCurrentMarketValue !== undefined) {
188
190
  obj.totalCurrentMarketValue = message.totalCurrentMarketValue;
189
191
  }
190
192
  if (message.maxLoanAmount !== undefined) {
@@ -201,8 +203,8 @@ exports.response = {
201
203
  fromPartial(object) {
202
204
  const message = createBaseresponse();
203
205
  message.statusCode = object.statusCode ?? undefined;
204
- message.totatInvestedAmount = object.totatInvestedAmount ?? 0;
205
- message.totalCurrentMarketValue = object.totalCurrentMarketValue ?? 0;
206
+ message.totatInvestedAmount = object.totatInvestedAmount ?? undefined;
207
+ message.totalCurrentMarketValue = object.totalCurrentMarketValue ?? undefined;
206
208
  message.maxLoanAmount = object.maxLoanAmount ?? undefined;
207
209
  message.data = (object.data !== undefined && object.data !== null)
208
210
  ? exports.response_Data.fromPartial(object.data)
@@ -282,7 +284,7 @@ function createBaseresponse_Data() {
282
284
  exports.response_Data = {
283
285
  encode(message, writer = minimal_1.default.Writer.create()) {
284
286
  if (message.reqId !== undefined) {
285
- writer.uint32(8).int32(message.reqId);
287
+ writer.uint32(10).string(message.reqId);
286
288
  }
287
289
  for (const v of message.errors) {
288
290
  exports.response_Errors.encode(v, writer.uint32(18).fork()).ldelim();
@@ -297,10 +299,10 @@ exports.response_Data = {
297
299
  const tag = reader.uint32();
298
300
  switch (tag >>> 3) {
299
301
  case 1:
300
- if (tag !== 8) {
302
+ if (tag !== 10) {
301
303
  break;
302
304
  }
303
- message.reqId = reader.int32();
305
+ message.reqId = reader.string();
304
306
  continue;
305
307
  case 2:
306
308
  if (tag !== 18) {
@@ -318,7 +320,7 @@ exports.response_Data = {
318
320
  },
319
321
  fromJSON(object) {
320
322
  return {
321
- reqId: isSet(object.reqId) ? globalThis.Number(object.reqId) : undefined,
323
+ reqId: isSet(object.reqId) ? globalThis.String(object.reqId) : undefined,
322
324
  errors: globalThis.Array.isArray(object?.errors)
323
325
  ? object.errors.map((e) => exports.response_Errors.fromJSON(e))
324
326
  : [],
@@ -327,7 +329,7 @@ exports.response_Data = {
327
329
  toJSON(message) {
328
330
  const obj = {};
329
331
  if (message.reqId !== undefined) {
330
- obj.reqId = Math.round(message.reqId);
332
+ obj.reqId = message.reqId;
331
333
  }
332
334
  if (message.errors?.length) {
333
335
  obj.errors = message.errors.map((e) => exports.response_Errors.toJSON(e));
@@ -18,7 +18,7 @@ export interface response_Errors {
18
18
  message?: string | undefined;
19
19
  }
20
20
  export interface response_Data {
21
- reqId?: number | undefined;
21
+ reqId?: string | undefined;
22
22
  otpRef?: string | undefined;
23
23
  userSubjectReference?: string | undefined;
24
24
  clientRefNo?: string | undefined;
@@ -303,7 +303,7 @@ function createBaseresponse_Data() {
303
303
  exports.response_Data = {
304
304
  encode(message, writer = minimal_1.default.Writer.create()) {
305
305
  if (message.reqId !== undefined) {
306
- writer.uint32(8).int32(message.reqId);
306
+ writer.uint32(10).string(message.reqId);
307
307
  }
308
308
  if (message.otpRef !== undefined) {
309
309
  writer.uint32(18).string(message.otpRef);
@@ -330,10 +330,10 @@ exports.response_Data = {
330
330
  const tag = reader.uint32();
331
331
  switch (tag >>> 3) {
332
332
  case 1:
333
- if (tag !== 8) {
333
+ if (tag !== 10) {
334
334
  break;
335
335
  }
336
- message.reqId = reader.int32();
336
+ message.reqId = reader.string();
337
337
  continue;
338
338
  case 2:
339
339
  if (tag !== 18) {
@@ -375,7 +375,7 @@ exports.response_Data = {
375
375
  },
376
376
  fromJSON(object) {
377
377
  return {
378
- reqId: isSet(object.reqId) ? globalThis.Number(object.reqId) : undefined,
378
+ reqId: isSet(object.reqId) ? globalThis.String(object.reqId) : undefined,
379
379
  otpRef: isSet(object.otpRef) ? globalThis.String(object.otpRef) : undefined,
380
380
  userSubjectReference: isSet(object.userSubjectReference)
381
381
  ? globalThis.String(object.userSubjectReference)
@@ -390,7 +390,7 @@ exports.response_Data = {
390
390
  toJSON(message) {
391
391
  const obj = {};
392
392
  if (message.reqId !== undefined) {
393
- obj.reqId = Math.round(message.reqId);
393
+ obj.reqId = message.reqId;
394
394
  }
395
395
  if (message.otpRef !== undefined) {
396
396
  obj.otpRef = message.otpRef;