@usherlabs/cex-broker 0.2.31 → 0.2.33

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.
@@ -9,6 +9,7 @@ export declare const DepositPayloadSchema: z.ZodObject<{
9
9
  export declare const CallPayloadSchema: z.ZodObject<{
10
10
  functionName: z.ZodString;
11
11
  args: z.ZodDefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodArray<z.ZodUnknown>>>;
12
+ orderAuthor: z.ZodOptional<z.ZodString>;
12
13
  params: z.ZodDefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
13
14
  }, z.core.$strip>;
14
15
  export declare const FetchDepositAddressesPayloadSchema: z.ZodObject<{
@@ -31,6 +32,9 @@ export declare const CreateOrderPayloadSchema: z.ZodObject<{
31
32
  limit: "limit";
32
33
  market: "market";
33
34
  }>>;
35
+ orderIntent: z.ZodOptional<z.ZodEnum<{
36
+ passive_only: "passive_only";
37
+ }>>;
34
38
  amount: z.ZodCoercedNumber<unknown>;
35
39
  fromToken: z.ZodString;
36
40
  toToken: z.ZodString;
@@ -43,6 +47,7 @@ export declare const CreateOrderPayloadSchema: z.ZodObject<{
43
47
  futures: "futures";
44
48
  }>>;
45
49
  clientOrderId: z.ZodOptional<z.ZodString>;
50
+ orderAuthor: z.ZodOptional<z.ZodString>;
46
51
  params: z.ZodDefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>>;
47
52
  }, z.core.$strip>;
48
53
  export declare const GetPerpConfigStatePayloadSchema: z.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usherlabs/cex-broker",
3
- "version": "0.2.31",
3
+ "version": "0.2.33",
4
4
  "description": "Unified gRPC API to CEXs by Usher Labs.",
5
5
  "repository": {
6
6
  "type": "git",