@stashfin/grpc 1.2.498 → 1.2.502

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/grpc",
3
- "version": "1.2.498",
3
+ "version": "1.2.502",
4
4
  "description": "Grpc proto manger",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf src/ts && mkdirp src/ts && mkdirp dist",
@@ -56,6 +56,11 @@ export interface Account {
56
56
  account?: string | undefined;
57
57
  status?: string | undefined;
58
58
  onboarding_type?: string | undefined;
59
+ upi_lite_lrn?: string | undefined;
60
+ upi_lite_status?: string | undefined;
61
+ channel_code?: string | undefined;
62
+ mobile?: string | undefined;
63
+ acc_identifier?: string | undefined;
59
64
  }
60
65
  /** CredsAllowed nested message */
61
66
  export interface CredsAllowedList {
@@ -549,6 +549,11 @@ function createBaseAccount() {
549
549
  account: undefined,
550
550
  status: undefined,
551
551
  onboarding_type: undefined,
552
+ upi_lite_lrn: undefined,
553
+ upi_lite_status: undefined,
554
+ channel_code: undefined,
555
+ mobile: undefined,
556
+ acc_identifier: undefined,
552
557
  };
553
558
  }
554
559
  exports.Account = {
@@ -616,6 +621,21 @@ exports.Account = {
616
621
  if (message.onboarding_type !== undefined) {
617
622
  writer.uint32(170).string(message.onboarding_type);
618
623
  }
624
+ if (message.upi_lite_lrn !== undefined) {
625
+ writer.uint32(178).string(message.upi_lite_lrn);
626
+ }
627
+ if (message.upi_lite_status !== undefined) {
628
+ writer.uint32(186).string(message.upi_lite_status);
629
+ }
630
+ if (message.channel_code !== undefined) {
631
+ writer.uint32(194).string(message.channel_code);
632
+ }
633
+ if (message.mobile !== undefined) {
634
+ writer.uint32(202).string(message.mobile);
635
+ }
636
+ if (message.acc_identifier !== undefined) {
637
+ writer.uint32(210).string(message.acc_identifier);
638
+ }
619
639
  return writer;
620
640
  },
621
641
  decode(input, length) {
@@ -751,6 +771,36 @@ exports.Account = {
751
771
  }
752
772
  message.onboarding_type = reader.string();
753
773
  continue;
774
+ case 22:
775
+ if (tag !== 178) {
776
+ break;
777
+ }
778
+ message.upi_lite_lrn = reader.string();
779
+ continue;
780
+ case 23:
781
+ if (tag !== 186) {
782
+ break;
783
+ }
784
+ message.upi_lite_status = reader.string();
785
+ continue;
786
+ case 24:
787
+ if (tag !== 194) {
788
+ break;
789
+ }
790
+ message.channel_code = reader.string();
791
+ continue;
792
+ case 25:
793
+ if (tag !== 202) {
794
+ break;
795
+ }
796
+ message.mobile = reader.string();
797
+ continue;
798
+ case 26:
799
+ if (tag !== 210) {
800
+ break;
801
+ }
802
+ message.acc_identifier = reader.string();
803
+ continue;
754
804
  }
755
805
  if ((tag & 7) === 4 || tag === 0) {
756
806
  break;
@@ -782,6 +832,11 @@ exports.Account = {
782
832
  account: isSet(object.account) ? globalThis.String(object.account) : undefined,
783
833
  status: isSet(object.status) ? globalThis.String(object.status) : undefined,
784
834
  onboarding_type: isSet(object.onboarding_type) ? globalThis.String(object.onboarding_type) : undefined,
835
+ upi_lite_lrn: isSet(object.upi_lite_lrn) ? globalThis.String(object.upi_lite_lrn) : undefined,
836
+ upi_lite_status: isSet(object.upi_lite_status) ? globalThis.String(object.upi_lite_status) : undefined,
837
+ channel_code: isSet(object.channel_code) ? globalThis.String(object.channel_code) : undefined,
838
+ mobile: isSet(object.mobile) ? globalThis.String(object.mobile) : undefined,
839
+ acc_identifier: isSet(object.acc_identifier) ? globalThis.String(object.acc_identifier) : undefined,
785
840
  };
786
841
  },
787
842
  toJSON(message) {
@@ -849,6 +904,21 @@ exports.Account = {
849
904
  if (message.onboarding_type !== undefined) {
850
905
  obj.onboarding_type = message.onboarding_type;
851
906
  }
907
+ if (message.upi_lite_lrn !== undefined) {
908
+ obj.upi_lite_lrn = message.upi_lite_lrn;
909
+ }
910
+ if (message.upi_lite_status !== undefined) {
911
+ obj.upi_lite_status = message.upi_lite_status;
912
+ }
913
+ if (message.channel_code !== undefined) {
914
+ obj.channel_code = message.channel_code;
915
+ }
916
+ if (message.mobile !== undefined) {
917
+ obj.mobile = message.mobile;
918
+ }
919
+ if (message.acc_identifier !== undefined) {
920
+ obj.acc_identifier = message.acc_identifier;
921
+ }
852
922
  return obj;
853
923
  },
854
924
  create(base) {
@@ -879,6 +949,11 @@ exports.Account = {
879
949
  message.account = object.account ?? undefined;
880
950
  message.status = object.status ?? undefined;
881
951
  message.onboarding_type = object.onboarding_type ?? undefined;
952
+ message.upi_lite_lrn = object.upi_lite_lrn ?? undefined;
953
+ message.upi_lite_status = object.upi_lite_status ?? undefined;
954
+ message.channel_code = object.channel_code ?? undefined;
955
+ message.mobile = object.mobile ?? undefined;
956
+ message.acc_identifier = object.acc_identifier ?? undefined;
882
957
  return message;
883
958
  },
884
959
  };