@stashfin/grpc 1.2.120 → 1.2.121
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
|
@@ -73,7 +73,7 @@ export interface getCustomerByIdResponse {
|
|
|
73
73
|
emi_date?: string | undefined;
|
|
74
74
|
phone_matched?: number | undefined;
|
|
75
75
|
dob_matched?: number | undefined;
|
|
76
|
-
nsdl_dob_matched?:
|
|
76
|
+
nsdl_dob_matched?: number | undefined;
|
|
77
77
|
okyc_dob?: string | undefined;
|
|
78
78
|
dob_attempts?: number | undefined;
|
|
79
79
|
is_upgradable?: number | undefined;
|
|
@@ -353,7 +353,7 @@ exports.getCustomerByIdResponse = {
|
|
|
353
353
|
writer.uint32(552).int32(message.dob_matched);
|
|
354
354
|
}
|
|
355
355
|
if (message.nsdl_dob_matched !== undefined) {
|
|
356
|
-
writer.uint32(
|
|
356
|
+
writer.uint32(560).int32(message.nsdl_dob_matched);
|
|
357
357
|
}
|
|
358
358
|
if (message.okyc_dob !== undefined) {
|
|
359
359
|
writer.uint32(570).string(message.okyc_dob);
|
|
@@ -800,10 +800,10 @@ exports.getCustomerByIdResponse = {
|
|
|
800
800
|
message.dob_matched = reader.int32();
|
|
801
801
|
continue;
|
|
802
802
|
case 70:
|
|
803
|
-
if (tag !==
|
|
803
|
+
if (tag !== 560) {
|
|
804
804
|
break;
|
|
805
805
|
}
|
|
806
|
-
message.nsdl_dob_matched = reader.
|
|
806
|
+
message.nsdl_dob_matched = reader.int32();
|
|
807
807
|
continue;
|
|
808
808
|
case 71:
|
|
809
809
|
if (tag !== 570) {
|
|
@@ -926,7 +926,7 @@ exports.getCustomerByIdResponse = {
|
|
|
926
926
|
emi_date: isSet(object.emi_date) ? globalThis.String(object.emi_date) : undefined,
|
|
927
927
|
phone_matched: isSet(object.phone_matched) ? globalThis.Number(object.phone_matched) : undefined,
|
|
928
928
|
dob_matched: isSet(object.dob_matched) ? globalThis.Number(object.dob_matched) : undefined,
|
|
929
|
-
nsdl_dob_matched: isSet(object.nsdl_dob_matched) ? globalThis.
|
|
929
|
+
nsdl_dob_matched: isSet(object.nsdl_dob_matched) ? globalThis.Number(object.nsdl_dob_matched) : undefined,
|
|
930
930
|
okyc_dob: isSet(object.okyc_dob) ? globalThis.String(object.okyc_dob) : undefined,
|
|
931
931
|
dob_attempts: isSet(object.dob_attempts) ? globalThis.Number(object.dob_attempts) : undefined,
|
|
932
932
|
is_upgradable: isSet(object.is_upgradable) ? globalThis.Number(object.is_upgradable) : undefined,
|
|
@@ -1146,7 +1146,7 @@ exports.getCustomerByIdResponse = {
|
|
|
1146
1146
|
obj.dob_matched = Math.round(message.dob_matched);
|
|
1147
1147
|
}
|
|
1148
1148
|
if (message.nsdl_dob_matched !== undefined) {
|
|
1149
|
-
obj.nsdl_dob_matched = message.nsdl_dob_matched;
|
|
1149
|
+
obj.nsdl_dob_matched = Math.round(message.nsdl_dob_matched);
|
|
1150
1150
|
}
|
|
1151
1151
|
if (message.okyc_dob !== undefined) {
|
|
1152
1152
|
obj.okyc_dob = message.okyc_dob;
|