@stashfin/grpc 1.2.499 → 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.499",
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",
@@ -60,6 +60,7 @@ export interface Account {
60
60
  upi_lite_status?: string | undefined;
61
61
  channel_code?: string | undefined;
62
62
  mobile?: string | undefined;
63
+ acc_identifier?: string | undefined;
63
64
  }
64
65
  /** CredsAllowed nested message */
65
66
  export interface CredsAllowedList {
@@ -553,6 +553,7 @@ function createBaseAccount() {
553
553
  upi_lite_status: undefined,
554
554
  channel_code: undefined,
555
555
  mobile: undefined,
556
+ acc_identifier: undefined,
556
557
  };
557
558
  }
558
559
  exports.Account = {
@@ -632,6 +633,9 @@ exports.Account = {
632
633
  if (message.mobile !== undefined) {
633
634
  writer.uint32(202).string(message.mobile);
634
635
  }
636
+ if (message.acc_identifier !== undefined) {
637
+ writer.uint32(210).string(message.acc_identifier);
638
+ }
635
639
  return writer;
636
640
  },
637
641
  decode(input, length) {
@@ -791,6 +795,12 @@ exports.Account = {
791
795
  }
792
796
  message.mobile = reader.string();
793
797
  continue;
798
+ case 26:
799
+ if (tag !== 210) {
800
+ break;
801
+ }
802
+ message.acc_identifier = reader.string();
803
+ continue;
794
804
  }
795
805
  if ((tag & 7) === 4 || tag === 0) {
796
806
  break;
@@ -826,6 +836,7 @@ exports.Account = {
826
836
  upi_lite_status: isSet(object.upi_lite_status) ? globalThis.String(object.upi_lite_status) : undefined,
827
837
  channel_code: isSet(object.channel_code) ? globalThis.String(object.channel_code) : undefined,
828
838
  mobile: isSet(object.mobile) ? globalThis.String(object.mobile) : undefined,
839
+ acc_identifier: isSet(object.acc_identifier) ? globalThis.String(object.acc_identifier) : undefined,
829
840
  };
830
841
  },
831
842
  toJSON(message) {
@@ -905,6 +916,9 @@ exports.Account = {
905
916
  if (message.mobile !== undefined) {
906
917
  obj.mobile = message.mobile;
907
918
  }
919
+ if (message.acc_identifier !== undefined) {
920
+ obj.acc_identifier = message.acc_identifier;
921
+ }
908
922
  return obj;
909
923
  },
910
924
  create(base) {
@@ -939,6 +953,7 @@ exports.Account = {
939
953
  message.upi_lite_status = object.upi_lite_status ?? undefined;
940
954
  message.channel_code = object.channel_code ?? undefined;
941
955
  message.mobile = object.mobile ?? undefined;
956
+ message.acc_identifier = object.acc_identifier ?? undefined;
942
957
  return message;
943
958
  },
944
959
  };