Merge branch 'main' into pr/867

This commit is contained in:
Ankit Mahato
2025-09-24 00:40:51 +05:30
177 changed files with 9788 additions and 229 deletions

View File

@@ -13,6 +13,7 @@ RequestModel getRequestModelFromHistoryModel(HistoryRequestModel model) {
name: model.metaData.name,
responseStatus: model.httpResponseModel.statusCode,
message: kResponseCodeReasons[model.httpResponseModel.statusCode],
aiRequestModel: model.aiRequestModel,
httpRequestModel: model.httpRequestModel,
httpResponseModel: model.httpResponseModel,
);

View File

@@ -36,6 +36,7 @@ Color getAPIColor(
method,
),
APIType.graphql => kColorGQL,
APIType.ai => Colors.amber,
};
if (brightness == Brightness.dark) {
col = col.toDark;