summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/schemas/MemberChangeProfileSchema.ts5
-rw-r--r--src/util/schemas/UserProfileModifySchema.ts5
2 files changed, 4 insertions, 6 deletions
diff --git a/src/util/schemas/MemberChangeProfileSchema.ts b/src/util/schemas/MemberChangeProfileSchema.ts
index 06505ab9..d2d1481d 100644
--- a/src/util/schemas/MemberChangeProfileSchema.ts
+++ b/src/util/schemas/MemberChangeProfileSchema.ts
@@ -22,8 +22,7 @@ export interface MemberChangeProfileSchema {
 	bio?: string;
 	pronouns?: string;
 	/**
-	 * @minItems 2
-	 * @maxItems 2
+	 * @items.type integer
 	 */
-	theme_colors?: number[]; // puyo: changed from [number, number] because it breaks openapi
+	theme_colors?: [number, number];
 }
diff --git a/src/util/schemas/UserProfileModifySchema.ts b/src/util/schemas/UserProfileModifySchema.ts
index 6f6777dd..3dea257a 100644
--- a/src/util/schemas/UserProfileModifySchema.ts
+++ b/src/util/schemas/UserProfileModifySchema.ts
@@ -22,8 +22,7 @@ export interface UserProfileModifySchema {
 	banner?: string | null;
 	pronouns?: string;
 	/**
-	 * @minItems 2
-	 * @maxItems 2
+	 * @items.type integer
 	 */
-	theme_colors?: number[]; // puyo: changed from [number, number] because it breaks openapi
+	theme_colors?: [number, number];
 }