chore(app): сгенерированный Dart-клиент

just gen-client — покрывает links, cashflow-broker, ручные цены,
imports/pending, goals/income/rebalance/tax/benchmarks.
This commit is contained in:
Dmitry
2026-09-19 10:46:09 +03:00
parent b69bb4a0c9
commit ccd06f32f7
242 changed files with 25877 additions and 3 deletions
@@ -0,0 +1,91 @@
import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for TaxLotOut
void main() {
final TaxLotOut? instance = /* TaxLotOut(...) */ null;
// TODO add properties to the entity
group(TaxLotOut, () {
// int accountId
test('to test the property `accountId`', () async {
// TODO
});
// String accountName
test('to test the property `accountName`', () async {
// TODO
});
// decimal as string
// String costRub
test('to test the property `costRub`', () async {
// TODO
});
// int daysToLdv
test('to test the property `daysToLdv`', () async {
// TODO
});
// int instrumentId
test('to test the property `instrumentId`', () async {
// TODO
});
// DateTime ldvDate
test('to test the property `ldvDate`', () async {
// TODO
});
// bool ldvEligible
test('to test the property `ldvEligible`', () async {
// TODO
});
// int lotId
test('to test the property `lotId`', () async {
// TODO
});
// decimal as string
// String marketValueRub
test('to test the property `marketValueRub`', () async {
// TODO
});
// String name
test('to test the property `name`', () async {
// TODO
});
// DateTime openDate
test('to test the property `openDate`', () async {
// TODO
});
// decimal as string
// String qtyRemaining
test('to test the property `qtyRemaining`', () async {
// TODO
});
// decimal as string
// String taxIfSoldNowRub
test('to test the property `taxIfSoldNowRub`', () async {
// TODO
});
// String ticker
test('to test the property `ticker`', () async {
// TODO
});
// decimal as string
// String unrealizedGainRub
test('to test the property `unrealizedGainRub`', () async {
// TODO
});
});
}