@illalabs/interfaces 0.27.0-canary-dev-5309ae97 → 0.27.0-canary-beta-1f4e4fa3

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.
@@ -2826,6 +2826,9 @@ export declare const HyperliquidExchangeSubmitResponseSchema: z.ZodObject<{
2826
2826
  status: "error" | "filled" | "resting" | "rebuilt";
2827
2827
  success: boolean;
2828
2828
  error?: string | undefined;
2829
+ avgPx?: string | undefined;
2830
+ totalSz?: string | undefined;
2831
+ oid?: number | undefined;
2829
2832
  rebuilt?: {
2830
2833
  nonce: number;
2831
2834
  action: Record<string, unknown>;
@@ -3028,13 +3031,13 @@ export declare const HyperliquidExchangeSubmitResponseSchema: z.ZodObject<{
3028
3031
  hmac?: string | undefined;
3029
3032
  };
3030
3033
  } | undefined;
3031
- oid?: number | undefined;
3032
- avgPx?: string | undefined;
3033
- totalSz?: string | undefined;
3034
3034
  }, {
3035
3035
  status: "error" | "filled" | "resting" | "rebuilt";
3036
3036
  success: boolean;
3037
3037
  error?: string | undefined;
3038
+ avgPx?: string | undefined;
3039
+ totalSz?: string | undefined;
3040
+ oid?: number | undefined;
3038
3041
  rebuilt?: {
3039
3042
  nonce: number;
3040
3043
  action: Record<string, unknown>;
@@ -3237,9 +3240,6 @@ export declare const HyperliquidExchangeSubmitResponseSchema: z.ZodObject<{
3237
3240
  hmac?: string | undefined;
3238
3241
  };
3239
3242
  } | undefined;
3240
- oid?: number | undefined;
3241
- avgPx?: string | undefined;
3242
- totalSz?: string | undefined;
3243
3243
  }>;
3244
3244
  export type HyperliquidSignature = z.infer<typeof HyperliquidSignatureSchema>;
3245
3245
  export type HyperliquidRebuiltOrder = z.infer<typeof HyperliquidRebuiltOrderSchema>;