chore(app): сгенерированный Dart-клиент с методами аналитики

just gen-client после новых роутов.
This commit is contained in:
Dmitry
2026-09-18 14:20:50 +03:00
parent 3727419506
commit 28ff63bdfa
71 changed files with 8303 additions and 30 deletions
@@ -0,0 +1,27 @@
//
// AUTO-GENERATED FILE, DO NOT MODIFY!
//
// ignore_for_file: unused_element
import 'package:json_annotation/json_annotation.dart';
/// How a portfolio can be sliced. Every dimension covers the SAME total — securities plus cash — so the weights of any one of them add up to 1 and the charts agree.
enum AllocationDimension {
@JsonValue(r'asset_class')
assetClass(r'asset_class'),
@JsonValue(r'sector')
sector(r'sector'),
@JsonValue(r'country')
country(r'country'),
@JsonValue(r'currency')
currency(r'currency'),
@JsonValue(r'unknown_default_open_api')
unknownDefaultOpenApi(r'unknown_default_open_api');
const AllocationDimension(this.value);
final String value;
@override
String toString() => value;
}