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,36 @@
import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for InstrumentDetail
void main() {
final InstrumentDetail? instance = /* InstrumentDetail(...) */ null;
// TODO add properties to the entity
group(InstrumentDetail, () {
// List<EventOut> events
test('to test the property `events`', () async {
// TODO
});
// HoldingOut holding
test('to test the property `holding`', () async {
// TODO
});
// InstrumentOut instrument
test('to test the property `instrument`', () async {
// TODO
});
// List<LotOut> lots
test('to test the property `lots`', () async {
// TODO
});
// List<PricePoint> prices
test('to test the property `prices`', () async {
// TODO
});
});
}