chore(app): перегенерировать Dart-клиент

Портфели, создание счетов, ручные события, PATCH инструмента, ScopeCardOut, MetricsStatusOut, логотипы в HoldingOut.
This commit is contained in:
Dmitry
2026-09-19 22:14:07 +03:00
parent f1f336f94f
commit bfe74ca47c
73 changed files with 4615 additions and 22 deletions
@@ -0,0 +1,85 @@
import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for ScopeCardOut
void main() {
final ScopeCardOut? instance = /* ScopeCardOut(...) */ null;
// TODO add properties to the entity
group(ScopeCardOut, () {
// DateTime asOf
test('to test the property `asOf`', () async {
// TODO
});
// decimal as string
// String dayChangePct
test('to test the property `dayChangePct`', () async {
// TODO
});
// decimal as string
// String dayChangeRub
test('to test the property `dayChangeRub`', () async {
// TODO
});
// decimal as string
// String incomeYearPct
test('to test the property `incomeYearPct`', () async {
// TODO
});
// decimal as string
// String incomeYearRub
test('to test the property `incomeYearRub`', () async {
// TODO
});
// decimal as string
// String investedRub
test('to test the property `investedRub`', () async {
// TODO
});
// String kind
test('to test the property `kind`', () async {
// TODO
});
// String name
test('to test the property `name`', () async {
// TODO
});
// decimal as string
// String pnlPct
test('to test the property `pnlPct`', () async {
// TODO
});
// decimal as string
// String pnlRub
test('to test the property `pnlRub`', () async {
// TODO
});
// String scope
test('to test the property `scope`', () async {
// TODO
});
// decimal as string
// String totalRub
test('to test the property `totalRub`', () async {
// TODO
});
// decimal as string
// String xirr
test('to test the property `xirr`', () async {
// TODO
});
});
}