@barchart/portfolio-api-common 1.2.110 → 1.2.111

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.
@@ -317,7 +317,8 @@ module.exports = (() => {
317
317
  .withField('sequence', DataType.NUMBER, true)
318
318
  .withField('type', DataType.forEnum(TransactionType, 'TransactionType'))
319
319
  .withField('date', DataType.DAY)
320
- .withField('value', DataType.DECIMAL)
320
+ .withField('rate', DataType.DECIMAL, true)
321
+ .withField('value', DataType.DECIMAL, true)
321
322
  .withField('force', DataType.BOOLEAN, true)
322
323
  .schema
323
324
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barchart/portfolio-api-common",
3
- "version": "1.2.110",
3
+ "version": "1.2.111",
4
4
  "description": "Common classes used by the Portfolio system",
5
5
  "author": {
6
6
  "name": "Bryan Ingle",
@@ -4758,7 +4758,8 @@ module.exports = (() => {
4758
4758
  .withField('sequence', DataType.NUMBER, true)
4759
4759
  .withField('type', DataType.forEnum(TransactionType, 'TransactionType'))
4760
4760
  .withField('date', DataType.DAY)
4761
- .withField('value', DataType.DECIMAL)
4761
+ .withField('rate', DataType.DECIMAL, true)
4762
+ .withField('value', DataType.DECIMAL, true)
4762
4763
  .withField('force', DataType.BOOLEAN, true)
4763
4764
  .schema
4764
4765
  );