@stashfin/grpc 1.5.5 → 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,7 +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?:
|
|
24
|
+
integrityStatus?: boolean | undefined;
|
|
25
25
|
}
|
|
26
26
|
export declare const getCustomerByIdRequest: {
|
|
27
27
|
encode(message: getCustomerByIdRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -139,7 +139,7 @@ exports.getCustomerByIdResponse = {
|
|
|
139
139
|
writer.uint32(138).string(message.eqx_customer_category);
|
|
140
140
|
}
|
|
141
141
|
if (message.integrityStatus !== undefined) {
|
|
142
|
-
writer.uint32(
|
|
142
|
+
writer.uint32(144).bool(message.integrityStatus);
|
|
143
143
|
}
|
|
144
144
|
return writer;
|
|
145
145
|
},
|
|
@@ -253,10 +253,10 @@ exports.getCustomerByIdResponse = {
|
|
|
253
253
|
message.eqx_customer_category = reader.string();
|
|
254
254
|
continue;
|
|
255
255
|
case 18:
|
|
256
|
-
if (tag !==
|
|
256
|
+
if (tag !== 144) {
|
|
257
257
|
break;
|
|
258
258
|
}
|
|
259
|
-
message.integrityStatus = reader.
|
|
259
|
+
message.integrityStatus = reader.bool();
|
|
260
260
|
continue;
|
|
261
261
|
}
|
|
262
262
|
if ((tag & 7) === 4 || tag === 0) {
|
|
@@ -289,7 +289,7 @@ exports.getCustomerByIdResponse = {
|
|
|
289
289
|
eqx_customer_category: isSet(object.eqx_customer_category)
|
|
290
290
|
? globalThis.String(object.eqx_customer_category)
|
|
291
291
|
: undefined,
|
|
292
|
-
integrityStatus: isSet(object.integrityStatus) ? globalThis.
|
|
292
|
+
integrityStatus: isSet(object.integrityStatus) ? globalThis.Boolean(object.integrityStatus) : undefined,
|
|
293
293
|
};
|
|
294
294
|
},
|
|
295
295
|
toJSON(message) {
|
|
@@ -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) {
|