@aepstore-dev/contracts 1.49.0 → 1.50.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 -0
- package/gen/users.ts +4 -0
- package/package.json +1 -1
- package/proto/users.proto +4 -0
package/gen/users.d.ts
CHANGED
|
@@ -35,6 +35,8 @@ export interface User {
|
|
|
35
35
|
/** ISO 8601, empty = permanent/none */
|
|
36
36
|
bannedUntil: string;
|
|
37
37
|
banReason: string;
|
|
38
|
+
fullName: string;
|
|
39
|
+
avatarBorderImageUrl: string;
|
|
38
40
|
}
|
|
39
41
|
export interface BanUserRequest {
|
|
40
42
|
adminId: string;
|
|
@@ -118,6 +120,8 @@ export interface ProfileUser {
|
|
|
118
120
|
id: string;
|
|
119
121
|
username: string;
|
|
120
122
|
avatarUrl: string;
|
|
123
|
+
fullName: string;
|
|
124
|
+
avatarBorderImageUrl: string;
|
|
121
125
|
}
|
|
122
126
|
export interface GetPublicProfileRequest {
|
|
123
127
|
username: string;
|
package/gen/users.ts
CHANGED
|
@@ -48,6 +48,8 @@ export interface User {
|
|
|
48
48
|
/** ISO 8601, empty = permanent/none */
|
|
49
49
|
bannedUntil: string;
|
|
50
50
|
banReason: string;
|
|
51
|
+
fullName: string;
|
|
52
|
+
avatarBorderImageUrl: string;
|
|
51
53
|
}
|
|
52
54
|
|
|
53
55
|
export interface BanUserRequest {
|
|
@@ -143,6 +145,8 @@ export interface ProfileUser {
|
|
|
143
145
|
id: string;
|
|
144
146
|
username: string;
|
|
145
147
|
avatarUrl: string;
|
|
148
|
+
fullName: string;
|
|
149
|
+
avatarBorderImageUrl: string;
|
|
146
150
|
}
|
|
147
151
|
|
|
148
152
|
export interface GetPublicProfileRequest {
|
package/package.json
CHANGED
package/proto/users.proto
CHANGED
|
@@ -83,6 +83,8 @@ message User {
|
|
|
83
83
|
bool is_banned = 9;
|
|
84
84
|
string banned_until = 10; // ISO 8601, empty = permanent/none
|
|
85
85
|
string ban_reason = 11;
|
|
86
|
+
string full_name = 12;
|
|
87
|
+
string avatar_border_image_url = 13;
|
|
86
88
|
}
|
|
87
89
|
|
|
88
90
|
message BanUserRequest {
|
|
@@ -172,6 +174,8 @@ message ProfileUser {
|
|
|
172
174
|
string id = 1;
|
|
173
175
|
string username = 2;
|
|
174
176
|
string avatar_url = 3;
|
|
177
|
+
string full_name = 4;
|
|
178
|
+
string avatar_border_image_url = 5;
|
|
175
179
|
}
|
|
176
180
|
|
|
177
181
|
// =================================================================
|