@acta-markets/ts-sdk 0.0.14-beta → 0.0.15-beta

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.
@@ -741,7 +741,7 @@ export type MakerPositionInfo = {
741
741
  quantity: WsU64;
742
742
  price: WsU64;
743
743
  /** Net premium amount from on-chain position state (quote token base units). */
744
- total_premium?: WsU64;
744
+ total_premium: WsU64;
745
745
  collateral_locked: WsU64;
746
746
  created_at: WsU64;
747
747
  expiry_ts: WsU64;
@@ -1014,7 +1014,7 @@ export type PositionInfo = {
1014
1014
  quantity: WsU64;
1015
1015
  price: WsU64;
1016
1016
  /** Net premium amount from on-chain position state (quote token base units). */
1017
- total_premium?: WsU64;
1017
+ total_premium: WsU64;
1018
1018
  created_at: WsU64;
1019
1019
  /** Market expiry timestamp (unix seconds), sourced from markets table join. */
1020
1020
  expiry_ts: WsU64;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acta-markets/ts-sdk",
3
- "version": "0.0.14-beta",
3
+ "version": "0.0.15-beta",
4
4
  "description": "TypeScript SDK for Acta Protocol",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",