@0xmonaco/types 0.8.14 → 0.8.15

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.
@@ -244,17 +244,17 @@ export const ReplaceOrderSchema = z.object({
244
244
  * Validates parameters for fetching paginated orders.
245
245
  * Matches the getPaginatedOrders method signature which accepts:
246
246
  * - status: OrderStatus (optional filter)
247
- * - trading_pair_id: trading pair UUID (optional filter)
247
+ * - tradingPairId: trading pair UUID (optional filter)
248
248
  * - page: number (default: 1)
249
- * - page_size: number (default: 10, max: 100)
249
+ * - pageSize: number (default: 10, max: 100)
250
250
  */
251
251
  export const GetPaginatedOrdersSchema = z.object({
252
252
  status: z.enum(ORDER_STATUS_VALUES).optional(),
253
- trading_pair_id: UUIDSchema.optional(),
254
- trading_mode: TradingModeSchema.optional(),
255
- margin_account_id: UUIDSchema.optional(),
253
+ tradingPairId: UUIDSchema.optional(),
254
+ tradingMode: TradingModeSchema.optional(),
255
+ marginAccountId: UUIDSchema.optional(),
256
256
  page: z.number().int().min(1, "Page must be at least 1").optional(),
257
- page_size: z.number().int().min(1, "Page size must be at least 1").max(100, "Page size cannot exceed 100").optional(),
257
+ pageSize: z.number().int().min(1, "Page size must be at least 1").max(100, "Page size cannot exceed 100").optional(),
258
258
  });
259
259
  export const ConditionalOrderConditionTypeSchema = z.enum(["STOP_LOSS", "TAKE_PROFIT"], {
260
260
  message: 'conditionType must be "STOP_LOSS" or "TAKE_PROFIT"',
@@ -272,11 +272,11 @@ export const CancelConditionalOrderSchema = z.object({
272
272
  conditionalOrderId: UUIDSchema,
273
273
  });
274
274
  export const ListConditionalOrdersSchema = z.object({
275
- margin_account_id: UUIDSchema.optional(),
276
- trading_pair_id: UUIDSchema.optional(),
275
+ marginAccountId: UUIDSchema.optional(),
276
+ tradingPairId: UUIDSchema.optional(),
277
277
  state: ConditionalOrderStateSchema.optional(),
278
278
  page: z.number().int().min(1, "Page must be at least 1").optional(),
279
- page_size: z.number().int().min(1, "Page size must be at least 1").max(100, "Page size cannot exceed 100").optional(),
279
+ pageSize: z.number().int().min(1, "Page size must be at least 1").max(100, "Page size cannot exceed 100").optional(),
280
280
  });
281
281
  /**
282
282
  * Single batch create order item validation schema
@@ -12,20 +12,20 @@ import type { BaseAPI } from "../api";
12
12
  /** Body for a whitelist application. */
13
13
  export interface SubmitWhitelistRequest {
14
14
  /** Applicant wallet address (0x-prefixed, 40 hex chars) */
15
- wallet_address: string;
15
+ walletAddress: string;
16
16
  /** Applicant email address */
17
17
  email: string;
18
18
  /** Applicant Twitter/X username (1-15 chars) */
19
- twitter_username?: string;
19
+ twitterUsername?: string;
20
20
  /** Applicant Telegram username (5-32 chars) */
21
- telegram_username?: string;
21
+ telegramUsername?: string;
22
22
  }
23
23
  /** Response to a whitelist application. */
24
24
  export interface SubmitWhitelistResponse {
25
25
  /** Human-readable status message */
26
26
  message: string;
27
27
  /** Created user UUID (pending approval) */
28
- user_id: string | null;
28
+ userId: string | null;
29
29
  }
30
30
  /**
31
31
  * Whitelist API interface. The submit endpoint is public (no auth required).
@@ -10,6 +10,6 @@
10
10
  * hand-written SDK surface. CI regenerates it and fails on a diff, identical to
11
11
  * the `schema.ts` wire-types tripwire (MON-1476), so it can never go stale.
12
12
  */
13
- export declare const OPERATION_IDS: readonly ["add_position_margin", "attach_position_tp_sl", "authenticate_backend", "batch_cancel_all", "batch_cancel_all_by_pair", "batch_cancel_orders", "batch_close_all_positions", "batch_create_orders", "batch_replace_orders", "cancel_conditional_order", "cancel_order", "close_position", "create_challenge", "create_delegated_session", "create_order", "create_sub_account_limit", "delete_sub_account_limit", "get_application_config", "get_application_stats", "get_available_collateral", "get_candles", "get_funding_state", "get_index_price", "get_margin_account_movements", "get_margin_account_summary", "get_mark_price", "get_market_metadata", "get_market_stats", "get_open_interest", "get_order_by_id", "get_orderbook_snapshot", "get_orders", "get_parent_margin_account_movements", "get_parent_margin_account_summary", "get_perp_market_config", "get_perp_market_summary", "get_portfolio_chart", "get_portfolio_stats", "get_position", "get_position_risk", "get_screener", "get_sub_account_limits", "get_trade_by_id", "get_trades", "get_trading_pair_by_id", "get_user_balance_by_asset", "get_user_balances", "get_user_movements", "get_user_profile", "get_user_trades", "get_withdrawal", "health_check", "initiate_withdrawal", "list_application_balances", "list_application_movements", "list_application_orders", "list_application_users", "list_conditional_orders", "list_delegated_agent_owners", "list_delegated_agents", "list_funding_history", "list_funding_payments", "list_margin_accounts", "list_position_history", "list_positions", "list_sub_accounts_with_balances", "list_trading_pairs", "mint_tokens", "reduce_position_margin", "refresh_session", "replace_order", "revoke_delegated_agent", "revoke_session", "simulate_fees", "simulate_order_risk", "simulate_parent_margin_order_risk", "simulate_risk_bucket_order_risk", "submit_whitelist", "transfer_collateral_from_margin_account", "transfer_collateral_from_parent_margin_account", "transfer_collateral_to_margin_account", "transfer_collateral_to_parent_margin_account", "transfer_collateral_to_risk_bucket", "update_sub_account_limit", "upsert_delegated_agent", "verify_signature"];
13
+ export declare const OPERATION_IDS: readonly ["add_position_margin", "attach_position_tp_sl", "authenticate_backend", "batch_cancel_all", "batch_cancel_all_by_pair", "batch_cancel_orders", "batch_close_all_positions", "batch_create_orders", "batch_replace_orders", "cancel_conditional_order", "cancel_order", "close_position", "create_challenge", "create_delegated_session", "create_order", "create_sub_account_limit", "delete_sub_account_limit", "get_application_config", "get_application_stats", "get_available_collateral", "get_candles", "get_funding_state", "get_index_price", "get_margin_account_movements", "get_margin_account_summary", "get_mark_price", "get_market_metadata", "get_market_stats", "get_open_interest", "get_order_by_id", "get_orderbook_snapshot", "get_orders", "get_parent_margin_account_movements", "get_parent_margin_account_summary", "get_perp_market_config", "get_perp_market_summary", "get_portfolio_chart", "get_portfolio_stats", "get_position", "get_position_risk", "get_screener", "get_sub_account_limits", "get_trade_by_id", "get_trades", "get_trading_pair_by_id", "get_user_balance_by_asset", "get_user_balances", "get_user_movements", "get_user_profile", "get_user_trades", "get_withdrawal", "health_check", "initiate_withdrawal", "list_application_balances", "list_application_movements", "list_application_orders", "list_application_users", "list_conditional_orders", "list_delegated_agent_owners", "list_delegated_agents", "list_funding_history", "list_funding_payments", "list_margin_accounts", "list_pending_withdrawals", "list_position_history", "list_positions", "list_sub_accounts_with_balances", "list_trading_pairs", "mint_tokens", "reduce_position_margin", "refresh_session", "replace_order", "revoke_delegated_agent", "revoke_session", "simulate_fees", "simulate_order_risk", "simulate_parent_margin_order_risk", "simulate_risk_bucket_order_risk", "submit_whitelist", "transfer_collateral_from_margin_account", "transfer_collateral_from_parent_margin_account", "transfer_collateral_to_margin_account", "transfer_collateral_to_parent_margin_account", "transfer_collateral_to_risk_bucket", "update_sub_account_limit", "upsert_delegated_agent", "verify_signature"];
14
14
  /** Union of every OpenAPI operationId in the spec. */
15
15
  export type OperationId = (typeof OPERATION_IDS)[number];
@@ -74,6 +74,7 @@ export const OPERATION_IDS = [
74
74
  "list_funding_history",
75
75
  "list_funding_payments",
76
76
  "list_margin_accounts",
77
+ "list_pending_withdrawals",
77
78
  "list_position_history",
78
79
  "list_positions",
79
80
  "list_sub_accounts_with_balances",