@technova-tech/olive-proto-lib 1.9.6 → 1.9.7

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/admin/admin.js CHANGED
@@ -2816,6 +2816,9 @@ var com;
2816
2816
  if ("roleId" in data && data.roleId != undefined) {
2817
2817
  this.roleId = data.roleId;
2818
2818
  }
2819
+ if ("mfbId" in data && data.mfbId != undefined) {
2820
+ this.mfbId = data.mfbId;
2821
+ }
2819
2822
  }
2820
2823
  }
2821
2824
  get adminId() {
@@ -2860,6 +2863,12 @@ var com;
2860
2863
  set roleId(value) {
2861
2864
  pb_1.Message.setField(this, 7, value);
2862
2865
  }
2866
+ get mfbId() {
2867
+ return pb_1.Message.getFieldWithDefault(this, 8, "");
2868
+ }
2869
+ set mfbId(value) {
2870
+ pb_1.Message.setField(this, 8, value);
2871
+ }
2863
2872
  static fromObject(data) {
2864
2873
  const message = new InviteAdminRequest({});
2865
2874
  if (data.adminId != null) {
@@ -2883,6 +2892,9 @@ var com;
2883
2892
  if (data.roleId != null) {
2884
2893
  message.roleId = data.roleId;
2885
2894
  }
2895
+ if (data.mfbId != null) {
2896
+ message.mfbId = data.mfbId;
2897
+ }
2886
2898
  return message;
2887
2899
  }
2888
2900
  toObject() {
@@ -2908,6 +2920,9 @@ var com;
2908
2920
  if (this.roleId != null) {
2909
2921
  data.roleId = this.roleId;
2910
2922
  }
2923
+ if (this.mfbId != null) {
2924
+ data.mfbId = this.mfbId;
2925
+ }
2911
2926
  return data;
2912
2927
  }
2913
2928
  serialize(w) {
@@ -2926,6 +2941,8 @@ var com;
2926
2941
  writer.writeString(6, this.phone);
2927
2942
  if (this.roleId.length)
2928
2943
  writer.writeString(7, this.roleId);
2944
+ if (this.mfbId.length)
2945
+ writer.writeString(8, this.mfbId);
2929
2946
  if (!w)
2930
2947
  return writer.getResultBuffer();
2931
2948
  }
@@ -2956,6 +2973,9 @@ var com;
2956
2973
  case 7:
2957
2974
  message.roleId = reader.readString();
2958
2975
  break;
2976
+ case 8:
2977
+ message.mfbId = reader.readString();
2978
+ break;
2959
2979
  default: reader.skipField();
2960
2980
  }
2961
2981
  }
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "compile": "tsc -p tsconfig.json"
12
12
  },
13
13
  "license": "MIT",
14
- "version": "1.9.6",
14
+ "version": "1.9.7",
15
15
  "devDependencies": {
16
16
  "@types/google-protobuf": "^3.15.12",
17
17
  "protoc-gen-ts": "^0.8.7",
@@ -924,6 +924,7 @@ export declare namespace com.pkg.admin {
924
924
  middleName?: string;
925
925
  phone?: string;
926
926
  roleId?: string;
927
+ mfbId?: string;
927
928
  });
928
929
  get adminId(): string;
929
930
  set adminId(value: string);
@@ -939,6 +940,8 @@ export declare namespace com.pkg.admin {
939
940
  set phone(value: string);
940
941
  get roleId(): string;
941
942
  set roleId(value: string);
943
+ get mfbId(): string;
944
+ set mfbId(value: string);
942
945
  static fromObject(data: {
943
946
  adminId?: string;
944
947
  email?: string;
@@ -947,6 +950,7 @@ export declare namespace com.pkg.admin {
947
950
  middleName?: string;
948
951
  phone?: string;
949
952
  roleId?: string;
953
+ mfbId?: string;
950
954
  }): InviteAdminRequest;
951
955
  toObject(): {
952
956
  adminId?: string | undefined;
@@ -956,6 +960,7 @@ export declare namespace com.pkg.admin {
956
960
  middleName?: string | undefined;
957
961
  phone?: string | undefined;
958
962
  roleId?: string | undefined;
963
+ mfbId?: string | undefined;
959
964
  };
960
965
  serialize(): Uint8Array;
961
966
  serialize(w: pb_1.BinaryWriter): void;