@nexeraid/identity-schemas 1.12.42-dev → 1.12.43-dev
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/{customers.schema-6bbfca72.cjs.dev.js → customers.schema-08570913.cjs.dev.js} +11 -1
- package/dist/{customers.schema-1bca732a.cjs.prod.js → customers.schema-811cbe71.cjs.prod.js} +11 -1
- package/dist/{customers.schema-cfe74143.esm.js → customers.schema-c9444639.esm.js} +11 -1
- package/dist/declarations/src/providers/big/BIGBitRankVerifiedScore.schema.d.ts +0 -1
- package/dist/declarations/src/providers/big/BIGBitRankVerifiedScore.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/provider.schema.d.ts +0 -559
- package/dist/declarations/src/providers/provider.schema.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +1 -1
|
@@ -73,23 +73,10 @@ export declare const IpQualityConfig: z.ZodObject<{
|
|
|
73
73
|
}>;
|
|
74
74
|
export declare const BigConfig: z.ZodObject<{
|
|
75
75
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
76
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
77
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
78
|
-
}, "strip", z.ZodTypeAny, {
|
|
79
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
80
|
-
}, {
|
|
81
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
82
|
-
}>, "many">>>>>;
|
|
83
76
|
}, "strip", z.ZodTypeAny, {
|
|
84
77
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
85
|
-
properties?: {
|
|
86
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
87
|
-
}[] | null | undefined;
|
|
88
78
|
}, {
|
|
89
79
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
90
|
-
properties?: {
|
|
91
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
92
|
-
}[] | null | undefined;
|
|
93
80
|
}>;
|
|
94
81
|
export declare const ProviderIntegrationTypeOptions: readonly ["integrated", "external"];
|
|
95
82
|
export declare const ProviderIntegrationType: z.ZodEnum<["integrated", "external"]>;
|
|
@@ -148,78 +135,40 @@ export declare const BigProvider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
148
135
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
149
136
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
150
137
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
151
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
152
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
153
|
-
}, "strip", z.ZodTypeAny, {
|
|
154
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
155
|
-
}, {
|
|
156
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
157
|
-
}>, "many">>>>>;
|
|
158
138
|
}, "strip", z.ZodTypeAny, {
|
|
159
139
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
160
|
-
properties?: {
|
|
161
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
162
|
-
}[] | null | undefined;
|
|
163
140
|
}, {
|
|
164
141
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
165
|
-
properties?: {
|
|
166
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
167
|
-
}[] | null | undefined;
|
|
168
142
|
}>, "many">>>;
|
|
169
143
|
}, "strip", z.ZodTypeAny, {
|
|
170
144
|
enabled?: boolean | null | undefined;
|
|
171
145
|
config?: {
|
|
172
146
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
173
|
-
properties?: {
|
|
174
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
175
|
-
}[] | null | undefined;
|
|
176
147
|
}[] | null | undefined;
|
|
177
148
|
}, {
|
|
178
149
|
enabled?: boolean | null | undefined;
|
|
179
150
|
config?: {
|
|
180
151
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
181
|
-
properties?: {
|
|
182
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
183
|
-
}[] | null | undefined;
|
|
184
152
|
}[] | null | undefined;
|
|
185
153
|
}>>>;
|
|
186
154
|
onNewRecord: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
187
155
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
188
156
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
189
157
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
190
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
191
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
192
|
-
}, "strip", z.ZodTypeAny, {
|
|
193
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
194
|
-
}, {
|
|
195
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
196
|
-
}>, "many">>>>>;
|
|
197
158
|
}, "strip", z.ZodTypeAny, {
|
|
198
159
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
199
|
-
properties?: {
|
|
200
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
201
|
-
}[] | null | undefined;
|
|
202
160
|
}, {
|
|
203
161
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
204
|
-
properties?: {
|
|
205
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
206
|
-
}[] | null | undefined;
|
|
207
162
|
}>, "many">>>;
|
|
208
163
|
}, "strip", z.ZodTypeAny, {
|
|
209
164
|
enabled?: boolean | null | undefined;
|
|
210
165
|
config?: {
|
|
211
166
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
212
|
-
properties?: {
|
|
213
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
214
|
-
}[] | null | undefined;
|
|
215
167
|
}[] | null | undefined;
|
|
216
168
|
}, {
|
|
217
169
|
enabled?: boolean | null | undefined;
|
|
218
170
|
config?: {
|
|
219
171
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
220
|
-
properties?: {
|
|
221
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
222
|
-
}[] | null | undefined;
|
|
223
172
|
}[] | null | undefined;
|
|
224
173
|
}>>>;
|
|
225
174
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -230,18 +179,12 @@ export declare const BigProvider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
230
179
|
enabled?: boolean | null | undefined;
|
|
231
180
|
config?: {
|
|
232
181
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
233
|
-
properties?: {
|
|
234
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
235
|
-
}[] | null | undefined;
|
|
236
182
|
}[] | null | undefined;
|
|
237
183
|
} | null | undefined;
|
|
238
184
|
onNewRecord?: {
|
|
239
185
|
enabled?: boolean | null | undefined;
|
|
240
186
|
config?: {
|
|
241
187
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
242
|
-
properties?: {
|
|
243
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
244
|
-
}[] | null | undefined;
|
|
245
188
|
}[] | null | undefined;
|
|
246
189
|
} | null | undefined;
|
|
247
190
|
}, {
|
|
@@ -252,18 +195,12 @@ export declare const BigProvider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
252
195
|
enabled?: boolean | null | undefined;
|
|
253
196
|
config?: {
|
|
254
197
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
255
|
-
properties?: {
|
|
256
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
257
|
-
}[] | null | undefined;
|
|
258
198
|
}[] | null | undefined;
|
|
259
199
|
} | null | undefined;
|
|
260
200
|
onNewRecord?: {
|
|
261
201
|
enabled?: boolean | null | undefined;
|
|
262
202
|
config?: {
|
|
263
203
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
264
|
-
properties?: {
|
|
265
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
266
|
-
}[] | null | undefined;
|
|
267
204
|
}[] | null | undefined;
|
|
268
205
|
} | null | undefined;
|
|
269
206
|
}>;
|
|
@@ -899,78 +836,40 @@ export declare const ProviderData: z.ZodObject<{
|
|
|
899
836
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
900
837
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
901
838
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
902
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
903
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
904
|
-
}, "strip", z.ZodTypeAny, {
|
|
905
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
906
|
-
}, {
|
|
907
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
908
|
-
}>, "many">>>>>;
|
|
909
839
|
}, "strip", z.ZodTypeAny, {
|
|
910
840
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
911
|
-
properties?: {
|
|
912
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
913
|
-
}[] | null | undefined;
|
|
914
841
|
}, {
|
|
915
842
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
916
|
-
properties?: {
|
|
917
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
918
|
-
}[] | null | undefined;
|
|
919
843
|
}>, "many">>>;
|
|
920
844
|
}, "strip", z.ZodTypeAny, {
|
|
921
845
|
enabled?: boolean | null | undefined;
|
|
922
846
|
config?: {
|
|
923
847
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
924
|
-
properties?: {
|
|
925
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
926
|
-
}[] | null | undefined;
|
|
927
848
|
}[] | null | undefined;
|
|
928
849
|
}, {
|
|
929
850
|
enabled?: boolean | null | undefined;
|
|
930
851
|
config?: {
|
|
931
852
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
932
|
-
properties?: {
|
|
933
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
934
|
-
}[] | null | undefined;
|
|
935
853
|
}[] | null | undefined;
|
|
936
854
|
}>>>;
|
|
937
855
|
onNewRecord: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
938
856
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
939
857
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
940
858
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
941
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
942
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
943
|
-
}, "strip", z.ZodTypeAny, {
|
|
944
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
945
|
-
}, {
|
|
946
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
947
|
-
}>, "many">>>>>;
|
|
948
859
|
}, "strip", z.ZodTypeAny, {
|
|
949
860
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
950
|
-
properties?: {
|
|
951
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
952
|
-
}[] | null | undefined;
|
|
953
861
|
}, {
|
|
954
862
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
955
|
-
properties?: {
|
|
956
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
957
|
-
}[] | null | undefined;
|
|
958
863
|
}>, "many">>>;
|
|
959
864
|
}, "strip", z.ZodTypeAny, {
|
|
960
865
|
enabled?: boolean | null | undefined;
|
|
961
866
|
config?: {
|
|
962
867
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
963
|
-
properties?: {
|
|
964
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
965
|
-
}[] | null | undefined;
|
|
966
868
|
}[] | null | undefined;
|
|
967
869
|
}, {
|
|
968
870
|
enabled?: boolean | null | undefined;
|
|
969
871
|
config?: {
|
|
970
872
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
971
|
-
properties?: {
|
|
972
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
973
|
-
}[] | null | undefined;
|
|
974
873
|
}[] | null | undefined;
|
|
975
874
|
}>>>;
|
|
976
875
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -981,18 +880,12 @@ export declare const ProviderData: z.ZodObject<{
|
|
|
981
880
|
enabled?: boolean | null | undefined;
|
|
982
881
|
config?: {
|
|
983
882
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
984
|
-
properties?: {
|
|
985
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
986
|
-
}[] | null | undefined;
|
|
987
883
|
}[] | null | undefined;
|
|
988
884
|
} | null | undefined;
|
|
989
885
|
onNewRecord?: {
|
|
990
886
|
enabled?: boolean | null | undefined;
|
|
991
887
|
config?: {
|
|
992
888
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
993
|
-
properties?: {
|
|
994
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
995
|
-
}[] | null | undefined;
|
|
996
889
|
}[] | null | undefined;
|
|
997
890
|
} | null | undefined;
|
|
998
891
|
}, {
|
|
@@ -1003,18 +896,12 @@ export declare const ProviderData: z.ZodObject<{
|
|
|
1003
896
|
enabled?: boolean | null | undefined;
|
|
1004
897
|
config?: {
|
|
1005
898
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
1006
|
-
properties?: {
|
|
1007
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
1008
|
-
}[] | null | undefined;
|
|
1009
899
|
}[] | null | undefined;
|
|
1010
900
|
} | null | undefined;
|
|
1011
901
|
onNewRecord?: {
|
|
1012
902
|
enabled?: boolean | null | undefined;
|
|
1013
903
|
config?: {
|
|
1014
904
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
1015
|
-
properties?: {
|
|
1016
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
1017
|
-
}[] | null | undefined;
|
|
1018
905
|
}[] | null | undefined;
|
|
1019
906
|
} | null | undefined;
|
|
1020
907
|
}>>>;
|
|
@@ -1736,18 +1623,12 @@ export declare const ProviderData: z.ZodObject<{
|
|
|
1736
1623
|
enabled?: boolean | null | undefined;
|
|
1737
1624
|
config?: {
|
|
1738
1625
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
1739
|
-
properties?: {
|
|
1740
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
1741
|
-
}[] | null | undefined;
|
|
1742
1626
|
}[] | null | undefined;
|
|
1743
1627
|
} | null | undefined;
|
|
1744
1628
|
onNewRecord?: {
|
|
1745
1629
|
enabled?: boolean | null | undefined;
|
|
1746
1630
|
config?: {
|
|
1747
1631
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
1748
|
-
properties?: {
|
|
1749
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
1750
|
-
}[] | null | undefined;
|
|
1751
1632
|
}[] | null | undefined;
|
|
1752
1633
|
} | null | undefined;
|
|
1753
1634
|
} | null | undefined;
|
|
@@ -1932,18 +1813,12 @@ export declare const ProviderData: z.ZodObject<{
|
|
|
1932
1813
|
enabled?: boolean | null | undefined;
|
|
1933
1814
|
config?: {
|
|
1934
1815
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
1935
|
-
properties?: {
|
|
1936
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
1937
|
-
}[] | null | undefined;
|
|
1938
1816
|
}[] | null | undefined;
|
|
1939
1817
|
} | null | undefined;
|
|
1940
1818
|
onNewRecord?: {
|
|
1941
1819
|
enabled?: boolean | null | undefined;
|
|
1942
1820
|
config?: {
|
|
1943
1821
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
1944
|
-
properties?: {
|
|
1945
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
1946
|
-
}[] | null | undefined;
|
|
1947
1822
|
}[] | null | undefined;
|
|
1948
1823
|
} | null | undefined;
|
|
1949
1824
|
} | null | undefined;
|
|
@@ -2213,78 +2088,40 @@ export declare const ProviderDataProject: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
2213
2088
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2214
2089
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2215
2090
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
2216
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2217
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
2218
|
-
}, "strip", z.ZodTypeAny, {
|
|
2219
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2220
|
-
}, {
|
|
2221
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2222
|
-
}>, "many">>>>>;
|
|
2223
2091
|
}, "strip", z.ZodTypeAny, {
|
|
2224
2092
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2225
|
-
properties?: {
|
|
2226
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2227
|
-
}[] | null | undefined;
|
|
2228
2093
|
}, {
|
|
2229
2094
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2230
|
-
properties?: {
|
|
2231
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2232
|
-
}[] | null | undefined;
|
|
2233
2095
|
}>, "many">>>;
|
|
2234
2096
|
}, "strip", z.ZodTypeAny, {
|
|
2235
2097
|
enabled?: boolean | null | undefined;
|
|
2236
2098
|
config?: {
|
|
2237
2099
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2238
|
-
properties?: {
|
|
2239
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2240
|
-
}[] | null | undefined;
|
|
2241
2100
|
}[] | null | undefined;
|
|
2242
2101
|
}, {
|
|
2243
2102
|
enabled?: boolean | null | undefined;
|
|
2244
2103
|
config?: {
|
|
2245
2104
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2246
|
-
properties?: {
|
|
2247
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2248
|
-
}[] | null | undefined;
|
|
2249
2105
|
}[] | null | undefined;
|
|
2250
2106
|
}>>>;
|
|
2251
2107
|
onNewRecord: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2252
2108
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2253
2109
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2254
2110
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
2255
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2256
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
2257
|
-
}, "strip", z.ZodTypeAny, {
|
|
2258
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2259
|
-
}, {
|
|
2260
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2261
|
-
}>, "many">>>>>;
|
|
2262
2111
|
}, "strip", z.ZodTypeAny, {
|
|
2263
2112
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2264
|
-
properties?: {
|
|
2265
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2266
|
-
}[] | null | undefined;
|
|
2267
2113
|
}, {
|
|
2268
2114
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2269
|
-
properties?: {
|
|
2270
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2271
|
-
}[] | null | undefined;
|
|
2272
2115
|
}>, "many">>>;
|
|
2273
2116
|
}, "strip", z.ZodTypeAny, {
|
|
2274
2117
|
enabled?: boolean | null | undefined;
|
|
2275
2118
|
config?: {
|
|
2276
2119
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2277
|
-
properties?: {
|
|
2278
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2279
|
-
}[] | null | undefined;
|
|
2280
2120
|
}[] | null | undefined;
|
|
2281
2121
|
}, {
|
|
2282
2122
|
enabled?: boolean | null | undefined;
|
|
2283
2123
|
config?: {
|
|
2284
2124
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2285
|
-
properties?: {
|
|
2286
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2287
|
-
}[] | null | undefined;
|
|
2288
2125
|
}[] | null | undefined;
|
|
2289
2126
|
}>>>;
|
|
2290
2127
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2295,18 +2132,12 @@ export declare const ProviderDataProject: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
2295
2132
|
enabled?: boolean | null | undefined;
|
|
2296
2133
|
config?: {
|
|
2297
2134
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2298
|
-
properties?: {
|
|
2299
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2300
|
-
}[] | null | undefined;
|
|
2301
2135
|
}[] | null | undefined;
|
|
2302
2136
|
} | null | undefined;
|
|
2303
2137
|
onNewRecord?: {
|
|
2304
2138
|
enabled?: boolean | null | undefined;
|
|
2305
2139
|
config?: {
|
|
2306
2140
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2307
|
-
properties?: {
|
|
2308
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2309
|
-
}[] | null | undefined;
|
|
2310
2141
|
}[] | null | undefined;
|
|
2311
2142
|
} | null | undefined;
|
|
2312
2143
|
}, {
|
|
@@ -2317,18 +2148,12 @@ export declare const ProviderDataProject: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
2317
2148
|
enabled?: boolean | null | undefined;
|
|
2318
2149
|
config?: {
|
|
2319
2150
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2320
|
-
properties?: {
|
|
2321
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2322
|
-
}[] | null | undefined;
|
|
2323
2151
|
}[] | null | undefined;
|
|
2324
2152
|
} | null | undefined;
|
|
2325
2153
|
onNewRecord?: {
|
|
2326
2154
|
enabled?: boolean | null | undefined;
|
|
2327
2155
|
config?: {
|
|
2328
2156
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
2329
|
-
properties?: {
|
|
2330
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
2331
|
-
}[] | null | undefined;
|
|
2332
2157
|
}[] | null | undefined;
|
|
2333
2158
|
} | null | undefined;
|
|
2334
2159
|
}>>>;
|
|
@@ -3060,18 +2885,12 @@ export declare const ProviderDataProject: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
3060
2885
|
enabled?: boolean | null | undefined;
|
|
3061
2886
|
config?: {
|
|
3062
2887
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3063
|
-
properties?: {
|
|
3064
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3065
|
-
}[] | null | undefined;
|
|
3066
2888
|
}[] | null | undefined;
|
|
3067
2889
|
} | null | undefined;
|
|
3068
2890
|
onNewRecord?: {
|
|
3069
2891
|
enabled?: boolean | null | undefined;
|
|
3070
2892
|
config?: {
|
|
3071
2893
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3072
|
-
properties?: {
|
|
3073
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3074
|
-
}[] | null | undefined;
|
|
3075
2894
|
}[] | null | undefined;
|
|
3076
2895
|
} | null | undefined;
|
|
3077
2896
|
} | null | undefined;
|
|
@@ -3258,18 +3077,12 @@ export declare const ProviderDataProject: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
3258
3077
|
enabled?: boolean | null | undefined;
|
|
3259
3078
|
config?: {
|
|
3260
3079
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3261
|
-
properties?: {
|
|
3262
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3263
|
-
}[] | null | undefined;
|
|
3264
3080
|
}[] | null | undefined;
|
|
3265
3081
|
} | null | undefined;
|
|
3266
3082
|
onNewRecord?: {
|
|
3267
3083
|
enabled?: boolean | null | undefined;
|
|
3268
3084
|
config?: {
|
|
3269
3085
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3270
|
-
properties?: {
|
|
3271
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3272
|
-
}[] | null | undefined;
|
|
3273
3086
|
}[] | null | undefined;
|
|
3274
3087
|
} | null | undefined;
|
|
3275
3088
|
} | null | undefined;
|
|
@@ -3539,78 +3352,40 @@ export declare const GetProvidersResponse: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
3539
3352
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3540
3353
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3541
3354
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
3542
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3543
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
3544
|
-
}, "strip", z.ZodTypeAny, {
|
|
3545
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3546
|
-
}, {
|
|
3547
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3548
|
-
}>, "many">>>>>;
|
|
3549
3355
|
}, "strip", z.ZodTypeAny, {
|
|
3550
3356
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3551
|
-
properties?: {
|
|
3552
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3553
|
-
}[] | null | undefined;
|
|
3554
3357
|
}, {
|
|
3555
3358
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3556
|
-
properties?: {
|
|
3557
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3558
|
-
}[] | null | undefined;
|
|
3559
3359
|
}>, "many">>>;
|
|
3560
3360
|
}, "strip", z.ZodTypeAny, {
|
|
3561
3361
|
enabled?: boolean | null | undefined;
|
|
3562
3362
|
config?: {
|
|
3563
3363
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3564
|
-
properties?: {
|
|
3565
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3566
|
-
}[] | null | undefined;
|
|
3567
3364
|
}[] | null | undefined;
|
|
3568
3365
|
}, {
|
|
3569
3366
|
enabled?: boolean | null | undefined;
|
|
3570
3367
|
config?: {
|
|
3571
3368
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3572
|
-
properties?: {
|
|
3573
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3574
|
-
}[] | null | undefined;
|
|
3575
3369
|
}[] | null | undefined;
|
|
3576
3370
|
}>>>;
|
|
3577
3371
|
onNewRecord: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3578
3372
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3579
3373
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3580
3374
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
3581
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3582
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
3583
|
-
}, "strip", z.ZodTypeAny, {
|
|
3584
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3585
|
-
}, {
|
|
3586
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3587
|
-
}>, "many">>>>>;
|
|
3588
3375
|
}, "strip", z.ZodTypeAny, {
|
|
3589
3376
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3590
|
-
properties?: {
|
|
3591
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3592
|
-
}[] | null | undefined;
|
|
3593
3377
|
}, {
|
|
3594
3378
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3595
|
-
properties?: {
|
|
3596
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3597
|
-
}[] | null | undefined;
|
|
3598
3379
|
}>, "many">>>;
|
|
3599
3380
|
}, "strip", z.ZodTypeAny, {
|
|
3600
3381
|
enabled?: boolean | null | undefined;
|
|
3601
3382
|
config?: {
|
|
3602
3383
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3603
|
-
properties?: {
|
|
3604
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3605
|
-
}[] | null | undefined;
|
|
3606
3384
|
}[] | null | undefined;
|
|
3607
3385
|
}, {
|
|
3608
3386
|
enabled?: boolean | null | undefined;
|
|
3609
3387
|
config?: {
|
|
3610
3388
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3611
|
-
properties?: {
|
|
3612
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3613
|
-
}[] | null | undefined;
|
|
3614
3389
|
}[] | null | undefined;
|
|
3615
3390
|
}>>>;
|
|
3616
3391
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3621,18 +3396,12 @@ export declare const GetProvidersResponse: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
3621
3396
|
enabled?: boolean | null | undefined;
|
|
3622
3397
|
config?: {
|
|
3623
3398
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3624
|
-
properties?: {
|
|
3625
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3626
|
-
}[] | null | undefined;
|
|
3627
3399
|
}[] | null | undefined;
|
|
3628
3400
|
} | null | undefined;
|
|
3629
3401
|
onNewRecord?: {
|
|
3630
3402
|
enabled?: boolean | null | undefined;
|
|
3631
3403
|
config?: {
|
|
3632
3404
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3633
|
-
properties?: {
|
|
3634
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3635
|
-
}[] | null | undefined;
|
|
3636
3405
|
}[] | null | undefined;
|
|
3637
3406
|
} | null | undefined;
|
|
3638
3407
|
}, {
|
|
@@ -3643,18 +3412,12 @@ export declare const GetProvidersResponse: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
3643
3412
|
enabled?: boolean | null | undefined;
|
|
3644
3413
|
config?: {
|
|
3645
3414
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3646
|
-
properties?: {
|
|
3647
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3648
|
-
}[] | null | undefined;
|
|
3649
3415
|
}[] | null | undefined;
|
|
3650
3416
|
} | null | undefined;
|
|
3651
3417
|
onNewRecord?: {
|
|
3652
3418
|
enabled?: boolean | null | undefined;
|
|
3653
3419
|
config?: {
|
|
3654
3420
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
3655
|
-
properties?: {
|
|
3656
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
3657
|
-
}[] | null | undefined;
|
|
3658
3421
|
}[] | null | undefined;
|
|
3659
3422
|
} | null | undefined;
|
|
3660
3423
|
}>>>;
|
|
@@ -4386,18 +4149,12 @@ export declare const GetProvidersResponse: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
4386
4149
|
enabled?: boolean | null | undefined;
|
|
4387
4150
|
config?: {
|
|
4388
4151
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4389
|
-
properties?: {
|
|
4390
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4391
|
-
}[] | null | undefined;
|
|
4392
4152
|
}[] | null | undefined;
|
|
4393
4153
|
} | null | undefined;
|
|
4394
4154
|
onNewRecord?: {
|
|
4395
4155
|
enabled?: boolean | null | undefined;
|
|
4396
4156
|
config?: {
|
|
4397
4157
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4398
|
-
properties?: {
|
|
4399
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4400
|
-
}[] | null | undefined;
|
|
4401
4158
|
}[] | null | undefined;
|
|
4402
4159
|
} | null | undefined;
|
|
4403
4160
|
} | null | undefined;
|
|
@@ -4584,18 +4341,12 @@ export declare const GetProvidersResponse: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
4584
4341
|
enabled?: boolean | null | undefined;
|
|
4585
4342
|
config?: {
|
|
4586
4343
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4587
|
-
properties?: {
|
|
4588
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4589
|
-
}[] | null | undefined;
|
|
4590
4344
|
}[] | null | undefined;
|
|
4591
4345
|
} | null | undefined;
|
|
4592
4346
|
onNewRecord?: {
|
|
4593
4347
|
enabled?: boolean | null | undefined;
|
|
4594
4348
|
config?: {
|
|
4595
4349
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4596
|
-
properties?: {
|
|
4597
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4598
|
-
}[] | null | undefined;
|
|
4599
4350
|
}[] | null | undefined;
|
|
4600
4351
|
} | null | undefined;
|
|
4601
4352
|
} | null | undefined;
|
|
@@ -4865,78 +4616,40 @@ export declare const GetProviderResponse: z.ZodObject<{
|
|
|
4865
4616
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4866
4617
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4867
4618
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
4868
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4869
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
4870
|
-
}, "strip", z.ZodTypeAny, {
|
|
4871
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4872
|
-
}, {
|
|
4873
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4874
|
-
}>, "many">>>>>;
|
|
4875
4619
|
}, "strip", z.ZodTypeAny, {
|
|
4876
4620
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4877
|
-
properties?: {
|
|
4878
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4879
|
-
}[] | null | undefined;
|
|
4880
4621
|
}, {
|
|
4881
4622
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4882
|
-
properties?: {
|
|
4883
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4884
|
-
}[] | null | undefined;
|
|
4885
4623
|
}>, "many">>>;
|
|
4886
4624
|
}, "strip", z.ZodTypeAny, {
|
|
4887
4625
|
enabled?: boolean | null | undefined;
|
|
4888
4626
|
config?: {
|
|
4889
4627
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4890
|
-
properties?: {
|
|
4891
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4892
|
-
}[] | null | undefined;
|
|
4893
4628
|
}[] | null | undefined;
|
|
4894
4629
|
}, {
|
|
4895
4630
|
enabled?: boolean | null | undefined;
|
|
4896
4631
|
config?: {
|
|
4897
4632
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4898
|
-
properties?: {
|
|
4899
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4900
|
-
}[] | null | undefined;
|
|
4901
4633
|
}[] | null | undefined;
|
|
4902
4634
|
}>>>;
|
|
4903
4635
|
onNewRecord: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4904
4636
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4905
4637
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4906
4638
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
4907
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4908
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
4909
|
-
}, "strip", z.ZodTypeAny, {
|
|
4910
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4911
|
-
}, {
|
|
4912
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4913
|
-
}>, "many">>>>>;
|
|
4914
4639
|
}, "strip", z.ZodTypeAny, {
|
|
4915
4640
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4916
|
-
properties?: {
|
|
4917
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4918
|
-
}[] | null | undefined;
|
|
4919
4641
|
}, {
|
|
4920
4642
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4921
|
-
properties?: {
|
|
4922
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4923
|
-
}[] | null | undefined;
|
|
4924
4643
|
}>, "many">>>;
|
|
4925
4644
|
}, "strip", z.ZodTypeAny, {
|
|
4926
4645
|
enabled?: boolean | null | undefined;
|
|
4927
4646
|
config?: {
|
|
4928
4647
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4929
|
-
properties?: {
|
|
4930
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4931
|
-
}[] | null | undefined;
|
|
4932
4648
|
}[] | null | undefined;
|
|
4933
4649
|
}, {
|
|
4934
4650
|
enabled?: boolean | null | undefined;
|
|
4935
4651
|
config?: {
|
|
4936
4652
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4937
|
-
properties?: {
|
|
4938
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4939
|
-
}[] | null | undefined;
|
|
4940
4653
|
}[] | null | undefined;
|
|
4941
4654
|
}>>>;
|
|
4942
4655
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4947,18 +4660,12 @@ export declare const GetProviderResponse: z.ZodObject<{
|
|
|
4947
4660
|
enabled?: boolean | null | undefined;
|
|
4948
4661
|
config?: {
|
|
4949
4662
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4950
|
-
properties?: {
|
|
4951
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4952
|
-
}[] | null | undefined;
|
|
4953
4663
|
}[] | null | undefined;
|
|
4954
4664
|
} | null | undefined;
|
|
4955
4665
|
onNewRecord?: {
|
|
4956
4666
|
enabled?: boolean | null | undefined;
|
|
4957
4667
|
config?: {
|
|
4958
4668
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4959
|
-
properties?: {
|
|
4960
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4961
|
-
}[] | null | undefined;
|
|
4962
4669
|
}[] | null | undefined;
|
|
4963
4670
|
} | null | undefined;
|
|
4964
4671
|
}, {
|
|
@@ -4969,18 +4676,12 @@ export declare const GetProviderResponse: z.ZodObject<{
|
|
|
4969
4676
|
enabled?: boolean | null | undefined;
|
|
4970
4677
|
config?: {
|
|
4971
4678
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4972
|
-
properties?: {
|
|
4973
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4974
|
-
}[] | null | undefined;
|
|
4975
4679
|
}[] | null | undefined;
|
|
4976
4680
|
} | null | undefined;
|
|
4977
4681
|
onNewRecord?: {
|
|
4978
4682
|
enabled?: boolean | null | undefined;
|
|
4979
4683
|
config?: {
|
|
4980
4684
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
4981
|
-
properties?: {
|
|
4982
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
4983
|
-
}[] | null | undefined;
|
|
4984
4685
|
}[] | null | undefined;
|
|
4985
4686
|
} | null | undefined;
|
|
4986
4687
|
}>>>;
|
|
@@ -5702,18 +5403,12 @@ export declare const GetProviderResponse: z.ZodObject<{
|
|
|
5702
5403
|
enabled?: boolean | null | undefined;
|
|
5703
5404
|
config?: {
|
|
5704
5405
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
5705
|
-
properties?: {
|
|
5706
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
5707
|
-
}[] | null | undefined;
|
|
5708
5406
|
}[] | null | undefined;
|
|
5709
5407
|
} | null | undefined;
|
|
5710
5408
|
onNewRecord?: {
|
|
5711
5409
|
enabled?: boolean | null | undefined;
|
|
5712
5410
|
config?: {
|
|
5713
5411
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
5714
|
-
properties?: {
|
|
5715
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
5716
|
-
}[] | null | undefined;
|
|
5717
5412
|
}[] | null | undefined;
|
|
5718
5413
|
} | null | undefined;
|
|
5719
5414
|
} | null | undefined;
|
|
@@ -5898,18 +5593,12 @@ export declare const GetProviderResponse: z.ZodObject<{
|
|
|
5898
5593
|
enabled?: boolean | null | undefined;
|
|
5899
5594
|
config?: {
|
|
5900
5595
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
5901
|
-
properties?: {
|
|
5902
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
5903
|
-
}[] | null | undefined;
|
|
5904
5596
|
}[] | null | undefined;
|
|
5905
5597
|
} | null | undefined;
|
|
5906
5598
|
onNewRecord?: {
|
|
5907
5599
|
enabled?: boolean | null | undefined;
|
|
5908
5600
|
config?: {
|
|
5909
5601
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
5910
|
-
properties?: {
|
|
5911
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
5912
|
-
}[] | null | undefined;
|
|
5913
5602
|
}[] | null | undefined;
|
|
5914
5603
|
} | null | undefined;
|
|
5915
5604
|
} | null | undefined;
|
|
@@ -6179,78 +5868,40 @@ export declare const CreateProviderInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
6179
5868
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
6180
5869
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
6181
5870
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
6182
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
6183
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
6184
|
-
}, "strip", z.ZodTypeAny, {
|
|
6185
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6186
|
-
}, {
|
|
6187
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6188
|
-
}>, "many">>>>>;
|
|
6189
5871
|
}, "strip", z.ZodTypeAny, {
|
|
6190
5872
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6191
|
-
properties?: {
|
|
6192
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6193
|
-
}[] | null | undefined;
|
|
6194
5873
|
}, {
|
|
6195
5874
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6196
|
-
properties?: {
|
|
6197
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6198
|
-
}[] | null | undefined;
|
|
6199
5875
|
}>, "many">>>;
|
|
6200
5876
|
}, "strip", z.ZodTypeAny, {
|
|
6201
5877
|
enabled?: boolean | null | undefined;
|
|
6202
5878
|
config?: {
|
|
6203
5879
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6204
|
-
properties?: {
|
|
6205
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6206
|
-
}[] | null | undefined;
|
|
6207
5880
|
}[] | null | undefined;
|
|
6208
5881
|
}, {
|
|
6209
5882
|
enabled?: boolean | null | undefined;
|
|
6210
5883
|
config?: {
|
|
6211
5884
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6212
|
-
properties?: {
|
|
6213
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6214
|
-
}[] | null | undefined;
|
|
6215
5885
|
}[] | null | undefined;
|
|
6216
5886
|
}>>>;
|
|
6217
5887
|
onNewRecord: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6218
5888
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
6219
5889
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
6220
5890
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
6221
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
6222
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
6223
|
-
}, "strip", z.ZodTypeAny, {
|
|
6224
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6225
|
-
}, {
|
|
6226
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6227
|
-
}>, "many">>>>>;
|
|
6228
5891
|
}, "strip", z.ZodTypeAny, {
|
|
6229
5892
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6230
|
-
properties?: {
|
|
6231
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6232
|
-
}[] | null | undefined;
|
|
6233
5893
|
}, {
|
|
6234
5894
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6235
|
-
properties?: {
|
|
6236
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6237
|
-
}[] | null | undefined;
|
|
6238
5895
|
}>, "many">>>;
|
|
6239
5896
|
}, "strip", z.ZodTypeAny, {
|
|
6240
5897
|
enabled?: boolean | null | undefined;
|
|
6241
5898
|
config?: {
|
|
6242
5899
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6243
|
-
properties?: {
|
|
6244
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6245
|
-
}[] | null | undefined;
|
|
6246
5900
|
}[] | null | undefined;
|
|
6247
5901
|
}, {
|
|
6248
5902
|
enabled?: boolean | null | undefined;
|
|
6249
5903
|
config?: {
|
|
6250
5904
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6251
|
-
properties?: {
|
|
6252
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6253
|
-
}[] | null | undefined;
|
|
6254
5905
|
}[] | null | undefined;
|
|
6255
5906
|
}>>>;
|
|
6256
5907
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6261,18 +5912,12 @@ export declare const CreateProviderInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
6261
5912
|
enabled?: boolean | null | undefined;
|
|
6262
5913
|
config?: {
|
|
6263
5914
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6264
|
-
properties?: {
|
|
6265
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6266
|
-
}[] | null | undefined;
|
|
6267
5915
|
}[] | null | undefined;
|
|
6268
5916
|
} | null | undefined;
|
|
6269
5917
|
onNewRecord?: {
|
|
6270
5918
|
enabled?: boolean | null | undefined;
|
|
6271
5919
|
config?: {
|
|
6272
5920
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6273
|
-
properties?: {
|
|
6274
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6275
|
-
}[] | null | undefined;
|
|
6276
5921
|
}[] | null | undefined;
|
|
6277
5922
|
} | null | undefined;
|
|
6278
5923
|
}, {
|
|
@@ -6283,18 +5928,12 @@ export declare const CreateProviderInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
6283
5928
|
enabled?: boolean | null | undefined;
|
|
6284
5929
|
config?: {
|
|
6285
5930
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6286
|
-
properties?: {
|
|
6287
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6288
|
-
}[] | null | undefined;
|
|
6289
5931
|
}[] | null | undefined;
|
|
6290
5932
|
} | null | undefined;
|
|
6291
5933
|
onNewRecord?: {
|
|
6292
5934
|
enabled?: boolean | null | undefined;
|
|
6293
5935
|
config?: {
|
|
6294
5936
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
6295
|
-
properties?: {
|
|
6296
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
6297
|
-
}[] | null | undefined;
|
|
6298
5937
|
}[] | null | undefined;
|
|
6299
5938
|
} | null | undefined;
|
|
6300
5939
|
}>>>;
|
|
@@ -7016,18 +6655,12 @@ export declare const CreateProviderInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
7016
6655
|
enabled?: boolean | null | undefined;
|
|
7017
6656
|
config?: {
|
|
7018
6657
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7019
|
-
properties?: {
|
|
7020
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7021
|
-
}[] | null | undefined;
|
|
7022
6658
|
}[] | null | undefined;
|
|
7023
6659
|
} | null | undefined;
|
|
7024
6660
|
onNewRecord?: {
|
|
7025
6661
|
enabled?: boolean | null | undefined;
|
|
7026
6662
|
config?: {
|
|
7027
6663
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7028
|
-
properties?: {
|
|
7029
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7030
|
-
}[] | null | undefined;
|
|
7031
6664
|
}[] | null | undefined;
|
|
7032
6665
|
} | null | undefined;
|
|
7033
6666
|
} | null | undefined;
|
|
@@ -7210,18 +6843,12 @@ export declare const CreateProviderInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
7210
6843
|
enabled?: boolean | null | undefined;
|
|
7211
6844
|
config?: {
|
|
7212
6845
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7213
|
-
properties?: {
|
|
7214
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7215
|
-
}[] | null | undefined;
|
|
7216
6846
|
}[] | null | undefined;
|
|
7217
6847
|
} | null | undefined;
|
|
7218
6848
|
onNewRecord?: {
|
|
7219
6849
|
enabled?: boolean | null | undefined;
|
|
7220
6850
|
config?: {
|
|
7221
6851
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7222
|
-
properties?: {
|
|
7223
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7224
|
-
}[] | null | undefined;
|
|
7225
6852
|
}[] | null | undefined;
|
|
7226
6853
|
} | null | undefined;
|
|
7227
6854
|
} | null | undefined;
|
|
@@ -7491,78 +7118,40 @@ export declare const CreateProviderResponse: z.ZodObject<Omit<{
|
|
|
7491
7118
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
7492
7119
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
7493
7120
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
7494
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
7495
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
7496
|
-
}, "strip", z.ZodTypeAny, {
|
|
7497
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7498
|
-
}, {
|
|
7499
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7500
|
-
}>, "many">>>>>;
|
|
7501
7121
|
}, "strip", z.ZodTypeAny, {
|
|
7502
7122
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7503
|
-
properties?: {
|
|
7504
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7505
|
-
}[] | null | undefined;
|
|
7506
7123
|
}, {
|
|
7507
7124
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7508
|
-
properties?: {
|
|
7509
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7510
|
-
}[] | null | undefined;
|
|
7511
7125
|
}>, "many">>>;
|
|
7512
7126
|
}, "strip", z.ZodTypeAny, {
|
|
7513
7127
|
enabled?: boolean | null | undefined;
|
|
7514
7128
|
config?: {
|
|
7515
7129
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7516
|
-
properties?: {
|
|
7517
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7518
|
-
}[] | null | undefined;
|
|
7519
7130
|
}[] | null | undefined;
|
|
7520
7131
|
}, {
|
|
7521
7132
|
enabled?: boolean | null | undefined;
|
|
7522
7133
|
config?: {
|
|
7523
7134
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7524
|
-
properties?: {
|
|
7525
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7526
|
-
}[] | null | undefined;
|
|
7527
7135
|
}[] | null | undefined;
|
|
7528
7136
|
}>>>;
|
|
7529
7137
|
onNewRecord: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7530
7138
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
7531
7139
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
7532
7140
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
7533
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
7534
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
7535
|
-
}, "strip", z.ZodTypeAny, {
|
|
7536
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7537
|
-
}, {
|
|
7538
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7539
|
-
}>, "many">>>>>;
|
|
7540
7141
|
}, "strip", z.ZodTypeAny, {
|
|
7541
7142
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7542
|
-
properties?: {
|
|
7543
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7544
|
-
}[] | null | undefined;
|
|
7545
7143
|
}, {
|
|
7546
7144
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7547
|
-
properties?: {
|
|
7548
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7549
|
-
}[] | null | undefined;
|
|
7550
7145
|
}>, "many">>>;
|
|
7551
7146
|
}, "strip", z.ZodTypeAny, {
|
|
7552
7147
|
enabled?: boolean | null | undefined;
|
|
7553
7148
|
config?: {
|
|
7554
7149
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7555
|
-
properties?: {
|
|
7556
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7557
|
-
}[] | null | undefined;
|
|
7558
7150
|
}[] | null | undefined;
|
|
7559
7151
|
}, {
|
|
7560
7152
|
enabled?: boolean | null | undefined;
|
|
7561
7153
|
config?: {
|
|
7562
7154
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7563
|
-
properties?: {
|
|
7564
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7565
|
-
}[] | null | undefined;
|
|
7566
7155
|
}[] | null | undefined;
|
|
7567
7156
|
}>>>;
|
|
7568
7157
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7573,18 +7162,12 @@ export declare const CreateProviderResponse: z.ZodObject<Omit<{
|
|
|
7573
7162
|
enabled?: boolean | null | undefined;
|
|
7574
7163
|
config?: {
|
|
7575
7164
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7576
|
-
properties?: {
|
|
7577
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7578
|
-
}[] | null | undefined;
|
|
7579
7165
|
}[] | null | undefined;
|
|
7580
7166
|
} | null | undefined;
|
|
7581
7167
|
onNewRecord?: {
|
|
7582
7168
|
enabled?: boolean | null | undefined;
|
|
7583
7169
|
config?: {
|
|
7584
7170
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7585
|
-
properties?: {
|
|
7586
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7587
|
-
}[] | null | undefined;
|
|
7588
7171
|
}[] | null | undefined;
|
|
7589
7172
|
} | null | undefined;
|
|
7590
7173
|
}, {
|
|
@@ -7595,18 +7178,12 @@ export declare const CreateProviderResponse: z.ZodObject<Omit<{
|
|
|
7595
7178
|
enabled?: boolean | null | undefined;
|
|
7596
7179
|
config?: {
|
|
7597
7180
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7598
|
-
properties?: {
|
|
7599
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7600
|
-
}[] | null | undefined;
|
|
7601
7181
|
}[] | null | undefined;
|
|
7602
7182
|
} | null | undefined;
|
|
7603
7183
|
onNewRecord?: {
|
|
7604
7184
|
enabled?: boolean | null | undefined;
|
|
7605
7185
|
config?: {
|
|
7606
7186
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
7607
|
-
properties?: {
|
|
7608
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
7609
|
-
}[] | null | undefined;
|
|
7610
7187
|
}[] | null | undefined;
|
|
7611
7188
|
} | null | undefined;
|
|
7612
7189
|
}>>>;
|
|
@@ -8487,78 +8064,40 @@ export declare const UpdateProviderInput: z.ZodObject<{
|
|
|
8487
8064
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
8488
8065
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
8489
8066
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
8490
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
8491
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
8492
|
-
}, "strip", z.ZodTypeAny, {
|
|
8493
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8494
|
-
}, {
|
|
8495
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8496
|
-
}>, "many">>>>>;
|
|
8497
8067
|
}, "strip", z.ZodTypeAny, {
|
|
8498
8068
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8499
|
-
properties?: {
|
|
8500
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8501
|
-
}[] | null | undefined;
|
|
8502
8069
|
}, {
|
|
8503
8070
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8504
|
-
properties?: {
|
|
8505
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8506
|
-
}[] | null | undefined;
|
|
8507
8071
|
}>, "many">>>;
|
|
8508
8072
|
}, "strip", z.ZodTypeAny, {
|
|
8509
8073
|
enabled?: boolean | null | undefined;
|
|
8510
8074
|
config?: {
|
|
8511
8075
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8512
|
-
properties?: {
|
|
8513
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8514
|
-
}[] | null | undefined;
|
|
8515
8076
|
}[] | null | undefined;
|
|
8516
8077
|
}, {
|
|
8517
8078
|
enabled?: boolean | null | undefined;
|
|
8518
8079
|
config?: {
|
|
8519
8080
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8520
|
-
properties?: {
|
|
8521
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8522
|
-
}[] | null | undefined;
|
|
8523
8081
|
}[] | null | undefined;
|
|
8524
8082
|
}>>>;
|
|
8525
8083
|
onNewRecord: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8526
8084
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
8527
8085
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
8528
8086
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
8529
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
8530
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
8531
|
-
}, "strip", z.ZodTypeAny, {
|
|
8532
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8533
|
-
}, {
|
|
8534
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8535
|
-
}>, "many">>>>>;
|
|
8536
8087
|
}, "strip", z.ZodTypeAny, {
|
|
8537
8088
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8538
|
-
properties?: {
|
|
8539
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8540
|
-
}[] | null | undefined;
|
|
8541
8089
|
}, {
|
|
8542
8090
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8543
|
-
properties?: {
|
|
8544
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8545
|
-
}[] | null | undefined;
|
|
8546
8091
|
}>, "many">>>;
|
|
8547
8092
|
}, "strip", z.ZodTypeAny, {
|
|
8548
8093
|
enabled?: boolean | null | undefined;
|
|
8549
8094
|
config?: {
|
|
8550
8095
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8551
|
-
properties?: {
|
|
8552
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8553
|
-
}[] | null | undefined;
|
|
8554
8096
|
}[] | null | undefined;
|
|
8555
8097
|
}, {
|
|
8556
8098
|
enabled?: boolean | null | undefined;
|
|
8557
8099
|
config?: {
|
|
8558
8100
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8559
|
-
properties?: {
|
|
8560
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8561
|
-
}[] | null | undefined;
|
|
8562
8101
|
}[] | null | undefined;
|
|
8563
8102
|
}>>>;
|
|
8564
8103
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -8569,18 +8108,12 @@ export declare const UpdateProviderInput: z.ZodObject<{
|
|
|
8569
8108
|
enabled?: boolean | null | undefined;
|
|
8570
8109
|
config?: {
|
|
8571
8110
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8572
|
-
properties?: {
|
|
8573
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8574
|
-
}[] | null | undefined;
|
|
8575
8111
|
}[] | null | undefined;
|
|
8576
8112
|
} | null | undefined;
|
|
8577
8113
|
onNewRecord?: {
|
|
8578
8114
|
enabled?: boolean | null | undefined;
|
|
8579
8115
|
config?: {
|
|
8580
8116
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8581
|
-
properties?: {
|
|
8582
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8583
|
-
}[] | null | undefined;
|
|
8584
8117
|
}[] | null | undefined;
|
|
8585
8118
|
} | null | undefined;
|
|
8586
8119
|
}, {
|
|
@@ -8591,18 +8124,12 @@ export declare const UpdateProviderInput: z.ZodObject<{
|
|
|
8591
8124
|
enabled?: boolean | null | undefined;
|
|
8592
8125
|
config?: {
|
|
8593
8126
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8594
|
-
properties?: {
|
|
8595
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8596
|
-
}[] | null | undefined;
|
|
8597
8127
|
}[] | null | undefined;
|
|
8598
8128
|
} | null | undefined;
|
|
8599
8129
|
onNewRecord?: {
|
|
8600
8130
|
enabled?: boolean | null | undefined;
|
|
8601
8131
|
config?: {
|
|
8602
8132
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
8603
|
-
properties?: {
|
|
8604
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
8605
|
-
}[] | null | undefined;
|
|
8606
8133
|
}[] | null | undefined;
|
|
8607
8134
|
} | null | undefined;
|
|
8608
8135
|
}>>>;
|
|
@@ -9320,18 +8847,12 @@ export declare const UpdateProviderInput: z.ZodObject<{
|
|
|
9320
8847
|
enabled?: boolean | null | undefined;
|
|
9321
8848
|
config?: {
|
|
9322
8849
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
9323
|
-
properties?: {
|
|
9324
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
9325
|
-
}[] | null | undefined;
|
|
9326
8850
|
}[] | null | undefined;
|
|
9327
8851
|
} | null | undefined;
|
|
9328
8852
|
onNewRecord?: {
|
|
9329
8853
|
enabled?: boolean | null | undefined;
|
|
9330
8854
|
config?: {
|
|
9331
8855
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
9332
|
-
properties?: {
|
|
9333
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
9334
|
-
}[] | null | undefined;
|
|
9335
8856
|
}[] | null | undefined;
|
|
9336
8857
|
} | null | undefined;
|
|
9337
8858
|
} | null | undefined;
|
|
@@ -9512,18 +9033,12 @@ export declare const UpdateProviderInput: z.ZodObject<{
|
|
|
9512
9033
|
enabled?: boolean | null | undefined;
|
|
9513
9034
|
config?: {
|
|
9514
9035
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
9515
|
-
properties?: {
|
|
9516
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
9517
|
-
}[] | null | undefined;
|
|
9518
9036
|
}[] | null | undefined;
|
|
9519
9037
|
} | null | undefined;
|
|
9520
9038
|
onNewRecord?: {
|
|
9521
9039
|
enabled?: boolean | null | undefined;
|
|
9522
9040
|
config?: {
|
|
9523
9041
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
9524
|
-
properties?: {
|
|
9525
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
9526
|
-
}[] | null | undefined;
|
|
9527
9042
|
}[] | null | undefined;
|
|
9528
9043
|
} | null | undefined;
|
|
9529
9044
|
} | null | undefined;
|
|
@@ -9706,18 +9221,12 @@ export declare const UpdateProviderInput: z.ZodObject<{
|
|
|
9706
9221
|
enabled?: boolean | null | undefined;
|
|
9707
9222
|
config?: {
|
|
9708
9223
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
9709
|
-
properties?: {
|
|
9710
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
9711
|
-
}[] | null | undefined;
|
|
9712
9224
|
}[] | null | undefined;
|
|
9713
9225
|
} | null | undefined;
|
|
9714
9226
|
onNewRecord?: {
|
|
9715
9227
|
enabled?: boolean | null | undefined;
|
|
9716
9228
|
config?: {
|
|
9717
9229
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
9718
|
-
properties?: {
|
|
9719
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
9720
|
-
}[] | null | undefined;
|
|
9721
9230
|
}[] | null | undefined;
|
|
9722
9231
|
} | null | undefined;
|
|
9723
9232
|
} | null | undefined;
|
|
@@ -9901,18 +9410,12 @@ export declare const UpdateProviderInput: z.ZodObject<{
|
|
|
9901
9410
|
enabled?: boolean | null | undefined;
|
|
9902
9411
|
config?: {
|
|
9903
9412
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
9904
|
-
properties?: {
|
|
9905
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
9906
|
-
}[] | null | undefined;
|
|
9907
9413
|
}[] | null | undefined;
|
|
9908
9414
|
} | null | undefined;
|
|
9909
9415
|
onNewRecord?: {
|
|
9910
9416
|
enabled?: boolean | null | undefined;
|
|
9911
9417
|
config?: {
|
|
9912
9418
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
9913
|
-
properties?: {
|
|
9914
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
9915
|
-
}[] | null | undefined;
|
|
9916
9419
|
}[] | null | undefined;
|
|
9917
9420
|
} | null | undefined;
|
|
9918
9421
|
} | null | undefined;
|
|
@@ -10184,78 +9687,40 @@ export declare const UpdateProviderResponse: z.ZodObject<{
|
|
|
10184
9687
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
10185
9688
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
10186
9689
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
10187
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
10188
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
10189
|
-
}, "strip", z.ZodTypeAny, {
|
|
10190
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10191
|
-
}, {
|
|
10192
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10193
|
-
}>, "many">>>>>;
|
|
10194
9690
|
}, "strip", z.ZodTypeAny, {
|
|
10195
9691
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10196
|
-
properties?: {
|
|
10197
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10198
|
-
}[] | null | undefined;
|
|
10199
9692
|
}, {
|
|
10200
9693
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10201
|
-
properties?: {
|
|
10202
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10203
|
-
}[] | null | undefined;
|
|
10204
9694
|
}>, "many">>>;
|
|
10205
9695
|
}, "strip", z.ZodTypeAny, {
|
|
10206
9696
|
enabled?: boolean | null | undefined;
|
|
10207
9697
|
config?: {
|
|
10208
9698
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10209
|
-
properties?: {
|
|
10210
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10211
|
-
}[] | null | undefined;
|
|
10212
9699
|
}[] | null | undefined;
|
|
10213
9700
|
}, {
|
|
10214
9701
|
enabled?: boolean | null | undefined;
|
|
10215
9702
|
config?: {
|
|
10216
9703
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10217
|
-
properties?: {
|
|
10218
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10219
|
-
}[] | null | undefined;
|
|
10220
9704
|
}[] | null | undefined;
|
|
10221
9705
|
}>>>;
|
|
10222
9706
|
onNewRecord: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10223
9707
|
enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
10224
9708
|
config: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
10225
9709
|
crypto: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>>;
|
|
10226
|
-
properties: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
10227
|
-
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
10228
|
-
}, "strip", z.ZodTypeAny, {
|
|
10229
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10230
|
-
}, {
|
|
10231
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10232
|
-
}>, "many">>>>>;
|
|
10233
9710
|
}, "strip", z.ZodTypeAny, {
|
|
10234
9711
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10235
|
-
properties?: {
|
|
10236
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10237
|
-
}[] | null | undefined;
|
|
10238
9712
|
}, {
|
|
10239
9713
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10240
|
-
properties?: {
|
|
10241
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10242
|
-
}[] | null | undefined;
|
|
10243
9714
|
}>, "many">>>;
|
|
10244
9715
|
}, "strip", z.ZodTypeAny, {
|
|
10245
9716
|
enabled?: boolean | null | undefined;
|
|
10246
9717
|
config?: {
|
|
10247
9718
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10248
|
-
properties?: {
|
|
10249
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10250
|
-
}[] | null | undefined;
|
|
10251
9719
|
}[] | null | undefined;
|
|
10252
9720
|
}, {
|
|
10253
9721
|
enabled?: boolean | null | undefined;
|
|
10254
9722
|
config?: {
|
|
10255
9723
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10256
|
-
properties?: {
|
|
10257
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10258
|
-
}[] | null | undefined;
|
|
10259
9724
|
}[] | null | undefined;
|
|
10260
9725
|
}>>>;
|
|
10261
9726
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10266,18 +9731,12 @@ export declare const UpdateProviderResponse: z.ZodObject<{
|
|
|
10266
9731
|
enabled?: boolean | null | undefined;
|
|
10267
9732
|
config?: {
|
|
10268
9733
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10269
|
-
properties?: {
|
|
10270
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10271
|
-
}[] | null | undefined;
|
|
10272
9734
|
}[] | null | undefined;
|
|
10273
9735
|
} | null | undefined;
|
|
10274
9736
|
onNewRecord?: {
|
|
10275
9737
|
enabled?: boolean | null | undefined;
|
|
10276
9738
|
config?: {
|
|
10277
9739
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10278
|
-
properties?: {
|
|
10279
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10280
|
-
}[] | null | undefined;
|
|
10281
9740
|
}[] | null | undefined;
|
|
10282
9741
|
} | null | undefined;
|
|
10283
9742
|
}, {
|
|
@@ -10288,18 +9747,12 @@ export declare const UpdateProviderResponse: z.ZodObject<{
|
|
|
10288
9747
|
enabled?: boolean | null | undefined;
|
|
10289
9748
|
config?: {
|
|
10290
9749
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10291
|
-
properties?: {
|
|
10292
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10293
|
-
}[] | null | undefined;
|
|
10294
9750
|
}[] | null | undefined;
|
|
10295
9751
|
} | null | undefined;
|
|
10296
9752
|
onNewRecord?: {
|
|
10297
9753
|
enabled?: boolean | null | undefined;
|
|
10298
9754
|
config?: {
|
|
10299
9755
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
10300
|
-
properties?: {
|
|
10301
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
10302
|
-
}[] | null | undefined;
|
|
10303
9756
|
}[] | null | undefined;
|
|
10304
9757
|
} | null | undefined;
|
|
10305
9758
|
}>>>;
|
|
@@ -11021,18 +10474,12 @@ export declare const UpdateProviderResponse: z.ZodObject<{
|
|
|
11021
10474
|
enabled?: boolean | null | undefined;
|
|
11022
10475
|
config?: {
|
|
11023
10476
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
11024
|
-
properties?: {
|
|
11025
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
11026
|
-
}[] | null | undefined;
|
|
11027
10477
|
}[] | null | undefined;
|
|
11028
10478
|
} | null | undefined;
|
|
11029
10479
|
onNewRecord?: {
|
|
11030
10480
|
enabled?: boolean | null | undefined;
|
|
11031
10481
|
config?: {
|
|
11032
10482
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
11033
|
-
properties?: {
|
|
11034
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
11035
|
-
}[] | null | undefined;
|
|
11036
10483
|
}[] | null | undefined;
|
|
11037
10484
|
} | null | undefined;
|
|
11038
10485
|
} | null | undefined;
|
|
@@ -11217,18 +10664,12 @@ export declare const UpdateProviderResponse: z.ZodObject<{
|
|
|
11217
10664
|
enabled?: boolean | null | undefined;
|
|
11218
10665
|
config?: {
|
|
11219
10666
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
11220
|
-
properties?: {
|
|
11221
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
11222
|
-
}[] | null | undefined;
|
|
11223
10667
|
}[] | null | undefined;
|
|
11224
10668
|
} | null | undefined;
|
|
11225
10669
|
onNewRecord?: {
|
|
11226
10670
|
enabled?: boolean | null | undefined;
|
|
11227
10671
|
config?: {
|
|
11228
10672
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
11229
|
-
properties?: {
|
|
11230
|
-
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
11231
|
-
}[] | null | undefined;
|
|
11232
10673
|
}[] | null | undefined;
|
|
11233
10674
|
} | null | undefined;
|
|
11234
10675
|
} | null | undefined;
|