@stashfin/grpc 1.5.3 → 1.5.5
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 +1 -1
- package/ts/customers/getcustomerbyid.d.ts +1 -0
- package/ts/customers/getcustomerbyid.js +15 -0
- package/ts/eqxcustomers/getcustomerbyid.d.ts +1 -0
- package/ts/eqxcustomers/getcustomerbyid.js +15 -0
- package/ts/eqxcustomers/verifyotp.d.ts +1 -0
- package/ts/eqxcustomers/verifyotp.js +15 -0
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
|
};
|
|
@@ -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?: string | 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(146).string(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 !== 146) {
|
|
257
|
+
break;
|
|
258
|
+
}
|
|
259
|
+
message.integrityStatus = reader.string();
|
|
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.String(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,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
|
};
|