@aepstore-dev/contracts 1.88.0 → 1.90.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 +4 -3
- package/gen/users.ts +4 -3
- package/package.json +1 -1
- package/proto/users.proto +22 -21
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;
|
|
@@ -245,6 +245,7 @@ export interface GetUsersRequest {
|
|
|
245
245
|
limit: string;
|
|
246
246
|
search: string;
|
|
247
247
|
roleName: string;
|
|
248
|
+
fullName: string;
|
|
248
249
|
}
|
|
249
250
|
export interface GetUsersResponse {
|
|
250
251
|
items: User[];
|
|
@@ -698,7 +699,7 @@ export interface AccountSettingsResponse {
|
|
|
698
699
|
* client can render the current overlay without a second roundtrip.
|
|
699
700
|
*/
|
|
700
701
|
avatarBorderId: string;
|
|
701
|
-
|
|
702
|
+
avatarBorder: string;
|
|
702
703
|
profileColor: string;
|
|
703
704
|
}
|
|
704
705
|
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 {
|
|
@@ -282,6 +282,7 @@ export interface GetUsersRequest {
|
|
|
282
282
|
limit: string;
|
|
283
283
|
search: string;
|
|
284
284
|
roleName: string;
|
|
285
|
+
fullName: string;
|
|
285
286
|
}
|
|
286
287
|
|
|
287
288
|
export interface GetUsersResponse {
|
|
@@ -803,7 +804,7 @@ export interface AccountSettingsResponse {
|
|
|
803
804
|
* client can render the current overlay without a second roundtrip.
|
|
804
805
|
*/
|
|
805
806
|
avatarBorderId: string;
|
|
806
|
-
|
|
807
|
+
avatarBorder: string;
|
|
807
808
|
profileColor: string;
|
|
808
809
|
}
|
|
809
810
|
|
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
|
|
@@ -302,12 +302,13 @@ message UpdateUserRoleRequest {
|
|
|
302
302
|
// GetUsers (paginated)
|
|
303
303
|
// =================================================================
|
|
304
304
|
|
|
305
|
-
message GetUsersRequest {
|
|
306
|
-
string page = 1;
|
|
307
|
-
string limit = 2;
|
|
308
|
-
string search = 3;
|
|
309
|
-
string role_name = 4;
|
|
310
|
-
|
|
305
|
+
message GetUsersRequest {
|
|
306
|
+
string page = 1;
|
|
307
|
+
string limit = 2;
|
|
308
|
+
string search = 3;
|
|
309
|
+
string role_name = 4;
|
|
310
|
+
string full_name = 5;
|
|
311
|
+
}
|
|
311
312
|
|
|
312
313
|
message GetUsersResponse {
|
|
313
314
|
repeated User items = 1;
|
|
@@ -864,10 +865,10 @@ message AccountSettingsResponse {
|
|
|
864
865
|
|
|
865
866
|
repeated SocialMedia social_media = 30;
|
|
866
867
|
|
|
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
|
|
868
|
+
// Premium customization snapshot — denormalised border image URL so the
|
|
869
|
+
// client can render the current overlay without a second roundtrip.
|
|
870
|
+
string avatar_border_id = 31;
|
|
871
|
+
string avatar_border = 32;
|
|
871
872
|
reserved 33, 34;
|
|
872
873
|
reserved "animated_avatar_url", "animated_banner_url";
|
|
873
874
|
string profile_color = 35;
|