@stashfin/grpc 1.2.498 → 1.2.499

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.499",
4
4
  "description": "Grpc proto manger",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf src/ts && mkdirp src/ts && mkdirp dist",
@@ -56,6 +56,10 @@ 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;
59
63
  }
60
64
  /** CredsAllowed nested message */
61
65
  export interface CredsAllowedList {
@@ -549,6 +549,10 @@ 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,
552
556
  };
553
557
  }
554
558
  exports.Account = {
@@ -616,6 +620,18 @@ exports.Account = {
616
620
  if (message.onboarding_type !== undefined) {
617
621
  writer.uint32(170).string(message.onboarding_type);
618
622
  }
623
+ if (message.upi_lite_lrn !== undefined) {
624
+ writer.uint32(178).string(message.upi_lite_lrn);
625
+ }
626
+ if (message.upi_lite_status !== undefined) {
627
+ writer.uint32(186).string(message.upi_lite_status);
628
+ }
629
+ if (message.channel_code !== undefined) {
630
+ writer.uint32(194).string(message.channel_code);
631
+ }
632
+ if (message.mobile !== undefined) {
633
+ writer.uint32(202).string(message.mobile);
634
+ }
619
635
  return writer;
620
636
  },
621
637
  decode(input, length) {
@@ -751,6 +767,30 @@ exports.Account = {
751
767
  }
752
768
  message.onboarding_type = reader.string();
753
769
  continue;
770
+ case 22:
771
+ if (tag !== 178) {
772
+ break;
773
+ }
774
+ message.upi_lite_lrn = reader.string();
775
+ continue;
776
+ case 23:
777
+ if (tag !== 186) {
778
+ break;
779
+ }
780
+ message.upi_lite_status = reader.string();
781
+ continue;
782
+ case 24:
783
+ if (tag !== 194) {
784
+ break;
785
+ }
786
+ message.channel_code = reader.string();
787
+ continue;
788
+ case 25:
789
+ if (tag !== 202) {
790
+ break;
791
+ }
792
+ message.mobile = reader.string();
793
+ continue;
754
794
  }
755
795
  if ((tag & 7) === 4 || tag === 0) {
756
796
  break;
@@ -782,6 +822,10 @@ exports.Account = {
782
822
  account: isSet(object.account) ? globalThis.String(object.account) : undefined,
783
823
  status: isSet(object.status) ? globalThis.String(object.status) : undefined,
784
824
  onboarding_type: isSet(object.onboarding_type) ? globalThis.String(object.onboarding_type) : undefined,
825
+ upi_lite_lrn: isSet(object.upi_lite_lrn) ? globalThis.String(object.upi_lite_lrn) : undefined,
826
+ upi_lite_status: isSet(object.upi_lite_status) ? globalThis.String(object.upi_lite_status) : undefined,
827
+ channel_code: isSet(object.channel_code) ? globalThis.String(object.channel_code) : undefined,
828
+ mobile: isSet(object.mobile) ? globalThis.String(object.mobile) : undefined,
785
829
  };
786
830
  },
787
831
  toJSON(message) {
@@ -849,6 +893,18 @@ exports.Account = {
849
893
  if (message.onboarding_type !== undefined) {
850
894
  obj.onboarding_type = message.onboarding_type;
851
895
  }
896
+ if (message.upi_lite_lrn !== undefined) {
897
+ obj.upi_lite_lrn = message.upi_lite_lrn;
898
+ }
899
+ if (message.upi_lite_status !== undefined) {
900
+ obj.upi_lite_status = message.upi_lite_status;
901
+ }
902
+ if (message.channel_code !== undefined) {
903
+ obj.channel_code = message.channel_code;
904
+ }
905
+ if (message.mobile !== undefined) {
906
+ obj.mobile = message.mobile;
907
+ }
852
908
  return obj;
853
909
  },
854
910
  create(base) {
@@ -879,6 +935,10 @@ exports.Account = {
879
935
  message.account = object.account ?? undefined;
880
936
  message.status = object.status ?? undefined;
881
937
  message.onboarding_type = object.onboarding_type ?? undefined;
938
+ message.upi_lite_lrn = object.upi_lite_lrn ?? undefined;
939
+ message.upi_lite_status = object.upi_lite_status ?? undefined;
940
+ message.channel_code = object.channel_code ?? undefined;
941
+ message.mobile = object.mobile ?? undefined;
882
942
  return message;
883
943
  },
884
944
  };