@loafmarkets/shared-types 1.0.12 → 1.0.17
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 +2 -2
- package/proto/trading.proto +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loafmarkets/shared-types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
4
4
|
"description": "Shared contracts for Loaf Markets frontend, backend, and matching engine.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"keywords": [],
|
|
21
21
|
"author": "Cohen",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@loafmarkets/shared-types": "1.0.
|
|
23
|
+
"@loafmarkets/shared-types": "1.0.14",
|
|
24
24
|
"zod": "^4.2.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
package/proto/trading.proto
CHANGED
|
@@ -141,6 +141,12 @@ message CancelOrderResponse {
|
|
|
141
141
|
string error_message = 3;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
+
message OrderCancelled {
|
|
145
|
+
uint64 order_id = 1;
|
|
146
|
+
uint32 property_id = 2;
|
|
147
|
+
int64 timestamp = 3;
|
|
148
|
+
}
|
|
149
|
+
|
|
144
150
|
// --------------------------------------------------------------
|
|
145
151
|
// Service 2: TradingService (for Market Maker)
|
|
146
152
|
// --------------------------------------------------------------
|