@usherlabs/cex-broker 0.2.4 → 0.2.6
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/commands/cli.js +122 -6
- package/dist/index.js +123 -7
- package/dist/index.js.map +4 -4
- package/dist/schemas/action-payloads.d.ts +5 -0
- package/package.json +1 -1
|
@@ -40,6 +40,10 @@ export declare const CancelOrderPayloadSchema: z.ZodObject<{
|
|
|
40
40
|
orderId: z.ZodString;
|
|
41
41
|
params: z.ZodDefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>>;
|
|
42
42
|
}, z.core.$strip>;
|
|
43
|
+
export declare const FetchFeesPayloadSchema: z.ZodObject<{
|
|
44
|
+
includeAllFees: z.ZodDefault<z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>>;
|
|
45
|
+
includeFundingFees: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
46
|
+
}, z.core.$strip>;
|
|
43
47
|
export type DepositPayload = z.infer<typeof DepositPayloadSchema>;
|
|
44
48
|
export type CallPayload = z.infer<typeof CallPayloadSchema>;
|
|
45
49
|
export type FetchDepositAddressesPayload = z.infer<typeof FetchDepositAddressesPayloadSchema>;
|
|
@@ -47,3 +51,4 @@ export type WithdrawPayload = z.infer<typeof WithdrawPayloadSchema>;
|
|
|
47
51
|
export type CreateOrderPayload = z.infer<typeof CreateOrderPayloadSchema>;
|
|
48
52
|
export type GetOrderDetailsPayload = z.infer<typeof GetOrderDetailsPayloadSchema>;
|
|
49
53
|
export type CancelOrderPayload = z.infer<typeof CancelOrderPayloadSchema>;
|
|
54
|
+
export type FetchFeesPayload = z.infer<typeof FetchFeesPayloadSchema>;
|