@stashfin/grpc 1.2.492 → 1.2.493
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/upi/getprofile.d.ts +2 -2
- package/ts/upi/getprofile.js +16 -16
package/package.json
CHANGED
package/ts/upi/getprofile.d.ts
CHANGED
|
@@ -52,10 +52,10 @@ export interface Account {
|
|
|
52
52
|
CredsAllowed?: CredsAllowedList | undefined;
|
|
53
53
|
ifsc?: string | undefined;
|
|
54
54
|
accType?: string | undefined;
|
|
55
|
-
|
|
55
|
+
default_credit?: string | undefined;
|
|
56
56
|
account?: string | undefined;
|
|
57
57
|
status?: string | undefined;
|
|
58
|
-
|
|
58
|
+
onboarding_type?: string | undefined;
|
|
59
59
|
}
|
|
60
60
|
/** CredsAllowed nested message */
|
|
61
61
|
export interface CredsAllowedList {
|
package/ts/upi/getprofile.js
CHANGED
|
@@ -545,10 +545,10 @@ function createBaseAccount() {
|
|
|
545
545
|
CredsAllowed: undefined,
|
|
546
546
|
ifsc: undefined,
|
|
547
547
|
accType: undefined,
|
|
548
|
-
|
|
548
|
+
default_credit: undefined,
|
|
549
549
|
account: undefined,
|
|
550
550
|
status: undefined,
|
|
551
|
-
|
|
551
|
+
onboarding_type: undefined,
|
|
552
552
|
};
|
|
553
553
|
}
|
|
554
554
|
exports.Account = {
|
|
@@ -604,8 +604,8 @@ exports.Account = {
|
|
|
604
604
|
if (message.accType !== undefined) {
|
|
605
605
|
writer.uint32(138).string(message.accType);
|
|
606
606
|
}
|
|
607
|
-
if (message.
|
|
608
|
-
writer.uint32(146).string(message.
|
|
607
|
+
if (message.default_credit !== undefined) {
|
|
608
|
+
writer.uint32(146).string(message.default_credit);
|
|
609
609
|
}
|
|
610
610
|
if (message.account !== undefined) {
|
|
611
611
|
writer.uint32(154).string(message.account);
|
|
@@ -613,8 +613,8 @@ exports.Account = {
|
|
|
613
613
|
if (message.status !== undefined) {
|
|
614
614
|
writer.uint32(162).string(message.status);
|
|
615
615
|
}
|
|
616
|
-
if (message.
|
|
617
|
-
writer.uint32(170).string(message.
|
|
616
|
+
if (message.onboarding_type !== undefined) {
|
|
617
|
+
writer.uint32(170).string(message.onboarding_type);
|
|
618
618
|
}
|
|
619
619
|
return writer;
|
|
620
620
|
},
|
|
@@ -731,7 +731,7 @@ exports.Account = {
|
|
|
731
731
|
if (tag !== 146) {
|
|
732
732
|
break;
|
|
733
733
|
}
|
|
734
|
-
message.
|
|
734
|
+
message.default_credit = reader.string();
|
|
735
735
|
continue;
|
|
736
736
|
case 19:
|
|
737
737
|
if (tag !== 154) {
|
|
@@ -749,7 +749,7 @@ exports.Account = {
|
|
|
749
749
|
if (tag !== 170) {
|
|
750
750
|
break;
|
|
751
751
|
}
|
|
752
|
-
message.
|
|
752
|
+
message.onboarding_type = reader.string();
|
|
753
753
|
continue;
|
|
754
754
|
}
|
|
755
755
|
if ((tag & 7) === 4 || tag === 0) {
|
|
@@ -778,10 +778,10 @@ exports.Account = {
|
|
|
778
778
|
CredsAllowed: isSet(object.CredsAllowed) ? exports.CredsAllowedList.fromJSON(object.CredsAllowed) : undefined,
|
|
779
779
|
ifsc: isSet(object.ifsc) ? globalThis.String(object.ifsc) : undefined,
|
|
780
780
|
accType: isSet(object.accType) ? globalThis.String(object.accType) : undefined,
|
|
781
|
-
|
|
781
|
+
default_credit: isSet(object.default_credit) ? globalThis.String(object.default_credit) : undefined,
|
|
782
782
|
account: isSet(object.account) ? globalThis.String(object.account) : undefined,
|
|
783
783
|
status: isSet(object.status) ? globalThis.String(object.status) : undefined,
|
|
784
|
-
|
|
784
|
+
onboarding_type: isSet(object.onboarding_type) ? globalThis.String(object.onboarding_type) : undefined,
|
|
785
785
|
};
|
|
786
786
|
},
|
|
787
787
|
toJSON(message) {
|
|
@@ -837,8 +837,8 @@ exports.Account = {
|
|
|
837
837
|
if (message.accType !== undefined) {
|
|
838
838
|
obj.accType = message.accType;
|
|
839
839
|
}
|
|
840
|
-
if (message.
|
|
841
|
-
obj.
|
|
840
|
+
if (message.default_credit !== undefined) {
|
|
841
|
+
obj.default_credit = message.default_credit;
|
|
842
842
|
}
|
|
843
843
|
if (message.account !== undefined) {
|
|
844
844
|
obj.account = message.account;
|
|
@@ -846,8 +846,8 @@ exports.Account = {
|
|
|
846
846
|
if (message.status !== undefined) {
|
|
847
847
|
obj.status = message.status;
|
|
848
848
|
}
|
|
849
|
-
if (message.
|
|
850
|
-
obj.
|
|
849
|
+
if (message.onboarding_type !== undefined) {
|
|
850
|
+
obj.onboarding_type = message.onboarding_type;
|
|
851
851
|
}
|
|
852
852
|
return obj;
|
|
853
853
|
},
|
|
@@ -875,10 +875,10 @@ exports.Account = {
|
|
|
875
875
|
: undefined;
|
|
876
876
|
message.ifsc = object.ifsc ?? undefined;
|
|
877
877
|
message.accType = object.accType ?? undefined;
|
|
878
|
-
message.
|
|
878
|
+
message.default_credit = object.default_credit ?? undefined;
|
|
879
879
|
message.account = object.account ?? undefined;
|
|
880
880
|
message.status = object.status ?? undefined;
|
|
881
|
-
message.
|
|
881
|
+
message.onboarding_type = object.onboarding_type ?? undefined;
|
|
882
882
|
return message;
|
|
883
883
|
},
|
|
884
884
|
};
|