feat: add AI recommendations flow for tenders
Implement company AI onboarding/recommendation models, services, repository, and tender UI integration with supporting tests. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'recommend_response.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_RecommendResponse _$RecommendResponseFromJson(Map<String, dynamic> json) =>
|
||||
_RecommendResponse(
|
||||
data:
|
||||
(json['data'] as List<dynamic>?)
|
||||
?.map(
|
||||
(e) => RecommendationItem.fromJson(e as Map<String, dynamic>),
|
||||
)
|
||||
.toList(),
|
||||
error:
|
||||
json['error'] == null
|
||||
? null
|
||||
: ErrorModel.fromJson(json['error'] as Map<String, dynamic>),
|
||||
message: json['message'] as String?,
|
||||
success: json['success'] as bool?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$RecommendResponseToJson(_RecommendResponse instance) =>
|
||||
<String, dynamic>{
|
||||
'data': instance.data?.map((e) => e.toJson()).toList(),
|
||||
'error': instance.error?.toJson(),
|
||||
'message': instance.message,
|
||||
'success': instance.success,
|
||||
};
|
||||
Reference in New Issue
Block a user