@barchart/portfolio-api-common 1.3.23 → 1.3.24
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.
|
@@ -130,6 +130,7 @@ module.exports = (() => {
|
|
|
130
130
|
const complete = new TransactionSchema(SchemaBuilder.withName('complete')
|
|
131
131
|
.withField('portfolio', DataType.STRING)
|
|
132
132
|
.withField('position', DataType.STRING)
|
|
133
|
+
.withField('transaction', DataType.STRING)
|
|
133
134
|
.withField('sequence', DataType.NUMBER)
|
|
134
135
|
.withField('type', DataType.forEnum(TransactionType, 'TransactionType'))
|
|
135
136
|
.withField('date', DataType.DAY)
|
|
@@ -179,6 +180,7 @@ module.exports = (() => {
|
|
|
179
180
|
const client = new TransactionSchema(SchemaBuilder.withName('client')
|
|
180
181
|
.withField('portfolio', DataType.STRING)
|
|
181
182
|
.withField('position', DataType.STRING)
|
|
183
|
+
.withField('transaction', DataType.STRING)
|
|
182
184
|
.withField('sequence', DataType.NUMBER)
|
|
183
185
|
.withField('type', DataType.forEnum(TransactionType, 'TransactionType'))
|
|
184
186
|
.withField('date', DataType.DAY)
|
package/package.json
CHANGED
package/test/SpecRunner.js
CHANGED
|
@@ -4980,6 +4980,7 @@ module.exports = (() => {
|
|
|
4980
4980
|
const complete = new TransactionSchema(SchemaBuilder.withName('complete')
|
|
4981
4981
|
.withField('portfolio', DataType.STRING)
|
|
4982
4982
|
.withField('position', DataType.STRING)
|
|
4983
|
+
.withField('transaction', DataType.STRING)
|
|
4983
4984
|
.withField('sequence', DataType.NUMBER)
|
|
4984
4985
|
.withField('type', DataType.forEnum(TransactionType, 'TransactionType'))
|
|
4985
4986
|
.withField('date', DataType.DAY)
|
|
@@ -5029,6 +5030,7 @@ module.exports = (() => {
|
|
|
5029
5030
|
const client = new TransactionSchema(SchemaBuilder.withName('client')
|
|
5030
5031
|
.withField('portfolio', DataType.STRING)
|
|
5031
5032
|
.withField('position', DataType.STRING)
|
|
5033
|
+
.withField('transaction', DataType.STRING)
|
|
5032
5034
|
.withField('sequence', DataType.NUMBER)
|
|
5033
5035
|
.withField('type', DataType.forEnum(TransactionType, 'TransactionType'))
|
|
5034
5036
|
.withField('date', DataType.DAY)
|