@@ -1000,8 +1000,11 @@ export interface components {
10001000 * @description Enum of user flags
10011001 */
10021002 flags ?: number | null ;
1003- /** @description Fields to remove from user object */
1004- remove ?: components [ "schemas" ] [ "FieldsUser" ] [ ] | null ;
1003+ /**
1004+ * @description Fields to remove from user object
1005+ * @default []
1006+ */
1007+ remove ?: components [ "schemas" ] [ "FieldsUser" ] [ ] ;
10051008 } ;
10061009 /** @description New user profile data */
10071010 DataUserProfile : {
@@ -1266,8 +1269,11 @@ export interface components {
12661269 analytics ?: boolean | null ;
12671270 /** @description Interactions URL */
12681271 interactions_url ?: string | null ;
1269- /** @description Fields to remove from bot object */
1270- remove ?: components [ "schemas" ] [ "FieldsBot" ] [ ] | null ;
1272+ /**
1273+ * @description Fields to remove from bot object
1274+ * @default []
1275+ */
1276+ remove ?: components [ "schemas" ] [ "FieldsBot" ] [ ] ;
12711277 } ;
12721278 /**
12731279 * @description Optional fields on bot object
@@ -1294,9 +1300,9 @@ export interface components {
12941300 archived ?: boolean | null ;
12951301 /**
12961302 * @description Fields to remove from channel
1297- * @default null
1303+ * @default []
12981304 */
1299- remove ?: components [ "schemas" ] [ "FieldsChannel" ] [ ] | null ;
1305+ remove ?: components [ "schemas" ] [ "FieldsChannel" ] [ ] ;
13001306 } ;
13011307 /**
13021308 * @description Optional fields on channel object
@@ -2042,8 +2048,11 @@ export interface components {
20422048 * Must be enabled in order to show up on [Revolt Discover](https://rvlt.gg).
20432049 */
20442050 analytics ?: boolean | null ;
2045- /** @description Fields to remove from server object */
2046- remove ?: components [ "schemas" ] [ "FieldsServer" ] [ ] | null ;
2051+ /**
2052+ * @description Fields to remove from server object
2053+ * @default []
2054+ */
2055+ remove ?: components [ "schemas" ] [ "FieldsServer" ] [ ] ;
20472056 } ;
20482057 /**
20492058 * @description Optional fields on server object
@@ -2095,8 +2104,11 @@ export interface components {
20952104 roles ?: string [ ] | null ;
20962105 /** @description Timestamp this member is timed out until */
20972106 timeout ?: components [ "schemas" ] [ "ISO8601 Timestamp" ] | null ;
2098- /** @description Fields to remove from channel object */
2099- remove ?: components [ "schemas" ] [ "FieldsMember" ] [ ] | null ;
2107+ /**
2108+ * @description Fields to remove from channel object
2109+ * @default []
2110+ */
2111+ remove ?: components [ "schemas" ] [ "FieldsMember" ] [ ] ;
21002112 } ;
21012113 /**
21022114 * @description Optional fields on server member object
@@ -2156,6 +2168,8 @@ export interface components {
21562168 * @description Ranking position
21572169 *
21582170 * Smaller values take priority.
2171+ *
2172+ * **Removed** - no effect, use the edit server role positions route
21592173 */
21602174 rank ?: number | null ;
21612175 } ;
@@ -2174,8 +2188,11 @@ export interface components {
21742188 * **Removed** - no effect, use the edit server role positions route
21752189 */
21762190 rank ?: number | null ;
2177- /** @description Fields to remove from role object */
2178- remove ?: components [ "schemas" ] [ "FieldsRole" ] [ ] | null ;
2191+ /**
2192+ * @description Fields to remove from role object
2193+ * @default []
2194+ */
2195+ remove ?: components [ "schemas" ] [ "FieldsRole" ] [ ] ;
21792196 } ;
21802197 /**
21812198 * @description Optional fields on server object
0 commit comments