@barchart/portfolio-api-common 1.2.38 → 1.2.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -198,7 +198,6 @@ module.exports = (() => {
|
|
|
198
198
|
|
|
199
199
|
associateTypes(InstrumentType.CASH, TransactionType.DEPOSIT, true);
|
|
200
200
|
associateTypes(InstrumentType.CASH, TransactionType.WITHDRAWAL, true);
|
|
201
|
-
associateTypes(InstrumentType.CASH, TransactionType.FEE, true);
|
|
202
201
|
associateTypes(InstrumentType.CASH, TransactionType.DEBIT, false);
|
|
203
202
|
associateTypes(InstrumentType.CASH, TransactionType.CREDIT, false);
|
|
204
203
|
|
|
@@ -291,7 +291,6 @@ module.exports = (() => {
|
|
|
291
291
|
.withField('instrument.currency', DataType.forEnum(Currency, 'Currency'), true)
|
|
292
292
|
.withField('date', DataType.DAY)
|
|
293
293
|
.withField('amount', DataType.DECIMAL)
|
|
294
|
-
.withField('fee', DataType.DECIMAL, true)
|
|
295
294
|
.withField('force', DataType.BOOLEAN, true)
|
|
296
295
|
.schema
|
|
297
296
|
);
|
|
@@ -305,7 +304,6 @@ module.exports = (() => {
|
|
|
305
304
|
.withField('instrument.currency', DataType.forEnum(Currency, 'Currency'), true)
|
|
306
305
|
.withField('date', DataType.DAY)
|
|
307
306
|
.withField('amount', DataType.DECIMAL)
|
|
308
|
-
.withField('fee', DataType.DECIMAL, true)
|
|
309
307
|
.withField('force', DataType.BOOLEAN, true)
|
|
310
308
|
.schema
|
|
311
309
|
);
|
package/package.json
CHANGED
package/test/SpecRunner.js
CHANGED
|
@@ -1226,7 +1226,6 @@ module.exports = (() => {
|
|
|
1226
1226
|
|
|
1227
1227
|
associateTypes(InstrumentType.CASH, TransactionType.DEPOSIT, true);
|
|
1228
1228
|
associateTypes(InstrumentType.CASH, TransactionType.WITHDRAWAL, true);
|
|
1229
|
-
associateTypes(InstrumentType.CASH, TransactionType.FEE, true);
|
|
1230
1229
|
associateTypes(InstrumentType.CASH, TransactionType.DEBIT, false);
|
|
1231
1230
|
associateTypes(InstrumentType.CASH, TransactionType.CREDIT, false);
|
|
1232
1231
|
|