Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit 7f0a864

Browse files
committed
Adding GET_FRIEND_STATE enum
1 parent 2e7ed15 commit 7f0a864

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

pbjs/ws.bundle.js

+7
Original file line numberDiff line numberDiff line change
@@ -993,6 +993,7 @@ $root.proto = (function() {
993993
case 42:
994994
case 43:
995995
case 44:
996+
case 45:
996997
break;
997998
}
998999
if (message.data != null && message.hasOwnProperty("data"))
@@ -1199,6 +1200,10 @@ $root.proto = (function() {
11991200
case 44:
12001201
message.type = 44;
12011202
break;
1203+
case "GET_FRIEND_STATE":
1204+
case 45:
1205+
message.type = 45;
1206+
break;
12021207
}
12031208
if (object.data != null)
12041209
if (typeof object.data === "string")
@@ -1329,6 +1334,7 @@ $root.proto = (function() {
13291334
* @property {number} CALLLING=42 CALLLING value
13301335
* @property {number} DECLINED=43 DECLINED value
13311336
* @property {number} ANSWERED=44 ANSWERED value
1337+
* @property {number} GET_FRIEND_STATE=45 GET_FRIEND_STATE value
13321338
*/
13331339
proto.EMSG = (function() {
13341340
var valuesById = {}, values = Object.create(valuesById);
@@ -1377,6 +1383,7 @@ $root.proto = (function() {
13771383
values[valuesById[42] = "CALLLING"] = 42;
13781384
values[valuesById[43] = "DECLINED"] = 43;
13791385
values[valuesById[44] = "ANSWERED"] = 44;
1386+
values[valuesById[45] = "GET_FRIEND_STATE"] = 45;
13801387
return values;
13811388
})();
13821389

proto/ws.enums.pb.go

+7-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protofiles/ws.enums.proto

+2
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,6 @@ enum EMSG {
6767
CALLLING = 42;
6868
DECLINED = 43;
6969
ANSWERED = 44;
70+
71+
GET_FRIEND_STATE = 45;
7072
}

0 commit comments

Comments
 (0)