@devizovaburza/txs-sdk 3.1.28 → 3.1.29-canary.85223358e
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/v1/index.d.cts +609 -245
- package/dist/v1/index.d.mts +609 -245
- package/dist/v1/index.d.ts +609 -245
- package/package.json +1 -1
package/dist/v1/index.d.cts
CHANGED
|
@@ -958,6 +958,251 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
|
|
|
958
958
|
};
|
|
959
959
|
};
|
|
960
960
|
}, "/v1/orders/:orderId/pause"> & hono_types.MergeSchemaPath<{
|
|
961
|
+
"/": {
|
|
962
|
+
$patch: {
|
|
963
|
+
input: {
|
|
964
|
+
param: {
|
|
965
|
+
orderId: string;
|
|
966
|
+
};
|
|
967
|
+
} & {
|
|
968
|
+
header: {
|
|
969
|
+
'X-Idempotency-Key': string;
|
|
970
|
+
'X-Signature': string;
|
|
971
|
+
'X-Signature-Key': string;
|
|
972
|
+
};
|
|
973
|
+
} & {
|
|
974
|
+
json: {
|
|
975
|
+
action: "update";
|
|
976
|
+
dependency: {
|
|
977
|
+
id: string;
|
|
978
|
+
orderIdRelatedTo: string;
|
|
979
|
+
settlement: boolean;
|
|
980
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
981
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
982
|
+
settlementAmount?: number | null | undefined;
|
|
983
|
+
settlementClientId?: string | null | undefined;
|
|
984
|
+
settlementRate?: number | null | undefined;
|
|
985
|
+
orderAmount?: number | null | undefined;
|
|
986
|
+
};
|
|
987
|
+
} | {
|
|
988
|
+
action: "unpair";
|
|
989
|
+
dependency: {
|
|
990
|
+
id: string;
|
|
991
|
+
orderIdRelatedTo: string;
|
|
992
|
+
settlement: boolean;
|
|
993
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
994
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
995
|
+
settlementAmount?: number | null | undefined;
|
|
996
|
+
settlementClientId?: string | null | undefined;
|
|
997
|
+
settlementRate?: number | null | undefined;
|
|
998
|
+
orderAmount?: number | null | undefined;
|
|
999
|
+
};
|
|
1000
|
+
} | {
|
|
1001
|
+
action: "add";
|
|
1002
|
+
dependency: {
|
|
1003
|
+
settlementAmount: number;
|
|
1004
|
+
settlementRate: number;
|
|
1005
|
+
settlementClientId: string;
|
|
1006
|
+
orderIdRelatedTo: string;
|
|
1007
|
+
settlement: boolean;
|
|
1008
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1009
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1010
|
+
id?: string | undefined;
|
|
1011
|
+
orderAmount?: number | null | undefined;
|
|
1012
|
+
};
|
|
1013
|
+
};
|
|
1014
|
+
};
|
|
1015
|
+
output: {
|
|
1016
|
+
message: string;
|
|
1017
|
+
orderId: string;
|
|
1018
|
+
mode: "full" | "rate_only";
|
|
1019
|
+
action: "update" | "unpair" | "add";
|
|
1020
|
+
dependencyId: string;
|
|
1021
|
+
linkedOrder: {
|
|
1022
|
+
id: string;
|
|
1023
|
+
status: string;
|
|
1024
|
+
orderNumber: number;
|
|
1025
|
+
} | null;
|
|
1026
|
+
};
|
|
1027
|
+
outputFormat: "json";
|
|
1028
|
+
status: 200;
|
|
1029
|
+
} | {
|
|
1030
|
+
input: {
|
|
1031
|
+
param: {
|
|
1032
|
+
orderId: string;
|
|
1033
|
+
};
|
|
1034
|
+
} & {
|
|
1035
|
+
header: {
|
|
1036
|
+
'X-Idempotency-Key': string;
|
|
1037
|
+
'X-Signature': string;
|
|
1038
|
+
'X-Signature-Key': string;
|
|
1039
|
+
};
|
|
1040
|
+
} & {
|
|
1041
|
+
json: {
|
|
1042
|
+
action: "update";
|
|
1043
|
+
dependency: {
|
|
1044
|
+
id: string;
|
|
1045
|
+
orderIdRelatedTo: string;
|
|
1046
|
+
settlement: boolean;
|
|
1047
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1048
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1049
|
+
settlementAmount?: number | null | undefined;
|
|
1050
|
+
settlementClientId?: string | null | undefined;
|
|
1051
|
+
settlementRate?: number | null | undefined;
|
|
1052
|
+
orderAmount?: number | null | undefined;
|
|
1053
|
+
};
|
|
1054
|
+
} | {
|
|
1055
|
+
action: "unpair";
|
|
1056
|
+
dependency: {
|
|
1057
|
+
id: string;
|
|
1058
|
+
orderIdRelatedTo: string;
|
|
1059
|
+
settlement: boolean;
|
|
1060
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1061
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1062
|
+
settlementAmount?: number | null | undefined;
|
|
1063
|
+
settlementClientId?: string | null | undefined;
|
|
1064
|
+
settlementRate?: number | null | undefined;
|
|
1065
|
+
orderAmount?: number | null | undefined;
|
|
1066
|
+
};
|
|
1067
|
+
} | {
|
|
1068
|
+
action: "add";
|
|
1069
|
+
dependency: {
|
|
1070
|
+
settlementAmount: number;
|
|
1071
|
+
settlementRate: number;
|
|
1072
|
+
settlementClientId: string;
|
|
1073
|
+
orderIdRelatedTo: string;
|
|
1074
|
+
settlement: boolean;
|
|
1075
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1076
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1077
|
+
id?: string | undefined;
|
|
1078
|
+
orderAmount?: number | null | undefined;
|
|
1079
|
+
};
|
|
1080
|
+
};
|
|
1081
|
+
};
|
|
1082
|
+
output: {
|
|
1083
|
+
message: string;
|
|
1084
|
+
};
|
|
1085
|
+
outputFormat: "json";
|
|
1086
|
+
status: 404;
|
|
1087
|
+
} | {
|
|
1088
|
+
input: {
|
|
1089
|
+
param: {
|
|
1090
|
+
orderId: string;
|
|
1091
|
+
};
|
|
1092
|
+
} & {
|
|
1093
|
+
header: {
|
|
1094
|
+
'X-Idempotency-Key': string;
|
|
1095
|
+
'X-Signature': string;
|
|
1096
|
+
'X-Signature-Key': string;
|
|
1097
|
+
};
|
|
1098
|
+
} & {
|
|
1099
|
+
json: {
|
|
1100
|
+
action: "update";
|
|
1101
|
+
dependency: {
|
|
1102
|
+
id: string;
|
|
1103
|
+
orderIdRelatedTo: string;
|
|
1104
|
+
settlement: boolean;
|
|
1105
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1106
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1107
|
+
settlementAmount?: number | null | undefined;
|
|
1108
|
+
settlementClientId?: string | null | undefined;
|
|
1109
|
+
settlementRate?: number | null | undefined;
|
|
1110
|
+
orderAmount?: number | null | undefined;
|
|
1111
|
+
};
|
|
1112
|
+
} | {
|
|
1113
|
+
action: "unpair";
|
|
1114
|
+
dependency: {
|
|
1115
|
+
id: string;
|
|
1116
|
+
orderIdRelatedTo: string;
|
|
1117
|
+
settlement: boolean;
|
|
1118
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1119
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1120
|
+
settlementAmount?: number | null | undefined;
|
|
1121
|
+
settlementClientId?: string | null | undefined;
|
|
1122
|
+
settlementRate?: number | null | undefined;
|
|
1123
|
+
orderAmount?: number | null | undefined;
|
|
1124
|
+
};
|
|
1125
|
+
} | {
|
|
1126
|
+
action: "add";
|
|
1127
|
+
dependency: {
|
|
1128
|
+
settlementAmount: number;
|
|
1129
|
+
settlementRate: number;
|
|
1130
|
+
settlementClientId: string;
|
|
1131
|
+
orderIdRelatedTo: string;
|
|
1132
|
+
settlement: boolean;
|
|
1133
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1134
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1135
|
+
id?: string | undefined;
|
|
1136
|
+
orderAmount?: number | null | undefined;
|
|
1137
|
+
};
|
|
1138
|
+
};
|
|
1139
|
+
};
|
|
1140
|
+
output: {
|
|
1141
|
+
message: string;
|
|
1142
|
+
};
|
|
1143
|
+
outputFormat: "json";
|
|
1144
|
+
status: 422;
|
|
1145
|
+
} | {
|
|
1146
|
+
input: {
|
|
1147
|
+
param: {
|
|
1148
|
+
orderId: string;
|
|
1149
|
+
};
|
|
1150
|
+
} & {
|
|
1151
|
+
header: {
|
|
1152
|
+
'X-Idempotency-Key': string;
|
|
1153
|
+
'X-Signature': string;
|
|
1154
|
+
'X-Signature-Key': string;
|
|
1155
|
+
};
|
|
1156
|
+
} & {
|
|
1157
|
+
json: {
|
|
1158
|
+
action: "update";
|
|
1159
|
+
dependency: {
|
|
1160
|
+
id: string;
|
|
1161
|
+
orderIdRelatedTo: string;
|
|
1162
|
+
settlement: boolean;
|
|
1163
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1164
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1165
|
+
settlementAmount?: number | null | undefined;
|
|
1166
|
+
settlementClientId?: string | null | undefined;
|
|
1167
|
+
settlementRate?: number | null | undefined;
|
|
1168
|
+
orderAmount?: number | null | undefined;
|
|
1169
|
+
};
|
|
1170
|
+
} | {
|
|
1171
|
+
action: "unpair";
|
|
1172
|
+
dependency: {
|
|
1173
|
+
id: string;
|
|
1174
|
+
orderIdRelatedTo: string;
|
|
1175
|
+
settlement: boolean;
|
|
1176
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1177
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1178
|
+
settlementAmount?: number | null | undefined;
|
|
1179
|
+
settlementClientId?: string | null | undefined;
|
|
1180
|
+
settlementRate?: number | null | undefined;
|
|
1181
|
+
orderAmount?: number | null | undefined;
|
|
1182
|
+
};
|
|
1183
|
+
} | {
|
|
1184
|
+
action: "add";
|
|
1185
|
+
dependency: {
|
|
1186
|
+
settlementAmount: number;
|
|
1187
|
+
settlementRate: number;
|
|
1188
|
+
settlementClientId: string;
|
|
1189
|
+
orderIdRelatedTo: string;
|
|
1190
|
+
settlement: boolean;
|
|
1191
|
+
desiredOrderStatus: "DRAFT" | "CREATED" | "FUND_IN_PAID" | "FUND_OUT_PAID" | "WAITING_FOR_FUND_IN" | "WAITING_FOR_FUND_OUT" | "AML_PENDING" | "WAITING_FOR_DEPENDENCIES" | "EXCHANGED" | "CANCELLED" | "COMPLETED";
|
|
1192
|
+
settlementType: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
|
|
1193
|
+
id?: string | undefined;
|
|
1194
|
+
orderAmount?: number | null | undefined;
|
|
1195
|
+
};
|
|
1196
|
+
};
|
|
1197
|
+
};
|
|
1198
|
+
output: {
|
|
1199
|
+
message: string;
|
|
1200
|
+
};
|
|
1201
|
+
outputFormat: "json";
|
|
1202
|
+
status: 500;
|
|
1203
|
+
};
|
|
1204
|
+
};
|
|
1205
|
+
}, "/v1/orders/:orderId/settlements"> & hono_types.MergeSchemaPath<{
|
|
961
1206
|
"/": {
|
|
962
1207
|
$patch: {
|
|
963
1208
|
input: {
|
|
@@ -21832,6 +22077,7 @@ declare const structuredAddressSchema: z.ZodObject<{
|
|
|
21832
22077
|
city: z.ZodOptional<z.ZodString>;
|
|
21833
22078
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
21834
22079
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
22080
|
+
IM: "IM";
|
|
21835
22081
|
AF: "AF";
|
|
21836
22082
|
AL: "AL";
|
|
21837
22083
|
DZ: "DZ";
|
|
@@ -21920,7 +22166,6 @@ declare const structuredAddressSchema: z.ZodObject<{
|
|
|
21920
22166
|
IR: "IR";
|
|
21921
22167
|
IQ: "IQ";
|
|
21922
22168
|
IE: "IE";
|
|
21923
|
-
IM: "IM";
|
|
21924
22169
|
IL: "IL";
|
|
21925
22170
|
IT: "IT";
|
|
21926
22171
|
CI: "CI";
|
|
@@ -22272,7 +22517,7 @@ declare const querySchema$d: z$1.ZodObject<{
|
|
|
22272
22517
|
refreshRateInSeconds: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
22273
22518
|
amount: z$1.ZodOptional<z$1.ZodCoercedNumber<unknown>>;
|
|
22274
22519
|
}, z$1.core.$strip>;
|
|
22275
|
-
declare const responseBodySchema$
|
|
22520
|
+
declare const responseBodySchema$1k: z$1.ZodObject<{
|
|
22276
22521
|
message: z$1.ZodString;
|
|
22277
22522
|
price: z$1.ZodObject<{
|
|
22278
22523
|
provider: z$1.ZodString;
|
|
@@ -22294,10 +22539,10 @@ declare const responseBodySchema$1j: z$1.ZodObject<{
|
|
|
22294
22539
|
}, z$1.core.$strip>;
|
|
22295
22540
|
interface GetCurrenciesPriceQuery extends z$1.input<typeof querySchema$d> {
|
|
22296
22541
|
}
|
|
22297
|
-
interface GetCurrenciesPriceResponseBody extends z$1.infer<typeof responseBodySchema$
|
|
22542
|
+
interface GetCurrenciesPriceResponseBody extends z$1.infer<typeof responseBodySchema$1k> {
|
|
22298
22543
|
}
|
|
22299
22544
|
|
|
22300
|
-
declare const requestBodySchema$
|
|
22545
|
+
declare const requestBodySchema$B: z.ZodObject<{
|
|
22301
22546
|
forward: z.ZodObject<{
|
|
22302
22547
|
organizationId: z.ZodUUID;
|
|
22303
22548
|
clientId: z.ZodUUID;
|
|
@@ -22572,6 +22817,7 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
22572
22817
|
city: z.ZodOptional<z.ZodString>;
|
|
22573
22818
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
22574
22819
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
22820
|
+
IM: "IM";
|
|
22575
22821
|
AF: "AF";
|
|
22576
22822
|
AL: "AL";
|
|
22577
22823
|
DZ: "DZ";
|
|
@@ -22660,7 +22906,6 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
22660
22906
|
IR: "IR";
|
|
22661
22907
|
IQ: "IQ";
|
|
22662
22908
|
IE: "IE";
|
|
22663
|
-
IM: "IM";
|
|
22664
22909
|
IL: "IL";
|
|
22665
22910
|
IT: "IT";
|
|
22666
22911
|
CI: "CI";
|
|
@@ -22843,6 +23088,7 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
22843
23088
|
AVAX: "AVAX";
|
|
22844
23089
|
}>>;
|
|
22845
23090
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
23091
|
+
IM: "IM";
|
|
22846
23092
|
AF: "AF";
|
|
22847
23093
|
AL: "AL";
|
|
22848
23094
|
DZ: "DZ";
|
|
@@ -22931,7 +23177,6 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
22931
23177
|
IR: "IR";
|
|
22932
23178
|
IQ: "IQ";
|
|
22933
23179
|
IE: "IE";
|
|
22934
|
-
IM: "IM";
|
|
22935
23180
|
IL: "IL";
|
|
22936
23181
|
IT: "IT";
|
|
22937
23182
|
CI: "CI";
|
|
@@ -23135,6 +23380,7 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
23135
23380
|
city: z.ZodOptional<z.ZodString>;
|
|
23136
23381
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
23137
23382
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
23383
|
+
IM: "IM";
|
|
23138
23384
|
AF: "AF";
|
|
23139
23385
|
AL: "AL";
|
|
23140
23386
|
DZ: "DZ";
|
|
@@ -23223,7 +23469,6 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
23223
23469
|
IR: "IR";
|
|
23224
23470
|
IQ: "IQ";
|
|
23225
23471
|
IE: "IE";
|
|
23226
|
-
IM: "IM";
|
|
23227
23472
|
IL: "IL";
|
|
23228
23473
|
IT: "IT";
|
|
23229
23474
|
CI: "CI";
|
|
@@ -23406,6 +23651,7 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
23406
23651
|
AVAX: "AVAX";
|
|
23407
23652
|
}>>;
|
|
23408
23653
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
23654
|
+
IM: "IM";
|
|
23409
23655
|
AF: "AF";
|
|
23410
23656
|
AL: "AL";
|
|
23411
23657
|
DZ: "DZ";
|
|
@@ -23494,7 +23740,6 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
23494
23740
|
IR: "IR";
|
|
23495
23741
|
IQ: "IQ";
|
|
23496
23742
|
IE: "IE";
|
|
23497
|
-
IM: "IM";
|
|
23498
23743
|
IL: "IL";
|
|
23499
23744
|
IT: "IT";
|
|
23500
23745
|
CI: "CI";
|
|
@@ -23698,6 +23943,7 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
23698
23943
|
city: z.ZodOptional<z.ZodString>;
|
|
23699
23944
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
23700
23945
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
23946
|
+
IM: "IM";
|
|
23701
23947
|
AF: "AF";
|
|
23702
23948
|
AL: "AL";
|
|
23703
23949
|
DZ: "DZ";
|
|
@@ -23786,7 +24032,6 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
23786
24032
|
IR: "IR";
|
|
23787
24033
|
IQ: "IQ";
|
|
23788
24034
|
IE: "IE";
|
|
23789
|
-
IM: "IM";
|
|
23790
24035
|
IL: "IL";
|
|
23791
24036
|
IT: "IT";
|
|
23792
24037
|
CI: "CI";
|
|
@@ -23969,6 +24214,7 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
23969
24214
|
AVAX: "AVAX";
|
|
23970
24215
|
}>>;
|
|
23971
24216
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
24217
|
+
IM: "IM";
|
|
23972
24218
|
AF: "AF";
|
|
23973
24219
|
AL: "AL";
|
|
23974
24220
|
DZ: "DZ";
|
|
@@ -24057,7 +24303,6 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
24057
24303
|
IR: "IR";
|
|
24058
24304
|
IQ: "IQ";
|
|
24059
24305
|
IE: "IE";
|
|
24060
|
-
IM: "IM";
|
|
24061
24306
|
IL: "IL";
|
|
24062
24307
|
IT: "IT";
|
|
24063
24308
|
CI: "CI";
|
|
@@ -24193,7 +24438,7 @@ declare const requestBodySchema$A: z.ZodObject<{
|
|
|
24193
24438
|
archived: z.ZodBoolean;
|
|
24194
24439
|
}, z.core.$strip>;
|
|
24195
24440
|
}, z.core.$strip>;
|
|
24196
|
-
declare const responseBodySchema$
|
|
24441
|
+
declare const responseBodySchema$1j: z.ZodObject<{
|
|
24197
24442
|
message: z.ZodString;
|
|
24198
24443
|
forward: z.ZodObject<{
|
|
24199
24444
|
id: z.ZodUUID;
|
|
@@ -24474,6 +24719,7 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
24474
24719
|
city: z.ZodOptional<z.ZodString>;
|
|
24475
24720
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
24476
24721
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
24722
|
+
IM: "IM";
|
|
24477
24723
|
AF: "AF";
|
|
24478
24724
|
AL: "AL";
|
|
24479
24725
|
DZ: "DZ";
|
|
@@ -24562,7 +24808,6 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
24562
24808
|
IR: "IR";
|
|
24563
24809
|
IQ: "IQ";
|
|
24564
24810
|
IE: "IE";
|
|
24565
|
-
IM: "IM";
|
|
24566
24811
|
IL: "IL";
|
|
24567
24812
|
IT: "IT";
|
|
24568
24813
|
CI: "CI";
|
|
@@ -24745,6 +24990,7 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
24745
24990
|
AVAX: "AVAX";
|
|
24746
24991
|
}>>;
|
|
24747
24992
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
24993
|
+
IM: "IM";
|
|
24748
24994
|
AF: "AF";
|
|
24749
24995
|
AL: "AL";
|
|
24750
24996
|
DZ: "DZ";
|
|
@@ -24833,7 +25079,6 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
24833
25079
|
IR: "IR";
|
|
24834
25080
|
IQ: "IQ";
|
|
24835
25081
|
IE: "IE";
|
|
24836
|
-
IM: "IM";
|
|
24837
25082
|
IL: "IL";
|
|
24838
25083
|
IT: "IT";
|
|
24839
25084
|
CI: "CI";
|
|
@@ -25037,6 +25282,7 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
25037
25282
|
city: z.ZodOptional<z.ZodString>;
|
|
25038
25283
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
25039
25284
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
25285
|
+
IM: "IM";
|
|
25040
25286
|
AF: "AF";
|
|
25041
25287
|
AL: "AL";
|
|
25042
25288
|
DZ: "DZ";
|
|
@@ -25125,7 +25371,6 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
25125
25371
|
IR: "IR";
|
|
25126
25372
|
IQ: "IQ";
|
|
25127
25373
|
IE: "IE";
|
|
25128
|
-
IM: "IM";
|
|
25129
25374
|
IL: "IL";
|
|
25130
25375
|
IT: "IT";
|
|
25131
25376
|
CI: "CI";
|
|
@@ -25308,6 +25553,7 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
25308
25553
|
AVAX: "AVAX";
|
|
25309
25554
|
}>>;
|
|
25310
25555
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
25556
|
+
IM: "IM";
|
|
25311
25557
|
AF: "AF";
|
|
25312
25558
|
AL: "AL";
|
|
25313
25559
|
DZ: "DZ";
|
|
@@ -25396,7 +25642,6 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
25396
25642
|
IR: "IR";
|
|
25397
25643
|
IQ: "IQ";
|
|
25398
25644
|
IE: "IE";
|
|
25399
|
-
IM: "IM";
|
|
25400
25645
|
IL: "IL";
|
|
25401
25646
|
IT: "IT";
|
|
25402
25647
|
CI: "CI";
|
|
@@ -25600,6 +25845,7 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
25600
25845
|
city: z.ZodOptional<z.ZodString>;
|
|
25601
25846
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
25602
25847
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
25848
|
+
IM: "IM";
|
|
25603
25849
|
AF: "AF";
|
|
25604
25850
|
AL: "AL";
|
|
25605
25851
|
DZ: "DZ";
|
|
@@ -25688,7 +25934,6 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
25688
25934
|
IR: "IR";
|
|
25689
25935
|
IQ: "IQ";
|
|
25690
25936
|
IE: "IE";
|
|
25691
|
-
IM: "IM";
|
|
25692
25937
|
IL: "IL";
|
|
25693
25938
|
IT: "IT";
|
|
25694
25939
|
CI: "CI";
|
|
@@ -25871,6 +26116,7 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
25871
26116
|
AVAX: "AVAX";
|
|
25872
26117
|
}>>;
|
|
25873
26118
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
26119
|
+
IM: "IM";
|
|
25874
26120
|
AF: "AF";
|
|
25875
26121
|
AL: "AL";
|
|
25876
26122
|
DZ: "DZ";
|
|
@@ -25959,7 +26205,6 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
25959
26205
|
IR: "IR";
|
|
25960
26206
|
IQ: "IQ";
|
|
25961
26207
|
IE: "IE";
|
|
25962
|
-
IM: "IM";
|
|
25963
26208
|
IL: "IL";
|
|
25964
26209
|
IT: "IT";
|
|
25965
26210
|
CI: "CI";
|
|
@@ -26159,8 +26404,8 @@ declare const responseBodySchema$1i: z.ZodObject<{
|
|
|
26159
26404
|
}, z.core.$strip>>;
|
|
26160
26405
|
}, z.core.$strip>;
|
|
26161
26406
|
}, z.core.$strip>;
|
|
26162
|
-
type CreateForwardRequestBody = z.infer<typeof requestBodySchema$
|
|
26163
|
-
type CreateForwardResponseBody = z.infer<typeof responseBodySchema$
|
|
26407
|
+
type CreateForwardRequestBody = z.infer<typeof requestBodySchema$B>;
|
|
26408
|
+
type CreateForwardResponseBody = z.infer<typeof responseBodySchema$1j>;
|
|
26164
26409
|
|
|
26165
26410
|
declare const getForwardsQuerySchema: z.ZodObject<{
|
|
26166
26411
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -26654,6 +26899,7 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
26654
26899
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
26655
26900
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
26656
26901
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
26902
|
+
IM: "IM";
|
|
26657
26903
|
AF: "AF";
|
|
26658
26904
|
AL: "AL";
|
|
26659
26905
|
DZ: "DZ";
|
|
@@ -26742,7 +26988,6 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
26742
26988
|
IR: "IR";
|
|
26743
26989
|
IQ: "IQ";
|
|
26744
26990
|
IE: "IE";
|
|
26745
|
-
IM: "IM";
|
|
26746
26991
|
IL: "IL";
|
|
26747
26992
|
IT: "IT";
|
|
26748
26993
|
CI: "CI";
|
|
@@ -26925,6 +27170,7 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
26925
27170
|
AVAX: "AVAX";
|
|
26926
27171
|
}>>;
|
|
26927
27172
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
27173
|
+
IM: "IM";
|
|
26928
27174
|
AF: "AF";
|
|
26929
27175
|
AL: "AL";
|
|
26930
27176
|
DZ: "DZ";
|
|
@@ -27013,7 +27259,6 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
27013
27259
|
IR: "IR";
|
|
27014
27260
|
IQ: "IQ";
|
|
27015
27261
|
IE: "IE";
|
|
27016
|
-
IM: "IM";
|
|
27017
27262
|
IL: "IL";
|
|
27018
27263
|
IT: "IT";
|
|
27019
27264
|
CI: "CI";
|
|
@@ -27217,6 +27462,7 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
27217
27462
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
27218
27463
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
27219
27464
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
27465
|
+
IM: "IM";
|
|
27220
27466
|
AF: "AF";
|
|
27221
27467
|
AL: "AL";
|
|
27222
27468
|
DZ: "DZ";
|
|
@@ -27305,7 +27551,6 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
27305
27551
|
IR: "IR";
|
|
27306
27552
|
IQ: "IQ";
|
|
27307
27553
|
IE: "IE";
|
|
27308
|
-
IM: "IM";
|
|
27309
27554
|
IL: "IL";
|
|
27310
27555
|
IT: "IT";
|
|
27311
27556
|
CI: "CI";
|
|
@@ -27488,6 +27733,7 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
27488
27733
|
AVAX: "AVAX";
|
|
27489
27734
|
}>>;
|
|
27490
27735
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
27736
|
+
IM: "IM";
|
|
27491
27737
|
AF: "AF";
|
|
27492
27738
|
AL: "AL";
|
|
27493
27739
|
DZ: "DZ";
|
|
@@ -27576,7 +27822,6 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
27576
27822
|
IR: "IR";
|
|
27577
27823
|
IQ: "IQ";
|
|
27578
27824
|
IE: "IE";
|
|
27579
|
-
IM: "IM";
|
|
27580
27825
|
IL: "IL";
|
|
27581
27826
|
IT: "IT";
|
|
27582
27827
|
CI: "CI";
|
|
@@ -27780,6 +28025,7 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
27780
28025
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
27781
28026
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
27782
28027
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
28028
|
+
IM: "IM";
|
|
27783
28029
|
AF: "AF";
|
|
27784
28030
|
AL: "AL";
|
|
27785
28031
|
DZ: "DZ";
|
|
@@ -27868,7 +28114,6 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
27868
28114
|
IR: "IR";
|
|
27869
28115
|
IQ: "IQ";
|
|
27870
28116
|
IE: "IE";
|
|
27871
|
-
IM: "IM";
|
|
27872
28117
|
IL: "IL";
|
|
27873
28118
|
IT: "IT";
|
|
27874
28119
|
CI: "CI";
|
|
@@ -28051,6 +28296,7 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
28051
28296
|
AVAX: "AVAX";
|
|
28052
28297
|
}>>;
|
|
28053
28298
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
28299
|
+
IM: "IM";
|
|
28054
28300
|
AF: "AF";
|
|
28055
28301
|
AL: "AL";
|
|
28056
28302
|
DZ: "DZ";
|
|
@@ -28139,7 +28385,6 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
28139
28385
|
IR: "IR";
|
|
28140
28386
|
IQ: "IQ";
|
|
28141
28387
|
IE: "IE";
|
|
28142
|
-
IM: "IM";
|
|
28143
28388
|
IL: "IL";
|
|
28144
28389
|
IT: "IT";
|
|
28145
28390
|
CI: "CI";
|
|
@@ -28343,16 +28588,16 @@ declare const getForwardsResponseSchema: z$1.ZodObject<{
|
|
|
28343
28588
|
type GetForwardsQuery = z$1.infer<typeof getForwardsQuerySchema>;
|
|
28344
28589
|
type GetForwardsResponseBody = z$1.infer<typeof getForwardsResponseSchema>;
|
|
28345
28590
|
|
|
28346
|
-
declare const responseBodySchema$
|
|
28591
|
+
declare const responseBodySchema$1i: z$1.ZodObject<{
|
|
28347
28592
|
message: z$1.ZodString;
|
|
28348
28593
|
forwardNumber: z$1.ZodNumber;
|
|
28349
28594
|
}, z$1.core.$strip>;
|
|
28350
|
-
type GetForwardNumberResponseBody = z$1.infer<typeof responseBodySchema$
|
|
28595
|
+
type GetForwardNumberResponseBody = z$1.infer<typeof responseBodySchema$1i>;
|
|
28351
28596
|
|
|
28352
|
-
declare const paramsSchema$
|
|
28597
|
+
declare const paramsSchema$13: z$1.ZodObject<{
|
|
28353
28598
|
forwardId: z$1.ZodUUID;
|
|
28354
28599
|
}, z$1.core.$strip>;
|
|
28355
|
-
declare const responseBodySchema$
|
|
28600
|
+
declare const responseBodySchema$1h: z$1.ZodObject<{
|
|
28356
28601
|
message: z$1.ZodString;
|
|
28357
28602
|
forward: z$1.ZodObject<{
|
|
28358
28603
|
id: z$1.ZodUUID;
|
|
@@ -28633,6 +28878,7 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
28633
28878
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
28634
28879
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
28635
28880
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
28881
|
+
IM: "IM";
|
|
28636
28882
|
AF: "AF";
|
|
28637
28883
|
AL: "AL";
|
|
28638
28884
|
DZ: "DZ";
|
|
@@ -28721,7 +28967,6 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
28721
28967
|
IR: "IR";
|
|
28722
28968
|
IQ: "IQ";
|
|
28723
28969
|
IE: "IE";
|
|
28724
|
-
IM: "IM";
|
|
28725
28970
|
IL: "IL";
|
|
28726
28971
|
IT: "IT";
|
|
28727
28972
|
CI: "CI";
|
|
@@ -28904,6 +29149,7 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
28904
29149
|
AVAX: "AVAX";
|
|
28905
29150
|
}>>;
|
|
28906
29151
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
29152
|
+
IM: "IM";
|
|
28907
29153
|
AF: "AF";
|
|
28908
29154
|
AL: "AL";
|
|
28909
29155
|
DZ: "DZ";
|
|
@@ -28992,7 +29238,6 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
28992
29238
|
IR: "IR";
|
|
28993
29239
|
IQ: "IQ";
|
|
28994
29240
|
IE: "IE";
|
|
28995
|
-
IM: "IM";
|
|
28996
29241
|
IL: "IL";
|
|
28997
29242
|
IT: "IT";
|
|
28998
29243
|
CI: "CI";
|
|
@@ -29196,6 +29441,7 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
29196
29441
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
29197
29442
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
29198
29443
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
29444
|
+
IM: "IM";
|
|
29199
29445
|
AF: "AF";
|
|
29200
29446
|
AL: "AL";
|
|
29201
29447
|
DZ: "DZ";
|
|
@@ -29284,7 +29530,6 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
29284
29530
|
IR: "IR";
|
|
29285
29531
|
IQ: "IQ";
|
|
29286
29532
|
IE: "IE";
|
|
29287
|
-
IM: "IM";
|
|
29288
29533
|
IL: "IL";
|
|
29289
29534
|
IT: "IT";
|
|
29290
29535
|
CI: "CI";
|
|
@@ -29467,6 +29712,7 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
29467
29712
|
AVAX: "AVAX";
|
|
29468
29713
|
}>>;
|
|
29469
29714
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
29715
|
+
IM: "IM";
|
|
29470
29716
|
AF: "AF";
|
|
29471
29717
|
AL: "AL";
|
|
29472
29718
|
DZ: "DZ";
|
|
@@ -29555,7 +29801,6 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
29555
29801
|
IR: "IR";
|
|
29556
29802
|
IQ: "IQ";
|
|
29557
29803
|
IE: "IE";
|
|
29558
|
-
IM: "IM";
|
|
29559
29804
|
IL: "IL";
|
|
29560
29805
|
IT: "IT";
|
|
29561
29806
|
CI: "CI";
|
|
@@ -29759,6 +30004,7 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
29759
30004
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
29760
30005
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
29761
30006
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
30007
|
+
IM: "IM";
|
|
29762
30008
|
AF: "AF";
|
|
29763
30009
|
AL: "AL";
|
|
29764
30010
|
DZ: "DZ";
|
|
@@ -29847,7 +30093,6 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
29847
30093
|
IR: "IR";
|
|
29848
30094
|
IQ: "IQ";
|
|
29849
30095
|
IE: "IE";
|
|
29850
|
-
IM: "IM";
|
|
29851
30096
|
IL: "IL";
|
|
29852
30097
|
IT: "IT";
|
|
29853
30098
|
CI: "CI";
|
|
@@ -30030,6 +30275,7 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
30030
30275
|
AVAX: "AVAX";
|
|
30031
30276
|
}>>;
|
|
30032
30277
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
30278
|
+
IM: "IM";
|
|
30033
30279
|
AF: "AF";
|
|
30034
30280
|
AL: "AL";
|
|
30035
30281
|
DZ: "DZ";
|
|
@@ -30118,7 +30364,6 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
30118
30364
|
IR: "IR";
|
|
30119
30365
|
IQ: "IQ";
|
|
30120
30366
|
IE: "IE";
|
|
30121
|
-
IM: "IM";
|
|
30122
30367
|
IL: "IL";
|
|
30123
30368
|
IT: "IT";
|
|
30124
30369
|
CI: "CI";
|
|
@@ -30318,10 +30563,10 @@ declare const responseBodySchema$1g: z$1.ZodObject<{
|
|
|
30318
30563
|
}, z$1.core.$strip>>;
|
|
30319
30564
|
}, z$1.core.$strip>;
|
|
30320
30565
|
}, z$1.core.$strip>;
|
|
30321
|
-
type GetForwardParams = z$1.infer<typeof paramsSchema$
|
|
30322
|
-
type GetForwardResponseBody = z$1.infer<typeof responseBodySchema$
|
|
30566
|
+
type GetForwardParams = z$1.infer<typeof paramsSchema$13>;
|
|
30567
|
+
type GetForwardResponseBody = z$1.infer<typeof responseBodySchema$1h>;
|
|
30323
30568
|
|
|
30324
|
-
declare const requestBodySchema$
|
|
30569
|
+
declare const requestBodySchema$A: z.ZodObject<{
|
|
30325
30570
|
forward: z.ZodObject<{
|
|
30326
30571
|
id: z.ZodUUID;
|
|
30327
30572
|
organizationId: z.ZodUUID;
|
|
@@ -30597,6 +30842,7 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
30597
30842
|
city: z.ZodOptional<z.ZodString>;
|
|
30598
30843
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
30599
30844
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
30845
|
+
IM: "IM";
|
|
30600
30846
|
AF: "AF";
|
|
30601
30847
|
AL: "AL";
|
|
30602
30848
|
DZ: "DZ";
|
|
@@ -30685,7 +30931,6 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
30685
30931
|
IR: "IR";
|
|
30686
30932
|
IQ: "IQ";
|
|
30687
30933
|
IE: "IE";
|
|
30688
|
-
IM: "IM";
|
|
30689
30934
|
IL: "IL";
|
|
30690
30935
|
IT: "IT";
|
|
30691
30936
|
CI: "CI";
|
|
@@ -30868,6 +31113,7 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
30868
31113
|
AVAX: "AVAX";
|
|
30869
31114
|
}>>;
|
|
30870
31115
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
31116
|
+
IM: "IM";
|
|
30871
31117
|
AF: "AF";
|
|
30872
31118
|
AL: "AL";
|
|
30873
31119
|
DZ: "DZ";
|
|
@@ -30956,7 +31202,6 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
30956
31202
|
IR: "IR";
|
|
30957
31203
|
IQ: "IQ";
|
|
30958
31204
|
IE: "IE";
|
|
30959
|
-
IM: "IM";
|
|
30960
31205
|
IL: "IL";
|
|
30961
31206
|
IT: "IT";
|
|
30962
31207
|
CI: "CI";
|
|
@@ -31160,6 +31405,7 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
31160
31405
|
city: z.ZodOptional<z.ZodString>;
|
|
31161
31406
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
31162
31407
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
31408
|
+
IM: "IM";
|
|
31163
31409
|
AF: "AF";
|
|
31164
31410
|
AL: "AL";
|
|
31165
31411
|
DZ: "DZ";
|
|
@@ -31248,7 +31494,6 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
31248
31494
|
IR: "IR";
|
|
31249
31495
|
IQ: "IQ";
|
|
31250
31496
|
IE: "IE";
|
|
31251
|
-
IM: "IM";
|
|
31252
31497
|
IL: "IL";
|
|
31253
31498
|
IT: "IT";
|
|
31254
31499
|
CI: "CI";
|
|
@@ -31431,6 +31676,7 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
31431
31676
|
AVAX: "AVAX";
|
|
31432
31677
|
}>>;
|
|
31433
31678
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
31679
|
+
IM: "IM";
|
|
31434
31680
|
AF: "AF";
|
|
31435
31681
|
AL: "AL";
|
|
31436
31682
|
DZ: "DZ";
|
|
@@ -31519,7 +31765,6 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
31519
31765
|
IR: "IR";
|
|
31520
31766
|
IQ: "IQ";
|
|
31521
31767
|
IE: "IE";
|
|
31522
|
-
IM: "IM";
|
|
31523
31768
|
IL: "IL";
|
|
31524
31769
|
IT: "IT";
|
|
31525
31770
|
CI: "CI";
|
|
@@ -31723,6 +31968,7 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
31723
31968
|
city: z.ZodOptional<z.ZodString>;
|
|
31724
31969
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
31725
31970
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
31971
|
+
IM: "IM";
|
|
31726
31972
|
AF: "AF";
|
|
31727
31973
|
AL: "AL";
|
|
31728
31974
|
DZ: "DZ";
|
|
@@ -31811,7 +32057,6 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
31811
32057
|
IR: "IR";
|
|
31812
32058
|
IQ: "IQ";
|
|
31813
32059
|
IE: "IE";
|
|
31814
|
-
IM: "IM";
|
|
31815
32060
|
IL: "IL";
|
|
31816
32061
|
IT: "IT";
|
|
31817
32062
|
CI: "CI";
|
|
@@ -31994,6 +32239,7 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
31994
32239
|
AVAX: "AVAX";
|
|
31995
32240
|
}>>;
|
|
31996
32241
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
32242
|
+
IM: "IM";
|
|
31997
32243
|
AF: "AF";
|
|
31998
32244
|
AL: "AL";
|
|
31999
32245
|
DZ: "DZ";
|
|
@@ -32082,7 +32328,6 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
32082
32328
|
IR: "IR";
|
|
32083
32329
|
IQ: "IQ";
|
|
32084
32330
|
IE: "IE";
|
|
32085
|
-
IM: "IM";
|
|
32086
32331
|
IL: "IL";
|
|
32087
32332
|
IT: "IT";
|
|
32088
32333
|
CI: "CI";
|
|
@@ -32218,7 +32463,7 @@ declare const requestBodySchema$z: z.ZodObject<{
|
|
|
32218
32463
|
archived: z.ZodBoolean;
|
|
32219
32464
|
}, z.core.$strip>;
|
|
32220
32465
|
}, z.core.$strip>;
|
|
32221
|
-
declare const responseBodySchema$
|
|
32466
|
+
declare const responseBodySchema$1g: z.ZodObject<{
|
|
32222
32467
|
message: z.ZodString;
|
|
32223
32468
|
forward: z.ZodObject<{
|
|
32224
32469
|
id: z.ZodUUID;
|
|
@@ -32499,6 +32744,7 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
32499
32744
|
city: z.ZodOptional<z.ZodString>;
|
|
32500
32745
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
32501
32746
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
32747
|
+
IM: "IM";
|
|
32502
32748
|
AF: "AF";
|
|
32503
32749
|
AL: "AL";
|
|
32504
32750
|
DZ: "DZ";
|
|
@@ -32587,7 +32833,6 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
32587
32833
|
IR: "IR";
|
|
32588
32834
|
IQ: "IQ";
|
|
32589
32835
|
IE: "IE";
|
|
32590
|
-
IM: "IM";
|
|
32591
32836
|
IL: "IL";
|
|
32592
32837
|
IT: "IT";
|
|
32593
32838
|
CI: "CI";
|
|
@@ -32770,6 +33015,7 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
32770
33015
|
AVAX: "AVAX";
|
|
32771
33016
|
}>>;
|
|
32772
33017
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
33018
|
+
IM: "IM";
|
|
32773
33019
|
AF: "AF";
|
|
32774
33020
|
AL: "AL";
|
|
32775
33021
|
DZ: "DZ";
|
|
@@ -32858,7 +33104,6 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
32858
33104
|
IR: "IR";
|
|
32859
33105
|
IQ: "IQ";
|
|
32860
33106
|
IE: "IE";
|
|
32861
|
-
IM: "IM";
|
|
32862
33107
|
IL: "IL";
|
|
32863
33108
|
IT: "IT";
|
|
32864
33109
|
CI: "CI";
|
|
@@ -33062,6 +33307,7 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
33062
33307
|
city: z.ZodOptional<z.ZodString>;
|
|
33063
33308
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
33064
33309
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
33310
|
+
IM: "IM";
|
|
33065
33311
|
AF: "AF";
|
|
33066
33312
|
AL: "AL";
|
|
33067
33313
|
DZ: "DZ";
|
|
@@ -33150,7 +33396,6 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
33150
33396
|
IR: "IR";
|
|
33151
33397
|
IQ: "IQ";
|
|
33152
33398
|
IE: "IE";
|
|
33153
|
-
IM: "IM";
|
|
33154
33399
|
IL: "IL";
|
|
33155
33400
|
IT: "IT";
|
|
33156
33401
|
CI: "CI";
|
|
@@ -33333,6 +33578,7 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
33333
33578
|
AVAX: "AVAX";
|
|
33334
33579
|
}>>;
|
|
33335
33580
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
33581
|
+
IM: "IM";
|
|
33336
33582
|
AF: "AF";
|
|
33337
33583
|
AL: "AL";
|
|
33338
33584
|
DZ: "DZ";
|
|
@@ -33421,7 +33667,6 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
33421
33667
|
IR: "IR";
|
|
33422
33668
|
IQ: "IQ";
|
|
33423
33669
|
IE: "IE";
|
|
33424
|
-
IM: "IM";
|
|
33425
33670
|
IL: "IL";
|
|
33426
33671
|
IT: "IT";
|
|
33427
33672
|
CI: "CI";
|
|
@@ -33625,6 +33870,7 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
33625
33870
|
city: z.ZodOptional<z.ZodString>;
|
|
33626
33871
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
33627
33872
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
33873
|
+
IM: "IM";
|
|
33628
33874
|
AF: "AF";
|
|
33629
33875
|
AL: "AL";
|
|
33630
33876
|
DZ: "DZ";
|
|
@@ -33713,7 +33959,6 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
33713
33959
|
IR: "IR";
|
|
33714
33960
|
IQ: "IQ";
|
|
33715
33961
|
IE: "IE";
|
|
33716
|
-
IM: "IM";
|
|
33717
33962
|
IL: "IL";
|
|
33718
33963
|
IT: "IT";
|
|
33719
33964
|
CI: "CI";
|
|
@@ -33896,6 +34141,7 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
33896
34141
|
AVAX: "AVAX";
|
|
33897
34142
|
}>>;
|
|
33898
34143
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
34144
|
+
IM: "IM";
|
|
33899
34145
|
AF: "AF";
|
|
33900
34146
|
AL: "AL";
|
|
33901
34147
|
DZ: "DZ";
|
|
@@ -33984,7 +34230,6 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
33984
34230
|
IR: "IR";
|
|
33985
34231
|
IQ: "IQ";
|
|
33986
34232
|
IE: "IE";
|
|
33987
|
-
IM: "IM";
|
|
33988
34233
|
IL: "IL";
|
|
33989
34234
|
IT: "IT";
|
|
33990
34235
|
CI: "CI";
|
|
@@ -34184,19 +34429,19 @@ declare const responseBodySchema$1f: z.ZodObject<{
|
|
|
34184
34429
|
}, z.core.$strip>>;
|
|
34185
34430
|
}, z.core.$strip>;
|
|
34186
34431
|
}, z.core.$strip>;
|
|
34187
|
-
type UpdateForwardRequestBody = z.infer<typeof requestBodySchema$
|
|
34188
|
-
type UpdateForwardResponseBody = z.infer<typeof responseBodySchema$
|
|
34432
|
+
type UpdateForwardRequestBody = z.infer<typeof requestBodySchema$A>;
|
|
34433
|
+
type UpdateForwardResponseBody = z.infer<typeof responseBodySchema$1g>;
|
|
34189
34434
|
|
|
34190
|
-
declare const paramsSchema$
|
|
34435
|
+
declare const paramsSchema$12: z$1.ZodObject<{
|
|
34191
34436
|
forwardId: z$1.ZodUUID;
|
|
34192
34437
|
}, z$1.core.$strip>;
|
|
34193
|
-
declare const responseBodySchema$
|
|
34438
|
+
declare const responseBodySchema$1f: z$1.ZodObject<{
|
|
34194
34439
|
message: z$1.ZodString;
|
|
34195
34440
|
}, z$1.core.$strip>;
|
|
34196
|
-
type DeleteForwardParams = z$1.infer<typeof paramsSchema$
|
|
34197
|
-
type DeleteForwardResponseBody = z$1.infer<typeof responseBodySchema$
|
|
34441
|
+
type DeleteForwardParams = z$1.infer<typeof paramsSchema$12>;
|
|
34442
|
+
type DeleteForwardResponseBody = z$1.infer<typeof responseBodySchema$1f>;
|
|
34198
34443
|
|
|
34199
|
-
declare const paramsSchema$
|
|
34444
|
+
declare const paramsSchema$11: z$1.ZodObject<{
|
|
34200
34445
|
forwardId: z$1.ZodUUID;
|
|
34201
34446
|
}, z$1.core.$strip>;
|
|
34202
34447
|
declare const querySchema$c: z$1.ZodObject<{
|
|
@@ -34205,13 +34450,13 @@ declare const querySchema$c: z$1.ZodObject<{
|
|
|
34205
34450
|
cs: "cs";
|
|
34206
34451
|
}>>>;
|
|
34207
34452
|
}, z$1.core.$strip>;
|
|
34208
|
-
type GetCollateralConfirmationPDFParams = z$1.infer<typeof paramsSchema$
|
|
34453
|
+
type GetCollateralConfirmationPDFParams = z$1.infer<typeof paramsSchema$11>;
|
|
34209
34454
|
type GetCollateralConfirmationPDFQuery = z$1.infer<typeof querySchema$c>;
|
|
34210
34455
|
|
|
34211
|
-
declare const paramsSchema
|
|
34456
|
+
declare const paramsSchema$10: z$1.ZodObject<{
|
|
34212
34457
|
forwardId: z$1.ZodUUID;
|
|
34213
34458
|
}, z$1.core.$strip>;
|
|
34214
|
-
declare const requestBodySchema$
|
|
34459
|
+
declare const requestBodySchema$z: z$1.ZodObject<{
|
|
34215
34460
|
emails: z$1.ZodArray<z$1.ZodEmail>;
|
|
34216
34461
|
subject: z$1.ZodString;
|
|
34217
34462
|
message: z$1.ZodString;
|
|
@@ -34220,12 +34465,12 @@ declare const requestBodySchema$y: z$1.ZodObject<{
|
|
|
34220
34465
|
cs: "cs";
|
|
34221
34466
|
}>>>;
|
|
34222
34467
|
}, z$1.core.$strip>;
|
|
34223
|
-
declare const responseBodySchema$
|
|
34468
|
+
declare const responseBodySchema$1e: z$1.ZodObject<{
|
|
34224
34469
|
message: z$1.ZodString;
|
|
34225
34470
|
}, z$1.core.$strip>;
|
|
34226
|
-
type SendCollateralConfirmationParams = z$1.infer<typeof paramsSchema
|
|
34227
|
-
type SendCollateralConfirmationRequestBody = z$1.infer<typeof requestBodySchema$
|
|
34228
|
-
type SendCollateralConfirmationResponseBody = z$1.infer<typeof responseBodySchema$
|
|
34471
|
+
type SendCollateralConfirmationParams = z$1.infer<typeof paramsSchema$10>;
|
|
34472
|
+
type SendCollateralConfirmationRequestBody = z$1.infer<typeof requestBodySchema$z>;
|
|
34473
|
+
type SendCollateralConfirmationResponseBody = z$1.infer<typeof responseBodySchema$1e>;
|
|
34229
34474
|
|
|
34230
34475
|
declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
34231
34476
|
message: z$1.ZodString;
|
|
@@ -34410,6 +34655,7 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
|
34410
34655
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
34411
34656
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
34412
34657
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
34658
|
+
IM: "IM";
|
|
34413
34659
|
AF: "AF";
|
|
34414
34660
|
AL: "AL";
|
|
34415
34661
|
DZ: "DZ";
|
|
@@ -34498,7 +34744,6 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
|
34498
34744
|
IR: "IR";
|
|
34499
34745
|
IQ: "IQ";
|
|
34500
34746
|
IE: "IE";
|
|
34501
|
-
IM: "IM";
|
|
34502
34747
|
IL: "IL";
|
|
34503
34748
|
IT: "IT";
|
|
34504
34749
|
CI: "CI";
|
|
@@ -34681,6 +34926,7 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
|
34681
34926
|
AVAX: "AVAX";
|
|
34682
34927
|
}>>;
|
|
34683
34928
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
34929
|
+
IM: "IM";
|
|
34684
34930
|
AF: "AF";
|
|
34685
34931
|
AL: "AL";
|
|
34686
34932
|
DZ: "DZ";
|
|
@@ -34769,7 +35015,6 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
|
34769
35015
|
IR: "IR";
|
|
34770
35016
|
IQ: "IQ";
|
|
34771
35017
|
IE: "IE";
|
|
34772
|
-
IM: "IM";
|
|
34773
35018
|
IL: "IL";
|
|
34774
35019
|
IT: "IT";
|
|
34775
35020
|
CI: "CI";
|
|
@@ -34974,6 +35219,7 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
|
34974
35219
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
34975
35220
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
34976
35221
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
35222
|
+
IM: "IM";
|
|
34977
35223
|
AF: "AF";
|
|
34978
35224
|
AL: "AL";
|
|
34979
35225
|
DZ: "DZ";
|
|
@@ -35062,7 +35308,6 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
|
35062
35308
|
IR: "IR";
|
|
35063
35309
|
IQ: "IQ";
|
|
35064
35310
|
IE: "IE";
|
|
35065
|
-
IM: "IM";
|
|
35066
35311
|
IL: "IL";
|
|
35067
35312
|
IT: "IT";
|
|
35068
35313
|
CI: "CI";
|
|
@@ -35245,6 +35490,7 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
|
35245
35490
|
AVAX: "AVAX";
|
|
35246
35491
|
}>>;
|
|
35247
35492
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
35493
|
+
IM: "IM";
|
|
35248
35494
|
AF: "AF";
|
|
35249
35495
|
AL: "AL";
|
|
35250
35496
|
DZ: "DZ";
|
|
@@ -35333,7 +35579,6 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
|
35333
35579
|
IR: "IR";
|
|
35334
35580
|
IQ: "IQ";
|
|
35335
35581
|
IE: "IE";
|
|
35336
|
-
IM: "IM";
|
|
35337
35582
|
IL: "IL";
|
|
35338
35583
|
IT: "IT";
|
|
35339
35584
|
CI: "CI";
|
|
@@ -35527,16 +35772,16 @@ declare const transactionsResponseSchema: z$1.ZodObject<{
|
|
|
35527
35772
|
}, z$1.core.$strip>;
|
|
35528
35773
|
type TransactionsResponse = z$1.infer<typeof transactionsResponseSchema>;
|
|
35529
35774
|
|
|
35530
|
-
declare const paramsSchema
|
|
35775
|
+
declare const paramsSchema$$: z$1.ZodObject<{
|
|
35531
35776
|
forwardId: z$1.ZodUUID;
|
|
35532
35777
|
}, z$1.core.$strip>;
|
|
35533
|
-
type GetForwardTransactionsParams = z$1.infer<typeof paramsSchema
|
|
35778
|
+
type GetForwardTransactionsParams = z$1.infer<typeof paramsSchema$$>;
|
|
35534
35779
|
type GetForwardTransactionsResponseBody = TransactionsResponse;
|
|
35535
35780
|
|
|
35536
|
-
declare const paramsSchema$
|
|
35781
|
+
declare const paramsSchema$_: z$1.ZodObject<{
|
|
35537
35782
|
forwardId: z$1.ZodUUID;
|
|
35538
35783
|
}, z$1.core.$strip>;
|
|
35539
|
-
declare const responseBodySchema$
|
|
35784
|
+
declare const responseBodySchema$1d: z$1.ZodObject<{
|
|
35540
35785
|
message: z$1.ZodString;
|
|
35541
35786
|
order: z$1.ZodObject<{
|
|
35542
35787
|
tags: z$1.ZodArray<z$1.ZodString>;
|
|
@@ -35750,6 +35995,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
35750
35995
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
35751
35996
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
35752
35997
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
35998
|
+
IM: "IM";
|
|
35753
35999
|
AF: "AF";
|
|
35754
36000
|
AL: "AL";
|
|
35755
36001
|
DZ: "DZ";
|
|
@@ -35838,7 +36084,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
35838
36084
|
IR: "IR";
|
|
35839
36085
|
IQ: "IQ";
|
|
35840
36086
|
IE: "IE";
|
|
35841
|
-
IM: "IM";
|
|
35842
36087
|
IL: "IL";
|
|
35843
36088
|
IT: "IT";
|
|
35844
36089
|
CI: "CI";
|
|
@@ -36021,6 +36266,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
36021
36266
|
AVAX: "AVAX";
|
|
36022
36267
|
}>>;
|
|
36023
36268
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
36269
|
+
IM: "IM";
|
|
36024
36270
|
AF: "AF";
|
|
36025
36271
|
AL: "AL";
|
|
36026
36272
|
DZ: "DZ";
|
|
@@ -36109,7 +36355,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
36109
36355
|
IR: "IR";
|
|
36110
36356
|
IQ: "IQ";
|
|
36111
36357
|
IE: "IE";
|
|
36112
|
-
IM: "IM";
|
|
36113
36358
|
IL: "IL";
|
|
36114
36359
|
IT: "IT";
|
|
36115
36360
|
CI: "CI";
|
|
@@ -36313,6 +36558,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
36313
36558
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
36314
36559
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
36315
36560
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
36561
|
+
IM: "IM";
|
|
36316
36562
|
AF: "AF";
|
|
36317
36563
|
AL: "AL";
|
|
36318
36564
|
DZ: "DZ";
|
|
@@ -36401,7 +36647,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
36401
36647
|
IR: "IR";
|
|
36402
36648
|
IQ: "IQ";
|
|
36403
36649
|
IE: "IE";
|
|
36404
|
-
IM: "IM";
|
|
36405
36650
|
IL: "IL";
|
|
36406
36651
|
IT: "IT";
|
|
36407
36652
|
CI: "CI";
|
|
@@ -36584,6 +36829,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
36584
36829
|
AVAX: "AVAX";
|
|
36585
36830
|
}>>;
|
|
36586
36831
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
36832
|
+
IM: "IM";
|
|
36587
36833
|
AF: "AF";
|
|
36588
36834
|
AL: "AL";
|
|
36589
36835
|
DZ: "DZ";
|
|
@@ -36672,7 +36918,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
36672
36918
|
IR: "IR";
|
|
36673
36919
|
IQ: "IQ";
|
|
36674
36920
|
IE: "IE";
|
|
36675
|
-
IM: "IM";
|
|
36676
36921
|
IL: "IL";
|
|
36677
36922
|
IT: "IT";
|
|
36678
36923
|
CI: "CI";
|
|
@@ -36876,6 +37121,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
36876
37121
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
36877
37122
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
36878
37123
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
37124
|
+
IM: "IM";
|
|
36879
37125
|
AF: "AF";
|
|
36880
37126
|
AL: "AL";
|
|
36881
37127
|
DZ: "DZ";
|
|
@@ -36964,7 +37210,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
36964
37210
|
IR: "IR";
|
|
36965
37211
|
IQ: "IQ";
|
|
36966
37212
|
IE: "IE";
|
|
36967
|
-
IM: "IM";
|
|
36968
37213
|
IL: "IL";
|
|
36969
37214
|
IT: "IT";
|
|
36970
37215
|
CI: "CI";
|
|
@@ -37147,6 +37392,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
37147
37392
|
AVAX: "AVAX";
|
|
37148
37393
|
}>>;
|
|
37149
37394
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
37395
|
+
IM: "IM";
|
|
37150
37396
|
AF: "AF";
|
|
37151
37397
|
AL: "AL";
|
|
37152
37398
|
DZ: "DZ";
|
|
@@ -37235,7 +37481,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
37235
37481
|
IR: "IR";
|
|
37236
37482
|
IQ: "IQ";
|
|
37237
37483
|
IE: "IE";
|
|
37238
|
-
IM: "IM";
|
|
37239
37484
|
IL: "IL";
|
|
37240
37485
|
IT: "IT";
|
|
37241
37486
|
CI: "CI";
|
|
@@ -37712,6 +37957,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
37712
37957
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
37713
37958
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
37714
37959
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
37960
|
+
IM: "IM";
|
|
37715
37961
|
AF: "AF";
|
|
37716
37962
|
AL: "AL";
|
|
37717
37963
|
DZ: "DZ";
|
|
@@ -37800,7 +38046,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
37800
38046
|
IR: "IR";
|
|
37801
38047
|
IQ: "IQ";
|
|
37802
38048
|
IE: "IE";
|
|
37803
|
-
IM: "IM";
|
|
37804
38049
|
IL: "IL";
|
|
37805
38050
|
IT: "IT";
|
|
37806
38051
|
CI: "CI";
|
|
@@ -37983,6 +38228,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
37983
38228
|
AVAX: "AVAX";
|
|
37984
38229
|
}>>;
|
|
37985
38230
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
38231
|
+
IM: "IM";
|
|
37986
38232
|
AF: "AF";
|
|
37987
38233
|
AL: "AL";
|
|
37988
38234
|
DZ: "DZ";
|
|
@@ -38071,7 +38317,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
38071
38317
|
IR: "IR";
|
|
38072
38318
|
IQ: "IQ";
|
|
38073
38319
|
IE: "IE";
|
|
38074
|
-
IM: "IM";
|
|
38075
38320
|
IL: "IL";
|
|
38076
38321
|
IT: "IT";
|
|
38077
38322
|
CI: "CI";
|
|
@@ -38548,6 +38793,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
38548
38793
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
38549
38794
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
38550
38795
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
38796
|
+
IM: "IM";
|
|
38551
38797
|
AF: "AF";
|
|
38552
38798
|
AL: "AL";
|
|
38553
38799
|
DZ: "DZ";
|
|
@@ -38636,7 +38882,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
38636
38882
|
IR: "IR";
|
|
38637
38883
|
IQ: "IQ";
|
|
38638
38884
|
IE: "IE";
|
|
38639
|
-
IM: "IM";
|
|
38640
38885
|
IL: "IL";
|
|
38641
38886
|
IT: "IT";
|
|
38642
38887
|
CI: "CI";
|
|
@@ -38819,6 +39064,7 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
38819
39064
|
AVAX: "AVAX";
|
|
38820
39065
|
}>>;
|
|
38821
39066
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
39067
|
+
IM: "IM";
|
|
38822
39068
|
AF: "AF";
|
|
38823
39069
|
AL: "AL";
|
|
38824
39070
|
DZ: "DZ";
|
|
@@ -38907,7 +39153,6 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
38907
39153
|
IR: "IR";
|
|
38908
39154
|
IQ: "IQ";
|
|
38909
39155
|
IE: "IE";
|
|
38910
|
-
IM: "IM";
|
|
38911
39156
|
IL: "IL";
|
|
38912
39157
|
IT: "IT";
|
|
38913
39158
|
CI: "CI";
|
|
@@ -39060,10 +39305,10 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
|
39060
39305
|
}, z$1.core.$strip>>>;
|
|
39061
39306
|
}, z$1.core.$strip>;
|
|
39062
39307
|
}, z$1.core.$strip>;
|
|
39063
|
-
type GetPrefilledOrderParams = z$1.infer<typeof paramsSchema$
|
|
39064
|
-
type GetPrefilledOrderResponseBody = z$1.infer<typeof responseBodySchema$
|
|
39308
|
+
type GetPrefilledOrderParams = z$1.infer<typeof paramsSchema$_>;
|
|
39309
|
+
type GetPrefilledOrderResponseBody = z$1.infer<typeof responseBodySchema$1d>;
|
|
39065
39310
|
|
|
39066
|
-
declare const paramsSchema$
|
|
39311
|
+
declare const paramsSchema$Z: z$1.ZodObject<{
|
|
39067
39312
|
currency: z$1.ZodEnum<{
|
|
39068
39313
|
CZK: "CZK";
|
|
39069
39314
|
EUR: "EUR";
|
|
@@ -39177,7 +39422,7 @@ declare const querySchema$b: z$1.ZodObject<{
|
|
|
39177
39422
|
AVAX: "AVAX";
|
|
39178
39423
|
}>;
|
|
39179
39424
|
}, z$1.core.$strip>;
|
|
39180
|
-
declare const responseBodySchema$
|
|
39425
|
+
declare const responseBodySchema$1c: z$1.ZodObject<{
|
|
39181
39426
|
message: z$1.ZodString;
|
|
39182
39427
|
rates: z$1.ZodObject<{
|
|
39183
39428
|
currency: z$1.ZodString;
|
|
@@ -39199,14 +39444,14 @@ declare const responseBodySchema$1b: z$1.ZodObject<{
|
|
|
39199
39444
|
}, z$1.core.$strip>>;
|
|
39200
39445
|
}, z$1.core.$strip>;
|
|
39201
39446
|
}, z$1.core.$strip>;
|
|
39202
|
-
interface GetRatesParams extends z$1.infer<typeof paramsSchema$
|
|
39447
|
+
interface GetRatesParams extends z$1.infer<typeof paramsSchema$Z> {
|
|
39203
39448
|
}
|
|
39204
39449
|
interface GetRatesQuery extends z$1.infer<typeof querySchema$b> {
|
|
39205
39450
|
}
|
|
39206
|
-
interface GetRatesResponseBody extends z$1.infer<typeof responseBodySchema$
|
|
39451
|
+
interface GetRatesResponseBody extends z$1.infer<typeof responseBodySchema$1c> {
|
|
39207
39452
|
}
|
|
39208
39453
|
|
|
39209
|
-
declare const requestBodySchema$
|
|
39454
|
+
declare const requestBodySchema$y: z$1.ZodObject<{
|
|
39210
39455
|
order: z$1.ZodObject<{
|
|
39211
39456
|
id: z$1.ZodUUID;
|
|
39212
39457
|
organizationId: z$1.ZodUUID;
|
|
@@ -39517,6 +39762,7 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
39517
39762
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
39518
39763
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
39519
39764
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
39765
|
+
IM: "IM";
|
|
39520
39766
|
AF: "AF";
|
|
39521
39767
|
AL: "AL";
|
|
39522
39768
|
DZ: "DZ";
|
|
@@ -39605,7 +39851,6 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
39605
39851
|
IR: "IR";
|
|
39606
39852
|
IQ: "IQ";
|
|
39607
39853
|
IE: "IE";
|
|
39608
|
-
IM: "IM";
|
|
39609
39854
|
IL: "IL";
|
|
39610
39855
|
IT: "IT";
|
|
39611
39856
|
CI: "CI";
|
|
@@ -39788,6 +40033,7 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
39788
40033
|
AVAX: "AVAX";
|
|
39789
40034
|
}>>;
|
|
39790
40035
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
40036
|
+
IM: "IM";
|
|
39791
40037
|
AF: "AF";
|
|
39792
40038
|
AL: "AL";
|
|
39793
40039
|
DZ: "DZ";
|
|
@@ -39876,7 +40122,6 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
39876
40122
|
IR: "IR";
|
|
39877
40123
|
IQ: "IQ";
|
|
39878
40124
|
IE: "IE";
|
|
39879
|
-
IM: "IM";
|
|
39880
40125
|
IL: "IL";
|
|
39881
40126
|
IT: "IT";
|
|
39882
40127
|
CI: "CI";
|
|
@@ -40080,6 +40325,7 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
40080
40325
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
40081
40326
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
40082
40327
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
40328
|
+
IM: "IM";
|
|
40083
40329
|
AF: "AF";
|
|
40084
40330
|
AL: "AL";
|
|
40085
40331
|
DZ: "DZ";
|
|
@@ -40168,7 +40414,6 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
40168
40414
|
IR: "IR";
|
|
40169
40415
|
IQ: "IQ";
|
|
40170
40416
|
IE: "IE";
|
|
40171
|
-
IM: "IM";
|
|
40172
40417
|
IL: "IL";
|
|
40173
40418
|
IT: "IT";
|
|
40174
40419
|
CI: "CI";
|
|
@@ -40351,6 +40596,7 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
40351
40596
|
AVAX: "AVAX";
|
|
40352
40597
|
}>>;
|
|
40353
40598
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
40599
|
+
IM: "IM";
|
|
40354
40600
|
AF: "AF";
|
|
40355
40601
|
AL: "AL";
|
|
40356
40602
|
DZ: "DZ";
|
|
@@ -40439,7 +40685,6 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
40439
40685
|
IR: "IR";
|
|
40440
40686
|
IQ: "IQ";
|
|
40441
40687
|
IE: "IE";
|
|
40442
|
-
IM: "IM";
|
|
40443
40688
|
IL: "IL";
|
|
40444
40689
|
IT: "IT";
|
|
40445
40690
|
CI: "CI";
|
|
@@ -40643,6 +40888,7 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
40643
40888
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
40644
40889
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
40645
40890
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
40891
|
+
IM: "IM";
|
|
40646
40892
|
AF: "AF";
|
|
40647
40893
|
AL: "AL";
|
|
40648
40894
|
DZ: "DZ";
|
|
@@ -40731,7 +40977,6 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
40731
40977
|
IR: "IR";
|
|
40732
40978
|
IQ: "IQ";
|
|
40733
40979
|
IE: "IE";
|
|
40734
|
-
IM: "IM";
|
|
40735
40980
|
IL: "IL";
|
|
40736
40981
|
IT: "IT";
|
|
40737
40982
|
CI: "CI";
|
|
@@ -40914,6 +41159,7 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
40914
41159
|
AVAX: "AVAX";
|
|
40915
41160
|
}>>;
|
|
40916
41161
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
41162
|
+
IM: "IM";
|
|
40917
41163
|
AF: "AF";
|
|
40918
41164
|
AL: "AL";
|
|
40919
41165
|
DZ: "DZ";
|
|
@@ -41002,7 +41248,6 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
41002
41248
|
IR: "IR";
|
|
41003
41249
|
IQ: "IQ";
|
|
41004
41250
|
IE: "IE";
|
|
41005
|
-
IM: "IM";
|
|
41006
41251
|
IL: "IL";
|
|
41007
41252
|
IT: "IT";
|
|
41008
41253
|
CI: "CI";
|
|
@@ -41329,6 +41574,7 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
41329
41574
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
41330
41575
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
41331
41576
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
41577
|
+
IM: "IM";
|
|
41332
41578
|
AF: "AF";
|
|
41333
41579
|
AL: "AL";
|
|
41334
41580
|
DZ: "DZ";
|
|
@@ -41417,7 +41663,6 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
41417
41663
|
IR: "IR";
|
|
41418
41664
|
IQ: "IQ";
|
|
41419
41665
|
IE: "IE";
|
|
41420
|
-
IM: "IM";
|
|
41421
41666
|
IL: "IL";
|
|
41422
41667
|
IT: "IT";
|
|
41423
41668
|
CI: "CI";
|
|
@@ -41600,6 +41845,7 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
41600
41845
|
AVAX: "AVAX";
|
|
41601
41846
|
}>>;
|
|
41602
41847
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
41848
|
+
IM: "IM";
|
|
41603
41849
|
AF: "AF";
|
|
41604
41850
|
AL: "AL";
|
|
41605
41851
|
DZ: "DZ";
|
|
@@ -41688,7 +41934,6 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
41688
41934
|
IR: "IR";
|
|
41689
41935
|
IQ: "IQ";
|
|
41690
41936
|
IE: "IE";
|
|
41691
|
-
IM: "IM";
|
|
41692
41937
|
IL: "IL";
|
|
41693
41938
|
IT: "IT";
|
|
41694
41939
|
CI: "CI";
|
|
@@ -41837,7 +42082,7 @@ declare const requestBodySchema$x: z$1.ZodObject<{
|
|
|
41837
42082
|
}, z$1.core.$strip>>;
|
|
41838
42083
|
}, z$1.core.$strip>;
|
|
41839
42084
|
}, z$1.core.$strip>;
|
|
41840
|
-
declare const responseBodySchema$
|
|
42085
|
+
declare const responseBodySchema$1b: z$1.ZodObject<{
|
|
41841
42086
|
message: z$1.ZodString;
|
|
41842
42087
|
order: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
41843
42088
|
tags: z$1.ZodArray<z$1.ZodString>;
|
|
@@ -42051,6 +42296,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
42051
42296
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
42052
42297
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
42053
42298
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
42299
|
+
IM: "IM";
|
|
42054
42300
|
AF: "AF";
|
|
42055
42301
|
AL: "AL";
|
|
42056
42302
|
DZ: "DZ";
|
|
@@ -42139,7 +42385,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
42139
42385
|
IR: "IR";
|
|
42140
42386
|
IQ: "IQ";
|
|
42141
42387
|
IE: "IE";
|
|
42142
|
-
IM: "IM";
|
|
42143
42388
|
IL: "IL";
|
|
42144
42389
|
IT: "IT";
|
|
42145
42390
|
CI: "CI";
|
|
@@ -42322,6 +42567,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
42322
42567
|
AVAX: "AVAX";
|
|
42323
42568
|
}>>;
|
|
42324
42569
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
42570
|
+
IM: "IM";
|
|
42325
42571
|
AF: "AF";
|
|
42326
42572
|
AL: "AL";
|
|
42327
42573
|
DZ: "DZ";
|
|
@@ -42410,7 +42656,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
42410
42656
|
IR: "IR";
|
|
42411
42657
|
IQ: "IQ";
|
|
42412
42658
|
IE: "IE";
|
|
42413
|
-
IM: "IM";
|
|
42414
42659
|
IL: "IL";
|
|
42415
42660
|
IT: "IT";
|
|
42416
42661
|
CI: "CI";
|
|
@@ -42614,6 +42859,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
42614
42859
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
42615
42860
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
42616
42861
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
42862
|
+
IM: "IM";
|
|
42617
42863
|
AF: "AF";
|
|
42618
42864
|
AL: "AL";
|
|
42619
42865
|
DZ: "DZ";
|
|
@@ -42702,7 +42948,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
42702
42948
|
IR: "IR";
|
|
42703
42949
|
IQ: "IQ";
|
|
42704
42950
|
IE: "IE";
|
|
42705
|
-
IM: "IM";
|
|
42706
42951
|
IL: "IL";
|
|
42707
42952
|
IT: "IT";
|
|
42708
42953
|
CI: "CI";
|
|
@@ -42885,6 +43130,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
42885
43130
|
AVAX: "AVAX";
|
|
42886
43131
|
}>>;
|
|
42887
43132
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
43133
|
+
IM: "IM";
|
|
42888
43134
|
AF: "AF";
|
|
42889
43135
|
AL: "AL";
|
|
42890
43136
|
DZ: "DZ";
|
|
@@ -42973,7 +43219,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
42973
43219
|
IR: "IR";
|
|
42974
43220
|
IQ: "IQ";
|
|
42975
43221
|
IE: "IE";
|
|
42976
|
-
IM: "IM";
|
|
42977
43222
|
IL: "IL";
|
|
42978
43223
|
IT: "IT";
|
|
42979
43224
|
CI: "CI";
|
|
@@ -43177,6 +43422,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
43177
43422
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
43178
43423
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
43179
43424
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
43425
|
+
IM: "IM";
|
|
43180
43426
|
AF: "AF";
|
|
43181
43427
|
AL: "AL";
|
|
43182
43428
|
DZ: "DZ";
|
|
@@ -43265,7 +43511,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
43265
43511
|
IR: "IR";
|
|
43266
43512
|
IQ: "IQ";
|
|
43267
43513
|
IE: "IE";
|
|
43268
|
-
IM: "IM";
|
|
43269
43514
|
IL: "IL";
|
|
43270
43515
|
IT: "IT";
|
|
43271
43516
|
CI: "CI";
|
|
@@ -43448,6 +43693,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
43448
43693
|
AVAX: "AVAX";
|
|
43449
43694
|
}>>;
|
|
43450
43695
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
43696
|
+
IM: "IM";
|
|
43451
43697
|
AF: "AF";
|
|
43452
43698
|
AL: "AL";
|
|
43453
43699
|
DZ: "DZ";
|
|
@@ -43536,7 +43782,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
43536
43782
|
IR: "IR";
|
|
43537
43783
|
IQ: "IQ";
|
|
43538
43784
|
IE: "IE";
|
|
43539
|
-
IM: "IM";
|
|
43540
43785
|
IL: "IL";
|
|
43541
43786
|
IT: "IT";
|
|
43542
43787
|
CI: "CI";
|
|
@@ -44013,6 +44258,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
44013
44258
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
44014
44259
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
44015
44260
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
44261
|
+
IM: "IM";
|
|
44016
44262
|
AF: "AF";
|
|
44017
44263
|
AL: "AL";
|
|
44018
44264
|
DZ: "DZ";
|
|
@@ -44101,7 +44347,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
44101
44347
|
IR: "IR";
|
|
44102
44348
|
IQ: "IQ";
|
|
44103
44349
|
IE: "IE";
|
|
44104
|
-
IM: "IM";
|
|
44105
44350
|
IL: "IL";
|
|
44106
44351
|
IT: "IT";
|
|
44107
44352
|
CI: "CI";
|
|
@@ -44284,6 +44529,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
44284
44529
|
AVAX: "AVAX";
|
|
44285
44530
|
}>>;
|
|
44286
44531
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
44532
|
+
IM: "IM";
|
|
44287
44533
|
AF: "AF";
|
|
44288
44534
|
AL: "AL";
|
|
44289
44535
|
DZ: "DZ";
|
|
@@ -44372,7 +44618,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
44372
44618
|
IR: "IR";
|
|
44373
44619
|
IQ: "IQ";
|
|
44374
44620
|
IE: "IE";
|
|
44375
|
-
IM: "IM";
|
|
44376
44621
|
IL: "IL";
|
|
44377
44622
|
IT: "IT";
|
|
44378
44623
|
CI: "CI";
|
|
@@ -44849,6 +45094,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
44849
45094
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
44850
45095
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
44851
45096
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
45097
|
+
IM: "IM";
|
|
44852
45098
|
AF: "AF";
|
|
44853
45099
|
AL: "AL";
|
|
44854
45100
|
DZ: "DZ";
|
|
@@ -44937,7 +45183,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
44937
45183
|
IR: "IR";
|
|
44938
45184
|
IQ: "IQ";
|
|
44939
45185
|
IE: "IE";
|
|
44940
|
-
IM: "IM";
|
|
44941
45186
|
IL: "IL";
|
|
44942
45187
|
IT: "IT";
|
|
44943
45188
|
CI: "CI";
|
|
@@ -45120,6 +45365,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
45120
45365
|
AVAX: "AVAX";
|
|
45121
45366
|
}>>;
|
|
45122
45367
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
45368
|
+
IM: "IM";
|
|
45123
45369
|
AF: "AF";
|
|
45124
45370
|
AL: "AL";
|
|
45125
45371
|
DZ: "DZ";
|
|
@@ -45208,7 +45454,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
45208
45454
|
IR: "IR";
|
|
45209
45455
|
IQ: "IQ";
|
|
45210
45456
|
IE: "IE";
|
|
45211
|
-
IM: "IM";
|
|
45212
45457
|
IL: "IL";
|
|
45213
45458
|
IT: "IT";
|
|
45214
45459
|
CI: "CI";
|
|
@@ -45761,6 +46006,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
45761
46006
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
45762
46007
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
45763
46008
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
46009
|
+
IM: "IM";
|
|
45764
46010
|
AF: "AF";
|
|
45765
46011
|
AL: "AL";
|
|
45766
46012
|
DZ: "DZ";
|
|
@@ -45849,7 +46095,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
45849
46095
|
IR: "IR";
|
|
45850
46096
|
IQ: "IQ";
|
|
45851
46097
|
IE: "IE";
|
|
45852
|
-
IM: "IM";
|
|
45853
46098
|
IL: "IL";
|
|
45854
46099
|
IT: "IT";
|
|
45855
46100
|
CI: "CI";
|
|
@@ -46032,6 +46277,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
46032
46277
|
AVAX: "AVAX";
|
|
46033
46278
|
}>>;
|
|
46034
46279
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
46280
|
+
IM: "IM";
|
|
46035
46281
|
AF: "AF";
|
|
46036
46282
|
AL: "AL";
|
|
46037
46283
|
DZ: "DZ";
|
|
@@ -46120,7 +46366,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
46120
46366
|
IR: "IR";
|
|
46121
46367
|
IQ: "IQ";
|
|
46122
46368
|
IE: "IE";
|
|
46123
|
-
IM: "IM";
|
|
46124
46369
|
IL: "IL";
|
|
46125
46370
|
IT: "IT";
|
|
46126
46371
|
CI: "CI";
|
|
@@ -46324,6 +46569,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
46324
46569
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
46325
46570
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
46326
46571
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
46572
|
+
IM: "IM";
|
|
46327
46573
|
AF: "AF";
|
|
46328
46574
|
AL: "AL";
|
|
46329
46575
|
DZ: "DZ";
|
|
@@ -46412,7 +46658,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
46412
46658
|
IR: "IR";
|
|
46413
46659
|
IQ: "IQ";
|
|
46414
46660
|
IE: "IE";
|
|
46415
|
-
IM: "IM";
|
|
46416
46661
|
IL: "IL";
|
|
46417
46662
|
IT: "IT";
|
|
46418
46663
|
CI: "CI";
|
|
@@ -46595,6 +46840,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
46595
46840
|
AVAX: "AVAX";
|
|
46596
46841
|
}>>;
|
|
46597
46842
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
46843
|
+
IM: "IM";
|
|
46598
46844
|
AF: "AF";
|
|
46599
46845
|
AL: "AL";
|
|
46600
46846
|
DZ: "DZ";
|
|
@@ -46683,7 +46929,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
46683
46929
|
IR: "IR";
|
|
46684
46930
|
IQ: "IQ";
|
|
46685
46931
|
IE: "IE";
|
|
46686
|
-
IM: "IM";
|
|
46687
46932
|
IL: "IL";
|
|
46688
46933
|
IT: "IT";
|
|
46689
46934
|
CI: "CI";
|
|
@@ -46887,6 +47132,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
46887
47132
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
46888
47133
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
46889
47134
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
47135
|
+
IM: "IM";
|
|
46890
47136
|
AF: "AF";
|
|
46891
47137
|
AL: "AL";
|
|
46892
47138
|
DZ: "DZ";
|
|
@@ -46975,7 +47221,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
46975
47221
|
IR: "IR";
|
|
46976
47222
|
IQ: "IQ";
|
|
46977
47223
|
IE: "IE";
|
|
46978
|
-
IM: "IM";
|
|
46979
47224
|
IL: "IL";
|
|
46980
47225
|
IT: "IT";
|
|
46981
47226
|
CI: "CI";
|
|
@@ -47158,6 +47403,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
47158
47403
|
AVAX: "AVAX";
|
|
47159
47404
|
}>>;
|
|
47160
47405
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
47406
|
+
IM: "IM";
|
|
47161
47407
|
AF: "AF";
|
|
47162
47408
|
AL: "AL";
|
|
47163
47409
|
DZ: "DZ";
|
|
@@ -47246,7 +47492,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
47246
47492
|
IR: "IR";
|
|
47247
47493
|
IQ: "IQ";
|
|
47248
47494
|
IE: "IE";
|
|
47249
|
-
IM: "IM";
|
|
47250
47495
|
IL: "IL";
|
|
47251
47496
|
IT: "IT";
|
|
47252
47497
|
CI: "CI";
|
|
@@ -47735,6 +47980,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
47735
47980
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
47736
47981
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
47737
47982
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
47983
|
+
IM: "IM";
|
|
47738
47984
|
AF: "AF";
|
|
47739
47985
|
AL: "AL";
|
|
47740
47986
|
DZ: "DZ";
|
|
@@ -47823,7 +48069,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
47823
48069
|
IR: "IR";
|
|
47824
48070
|
IQ: "IQ";
|
|
47825
48071
|
IE: "IE";
|
|
47826
|
-
IM: "IM";
|
|
47827
48072
|
IL: "IL";
|
|
47828
48073
|
IT: "IT";
|
|
47829
48074
|
CI: "CI";
|
|
@@ -48006,6 +48251,7 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
48006
48251
|
AVAX: "AVAX";
|
|
48007
48252
|
}>>;
|
|
48008
48253
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
48254
|
+
IM: "IM";
|
|
48009
48255
|
AF: "AF";
|
|
48010
48256
|
AL: "AL";
|
|
48011
48257
|
DZ: "DZ";
|
|
@@ -48094,7 +48340,6 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
48094
48340
|
IR: "IR";
|
|
48095
48341
|
IQ: "IQ";
|
|
48096
48342
|
IE: "IE";
|
|
48097
|
-
IM: "IM";
|
|
48098
48343
|
IL: "IL";
|
|
48099
48344
|
IT: "IT";
|
|
48100
48345
|
CI: "CI";
|
|
@@ -48306,9 +48551,9 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
|
48306
48551
|
}, z$1.core.$strip>>;
|
|
48307
48552
|
}, z$1.core.$strip>]>;
|
|
48308
48553
|
}, z$1.core.$strip>;
|
|
48309
|
-
interface SubmitDraftRequestBody extends z$1.infer<typeof requestBodySchema$
|
|
48554
|
+
interface SubmitDraftRequestBody extends z$1.infer<typeof requestBodySchema$y> {
|
|
48310
48555
|
}
|
|
48311
|
-
interface SubmitDraftResponseBody extends z$1.infer<typeof responseBodySchema$
|
|
48556
|
+
interface SubmitDraftResponseBody extends z$1.infer<typeof responseBodySchema$1b> {
|
|
48312
48557
|
}
|
|
48313
48558
|
|
|
48314
48559
|
declare const getOrdersQuerySchema: z.ZodObject<{
|
|
@@ -48749,6 +48994,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
48749
48994
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
48750
48995
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
48751
48996
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
48997
|
+
IM: "IM";
|
|
48752
48998
|
AF: "AF";
|
|
48753
48999
|
AL: "AL";
|
|
48754
49000
|
DZ: "DZ";
|
|
@@ -48837,7 +49083,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
48837
49083
|
IR: "IR";
|
|
48838
49084
|
IQ: "IQ";
|
|
48839
49085
|
IE: "IE";
|
|
48840
|
-
IM: "IM";
|
|
48841
49086
|
IL: "IL";
|
|
48842
49087
|
IT: "IT";
|
|
48843
49088
|
CI: "CI";
|
|
@@ -49020,6 +49265,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
49020
49265
|
AVAX: "AVAX";
|
|
49021
49266
|
}>>;
|
|
49022
49267
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
49268
|
+
IM: "IM";
|
|
49023
49269
|
AF: "AF";
|
|
49024
49270
|
AL: "AL";
|
|
49025
49271
|
DZ: "DZ";
|
|
@@ -49108,7 +49354,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
49108
49354
|
IR: "IR";
|
|
49109
49355
|
IQ: "IQ";
|
|
49110
49356
|
IE: "IE";
|
|
49111
|
-
IM: "IM";
|
|
49112
49357
|
IL: "IL";
|
|
49113
49358
|
IT: "IT";
|
|
49114
49359
|
CI: "CI";
|
|
@@ -49312,6 +49557,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
49312
49557
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
49313
49558
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
49314
49559
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
49560
|
+
IM: "IM";
|
|
49315
49561
|
AF: "AF";
|
|
49316
49562
|
AL: "AL";
|
|
49317
49563
|
DZ: "DZ";
|
|
@@ -49400,7 +49646,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
49400
49646
|
IR: "IR";
|
|
49401
49647
|
IQ: "IQ";
|
|
49402
49648
|
IE: "IE";
|
|
49403
|
-
IM: "IM";
|
|
49404
49649
|
IL: "IL";
|
|
49405
49650
|
IT: "IT";
|
|
49406
49651
|
CI: "CI";
|
|
@@ -49583,6 +49828,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
49583
49828
|
AVAX: "AVAX";
|
|
49584
49829
|
}>>;
|
|
49585
49830
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
49831
|
+
IM: "IM";
|
|
49586
49832
|
AF: "AF";
|
|
49587
49833
|
AL: "AL";
|
|
49588
49834
|
DZ: "DZ";
|
|
@@ -49671,7 +49917,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
49671
49917
|
IR: "IR";
|
|
49672
49918
|
IQ: "IQ";
|
|
49673
49919
|
IE: "IE";
|
|
49674
|
-
IM: "IM";
|
|
49675
49920
|
IL: "IL";
|
|
49676
49921
|
IT: "IT";
|
|
49677
49922
|
CI: "CI";
|
|
@@ -49875,6 +50120,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
49875
50120
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
49876
50121
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
49877
50122
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
50123
|
+
IM: "IM";
|
|
49878
50124
|
AF: "AF";
|
|
49879
50125
|
AL: "AL";
|
|
49880
50126
|
DZ: "DZ";
|
|
@@ -49963,7 +50209,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
49963
50209
|
IR: "IR";
|
|
49964
50210
|
IQ: "IQ";
|
|
49965
50211
|
IE: "IE";
|
|
49966
|
-
IM: "IM";
|
|
49967
50212
|
IL: "IL";
|
|
49968
50213
|
IT: "IT";
|
|
49969
50214
|
CI: "CI";
|
|
@@ -50146,6 +50391,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
50146
50391
|
AVAX: "AVAX";
|
|
50147
50392
|
}>>;
|
|
50148
50393
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
50394
|
+
IM: "IM";
|
|
50149
50395
|
AF: "AF";
|
|
50150
50396
|
AL: "AL";
|
|
50151
50397
|
DZ: "DZ";
|
|
@@ -50234,7 +50480,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
50234
50480
|
IR: "IR";
|
|
50235
50481
|
IQ: "IQ";
|
|
50236
50482
|
IE: "IE";
|
|
50237
|
-
IM: "IM";
|
|
50238
50483
|
IL: "IL";
|
|
50239
50484
|
IT: "IT";
|
|
50240
50485
|
CI: "CI";
|
|
@@ -50711,6 +50956,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
50711
50956
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
50712
50957
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
50713
50958
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
50959
|
+
IM: "IM";
|
|
50714
50960
|
AF: "AF";
|
|
50715
50961
|
AL: "AL";
|
|
50716
50962
|
DZ: "DZ";
|
|
@@ -50799,7 +51045,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
50799
51045
|
IR: "IR";
|
|
50800
51046
|
IQ: "IQ";
|
|
50801
51047
|
IE: "IE";
|
|
50802
|
-
IM: "IM";
|
|
50803
51048
|
IL: "IL";
|
|
50804
51049
|
IT: "IT";
|
|
50805
51050
|
CI: "CI";
|
|
@@ -50982,6 +51227,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
50982
51227
|
AVAX: "AVAX";
|
|
50983
51228
|
}>>;
|
|
50984
51229
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
51230
|
+
IM: "IM";
|
|
50985
51231
|
AF: "AF";
|
|
50986
51232
|
AL: "AL";
|
|
50987
51233
|
DZ: "DZ";
|
|
@@ -51070,7 +51316,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
51070
51316
|
IR: "IR";
|
|
51071
51317
|
IQ: "IQ";
|
|
51072
51318
|
IE: "IE";
|
|
51073
|
-
IM: "IM";
|
|
51074
51319
|
IL: "IL";
|
|
51075
51320
|
IT: "IT";
|
|
51076
51321
|
CI: "CI";
|
|
@@ -51547,6 +51792,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
51547
51792
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
51548
51793
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
51549
51794
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
51795
|
+
IM: "IM";
|
|
51550
51796
|
AF: "AF";
|
|
51551
51797
|
AL: "AL";
|
|
51552
51798
|
DZ: "DZ";
|
|
@@ -51635,7 +51881,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
51635
51881
|
IR: "IR";
|
|
51636
51882
|
IQ: "IQ";
|
|
51637
51883
|
IE: "IE";
|
|
51638
|
-
IM: "IM";
|
|
51639
51884
|
IL: "IL";
|
|
51640
51885
|
IT: "IT";
|
|
51641
51886
|
CI: "CI";
|
|
@@ -51818,6 +52063,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
51818
52063
|
AVAX: "AVAX";
|
|
51819
52064
|
}>>;
|
|
51820
52065
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
52066
|
+
IM: "IM";
|
|
51821
52067
|
AF: "AF";
|
|
51822
52068
|
AL: "AL";
|
|
51823
52069
|
DZ: "DZ";
|
|
@@ -51906,7 +52152,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
51906
52152
|
IR: "IR";
|
|
51907
52153
|
IQ: "IQ";
|
|
51908
52154
|
IE: "IE";
|
|
51909
|
-
IM: "IM";
|
|
51910
52155
|
IL: "IL";
|
|
51911
52156
|
IT: "IT";
|
|
51912
52157
|
CI: "CI";
|
|
@@ -52464,6 +52709,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
52464
52709
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
52465
52710
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
52466
52711
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
52712
|
+
IM: "IM";
|
|
52467
52713
|
AF: "AF";
|
|
52468
52714
|
AL: "AL";
|
|
52469
52715
|
DZ: "DZ";
|
|
@@ -52552,7 +52798,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
52552
52798
|
IR: "IR";
|
|
52553
52799
|
IQ: "IQ";
|
|
52554
52800
|
IE: "IE";
|
|
52555
|
-
IM: "IM";
|
|
52556
52801
|
IL: "IL";
|
|
52557
52802
|
IT: "IT";
|
|
52558
52803
|
CI: "CI";
|
|
@@ -52735,6 +52980,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
52735
52980
|
AVAX: "AVAX";
|
|
52736
52981
|
}>>;
|
|
52737
52982
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
52983
|
+
IM: "IM";
|
|
52738
52984
|
AF: "AF";
|
|
52739
52985
|
AL: "AL";
|
|
52740
52986
|
DZ: "DZ";
|
|
@@ -52823,7 +53069,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
52823
53069
|
IR: "IR";
|
|
52824
53070
|
IQ: "IQ";
|
|
52825
53071
|
IE: "IE";
|
|
52826
|
-
IM: "IM";
|
|
52827
53072
|
IL: "IL";
|
|
52828
53073
|
IT: "IT";
|
|
52829
53074
|
CI: "CI";
|
|
@@ -53027,6 +53272,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
53027
53272
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
53028
53273
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
53029
53274
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
53275
|
+
IM: "IM";
|
|
53030
53276
|
AF: "AF";
|
|
53031
53277
|
AL: "AL";
|
|
53032
53278
|
DZ: "DZ";
|
|
@@ -53115,7 +53361,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
53115
53361
|
IR: "IR";
|
|
53116
53362
|
IQ: "IQ";
|
|
53117
53363
|
IE: "IE";
|
|
53118
|
-
IM: "IM";
|
|
53119
53364
|
IL: "IL";
|
|
53120
53365
|
IT: "IT";
|
|
53121
53366
|
CI: "CI";
|
|
@@ -53298,6 +53543,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
53298
53543
|
AVAX: "AVAX";
|
|
53299
53544
|
}>>;
|
|
53300
53545
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
53546
|
+
IM: "IM";
|
|
53301
53547
|
AF: "AF";
|
|
53302
53548
|
AL: "AL";
|
|
53303
53549
|
DZ: "DZ";
|
|
@@ -53386,7 +53632,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
53386
53632
|
IR: "IR";
|
|
53387
53633
|
IQ: "IQ";
|
|
53388
53634
|
IE: "IE";
|
|
53389
|
-
IM: "IM";
|
|
53390
53635
|
IL: "IL";
|
|
53391
53636
|
IT: "IT";
|
|
53392
53637
|
CI: "CI";
|
|
@@ -53590,6 +53835,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
53590
53835
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
53591
53836
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
53592
53837
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
53838
|
+
IM: "IM";
|
|
53593
53839
|
AF: "AF";
|
|
53594
53840
|
AL: "AL";
|
|
53595
53841
|
DZ: "DZ";
|
|
@@ -53678,7 +53924,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
53678
53924
|
IR: "IR";
|
|
53679
53925
|
IQ: "IQ";
|
|
53680
53926
|
IE: "IE";
|
|
53681
|
-
IM: "IM";
|
|
53682
53927
|
IL: "IL";
|
|
53683
53928
|
IT: "IT";
|
|
53684
53929
|
CI: "CI";
|
|
@@ -53861,6 +54106,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
53861
54106
|
AVAX: "AVAX";
|
|
53862
54107
|
}>>;
|
|
53863
54108
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
54109
|
+
IM: "IM";
|
|
53864
54110
|
AF: "AF";
|
|
53865
54111
|
AL: "AL";
|
|
53866
54112
|
DZ: "DZ";
|
|
@@ -53949,7 +54195,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
53949
54195
|
IR: "IR";
|
|
53950
54196
|
IQ: "IQ";
|
|
53951
54197
|
IE: "IE";
|
|
53952
|
-
IM: "IM";
|
|
53953
54198
|
IL: "IL";
|
|
53954
54199
|
IT: "IT";
|
|
53955
54200
|
CI: "CI";
|
|
@@ -54438,6 +54683,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
54438
54683
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
54439
54684
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
54440
54685
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
54686
|
+
IM: "IM";
|
|
54441
54687
|
AF: "AF";
|
|
54442
54688
|
AL: "AL";
|
|
54443
54689
|
DZ: "DZ";
|
|
@@ -54526,7 +54772,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
54526
54772
|
IR: "IR";
|
|
54527
54773
|
IQ: "IQ";
|
|
54528
54774
|
IE: "IE";
|
|
54529
|
-
IM: "IM";
|
|
54530
54775
|
IL: "IL";
|
|
54531
54776
|
IT: "IT";
|
|
54532
54777
|
CI: "CI";
|
|
@@ -54709,6 +54954,7 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
54709
54954
|
AVAX: "AVAX";
|
|
54710
54955
|
}>>;
|
|
54711
54956
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
54957
|
+
IM: "IM";
|
|
54712
54958
|
AF: "AF";
|
|
54713
54959
|
AL: "AL";
|
|
54714
54960
|
DZ: "DZ";
|
|
@@ -54797,7 +55043,6 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
|
|
|
54797
55043
|
IR: "IR";
|
|
54798
55044
|
IQ: "IQ";
|
|
54799
55045
|
IE: "IE";
|
|
54800
|
-
IM: "IM";
|
|
54801
55046
|
IL: "IL";
|
|
54802
55047
|
IT: "IT";
|
|
54803
55048
|
CI: "CI";
|
|
@@ -55024,14 +55269,14 @@ interface GetOrganizationOrdersQuery extends z$1.infer<typeof getOrdersQuerySche
|
|
|
55024
55269
|
interface GetOrganizationOrdersResponseBody extends z$1.infer<typeof getOrdersResponseSchema> {
|
|
55025
55270
|
}
|
|
55026
55271
|
|
|
55027
|
-
declare const paramsSchema$
|
|
55272
|
+
declare const paramsSchema$Y: z$1.ZodObject<{
|
|
55028
55273
|
orderId: z$1.ZodUUID;
|
|
55029
55274
|
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
55030
55275
|
order: "order";
|
|
55031
55276
|
draft: "draft";
|
|
55032
55277
|
}>>;
|
|
55033
55278
|
}, z$1.core.$strip>;
|
|
55034
|
-
declare const responseBodySchema$
|
|
55279
|
+
declare const responseBodySchema$1a: z$1.ZodObject<{
|
|
55035
55280
|
message: z$1.ZodString;
|
|
55036
55281
|
order: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
55037
55282
|
tags: z$1.ZodArray<z$1.ZodString>;
|
|
@@ -55245,6 +55490,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
55245
55490
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
55246
55491
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
55247
55492
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
55493
|
+
IM: "IM";
|
|
55248
55494
|
AF: "AF";
|
|
55249
55495
|
AL: "AL";
|
|
55250
55496
|
DZ: "DZ";
|
|
@@ -55333,7 +55579,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
55333
55579
|
IR: "IR";
|
|
55334
55580
|
IQ: "IQ";
|
|
55335
55581
|
IE: "IE";
|
|
55336
|
-
IM: "IM";
|
|
55337
55582
|
IL: "IL";
|
|
55338
55583
|
IT: "IT";
|
|
55339
55584
|
CI: "CI";
|
|
@@ -55516,6 +55761,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
55516
55761
|
AVAX: "AVAX";
|
|
55517
55762
|
}>>;
|
|
55518
55763
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
55764
|
+
IM: "IM";
|
|
55519
55765
|
AF: "AF";
|
|
55520
55766
|
AL: "AL";
|
|
55521
55767
|
DZ: "DZ";
|
|
@@ -55604,7 +55850,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
55604
55850
|
IR: "IR";
|
|
55605
55851
|
IQ: "IQ";
|
|
55606
55852
|
IE: "IE";
|
|
55607
|
-
IM: "IM";
|
|
55608
55853
|
IL: "IL";
|
|
55609
55854
|
IT: "IT";
|
|
55610
55855
|
CI: "CI";
|
|
@@ -55808,6 +56053,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
55808
56053
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
55809
56054
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
55810
56055
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
56056
|
+
IM: "IM";
|
|
55811
56057
|
AF: "AF";
|
|
55812
56058
|
AL: "AL";
|
|
55813
56059
|
DZ: "DZ";
|
|
@@ -55896,7 +56142,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
55896
56142
|
IR: "IR";
|
|
55897
56143
|
IQ: "IQ";
|
|
55898
56144
|
IE: "IE";
|
|
55899
|
-
IM: "IM";
|
|
55900
56145
|
IL: "IL";
|
|
55901
56146
|
IT: "IT";
|
|
55902
56147
|
CI: "CI";
|
|
@@ -56079,6 +56324,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
56079
56324
|
AVAX: "AVAX";
|
|
56080
56325
|
}>>;
|
|
56081
56326
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
56327
|
+
IM: "IM";
|
|
56082
56328
|
AF: "AF";
|
|
56083
56329
|
AL: "AL";
|
|
56084
56330
|
DZ: "DZ";
|
|
@@ -56167,7 +56413,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
56167
56413
|
IR: "IR";
|
|
56168
56414
|
IQ: "IQ";
|
|
56169
56415
|
IE: "IE";
|
|
56170
|
-
IM: "IM";
|
|
56171
56416
|
IL: "IL";
|
|
56172
56417
|
IT: "IT";
|
|
56173
56418
|
CI: "CI";
|
|
@@ -56371,6 +56616,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
56371
56616
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
56372
56617
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
56373
56618
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
56619
|
+
IM: "IM";
|
|
56374
56620
|
AF: "AF";
|
|
56375
56621
|
AL: "AL";
|
|
56376
56622
|
DZ: "DZ";
|
|
@@ -56459,7 +56705,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
56459
56705
|
IR: "IR";
|
|
56460
56706
|
IQ: "IQ";
|
|
56461
56707
|
IE: "IE";
|
|
56462
|
-
IM: "IM";
|
|
56463
56708
|
IL: "IL";
|
|
56464
56709
|
IT: "IT";
|
|
56465
56710
|
CI: "CI";
|
|
@@ -56642,6 +56887,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
56642
56887
|
AVAX: "AVAX";
|
|
56643
56888
|
}>>;
|
|
56644
56889
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
56890
|
+
IM: "IM";
|
|
56645
56891
|
AF: "AF";
|
|
56646
56892
|
AL: "AL";
|
|
56647
56893
|
DZ: "DZ";
|
|
@@ -56730,7 +56976,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
56730
56976
|
IR: "IR";
|
|
56731
56977
|
IQ: "IQ";
|
|
56732
56978
|
IE: "IE";
|
|
56733
|
-
IM: "IM";
|
|
56734
56979
|
IL: "IL";
|
|
56735
56980
|
IT: "IT";
|
|
56736
56981
|
CI: "CI";
|
|
@@ -57207,6 +57452,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
57207
57452
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
57208
57453
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
57209
57454
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
57455
|
+
IM: "IM";
|
|
57210
57456
|
AF: "AF";
|
|
57211
57457
|
AL: "AL";
|
|
57212
57458
|
DZ: "DZ";
|
|
@@ -57295,7 +57541,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
57295
57541
|
IR: "IR";
|
|
57296
57542
|
IQ: "IQ";
|
|
57297
57543
|
IE: "IE";
|
|
57298
|
-
IM: "IM";
|
|
57299
57544
|
IL: "IL";
|
|
57300
57545
|
IT: "IT";
|
|
57301
57546
|
CI: "CI";
|
|
@@ -57478,6 +57723,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
57478
57723
|
AVAX: "AVAX";
|
|
57479
57724
|
}>>;
|
|
57480
57725
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
57726
|
+
IM: "IM";
|
|
57481
57727
|
AF: "AF";
|
|
57482
57728
|
AL: "AL";
|
|
57483
57729
|
DZ: "DZ";
|
|
@@ -57566,7 +57812,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
57566
57812
|
IR: "IR";
|
|
57567
57813
|
IQ: "IQ";
|
|
57568
57814
|
IE: "IE";
|
|
57569
|
-
IM: "IM";
|
|
57570
57815
|
IL: "IL";
|
|
57571
57816
|
IT: "IT";
|
|
57572
57817
|
CI: "CI";
|
|
@@ -58043,6 +58288,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
58043
58288
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
58044
58289
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
58045
58290
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
58291
|
+
IM: "IM";
|
|
58046
58292
|
AF: "AF";
|
|
58047
58293
|
AL: "AL";
|
|
58048
58294
|
DZ: "DZ";
|
|
@@ -58131,7 +58377,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
58131
58377
|
IR: "IR";
|
|
58132
58378
|
IQ: "IQ";
|
|
58133
58379
|
IE: "IE";
|
|
58134
|
-
IM: "IM";
|
|
58135
58380
|
IL: "IL";
|
|
58136
58381
|
IT: "IT";
|
|
58137
58382
|
CI: "CI";
|
|
@@ -58314,6 +58559,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
58314
58559
|
AVAX: "AVAX";
|
|
58315
58560
|
}>>;
|
|
58316
58561
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
58562
|
+
IM: "IM";
|
|
58317
58563
|
AF: "AF";
|
|
58318
58564
|
AL: "AL";
|
|
58319
58565
|
DZ: "DZ";
|
|
@@ -58402,7 +58648,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
58402
58648
|
IR: "IR";
|
|
58403
58649
|
IQ: "IQ";
|
|
58404
58650
|
IE: "IE";
|
|
58405
|
-
IM: "IM";
|
|
58406
58651
|
IL: "IL";
|
|
58407
58652
|
IT: "IT";
|
|
58408
58653
|
CI: "CI";
|
|
@@ -58955,6 +59200,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
58955
59200
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
58956
59201
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
58957
59202
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
59203
|
+
IM: "IM";
|
|
58958
59204
|
AF: "AF";
|
|
58959
59205
|
AL: "AL";
|
|
58960
59206
|
DZ: "DZ";
|
|
@@ -59043,7 +59289,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
59043
59289
|
IR: "IR";
|
|
59044
59290
|
IQ: "IQ";
|
|
59045
59291
|
IE: "IE";
|
|
59046
|
-
IM: "IM";
|
|
59047
59292
|
IL: "IL";
|
|
59048
59293
|
IT: "IT";
|
|
59049
59294
|
CI: "CI";
|
|
@@ -59226,6 +59471,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
59226
59471
|
AVAX: "AVAX";
|
|
59227
59472
|
}>>;
|
|
59228
59473
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
59474
|
+
IM: "IM";
|
|
59229
59475
|
AF: "AF";
|
|
59230
59476
|
AL: "AL";
|
|
59231
59477
|
DZ: "DZ";
|
|
@@ -59314,7 +59560,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
59314
59560
|
IR: "IR";
|
|
59315
59561
|
IQ: "IQ";
|
|
59316
59562
|
IE: "IE";
|
|
59317
|
-
IM: "IM";
|
|
59318
59563
|
IL: "IL";
|
|
59319
59564
|
IT: "IT";
|
|
59320
59565
|
CI: "CI";
|
|
@@ -59518,6 +59763,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
59518
59763
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
59519
59764
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
59520
59765
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
59766
|
+
IM: "IM";
|
|
59521
59767
|
AF: "AF";
|
|
59522
59768
|
AL: "AL";
|
|
59523
59769
|
DZ: "DZ";
|
|
@@ -59606,7 +59852,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
59606
59852
|
IR: "IR";
|
|
59607
59853
|
IQ: "IQ";
|
|
59608
59854
|
IE: "IE";
|
|
59609
|
-
IM: "IM";
|
|
59610
59855
|
IL: "IL";
|
|
59611
59856
|
IT: "IT";
|
|
59612
59857
|
CI: "CI";
|
|
@@ -59789,6 +60034,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
59789
60034
|
AVAX: "AVAX";
|
|
59790
60035
|
}>>;
|
|
59791
60036
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
60037
|
+
IM: "IM";
|
|
59792
60038
|
AF: "AF";
|
|
59793
60039
|
AL: "AL";
|
|
59794
60040
|
DZ: "DZ";
|
|
@@ -59877,7 +60123,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
59877
60123
|
IR: "IR";
|
|
59878
60124
|
IQ: "IQ";
|
|
59879
60125
|
IE: "IE";
|
|
59880
|
-
IM: "IM";
|
|
59881
60126
|
IL: "IL";
|
|
59882
60127
|
IT: "IT";
|
|
59883
60128
|
CI: "CI";
|
|
@@ -60081,6 +60326,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
60081
60326
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
60082
60327
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
60083
60328
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
60329
|
+
IM: "IM";
|
|
60084
60330
|
AF: "AF";
|
|
60085
60331
|
AL: "AL";
|
|
60086
60332
|
DZ: "DZ";
|
|
@@ -60169,7 +60415,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
60169
60415
|
IR: "IR";
|
|
60170
60416
|
IQ: "IQ";
|
|
60171
60417
|
IE: "IE";
|
|
60172
|
-
IM: "IM";
|
|
60173
60418
|
IL: "IL";
|
|
60174
60419
|
IT: "IT";
|
|
60175
60420
|
CI: "CI";
|
|
@@ -60352,6 +60597,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
60352
60597
|
AVAX: "AVAX";
|
|
60353
60598
|
}>>;
|
|
60354
60599
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
60600
|
+
IM: "IM";
|
|
60355
60601
|
AF: "AF";
|
|
60356
60602
|
AL: "AL";
|
|
60357
60603
|
DZ: "DZ";
|
|
@@ -60440,7 +60686,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
60440
60686
|
IR: "IR";
|
|
60441
60687
|
IQ: "IQ";
|
|
60442
60688
|
IE: "IE";
|
|
60443
|
-
IM: "IM";
|
|
60444
60689
|
IL: "IL";
|
|
60445
60690
|
IT: "IT";
|
|
60446
60691
|
CI: "CI";
|
|
@@ -60929,6 +61174,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
60929
61174
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
60930
61175
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
60931
61176
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
61177
|
+
IM: "IM";
|
|
60932
61178
|
AF: "AF";
|
|
60933
61179
|
AL: "AL";
|
|
60934
61180
|
DZ: "DZ";
|
|
@@ -61017,7 +61263,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
61017
61263
|
IR: "IR";
|
|
61018
61264
|
IQ: "IQ";
|
|
61019
61265
|
IE: "IE";
|
|
61020
|
-
IM: "IM";
|
|
61021
61266
|
IL: "IL";
|
|
61022
61267
|
IT: "IT";
|
|
61023
61268
|
CI: "CI";
|
|
@@ -61200,6 +61445,7 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
61200
61445
|
AVAX: "AVAX";
|
|
61201
61446
|
}>>;
|
|
61202
61447
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
61448
|
+
IM: "IM";
|
|
61203
61449
|
AF: "AF";
|
|
61204
61450
|
AL: "AL";
|
|
61205
61451
|
DZ: "DZ";
|
|
@@ -61288,7 +61534,6 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
61288
61534
|
IR: "IR";
|
|
61289
61535
|
IQ: "IQ";
|
|
61290
61536
|
IE: "IE";
|
|
61291
|
-
IM: "IM";
|
|
61292
61537
|
IL: "IL";
|
|
61293
61538
|
IT: "IT";
|
|
61294
61539
|
CI: "CI";
|
|
@@ -61500,21 +61745,21 @@ declare const responseBodySchema$19: z$1.ZodObject<{
|
|
|
61500
61745
|
}, z$1.core.$strip>>;
|
|
61501
61746
|
}, z$1.core.$strip>]>;
|
|
61502
61747
|
}, z$1.core.$strip>;
|
|
61503
|
-
interface GetOrderParams extends z$1.infer<typeof paramsSchema$
|
|
61748
|
+
interface GetOrderParams extends z$1.infer<typeof paramsSchema$Y> {
|
|
61504
61749
|
}
|
|
61505
|
-
interface GetOrderResponseBody extends z$1.infer<typeof responseBodySchema$
|
|
61750
|
+
interface GetOrderResponseBody extends z$1.infer<typeof responseBodySchema$1a> {
|
|
61506
61751
|
}
|
|
61507
61752
|
|
|
61508
|
-
declare const paramsSchema$
|
|
61753
|
+
declare const paramsSchema$X: z$1.ZodObject<{
|
|
61509
61754
|
orderId: z$1.ZodUUID;
|
|
61510
61755
|
}, z$1.core.$strip>;
|
|
61511
|
-
type GetOrderTransactionsParams = z$1.infer<typeof paramsSchema$
|
|
61756
|
+
type GetOrderTransactionsParams = z$1.infer<typeof paramsSchema$X>;
|
|
61512
61757
|
type GetOrderTransactionsResponseBody = TransactionsResponse;
|
|
61513
61758
|
|
|
61514
|
-
declare const paramsSchema$
|
|
61759
|
+
declare const paramsSchema$W: z$1.ZodObject<{
|
|
61515
61760
|
orderId: z$1.ZodUUID;
|
|
61516
61761
|
}, z$1.core.$strip>;
|
|
61517
|
-
declare const requestBodySchema$
|
|
61762
|
+
declare const requestBodySchema$x: z$1.ZodObject<{
|
|
61518
61763
|
order: z$1.ZodObject<{
|
|
61519
61764
|
id: z$1.ZodUUID;
|
|
61520
61765
|
organizationId: z$1.ZodUUID;
|
|
@@ -61836,6 +62081,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
61836
62081
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
61837
62082
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
61838
62083
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
62084
|
+
IM: "IM";
|
|
61839
62085
|
AF: "AF";
|
|
61840
62086
|
AL: "AL";
|
|
61841
62087
|
DZ: "DZ";
|
|
@@ -61924,7 +62170,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
61924
62170
|
IR: "IR";
|
|
61925
62171
|
IQ: "IQ";
|
|
61926
62172
|
IE: "IE";
|
|
61927
|
-
IM: "IM";
|
|
61928
62173
|
IL: "IL";
|
|
61929
62174
|
IT: "IT";
|
|
61930
62175
|
CI: "CI";
|
|
@@ -62107,6 +62352,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
62107
62352
|
AVAX: "AVAX";
|
|
62108
62353
|
}>>;
|
|
62109
62354
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
62355
|
+
IM: "IM";
|
|
62110
62356
|
AF: "AF";
|
|
62111
62357
|
AL: "AL";
|
|
62112
62358
|
DZ: "DZ";
|
|
@@ -62195,7 +62441,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
62195
62441
|
IR: "IR";
|
|
62196
62442
|
IQ: "IQ";
|
|
62197
62443
|
IE: "IE";
|
|
62198
|
-
IM: "IM";
|
|
62199
62444
|
IL: "IL";
|
|
62200
62445
|
IT: "IT";
|
|
62201
62446
|
CI: "CI";
|
|
@@ -62399,6 +62644,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
62399
62644
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
62400
62645
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
62401
62646
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
62647
|
+
IM: "IM";
|
|
62402
62648
|
AF: "AF";
|
|
62403
62649
|
AL: "AL";
|
|
62404
62650
|
DZ: "DZ";
|
|
@@ -62487,7 +62733,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
62487
62733
|
IR: "IR";
|
|
62488
62734
|
IQ: "IQ";
|
|
62489
62735
|
IE: "IE";
|
|
62490
|
-
IM: "IM";
|
|
62491
62736
|
IL: "IL";
|
|
62492
62737
|
IT: "IT";
|
|
62493
62738
|
CI: "CI";
|
|
@@ -62670,6 +62915,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
62670
62915
|
AVAX: "AVAX";
|
|
62671
62916
|
}>>;
|
|
62672
62917
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
62918
|
+
IM: "IM";
|
|
62673
62919
|
AF: "AF";
|
|
62674
62920
|
AL: "AL";
|
|
62675
62921
|
DZ: "DZ";
|
|
@@ -62758,7 +63004,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
62758
63004
|
IR: "IR";
|
|
62759
63005
|
IQ: "IQ";
|
|
62760
63006
|
IE: "IE";
|
|
62761
|
-
IM: "IM";
|
|
62762
63007
|
IL: "IL";
|
|
62763
63008
|
IT: "IT";
|
|
62764
63009
|
CI: "CI";
|
|
@@ -62962,6 +63207,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
62962
63207
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
62963
63208
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
62964
63209
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
63210
|
+
IM: "IM";
|
|
62965
63211
|
AF: "AF";
|
|
62966
63212
|
AL: "AL";
|
|
62967
63213
|
DZ: "DZ";
|
|
@@ -63050,7 +63296,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
63050
63296
|
IR: "IR";
|
|
63051
63297
|
IQ: "IQ";
|
|
63052
63298
|
IE: "IE";
|
|
63053
|
-
IM: "IM";
|
|
63054
63299
|
IL: "IL";
|
|
63055
63300
|
IT: "IT";
|
|
63056
63301
|
CI: "CI";
|
|
@@ -63233,6 +63478,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
63233
63478
|
AVAX: "AVAX";
|
|
63234
63479
|
}>>;
|
|
63235
63480
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
63481
|
+
IM: "IM";
|
|
63236
63482
|
AF: "AF";
|
|
63237
63483
|
AL: "AL";
|
|
63238
63484
|
DZ: "DZ";
|
|
@@ -63321,7 +63567,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
63321
63567
|
IR: "IR";
|
|
63322
63568
|
IQ: "IQ";
|
|
63323
63569
|
IE: "IE";
|
|
63324
|
-
IM: "IM";
|
|
63325
63570
|
IL: "IL";
|
|
63326
63571
|
IT: "IT";
|
|
63327
63572
|
CI: "CI";
|
|
@@ -63788,6 +64033,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
63788
64033
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
63789
64034
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
63790
64035
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
64036
|
+
IM: "IM";
|
|
63791
64037
|
AF: "AF";
|
|
63792
64038
|
AL: "AL";
|
|
63793
64039
|
DZ: "DZ";
|
|
@@ -63876,7 +64122,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
63876
64122
|
IR: "IR";
|
|
63877
64123
|
IQ: "IQ";
|
|
63878
64124
|
IE: "IE";
|
|
63879
|
-
IM: "IM";
|
|
63880
64125
|
IL: "IL";
|
|
63881
64126
|
IT: "IT";
|
|
63882
64127
|
CI: "CI";
|
|
@@ -64059,6 +64304,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
64059
64304
|
AVAX: "AVAX";
|
|
64060
64305
|
}>>;
|
|
64061
64306
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
64307
|
+
IM: "IM";
|
|
64062
64308
|
AF: "AF";
|
|
64063
64309
|
AL: "AL";
|
|
64064
64310
|
DZ: "DZ";
|
|
@@ -64147,7 +64393,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
64147
64393
|
IR: "IR";
|
|
64148
64394
|
IQ: "IQ";
|
|
64149
64395
|
IE: "IE";
|
|
64150
|
-
IM: "IM";
|
|
64151
64396
|
IL: "IL";
|
|
64152
64397
|
IT: "IT";
|
|
64153
64398
|
CI: "CI";
|
|
@@ -64351,6 +64596,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
64351
64596
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
64352
64597
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
64353
64598
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
64599
|
+
IM: "IM";
|
|
64354
64600
|
AF: "AF";
|
|
64355
64601
|
AL: "AL";
|
|
64356
64602
|
DZ: "DZ";
|
|
@@ -64439,7 +64685,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
64439
64685
|
IR: "IR";
|
|
64440
64686
|
IQ: "IQ";
|
|
64441
64687
|
IE: "IE";
|
|
64442
|
-
IM: "IM";
|
|
64443
64688
|
IL: "IL";
|
|
64444
64689
|
IT: "IT";
|
|
64445
64690
|
CI: "CI";
|
|
@@ -64622,6 +64867,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
64622
64867
|
AVAX: "AVAX";
|
|
64623
64868
|
}>>;
|
|
64624
64869
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
64870
|
+
IM: "IM";
|
|
64625
64871
|
AF: "AF";
|
|
64626
64872
|
AL: "AL";
|
|
64627
64873
|
DZ: "DZ";
|
|
@@ -64710,7 +64956,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
64710
64956
|
IR: "IR";
|
|
64711
64957
|
IQ: "IQ";
|
|
64712
64958
|
IE: "IE";
|
|
64713
|
-
IM: "IM";
|
|
64714
64959
|
IL: "IL";
|
|
64715
64960
|
IT: "IT";
|
|
64716
64961
|
CI: "CI";
|
|
@@ -64914,6 +65159,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
64914
65159
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
64915
65160
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
64916
65161
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
65162
|
+
IM: "IM";
|
|
64917
65163
|
AF: "AF";
|
|
64918
65164
|
AL: "AL";
|
|
64919
65165
|
DZ: "DZ";
|
|
@@ -65002,7 +65248,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
65002
65248
|
IR: "IR";
|
|
65003
65249
|
IQ: "IQ";
|
|
65004
65250
|
IE: "IE";
|
|
65005
|
-
IM: "IM";
|
|
65006
65251
|
IL: "IL";
|
|
65007
65252
|
IT: "IT";
|
|
65008
65253
|
CI: "CI";
|
|
@@ -65185,6 +65430,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
65185
65430
|
AVAX: "AVAX";
|
|
65186
65431
|
}>>;
|
|
65187
65432
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
65433
|
+
IM: "IM";
|
|
65188
65434
|
AF: "AF";
|
|
65189
65435
|
AL: "AL";
|
|
65190
65436
|
DZ: "DZ";
|
|
@@ -65273,7 +65519,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
65273
65519
|
IR: "IR";
|
|
65274
65520
|
IQ: "IQ";
|
|
65275
65521
|
IE: "IE";
|
|
65276
|
-
IM: "IM";
|
|
65277
65522
|
IL: "IL";
|
|
65278
65523
|
IT: "IT";
|
|
65279
65524
|
CI: "CI";
|
|
@@ -65570,6 +65815,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
65570
65815
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
65571
65816
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
65572
65817
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
65818
|
+
IM: "IM";
|
|
65573
65819
|
AF: "AF";
|
|
65574
65820
|
AL: "AL";
|
|
65575
65821
|
DZ: "DZ";
|
|
@@ -65658,7 +65904,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
65658
65904
|
IR: "IR";
|
|
65659
65905
|
IQ: "IQ";
|
|
65660
65906
|
IE: "IE";
|
|
65661
|
-
IM: "IM";
|
|
65662
65907
|
IL: "IL";
|
|
65663
65908
|
IT: "IT";
|
|
65664
65909
|
CI: "CI";
|
|
@@ -65841,6 +66086,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
65841
66086
|
AVAX: "AVAX";
|
|
65842
66087
|
}>>;
|
|
65843
66088
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
66089
|
+
IM: "IM";
|
|
65844
66090
|
AF: "AF";
|
|
65845
66091
|
AL: "AL";
|
|
65846
66092
|
DZ: "DZ";
|
|
@@ -65929,7 +66175,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
65929
66175
|
IR: "IR";
|
|
65930
66176
|
IQ: "IQ";
|
|
65931
66177
|
IE: "IE";
|
|
65932
|
-
IM: "IM";
|
|
65933
66178
|
IL: "IL";
|
|
65934
66179
|
IT: "IT";
|
|
65935
66180
|
CI: "CI";
|
|
@@ -66274,6 +66519,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
66274
66519
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
66275
66520
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
66276
66521
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
66522
|
+
IM: "IM";
|
|
66277
66523
|
AF: "AF";
|
|
66278
66524
|
AL: "AL";
|
|
66279
66525
|
DZ: "DZ";
|
|
@@ -66362,7 +66608,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
66362
66608
|
IR: "IR";
|
|
66363
66609
|
IQ: "IQ";
|
|
66364
66610
|
IE: "IE";
|
|
66365
|
-
IM: "IM";
|
|
66366
66611
|
IL: "IL";
|
|
66367
66612
|
IT: "IT";
|
|
66368
66613
|
CI: "CI";
|
|
@@ -66545,6 +66790,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
66545
66790
|
AVAX: "AVAX";
|
|
66546
66791
|
}>>;
|
|
66547
66792
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
66793
|
+
IM: "IM";
|
|
66548
66794
|
AF: "AF";
|
|
66549
66795
|
AL: "AL";
|
|
66550
66796
|
DZ: "DZ";
|
|
@@ -66633,7 +66879,6 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
66633
66879
|
IR: "IR";
|
|
66634
66880
|
IQ: "IQ";
|
|
66635
66881
|
IE: "IE";
|
|
66636
|
-
IM: "IM";
|
|
66637
66882
|
IL: "IL";
|
|
66638
66883
|
IT: "IT";
|
|
66639
66884
|
CI: "CI";
|
|
@@ -66782,7 +67027,7 @@ declare const requestBodySchema$w: z$1.ZodObject<{
|
|
|
66782
67027
|
}, z$1.core.$strip>>;
|
|
66783
67028
|
}, z$1.core.$strip>;
|
|
66784
67029
|
}, z$1.core.$strip>;
|
|
66785
|
-
declare const responseBodySchema$
|
|
67030
|
+
declare const responseBodySchema$19: z$1.ZodObject<{
|
|
66786
67031
|
message: z$1.ZodString;
|
|
66787
67032
|
order: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
66788
67033
|
tags: z$1.ZodArray<z$1.ZodString>;
|
|
@@ -66996,6 +67241,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
66996
67241
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
66997
67242
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
66998
67243
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
67244
|
+
IM: "IM";
|
|
66999
67245
|
AF: "AF";
|
|
67000
67246
|
AL: "AL";
|
|
67001
67247
|
DZ: "DZ";
|
|
@@ -67084,7 +67330,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
67084
67330
|
IR: "IR";
|
|
67085
67331
|
IQ: "IQ";
|
|
67086
67332
|
IE: "IE";
|
|
67087
|
-
IM: "IM";
|
|
67088
67333
|
IL: "IL";
|
|
67089
67334
|
IT: "IT";
|
|
67090
67335
|
CI: "CI";
|
|
@@ -67267,6 +67512,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
67267
67512
|
AVAX: "AVAX";
|
|
67268
67513
|
}>>;
|
|
67269
67514
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
67515
|
+
IM: "IM";
|
|
67270
67516
|
AF: "AF";
|
|
67271
67517
|
AL: "AL";
|
|
67272
67518
|
DZ: "DZ";
|
|
@@ -67355,7 +67601,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
67355
67601
|
IR: "IR";
|
|
67356
67602
|
IQ: "IQ";
|
|
67357
67603
|
IE: "IE";
|
|
67358
|
-
IM: "IM";
|
|
67359
67604
|
IL: "IL";
|
|
67360
67605
|
IT: "IT";
|
|
67361
67606
|
CI: "CI";
|
|
@@ -67559,6 +67804,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
67559
67804
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
67560
67805
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
67561
67806
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
67807
|
+
IM: "IM";
|
|
67562
67808
|
AF: "AF";
|
|
67563
67809
|
AL: "AL";
|
|
67564
67810
|
DZ: "DZ";
|
|
@@ -67647,7 +67893,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
67647
67893
|
IR: "IR";
|
|
67648
67894
|
IQ: "IQ";
|
|
67649
67895
|
IE: "IE";
|
|
67650
|
-
IM: "IM";
|
|
67651
67896
|
IL: "IL";
|
|
67652
67897
|
IT: "IT";
|
|
67653
67898
|
CI: "CI";
|
|
@@ -67830,6 +68075,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
67830
68075
|
AVAX: "AVAX";
|
|
67831
68076
|
}>>;
|
|
67832
68077
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
68078
|
+
IM: "IM";
|
|
67833
68079
|
AF: "AF";
|
|
67834
68080
|
AL: "AL";
|
|
67835
68081
|
DZ: "DZ";
|
|
@@ -67918,7 +68164,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
67918
68164
|
IR: "IR";
|
|
67919
68165
|
IQ: "IQ";
|
|
67920
68166
|
IE: "IE";
|
|
67921
|
-
IM: "IM";
|
|
67922
68167
|
IL: "IL";
|
|
67923
68168
|
IT: "IT";
|
|
67924
68169
|
CI: "CI";
|
|
@@ -68122,6 +68367,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
68122
68367
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
68123
68368
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
68124
68369
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
68370
|
+
IM: "IM";
|
|
68125
68371
|
AF: "AF";
|
|
68126
68372
|
AL: "AL";
|
|
68127
68373
|
DZ: "DZ";
|
|
@@ -68210,7 +68456,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
68210
68456
|
IR: "IR";
|
|
68211
68457
|
IQ: "IQ";
|
|
68212
68458
|
IE: "IE";
|
|
68213
|
-
IM: "IM";
|
|
68214
68459
|
IL: "IL";
|
|
68215
68460
|
IT: "IT";
|
|
68216
68461
|
CI: "CI";
|
|
@@ -68393,6 +68638,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
68393
68638
|
AVAX: "AVAX";
|
|
68394
68639
|
}>>;
|
|
68395
68640
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
68641
|
+
IM: "IM";
|
|
68396
68642
|
AF: "AF";
|
|
68397
68643
|
AL: "AL";
|
|
68398
68644
|
DZ: "DZ";
|
|
@@ -68481,7 +68727,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
68481
68727
|
IR: "IR";
|
|
68482
68728
|
IQ: "IQ";
|
|
68483
68729
|
IE: "IE";
|
|
68484
|
-
IM: "IM";
|
|
68485
68730
|
IL: "IL";
|
|
68486
68731
|
IT: "IT";
|
|
68487
68732
|
CI: "CI";
|
|
@@ -68958,6 +69203,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
68958
69203
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
68959
69204
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
68960
69205
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
69206
|
+
IM: "IM";
|
|
68961
69207
|
AF: "AF";
|
|
68962
69208
|
AL: "AL";
|
|
68963
69209
|
DZ: "DZ";
|
|
@@ -69046,7 +69292,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
69046
69292
|
IR: "IR";
|
|
69047
69293
|
IQ: "IQ";
|
|
69048
69294
|
IE: "IE";
|
|
69049
|
-
IM: "IM";
|
|
69050
69295
|
IL: "IL";
|
|
69051
69296
|
IT: "IT";
|
|
69052
69297
|
CI: "CI";
|
|
@@ -69229,6 +69474,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
69229
69474
|
AVAX: "AVAX";
|
|
69230
69475
|
}>>;
|
|
69231
69476
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
69477
|
+
IM: "IM";
|
|
69232
69478
|
AF: "AF";
|
|
69233
69479
|
AL: "AL";
|
|
69234
69480
|
DZ: "DZ";
|
|
@@ -69317,7 +69563,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
69317
69563
|
IR: "IR";
|
|
69318
69564
|
IQ: "IQ";
|
|
69319
69565
|
IE: "IE";
|
|
69320
|
-
IM: "IM";
|
|
69321
69566
|
IL: "IL";
|
|
69322
69567
|
IT: "IT";
|
|
69323
69568
|
CI: "CI";
|
|
@@ -69794,6 +70039,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
69794
70039
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
69795
70040
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
69796
70041
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
70042
|
+
IM: "IM";
|
|
69797
70043
|
AF: "AF";
|
|
69798
70044
|
AL: "AL";
|
|
69799
70045
|
DZ: "DZ";
|
|
@@ -69882,7 +70128,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
69882
70128
|
IR: "IR";
|
|
69883
70129
|
IQ: "IQ";
|
|
69884
70130
|
IE: "IE";
|
|
69885
|
-
IM: "IM";
|
|
69886
70131
|
IL: "IL";
|
|
69887
70132
|
IT: "IT";
|
|
69888
70133
|
CI: "CI";
|
|
@@ -70065,6 +70310,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
70065
70310
|
AVAX: "AVAX";
|
|
70066
70311
|
}>>;
|
|
70067
70312
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
70313
|
+
IM: "IM";
|
|
70068
70314
|
AF: "AF";
|
|
70069
70315
|
AL: "AL";
|
|
70070
70316
|
DZ: "DZ";
|
|
@@ -70153,7 +70399,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
70153
70399
|
IR: "IR";
|
|
70154
70400
|
IQ: "IQ";
|
|
70155
70401
|
IE: "IE";
|
|
70156
|
-
IM: "IM";
|
|
70157
70402
|
IL: "IL";
|
|
70158
70403
|
IT: "IT";
|
|
70159
70404
|
CI: "CI";
|
|
@@ -70643,6 +70888,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
70643
70888
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
70644
70889
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
70645
70890
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
70891
|
+
IM: "IM";
|
|
70646
70892
|
AF: "AF";
|
|
70647
70893
|
AL: "AL";
|
|
70648
70894
|
DZ: "DZ";
|
|
@@ -70731,7 +70977,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
70731
70977
|
IR: "IR";
|
|
70732
70978
|
IQ: "IQ";
|
|
70733
70979
|
IE: "IE";
|
|
70734
|
-
IM: "IM";
|
|
70735
70980
|
IL: "IL";
|
|
70736
70981
|
IT: "IT";
|
|
70737
70982
|
CI: "CI";
|
|
@@ -70914,6 +71159,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
70914
71159
|
AVAX: "AVAX";
|
|
70915
71160
|
}>>;
|
|
70916
71161
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
71162
|
+
IM: "IM";
|
|
70917
71163
|
AF: "AF";
|
|
70918
71164
|
AL: "AL";
|
|
70919
71165
|
DZ: "DZ";
|
|
@@ -71002,7 +71248,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
71002
71248
|
IR: "IR";
|
|
71003
71249
|
IQ: "IQ";
|
|
71004
71250
|
IE: "IE";
|
|
71005
|
-
IM: "IM";
|
|
71006
71251
|
IL: "IL";
|
|
71007
71252
|
IT: "IT";
|
|
71008
71253
|
CI: "CI";
|
|
@@ -71206,6 +71451,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
71206
71451
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
71207
71452
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
71208
71453
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
71454
|
+
IM: "IM";
|
|
71209
71455
|
AF: "AF";
|
|
71210
71456
|
AL: "AL";
|
|
71211
71457
|
DZ: "DZ";
|
|
@@ -71294,7 +71540,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
71294
71540
|
IR: "IR";
|
|
71295
71541
|
IQ: "IQ";
|
|
71296
71542
|
IE: "IE";
|
|
71297
|
-
IM: "IM";
|
|
71298
71543
|
IL: "IL";
|
|
71299
71544
|
IT: "IT";
|
|
71300
71545
|
CI: "CI";
|
|
@@ -71477,6 +71722,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
71477
71722
|
AVAX: "AVAX";
|
|
71478
71723
|
}>>;
|
|
71479
71724
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
71725
|
+
IM: "IM";
|
|
71480
71726
|
AF: "AF";
|
|
71481
71727
|
AL: "AL";
|
|
71482
71728
|
DZ: "DZ";
|
|
@@ -71565,7 +71811,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
71565
71811
|
IR: "IR";
|
|
71566
71812
|
IQ: "IQ";
|
|
71567
71813
|
IE: "IE";
|
|
71568
|
-
IM: "IM";
|
|
71569
71814
|
IL: "IL";
|
|
71570
71815
|
IT: "IT";
|
|
71571
71816
|
CI: "CI";
|
|
@@ -71769,6 +72014,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
71769
72014
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
71770
72015
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
71771
72016
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
72017
|
+
IM: "IM";
|
|
71772
72018
|
AF: "AF";
|
|
71773
72019
|
AL: "AL";
|
|
71774
72020
|
DZ: "DZ";
|
|
@@ -71857,7 +72103,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
71857
72103
|
IR: "IR";
|
|
71858
72104
|
IQ: "IQ";
|
|
71859
72105
|
IE: "IE";
|
|
71860
|
-
IM: "IM";
|
|
71861
72106
|
IL: "IL";
|
|
71862
72107
|
IT: "IT";
|
|
71863
72108
|
CI: "CI";
|
|
@@ -72040,6 +72285,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
72040
72285
|
AVAX: "AVAX";
|
|
72041
72286
|
}>>;
|
|
72042
72287
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
72288
|
+
IM: "IM";
|
|
72043
72289
|
AF: "AF";
|
|
72044
72290
|
AL: "AL";
|
|
72045
72291
|
DZ: "DZ";
|
|
@@ -72128,7 +72374,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
72128
72374
|
IR: "IR";
|
|
72129
72375
|
IQ: "IQ";
|
|
72130
72376
|
IE: "IE";
|
|
72131
|
-
IM: "IM";
|
|
72132
72377
|
IL: "IL";
|
|
72133
72378
|
IT: "IT";
|
|
72134
72379
|
CI: "CI";
|
|
@@ -72617,6 +72862,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
72617
72862
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
72618
72863
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
72619
72864
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
72865
|
+
IM: "IM";
|
|
72620
72866
|
AF: "AF";
|
|
72621
72867
|
AL: "AL";
|
|
72622
72868
|
DZ: "DZ";
|
|
@@ -72705,7 +72951,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
72705
72951
|
IR: "IR";
|
|
72706
72952
|
IQ: "IQ";
|
|
72707
72953
|
IE: "IE";
|
|
72708
|
-
IM: "IM";
|
|
72709
72954
|
IL: "IL";
|
|
72710
72955
|
IT: "IT";
|
|
72711
72956
|
CI: "CI";
|
|
@@ -72888,6 +73133,7 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
72888
73133
|
AVAX: "AVAX";
|
|
72889
73134
|
}>>;
|
|
72890
73135
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
73136
|
+
IM: "IM";
|
|
72891
73137
|
AF: "AF";
|
|
72892
73138
|
AL: "AL";
|
|
72893
73139
|
DZ: "DZ";
|
|
@@ -72976,7 +73222,6 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
72976
73222
|
IR: "IR";
|
|
72977
73223
|
IQ: "IQ";
|
|
72978
73224
|
IE: "IE";
|
|
72979
|
-
IM: "IM";
|
|
72980
73225
|
IL: "IL";
|
|
72981
73226
|
IT: "IT";
|
|
72982
73227
|
CI: "CI";
|
|
@@ -73125,32 +73370,151 @@ declare const responseBodySchema$18: z$1.ZodObject<{
|
|
|
73125
73370
|
}, z$1.core.$strip>>;
|
|
73126
73371
|
}, z$1.core.$strip>]>;
|
|
73127
73372
|
}, z$1.core.$strip>;
|
|
73128
|
-
interface UpdateOrderParams extends z$1.infer<typeof paramsSchema$
|
|
73373
|
+
interface UpdateOrderParams extends z$1.infer<typeof paramsSchema$W> {
|
|
73129
73374
|
}
|
|
73130
|
-
interface UpdateOrderRequestBody extends z$1.infer<typeof requestBodySchema$
|
|
73375
|
+
interface UpdateOrderRequestBody extends z$1.infer<typeof requestBodySchema$x> {
|
|
73131
73376
|
}
|
|
73132
|
-
interface UpdateOrderResponseBody extends z$1.infer<typeof responseBodySchema$
|
|
73377
|
+
interface UpdateOrderResponseBody extends z$1.infer<typeof responseBodySchema$19> {
|
|
73133
73378
|
}
|
|
73134
73379
|
|
|
73135
|
-
declare const paramsSchema$
|
|
73380
|
+
declare const paramsSchema$V: z$1.ZodObject<{
|
|
73136
73381
|
orderId: z$1.ZodUUID;
|
|
73137
73382
|
}, z$1.core.$strip>;
|
|
73138
|
-
declare const requestBodySchema$
|
|
73383
|
+
declare const requestBodySchema$w: z$1.ZodObject<{
|
|
73139
73384
|
settlementRate: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
|
|
73140
73385
|
weightedRate: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
|
|
73141
73386
|
profitAmountCZK: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
|
|
73142
73387
|
marginRateCZK: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
|
|
73143
73388
|
}, z$1.core.$strip>;
|
|
73144
|
-
declare const responseBodySchema$
|
|
73389
|
+
declare const responseBodySchema$18: z$1.ZodObject<{
|
|
73145
73390
|
message: z$1.ZodString;
|
|
73146
73391
|
orderId: z$1.ZodUUID;
|
|
73147
73392
|
pairedOrderId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
73148
73393
|
}, z$1.core.$strip>;
|
|
73149
|
-
interface UpdateInternalSettlementRateParams extends z$1.infer<typeof paramsSchema$
|
|
73394
|
+
interface UpdateInternalSettlementRateParams extends z$1.infer<typeof paramsSchema$V> {
|
|
73150
73395
|
}
|
|
73151
|
-
interface UpdateInternalSettlementRateRequestBody extends z$1.infer<typeof requestBodySchema$
|
|
73396
|
+
interface UpdateInternalSettlementRateRequestBody extends z$1.infer<typeof requestBodySchema$w> {
|
|
73152
73397
|
}
|
|
73153
|
-
interface UpdateInternalSettlementRateResponseBody extends z$1.infer<typeof responseBodySchema$
|
|
73398
|
+
interface UpdateInternalSettlementRateResponseBody extends z$1.infer<typeof responseBodySchema$18> {
|
|
73399
|
+
}
|
|
73400
|
+
|
|
73401
|
+
declare const paramsSchema$U: z$1.ZodObject<{
|
|
73402
|
+
orderId: z$1.ZodUUID;
|
|
73403
|
+
}, z$1.core.$strip>;
|
|
73404
|
+
declare const requestBodySchema$v: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
73405
|
+
action: z$1.ZodLiteral<"update">;
|
|
73406
|
+
dependency: z$1.ZodObject<{
|
|
73407
|
+
id: z$1.ZodUUID;
|
|
73408
|
+
settlementAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>>>;
|
|
73409
|
+
settlementClientId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodUUID>>;
|
|
73410
|
+
settlementRate: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>>>;
|
|
73411
|
+
orderIdRelatedTo: z$1.ZodUUID;
|
|
73412
|
+
settlement: z$1.ZodBoolean;
|
|
73413
|
+
desiredOrderStatus: z$1.ZodEnum<{
|
|
73414
|
+
DRAFT: "DRAFT";
|
|
73415
|
+
CREATED: "CREATED";
|
|
73416
|
+
FUND_IN_PAID: "FUND_IN_PAID";
|
|
73417
|
+
FUND_OUT_PAID: "FUND_OUT_PAID";
|
|
73418
|
+
WAITING_FOR_FUND_IN: "WAITING_FOR_FUND_IN";
|
|
73419
|
+
WAITING_FOR_FUND_OUT: "WAITING_FOR_FUND_OUT";
|
|
73420
|
+
AML_PENDING: "AML_PENDING";
|
|
73421
|
+
WAITING_FOR_DEPENDENCIES: "WAITING_FOR_DEPENDENCIES";
|
|
73422
|
+
EXCHANGED: "EXCHANGED";
|
|
73423
|
+
CANCELLED: "CANCELLED";
|
|
73424
|
+
COMPLETED: "COMPLETED";
|
|
73425
|
+
}>;
|
|
73426
|
+
settlementType: z$1.ZodEnum<{
|
|
73427
|
+
SPOT: "SPOT";
|
|
73428
|
+
FORWARD: "FORWARD";
|
|
73429
|
+
LIMIT_ORDER: "LIMIT_ORDER";
|
|
73430
|
+
INTERNAL: "INTERNAL";
|
|
73431
|
+
}>;
|
|
73432
|
+
orderAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>>>;
|
|
73433
|
+
}, z$1.core.$strip>;
|
|
73434
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
73435
|
+
action: z$1.ZodLiteral<"unpair">;
|
|
73436
|
+
dependency: z$1.ZodObject<{
|
|
73437
|
+
id: z$1.ZodUUID;
|
|
73438
|
+
settlementAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>>>;
|
|
73439
|
+
settlementClientId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodUUID>>;
|
|
73440
|
+
settlementRate: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>>>;
|
|
73441
|
+
orderIdRelatedTo: z$1.ZodUUID;
|
|
73442
|
+
settlement: z$1.ZodBoolean;
|
|
73443
|
+
desiredOrderStatus: z$1.ZodEnum<{
|
|
73444
|
+
DRAFT: "DRAFT";
|
|
73445
|
+
CREATED: "CREATED";
|
|
73446
|
+
FUND_IN_PAID: "FUND_IN_PAID";
|
|
73447
|
+
FUND_OUT_PAID: "FUND_OUT_PAID";
|
|
73448
|
+
WAITING_FOR_FUND_IN: "WAITING_FOR_FUND_IN";
|
|
73449
|
+
WAITING_FOR_FUND_OUT: "WAITING_FOR_FUND_OUT";
|
|
73450
|
+
AML_PENDING: "AML_PENDING";
|
|
73451
|
+
WAITING_FOR_DEPENDENCIES: "WAITING_FOR_DEPENDENCIES";
|
|
73452
|
+
EXCHANGED: "EXCHANGED";
|
|
73453
|
+
CANCELLED: "CANCELLED";
|
|
73454
|
+
COMPLETED: "COMPLETED";
|
|
73455
|
+
}>;
|
|
73456
|
+
settlementType: z$1.ZodEnum<{
|
|
73457
|
+
SPOT: "SPOT";
|
|
73458
|
+
FORWARD: "FORWARD";
|
|
73459
|
+
LIMIT_ORDER: "LIMIT_ORDER";
|
|
73460
|
+
INTERNAL: "INTERNAL";
|
|
73461
|
+
}>;
|
|
73462
|
+
orderAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>>>;
|
|
73463
|
+
}, z$1.core.$strip>;
|
|
73464
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
73465
|
+
action: z$1.ZodLiteral<"add">;
|
|
73466
|
+
dependency: z$1.ZodObject<{
|
|
73467
|
+
id: z$1.ZodOptional<z$1.ZodUUID>;
|
|
73468
|
+
settlementAmount: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
|
|
73469
|
+
settlementRate: z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>;
|
|
73470
|
+
settlementClientId: z$1.ZodUUID;
|
|
73471
|
+
orderIdRelatedTo: z$1.ZodUUID;
|
|
73472
|
+
settlement: z$1.ZodBoolean;
|
|
73473
|
+
desiredOrderStatus: z$1.ZodEnum<{
|
|
73474
|
+
DRAFT: "DRAFT";
|
|
73475
|
+
CREATED: "CREATED";
|
|
73476
|
+
FUND_IN_PAID: "FUND_IN_PAID";
|
|
73477
|
+
FUND_OUT_PAID: "FUND_OUT_PAID";
|
|
73478
|
+
WAITING_FOR_FUND_IN: "WAITING_FOR_FUND_IN";
|
|
73479
|
+
WAITING_FOR_FUND_OUT: "WAITING_FOR_FUND_OUT";
|
|
73480
|
+
AML_PENDING: "AML_PENDING";
|
|
73481
|
+
WAITING_FOR_DEPENDENCIES: "WAITING_FOR_DEPENDENCIES";
|
|
73482
|
+
EXCHANGED: "EXCHANGED";
|
|
73483
|
+
CANCELLED: "CANCELLED";
|
|
73484
|
+
COMPLETED: "COMPLETED";
|
|
73485
|
+
}>;
|
|
73486
|
+
settlementType: z$1.ZodEnum<{
|
|
73487
|
+
SPOT: "SPOT";
|
|
73488
|
+
FORWARD: "FORWARD";
|
|
73489
|
+
LIMIT_ORDER: "LIMIT_ORDER";
|
|
73490
|
+
INTERNAL: "INTERNAL";
|
|
73491
|
+
}>;
|
|
73492
|
+
orderAmount: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodPipe<z$1.ZodNumber, z$1.ZodTransform<number, number>>>>;
|
|
73493
|
+
}, z$1.core.$strip>;
|
|
73494
|
+
}, z$1.core.$strip>], "action">;
|
|
73495
|
+
declare const responseBodySchema$17: z$1.ZodObject<{
|
|
73496
|
+
message: z$1.ZodString;
|
|
73497
|
+
orderId: z$1.ZodUUID;
|
|
73498
|
+
mode: z$1.ZodEnum<{
|
|
73499
|
+
full: "full";
|
|
73500
|
+
rate_only: "rate_only";
|
|
73501
|
+
}>;
|
|
73502
|
+
action: z$1.ZodEnum<{
|
|
73503
|
+
update: "update";
|
|
73504
|
+
unpair: "unpair";
|
|
73505
|
+
add: "add";
|
|
73506
|
+
}>;
|
|
73507
|
+
dependencyId: z$1.ZodUUID;
|
|
73508
|
+
linkedOrder: z$1.ZodNullable<z$1.ZodObject<{
|
|
73509
|
+
id: z$1.ZodUUID;
|
|
73510
|
+
status: z$1.ZodString;
|
|
73511
|
+
orderNumber: z$1.ZodNumber;
|
|
73512
|
+
}, z$1.core.$strip>>;
|
|
73513
|
+
}, z$1.core.$strip>;
|
|
73514
|
+
interface UpdateSettlementsParams extends z$1.infer<typeof paramsSchema$U> {
|
|
73515
|
+
}
|
|
73516
|
+
type UpdateSettlementsRequestBody = z$1.infer<typeof requestBodySchema$v>;
|
|
73517
|
+
interface UpdateSettlementsResponseBody extends z$1.infer<typeof responseBodySchema$17> {
|
|
73154
73518
|
}
|
|
73155
73519
|
|
|
73156
73520
|
declare const paramsSchema$T: z$1.ZodObject<{
|
|
@@ -73414,6 +73778,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
73414
73778
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
73415
73779
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
73416
73780
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
73781
|
+
IM: "IM";
|
|
73417
73782
|
AF: "AF";
|
|
73418
73783
|
AL: "AL";
|
|
73419
73784
|
DZ: "DZ";
|
|
@@ -73502,7 +73867,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
73502
73867
|
IR: "IR";
|
|
73503
73868
|
IQ: "IQ";
|
|
73504
73869
|
IE: "IE";
|
|
73505
|
-
IM: "IM";
|
|
73506
73870
|
IL: "IL";
|
|
73507
73871
|
IT: "IT";
|
|
73508
73872
|
CI: "CI";
|
|
@@ -73685,6 +74049,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
73685
74049
|
AVAX: "AVAX";
|
|
73686
74050
|
}>>;
|
|
73687
74051
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
74052
|
+
IM: "IM";
|
|
73688
74053
|
AF: "AF";
|
|
73689
74054
|
AL: "AL";
|
|
73690
74055
|
DZ: "DZ";
|
|
@@ -73773,7 +74138,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
73773
74138
|
IR: "IR";
|
|
73774
74139
|
IQ: "IQ";
|
|
73775
74140
|
IE: "IE";
|
|
73776
|
-
IM: "IM";
|
|
73777
74141
|
IL: "IL";
|
|
73778
74142
|
IT: "IT";
|
|
73779
74143
|
CI: "CI";
|
|
@@ -73977,6 +74341,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
73977
74341
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
73978
74342
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
73979
74343
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
74344
|
+
IM: "IM";
|
|
73980
74345
|
AF: "AF";
|
|
73981
74346
|
AL: "AL";
|
|
73982
74347
|
DZ: "DZ";
|
|
@@ -74065,7 +74430,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
74065
74430
|
IR: "IR";
|
|
74066
74431
|
IQ: "IQ";
|
|
74067
74432
|
IE: "IE";
|
|
74068
|
-
IM: "IM";
|
|
74069
74433
|
IL: "IL";
|
|
74070
74434
|
IT: "IT";
|
|
74071
74435
|
CI: "CI";
|
|
@@ -74248,6 +74612,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
74248
74612
|
AVAX: "AVAX";
|
|
74249
74613
|
}>>;
|
|
74250
74614
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
74615
|
+
IM: "IM";
|
|
74251
74616
|
AF: "AF";
|
|
74252
74617
|
AL: "AL";
|
|
74253
74618
|
DZ: "DZ";
|
|
@@ -74336,7 +74701,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
74336
74701
|
IR: "IR";
|
|
74337
74702
|
IQ: "IQ";
|
|
74338
74703
|
IE: "IE";
|
|
74339
|
-
IM: "IM";
|
|
74340
74704
|
IL: "IL";
|
|
74341
74705
|
IT: "IT";
|
|
74342
74706
|
CI: "CI";
|
|
@@ -74540,6 +74904,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
74540
74904
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
74541
74905
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
74542
74906
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
74907
|
+
IM: "IM";
|
|
74543
74908
|
AF: "AF";
|
|
74544
74909
|
AL: "AL";
|
|
74545
74910
|
DZ: "DZ";
|
|
@@ -74628,7 +74993,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
74628
74993
|
IR: "IR";
|
|
74629
74994
|
IQ: "IQ";
|
|
74630
74995
|
IE: "IE";
|
|
74631
|
-
IM: "IM";
|
|
74632
74996
|
IL: "IL";
|
|
74633
74997
|
IT: "IT";
|
|
74634
74998
|
CI: "CI";
|
|
@@ -74811,6 +75175,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
74811
75175
|
AVAX: "AVAX";
|
|
74812
75176
|
}>>;
|
|
74813
75177
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
75178
|
+
IM: "IM";
|
|
74814
75179
|
AF: "AF";
|
|
74815
75180
|
AL: "AL";
|
|
74816
75181
|
DZ: "DZ";
|
|
@@ -74899,7 +75264,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
74899
75264
|
IR: "IR";
|
|
74900
75265
|
IQ: "IQ";
|
|
74901
75266
|
IE: "IE";
|
|
74902
|
-
IM: "IM";
|
|
74903
75267
|
IL: "IL";
|
|
74904
75268
|
IT: "IT";
|
|
74905
75269
|
CI: "CI";
|
|
@@ -75376,6 +75740,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
75376
75740
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
75377
75741
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
75378
75742
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
75743
|
+
IM: "IM";
|
|
75379
75744
|
AF: "AF";
|
|
75380
75745
|
AL: "AL";
|
|
75381
75746
|
DZ: "DZ";
|
|
@@ -75464,7 +75829,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
75464
75829
|
IR: "IR";
|
|
75465
75830
|
IQ: "IQ";
|
|
75466
75831
|
IE: "IE";
|
|
75467
|
-
IM: "IM";
|
|
75468
75832
|
IL: "IL";
|
|
75469
75833
|
IT: "IT";
|
|
75470
75834
|
CI: "CI";
|
|
@@ -75647,6 +76011,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
75647
76011
|
AVAX: "AVAX";
|
|
75648
76012
|
}>>;
|
|
75649
76013
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
76014
|
+
IM: "IM";
|
|
75650
76015
|
AF: "AF";
|
|
75651
76016
|
AL: "AL";
|
|
75652
76017
|
DZ: "DZ";
|
|
@@ -75735,7 +76100,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
75735
76100
|
IR: "IR";
|
|
75736
76101
|
IQ: "IQ";
|
|
75737
76102
|
IE: "IE";
|
|
75738
|
-
IM: "IM";
|
|
75739
76103
|
IL: "IL";
|
|
75740
76104
|
IT: "IT";
|
|
75741
76105
|
CI: "CI";
|
|
@@ -76212,6 +76576,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
76212
76576
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
76213
76577
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
76214
76578
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
76579
|
+
IM: "IM";
|
|
76215
76580
|
AF: "AF";
|
|
76216
76581
|
AL: "AL";
|
|
76217
76582
|
DZ: "DZ";
|
|
@@ -76300,7 +76665,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
76300
76665
|
IR: "IR";
|
|
76301
76666
|
IQ: "IQ";
|
|
76302
76667
|
IE: "IE";
|
|
76303
|
-
IM: "IM";
|
|
76304
76668
|
IL: "IL";
|
|
76305
76669
|
IT: "IT";
|
|
76306
76670
|
CI: "CI";
|
|
@@ -76483,6 +76847,7 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
76483
76847
|
AVAX: "AVAX";
|
|
76484
76848
|
}>>;
|
|
76485
76849
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
76850
|
+
IM: "IM";
|
|
76486
76851
|
AF: "AF";
|
|
76487
76852
|
AL: "AL";
|
|
76488
76853
|
DZ: "DZ";
|
|
@@ -76571,7 +76936,6 @@ declare const responseBodySchema$12: z$1.ZodObject<{
|
|
|
76571
76936
|
IR: "IR";
|
|
76572
76937
|
IQ: "IQ";
|
|
76573
76938
|
IE: "IE";
|
|
76574
|
-
IM: "IM";
|
|
76575
76939
|
IL: "IL";
|
|
76576
76940
|
IT: "IT";
|
|
76577
76941
|
CI: "CI";
|
|
@@ -77411,6 +77775,7 @@ declare const requestBodySchema$n: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
77411
77775
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
77412
77776
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
77413
77777
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
77778
|
+
IM: "IM";
|
|
77414
77779
|
AF: "AF";
|
|
77415
77780
|
AL: "AL";
|
|
77416
77781
|
DZ: "DZ";
|
|
@@ -77499,7 +77864,6 @@ declare const requestBodySchema$n: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
77499
77864
|
IR: "IR";
|
|
77500
77865
|
IQ: "IQ";
|
|
77501
77866
|
IE: "IE";
|
|
77502
|
-
IM: "IM";
|
|
77503
77867
|
IL: "IL";
|
|
77504
77868
|
IT: "IT";
|
|
77505
77869
|
CI: "CI";
|
|
@@ -78087,6 +78451,7 @@ declare const requestBodySchema$n: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
78087
78451
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
78088
78452
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
78089
78453
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
78454
|
+
IM: "IM";
|
|
78090
78455
|
AF: "AF";
|
|
78091
78456
|
AL: "AL";
|
|
78092
78457
|
DZ: "DZ";
|
|
@@ -78175,7 +78540,6 @@ declare const requestBodySchema$n: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
78175
78540
|
IR: "IR";
|
|
78176
78541
|
IQ: "IQ";
|
|
78177
78542
|
IE: "IE";
|
|
78178
|
-
IM: "IM";
|
|
78179
78543
|
IL: "IL";
|
|
78180
78544
|
IT: "IT";
|
|
78181
78545
|
CI: "CI";
|
|
@@ -78762,6 +79126,7 @@ declare const requestBodySchema$n: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
78762
79126
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
78763
79127
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
78764
79128
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
79129
|
+
IM: "IM";
|
|
78765
79130
|
AF: "AF";
|
|
78766
79131
|
AL: "AL";
|
|
78767
79132
|
DZ: "DZ";
|
|
@@ -78850,7 +79215,6 @@ declare const requestBodySchema$n: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
78850
79215
|
IR: "IR";
|
|
78851
79216
|
IQ: "IQ";
|
|
78852
79217
|
IE: "IE";
|
|
78853
|
-
IM: "IM";
|
|
78854
79218
|
IL: "IL";
|
|
78855
79219
|
IT: "IT";
|
|
78856
79220
|
CI: "CI";
|
|
@@ -79462,6 +79826,7 @@ declare const responseBodySchema$Q: z$1.ZodObject<{
|
|
|
79462
79826
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
79463
79827
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
79464
79828
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
79829
|
+
IM: "IM";
|
|
79465
79830
|
AF: "AF";
|
|
79466
79831
|
AL: "AL";
|
|
79467
79832
|
DZ: "DZ";
|
|
@@ -79550,7 +79915,6 @@ declare const responseBodySchema$Q: z$1.ZodObject<{
|
|
|
79550
79915
|
IR: "IR";
|
|
79551
79916
|
IQ: "IQ";
|
|
79552
79917
|
IE: "IE";
|
|
79553
|
-
IM: "IM";
|
|
79554
79918
|
IL: "IL";
|
|
79555
79919
|
IT: "IT";
|
|
79556
79920
|
CI: "CI";
|
|
@@ -80192,6 +80556,7 @@ declare const responseBodySchema$P: z$1.ZodObject<{
|
|
|
80192
80556
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
80193
80557
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
80194
80558
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
80559
|
+
IM: "IM";
|
|
80195
80560
|
AF: "AF";
|
|
80196
80561
|
AL: "AL";
|
|
80197
80562
|
DZ: "DZ";
|
|
@@ -80280,7 +80645,6 @@ declare const responseBodySchema$P: z$1.ZodObject<{
|
|
|
80280
80645
|
IR: "IR";
|
|
80281
80646
|
IQ: "IQ";
|
|
80282
80647
|
IE: "IE";
|
|
80283
|
-
IM: "IM";
|
|
80284
80648
|
IL: "IL";
|
|
80285
80649
|
IT: "IT";
|
|
80286
80650
|
CI: "CI";
|
|
@@ -80899,6 +81263,7 @@ declare const responseBodySchema$O: z$1.ZodObject<{
|
|
|
80899
81263
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
80900
81264
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
80901
81265
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
81266
|
+
IM: "IM";
|
|
80902
81267
|
AF: "AF";
|
|
80903
81268
|
AL: "AL";
|
|
80904
81269
|
DZ: "DZ";
|
|
@@ -80987,7 +81352,6 @@ declare const responseBodySchema$O: z$1.ZodObject<{
|
|
|
80987
81352
|
IR: "IR";
|
|
80988
81353
|
IQ: "IQ";
|
|
80989
81354
|
IE: "IE";
|
|
80990
|
-
IM: "IM";
|
|
80991
81355
|
IL: "IL";
|
|
80992
81356
|
IT: "IT";
|
|
80993
81357
|
CI: "CI";
|
|
@@ -81875,6 +82239,7 @@ declare const requestBodySchema$j: z$1.ZodObject<{
|
|
|
81875
82239
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
81876
82240
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
81877
82241
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
82242
|
+
IM: "IM";
|
|
81878
82243
|
AF: "AF";
|
|
81879
82244
|
AL: "AL";
|
|
81880
82245
|
DZ: "DZ";
|
|
@@ -81963,7 +82328,6 @@ declare const requestBodySchema$j: z$1.ZodObject<{
|
|
|
81963
82328
|
IR: "IR";
|
|
81964
82329
|
IQ: "IQ";
|
|
81965
82330
|
IE: "IE";
|
|
81966
|
-
IM: "IM";
|
|
81967
82331
|
IL: "IL";
|
|
81968
82332
|
IT: "IT";
|
|
81969
82333
|
CI: "CI";
|
|
@@ -82445,6 +82809,7 @@ declare const responseBodySchema$I: z$1.ZodObject<{
|
|
|
82445
82809
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
82446
82810
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
82447
82811
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
82812
|
+
IM: "IM";
|
|
82448
82813
|
AF: "AF";
|
|
82449
82814
|
AL: "AL";
|
|
82450
82815
|
DZ: "DZ";
|
|
@@ -82533,7 +82898,6 @@ declare const responseBodySchema$I: z$1.ZodObject<{
|
|
|
82533
82898
|
IR: "IR";
|
|
82534
82899
|
IQ: "IQ";
|
|
82535
82900
|
IE: "IE";
|
|
82536
|
-
IM: "IM";
|
|
82537
82901
|
IL: "IL";
|
|
82538
82902
|
IT: "IT";
|
|
82539
82903
|
CI: "CI";
|
|
@@ -83095,6 +83459,7 @@ declare const responseBodySchema$H: z$1.ZodObject<{
|
|
|
83095
83459
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
83096
83460
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
83097
83461
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
83462
|
+
IM: "IM";
|
|
83098
83463
|
AF: "AF";
|
|
83099
83464
|
AL: "AL";
|
|
83100
83465
|
DZ: "DZ";
|
|
@@ -83183,7 +83548,6 @@ declare const responseBodySchema$H: z$1.ZodObject<{
|
|
|
83183
83548
|
IR: "IR";
|
|
83184
83549
|
IQ: "IQ";
|
|
83185
83550
|
IE: "IE";
|
|
83186
|
-
IM: "IM";
|
|
83187
83551
|
IL: "IL";
|
|
83188
83552
|
IT: "IT";
|
|
83189
83553
|
CI: "CI";
|
|
@@ -83678,6 +84042,7 @@ declare const responseBodySchema$G: z$1.ZodObject<{
|
|
|
83678
84042
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
83679
84043
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
83680
84044
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
84045
|
+
IM: "IM";
|
|
83681
84046
|
AF: "AF";
|
|
83682
84047
|
AL: "AL";
|
|
83683
84048
|
DZ: "DZ";
|
|
@@ -83766,7 +84131,6 @@ declare const responseBodySchema$G: z$1.ZodObject<{
|
|
|
83766
84131
|
IR: "IR";
|
|
83767
84132
|
IQ: "IQ";
|
|
83768
84133
|
IE: "IE";
|
|
83769
|
-
IM: "IM";
|
|
83770
84134
|
IL: "IL";
|
|
83771
84135
|
IT: "IT";
|
|
83772
84136
|
CI: "CI";
|
|
@@ -84253,6 +84617,7 @@ declare const requestBodySchema$i: z$1.ZodObject<{
|
|
|
84253
84617
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
84254
84618
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
84255
84619
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
84620
|
+
IM: "IM";
|
|
84256
84621
|
AF: "AF";
|
|
84257
84622
|
AL: "AL";
|
|
84258
84623
|
DZ: "DZ";
|
|
@@ -84341,7 +84706,6 @@ declare const requestBodySchema$i: z$1.ZodObject<{
|
|
|
84341
84706
|
IR: "IR";
|
|
84342
84707
|
IQ: "IQ";
|
|
84343
84708
|
IE: "IE";
|
|
84344
|
-
IM: "IM";
|
|
84345
84709
|
IL: "IL";
|
|
84346
84710
|
IT: "IT";
|
|
84347
84711
|
CI: "CI";
|
|
@@ -84823,6 +85187,7 @@ declare const responseBodySchema$F: z$1.ZodObject<{
|
|
|
84823
85187
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
84824
85188
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
84825
85189
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
85190
|
+
IM: "IM";
|
|
84826
85191
|
AF: "AF";
|
|
84827
85192
|
AL: "AL";
|
|
84828
85193
|
DZ: "DZ";
|
|
@@ -84911,7 +85276,6 @@ declare const responseBodySchema$F: z$1.ZodObject<{
|
|
|
84911
85276
|
IR: "IR";
|
|
84912
85277
|
IQ: "IQ";
|
|
84913
85278
|
IE: "IE";
|
|
84914
|
-
IM: "IM";
|
|
84915
85279
|
IL: "IL";
|
|
84916
85280
|
IT: "IT";
|
|
84917
85281
|
CI: "CI";
|
|
@@ -85405,6 +85769,7 @@ declare const responseBodySchema$E: z$1.ZodObject<{
|
|
|
85405
85769
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
85406
85770
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
85407
85771
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
85772
|
+
IM: "IM";
|
|
85408
85773
|
AF: "AF";
|
|
85409
85774
|
AL: "AL";
|
|
85410
85775
|
DZ: "DZ";
|
|
@@ -85493,7 +85858,6 @@ declare const responseBodySchema$E: z$1.ZodObject<{
|
|
|
85493
85858
|
IR: "IR";
|
|
85494
85859
|
IQ: "IQ";
|
|
85495
85860
|
IE: "IE";
|
|
85496
|
-
IM: "IM";
|
|
85497
85861
|
IL: "IL";
|
|
85498
85862
|
IT: "IT";
|
|
85499
85863
|
CI: "CI";
|
|
@@ -86818,6 +87182,7 @@ declare const responseBodySchema$a: z$1.ZodObject<{
|
|
|
86818
87182
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
86819
87183
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
86820
87184
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
87185
|
+
IM: "IM";
|
|
86821
87186
|
AF: "AF";
|
|
86822
87187
|
AL: "AL";
|
|
86823
87188
|
DZ: "DZ";
|
|
@@ -86906,7 +87271,6 @@ declare const responseBodySchema$a: z$1.ZodObject<{
|
|
|
86906
87271
|
IR: "IR";
|
|
86907
87272
|
IQ: "IQ";
|
|
86908
87273
|
IE: "IE";
|
|
86909
|
-
IM: "IM";
|
|
86910
87274
|
IL: "IL";
|
|
86911
87275
|
IT: "IT";
|
|
86912
87276
|
CI: "CI";
|
|
@@ -87714,6 +88078,7 @@ declare const responseBodySchema$7: z$1.ZodObject<{
|
|
|
87714
88078
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
87715
88079
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
87716
88080
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
88081
|
+
IM: "IM";
|
|
87717
88082
|
AF: "AF";
|
|
87718
88083
|
AL: "AL";
|
|
87719
88084
|
DZ: "DZ";
|
|
@@ -87802,7 +88167,6 @@ declare const responseBodySchema$7: z$1.ZodObject<{
|
|
|
87802
88167
|
IR: "IR";
|
|
87803
88168
|
IQ: "IQ";
|
|
87804
88169
|
IE: "IE";
|
|
87805
|
-
IM: "IM";
|
|
87806
88170
|
IL: "IL";
|
|
87807
88171
|
IT: "IT";
|
|
87808
88172
|
CI: "CI";
|
|
@@ -87985,6 +88349,7 @@ declare const responseBodySchema$7: z$1.ZodObject<{
|
|
|
87985
88349
|
AVAX: "AVAX";
|
|
87986
88350
|
}>>;
|
|
87987
88351
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
88352
|
+
IM: "IM";
|
|
87988
88353
|
AF: "AF";
|
|
87989
88354
|
AL: "AL";
|
|
87990
88355
|
DZ: "DZ";
|
|
@@ -88073,7 +88438,6 @@ declare const responseBodySchema$7: z$1.ZodObject<{
|
|
|
88073
88438
|
IR: "IR";
|
|
88074
88439
|
IQ: "IQ";
|
|
88075
88440
|
IE: "IE";
|
|
88076
|
-
IM: "IM";
|
|
88077
88441
|
IL: "IL";
|
|
88078
88442
|
IT: "IT";
|
|
88079
88443
|
CI: "CI";
|
|
@@ -88277,6 +88641,7 @@ declare const responseBodySchema$7: z$1.ZodObject<{
|
|
|
88277
88641
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
88278
88642
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
88279
88643
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
88644
|
+
IM: "IM";
|
|
88280
88645
|
AF: "AF";
|
|
88281
88646
|
AL: "AL";
|
|
88282
88647
|
DZ: "DZ";
|
|
@@ -88365,7 +88730,6 @@ declare const responseBodySchema$7: z$1.ZodObject<{
|
|
|
88365
88730
|
IR: "IR";
|
|
88366
88731
|
IQ: "IQ";
|
|
88367
88732
|
IE: "IE";
|
|
88368
|
-
IM: "IM";
|
|
88369
88733
|
IL: "IL";
|
|
88370
88734
|
IT: "IT";
|
|
88371
88735
|
CI: "CI";
|
|
@@ -88548,6 +88912,7 @@ declare const responseBodySchema$7: z$1.ZodObject<{
|
|
|
88548
88912
|
AVAX: "AVAX";
|
|
88549
88913
|
}>>;
|
|
88550
88914
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
88915
|
+
IM: "IM";
|
|
88551
88916
|
AF: "AF";
|
|
88552
88917
|
AL: "AL";
|
|
88553
88918
|
DZ: "DZ";
|
|
@@ -88636,7 +89001,6 @@ declare const responseBodySchema$7: z$1.ZodObject<{
|
|
|
88636
89001
|
IR: "IR";
|
|
88637
89002
|
IQ: "IQ";
|
|
88638
89003
|
IE: "IE";
|
|
88639
|
-
IM: "IM";
|
|
88640
89004
|
IL: "IL";
|
|
88641
89005
|
IT: "IT";
|
|
88642
89006
|
CI: "CI";
|
|
@@ -89052,6 +89416,7 @@ declare const responseBodySchema$6: z$1.ZodObject<{
|
|
|
89052
89416
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
89053
89417
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
89054
89418
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
89419
|
+
IM: "IM";
|
|
89055
89420
|
AF: "AF";
|
|
89056
89421
|
AL: "AL";
|
|
89057
89422
|
DZ: "DZ";
|
|
@@ -89140,7 +89505,6 @@ declare const responseBodySchema$6: z$1.ZodObject<{
|
|
|
89140
89505
|
IR: "IR";
|
|
89141
89506
|
IQ: "IQ";
|
|
89142
89507
|
IE: "IE";
|
|
89143
|
-
IM: "IM";
|
|
89144
89508
|
IL: "IL";
|
|
89145
89509
|
IT: "IT";
|
|
89146
89510
|
CI: "CI";
|
|
@@ -89323,6 +89687,7 @@ declare const responseBodySchema$6: z$1.ZodObject<{
|
|
|
89323
89687
|
AVAX: "AVAX";
|
|
89324
89688
|
}>>;
|
|
89325
89689
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
89690
|
+
IM: "IM";
|
|
89326
89691
|
AF: "AF";
|
|
89327
89692
|
AL: "AL";
|
|
89328
89693
|
DZ: "DZ";
|
|
@@ -89411,7 +89776,6 @@ declare const responseBodySchema$6: z$1.ZodObject<{
|
|
|
89411
89776
|
IR: "IR";
|
|
89412
89777
|
IQ: "IQ";
|
|
89413
89778
|
IE: "IE";
|
|
89414
|
-
IM: "IM";
|
|
89415
89779
|
IL: "IL";
|
|
89416
89780
|
IT: "IT";
|
|
89417
89781
|
CI: "CI";
|
|
@@ -89615,6 +89979,7 @@ declare const responseBodySchema$6: z$1.ZodObject<{
|
|
|
89615
89979
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
89616
89980
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
89617
89981
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
89982
|
+
IM: "IM";
|
|
89618
89983
|
AF: "AF";
|
|
89619
89984
|
AL: "AL";
|
|
89620
89985
|
DZ: "DZ";
|
|
@@ -89703,7 +90068,6 @@ declare const responseBodySchema$6: z$1.ZodObject<{
|
|
|
89703
90068
|
IR: "IR";
|
|
89704
90069
|
IQ: "IQ";
|
|
89705
90070
|
IE: "IE";
|
|
89706
|
-
IM: "IM";
|
|
89707
90071
|
IL: "IL";
|
|
89708
90072
|
IT: "IT";
|
|
89709
90073
|
CI: "CI";
|
|
@@ -89886,6 +90250,7 @@ declare const responseBodySchema$6: z$1.ZodObject<{
|
|
|
89886
90250
|
AVAX: "AVAX";
|
|
89887
90251
|
}>>;
|
|
89888
90252
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
90253
|
+
IM: "IM";
|
|
89889
90254
|
AF: "AF";
|
|
89890
90255
|
AL: "AL";
|
|
89891
90256
|
DZ: "DZ";
|
|
@@ -89974,7 +90339,6 @@ declare const responseBodySchema$6: z$1.ZodObject<{
|
|
|
89974
90339
|
IR: "IR";
|
|
89975
90340
|
IQ: "IQ";
|
|
89976
90341
|
IE: "IE";
|
|
89977
|
-
IM: "IM";
|
|
89978
90342
|
IL: "IL";
|
|
89979
90343
|
IT: "IT";
|
|
89980
90344
|
CI: "CI";
|
|
@@ -90392,6 +90756,7 @@ declare const getPaymentRequestsResponseSchema: z$1.ZodObject<{
|
|
|
90392
90756
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
90393
90757
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
90394
90758
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
90759
|
+
IM: "IM";
|
|
90395
90760
|
AF: "AF";
|
|
90396
90761
|
AL: "AL";
|
|
90397
90762
|
DZ: "DZ";
|
|
@@ -90480,7 +90845,6 @@ declare const getPaymentRequestsResponseSchema: z$1.ZodObject<{
|
|
|
90480
90845
|
IR: "IR";
|
|
90481
90846
|
IQ: "IQ";
|
|
90482
90847
|
IE: "IE";
|
|
90483
|
-
IM: "IM";
|
|
90484
90848
|
IL: "IL";
|
|
90485
90849
|
IT: "IT";
|
|
90486
90850
|
CI: "CI";
|
|
@@ -90950,6 +91314,7 @@ declare const getPaymentRequestsResponseSchema: z$1.ZodObject<{
|
|
|
90950
91314
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
90951
91315
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
90952
91316
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
91317
|
+
IM: "IM";
|
|
90953
91318
|
AF: "AF";
|
|
90954
91319
|
AL: "AL";
|
|
90955
91320
|
DZ: "DZ";
|
|
@@ -91038,7 +91403,6 @@ declare const getPaymentRequestsResponseSchema: z$1.ZodObject<{
|
|
|
91038
91403
|
IR: "IR";
|
|
91039
91404
|
IQ: "IQ";
|
|
91040
91405
|
IE: "IE";
|
|
91041
|
-
IM: "IM";
|
|
91042
91406
|
IL: "IL";
|
|
91043
91407
|
IT: "IT";
|
|
91044
91408
|
CI: "CI";
|
|
@@ -91712,6 +92076,7 @@ declare const getPaymentsResponseSchema: z$1.ZodObject<{
|
|
|
91712
92076
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
91713
92077
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
91714
92078
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
92079
|
+
IM: "IM";
|
|
91715
92080
|
AF: "AF";
|
|
91716
92081
|
AL: "AL";
|
|
91717
92082
|
DZ: "DZ";
|
|
@@ -91800,7 +92165,6 @@ declare const getPaymentsResponseSchema: z$1.ZodObject<{
|
|
|
91800
92165
|
IR: "IR";
|
|
91801
92166
|
IQ: "IQ";
|
|
91802
92167
|
IE: "IE";
|
|
91803
|
-
IM: "IM";
|
|
91804
92168
|
IL: "IL";
|
|
91805
92169
|
IT: "IT";
|
|
91806
92170
|
CI: "CI";
|
|
@@ -92276,6 +92640,7 @@ declare const getPaymentsResponseSchema: z$1.ZodObject<{
|
|
|
92276
92640
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
92277
92641
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
92278
92642
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
92643
|
+
IM: "IM";
|
|
92279
92644
|
AF: "AF";
|
|
92280
92645
|
AL: "AL";
|
|
92281
92646
|
DZ: "DZ";
|
|
@@ -92364,7 +92729,6 @@ declare const getPaymentsResponseSchema: z$1.ZodObject<{
|
|
|
92364
92729
|
IR: "IR";
|
|
92365
92730
|
IQ: "IQ";
|
|
92366
92731
|
IE: "IE";
|
|
92367
|
-
IM: "IM";
|
|
92368
92732
|
IL: "IL";
|
|
92369
92733
|
IT: "IT";
|
|
92370
92734
|
CI: "CI";
|
|
@@ -92965,6 +93329,7 @@ declare const requestBodySchema: z$1.ZodObject<{
|
|
|
92965
93329
|
city: z$1.ZodOptional<z$1.ZodString>;
|
|
92966
93330
|
postalCode: z$1.ZodOptional<z$1.ZodString>;
|
|
92967
93331
|
countryCode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
93332
|
+
IM: "IM";
|
|
92968
93333
|
AF: "AF";
|
|
92969
93334
|
AL: "AL";
|
|
92970
93335
|
DZ: "DZ";
|
|
@@ -93053,7 +93418,6 @@ declare const requestBodySchema: z$1.ZodObject<{
|
|
|
93053
93418
|
IR: "IR";
|
|
93054
93419
|
IQ: "IQ";
|
|
93055
93420
|
IE: "IE";
|
|
93056
|
-
IM: "IM";
|
|
93057
93421
|
IL: "IL";
|
|
93058
93422
|
IT: "IT";
|
|
93059
93423
|
CI: "CI";
|
|
@@ -93491,4 +93855,4 @@ declare const verifyPayloadSignature: ({ signature, data, publicKey, algorithm,
|
|
|
93491
93855
|
}) => Promise<boolean>;
|
|
93492
93856
|
|
|
93493
93857
|
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 };
|
|
93494
|
-
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 };
|
|
93858
|
+
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, UpdateSettlementsParams, UpdateSettlementsRequestBody, UpdateSettlementsResponseBody, UpdateTraderParams, UpdateTraderRequestBody, UpdateTraderResponseBody, UpdateUserBanParams, UpdateUserBanRequestBody, UpdateUserBanResponseBody, UpdateUserPasswordParams, UpdateUserPasswordRequestBody, UpdateUserPasswordResponseBody, VerifySetupMFAParams, VerifySetupMFARequestBody, VerifySetupMFAResponse, VerifyUserParams, VerifyUserRequestBody, VerifyUserResponse, XIdempotencyKeyHeader, XSignatureHeader, XSignatureKeyHeader };
|