@polymarket/clob-client 1.3.1 → 1.3.2
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/types.d.ts +3 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -153,7 +153,7 @@ export interface OpenOrder {
|
|
|
153
153
|
outcome_index: number;
|
|
154
154
|
created_at: number;
|
|
155
155
|
}
|
|
156
|
-
export
|
|
156
|
+
export type OpenOrdersResponse = OpenOrder[];
|
|
157
157
|
export interface FilterParams {
|
|
158
158
|
owner?: string;
|
|
159
159
|
max?: number;
|
|
@@ -210,7 +210,7 @@ export interface Trade {
|
|
|
210
210
|
maker_orders: MakerOrder[];
|
|
211
211
|
transaction_hash: string;
|
|
212
212
|
}
|
|
213
|
-
export
|
|
213
|
+
export type OptionalParams = {
|
|
214
214
|
[query: string]: string;
|
|
215
215
|
};
|
|
216
216
|
export declare enum Chain {
|
|
@@ -243,7 +243,7 @@ export interface TradeNotification {
|
|
|
243
243
|
outcome_index: number;
|
|
244
244
|
action: string;
|
|
245
245
|
timestamp: number;
|
|
246
|
-
transaction_hash:
|
|
246
|
+
transaction_hash: OrderType;
|
|
247
247
|
}
|
|
248
248
|
export interface OrderMarketCancelParams {
|
|
249
249
|
market?: string;
|