opentool 0.10.0 → 0.10.1
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/cli/index.d.ts +2 -2
- package/dist/cli/index.js +2 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/{types-BVLpaY4O.d.ts → types-3w880w_t.d.ts} +2 -2
- package/dist/{validate-3WEA0Ezt.d.ts → validate-BgNU5laL.d.ts} +1 -1
- package/dist/wallet/index.d.ts +2 -2
- package/package.json +1 -1
- package/templates/base/package.json +1 -1
package/dist/cli/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { M as Metadata, I as InternalToolDefinition } from '../validate-
|
|
3
|
-
export { G as GenerateMetadataOptions, a as GenerateMetadataResult, V as ValidateOptions,
|
|
2
|
+
import { M as Metadata, I as InternalToolDefinition } from '../validate-BgNU5laL.js';
|
|
3
|
+
export { G as GenerateMetadataOptions, a as GenerateMetadataResult, V as ValidateOptions, g as generateMetadata, b as generateMetadataCommand, l as loadAndValidateTools, v as validateCommand, c as validateFullCommand } from '../validate-BgNU5laL.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
import '../x402/index.js';
|
|
6
6
|
import 'viem';
|
package/dist/cli/index.js
CHANGED
|
@@ -20,7 +20,7 @@ import * as http2 from 'http';
|
|
|
20
20
|
import dotenv from 'dotenv';
|
|
21
21
|
|
|
22
22
|
var getFilename = () => fileURLToPath(import.meta.url);
|
|
23
|
-
var __filename = /* @__PURE__ */ getFilename();
|
|
23
|
+
var __filename$1 = /* @__PURE__ */ getFilename();
|
|
24
24
|
function resolveTsconfig(projectRoot) {
|
|
25
25
|
const candidate = path6.join(projectRoot, "tsconfig.json");
|
|
26
26
|
if (fs4.existsSync(candidate)) {
|
|
@@ -208,7 +208,7 @@ var BuildMetadataSchema = z.object({
|
|
|
208
208
|
chains: z.array(z.union([z.string(), z.number()])).optional()
|
|
209
209
|
}).strict();
|
|
210
210
|
createRequire(
|
|
211
|
-
typeof __filename !== "undefined" ? __filename : import.meta.url
|
|
211
|
+
typeof __filename$1 !== "undefined" ? __filename$1 : import.meta.url
|
|
212
212
|
);
|
|
213
213
|
function resolveCompiledPath(outDir, originalFile, extension = ".js") {
|
|
214
214
|
const baseName = path6.basename(originalFile).replace(/\.[^.]+$/, "");
|