@loafmarkets/shared-types 1.0.29 → 1.0.30
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.
- package/package.json +1 -1
- package/proto/trading.proto +1 -1
package/package.json
CHANGED
package/proto/trading.proto
CHANGED
|
@@ -84,13 +84,13 @@ message TradeExecution {
|
|
|
84
84
|
message PriceLevel {
|
|
85
85
|
double price = 1;
|
|
86
86
|
double quantity = 2;
|
|
87
|
+
repeated uint64 order_ids = 3;
|
|
87
88
|
}
|
|
88
89
|
|
|
89
90
|
message OrderBookSnapshot {
|
|
90
91
|
uint32 property_id = 1;
|
|
91
92
|
repeated PriceLevel bids = 2;
|
|
92
93
|
repeated PriceLevel asks = 3;
|
|
93
|
-
repeated uint64 cancelled_order_ids = 4;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
// Quote book
|