@correntelabs/beeai-ashlar-bridge 1.0.0 → 1.0.2

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.
@@ -8,7 +8,7 @@ export class AshlarCatalogTool extends Tool {
8
8
  query: z.string().optional().describe('Search query or resource prefix to filter')
9
9
  });
10
10
  emitter = Emitter.root.child({ namespace: ['tool', 'ashlar', 'catalog'], creator: this });
11
- facilitatorUrl = 'https://x402-facilitator-427961920698.us-central1.run.app';
11
+ facilitatorUrl = 'https://api.ashlar.blue';
12
12
  async _run(input) {
13
13
  try {
14
14
  // 1. Query live Cloud Run Facilitator MCP catalog tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@correntelabs/beeai-ashlar-bridge",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Linux Foundation BeeAI Framework integration with Ashlar Blue Attested Settlement Turnstile and Hardware Enclaves",
5
5
  "main": "dist/packages/beeai-ashlar-bridge/src/index.js",
6
6
  "types": "dist/packages/beeai-ashlar-bridge/src/index.d.ts",
@@ -20,7 +20,7 @@ export class AshlarCatalogTool extends Tool<JSONToolOutput<CatalogToolOutput>> {
20
20
 
21
21
  readonly emitter: any = Emitter.root.child({ namespace: ['tool', 'ashlar', 'catalog'], creator: this });
22
22
 
23
- private facilitatorUrl = 'https://x402-facilitator-427961920698.us-central1.run.app';
23
+ private facilitatorUrl = 'https://api.ashlar.blue';
24
24
 
25
25
  async _run(input: { query?: string }): Promise<JSONToolOutput<CatalogToolOutput>> {
26
26
  try {