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,71 @@
import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for ManualEventCreate
void main() {
final ManualEventCreate? instance = /* ManualEventCreate(...) */ null;
// TODO add properties to the entity
group(ManualEventCreate, () {
// int accountId
test('to test the property `accountId`', () async {
// TODO
});
// decimal as string
// String accruedInterest
test('to test the property `accruedInterest`', () async {
// TODO
});
// decimal as string
// String amount
test('to test the property `amount`', () async {
// TODO
});
// String currency
test('to test the property `currency`', () async {
// TODO
});
// String description
test('to test the property `description`', () async {
// TODO
});
// decimal as string
// String fee
test('to test the property `fee`', () async {
// TODO
});
// int instrumentId
test('to test the property `instrumentId`', () async {
// TODO
});
// EventKind kind
test('to test the property `kind`', () async {
// TODO
});
// decimal as string
// String price
test('to test the property `price`', () async {
// TODO
});
// decimal as string
// String quantity
test('to test the property `quantity`', () async {
// TODO
});
// DateTime tradeDate
test('to test the property `tradeDate`', () async {
// TODO
});
});
}