@stashfin/grpc 1.5.4 → 1.5.6
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
|
@@ -21,6 +21,7 @@ export interface getCustomerByIdResponse {
|
|
|
21
21
|
next_step?: string | undefined;
|
|
22
22
|
is_akara_registered?: string | undefined;
|
|
23
23
|
eqx_customer_category?: string | undefined;
|
|
24
|
+
integrityStatus?: boolean | undefined;
|
|
24
25
|
}
|
|
25
26
|
export declare const getCustomerByIdRequest: {
|
|
26
27
|
encode(message: getCustomerByIdRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -82,6 +82,7 @@ function createBasegetCustomerByIdResponse() {
|
|
|
82
82
|
next_step: undefined,
|
|
83
83
|
is_akara_registered: undefined,
|
|
84
84
|
eqx_customer_category: undefined,
|
|
85
|
+
integrityStatus: undefined,
|
|
85
86
|
};
|
|
86
87
|
}
|
|
87
88
|
exports.getCustomerByIdResponse = {
|
|
@@ -137,6 +138,9 @@ exports.getCustomerByIdResponse = {
|
|
|
137
138
|
if (message.eqx_customer_category !== undefined) {
|
|
138
139
|
writer.uint32(138).string(message.eqx_customer_category);
|
|
139
140
|
}
|
|
141
|
+
if (message.integrityStatus !== undefined) {
|
|
142
|
+
writer.uint32(144).bool(message.integrityStatus);
|
|
143
|
+
}
|
|
140
144
|
return writer;
|
|
141
145
|
},
|
|
142
146
|
decode(input, length) {
|
|
@@ -248,6 +252,12 @@ exports.getCustomerByIdResponse = {
|
|
|
248
252
|
}
|
|
249
253
|
message.eqx_customer_category = reader.string();
|
|
250
254
|
continue;
|
|
255
|
+
case 18:
|
|
256
|
+
if (tag !== 144) {
|
|
257
|
+
break;
|
|
258
|
+
}
|
|
259
|
+
message.integrityStatus = reader.bool();
|
|
260
|
+
continue;
|
|
251
261
|
}
|
|
252
262
|
if ((tag & 7) === 4 || tag === 0) {
|
|
253
263
|
break;
|
|
@@ -279,6 +289,7 @@ exports.getCustomerByIdResponse = {
|
|
|
279
289
|
eqx_customer_category: isSet(object.eqx_customer_category)
|
|
280
290
|
? globalThis.String(object.eqx_customer_category)
|
|
281
291
|
: undefined,
|
|
292
|
+
integrityStatus: isSet(object.integrityStatus) ? globalThis.Boolean(object.integrityStatus) : undefined,
|
|
282
293
|
};
|
|
283
294
|
},
|
|
284
295
|
toJSON(message) {
|
|
@@ -334,6 +345,9 @@ exports.getCustomerByIdResponse = {
|
|
|
334
345
|
if (message.eqx_customer_category !== undefined) {
|
|
335
346
|
obj.eqx_customer_category = message.eqx_customer_category;
|
|
336
347
|
}
|
|
348
|
+
if (message.integrityStatus !== undefined) {
|
|
349
|
+
obj.integrityStatus = message.integrityStatus;
|
|
350
|
+
}
|
|
337
351
|
return obj;
|
|
338
352
|
},
|
|
339
353
|
create(base) {
|
|
@@ -358,6 +372,7 @@ exports.getCustomerByIdResponse = {
|
|
|
358
372
|
message.next_step = object.next_step ?? undefined;
|
|
359
373
|
message.is_akara_registered = object.is_akara_registered ?? undefined;
|
|
360
374
|
message.eqx_customer_category = object.eqx_customer_category ?? undefined;
|
|
375
|
+
message.integrityStatus = object.integrityStatus ?? undefined;
|
|
361
376
|
return message;
|
|
362
377
|
},
|
|
363
378
|
};
|
|
@@ -23,7 +23,7 @@ export interface verifyOtpResponse {
|
|
|
23
23
|
refresh_token: string;
|
|
24
24
|
is_eqx_customer?: boolean | undefined;
|
|
25
25
|
source?: string | undefined;
|
|
26
|
-
integrityStatus?:
|
|
26
|
+
integrityStatus?: boolean | undefined;
|
|
27
27
|
}
|
|
28
28
|
export declare const verifyOtpReqeust: {
|
|
29
29
|
encode(message: verifyOtpReqeust, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -280,7 +280,7 @@ exports.verifyOtpResponse = {
|
|
|
280
280
|
writer.uint32(66).string(message.source);
|
|
281
281
|
}
|
|
282
282
|
if (message.integrityStatus !== undefined) {
|
|
283
|
-
writer.uint32(
|
|
283
|
+
writer.uint32(72).bool(message.integrityStatus);
|
|
284
284
|
}
|
|
285
285
|
return writer;
|
|
286
286
|
},
|
|
@@ -340,10 +340,10 @@ exports.verifyOtpResponse = {
|
|
|
340
340
|
message.source = reader.string();
|
|
341
341
|
continue;
|
|
342
342
|
case 9:
|
|
343
|
-
if (tag !==
|
|
343
|
+
if (tag !== 72) {
|
|
344
344
|
break;
|
|
345
345
|
}
|
|
346
|
-
message.integrityStatus = reader.
|
|
346
|
+
message.integrityStatus = reader.bool();
|
|
347
347
|
continue;
|
|
348
348
|
}
|
|
349
349
|
if ((tag & 7) === 4 || tag === 0) {
|
|
@@ -363,7 +363,7 @@ exports.verifyOtpResponse = {
|
|
|
363
363
|
refresh_token: isSet(object.refresh_token) ? globalThis.String(object.refresh_token) : "",
|
|
364
364
|
is_eqx_customer: isSet(object.is_eqx_customer) ? globalThis.Boolean(object.is_eqx_customer) : undefined,
|
|
365
365
|
source: isSet(object.source) ? globalThis.String(object.source) : undefined,
|
|
366
|
-
integrityStatus: isSet(object.integrityStatus) ? globalThis.
|
|
366
|
+
integrityStatus: isSet(object.integrityStatus) ? globalThis.Boolean(object.integrityStatus) : undefined,
|
|
367
367
|
};
|
|
368
368
|
},
|
|
369
369
|
toJSON(message) {
|