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,33 @@
import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for PricePoint
void main() {
final PricePoint? instance = /* PricePoint(...) */ null;
// TODO add properties to the entity
group(PricePoint, () {
// decimal as string
// String accruedInterest
test('to test the property `accruedInterest`', () async {
// TODO
});
// decimal as string
// String close
test('to test the property `close`', () async {
// TODO
});
// String currency
test('to test the property `currency`', () async {
// TODO
});
// DateTime d
test('to test the property `d`', () async {
// TODO
});
});
}