@0xmonaco/types 0.8.5 → 0.8.7

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.
@@ -259,6 +259,7 @@ export interface ListFundingHistoryResponse {
259
259
  }
260
260
  export interface OpenInterest {
261
261
  trading_pair_id: string;
262
+ open_interest?: string;
262
263
  open_interest_base: string;
263
264
  open_interest_notional: string;
264
265
  updated_at: string;
@@ -116,7 +116,7 @@ export interface GetUserBalancesParams {
116
116
  */
117
117
  export interface GetPaginatedUserMovementsResponse {
118
118
  /**
119
- * Latest movements from Redis cache (real-time, instant updates).
119
+ * Latest movements from the live engine cache (real-time, instant updates).
120
120
  * These are the most recent movements that may not yet be in PostgreSQL.
121
121
  * Only populated on page 1; empty for subsequent pages.
122
122
  */
@@ -141,7 +141,7 @@ export interface GetPaginatedOrdersParams {
141
141
  * Response from getting paginated orders
142
142
  */
143
143
  export interface GetPaginatedOrdersResponse {
144
- /** Latest orders from Redis cache (real-time, instant updates).
144
+ /** Latest orders from the live engine cache (real-time, instant updates).
145
145
  * These are the most recently created/updated orders that may not yet be in PostgreSQL.
146
146
  * Only populated on page 1.
147
147
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xmonaco/types",
3
- "version": "0.8.5",
3
+ "version": "0.8.7",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,7 +20,7 @@
20
20
  "lint": "biome lint ."
21
21
  },
22
22
  "dependencies": {
23
- "@0xmonaco/contracts": "0.8.5",
23
+ "@0xmonaco/contracts": "0.8.7",
24
24
  "zod": "^4.1.12"
25
25
  },
26
26
  "peerDependencies": {