opentool 0.10.5 → 0.12.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/adapters/hyperliquid/index.d.ts +1 -1
- package/dist/adapters/polymarket/index.d.ts +319 -0
- package/dist/adapters/polymarket/index.js +831 -0
- package/dist/adapters/polymarket/index.js.map +1 -0
- package/dist/backtest/index.d.ts +58 -0
- package/dist/backtest/index.js +122 -0
- package/dist/backtest/index.js.map +1 -0
- package/dist/cli/index.d.ts +17 -4
- package/dist/{validate-DbhJ_r0Z.d.ts → index-9Z3wo28l.d.ts} +2 -25
- package/dist/index-BnQsRvND.d.ts +13 -0
- package/dist/index.d.ts +8 -376
- package/dist/index.js +29 -1110
- package/dist/index.js.map +1 -1
- package/dist/{payment-orkZA9se.d.ts → payment-BLm1ltur.d.ts} +1 -1
- package/dist/{types-rAQrDrah.d.ts → types-BaTmu0gS.d.ts} +1 -1
- package/dist/validation/index.d.ts +4 -0
- package/dist/validation/index.js +1255 -0
- package/dist/validation/index.js.map +1 -0
- package/dist/wallet/browser.d.ts +1 -1
- package/dist/wallet/index.d.ts +2 -2
- package/dist/x402/index.d.ts +1 -1
- package/package.json +9 -1
- package/templates/base/package.json +1 -1
|
@@ -93,4 +93,4 @@ declare function defineX402Payment(config: DefineX402PaymentConfig): X402Payment
|
|
|
93
93
|
declare function requireX402Payment(request: Request, payment: X402Payment | X402PaymentDefinition, options?: RequireX402PaymentOptions): Promise<RequireX402PaymentOutcome>;
|
|
94
94
|
declare function withX402Payment(handler: (request: Request) => Promise<Response> | Response, payment: X402Payment | X402PaymentDefinition, options?: RequireX402PaymentOptions): (request: Request) => Promise<Response>;
|
|
95
95
|
|
|
96
|
-
export { type CurrencySpec as C, DEFAULT_FACILITATOR as D, PAYMENT_HEADERS as P, type RequireX402PaymentOptions as R, SUPPORTED_CURRENCIES as S, type
|
|
96
|
+
export { type CurrencySpec as C, DEFAULT_FACILITATOR as D, PAYMENT_HEADERS as P, type RequireX402PaymentOptions as R, SUPPORTED_CURRENCIES as S, type X402FacilitatorConfig as X, type DefineX402PaymentConfig as a, type RequireX402PaymentOutcome as b, type RequireX402PaymentSuccess as c, type X402Payment as d, type X402PaymentContext as e, type X402PaymentDefinition as f, X402PaymentRequiredError as g, type X402VerificationResult as h, defineX402Payment as i, getX402PaymentContext as j, requireX402Payment as r, withX402Payment as w };
|
|
@@ -98,4 +98,4 @@ type WalletReadonlyContext = WalletBaseContext;
|
|
|
98
98
|
type WalletFullContext = WalletBaseContext & WalletSignerContext;
|
|
99
99
|
type WalletContext = WalletReadonlyContext | WalletFullContext;
|
|
100
100
|
|
|
101
|
-
export type {
|
|
101
|
+
export type { ChainMetadata as C, Hex as H, NonceSource as N, RpcProviderOptions as R, TokenMetadata as T, WalletBaseContext as W, ChainReference as a, ChainTokenMap as b, HexAddress as c, RpcUrlResolver as d, TurnkeyOptions as e, TurnkeySignWith as f, WalletContext as g, WalletFullContext as h, WalletOptions as i, WalletOptionsBase as j, WalletPrivateKeyOptions as k, WalletProviderType as l, WalletReadonlyContext as m, WalletReadonlyOptions as n, WalletRegistry as o, WalletSendTransactionParams as p, WalletSignerContext as q, WalletTransferParams as r, WalletTurnkeyOptions as s };
|