@stashfin/grpc 1.5.3 → 1.5.4
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
|
@@ -157,6 +157,7 @@ function createBasegetCustomerByIdResponse() {
|
|
|
157
157
|
banner_journey_status: {},
|
|
158
158
|
banner_lead_status: {},
|
|
159
159
|
created_at: "",
|
|
160
|
+
integrityStatus: undefined,
|
|
160
161
|
};
|
|
161
162
|
}
|
|
162
163
|
exports.getCustomerByIdResponse = {
|
|
@@ -440,6 +441,9 @@ exports.getCustomerByIdResponse = {
|
|
|
440
441
|
if (message.created_at !== "") {
|
|
441
442
|
writer.uint32(746).string(message.created_at);
|
|
442
443
|
}
|
|
444
|
+
if (message.integrityStatus !== undefined) {
|
|
445
|
+
writer.uint32(754).string(message.integrityStatus);
|
|
446
|
+
}
|
|
443
447
|
return writer;
|
|
444
448
|
},
|
|
445
449
|
decode(input, length) {
|
|
@@ -1010,6 +1014,12 @@ exports.getCustomerByIdResponse = {
|
|
|
1010
1014
|
}
|
|
1011
1015
|
message.created_at = reader.string();
|
|
1012
1016
|
continue;
|
|
1017
|
+
case 94:
|
|
1018
|
+
if (tag !== 754) {
|
|
1019
|
+
break;
|
|
1020
|
+
}
|
|
1021
|
+
message.integrityStatus = reader.string();
|
|
1022
|
+
continue;
|
|
1013
1023
|
}
|
|
1014
1024
|
if ((tag & 7) === 4 || tag === 0) {
|
|
1015
1025
|
break;
|
|
@@ -1127,6 +1137,7 @@ exports.getCustomerByIdResponse = {
|
|
|
1127
1137
|
}, {})
|
|
1128
1138
|
: {},
|
|
1129
1139
|
created_at: isSet(object.created_at) ? globalThis.String(object.created_at) : "",
|
|
1140
|
+
integrityStatus: isSet(object.integrityStatus) ? globalThis.String(object.integrityStatus) : undefined,
|
|
1130
1141
|
};
|
|
1131
1142
|
},
|
|
1132
1143
|
toJSON(message) {
|
|
@@ -1425,6 +1436,9 @@ exports.getCustomerByIdResponse = {
|
|
|
1425
1436
|
if (message.created_at !== "") {
|
|
1426
1437
|
obj.created_at = message.created_at;
|
|
1427
1438
|
}
|
|
1439
|
+
if (message.integrityStatus !== undefined) {
|
|
1440
|
+
obj.integrityStatus = message.integrityStatus;
|
|
1441
|
+
}
|
|
1428
1442
|
return obj;
|
|
1429
1443
|
},
|
|
1430
1444
|
create(base) {
|
|
@@ -1547,6 +1561,7 @@ exports.getCustomerByIdResponse = {
|
|
|
1547
1561
|
return acc;
|
|
1548
1562
|
}, {});
|
|
1549
1563
|
message.created_at = object.created_at ?? "";
|
|
1564
|
+
message.integrityStatus = object.integrityStatus ?? undefined;
|
|
1550
1565
|
return message;
|
|
1551
1566
|
},
|
|
1552
1567
|
};
|
|
@@ -23,6 +23,7 @@ export interface verifyOtpResponse {
|
|
|
23
23
|
refresh_token: string;
|
|
24
24
|
is_eqx_customer?: boolean | undefined;
|
|
25
25
|
source?: string | undefined;
|
|
26
|
+
integrityStatus?: string | undefined;
|
|
26
27
|
}
|
|
27
28
|
export declare const verifyOtpReqeust: {
|
|
28
29
|
encode(message: verifyOtpReqeust, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -250,6 +250,7 @@ function createBaseverifyOtpResponse() {
|
|
|
250
250
|
refresh_token: "",
|
|
251
251
|
is_eqx_customer: undefined,
|
|
252
252
|
source: undefined,
|
|
253
|
+
integrityStatus: undefined,
|
|
253
254
|
};
|
|
254
255
|
}
|
|
255
256
|
exports.verifyOtpResponse = {
|
|
@@ -278,6 +279,9 @@ exports.verifyOtpResponse = {
|
|
|
278
279
|
if (message.source !== undefined) {
|
|
279
280
|
writer.uint32(66).string(message.source);
|
|
280
281
|
}
|
|
282
|
+
if (message.integrityStatus !== undefined) {
|
|
283
|
+
writer.uint32(74).string(message.integrityStatus);
|
|
284
|
+
}
|
|
281
285
|
return writer;
|
|
282
286
|
},
|
|
283
287
|
decode(input, length) {
|
|
@@ -335,6 +339,12 @@ exports.verifyOtpResponse = {
|
|
|
335
339
|
}
|
|
336
340
|
message.source = reader.string();
|
|
337
341
|
continue;
|
|
342
|
+
case 9:
|
|
343
|
+
if (tag !== 74) {
|
|
344
|
+
break;
|
|
345
|
+
}
|
|
346
|
+
message.integrityStatus = reader.string();
|
|
347
|
+
continue;
|
|
338
348
|
}
|
|
339
349
|
if ((tag & 7) === 4 || tag === 0) {
|
|
340
350
|
break;
|
|
@@ -353,6 +363,7 @@ exports.verifyOtpResponse = {
|
|
|
353
363
|
refresh_token: isSet(object.refresh_token) ? globalThis.String(object.refresh_token) : "",
|
|
354
364
|
is_eqx_customer: isSet(object.is_eqx_customer) ? globalThis.Boolean(object.is_eqx_customer) : undefined,
|
|
355
365
|
source: isSet(object.source) ? globalThis.String(object.source) : undefined,
|
|
366
|
+
integrityStatus: isSet(object.integrityStatus) ? globalThis.String(object.integrityStatus) : undefined,
|
|
356
367
|
};
|
|
357
368
|
},
|
|
358
369
|
toJSON(message) {
|
|
@@ -381,6 +392,9 @@ exports.verifyOtpResponse = {
|
|
|
381
392
|
if (message.source !== undefined) {
|
|
382
393
|
obj.source = message.source;
|
|
383
394
|
}
|
|
395
|
+
if (message.integrityStatus !== undefined) {
|
|
396
|
+
obj.integrityStatus = message.integrityStatus;
|
|
397
|
+
}
|
|
384
398
|
return obj;
|
|
385
399
|
},
|
|
386
400
|
create(base) {
|
|
@@ -396,6 +410,7 @@ exports.verifyOtpResponse = {
|
|
|
396
410
|
message.refresh_token = object.refresh_token ?? "";
|
|
397
411
|
message.is_eqx_customer = object.is_eqx_customer ?? undefined;
|
|
398
412
|
message.source = object.source ?? undefined;
|
|
413
|
+
message.integrityStatus = object.integrityStatus ?? undefined;
|
|
399
414
|
return message;
|
|
400
415
|
},
|
|
401
416
|
};
|