@nexeraid/identity-schemas 1.12.29-dev → 1.12.31-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-fbb55a96.cjs.dev.js → customers.schema-bfd75809.cjs.dev.js} +3 -4
- package/dist/{customers.schema-d0525150.cjs.prod.js → customers.schema-c1a71aac.cjs.prod.js} +3 -4
- package/dist/{customers.schema-dcae7bd5.esm.js → customers.schema-f232e577.esm.js} +3 -4
- package/dist/declarations/src/providers/big/BIGBitRankVerifiedScore.schema.d.ts +2 -0
- package/dist/declarations/src/providers/big/BIGBitRankVerifiedScore.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/chainalysis/chainalysis.schema.d.ts +14 -262
- package/dist/declarations/src/providers/chainalysis/chainalysis.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/merkle-science/merkle-science.schema.d.ts +1 -0
- package/dist/declarations/src/providers/merkle-science/merkle-science.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/scorechain/scorechain.schema.d.ts +1 -0
- package/dist/declarations/src/providers/scorechain/scorechain.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/send-verification-flow-webhook.schema.d.ts +732 -0
- package/dist/declarations/src/webhooks/send-verification-flow-webhook.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +4116 -7
- package/dist/declarations/src/webhooks/svix.webhooks.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 +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +4 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +4 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +4 -1
|
@@ -1058,7 +1058,7 @@ var EnhancedChainalysisRequest = zod.z.object({
|
|
|
1058
1058
|
var ChainalysisRegisterApiResponse = zod.z.object({
|
|
1059
1059
|
address: zod.z.string()
|
|
1060
1060
|
});
|
|
1061
|
-
var
|
|
1061
|
+
var ChainalysisRiskLevel = zod.z["enum"](["Severe", "High", "Medium", "Low"]);
|
|
1062
1062
|
var AddressType = zod.z["enum"](["PRIVATE_WALLET", "LIQUIDITY_POOL", "SERVICE_PROVIDER"]);
|
|
1063
1063
|
var ExposureType = zod.z["enum"](["direct", "indirect"]);
|
|
1064
1064
|
var Direction = zod.z.literal("both_directions");
|
|
@@ -1100,7 +1100,7 @@ var PoolMetadata = zod.z.object({
|
|
|
1100
1100
|
});
|
|
1101
1101
|
var ChainalysisRiskAssessmentApiResponse = zod.z.object({
|
|
1102
1102
|
address: zod.z.string(),
|
|
1103
|
-
risk:
|
|
1103
|
+
risk: ChainalysisRiskLevel,
|
|
1104
1104
|
riskReason: zod.z.string().nullish(),
|
|
1105
1105
|
cluster: Cluster.nullish(),
|
|
1106
1106
|
addressType: AddressType,
|
|
@@ -1119,7 +1119,6 @@ var ChainalysisApiError = zod.z.object({
|
|
|
1119
1119
|
});
|
|
1120
1120
|
var ChainalysisRegisterResponse = zod.z.union([ChainalysisRegisterApiResponse, ChainalysisApiError]);
|
|
1121
1121
|
var ChainalysisRiskAssessmentResponse = zod.z.union([ChainalysisRiskAssessmentApiResponse, ChainalysisApiError]);
|
|
1122
|
-
var ChainalysisResponse = zod.z.union([ChainalysisRegisterResponse, ChainalysisRiskAssessmentResponse]);
|
|
1123
1122
|
|
|
1124
1123
|
/**
|
|
1125
1124
|
* Merkle Science defines it own blockchain list, thus this list.
|
|
@@ -2366,9 +2365,9 @@ exports.ChainalysisProvider = ChainalysisProvider;
|
|
|
2366
2365
|
exports.ChainalysisRegisterApiResponse = ChainalysisRegisterApiResponse;
|
|
2367
2366
|
exports.ChainalysisRegisterResponse = ChainalysisRegisterResponse;
|
|
2368
2367
|
exports.ChainalysisRequest = ChainalysisRequest;
|
|
2369
|
-
exports.ChainalysisResponse = ChainalysisResponse;
|
|
2370
2368
|
exports.ChainalysisRiskAssessmentApiResponse = ChainalysisRiskAssessmentApiResponse;
|
|
2371
2369
|
exports.ChainalysisRiskAssessmentResponse = ChainalysisRiskAssessmentResponse;
|
|
2370
|
+
exports.ChainalysisRiskLevel = ChainalysisRiskLevel;
|
|
2372
2371
|
exports.CoerceDateUTC = CoerceDateUTC;
|
|
2373
2372
|
exports.Coin = Coin;
|
|
2374
2373
|
exports.CompanyDocumentMetaData = CompanyDocumentMetaData;
|
package/dist/{customers.schema-d0525150.cjs.prod.js → customers.schema-c1a71aac.cjs.prod.js}
RENAMED
|
@@ -1058,7 +1058,7 @@ var EnhancedChainalysisRequest = zod.z.object({
|
|
|
1058
1058
|
var ChainalysisRegisterApiResponse = zod.z.object({
|
|
1059
1059
|
address: zod.z.string()
|
|
1060
1060
|
});
|
|
1061
|
-
var
|
|
1061
|
+
var ChainalysisRiskLevel = zod.z["enum"](["Severe", "High", "Medium", "Low"]);
|
|
1062
1062
|
var AddressType = zod.z["enum"](["PRIVATE_WALLET", "LIQUIDITY_POOL", "SERVICE_PROVIDER"]);
|
|
1063
1063
|
var ExposureType = zod.z["enum"](["direct", "indirect"]);
|
|
1064
1064
|
var Direction = zod.z.literal("both_directions");
|
|
@@ -1100,7 +1100,7 @@ var PoolMetadata = zod.z.object({
|
|
|
1100
1100
|
});
|
|
1101
1101
|
var ChainalysisRiskAssessmentApiResponse = zod.z.object({
|
|
1102
1102
|
address: zod.z.string(),
|
|
1103
|
-
risk:
|
|
1103
|
+
risk: ChainalysisRiskLevel,
|
|
1104
1104
|
riskReason: zod.z.string().nullish(),
|
|
1105
1105
|
cluster: Cluster.nullish(),
|
|
1106
1106
|
addressType: AddressType,
|
|
@@ -1119,7 +1119,6 @@ var ChainalysisApiError = zod.z.object({
|
|
|
1119
1119
|
});
|
|
1120
1120
|
var ChainalysisRegisterResponse = zod.z.union([ChainalysisRegisterApiResponse, ChainalysisApiError]);
|
|
1121
1121
|
var ChainalysisRiskAssessmentResponse = zod.z.union([ChainalysisRiskAssessmentApiResponse, ChainalysisApiError]);
|
|
1122
|
-
var ChainalysisResponse = zod.z.union([ChainalysisRegisterResponse, ChainalysisRiskAssessmentResponse]);
|
|
1123
1122
|
|
|
1124
1123
|
/**
|
|
1125
1124
|
* Merkle Science defines it own blockchain list, thus this list.
|
|
@@ -2366,9 +2365,9 @@ exports.ChainalysisProvider = ChainalysisProvider;
|
|
|
2366
2365
|
exports.ChainalysisRegisterApiResponse = ChainalysisRegisterApiResponse;
|
|
2367
2366
|
exports.ChainalysisRegisterResponse = ChainalysisRegisterResponse;
|
|
2368
2367
|
exports.ChainalysisRequest = ChainalysisRequest;
|
|
2369
|
-
exports.ChainalysisResponse = ChainalysisResponse;
|
|
2370
2368
|
exports.ChainalysisRiskAssessmentApiResponse = ChainalysisRiskAssessmentApiResponse;
|
|
2371
2369
|
exports.ChainalysisRiskAssessmentResponse = ChainalysisRiskAssessmentResponse;
|
|
2370
|
+
exports.ChainalysisRiskLevel = ChainalysisRiskLevel;
|
|
2372
2371
|
exports.CoerceDateUTC = CoerceDateUTC;
|
|
2373
2372
|
exports.Coin = Coin;
|
|
2374
2373
|
exports.CompanyDocumentMetaData = CompanyDocumentMetaData;
|
|
@@ -1056,7 +1056,7 @@ var EnhancedChainalysisRequest = z.object({
|
|
|
1056
1056
|
var ChainalysisRegisterApiResponse = z.object({
|
|
1057
1057
|
address: z.string()
|
|
1058
1058
|
});
|
|
1059
|
-
var
|
|
1059
|
+
var ChainalysisRiskLevel = z["enum"](["Severe", "High", "Medium", "Low"]);
|
|
1060
1060
|
var AddressType = z["enum"](["PRIVATE_WALLET", "LIQUIDITY_POOL", "SERVICE_PROVIDER"]);
|
|
1061
1061
|
var ExposureType = z["enum"](["direct", "indirect"]);
|
|
1062
1062
|
var Direction = z.literal("both_directions");
|
|
@@ -1098,7 +1098,7 @@ var PoolMetadata = z.object({
|
|
|
1098
1098
|
});
|
|
1099
1099
|
var ChainalysisRiskAssessmentApiResponse = z.object({
|
|
1100
1100
|
address: z.string(),
|
|
1101
|
-
risk:
|
|
1101
|
+
risk: ChainalysisRiskLevel,
|
|
1102
1102
|
riskReason: z.string().nullish(),
|
|
1103
1103
|
cluster: Cluster.nullish(),
|
|
1104
1104
|
addressType: AddressType,
|
|
@@ -1117,7 +1117,6 @@ var ChainalysisApiError = z.object({
|
|
|
1117
1117
|
});
|
|
1118
1118
|
var ChainalysisRegisterResponse = z.union([ChainalysisRegisterApiResponse, ChainalysisApiError]);
|
|
1119
1119
|
var ChainalysisRiskAssessmentResponse = z.union([ChainalysisRiskAssessmentApiResponse, ChainalysisApiError]);
|
|
1120
|
-
var ChainalysisResponse = z.union([ChainalysisRegisterResponse, ChainalysisRiskAssessmentResponse]);
|
|
1121
1120
|
|
|
1122
1121
|
/**
|
|
1123
1122
|
* Merkle Science defines it own blockchain list, thus this list.
|
|
@@ -2328,4 +2327,4 @@ var UpdateKybSessionOutput = z.string();
|
|
|
2328
2327
|
var CustomerDocumentMetaData = z.union([CompanyDocumentMetaData, ProofOfResidenceMetaData, VideoKycMetaData]);
|
|
2329
2328
|
var CustomerStatusResults = z.union([KybResult, KycResult]);
|
|
2330
2329
|
|
|
2331
|
-
export {
|
|
2330
|
+
export { PhoneMetadata as $, ANALYSIS_TYPES as A, BitRankVerifiedResponse as B, ChainalysisRiskAssessmentResponse as C, WebhookPayload as D, EmailVerificationAnalysisResponse as E, Session as F, SessionWithoutSteps as G, StepTypes as H, IpQualityServiceAnalysisResponse as I, StepType as J, ReasonCodes as K, ReasonCode as L, MergedProviders as M, NestedSession as N, OBJECT_TYPES as O, PhoneVerificationAnalysisResponse as P, File as Q, RiskSeverity as R, ScoringAnalysisResponse as S, DocumentIdTypes as T, DocumentIdType as U, DocumentIdMetadata as V, WorkflowsScoringAnalysisRequest as W, ProofOfAddressDocumentTypes as X, ProofOfAddressDocumentType as Y, ProofOfAddressMetadata as Z, LivenessMetadata as _, MerkleAddressResponse as a, ComplyAdvantageUpdateSearchEntitiesRequest as a$, EmailMetadata as a0, AMLMetadata as a1, Step as a2, SynapsSessionEvent as a3, SynapsStepEvent as a4, typeToHumanReadable as a5, SynapsSessionRequest as a6, SESSION_NOT_FOUND as a7, UNKNOWN_ERROR as a8, RESULT_PARSER_ERROR as a9, ComplyAdvantageNationalityFieldSources as aA, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as aB, ComplyAdvantageCountryFieldSources as aC, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as aD, ComplyAdvantageDateOfBirthFieldSources as aE, CreateSearchInput as aF, MatchStatuses as aG, MatchStatus as aH, RiskLevels as aI, RiskLevel as aJ, UpdateSearchInput as aK, UpdateSearchEntitiesInput as aL, ComplyAdvantageUser as aM, MatchTypeDetail as aN, ComplyAdvantageMedia as aO, ComplyAdvantageSearchDataResponseHit as aP, ComplyAdvantageSearchDataResponse as aQ, ComplyAdvantageSearchSuccessResponse as aR, ComplyAdvantageSearchErrorResponse as aS, ComplyAdvantageKeyInformation as aT, ComplyAdvantageAmlItemSource as aU, ComplyAdvantageAmlFullListing as aV, ComplyAdvantageSearchEntitiesDataResponse as aW, ComplyAdvantageSearchEntitiesSuccessResponse as aX, ComplyAdvantageSearchEntitiesResponse as aY, ComplyAdvantageSearchRequest as aZ, ComplyAdvantageUpdateSearchRequest as a_, SynapsSessionErrorResponse as aa, SynapsSessionResponse as ab, SynapsStepRequest as ac, STEP_NOT_FOUND as ad, SynapsStepErrorResponse as ae, SynapsStepResponse as af, CoerceDateUTC as ag, SEARCH_FILTER_SANCTION_TYPE as ah, SearchFilterSanctionType as ai, SEARCH_FILTER_PEP_TYPE as aj, SearchFilterPepType as ak, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as al, SearchFilterAdverseMediaType as am, HIGH_RISK_TYPES as an, MEDIUM_RISK_TYPES as ao, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as ap, ComplyAdvantageResponseMatchType as aq, mappingMatchTypeToLabel as ar, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as as, ComplyAdvantageReponseMatchStatus as at, SEARCH_FILTER_TYPES as au, SearchFilterType as av, SearchEntityTypes as aw, SearchEntityType as ax, SearchFilters as ay, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as az, ComplyAdvantageSearchResponse as b, BeneficiaryCompanyCustomerClaimsArray as b$, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as b0, ComplyAdvantageUpdateSearchEntitiesResponse as b1, ComplyAdvantageMonitorSearchDataResponse as b2, ComplyAdvantageMonitorSearchSuccessResponse as b3, ComplyAdvantageMonitorSearchResponse as b4, ComplyAdvantageMonitoredSearchUpdate as b5, ProviderWithoutConfig as b6, IdentityProviderOptions as b7, IdentityProviders as b8, DataProviderOptions as b9, CreateProviderInput as bA, CreateProviderResponse as bB, UpdateProviderInput as bC, UpdateProviderResponse as bD, ToggleProviderInput as bE, DeleteProviderInput as bF, DeleteProviderResponse as bG, WEBHOOK_TYPES as bH, WebhookType as bI, ApplicantMemberOfSchema as bJ, SumSubWebhookSchema as bK, BaseApplicantActionSchema as bL, SUMSUB_STEPS as bM, SumSubStep as bN, SUMSUB_APPLICANT_TYPES as bO, SumSubApplicantType as bP, SUMSUB_REVIEW_ANSWERS as bQ, SumSubReviewAnswer as bR, SUMSUB_REVIEW_REJECT_TYPES as bS, SumSubReviewRejectType as bT, SumSubAddress as bU, SumSubApplicantInfo as bV, INDIVIDUAL_BENEFICIARY_RELATIONS as bW, IndividualBeneficiaryRelation as bX, BENEFICIARY_TYPES as bY, BeneficiaryType as bZ, BeneficiaryCompanyCustomerClaims as b_, DataProviders as ba, MerkleScienceConfig as bb, ChainalysisConfig as bc, ScorechainConfig as bd, WorkflowsScorechainConfig as be, IpQualityConfig as bf, BigConfig as bg, ProviderIntegrationTypeOptions as bh, ProviderIntegrationType as bi, BaseProvider as bj, NexeraIdSSIDProvider as bk, NexeraIdKYBProvider as bl, BigProvider as bm, ScorechainProvider as bn, MerkleScienceProvider as bo, ChainalysisProvider as bp, IpqualityscoreProvider as bq, ComplyAdvantageProviderConfigTypes as br, ComplyAdvantageProviderConfigFilters as bs, ComplyAdvantageProviderConfigElement as bt, ComplyAdvantageProvider as bu, SynapsProvider as bv, ProviderData as bw, ProviderDataProject as bx, GetProvidersResponse as by, GetProviderResponse as bz, AnalysisType as c, KybSessionStatus as c$, SumSubCompanyApplicantInfo as c0, SUMSUB_WEBHOOK_INTERNAL_STATUS as c1, SumsubWebhookInternalStatus as c2, SUMSUB_REVIEW_STATUSES as c3, SumSubReviewStatus as c4, SUMSUB_DOC_TYPES as c5, SumSubDocType as c6, SUMSUB_FLOW_LEVEL as c7, SumSubFlowLevel as c8, SumSubReviewResultSchema as c9, SumSubSimilarApplicantsSchema as cA, SUMSUB_REVIEW_REJECT_LABELS as cB, SumSubReviewRejectLabel as cC, SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION as cD, KYC_STEP_TYPES as cE, KycStep as cF, KYC_RESULTS as cG, KycResult as cH, KYC_SESSION_STATUSES as cI, KycSessionStatus as cJ, SelectKycSession as cK, SelectKycSessionStep as cL, GetKycSessionInput as cM, GetKycSessionResponse as cN, UpdateKycSessionOutput as cO, VideoKycMetaData as cP, ProofOfResidenceMetaData as cQ, ProofOfResidenceDocumentType as cR, GetCredentialsOutput as cS, CustomerContactInformationOutput as cT, CredentialMetadata as cU, GetKycSessionResponseWithCredentialsMetadata as cV, KYB_STEP_TYPES as cW, KybStep as cX, KYB_RESULTS as cY, KybResult as cZ, KYB_SESSION_STATUSES as c_, SumSubImageReviewResultSchema as ca, SumsubApplicantTypes as cb, SumsubApplicantType as cc, SumSubIndividualApplicantSchema as cd, SumSubCompanyApplicantSchema as ce, SumSubImageId as cf, SUMSUB_COMPANY_BENEFICIARY_GROUP as cg, SumsubCompanyBeneficiaryGroup as ch, SumsubStepStatus as ci, SumSubVerificationStepSchema as cj, SumSubApplicantVerificationStepSchema as ck, SumSubApplicantModerationStatusSchema as cl, SUMSUB_MEDIA_CONTENT_TYPES as cm, SumSubMediaContentType as cn, DocumentMetadataSchema as co, SumSubApplicantReviewStatusSchema as cp, SumSubApplicantResetSchema as cq, SumSubGenerateExternalWebSdkLinkSchema as cr, SumsubVideoCallData as cs, SumsubKycDataSchema as ct, SumsubKybDataSchema as cu, SumSubApplicantSchema as cv, SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS as cw, SumsubKybSessionFlowSectionStatus as cx, SumsubKybSessionFlowSectionItem as cy, SumsubKybSessionFlowSection as cz, ObjectType as d, CompanyDocumentMetaData as d0, BeneficiaryVerificationStatus as d1, BeneficiaryVerificationStatusArray as d2, SelectKybSession as d3, GetKybSessionInput as d4, GetKybSessionResponse as d5, UpdateKybSessionOutput as d6, CustomerDocumentMetaData as d7, CustomerStatusResults as d8, MerkleBlockChainTypes as d9, MerkleBlockChainNames as da, MerkleBlockChainCodes as db, MerkleAddressRequest as dc, MerkleAddressApiResponse as dd, MerkleAddressApiError as de, ChainalysisRequest as df, EnhancedChainalysisRequest as dg, ChainalysisRegisterApiResponse as dh, ChainalysisRiskLevel as di, ChainalysisRiskAssessmentApiResponse as dj, ChainalysisApiError as dk, ChainalysisRegisterResponse as dl, BLOCKCHAIN_TYPES as e, Blockchain as f, Coin as g, ScorechainErrorResponse as h, ScorechainError as i, ScorechainAnalysis as j, ScoringAnalysisRequest as k, IpQualityAnalysisRequest as l, IpQualityAnalysisResponse as m, IpQualityServiceAnalysis as n, IpQualityServiceErrorResponse as o, BigCryptoChain as p, BigPropertiesLiteral as q, BigProperties as r, BigProperty as s, RequestProperty as t, BitRankRequest as u, BitRankVerified as v, BitRankVerifiedErrorResponse as w, BitRankVerifiedError as x, Statuses as y, Status$1 as z };
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const BigCryptoChain: z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>;
|
|
3
|
+
export type BigCryptoChain = z.infer<typeof BigCryptoChain>;
|
|
3
4
|
export declare const BigPropertiesLiteral: readonly [z.ZodLiteral<"score">, z.ZodLiteral<"entities">, z.ZodLiteral<"flags">, z.ZodLiteral<"currency">, z.ZodLiteral<"new_address">, z.ZodLiteral<"flags_with_category">, z.ZodLiteral<"cluster">, z.ZodLiteral<"first_seen_receiving">, z.ZodLiteral<"first_seen_sending">, z.ZodLiteral<"last_seen_receiving">, z.ZodLiteral<"last_seen_sending">, z.ZodLiteral<"received_amount">, z.ZodLiteral<"sent_amount">, z.ZodLiteral<"number_of_transactions">, z.ZodLiteral<"received_transactions">, z.ZodLiteral<"sent_transactions">, z.ZodLiteral<"balance">, z.ZodLiteral<"balance_fiat">, z.ZodLiteral<"bitrank_counterparty_exposure">, z.ZodLiteral<"entity_counterparty_exposure">, z.ZodLiteral<"flag_counterparty_exposure">];
|
|
4
5
|
export declare const BigProperties: readonly ["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"];
|
|
5
6
|
export declare const BigProperty: 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"]>;
|
|
7
|
+
export type BigProperty = z.infer<typeof BigProperty>;
|
|
6
8
|
export declare const RequestProperty: z.ZodObject<{
|
|
7
9
|
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"]>;
|
|
8
10
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BIGBitRankVerifiedScore.schema.d.ts","sourceRoot":"../../../../../src/providers/big","sources":["BIGBitRankVerifiedScore.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,cAAc,iHAezB,CAAC;
|
|
1
|
+
{"version":3,"file":"BIGBitRankVerifiedScore.schema.d.ts","sourceRoot":"../../../../../src/providers/big","sources":["BIGBitRankVerifiedScore.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -36,6 +36,8 @@ export declare const ChainalysisRegisterApiResponse: z.ZodObject<{
|
|
|
36
36
|
address: string;
|
|
37
37
|
}>;
|
|
38
38
|
export type ChainalysisRegisterApiResponse = z.infer<typeof ChainalysisRegisterApiResponse>;
|
|
39
|
+
export declare const ChainalysisRiskLevel: z.ZodEnum<["Severe", "High", "Medium", "Low"]>;
|
|
40
|
+
export type ChainalysisRiskLevel = z.infer<typeof ChainalysisRiskLevel>;
|
|
39
41
|
export declare const ChainalysisRiskAssessmentApiResponse: z.ZodObject<{
|
|
40
42
|
address: z.ZodString;
|
|
41
43
|
risk: z.ZodEnum<["Severe", "High", "Medium", "Low"]>;
|
|
@@ -100,15 +102,15 @@ export declare const ChainalysisRiskAssessmentApiResponse: z.ZodObject<{
|
|
|
100
102
|
exposureType: z.ZodEnum<["direct", "indirect"]>;
|
|
101
103
|
direction: z.ZodLiteral<"both_directions">;
|
|
102
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
|
+
risk: string;
|
|
103
106
|
exposureType: "direct" | "indirect";
|
|
104
107
|
direction: "both_directions";
|
|
105
|
-
risk: string;
|
|
106
108
|
minThreshold: number;
|
|
107
109
|
maxThreshold: number;
|
|
108
110
|
}, {
|
|
111
|
+
risk: string;
|
|
109
112
|
exposureType: "direct" | "indirect";
|
|
110
113
|
direction: "both_directions";
|
|
111
|
-
risk: string;
|
|
112
114
|
minThreshold: number;
|
|
113
115
|
maxThreshold: number;
|
|
114
116
|
}>>>;
|
|
@@ -117,9 +119,9 @@ export declare const ChainalysisRiskAssessmentApiResponse: z.ZodObject<{
|
|
|
117
119
|
category: string;
|
|
118
120
|
percentage: number;
|
|
119
121
|
ruleTriggered?: {
|
|
122
|
+
risk: string;
|
|
120
123
|
exposureType: "direct" | "indirect";
|
|
121
124
|
direction: "both_directions";
|
|
122
|
-
risk: string;
|
|
123
125
|
minThreshold: number;
|
|
124
126
|
maxThreshold: number;
|
|
125
127
|
} | null | undefined;
|
|
@@ -128,9 +130,9 @@ export declare const ChainalysisRiskAssessmentApiResponse: z.ZodObject<{
|
|
|
128
130
|
category: string;
|
|
129
131
|
percentage: number;
|
|
130
132
|
ruleTriggered?: {
|
|
133
|
+
risk: string;
|
|
131
134
|
exposureType: "direct" | "indirect";
|
|
132
135
|
direction: "both_directions";
|
|
133
|
-
risk: string;
|
|
134
136
|
minThreshold: number;
|
|
135
137
|
maxThreshold: number;
|
|
136
138
|
} | null | undefined;
|
|
@@ -175,9 +177,9 @@ export declare const ChainalysisRiskAssessmentApiResponse: z.ZodObject<{
|
|
|
175
177
|
category: string;
|
|
176
178
|
percentage: number;
|
|
177
179
|
ruleTriggered?: {
|
|
180
|
+
risk: string;
|
|
178
181
|
exposureType: "direct" | "indirect";
|
|
179
182
|
direction: "both_directions";
|
|
180
|
-
risk: string;
|
|
181
183
|
minThreshold: number;
|
|
182
184
|
maxThreshold: number;
|
|
183
185
|
} | null | undefined;
|
|
@@ -215,9 +217,9 @@ export declare const ChainalysisRiskAssessmentApiResponse: z.ZodObject<{
|
|
|
215
217
|
category: string;
|
|
216
218
|
percentage: number;
|
|
217
219
|
ruleTriggered?: {
|
|
220
|
+
risk: string;
|
|
218
221
|
exposureType: "direct" | "indirect";
|
|
219
222
|
direction: "both_directions";
|
|
220
|
-
risk: string;
|
|
221
223
|
minThreshold: number;
|
|
222
224
|
maxThreshold: number;
|
|
223
225
|
} | null | undefined;
|
|
@@ -352,15 +354,15 @@ export declare const ChainalysisRiskAssessmentResponse: z.ZodUnion<[z.ZodObject<
|
|
|
352
354
|
exposureType: z.ZodEnum<["direct", "indirect"]>;
|
|
353
355
|
direction: z.ZodLiteral<"both_directions">;
|
|
354
356
|
}, "strip", z.ZodTypeAny, {
|
|
357
|
+
risk: string;
|
|
355
358
|
exposureType: "direct" | "indirect";
|
|
356
359
|
direction: "both_directions";
|
|
357
|
-
risk: string;
|
|
358
360
|
minThreshold: number;
|
|
359
361
|
maxThreshold: number;
|
|
360
362
|
}, {
|
|
363
|
+
risk: string;
|
|
361
364
|
exposureType: "direct" | "indirect";
|
|
362
365
|
direction: "both_directions";
|
|
363
|
-
risk: string;
|
|
364
366
|
minThreshold: number;
|
|
365
367
|
maxThreshold: number;
|
|
366
368
|
}>>>;
|
|
@@ -369,270 +371,20 @@ export declare const ChainalysisRiskAssessmentResponse: z.ZodUnion<[z.ZodObject<
|
|
|
369
371
|
category: string;
|
|
370
372
|
percentage: number;
|
|
371
373
|
ruleTriggered?: {
|
|
372
|
-
exposureType: "direct" | "indirect";
|
|
373
|
-
direction: "both_directions";
|
|
374
374
|
risk: string;
|
|
375
|
-
minThreshold: number;
|
|
376
|
-
maxThreshold: number;
|
|
377
|
-
} | null | undefined;
|
|
378
|
-
}, {
|
|
379
|
-
message: string;
|
|
380
|
-
category: string;
|
|
381
|
-
percentage: number;
|
|
382
|
-
ruleTriggered?: {
|
|
383
375
|
exposureType: "direct" | "indirect";
|
|
384
376
|
direction: "both_directions";
|
|
385
|
-
risk: string;
|
|
386
377
|
minThreshold: number;
|
|
387
378
|
maxThreshold: number;
|
|
388
379
|
} | null | undefined;
|
|
389
|
-
}>, "many">>>;
|
|
390
|
-
status: z.ZodLiteral<"COMPLETE">;
|
|
391
|
-
poolMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
392
|
-
fees: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
393
|
-
tokens: z.ZodArray<z.ZodString, "many">;
|
|
394
|
-
}, "strip", z.ZodTypeAny, {
|
|
395
|
-
tokens: string[];
|
|
396
|
-
fees?: number | null | undefined;
|
|
397
|
-
}, {
|
|
398
|
-
tokens: string[];
|
|
399
|
-
fees?: number | null | undefined;
|
|
400
|
-
}>>>;
|
|
401
|
-
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
status: "COMPLETE";
|
|
403
|
-
address: string;
|
|
404
|
-
risk: "Low" | "Medium" | "High" | "Severe";
|
|
405
|
-
addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
|
|
406
|
-
addressIdentifications: {
|
|
407
|
-
name: string;
|
|
408
|
-
description: string;
|
|
409
|
-
address: string;
|
|
410
|
-
createdAt: number;
|
|
411
|
-
category: string;
|
|
412
|
-
url?: string | null | undefined;
|
|
413
|
-
}[];
|
|
414
|
-
cluster?: {
|
|
415
|
-
name: string;
|
|
416
|
-
category: string;
|
|
417
|
-
} | null | undefined;
|
|
418
|
-
riskReason?: string | null | undefined;
|
|
419
|
-
exposures?: {
|
|
420
|
-
value: number;
|
|
421
|
-
category: string;
|
|
422
|
-
exposureType: "direct" | "indirect";
|
|
423
|
-
direction: "both_directions";
|
|
424
|
-
}[] | null | undefined;
|
|
425
|
-
triggers?: {
|
|
426
|
-
message: string;
|
|
427
|
-
category: string;
|
|
428
|
-
percentage: number;
|
|
429
|
-
ruleTriggered?: {
|
|
430
|
-
exposureType: "direct" | "indirect";
|
|
431
|
-
direction: "both_directions";
|
|
432
|
-
risk: string;
|
|
433
|
-
minThreshold: number;
|
|
434
|
-
maxThreshold: number;
|
|
435
|
-
} | null | undefined;
|
|
436
|
-
}[] | null | undefined;
|
|
437
|
-
poolMetadata?: {
|
|
438
|
-
tokens: string[];
|
|
439
|
-
fees?: number | null | undefined;
|
|
440
|
-
} | null | undefined;
|
|
441
|
-
}, {
|
|
442
|
-
status: "COMPLETE";
|
|
443
|
-
address: string;
|
|
444
|
-
risk: "Low" | "Medium" | "High" | "Severe";
|
|
445
|
-
addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
|
|
446
|
-
addressIdentifications: {
|
|
447
|
-
name: string;
|
|
448
|
-
description: string;
|
|
449
|
-
address: string;
|
|
450
|
-
createdAt: number;
|
|
451
|
-
category: string;
|
|
452
|
-
url?: string | null | undefined;
|
|
453
|
-
}[];
|
|
454
|
-
cluster?: {
|
|
455
|
-
name: string;
|
|
456
|
-
category: string;
|
|
457
|
-
} | null | undefined;
|
|
458
|
-
riskReason?: string | null | undefined;
|
|
459
|
-
exposures?: {
|
|
460
|
-
value: number;
|
|
461
|
-
category: string;
|
|
462
|
-
exposureType: "direct" | "indirect";
|
|
463
|
-
direction: "both_directions";
|
|
464
|
-
}[] | null | undefined;
|
|
465
|
-
triggers?: {
|
|
466
|
-
message: string;
|
|
467
|
-
category: string;
|
|
468
|
-
percentage: number;
|
|
469
|
-
ruleTriggered?: {
|
|
470
|
-
exposureType: "direct" | "indirect";
|
|
471
|
-
direction: "both_directions";
|
|
472
|
-
risk: string;
|
|
473
|
-
minThreshold: number;
|
|
474
|
-
maxThreshold: number;
|
|
475
|
-
} | null | undefined;
|
|
476
|
-
}[] | null | undefined;
|
|
477
|
-
poolMetadata?: {
|
|
478
|
-
tokens: string[];
|
|
479
|
-
fees?: number | null | undefined;
|
|
480
|
-
} | null | undefined;
|
|
481
|
-
}>, z.ZodObject<{
|
|
482
|
-
error: z.ZodObject<{
|
|
483
|
-
error: z.ZodString;
|
|
484
|
-
message: z.ZodString;
|
|
485
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
486
|
-
}, "strip", z.ZodTypeAny, {
|
|
487
|
-
message: string;
|
|
488
|
-
error: string;
|
|
489
|
-
data?: string | null | undefined;
|
|
490
|
-
}, {
|
|
491
|
-
message: string;
|
|
492
|
-
error: string;
|
|
493
|
-
data?: string | null | undefined;
|
|
494
|
-
}>;
|
|
495
|
-
}, "strip", z.ZodTypeAny, {
|
|
496
|
-
error: {
|
|
497
|
-
message: string;
|
|
498
|
-
error: string;
|
|
499
|
-
data?: string | null | undefined;
|
|
500
|
-
};
|
|
501
|
-
}, {
|
|
502
|
-
error: {
|
|
503
|
-
message: string;
|
|
504
|
-
error: string;
|
|
505
|
-
data?: string | null | undefined;
|
|
506
|
-
};
|
|
507
|
-
}>]>;
|
|
508
|
-
export type ChainalysisRiskAssessmentResponse = z.infer<typeof ChainalysisRiskAssessmentResponse>;
|
|
509
|
-
export declare const ChainalysisResponse: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
510
|
-
address: z.ZodString;
|
|
511
|
-
}, "strip", z.ZodTypeAny, {
|
|
512
|
-
address: string;
|
|
513
|
-
}, {
|
|
514
|
-
address: string;
|
|
515
|
-
}>, z.ZodObject<{
|
|
516
|
-
error: z.ZodObject<{
|
|
517
|
-
error: z.ZodString;
|
|
518
|
-
message: z.ZodString;
|
|
519
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
520
|
-
}, "strip", z.ZodTypeAny, {
|
|
521
|
-
message: string;
|
|
522
|
-
error: string;
|
|
523
|
-
data?: string | null | undefined;
|
|
524
380
|
}, {
|
|
525
|
-
message: string;
|
|
526
|
-
error: string;
|
|
527
|
-
data?: string | null | undefined;
|
|
528
|
-
}>;
|
|
529
|
-
}, "strip", z.ZodTypeAny, {
|
|
530
|
-
error: {
|
|
531
|
-
message: string;
|
|
532
|
-
error: string;
|
|
533
|
-
data?: string | null | undefined;
|
|
534
|
-
};
|
|
535
|
-
}, {
|
|
536
|
-
error: {
|
|
537
|
-
message: string;
|
|
538
|
-
error: string;
|
|
539
|
-
data?: string | null | undefined;
|
|
540
|
-
};
|
|
541
|
-
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
542
|
-
address: z.ZodString;
|
|
543
|
-
risk: z.ZodEnum<["Severe", "High", "Medium", "Low"]>;
|
|
544
|
-
riskReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
545
|
-
cluster: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
546
|
-
name: z.ZodString;
|
|
547
|
-
category: z.ZodString;
|
|
548
|
-
}, "strip", z.ZodTypeAny, {
|
|
549
|
-
name: string;
|
|
550
|
-
category: string;
|
|
551
|
-
}, {
|
|
552
|
-
name: string;
|
|
553
|
-
category: string;
|
|
554
|
-
}>>>;
|
|
555
|
-
addressType: z.ZodEnum<["PRIVATE_WALLET", "LIQUIDITY_POOL", "SERVICE_PROVIDER"]>;
|
|
556
|
-
addressIdentifications: z.ZodArray<z.ZodObject<{
|
|
557
|
-
name: z.ZodString;
|
|
558
|
-
address: z.ZodString;
|
|
559
|
-
category: z.ZodString;
|
|
560
|
-
description: z.ZodString;
|
|
561
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
562
|
-
createdAt: z.ZodNumber;
|
|
563
|
-
}, "strip", z.ZodTypeAny, {
|
|
564
|
-
name: string;
|
|
565
|
-
description: string;
|
|
566
|
-
address: string;
|
|
567
|
-
createdAt: number;
|
|
568
|
-
category: string;
|
|
569
|
-
url?: string | null | undefined;
|
|
570
|
-
}, {
|
|
571
|
-
name: string;
|
|
572
|
-
description: string;
|
|
573
|
-
address: string;
|
|
574
|
-
createdAt: number;
|
|
575
|
-
category: string;
|
|
576
|
-
url?: string | null | undefined;
|
|
577
|
-
}>, "many">;
|
|
578
|
-
exposures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
579
|
-
category: z.ZodString;
|
|
580
|
-
value: z.ZodNumber;
|
|
581
|
-
exposureType: z.ZodEnum<["direct", "indirect"]>;
|
|
582
|
-
direction: z.ZodLiteral<"both_directions">;
|
|
583
|
-
}, "strip", z.ZodTypeAny, {
|
|
584
|
-
value: number;
|
|
585
|
-
category: string;
|
|
586
|
-
exposureType: "direct" | "indirect";
|
|
587
|
-
direction: "both_directions";
|
|
588
|
-
}, {
|
|
589
|
-
value: number;
|
|
590
|
-
category: string;
|
|
591
|
-
exposureType: "direct" | "indirect";
|
|
592
|
-
direction: "both_directions";
|
|
593
|
-
}>, "many">>>;
|
|
594
|
-
triggers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
595
|
-
category: z.ZodString;
|
|
596
|
-
percentage: z.ZodNumber;
|
|
597
|
-
message: z.ZodString;
|
|
598
|
-
ruleTriggered: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
599
|
-
risk: z.ZodString;
|
|
600
|
-
minThreshold: z.ZodNumber;
|
|
601
|
-
maxThreshold: z.ZodNumber;
|
|
602
|
-
exposureType: z.ZodEnum<["direct", "indirect"]>;
|
|
603
|
-
direction: z.ZodLiteral<"both_directions">;
|
|
604
|
-
}, "strip", z.ZodTypeAny, {
|
|
605
|
-
exposureType: "direct" | "indirect";
|
|
606
|
-
direction: "both_directions";
|
|
607
|
-
risk: string;
|
|
608
|
-
minThreshold: number;
|
|
609
|
-
maxThreshold: number;
|
|
610
|
-
}, {
|
|
611
|
-
exposureType: "direct" | "indirect";
|
|
612
|
-
direction: "both_directions";
|
|
613
|
-
risk: string;
|
|
614
|
-
minThreshold: number;
|
|
615
|
-
maxThreshold: number;
|
|
616
|
-
}>>>;
|
|
617
|
-
}, "strip", z.ZodTypeAny, {
|
|
618
381
|
message: string;
|
|
619
382
|
category: string;
|
|
620
383
|
percentage: number;
|
|
621
384
|
ruleTriggered?: {
|
|
622
|
-
exposureType: "direct" | "indirect";
|
|
623
|
-
direction: "both_directions";
|
|
624
385
|
risk: string;
|
|
625
|
-
minThreshold: number;
|
|
626
|
-
maxThreshold: number;
|
|
627
|
-
} | null | undefined;
|
|
628
|
-
}, {
|
|
629
|
-
message: string;
|
|
630
|
-
category: string;
|
|
631
|
-
percentage: number;
|
|
632
|
-
ruleTriggered?: {
|
|
633
386
|
exposureType: "direct" | "indirect";
|
|
634
387
|
direction: "both_directions";
|
|
635
|
-
risk: string;
|
|
636
388
|
minThreshold: number;
|
|
637
389
|
maxThreshold: number;
|
|
638
390
|
} | null | undefined;
|
|
@@ -677,9 +429,9 @@ export declare const ChainalysisResponse: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
677
429
|
category: string;
|
|
678
430
|
percentage: number;
|
|
679
431
|
ruleTriggered?: {
|
|
432
|
+
risk: string;
|
|
680
433
|
exposureType: "direct" | "indirect";
|
|
681
434
|
direction: "both_directions";
|
|
682
|
-
risk: string;
|
|
683
435
|
minThreshold: number;
|
|
684
436
|
maxThreshold: number;
|
|
685
437
|
} | null | undefined;
|
|
@@ -717,9 +469,9 @@ export declare const ChainalysisResponse: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
717
469
|
category: string;
|
|
718
470
|
percentage: number;
|
|
719
471
|
ruleTriggered?: {
|
|
472
|
+
risk: string;
|
|
720
473
|
exposureType: "direct" | "indirect";
|
|
721
474
|
direction: "both_directions";
|
|
722
|
-
risk: string;
|
|
723
475
|
minThreshold: number;
|
|
724
476
|
maxThreshold: number;
|
|
725
477
|
} | null | undefined;
|
|
@@ -754,6 +506,6 @@ export declare const ChainalysisResponse: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
754
506
|
error: string;
|
|
755
507
|
data?: string | null | undefined;
|
|
756
508
|
};
|
|
757
|
-
}>]
|
|
758
|
-
export type
|
|
509
|
+
}>]>;
|
|
510
|
+
export type ChainalysisRiskAssessmentResponse = z.infer<typeof ChainalysisRiskAssessmentResponse>;
|
|
759
511
|
//# sourceMappingURL=chainalysis.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chainalysis.schema.d.ts","sourceRoot":"../../../../../src/providers/chainalysis","sources":["chainalysis.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,kBAAkB;;;;;;EAE7B,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;EAGrC,CAAC;AACH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,0BAA0B,CAClC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;EAEzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;
|
|
1
|
+
{"version":3,"file":"chainalysis.schema.d.ts","sourceRoot":"../../../../../src/providers/chainalysis","sources":["chainalysis.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,kBAAkB;;;;;;EAE7B,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;EAGrC,CAAC;AACH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,0BAA0B,CAClC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;EAEzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AAEF,eAAO,MAAM,oBAAoB,gDAA8C,CAAC;AAChF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAuDxE,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW/C,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;EAM9B,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAGtC,CAAC;AACH,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,2BAA2B,CACnC,CAAC;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAG5C,CAAC;AACH,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CACrD,OAAO,iCAAiC,CACzC,CAAC"}
|
|
@@ -129,6 +129,7 @@ export declare const MerkleBlockChainTypes: {
|
|
|
129
129
|
readonly Aptos: "123";
|
|
130
130
|
};
|
|
131
131
|
export declare const MerkleBlockChainNames: z.ZodEnum<["Bitcoin", "Ethereum", "Litecoin", "BitcoinCash", "Ripple", "Dogecoin", "Zilliqa", "BinanceSmartChain", "Polygon", "Tron", "Cardano", "Polkadot", "Stellar", "Hedera", "Cronos", "Optimism", "Arbitrum", "Fantom", "Monero", "Cosmos", "Zcash", "EthereumClassic", "Dash", "Solana", "AvalancheC_Chain", "Verge", "BitcoinGold", "Algorand", "Acala", "Akash", "Arweave", "Ardor", "Ark", "Astar", "Band", "BinanceNative", "Celo", "Chiliz", "Nervos", "CronosNative", "Digibyte", "Multiversx", "Enjin", "Eos", "EthereumPow", "FetchAI", "Filecoin", "Flow", "Flare", "Moonbeam", "Helium", "ICP", "Icon", "Injective", "IOTA", "IoTex", "Iris", "Kava", "Kadena", "Klaytn", "Komodo", "Kusama", "Lisk", "Terra", "Mina", "Moonriver", "Nano", "Near", "Neo3", "Oasys", "One", "Ontology", "Osmosis", "Polymesh", "QTUM", "Oasis", "Thorchain", "Ravencoin", "Siacoin", "Shiden", "Songbird", "Stratis", "Stacks", "SUI", "zkSync", "Theta", "Tomo", "VeChain", "Waves", "Wax", "WEMIX", "WaltonChain", "Chia", "Tezos", "Zcoin", "Celestia", "Neutron", "Avalanche_P", "Sei", "Avalanche_X", "Aztec", "Bittensor", "Casper", "Deso", "Juno", "PocketNetwork", "Ronin", "Vara", "XPLA", "Archway", "Axelar", "Dymension", "Starknet", "Orai", "Lukso", "bitsCrunch", "Reef", "ImmutablezkEVM", "BaseProtocol", "ArbitrumNova", "Canto", "MetisDAO", "Aptos"]>;
|
|
132
|
+
export type MerkleBlockChainNames = z.infer<typeof MerkleBlockChainNames>;
|
|
132
133
|
export declare const MerkleBlockChainCodes: z.ZodEnum<["0", "1", "2", "3", "4", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123"]>;
|
|
133
134
|
export type MerkleBlockChainCodes = z.infer<typeof MerkleBlockChainCodes>;
|
|
134
135
|
export declare const MerkleAddressRequest: z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"merkle-science.schema.d.ts","sourceRoot":"../../../../../src/providers/merkle-science","sources":["merkle-science.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB;;;GAGG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4HxB,CAAC;AA+HX,eAAO,MAAM,qBAAqB,6yCAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"merkle-science.schema.d.ts","sourceRoot":"../../../../../src/providers/merkle-science","sources":["merkle-science.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB;;;GAGG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4HxB,CAAC;AA+HX,eAAO,MAAM,qBAAqB,6yCAA0B,CAAC;AAC7D,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAiJ1E,eAAO,MAAM,qBAAqB,uvBAA0B,CAAC;AAC7D,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAiB1E,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;EAO/B,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AA8BxE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BnC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAShC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAGhC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
|
|
@@ -5,6 +5,7 @@ export declare const OBJECT_TYPES: readonly ["TRANSACTION", "ADDRESS", "WALLET"]
|
|
|
5
5
|
export declare const ObjectType: z.ZodEnum<["TRANSACTION", "ADDRESS", "WALLET"]>;
|
|
6
6
|
export declare const BLOCKCHAIN_TYPES: readonly ["BITCOIN", "BITCOINCASH", "LITECOIN", "DASH", "ETHEREUM", "RIPPLE", "TEZOS", "TRON", "BSC", "POLYGON", "AVALANCHE", "BASE", "SOLANA"];
|
|
7
7
|
export declare const Blockchain: z.ZodEnum<["BITCOIN", "BITCOINCASH", "LITECOIN", "DASH", "ETHEREUM", "RIPPLE", "TEZOS", "TRON", "BSC", "POLYGON", "AVALANCHE", "BASE", "SOLANA"]>;
|
|
8
|
+
export type ScorechainBlockchain = z.infer<typeof Blockchain>;
|
|
8
9
|
export declare const Coin: z.ZodUnion<[z.ZodString, z.ZodLiteral<"MAIN">, z.ZodLiteral<"ALL">]>;
|
|
9
10
|
export declare const RiskSeverity: z.ZodEnum<["CRITICAL_RISK", "HIGH_RISK", "MEDIUM_RISK", "LOW_RISK", "NO_RISK", "UNDEFINED_RISK"]>;
|
|
10
11
|
export type AnalysisType = z.infer<typeof AnalysisType>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scorechain.schema.d.ts","sourceRoot":"../../../../../src/providers/scorechain","sources":["scorechain.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,cAAc,uDAKjB,CAAC;AACX,eAAO,MAAM,YAAY,yDAAyB,CAAC;AACnD,eAAO,MAAM,YAAY,+CAAgD,CAAC;AAC1E,eAAO,MAAM,UAAU,iDAAuB,CAAC;AAC/C,eAAO,MAAM,gBAAgB,iJAcnB,CAAC;AACX,eAAO,MAAM,UAAU,mJAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"scorechain.schema.d.ts","sourceRoot":"../../../../../src/providers/scorechain","sources":["scorechain.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,cAAc,uDAKjB,CAAC;AACX,eAAO,MAAM,YAAY,yDAAyB,CAAC;AACnD,eAAO,MAAM,YAAY,+CAAgD,CAAC;AAC1E,eAAO,MAAM,UAAU,iDAAuB,CAAC;AAC/C,eAAO,MAAM,gBAAgB,iJAcnB,CAAC;AACX,eAAO,MAAM,UAAU,mJAA2B,CAAC;AACnD,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAE9D,eAAO,MAAM,IAAI,sEAEmC,CAAC;AAErD,eAAO,MAAM,YAAY,mGAOvB,CAAC;AAmCH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAyJxD,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAgBlC,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE1B,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|