@t2000/engine 0.56.2 → 1.0.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/index.d.ts CHANGED
@@ -2141,7 +2141,6 @@ declare const sendTransferTool: Tool<{
2141
2141
  to: string;
2142
2142
  contactName: string | undefined;
2143
2143
  gasCost: number;
2144
- gasMethod: _t2000_sdk.GasMethod;
2145
2144
  balance: _t2000_sdk.BalanceResponse;
2146
2145
  memo: string | null;
2147
2146
  }>;
package/dist/index.js CHANGED
@@ -3017,7 +3017,6 @@ var sendTransferTool = buildTool({
3017
3017
  to: result.to,
3018
3018
  contactName: result.contactName,
3019
3019
  gasCost: result.gasCost,
3020
- gasMethod: result.gasMethod,
3021
3020
  balance: result.balance,
3022
3021
  memo: input.memo ?? null
3023
3022
  },
@@ -3615,7 +3614,7 @@ var webSearchTool = buildTool({
3615
3614
  isReadOnly: true,
3616
3615
  maxResultSizeChars: 8e3,
3617
3616
  async call(input, context) {
3618
- const apiKey = context.env?.BRAVE_API_KEY ?? process.env.BRAVE_API_KEY;
3617
+ const apiKey = context.env?.BRAVE_API_KEY;
3619
3618
  if (!apiKey) {
3620
3619
  return {
3621
3620
  data: { results: [], error: "Web search not configured" },