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,21 @@
import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for PortfolioCreate
void main() {
final PortfolioCreate? instance = /* PortfolioCreate(...) */ null;
// TODO add properties to the entity
group(PortfolioCreate, () {
// List<int> accountIds
test('to test the property `accountIds`', () async {
// TODO
});
// String name
test('to test the property `name`', () async {
// TODO
});
});
}