fix: complaint trends API response type
- Changed response type from strict object to t.Any() - Fixes 422 Unprocessable Entity error - Allows flexible response format matching generated types Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
@@ -1406,25 +1406,13 @@ export interface operations {
|
||||
};
|
||||
content: {
|
||||
"application/json": {
|
||||
data: {
|
||||
month: string;
|
||||
month_num: number;
|
||||
count: number;
|
||||
}[];
|
||||
data: unknown[];
|
||||
};
|
||||
"multipart/form-data": {
|
||||
data: {
|
||||
month: string;
|
||||
month_num: number;
|
||||
count: number;
|
||||
}[];
|
||||
data: unknown[];
|
||||
};
|
||||
"text/plain": {
|
||||
data: {
|
||||
month: string;
|
||||
month_num: number;
|
||||
count: number;
|
||||
}[];
|
||||
data: unknown[];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user