@devizovaburza/txs-sdk 3.1.0 → 3.1.1

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.
@@ -450,6 +450,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
450
450
  email: string | null;
451
451
  } | null;
452
452
  remainingAmount?: number | null | undefined;
453
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
453
454
  }[];
454
455
  orderPayouts: {
455
456
  id: string;
@@ -911,6 +912,108 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
911
912
  };
912
913
  };
913
914
  }, "/v1/orders/:orderId/pause"> & hono_types.MergeSchemaPath<{
915
+ "/": {
916
+ $patch: {
917
+ input: {
918
+ param: {
919
+ orderId: string;
920
+ };
921
+ } & {
922
+ header: {
923
+ 'X-Idempotency-Key': string;
924
+ 'X-Signature': string;
925
+ 'X-Signature-Key': string;
926
+ };
927
+ } & {
928
+ json: {
929
+ settlementRate: number;
930
+ weightedRate: number;
931
+ profitAmountCZK: number;
932
+ marginRateCZK: number;
933
+ };
934
+ };
935
+ output: {
936
+ message: string;
937
+ orderId: string;
938
+ pairedOrderId: string | null;
939
+ };
940
+ outputFormat: "json";
941
+ status: 200;
942
+ } | {
943
+ input: {
944
+ param: {
945
+ orderId: string;
946
+ };
947
+ } & {
948
+ header: {
949
+ 'X-Idempotency-Key': string;
950
+ 'X-Signature': string;
951
+ 'X-Signature-Key': string;
952
+ };
953
+ } & {
954
+ json: {
955
+ settlementRate: number;
956
+ weightedRate: number;
957
+ profitAmountCZK: number;
958
+ marginRateCZK: number;
959
+ };
960
+ };
961
+ output: {
962
+ message: string;
963
+ };
964
+ outputFormat: "json";
965
+ status: 404;
966
+ } | {
967
+ input: {
968
+ param: {
969
+ orderId: string;
970
+ };
971
+ } & {
972
+ header: {
973
+ 'X-Idempotency-Key': string;
974
+ 'X-Signature': string;
975
+ 'X-Signature-Key': string;
976
+ };
977
+ } & {
978
+ json: {
979
+ settlementRate: number;
980
+ weightedRate: number;
981
+ profitAmountCZK: number;
982
+ marginRateCZK: number;
983
+ };
984
+ };
985
+ output: {
986
+ message: string;
987
+ };
988
+ outputFormat: "json";
989
+ status: 422;
990
+ } | {
991
+ input: {
992
+ param: {
993
+ orderId: string;
994
+ };
995
+ } & {
996
+ header: {
997
+ 'X-Idempotency-Key': string;
998
+ 'X-Signature': string;
999
+ 'X-Signature-Key': string;
1000
+ };
1001
+ } & {
1002
+ json: {
1003
+ settlementRate: number;
1004
+ weightedRate: number;
1005
+ profitAmountCZK: number;
1006
+ marginRateCZK: number;
1007
+ };
1008
+ };
1009
+ output: {
1010
+ message: string;
1011
+ };
1012
+ outputFormat: "json";
1013
+ status: 500;
1014
+ };
1015
+ };
1016
+ }, "/v1/orders/:orderId/internal-settlement-rate"> & hono_types.MergeSchemaPath<{
914
1017
  "/": {
915
1018
  $put: {
916
1019
  input: {
@@ -1458,6 +1561,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
1458
1561
  email: string | null;
1459
1562
  } | null;
1460
1563
  remainingAmount?: number | null | undefined;
1564
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
1461
1565
  }[];
1462
1566
  orderPayouts: {
1463
1567
  id: string;
@@ -1653,6 +1757,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
1653
1757
  email: string | null;
1654
1758
  } | null;
1655
1759
  remainingAmount?: number | null | undefined;
1760
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
1656
1761
  }[];
1657
1762
  orderPayouts: {
1658
1763
  id: string;
@@ -2928,6 +3033,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
2928
3033
  email: string | null;
2929
3034
  } | null;
2930
3035
  remainingAmount?: number | null | undefined;
3036
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
2931
3037
  }[];
2932
3038
  orderPayouts: {
2933
3039
  id: string;
@@ -3134,6 +3240,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
3134
3240
  email: string | null;
3135
3241
  } | null;
3136
3242
  remainingAmount?: number | null | undefined;
3243
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
3137
3244
  }[];
3138
3245
  orderPayouts: {
3139
3246
  id: string;
@@ -3598,6 +3705,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
3598
3705
  email: string | null;
3599
3706
  } | null;
3600
3707
  remainingAmount?: number | null | undefined;
3708
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
3601
3709
  }[];
3602
3710
  orderPayouts: {
3603
3711
  id: string;
@@ -3809,6 +3917,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
3809
3917
  email: string | null;
3810
3918
  } | null;
3811
3919
  remainingAmount?: number | null | undefined;
3920
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
3812
3921
  }[];
3813
3922
  orderPayouts: {
3814
3923
  id: string;
@@ -4135,6 +4244,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
4135
4244
  email: string | null;
4136
4245
  } | null;
4137
4246
  remainingAmount?: number | null | undefined;
4247
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
4138
4248
  }[];
4139
4249
  orderPayouts: {
4140
4250
  id: string;
@@ -4604,6 +4714,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
4604
4714
  email: string | null;
4605
4715
  } | null;
4606
4716
  remainingAmount?: number | null | undefined;
4717
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
4607
4718
  }[];
4608
4719
  orderPayouts: {
4609
4720
  id: string;
@@ -4810,6 +4921,7 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
4810
4921
  email: string | null;
4811
4922
  } | null;
4812
4923
  remainingAmount?: number | null | undefined;
4924
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
4813
4925
  }[];
4814
4926
  orderPayouts: {
4815
4927
  id: string;
@@ -7156,6 +7268,7 @@ declare const organizationRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
7156
7268
  email: string | null;
7157
7269
  } | null;
7158
7270
  remainingAmount?: number | null | undefined;
7271
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
7159
7272
  }[];
7160
7273
  orderPayouts: {
7161
7274
  id: string;
@@ -7367,6 +7480,7 @@ declare const organizationRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
7367
7480
  email: string | null;
7368
7481
  } | null;
7369
7482
  remainingAmount?: number | null | undefined;
7483
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
7370
7484
  }[];
7371
7485
  orderPayouts: {
7372
7486
  id: string;
@@ -10723,6 +10837,7 @@ declare const bankAndMdmRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
10723
10837
  email: string | null;
10724
10838
  } | null;
10725
10839
  remainingAmount?: number | null | undefined;
10840
+ settlementType?: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL" | null | undefined;
10726
10841
  }[];
