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,73 @@
import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for ValueDay
void main() {
final ValueDay? instance = /* ValueDay(...) */ null;
// TODO add properties to the entity
group(ValueDay, () {
// decimal as string
// String accruedInterestRub
test('to test the property `accruedInterestRub`', () async {
// TODO
});
// decimal as string
// String cashRub
test('to test the property `cashRub`', () async {
// TODO
});
// DateTime d
test('to test the property `d`', () async {
// TODO
});
// decimal as string
// String externalFlowRub
test('to test the property `externalFlowRub`', () async {
// TODO
});
// decimal as string
// String investedNetRub
test('to test the property `investedNetRub`', () async {
// TODO
});
// decimal as string
// String marketValueRub
test('to test the property `marketValueRub`', () async {
// TODO
});
// int missingFxCount
test('to test the property `missingFxCount`', () async {
// TODO
});
// int missingPriceCount
test('to test the property `missingPriceCount`', () async {
// TODO
});
// decimal as string
// String pnlTotalRub
test('to test the property `pnlTotalRub`', () async {
// TODO
});
// int stalePriceCount
test('to test the property `stalePriceCount`', () async {
// TODO
});
// decimal as string
// String totalRub
test('to test the property `totalRub`', () async {
// TODO
});
});
}