@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 +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -2
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/
|
|
1263
|
+
log('GET /access/incoming?' + params.toString());
|
|
1264
1264
|
try {
|
|
1265
|
-
const res = await fetch(`${API_URL}/access/
|
|
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
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/
|
|
1402
|
+
log('GET /access/incoming?' + params.toString());
|
|
1403
1403
|
|
|
1404
1404
|
try {
|
|
1405
|
-
const res = await fetch(`${API_URL}/access/
|
|
1405
|
+
const res = await fetch(`${API_URL}/access/incoming?${params}`, {
|
|
1406
1406
|
headers: { 'X-Session-ID': sessionId },
|
|
1407
1407
|
});
|
|
1408
1408
|
|