10727
10842
  orderPayouts: {
10728
10843
  id: string;
@@ -22080,7 +22195,7 @@ declare const querySchema$d: z$1.ZodObject<{
22080
22195
  refreshRateInSeconds: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
22081
22196
  amount: z$1.ZodOptional<z$1.ZodCoercedNumber<unknown>>;
22082
22197
  }, z$1.core.$strip>;
22083
- declare const responseBodySchema$1i: z$1.ZodObject<{
22198
+ declare const responseBodySchema$1j: z$1.ZodObject<{
22084
22199
  message: z$1.ZodString;
22085
22200
  price: z$1.ZodObject<{
22086
22201
  provider: z$1.ZodString;
@@ -22102,10 +22217,10 @@ declare const responseBodySchema$1i: z$1.ZodObject<{
22102
22217
  }, z$1.core.$strip>;
22103
22218
  interface GetCurrenciesPriceQuery extends z$1.input<typeof querySchema$d> {
22104
22219
  }
22105
- interface GetCurrenciesPriceResponseBody extends z$1.infer<typeof responseBodySchema$1i> {
22220
+ interface GetCurrenciesPriceResponseBody extends z$1.infer<typeof responseBodySchema$1j> {
22106
22221
  }
22107
22222
 
22108
- declare const requestBodySchema$z: z.ZodObject<{
22223
+ declare const requestBodySchema$A: z.ZodObject<{
22109
22224
  forward: z.ZodObject<{
22110
22225
  organizationId: z.ZodUUID;
22111
22226
  clientId: z.ZodUUID;
@@ -24001,7 +24116,7 @@ declare const requestBodySchema$z: z.ZodObject<{
24001
24116
  archived: z.ZodBoolean;
24002
24117
  }, z.core.$strip>;
24003
24118
  }, z.core.$strip>;
24004
- declare const responseBodySchema$1h: z.ZodObject<{
24119
+ declare const responseBodySchema$1i: z.ZodObject<{
24005
24120
  message: z.ZodString;
24006
24121
  forward: z.ZodObject<{
24007
24122
  id: z.ZodUUID;
@@ -25967,8 +26082,8 @@ declare const responseBodySchema$1h: z.ZodObject<{
25967
26082
  }, z.core.$strip>>;
25968
26083
  }, z.core.$strip>;
25969
26084
  }, z.core.$strip>;
25970
- type CreateForwardRequestBody = z.infer<typeof requestBodySchema$z>;
25971
- type CreateForwardResponseBody = z.infer<typeof responseBodySchema$1h>;
26085
+ type CreateForwardRequestBody = z.infer<typeof requestBodySchema$A>;
26086
+ type CreateForwardResponseBody = z.infer<typeof responseBodySchema$1i>;
25972
26087
 
25973
26088
  declare const getForwardsQuerySchema: z.ZodObject<{
25974
26089
  page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
@@ -28151,16 +28266,16 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
28151
28266
  type GetForwardsQuery = z$1.infer<typeof getForwardsQuerySchema>;
28152
28267
  type GetForwardsResponseBody = z$1.infer<typeof getForwardsResponseSchema>;
28153
28268
 
28154
- declare const responseBodySchema$1g: z$1.ZodObject<{
28269
+ declare const responseBodySchema$1h: z$1.ZodObject<{
28155
28270
  message: z$1.ZodString;
28156
28271
  forwardNumber: z$1.ZodNumber;
28157
28272
  }, z$1.core.$strip>;
28158
- type GetForwardNumberResponseBody = z$1.infer<typeof responseBodySchema$1g>;
28273
+ type GetForwardNumberResponseBody = z$1.infer<typeof responseBodySchema$1h>;
28159
28274
 
28160
- declare const paramsSchema$11: z$1.ZodObject<{
28275
+ declare const paramsSchema$12: z$1.ZodObject<{
28161
28276
  forwardId: z$1.ZodUUID;
28162
28277
  }, z$1.core.$strip>;
28163
- declare const responseBodySchema$1f: z$1.ZodObject<{
28278
+ declare const responseBodySchema$1g: z$1.ZodObject<{
28164
28279
  message: z$1.ZodString;
28165
28280
  forward: z$1.ZodObject<{
28166
28281
  id: z$1.ZodUUID;
@@ -30126,10 +30241,10 @@ declare const responseBodySchema$1f: z$1.ZodObject<{
30126
30241
  }, z$1.core.$strip>>;
30127
30242
  }, z$1.core.$strip>;
30128
30243
  }, z$1.core.$strip>;
30129
- type GetForwardParams = z$1.infer<typeof paramsSchema$11>;
30130
- type GetForwardResponseBody = z$1.infer<typeof responseBodySchema$1f>;
30244
+ type GetForwardParams = z$1.infer<typeof paramsSchema$12>;
30245
+ type GetForwardResponseBody = z$1.infer<typeof responseBodySchema$1g>;
30131
30246
 
30132
- declare const requestBodySchema$y: z.ZodObject<{
30247
+ declare const requestBodySchema$z: z.ZodObject<{
30133
30248
  forward: z.ZodObject<{
30134
30249
  id: z.ZodUUID;
30135
30250
  organizationId: z.ZodUUID;
@@ -32026,7 +32141,7 @@ declare const requestBodySchema$y: z.ZodObject<{
32026
32141
  archived: z.ZodBoolean;
32027
32142
  }, z.core.$strip>;
32028
32143
  }, z.core.$strip>;
32029
- declare const responseBodySchema$1e: z.ZodObject<{
32144
+ declare const responseBodySchema$1f: z.ZodObject<{
32030
32145
  message: z.ZodString;
32031
32146
  forward: z.ZodObject<{
32032
32147
  id: z.ZodUUID;
@@ -33992,19 +34107,19 @@ declare const responseBodySchema$1e: z.ZodObject<{
33992
34107
  }, z.core.$strip>>;
33993
34108
  }, z.core.$strip>;
33994
34109
  }, z.core.$strip>;
33995
- type UpdateForwardRequestBody = z.infer<typeof requestBodySchema$y>;
33996
- type UpdateForwardResponseBody = z.infer<typeof responseBodySchema$1e>;
34110
+ type UpdateForwardRequestBody = z.infer<typeof requestBodySchema$z>;
34111
+ type UpdateForwardResponseBody = z.infer<typeof responseBodySchema$1f>;
33997
34112
 
33998
- declare const paramsSchema$10: z$1.ZodObject<{
34113
+ declare const paramsSchema$11: z$1.ZodObject<{
33999
34114
  forwardId: z$1.ZodUUID;
34000
34115
  }, z$1.core.$strip>;
34001
- declare const responseBodySchema$1d: z$1.ZodObject<{
34116
+ declare const responseBodySchema$1e: z$1.ZodObject<{
34002
34117
  message: z$1.ZodString;
34003
34118
  }, z$1.core.$strip>;
34004
- type DeleteForwardParams = z$1.infer<typeof paramsSchema$10>;
34005
- type DeleteForwardResponseBody = z$1.infer<typeof responseBodySchema$1d>;
34119
+ type DeleteForwardParams = z$1.infer<typeof paramsSchema$11>;
34120
+ type DeleteForwardResponseBody = z$1.infer<typeof responseBodySchema$1e>;
34006
34121
 
34007
- declare const paramsSchema$$: z$1.ZodObject<{
34122
+ declare const paramsSchema$10: z$1.ZodObject<{
34008
34123
  forwardId: z$1.ZodUUID;
34009
34124
  }, z$1.core.$strip>;
34010
34125
  declare const querySchema$c: z$1.ZodObject<{
@@ -34013,13 +34128,13 @@ declare const querySchema$c: z$1.ZodObject<{
34013
34128
  cs: "cs";
34014
34129
  }>>>;
34015
34130
  }, z$1.core.$strip>;
34016
- type GetCollateralConfirmationPDFParams = z$1.infer<typeof paramsSchema$$>;
34131
+ type GetCollateralConfirmationPDFParams = z$1.infer<typeof paramsSchema$10>;
34017
34132
  type GetCollateralConfirmationPDFQuery = z$1.infer<typeof querySchema$c>;
34018
34133
 
34019
- declare const paramsSchema$_: z$1.ZodObject<{
34134
+ declare const paramsSchema$$: z$1.ZodObject<{
34020
34135
  forwardId: z$1.ZodUUID;
34021
34136
  }, z$1.core.$strip>;
34022
- declare const requestBodySchema$x: z$1.ZodObject<{
34137
+ declare const requestBodySchema$y: z$1.ZodObject<{
34023
34138
  emails: z$1.ZodArray<z$1.ZodEmail>;
34024
34139
  subject: z$1.ZodString;
34025
34140
  message: z$1.ZodString;
@@ -34028,12 +34143,12 @@ declare const requestBodySchema$x: z$1.ZodObject<{
34028
34143
  cs: "cs";
34029
34144
  }>>>;
34030
34145
  }, z$1.core.$strip>;
34031
- declare const responseBodySchema$1c: z$1.ZodObject<{
34146
+ declare const responseBodySchema$1d: z$1.ZodObject<{
34032
34147
  message: z$1.ZodString;
34033
34148
  }, z$1.core.$strip>;
34034
- type SendCollateralConfirmationParams = z$1.infer<typeof paramsSchema$_>;
34035
- type SendCollateralConfirmationRequestBody = z$1.infer<typeof requestBodySchema$x>;
34036
- type SendCollateralConfirmationResponseBody = z$1.infer<typeof responseBodySchema$1c>;
34149
+ type SendCollateralConfirmationParams = z$1.infer<typeof paramsSchema$$>;
34150
+ type SendCollateralConfirmationRequestBody = z$1.infer<typeof requestBodySchema$y>;
34151
+ type SendCollateralConfirmationResponseBody = z$1.infer<typeof responseBodySchema$1d>;
34037
34152
 
34038
34153
  declare const transactionsResponseSchema: z$1.ZodObject<{
34039
34154
  message: z$1.ZodString;
@@ -35335,16 +35450,16 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
35335
35450
  }, z$1.core.$strip>;
35336
35451
  type TransactionsResponse = z$1.infer<typeof transactionsResponseSchema>;
35337
35452
 
35338
- declare const paramsSchema$Z: z$1.ZodObject<{
35453
+ declare const paramsSchema$_: z$1.ZodObject<{
35339
35454
  forwardId: z$1.ZodUUID;
35340
35455
  }, z$1.core.$strip>;
35341
- type GetForwardTransactionsParams = z$1.infer<typeof paramsSchema$Z>;
35456
+ type GetForwardTransactionsParams = z$1.infer<typeof paramsSchema$_>;
35342
35457
  type GetForwardTransactionsResponseBody = TransactionsResponse;
35343
35458
 
35344
- declare const paramsSchema$Y: z$1.ZodObject<{
35459
+ declare const paramsSchema$Z: z$1.ZodObject<{
35345
35460
  forwardId: z$1.ZodUUID;
35346
35461
  }, z$1.core.$strip>;
35347
- declare const responseBodySchema$1b: z$1.ZodObject<{
35462
+ declare const responseBodySchema$1c: z$1.ZodObject<{
35348
35463
  message: z$1.ZodString;
35349
35464
  order: z$1.ZodObject<{
35350
35465
  tags: z$1.ZodArray<z$1.ZodString>;
@@ -38051,6 +38166,12 @@ declare const responseBodySchema$1b: z$1.ZodObject<{
38051
38166
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
38052
38167
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
38053
38168
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
38169
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
38170
+ SPOT: "SPOT";
38171
+ FORWARD: "FORWARD";
38172
+ LIMIT_ORDER: "LIMIT_ORDER";
38173
+ INTERNAL: "INTERNAL";
38174
+ }>>>;
38054
38175
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
38055
38176
  id: z$1.ZodUUID;
38056
38177
  orderNumber: z$1.ZodNumber;
@@ -38858,10 +38979,10 @@ declare const responseBodySchema$1b: z$1.ZodObject<{
38858
38979
  }, z$1.core.$strip>>;
38859
38980
  }, z$1.core.$strip>;
38860
38981
  }, z$1.core.$strip>;
38861
- type GetPrefilledOrderParams = z$1.infer<typeof paramsSchema$Y>;
38862
- type GetPrefilledOrderResponseBody = z$1.infer<typeof responseBodySchema$1b>;
38982
+ type GetPrefilledOrderParams = z$1.infer<typeof paramsSchema$Z>;
38983
+ type GetPrefilledOrderResponseBody = z$1.infer<typeof responseBodySchema$1c>;
38863
38984
 
38864
- declare const paramsSchema$X: z$1.ZodObject<{
38985
+ declare const paramsSchema$Y: z$1.ZodObject<{
38865
38986
  currency: z$1.ZodEnum<{
38866
38987
  CZK: "CZK";
38867
38988
  EUR: "EUR";
@@ -38975,7 +39096,7 @@ declare const querySchema$b: z$1.ZodObject<{
38975
39096
  AVAX: "AVAX";
38976
39097
  }>;
38977
39098
  }, z$1.core.$strip>;
38978
- declare const responseBodySchema$1a: z$1.ZodObject<{
39099
+ declare const responseBodySchema$1b: z$1.ZodObject<{
38979
39100
  message: z$1.ZodString;
38980
39101
  rates: z$1.ZodObject<{
38981
39102
  currency: z$1.ZodString;
@@ -38997,14 +39118,14 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
38997
39118
  }, z$1.core.$strip>>;
38998
39119
  }, z$1.core.$strip>;
38999
39120
  }, z$1.core.$strip>;
39000
- interface GetRatesParams extends z$1.infer<typeof paramsSchema$X> {
39121
+ interface GetRatesParams extends z$1.infer<typeof paramsSchema$Y> {
39001
39122
  }
39002
39123
  interface GetRatesQuery extends z$1.infer<typeof querySchema$b> {
39003
39124
  }
39004
- interface GetRatesResponseBody extends z$1.infer<typeof responseBodySchema$1a> {
39125
+ interface GetRatesResponseBody extends z$1.infer<typeof responseBodySchema$1b> {
39005
39126
  }
39006
39127
 
39007
- declare const requestBodySchema$w: z$1.ZodObject<{
39128
+ declare const requestBodySchema$x: z$1.ZodObject<{
39008
39129
  order: z$1.ZodObject<{
39009
39130
  id: z$1.ZodUUID;
39010
39131
  organizationId: z$1.ZodUUID;
@@ -41635,7 +41756,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
41635
41756
  }, z$1.core.$strip>>;
41636
41757
  }, z$1.core.$strip>;
41637
41758
  }, z$1.core.$strip>;
41638
- declare const responseBodySchema$19: z$1.ZodObject<{
41759
+ declare const responseBodySchema$1a: z$1.ZodObject<{
41639
41760
  message: z$1.ZodString;
41640
41761
  order: z$1.ZodUnion<readonly [z$1.ZodObject<{
41641
41762
  tags: z$1.ZodArray<z$1.ZodString>;
@@ -44342,6 +44463,12 @@ declare const responseBodySchema$19: z$1.ZodObject<{
44342
44463
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
44343
44464
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
44344
44465
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
44466
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
44467
+ SPOT: "SPOT";
44468
+ FORWARD: "FORWARD";
44469
+ LIMIT_ORDER: "LIMIT_ORDER";
44470
+ INTERNAL: "INTERNAL";
44471
+ }>>>;
44345
44472
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
44346
44473
  id: z$1.ZodUUID;
44347
44474
  orderNumber: z$1.ZodNumber;
@@ -47218,6 +47345,12 @@ declare const responseBodySchema$19: z$1.ZodObject<{
47218
47345
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
47219
47346
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
47220
47347
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
47348
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
47349
+ SPOT: "SPOT";
47350
+ FORWARD: "FORWARD";
47351
+ LIMIT_ORDER: "LIMIT_ORDER";
47352
+ INTERNAL: "INTERNAL";
47353
+ }>>>;
47221
47354
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
47222
47355
  id: z$1.ZodUUID;
47223
47356
  orderNumber: z$1.ZodNumber;
@@ -48088,9 +48221,9 @@ declare const responseBodySchema$19: z$1.ZodObject<{
48088
48221
  }, z$1.core.$strip>>;
48089
48222
  }, z$1.core.$strip>]>;
48090
48223
  }, z$1.core.$strip>;
48091
- interface SubmitDraftRequestBody extends z$1.infer<typeof requestBodySchema$w> {
48224
+ interface SubmitDraftRequestBody extends z$1.infer<typeof requestBodySchema$x> {
48092
48225
  }
48093
- interface SubmitDraftResponseBody extends z$1.infer<typeof responseBodySchema$19> {
48226
+ interface SubmitDraftResponseBody extends z$1.infer<typeof responseBodySchema$1a> {
48094
48227
  }
48095
48228
 
48096
48229
  declare const getOrdersQuerySchema: z.ZodObject<{
@@ -51024,6 +51157,12 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
51024
51157
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
51025
51158
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
51026
51159
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
51160
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
51161
+ SPOT: "SPOT";
51162
+ FORWARD: "FORWARD";
51163
+ LIMIT_ORDER: "LIMIT_ORDER";
51164
+ INTERNAL: "INTERNAL";
51165
+ }>>>;
51027
51166
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
51028
51167
  id: z$1.ZodUUID;
51029
51168
  orderNumber: z$1.ZodNumber;
@@ -53905,6 +54044,12 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
53905
54044
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
53906
54045
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
53907
54046
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
54047
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
54048
+ SPOT: "SPOT";
54049
+ FORWARD: "FORWARD";
54050
+ LIMIT_ORDER: "LIMIT_ORDER";
54051
+ INTERNAL: "INTERNAL";
54052
+ }>>>;
53908
54053
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
53909
54054
  id: z$1.ZodUUID;
53910
54055
  orderNumber: z$1.ZodNumber;
@@ -54790,14 +54935,14 @@ interface GetOrganizationOrdersQuery extends z$1.infer<typeof getOrdersQuerySche
54790
54935
  interface GetOrganizationOrdersResponseBody extends z$1.infer<typeof getOrdersResponseSchema> {
54791
54936
  }
54792
54937
 
54793
- declare const paramsSchema$W: z$1.ZodObject<{
54938
+ declare const paramsSchema$X: z$1.ZodObject<{
54794
54939
  orderId: z$1.ZodUUID;
54795
54940
  type: z$1.ZodOptional<z$1.ZodEnum<{
54796
54941
  order: "order";
54797
54942
  draft: "draft";
54798
54943
  }>>;
54799
54944
  }, z$1.core.$strip>;
54800
- declare const responseBodySchema$18: z$1.ZodObject<{
54945
+ declare const responseBodySchema$19: z$1.ZodObject<{
54801
54946
  message: z$1.ZodString;
54802
54947
  order: z$1.ZodUnion<readonly [z$1.ZodObject<{
54803
54948
  tags: z$1.ZodArray<z$1.ZodString>;
@@ -57504,6 +57649,12 @@ declare const responseBodySchema$18: z$1.ZodObject<{
57504
57649
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
57505
57650
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
57506
57651
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
57652
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
57653
+ SPOT: "SPOT";
57654
+ FORWARD: "FORWARD";
57655
+ LIMIT_ORDER: "LIMIT_ORDER";
57656
+ INTERNAL: "INTERNAL";
57657
+ }>>>;
57507
57658
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
57508
57659
  id: z$1.ZodUUID;
57509
57660
  orderNumber: z$1.ZodNumber;
@@ -60380,6 +60531,12 @@ declare const responseBodySchema$18: z$1.ZodObject<{
60380
60531
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
60381
60532
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
60382
60533
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
60534
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
60535
+ SPOT: "SPOT";
60536
+ FORWARD: "FORWARD";
60537
+ LIMIT_ORDER: "LIMIT_ORDER";
60538
+ INTERNAL: "INTERNAL";
60539
+ }>>>;
60383
60540
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
60384
60541
  id: z$1.ZodUUID;
60385
60542
  orderNumber: z$1.ZodNumber;
@@ -61250,21 +61407,21 @@ declare const responseBodySchema$18: z$1.ZodObject<{
61250
61407
  }, z$1.core.$strip>>;
61251
61408
  }, z$1.core.$strip>]>;
61252
61409
  }, z$1.core.$strip>;
61253
- interface GetOrderParams extends z$1.infer<typeof paramsSchema$W> {
61410
+ interface GetOrderParams extends z$1.infer<typeof paramsSchema$X> {
61254
61411
  }
61255
- interface GetOrderResponseBody extends z$1.infer<typeof responseBodySchema$18> {
61412
+ interface GetOrderResponseBody extends z$1.infer<typeof responseBodySchema$19> {
61256
61413
  }
61257
61414
 
61258
- declare const paramsSchema$V: z$1.ZodObject<{
61415
+ declare const paramsSchema$W: z$1.ZodObject<{
61259
61416
  orderId: z$1.ZodUUID;
61260
61417
  }, z$1.core.$strip>;
61261
- type GetOrderTransactionsParams = z$1.infer<typeof paramsSchema$V>;
61418
+ type GetOrderTransactionsParams = z$1.infer<typeof paramsSchema$W>;
61262
61419
  type GetOrderTransactionsResponseBody = TransactionsResponse;
61263
61420
 
61264
- declare const paramsSchema$U: z$1.ZodObject<{
61421
+ declare const paramsSchema$V: z$1.ZodObject<{
61265
61422
  orderId: z$1.ZodUUID;
61266
61423
  }, z$1.core.$strip>;
61267
- declare const requestBodySchema$v: z$1.ZodObject<{
61424
+ declare const requestBodySchema$w: z$1.ZodObject<{
61268
61425
  order: z$1.ZodObject<{
61269
61426
  id: z$1.ZodUUID;
61270
61427
  organizationId: z$1.ZodUUID;
@@ -66532,7 +66689,7 @@ declare const requestBodySchema$v: z$1.ZodObject<{
66532
66689
  }, z$1.core.$strip>>;
66533
66690
  }, z$1.core.$strip>;
66534
66691
  }, z$1.core.$strip>;
66535
- declare const responseBodySchema$17: z$1.ZodObject<{
66692
+ declare const responseBodySchema$18: z$1.ZodObject<{
66536
66693
  message: z$1.ZodString;
66537
66694
  order: z$1.ZodUnion<readonly [z$1.ZodObject<{
66538
66695
  tags: z$1.ZodArray<z$1.ZodString>;
@@ -69239,6 +69396,12 @@ declare const responseBodySchema$17: z$1.ZodObject<{
69239
69396
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
69240
69397
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
69241
69398
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
69399
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
69400
+ SPOT: "SPOT";
69401
+ FORWARD: "FORWARD";
69402
+ LIMIT_ORDER: "LIMIT_ORDER";
69403
+ INTERNAL: "INTERNAL";
69404
+ }>>>;
69242
69405
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
69243
69406
  id: z$1.ZodUUID;
69244
69407
  orderNumber: z$1.ZodNumber;
@@ -72052,6 +72215,12 @@ declare const responseBodySchema$17: z$1.ZodObject<{
72052
72215
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
72053
72216
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
72054
72217
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
72218
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
72219
+ SPOT: "SPOT";
72220
+ FORWARD: "FORWARD";
72221
+ LIMIT_ORDER: "LIMIT_ORDER";
72222
+ INTERNAL: "INTERNAL";
72223
+ }>>>;
72055
72224
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
72056
72225
  id: z$1.ZodUUID;
72057
72226
  orderNumber: z$1.ZodNumber;
@@ -72859,11 +73028,32 @@ declare const responseBodySchema$17: z$1.ZodObject<{
72859
73028
  }, z$1.core.$strip>>;
72860
73029
  }, z$1.core.$strip>]>;
72861
73030
  }, z$1.core.$strip>;
72862
- interface UpdateOrderParams extends z$1.infer<typeof paramsSchema$U> {
73031
+ interface UpdateOrderParams extends z$1.infer<typeof paramsSchema$V> {
72863
73032
  }
72864
- interface UpdateOrderRequestBody extends z$1.infer<typeof requestBodySchema$v> {
73033
+ interface UpdateOrderRequestBody extends z$1.infer<typeof requestBodySchema$w> {
72865
73034
  }
72866
- interface UpdateOrderResponseBody extends z$1.infer<typeof responseBodySchema$17> {
73035
+ interface UpdateOrderResponseBody extends z$1.infer<typeof responseBodySchema$18> {
73036
+ }
73037
+
73038
+ declare const paramsSchema$U: z$1.ZodObject<{
73039
+ orderId: z$1.ZodUUID;
73040
+ }, z$1.core.$strip>;
73041
+ declare const requestBodySchema$v: z$1.ZodObject<{
73042
+ settlementRate: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
73043
+ weightedRate: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
73044
+ profitAmountCZK: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
73045
+ marginRateCZK: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
73046
+ }, z$1.core.$strip>;
73047
+ declare const responseBodySchema$17: z$1.ZodObject<{
73048
+ message: z$1.ZodString;
73049
+ orderId: z$1.ZodUUID;
73050
+ pairedOrderId: z$1.ZodNullable<z$1.ZodUUID>;
73051
+ }, z$1.core.$strip>;
73052
+ interface UpdateInternalSettlementRateParams extends z$1.infer<typeof paramsSchema$U> {
73053
+ }
73054
+ interface UpdateInternalSettlementRateRequestBody extends z$1.infer<typeof requestBodySchema$v> {
73055
+ }
73056
+ interface UpdateInternalSettlementRateResponseBody extends z$1.infer<typeof responseBodySchema$17> {
72867
73057
  }
72868
73058
 
72869
73059
  declare const paramsSchema$T: z$1.ZodObject<{
@@ -75620,6 +75810,12 @@ declare const responseBodySchema$12: z$1.ZodObject<{
75620
75810
  settlementAmount: z$1.ZodNullable<z$1.ZodNumber>;
75621
75811
  orderAmount: z$1.ZodNullable<z$1.ZodNumber>;
75622
75812
  remainingAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
75813
+ settlementType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
75814
+ SPOT: "SPOT";
75815
+ FORWARD: "FORWARD";
75816
+ LIMIT_ORDER: "LIMIT_ORDER";
75817
+ INTERNAL: "INTERNAL";
75818
+ }>>>;
75623
75819
  relatedOrder: z$1.ZodNullable<z$1.ZodObject<{
75624
75820
  id: z$1.ZodUUID;
75625
75821
  orderNumber: z$1.ZodNumber;
@@ -93191,4 +93387,4 @@ declare const verifyPayloadSignature: ({ signature, data, publicKey, algorithm,
93191
93387
  }) => Promise<boolean>;
93192
93388
 
93193
93389
  export { ALLOWED_ORDER_FILTERS, AML_LIMIT_MONTH, AML_LIMIT_YEAR, AML_RISK_LEVELS, banks as BANKS, BANK_CODES, BATCH_STATUSES, CLIENT_STATUSES, CLIENT_TYPES, countries as COUNTRIES, COUNTRY_CODES, COUNTRY_OPTIONS, CRYPTO_NETWORK_CODES, currencies as CURRENCIES, CURRENCY_CODES, currencyProviders as CURRENCY_PROVIDERS, DRAFT_STATUSES, EU_COUNTRY_CODES, FACTOR_STATUS, FACTOR_TYPE, FILTERABLE_ORDER_STATUSES, FORWARD_DIRECTIONS, FORWARD_STATUSES, FORWARD_TYPES, GENDER_OPTIONS, KYC_STATUSES, languages as LANGUAGES, LANGUAGE_CODES, NON_EU_COUNTRY_OPTIONS, ORDER_DIRECTIONS, ORDER_PAID_STATUSES, ORDER_PAYOUT_STATUSES, ORDER_STATUSES, ORDER_TYPES, ORGANIZATION_STATES, ORGANIZATION_TYPES, PARTY_TYPES, PAYMENT_CHARGE_TYPES, PAYMENT_DIRECTIONS, PAYMENT_STATUSES, PAYMENT_TYPES, PAYOUT_PAYMENT_TYPES, PHONE_CODES, PRICELIST_OTHER_TYPES, REFERENCE_TYPES, SCOPES, TARGET_TYPES, TRADE_PURPOSES, TRANSACTION_STATUSES, TRANSACTION_TYPES, XIdempotencyKeyHeaderSchema, XSignatureHeaderSchema, XSignatureKeyHeaderSchema, createTxsClient, marketRateMetadataSchema, signPayload, structuredAddressSchema, verifyPayloadSignature };
93194
- export type { AmlLimitMonth, AmlLimitYear, AmlRiskLevel, AssignRoleToUserParams, AssignRoleToUserRequestBody, AssignRoleToUserResponseBody, AssignScopeToUserParams, AssignScopeToUserRequestBody, AssignScopeToUserResponseBody, Bank, BankCode, BatchStatus, CancelOrderParams, CancelOrderResponseBody, ClientStatus, ClientType, Country, CountryCode, CreateAuthTokenPairRequestBody, CreateAuthTokenPairResponse, CreateDraftRequestBody, CreateDraftResponseBody, CreateForwardRequestBody, CreateForwardResponseBody, CreateInternalTransferRequestBody, CreateInternalTransferResponseBody, CreateOrganizationClientBankAccountParams, CreateOrganizationClientBankAccountRequestBody, CreateOrganizationClientBankAccountResponseBody, CreateOrganizationClientDisponentParams, CreateOrganizationClientDisponentRequestBody, CreateOrganizationClientDisponentResponseBody, CreateOrganizationRequestBody, CreateOrganizationResponse, CreateOrganizationUserParams, CreateOrganizationUserRequestBody, CreateOrganizationUserResponseBody, CreateRoleRequestBody, CreateRoleResponseBody, CreateSignatureKeyParams, CreateSignatureKeyResponseBody, CreateTraderRequestBody, CreateTraderResponseBody, CreateUserRequestBody, CreateUserResponseBody, CryptoNetwork, CryptoNetworkCode, Currency, CurrencyCode, CurrencyProvider, DeleteForwardParams, DeleteForwardResponseBody, DeleteOrderParams, DeleteOrderResponseBody, DeleteOrganizationClientBankAccountParams, DeleteOrganizationClientBankAccountResponseBody, DeleteOrganizationClientDisponentParams, DeleteOrganizationClientDisponentResponseBody, DeleteOrganizationClientParams, DeleteOrganizationClientResponseBody, DeleteOrganizationParams, DeleteOrganizationResponseBody, DeleteOrganizationUserParams, DeleteOrganizationUserResponseBody, DeleteRoleParams, DeleteRoleResponseBody, DeleteUserParams, DeleteUserResponseBody, DisableMFAParams, DisableMFAResponse, DisableSyncBankAccountParams, DisableSyncBankAccountResponseBody, DisconnectBankAccountParams, DisconnectBankAccountResponseBody, DraftStatusType, EuCountryCode, FactorStatusType, FactorTypeType, FilterableOrderStatusType, ForwardDirectionType, ForwardStatusType, ForwardTypeType, Gender, GetBankAuthUriQuery, GetBankAuthUriResponseBody, GetBankPaymentsQuery, GetBankPaymentsResponseBody, GetBanksResponse, GetBatchesQuery, GetBatchesResponseBody, GetCollateralConfirmationPDFParams, GetCollateralConfirmationPDFQuery, GetConfirmationPDFParams, GetConfirmationPDFQuery, GetCorporateBankAccountsQuery, GetCorporateBankAccountsResponse, GetCurrenciesPriceQuery, GetCurrenciesPriceResponseBody, GetCurrenciesResponse, GetForwardNumberResponseBody, GetForwardParams, GetForwardResponseBody, GetForwardTransactionsParams, GetForwardTransactionsResponseBody, GetForwardsQuery, GetForwardsResponseBody, GetHealthCheckResponse, GetLedgerTransactionsQuery, GetLedgerTransactionsResponseBody, GetMFAStatusParams, GetMFAStatusResponseBody, GetOrderNumberResponseBody, GetOrderParams, GetOrderResponseBody, GetOrderTransactionsParams, GetOrderTransactionsResponseBody, GetOrdersQuery, GetOrdersResponseBody, GetOrganizationClientBankAccountParams, GetOrganizationClientBankAccountResponseBody, GetOrganizationClientBankAccountsParams, GetOrganizationClientBankAccountsQuery, GetOrganizationClientBankAccountsResponseBody, GetOrganizationClientDisponentParams, GetOrganizationClientDisponentResponseBody, GetOrganizationClientDisponentsParams, GetOrganizationClientDisponentsQuery, GetOrganizationClientDisponentsResponseBody, GetOrganizationClientParams, GetOrganizationClientQuery, GetOrganizationClientResponseBody, GetOrganizationClientsParams, GetOrganizationClientsQuery, GetOrganizationClientsResponseBody, GetOrganizationOrdersQuery, GetOrganizationOrdersResponseBody, GetOrganizationParams, GetOrganizationResponseBody, GetOrganizationUserParams, GetOrganizationUserResponseBody, GetOrganizationUsersParams, GetOrganizationUsersQuery, GetOrganizationUsersResponseBody, GetOrganizationsQuery, GetOrganizationsResponseBody, GetPaymentConfirmationPdfParams, GetPaymentConfirmationPdfQuery, GetPaymentRequestsQuery, GetPaymentRequestsResponseBody, GetPrefilledOrderParams, GetPrefilledOrderResponseBody, GetRatesParams, GetRatesQuery, GetRatesResponseBody, GetRolesResponseBody, GetScopesResponseBody, GetTraderParams, GetTraderResponseBody, GetTradersQuery, GetTradersResponseBody, GetUserParams, GetUserPermissionsParams, GetUserPermissionsResponseBody, GetUserResponseBody, GetUserVerificationConfirmationParams, GetUserVerificationParams, GetUsersResponseBody, KycStatus, Language, LanguageCode, MarketRateMetadata, OnboardOrganizationClientParams, OnboardOrganizationClientRequestBody, OnboardOrganizationClientResponseBody, OrderDirectionType, OrderPaidStatusType, OrderPayoutStatusType, OrderPurposeType, OrderStatusType, OrderTypeType, OrganizationState, OrganizationType, PartyType, PauseOrderParams, PauseOrderResponseBody, PaymentChargeTypeType, PaymentDirection, PaymentStatus, PaymentType, PayoutPaymentType, PhoneCode, PricelistOtherType, ReferenceTypeType, RefreshAuthTokenPairRequestBody, RefreshAuthTokenPairResponse, RestartSyncBankAccountParams, RestartSyncBankAccountResponseBody, ResumeOrderParams, ResumeOrderResponseBody, RevokeRoleFromUserParams, RevokeRoleFromUserRequestBody, RevokeRoleFromUserResponseBody, RevokeScopeFromUserParams, RevokeScopeFromUserRequestBody, RevokeScopeFromUserResponseBody, SendCollateralConfirmationParams, SendCollateralConfirmationRequestBody, SendCollateralConfirmationResponseBody, SendOrderConfirmationParams, SendOrderConfirmationRequestBody, SendOrderConfirmationResponseBody, SendTransactionConfirmationParams, SendTransactionConfirmationRequestBody, SendTransactionConfirmationResponseBody, SendTransactionsRequestBody, SendTransactionsResponseBody, SetupMFAParams, SetupMFAResponse, StatusType, SubmitDraftRequestBody, SubmitDraftResponseBody, SyncBankAccountPaymentsParams, SyncBankAccountPaymentsResponseBody, TargetType, TraderTypeType, TransactionStatusType, TransactionTypeType, UpdateCorporateBankAccountParams, UpdateCorporateBankAccountRequestBody, UpdateCorporateBankAccountResponseBody, UpdateForwardRequestBody, UpdateForwardResponseBody, UpdateOrderParams, UpdateOrderRequestBody, UpdateOrderResponseBody, UpdateOrganizationClientBankAccountParams, UpdateOrganizationClientBankAccountRequestBody, UpdateOrganizationClientBankAccountResponseBody, UpdateOrganizationClientDisponentParams, UpdateOrganizationClientDisponentRequestBody, UpdateOrganizationClientDisponentResponseBody, UpdateOrganizationClientParams, UpdateOrganizationClientRequestBody, UpdateOrganizationClientResponseBody, UpdateOrganizationParams, UpdateOrganizationRequestBody, UpdateOrganizationResponseBody, UpdateOrganizationUserParams, UpdateOrganizationUserRequestBody, UpdateOrganizationUserResponseBody, UpdateRoleParams, UpdateRoleRequestBody, UpdateRoleResponseBody, UpdateTraderParams, UpdateTraderRequestBody, UpdateTraderResponseBody, UpdateUserBanParams, UpdateUserBanRequestBody, UpdateUserBanResponseBody, UpdateUserPasswordParams, UpdateUserPasswordRequestBody, UpdateUserPasswordResponseBody, VerifySetupMFAParams, VerifySetupMFARequestBody, VerifySetupMFAResponse, VerifyUserParams, VerifyUserRequestBody, VerifyUserResponse, XIdempotencyKeyHeader, XSignatureHeader, XSignatureKeyHeader };
93390
+ export type { AmlLimitMonth, AmlLimitYear, AmlRiskLevel, AssignRoleToUserParams, AssignRoleToUserRequestBody, AssignRoleToUserResponseBody, AssignScopeToUserParams, AssignScopeToUserRequestBody, AssignScopeToUserResponseBody, Bank, BankCode, BatchStatus, CancelOrderParams, CancelOrderResponseBody, ClientStatus, ClientType, Country, CountryCode, CreateAuthTokenPairRequestBody, CreateAuthTokenPairResponse, CreateDraftRequestBody, CreateDraftResponseBody, CreateForwardRequestBody, CreateForwardResponseBody, CreateInternalTransferRequestBody, CreateInternalTransferResponseBody, CreateOrganizationClientBankAccountParams, CreateOrganizationClientBankAccountRequestBody, CreateOrganizationClientBankAccountResponseBody, CreateOrganizationClientDisponentParams, CreateOrganizationClientDisponentRequestBody, CreateOrganizationClientDisponentResponseBody, CreateOrganizationRequestBody, CreateOrganizationResponse, CreateOrganizationUserParams, CreateOrganizationUserRequestBody, CreateOrganizationUserResponseBody, CreateRoleRequestBody, CreateRoleResponseBody, CreateSignatureKeyParams, CreateSignatureKeyResponseBody, CreateTraderRequestBody, CreateTraderResponseBody, CreateUserRequestBody, CreateUserResponseBody, CryptoNetwork, CryptoNetworkCode, Currency, CurrencyCode, CurrencyProvider, DeleteForwardParams, DeleteForwardResponseBody, DeleteOrderParams, DeleteOrderResponseBody, DeleteOrganizationClientBankAccountParams, DeleteOrganizationClientBankAccountResponseBody, DeleteOrganizationClientDisponentParams, DeleteOrganizationClientDisponentResponseBody, DeleteOrganizationClientParams, DeleteOrganizationClientResponseBody, DeleteOrganizationParams, DeleteOrganizationResponseBody, DeleteOrganizationUserParams, DeleteOrganizationUserResponseBody, DeleteRoleParams, DeleteRoleResponseBody, DeleteUserParams, DeleteUserResponseBody, DisableMFAParams, DisableMFAResponse, DisableSyncBankAccountParams, DisableSyncBankAccountResponseBody, DisconnectBankAccountParams, DisconnectBankAccountResponseBody, DraftStatusType, EuCountryCode, FactorStatusType, FactorTypeType, FilterableOrderStatusType, ForwardDirectionType, ForwardStatusType, ForwardTypeType, Gender, GetBankAuthUriQuery, GetBankAuthUriResponseBody, GetBankPaymentsQuery, GetBankPaymentsResponseBody, GetBanksResponse, GetBatchesQuery, GetBatchesResponseBody, GetCollateralConfirmationPDFParams, GetCollateralConfirmationPDFQuery, GetConfirmationPDFParams, GetConfirmationPDFQuery, GetCorporateBankAccountsQuery, GetCorporateBankAccountsResponse, GetCurrenciesPriceQuery, GetCurrenciesPriceResponseBody, GetCurrenciesResponse, GetForwardNumberResponseBody, GetForwardParams, GetForwardResponseBody, GetForwardTransactionsParams, GetForwardTransactionsResponseBody, GetForwardsQuery, GetForwardsResponseBody, GetHealthCheckResponse, GetLedgerTransactionsQuery, GetLedgerTransactionsResponseBody, GetMFAStatusParams, GetMFAStatusResponseBody, GetOrderNumberResponseBody, GetOrderParams, GetOrderResponseBody, GetOrderTransactionsParams, GetOrderTransactionsResponseBody, GetOrdersQuery, GetOrdersResponseBody, GetOrganizationClientBankAccountParams, GetOrganizationClientBankAccountResponseBody, GetOrganizationClientBankAccountsParams, GetOrganizationClientBankAccountsQuery, GetOrganizationClientBankAccountsResponseBody, GetOrganizationClientDisponentParams, GetOrganizationClientDisponentResponseBody, GetOrganizationClientDisponentsParams, GetOrganizationClientDisponentsQuery, GetOrganizationClientDisponentsResponseBody, GetOrganizationClientParams, GetOrganizationClientQuery, GetOrganizationClientResponseBody, GetOrganizationClientsParams, GetOrganizationClientsQuery, GetOrganizationClientsResponseBody, GetOrganizationOrdersQuery, GetOrganizationOrdersResponseBody, GetOrganizationParams, GetOrganizationResponseBody, GetOrganizationUserParams, GetOrganizationUserResponseBody, GetOrganizationUsersParams, GetOrganizationUsersQuery, GetOrganizationUsersResponseBody, GetOrganizationsQuery, GetOrganizationsResponseBody, GetPaymentConfirmationPdfParams, GetPaymentConfirmationPdfQuery, GetPaymentRequestsQuery, GetPaymentRequestsResponseBody, GetPrefilledOrderParams, GetPrefilledOrderResponseBody, GetRatesParams, GetRatesQuery, GetRatesResponseBody, GetRolesResponseBody, GetScopesResponseBody, GetTraderParams, GetTraderResponseBody, GetTradersQuery, GetTradersResponseBody, GetUserParams, GetUserPermissionsParams, GetUserPermissionsResponseBody, GetUserResponseBody, GetUserVerificationConfirmationParams, GetUserVerificationParams, GetUsersResponseBody, KycStatus, Language, LanguageCode, MarketRateMetadata, OnboardOrganizationClientParams, OnboardOrganizationClientRequestBody, OnboardOrganizationClientResponseBody, OrderDirectionType, OrderPaidStatusType, OrderPayoutStatusType, OrderPurposeType, OrderStatusType, OrderTypeType, OrganizationState, OrganizationType, PartyType, PauseOrderParams, PauseOrderResponseBody, PaymentChargeTypeType, PaymentDirection, PaymentStatus, PaymentType, PayoutPaymentType, PhoneCode, PricelistOtherType, ReferenceTypeType, RefreshAuthTokenPairRequestBody, RefreshAuthTokenPairResponse, RestartSyncBankAccountParams, RestartSyncBankAccountResponseBody, ResumeOrderParams, ResumeOrderResponseBody, RevokeRoleFromUserParams, RevokeRoleFromUserRequestBody, RevokeRoleFromUserResponseBody, RevokeScopeFromUserParams, RevokeScopeFromUserRequestBody, RevokeScopeFromUserResponseBody, SendCollateralConfirmationParams, SendCollateralConfirmationRequestBody, SendCollateralConfirmationResponseBody, SendOrderConfirmationParams, SendOrderConfirmationRequestBody, SendOrderConfirmationResponseBody, SendTransactionConfirmationParams, SendTransactionConfirmationRequestBody, SendTransactionConfirmationResponseBody, SendTransactionsRequestBody, SendTransactionsResponseBody, SetupMFAParams, SetupMFAResponse, StatusType, SubmitDraftRequestBody, SubmitDraftResponseBody, SyncBankAccountPaymentsParams, SyncBankAccountPaymentsResponseBody, TargetType, TraderTypeType, TransactionStatusType, TransactionTypeType, UpdateCorporateBankAccountParams, UpdateCorporateBankAccountRequestBody, UpdateCorporateBankAccountResponseBody, UpdateForwardRequestBody, UpdateForwardResponseBody, UpdateInternalSettlementRateParams, UpdateInternalSettlementRateRequestBody, UpdateInternalSettlementRateResponseBody, UpdateOrderParams, UpdateOrderRequestBody, UpdateOrderResponseBody, UpdateOrganizationClientBankAccountParams, UpdateOrganizationClientBankAccountRequestBody, UpdateOrganizationClientBankAccountResponseBody, UpdateOrganizationClientDisponentParams, UpdateOrganizationClientDisponentRequestBody, UpdateOrganizationClientDisponentResponseBody, UpdateOrganizationClientParams, UpdateOrganizationClientRequestBody, UpdateOrganizationClientResponseBody, UpdateOrganizationParams, UpdateOrganizationRequestBody, UpdateOrganizationResponseBody, UpdateOrganizationUserParams, UpdateOrganizationUserRequestBody, UpdateOrganizationUserResponseBody, UpdateRoleParams, UpdateRoleRequestBody, UpdateRoleResponseBody, UpdateTraderParams, UpdateTraderRequestBody, UpdateTraderResponseBody, UpdateUserBanParams, UpdateUserBanRequestBody, UpdateUserBanResponseBody, UpdateUserPasswordParams, UpdateUserPasswordRequestBody, UpdateUserPasswordResponseBody, VerifySetupMFAParams, VerifySetupMFARequestBody, VerifySetupMFAResponse, VerifyUserParams, VerifyUserRequestBody, VerifyUserResponse, XIdempotencyKeyHeader, XSignatureHeader, XSignatureKeyHeader };