@aepstore-dev/contracts 1.88.0 → 1.89.0
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/gen/users.d.ts +3 -3
- package/gen/users.ts +3 -3
- package/package.json +1 -1
- package/proto/users.proto +15 -15
package/gen/users.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ export interface User {
|
|
|
40
40
|
bannedUntil: string;
|
|
41
41
|
banReason: string;
|
|
42
42
|
fullName: string;
|
|
43
|
-
|
|
43
|
+
avatarBorder: string;
|
|
44
44
|
}
|
|
45
45
|
export interface BanUserRequest {
|
|
46
46
|
adminId: string;
|
|
@@ -131,7 +131,7 @@ export interface ProfileUser {
|
|
|
131
131
|
username: string;
|
|
132
132
|
avatarUrl: string;
|
|
133
133
|
fullName: string;
|
|
134
|
-
|
|
134
|
+
avatarBorder: string;
|
|
135
135
|
}
|
|
136
136
|
export interface GetPublicProfileRequest {
|
|
137
137
|
username: string;
|
|
@@ -698,7 +698,7 @@ export interface AccountSettingsResponse {
|
|
|
698
698
|
* client can render the current overlay without a second roundtrip.
|
|
699
699
|
*/
|
|
700
700
|
avatarBorderId: string;
|
|
701
|
-
|
|
701
|
+
avatarBorder: string;
|
|
702
702
|
profileColor: string;
|
|
703
703
|
}
|
|
704
704
|
export declare const USERS_V1_PACKAGE_NAME = "users.v1";
|
package/gen/users.ts
CHANGED
|
@@ -54,7 +54,7 @@ export interface User {
|
|
|
54
54
|
bannedUntil: string;
|
|
55
55
|
banReason: string;
|
|
56
56
|
fullName: string;
|
|
57
|
-
|
|
57
|
+
avatarBorder: string;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
export interface BanUserRequest {
|
|
@@ -157,7 +157,7 @@ export interface ProfileUser {
|
|
|
157
157
|
username: string;
|
|
158
158
|
avatarUrl: string;
|
|
159
159
|
fullName: string;
|
|
160
|
-
|
|
160
|
+
avatarBorder: string;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
export interface GetPublicProfileRequest {
|
|
@@ -803,7 +803,7 @@ export interface AccountSettingsResponse {
|
|
|
803
803
|
* client can render the current overlay without a second roundtrip.
|
|
804
804
|
*/
|
|
805
805
|
avatarBorderId: string;
|
|
806
|
-
|
|
806
|
+
avatarBorder: string;
|
|
807
807
|
profileColor: string;
|
|
808
808
|
}
|
|
809
809
|
|
package/package.json
CHANGED
package/proto/users.proto
CHANGED
|
@@ -86,10 +86,10 @@ message User {
|
|
|
86
86
|
string updated_at = 8;
|
|
87
87
|
bool is_banned = 9;
|
|
88
88
|
string banned_until = 10; // ISO 8601, empty = permanent/none
|
|
89
|
-
string ban_reason = 11;
|
|
90
|
-
string full_name = 12;
|
|
91
|
-
string
|
|
92
|
-
}
|
|
89
|
+
string ban_reason = 11;
|
|
90
|
+
string full_name = 12;
|
|
91
|
+
string avatar_border = 13;
|
|
92
|
+
}
|
|
93
93
|
|
|
94
94
|
message BanUserRequest {
|
|
95
95
|
string admin_id = 1;
|
|
@@ -176,13 +176,13 @@ message ProfileStats {
|
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
// Compact public user card for subscriber/subscription lists — no email/ban data.
|
|
179
|
-
message ProfileUser {
|
|
180
|
-
string id = 1;
|
|
181
|
-
string username = 2;
|
|
182
|
-
string avatar_url = 3;
|
|
183
|
-
string full_name = 4;
|
|
184
|
-
string
|
|
185
|
-
}
|
|
179
|
+
message ProfileUser {
|
|
180
|
+
string id = 1;
|
|
181
|
+
string username = 2;
|
|
182
|
+
string avatar_url = 3;
|
|
183
|
+
string full_name = 4;
|
|
184
|
+
string avatar_border = 5;
|
|
185
|
+
}
|
|
186
186
|
|
|
187
187
|
// =================================================================
|
|
188
188
|
// GetPublicProfile
|
|
@@ -864,10 +864,10 @@ message AccountSettingsResponse {
|
|
|
864
864
|
|
|
865
865
|
repeated SocialMedia social_media = 30;
|
|
866
866
|
|
|
867
|
-
// Premium customization snapshot — denormalised border image URL so the
|
|
868
|
-
// client can render the current overlay without a second roundtrip.
|
|
869
|
-
string avatar_border_id = 31;
|
|
870
|
-
string
|
|
867
|
+
// Premium customization snapshot — denormalised border image URL so the
|
|
868
|
+
// client can render the current overlay without a second roundtrip.
|
|
869
|
+
string avatar_border_id = 31;
|
|
870
|
+
string avatar_border = 32;
|
|
871
871
|
reserved 33, 34;
|
|
872
872
|
reserved "animated_avatar_url", "animated_banner_url";
|
|
873
873
|
string profile_color = 35;
|