@structbuild/sdk 0.3.10-staging.8 → 0.4.0
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/dist/generated/polymarket.d.ts +5 -2
- package/dist/generated/ws-alerts.d.ts +3 -2
- package/dist/generated/ws.d.ts +1869 -60
- package/dist/types/index.d.ts +1 -1
- package/dist/types/ws.d.ts +3 -1
- package/package.json +1 -1
|
@@ -2330,6 +2330,11 @@ export interface components {
|
|
|
2330
2330
|
* trades and may be `0x0000…` for V2 trades placed without a builder code.
|
|
2331
2331
|
*/
|
|
2332
2332
|
builder_code?: string | null;
|
|
2333
|
+
/**
|
|
2334
|
+
* Format: double
|
|
2335
|
+
* @description Builder fee in USDC. Absent when no builder code is attached.
|
|
2336
|
+
*/
|
|
2337
|
+
builder_fee?: number | null;
|
|
2333
2338
|
};
|
|
2334
2339
|
OrderbookHistoryRow: {
|
|
2335
2340
|
/** Format: int64 */
|
|
@@ -5115,8 +5120,6 @@ export interface operations {
|
|
|
5115
5120
|
from?: number;
|
|
5116
5121
|
/** @description End timestamp (ms) */
|
|
5117
5122
|
to?: number;
|
|
5118
|
-
/** @description Return all-time trades, not just last 30 days (default: false) */
|
|
5119
|
-
all?: boolean;
|
|
5120
5123
|
/** @description Results per page (default: 10, max: 250) */
|
|
5121
5124
|
limit?: number;
|
|
5122
5125
|
/** @description Pagination offset (number of results to skip). Takes precedence over pagination_key. */
|
|
@@ -4063,8 +4063,9 @@ export interface components {
|
|
|
4063
4063
|
* "log_index": 0,
|
|
4064
4064
|
* "block_index": 0,
|
|
4065
4065
|
* "oracle_contract": "0x0000000000000000000000000000000000000000",
|
|
4066
|
-
* "condition_id": "",
|
|
4067
|
-
* "settled_price": 1000000000000000000
|
|
4066
|
+
* "condition_id": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
|
4067
|
+
* "settled_price": 1000000000000000000,
|
|
4068
|
+
* "proposed_outcome": "Yes"
|
|
4068
4069
|
* }
|
|
4069
4070
|
* }
|
|
4070
4071
|
*/
|