uvd-x402-sdk 2.50.0 → 2.51.0
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/backend/index.d.mts +22 -1
- package/dist/backend/index.d.ts +22 -1
- package/dist/backend/index.js +26 -1
- package/dist/backend/index.js.map +1 -1
- package/dist/backend/index.mjs +26 -2
- package/dist/backend/index.mjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/backend/index.ts +43 -1
package/dist/backend/index.d.mts
CHANGED
|
@@ -1532,6 +1532,27 @@ interface FeedbackResponse {
|
|
|
1532
1532
|
/**
|
|
1533
1533
|
* Reputation query response
|
|
1534
1534
|
*/
|
|
1535
|
+
/**
|
|
1536
|
+
* Error from an ERC-8004 lookup, carrying the HTTP status as a field.
|
|
1537
|
+
*
|
|
1538
|
+
* `notFound` and `retryable` are mutually exclusive and must stay that way in
|
|
1539
|
+
* calling code: the facilitator answers 404 for "this address owns no agent"
|
|
1540
|
+
* and 503 for "I could not find out", usually an RPC failure behind it.
|
|
1541
|
+
* Treating a 503 as absence is how a transient failure becomes a permanent
|
|
1542
|
+
* wrong answer — on a registration path it mints a second agent for an owner
|
|
1543
|
+
* who already has one, burning gas and leaving an orphan.
|
|
1544
|
+
*/
|
|
1545
|
+
declare class Erc8004LookupError extends Error {
|
|
1546
|
+
/** HTTP status returned by the facilitator */
|
|
1547
|
+
readonly status: number;
|
|
1548
|
+
/** Raw response body, for debugging */
|
|
1549
|
+
readonly body: string;
|
|
1550
|
+
constructor(message: string, status: number, body: string);
|
|
1551
|
+
/** The address genuinely owns no agent on this network. */
|
|
1552
|
+
get notFound(): boolean;
|
|
1553
|
+
/** The lookup reached no verdict. Retry; never read as "owns nothing". */
|
|
1554
|
+
get retryable(): boolean;
|
|
1555
|
+
}
|
|
1535
1556
|
/**
|
|
1536
1557
|
* ATOM Engine reputation analytics (Solana only).
|
|
1537
1558
|
*
|
|
@@ -2390,4 +2411,4 @@ declare class AdvancedEscrowClient {
|
|
|
2390
2411
|
private sendViaAdapter;
|
|
2391
2412
|
}
|
|
2392
2413
|
|
|
2393
|
-
export { type AdvancedAuthorizationResult, AdvancedEscrowClient, type AdvancedEscrowClientOptions, type AdvancedEscrowContracts, type AdvancedEscrowTaskTier, type AdvancedPaymentInfo, type AdvancedTransactionResult, type AgentId, type AgentIdentity, type AgentRegistration, type AgentRegistrationFile, type AgentService, type AtomStats, BASE_MAINNET_CONTRACTS, BazaarClient, type BazaarClientOptions, type BazaarDiscoverOptions, type BazaarDiscoverResponse, type BazaarRegisterOptions, type BazaarResource, type CreateEscrowOptions, DEPOSIT_LIMIT_USDC, type DiscoveryAccepts, type DiscoveryCuration, type DiscoveryHealth, type DiscoveryHealthStatus, type DiscoveryListOptions, type DiscoveryPagination, type DiscoveryRegisterOptions, type DiscoveryResource, type DiscoveryResponse, type DiscoverySource, type DiscoveryStats, type DiscoveryTier, type Dispute, type DisputeOutcome, ERC8004_CONTRACTS, ERC8004_EXTENSION_ID, ESCROW_CONTRACTS, ESCROW_TIMEOUT_MS, Erc8004Client, type Erc8004ClientOptions, type Erc8004Network, EscrowClient, type EscrowClientOptions, type EscrowPayment, type EscrowStateResponse, type EscrowStatus, FacilitatorClient, type FacilitatorClientOptions, type FeedbackEntry, type FeedbackParams, type FeedbackRequest, type FeedbackResponse, HEALTH_FILTERS, type HonoMiddlewareOptions, type IdentityByOwnerResponse, type IdentityMetadataResponse, type IdentityTotalSupplyResponse, MAX_SEARCH_LEN, type MetadataEntryParam, OPERATOR_ABI, OPERATOR_ABI_CREATE3, PAYMENT_INFO_TYPEHASH, type PaymentAcceptance, type PaymentMiddlewareOptions, type PaymentPayloadV2, type PaymentRequirementResolver, type PaymentRequirements, type PaymentRequirementsOptions, type PaymentRequirementsV2, type ProofOfPayment, type RefundRequest, type RefundStatus, type RegisterAgentRequest, type RegisterAgentResponse, type ReputationResponse, type ReputationSummary, type RequestRefundOptions, type ResourceInfoV2, type SettleRequest, type SettleRequestV2, type SettleResponse, type SettleResponseWithProof, TIER_FILTERS, TIER_TIMINGS, USDC_DOMAIN_NAME, type VerifiedPaymentState, type VerifyRequest, type VerifyRequestV2, type VerifyResponse, X402_CORS_HEADERS, X402_HEADER_NAMES, ZERO_ADDRESS, buildErc8004PaymentRequirements, buildPaymentRequirements, buildSettleRequest, buildSettleRequestV2, buildVerifyRequest, buildVerifyRequestV2, canRefundEscrow, canReleaseEscrow, create402Response, createHonoMiddleware, createPaymentMiddleware, epochToDate, escrowTimeRemaining, extractPaymentFromHeaders, getCorsHeaders, getEscrowContractsByChainId, getEscrowSupportedChainIds, isAlive, isEscrowExpired, isEscrowSupportedOnChain, parsePaymentHeader };
|
|
2414
|
+
export { type AdvancedAuthorizationResult, AdvancedEscrowClient, type AdvancedEscrowClientOptions, type AdvancedEscrowContracts, type AdvancedEscrowTaskTier, type AdvancedPaymentInfo, type AdvancedTransactionResult, type AgentId, type AgentIdentity, type AgentRegistration, type AgentRegistrationFile, type AgentService, type AtomStats, BASE_MAINNET_CONTRACTS, BazaarClient, type BazaarClientOptions, type BazaarDiscoverOptions, type BazaarDiscoverResponse, type BazaarRegisterOptions, type BazaarResource, type CreateEscrowOptions, DEPOSIT_LIMIT_USDC, type DiscoveryAccepts, type DiscoveryCuration, type DiscoveryHealth, type DiscoveryHealthStatus, type DiscoveryListOptions, type DiscoveryPagination, type DiscoveryRegisterOptions, type DiscoveryResource, type DiscoveryResponse, type DiscoverySource, type DiscoveryStats, type DiscoveryTier, type Dispute, type DisputeOutcome, ERC8004_CONTRACTS, ERC8004_EXTENSION_ID, ESCROW_CONTRACTS, ESCROW_TIMEOUT_MS, Erc8004Client, type Erc8004ClientOptions, Erc8004LookupError, type Erc8004Network, EscrowClient, type EscrowClientOptions, type EscrowPayment, type EscrowStateResponse, type EscrowStatus, FacilitatorClient, type FacilitatorClientOptions, type FeedbackEntry, type FeedbackParams, type FeedbackRequest, type FeedbackResponse, HEALTH_FILTERS, type HonoMiddlewareOptions, type IdentityByOwnerResponse, type IdentityMetadataResponse, type IdentityTotalSupplyResponse, MAX_SEARCH_LEN, type MetadataEntryParam, OPERATOR_ABI, OPERATOR_ABI_CREATE3, PAYMENT_INFO_TYPEHASH, type PaymentAcceptance, type PaymentMiddlewareOptions, type PaymentPayloadV2, type PaymentRequirementResolver, type PaymentRequirements, type PaymentRequirementsOptions, type PaymentRequirementsV2, type ProofOfPayment, type RefundRequest, type RefundStatus, type RegisterAgentRequest, type RegisterAgentResponse, type ReputationResponse, type ReputationSummary, type RequestRefundOptions, type ResourceInfoV2, type SettleRequest, type SettleRequestV2, type SettleResponse, type SettleResponseWithProof, TIER_FILTERS, TIER_TIMINGS, USDC_DOMAIN_NAME, type VerifiedPaymentState, type VerifyRequest, type VerifyRequestV2, type VerifyResponse, X402_CORS_HEADERS, X402_HEADER_NAMES, ZERO_ADDRESS, buildErc8004PaymentRequirements, buildPaymentRequirements, buildSettleRequest, buildSettleRequestV2, buildVerifyRequest, buildVerifyRequestV2, canRefundEscrow, canReleaseEscrow, create402Response, createHonoMiddleware, createPaymentMiddleware, epochToDate, escrowTimeRemaining, extractPaymentFromHeaders, getCorsHeaders, getEscrowContractsByChainId, getEscrowSupportedChainIds, isAlive, isEscrowExpired, isEscrowSupportedOnChain, parsePaymentHeader };
|
package/dist/backend/index.d.ts
CHANGED
|
@@ -1532,6 +1532,27 @@ interface FeedbackResponse {
|
|
|
1532
1532
|
/**
|
|
1533
1533
|
* Reputation query response
|
|
1534
1534
|
*/
|
|
1535
|
+
/**
|
|
1536
|
+
* Error from an ERC-8004 lookup, carrying the HTTP status as a field.
|
|
1537
|
+
*
|
|
1538
|
+
* `notFound` and `retryable` are mutually exclusive and must stay that way in
|
|
1539
|
+
* calling code: the facilitator answers 404 for "this address owns no agent"
|
|
1540
|
+
* and 503 for "I could not find out", usually an RPC failure behind it.
|
|
1541
|
+
* Treating a 503 as absence is how a transient failure becomes a permanent
|
|
1542
|
+
* wrong answer — on a registration path it mints a second agent for an owner
|
|
1543
|
+
* who already has one, burning gas and leaving an orphan.
|
|
1544
|
+
*/
|
|
1545
|
+
declare class Erc8004LookupError extends Error {
|
|
1546
|
+
/** HTTP status returned by the facilitator */
|
|
1547
|
+
readonly status: number;
|
|
1548
|
+
/** Raw response body, for debugging */
|
|
1549
|
+
readonly body: string;
|
|
1550
|
+
constructor(message: string, status: number, body: string);
|
|
1551
|
+
/** The address genuinely owns no agent on this network. */
|
|
1552
|
+
get notFound(): boolean;
|
|
1553
|
+
/** The lookup reached no verdict. Retry; never read as "owns nothing". */
|
|
1554
|
+
get retryable(): boolean;
|
|
1555
|
+
}
|
|
1535
1556
|
/**
|
|
1536
1557
|
* ATOM Engine reputation analytics (Solana only).
|
|
1537
1558
|
*
|
|
@@ -2390,4 +2411,4 @@ declare class AdvancedEscrowClient {
|
|
|
2390
2411
|
private sendViaAdapter;
|
|
2391
2412
|
}
|
|
2392
2413
|
|
|
2393
|
-
export { type AdvancedAuthorizationResult, AdvancedEscrowClient, type AdvancedEscrowClientOptions, type AdvancedEscrowContracts, type AdvancedEscrowTaskTier, type AdvancedPaymentInfo, type AdvancedTransactionResult, type AgentId, type AgentIdentity, type AgentRegistration, type AgentRegistrationFile, type AgentService, type AtomStats, BASE_MAINNET_CONTRACTS, BazaarClient, type BazaarClientOptions, type BazaarDiscoverOptions, type BazaarDiscoverResponse, type BazaarRegisterOptions, type BazaarResource, type CreateEscrowOptions, DEPOSIT_LIMIT_USDC, type DiscoveryAccepts, type DiscoveryCuration, type DiscoveryHealth, type DiscoveryHealthStatus, type DiscoveryListOptions, type DiscoveryPagination, type DiscoveryRegisterOptions, type DiscoveryResource, type DiscoveryResponse, type DiscoverySource, type DiscoveryStats, type DiscoveryTier, type Dispute, type DisputeOutcome, ERC8004_CONTRACTS, ERC8004_EXTENSION_ID, ESCROW_CONTRACTS, ESCROW_TIMEOUT_MS, Erc8004Client, type Erc8004ClientOptions, type Erc8004Network, EscrowClient, type EscrowClientOptions, type EscrowPayment, type EscrowStateResponse, type EscrowStatus, FacilitatorClient, type FacilitatorClientOptions, type FeedbackEntry, type FeedbackParams, type FeedbackRequest, type FeedbackResponse, HEALTH_FILTERS, type HonoMiddlewareOptions, type IdentityByOwnerResponse, type IdentityMetadataResponse, type IdentityTotalSupplyResponse, MAX_SEARCH_LEN, type MetadataEntryParam, OPERATOR_ABI, OPERATOR_ABI_CREATE3, PAYMENT_INFO_TYPEHASH, type PaymentAcceptance, type PaymentMiddlewareOptions, type PaymentPayloadV2, type PaymentRequirementResolver, type PaymentRequirements, type PaymentRequirementsOptions, type PaymentRequirementsV2, type ProofOfPayment, type RefundRequest, type RefundStatus, type RegisterAgentRequest, type RegisterAgentResponse, type ReputationResponse, type ReputationSummary, type RequestRefundOptions, type ResourceInfoV2, type SettleRequest, type SettleRequestV2, type SettleResponse, type SettleResponseWithProof, TIER_FILTERS, TIER_TIMINGS, USDC_DOMAIN_NAME, type VerifiedPaymentState, type VerifyRequest, type VerifyRequestV2, type VerifyResponse, X402_CORS_HEADERS, X402_HEADER_NAMES, ZERO_ADDRESS, buildErc8004PaymentRequirements, buildPaymentRequirements, buildSettleRequest, buildSettleRequestV2, buildVerifyRequest, buildVerifyRequestV2, canRefundEscrow, canReleaseEscrow, create402Response, createHonoMiddleware, createPaymentMiddleware, epochToDate, escrowTimeRemaining, extractPaymentFromHeaders, getCorsHeaders, getEscrowContractsByChainId, getEscrowSupportedChainIds, isAlive, isEscrowExpired, isEscrowSupportedOnChain, parsePaymentHeader };
|
|
2414
|
+
export { type AdvancedAuthorizationResult, AdvancedEscrowClient, type AdvancedEscrowClientOptions, type AdvancedEscrowContracts, type AdvancedEscrowTaskTier, type AdvancedPaymentInfo, type AdvancedTransactionResult, type AgentId, type AgentIdentity, type AgentRegistration, type AgentRegistrationFile, type AgentService, type AtomStats, BASE_MAINNET_CONTRACTS, BazaarClient, type BazaarClientOptions, type BazaarDiscoverOptions, type BazaarDiscoverResponse, type BazaarRegisterOptions, type BazaarResource, type CreateEscrowOptions, DEPOSIT_LIMIT_USDC, type DiscoveryAccepts, type DiscoveryCuration, type DiscoveryHealth, type DiscoveryHealthStatus, type DiscoveryListOptions, type DiscoveryPagination, type DiscoveryRegisterOptions, type DiscoveryResource, type DiscoveryResponse, type DiscoverySource, type DiscoveryStats, type DiscoveryTier, type Dispute, type DisputeOutcome, ERC8004_CONTRACTS, ERC8004_EXTENSION_ID, ESCROW_CONTRACTS, ESCROW_TIMEOUT_MS, Erc8004Client, type Erc8004ClientOptions, Erc8004LookupError, type Erc8004Network, EscrowClient, type EscrowClientOptions, type EscrowPayment, type EscrowStateResponse, type EscrowStatus, FacilitatorClient, type FacilitatorClientOptions, type FeedbackEntry, type FeedbackParams, type FeedbackRequest, type FeedbackResponse, HEALTH_FILTERS, type HonoMiddlewareOptions, type IdentityByOwnerResponse, type IdentityMetadataResponse, type IdentityTotalSupplyResponse, MAX_SEARCH_LEN, type MetadataEntryParam, OPERATOR_ABI, OPERATOR_ABI_CREATE3, PAYMENT_INFO_TYPEHASH, type PaymentAcceptance, type PaymentMiddlewareOptions, type PaymentPayloadV2, type PaymentRequirementResolver, type PaymentRequirements, type PaymentRequirementsOptions, type PaymentRequirementsV2, type ProofOfPayment, type RefundRequest, type RefundStatus, type RegisterAgentRequest, type RegisterAgentResponse, type ReputationResponse, type ReputationSummary, type RequestRefundOptions, type ResourceInfoV2, type SettleRequest, type SettleRequestV2, type SettleResponse, type SettleResponseWithProof, TIER_FILTERS, TIER_TIMINGS, USDC_DOMAIN_NAME, type VerifiedPaymentState, type VerifyRequest, type VerifyRequestV2, type VerifyResponse, X402_CORS_HEADERS, X402_HEADER_NAMES, ZERO_ADDRESS, buildErc8004PaymentRequirements, buildPaymentRequirements, buildSettleRequest, buildSettleRequestV2, buildVerifyRequest, buildVerifyRequestV2, canRefundEscrow, canReleaseEscrow, create402Response, createHonoMiddleware, createPaymentMiddleware, epochToDate, escrowTimeRemaining, extractPaymentFromHeaders, getCorsHeaders, getEscrowContractsByChainId, getEscrowSupportedChainIds, isAlive, isEscrowExpired, isEscrowSupportedOnChain, parsePaymentHeader };
|
package/dist/backend/index.js
CHANGED
|
@@ -2553,6 +2553,26 @@ var ERC8004_CONTRACTS = {
|
|
|
2553
2553
|
atomEngineProgram: SOLANA_ATOM_ENGINE
|
|
2554
2554
|
}
|
|
2555
2555
|
};
|
|
2556
|
+
var Erc8004LookupError = class extends Error {
|
|
2557
|
+
/** HTTP status returned by the facilitator */
|
|
2558
|
+
status;
|
|
2559
|
+
/** Raw response body, for debugging */
|
|
2560
|
+
body;
|
|
2561
|
+
constructor(message, status, body) {
|
|
2562
|
+
super(message);
|
|
2563
|
+
this.name = "Erc8004LookupError";
|
|
2564
|
+
this.status = status;
|
|
2565
|
+
this.body = body;
|
|
2566
|
+
}
|
|
2567
|
+
/** The address genuinely owns no agent on this network. */
|
|
2568
|
+
get notFound() {
|
|
2569
|
+
return this.status === 404;
|
|
2570
|
+
}
|
|
2571
|
+
/** The lookup reached no verdict. Retry; never read as "owns nothing". */
|
|
2572
|
+
get retryable() {
|
|
2573
|
+
return this.status === 503;
|
|
2574
|
+
}
|
|
2575
|
+
};
|
|
2556
2576
|
var Erc8004Client = class {
|
|
2557
2577
|
baseUrl;
|
|
2558
2578
|
timeout;
|
|
@@ -2616,7 +2636,11 @@ var Erc8004Client = class {
|
|
|
2616
2636
|
clearTimeout(timeoutId);
|
|
2617
2637
|
if (!response.ok) {
|
|
2618
2638
|
const errorText = await response.text();
|
|
2619
|
-
throw new
|
|
2639
|
+
throw new Erc8004LookupError(
|
|
2640
|
+
`ERC-8004 API error: ${response.status} - ${errorText}`,
|
|
2641
|
+
response.status,
|
|
2642
|
+
errorText
|
|
2643
|
+
);
|
|
2620
2644
|
}
|
|
2621
2645
|
return await response.json();
|
|
2622
2646
|
} catch (error) {
|
|
@@ -4007,6 +4031,7 @@ exports.ERC8004_EXTENSION_ID = ERC8004_EXTENSION_ID;
|
|
|
4007
4031
|
exports.ESCROW_CONTRACTS = ESCROW_CONTRACTS;
|
|
4008
4032
|
exports.ESCROW_TIMEOUT_MS = ESCROW_TIMEOUT_MS;
|
|
4009
4033
|
exports.Erc8004Client = Erc8004Client;
|
|
4034
|
+
exports.Erc8004LookupError = Erc8004LookupError;
|
|
4010
4035
|
exports.EscrowClient = EscrowClient;
|
|
4011
4036
|
exports.FacilitatorClient = FacilitatorClient;
|
|
4012
4037
|
exports.HEALTH_FILTERS = HEALTH_FILTERS;
|