This commit is contained in:
Ahmed Bouhuolia
2026-05-27 23:28:17 +02:00
parent 4a84d5996e
commit d7d1783eee
7 changed files with 146 additions and 50 deletions

View File

@@ -8375,6 +8375,17 @@ export interface components {
*/
nonDeletableIds: number[];
};
CustomersListResponseDto: {
data: components["schemas"]["CustomerResponseDto"][];
pagination: {
/** @example 1 */
page: number;
/** @example 12 */
pageSize: number;
/** @example 42 */
total: number;
};
};
CustomerResponseDto: {
/** @example 1500 */
balance: number;
@@ -19109,7 +19120,7 @@ export interface operations {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["CustomerResponseDto"][];
"application/json": components["schemas"]["CustomersListResponseDto"];
};
};
};