ffapis 1.5.2
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/README.md +46 -0
- package/config/credentials/IND.yaml +219 -0
- package/config/credentials/RU.yaml +84 -0
- package/config/credentials/SG.yaml +220 -0
- package/config/settings.yaml +28 -0
- package/data/items.json +153075 -0
- package/dist/index.d.mts +352 -0
- package/dist/index.d.ts +352 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1300 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1120 -0
- package/dist/types/index.d.ts +147 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +11 -0
- package/dist/types/index.js.map +1 -0
- package/package.json +82 -0
- package/proto/MajorLogin.proto +173 -0
- package/proto/MajorRegister.proto +22 -0
- package/proto/PlayerCSStats.proto +43 -0
- package/proto/PlayerPersonalShow.proto +641 -0
- package/proto/PlayerStats.proto +38 -0
- package/proto/SearchAccountByName.proto +13 -0
- package/proto/SetPlayerGalleryShowInfo.proto +70 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package SetPlayerGalleryShowInfo;
|
|
4
|
+
|
|
5
|
+
message request {
|
|
6
|
+
uint32 version = 1;
|
|
7
|
+
repeated GalleryShowInfo info_item = 2;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
message request_single {
|
|
11
|
+
uint32 version = 1;
|
|
12
|
+
GalleryShowInfo info_item = 2;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
message GalleryShowInfo {
|
|
16
|
+
GalleryShow_InfoType info_type = 1;
|
|
17
|
+
repeated GalleryShowInfoItem items = 2;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
enum GalleryShow_InfoType {
|
|
21
|
+
InfoType_NONE = 0;
|
|
22
|
+
InfoType_ITEM = 1;
|
|
23
|
+
InfoType_BATTLEPASS = 2;
|
|
24
|
+
InfoType_ACHIEVEMENT = 3;
|
|
25
|
+
InfoType_WEAPONEXP = 4;
|
|
26
|
+
InfoType_SIGNATURE = 5;
|
|
27
|
+
InfoType_BUDDYINFO = 6;
|
|
28
|
+
InfoType_RANKINGSTATS = 7;
|
|
29
|
+
InfoType_LEADERBOARDTITLE = 8;
|
|
30
|
+
InfoType_CLANINFO = 9;
|
|
31
|
+
InfoType_CLANHISOTRYLEADERBOARD = 10;
|
|
32
|
+
InfoType_ACHIEVEMENT_STATS = 11;
|
|
33
|
+
InfoType_BADGE = 12;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
message GalleryShowInfoItem {
|
|
37
|
+
uint32 type = 1;
|
|
38
|
+
uint32 sub_type = 2;
|
|
39
|
+
bool is_extra = 3;
|
|
40
|
+
uint32 position_x = 4;
|
|
41
|
+
uint32 position_y = 5;
|
|
42
|
+
GalleryShowExtraInfo extra_info = 6;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
message GalleryShowExtraInfo {
|
|
46
|
+
string region = 1;
|
|
47
|
+
uint32 level = 2;
|
|
48
|
+
uint32 rank = 3;
|
|
49
|
+
uint32 max_level = 4;
|
|
50
|
+
uint64 friend_id = 5;
|
|
51
|
+
uint32 item_id = 6;
|
|
52
|
+
uint32 item_extra_id = 7;
|
|
53
|
+
uint32 value = 8;
|
|
54
|
+
string key = 9;
|
|
55
|
+
int64 expire_time = 10;
|
|
56
|
+
uint64 leaderboard_id = 11;
|
|
57
|
+
uint32 weapon_id = 12;
|
|
58
|
+
uint32 title_cfg_id = 13;
|
|
59
|
+
uint64 clan_id = 14;
|
|
60
|
+
int64 create_time = 15;
|
|
61
|
+
uint32 series_id = 16;
|
|
62
|
+
uint32 num_id = 17;
|
|
63
|
+
string clan_name = 18;
|
|
64
|
+
uint32 clan_level = 19;
|
|
65
|
+
uint32 clan_frame_id = 20;
|
|
66
|
+
uint32 clan_badge_id = 21;
|
|
67
|
+
bool clan_use_custom_badge = 22;
|
|
68
|
+
string clan_custom_badge = 23;
|
|
69
|
+
uint32 clan_glory_num = 24;
|
|
70
|
+
}
|