@gopherhole/cli 0.1.6 → 0.1.7

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.js CHANGED
@@ -1260,9 +1260,9 @@ access
1260
1260
  params.set('search', options.search);
1261
1261
  params.set('limit', options.limit);
1262
1262
  params.set('offset', options.offset);
1263
- log('GET /access/inbound?' + params.toString());
1263
+ log('GET /access/incoming?' + params.toString());
1264
1264
  try {
1265
- const res = await fetch(`${API_URL}/access/inbound?${params}`, {
1265
+ const res = await fetch(`${API_URL}/access/incoming?${params}`, {
1266
1266
  headers: { 'X-Session-ID': sessionId },
1267
1267
  });
1268
1268
  if (!res.ok) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gopherhole/cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "GopherHole CLI - Connect AI agents to the world",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -1399,10 +1399,10 @@ access
1399
1399
  params.set('limit', options.limit);
1400
1400
  params.set('offset', options.offset);
1401
1401
 
1402
- log('GET /access/inbound?' + params.toString());
1402
+ log('GET /access/incoming?' + params.toString());
1403
1403
 
1404
1404
  try {
1405
- const res = await fetch(`${API_URL}/access/inbound?${params}`, {
1405
+ const res = await fetch(`${API_URL}/access/incoming?${params}`, {
1406
1406
  headers: { 'X-Session-ID': sessionId },
1407
1407
  });
1408
1408