@keystrokehq/exa 0.0.6-rename-t1.0 → 0.0.8
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.mjs +14 -14
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -101,7 +101,7 @@ const exaTriggerMonitorResponseSchema = z.object({ triggered: z.boolean() });
|
|
|
101
101
|
//#endregion
|
|
102
102
|
//#region src/answer.ts
|
|
103
103
|
const answer = exaOperation({
|
|
104
|
-
id: "
|
|
104
|
+
id: "exa.answer",
|
|
105
105
|
name: "Exa Answer",
|
|
106
106
|
description: "Get an AI-generated answer to a query with citations from web sources using Exa.",
|
|
107
107
|
input: z.object({
|
|
@@ -124,7 +124,7 @@ const answerTool = answer;
|
|
|
124
124
|
//#endregion
|
|
125
125
|
//#region src/contents.ts
|
|
126
126
|
const getContents = exaOperation({
|
|
127
|
-
id: "
|
|
127
|
+
id: "exa.get-contents",
|
|
128
128
|
name: "Exa Get Contents",
|
|
129
129
|
description: "Retrieve page contents (text, highlights, summaries) for a list of URLs.",
|
|
130
130
|
input: z.object({
|
|
@@ -172,7 +172,7 @@ const getContentsTool = getContents;
|
|
|
172
172
|
//#endregion
|
|
173
173
|
//#region src/find-similar.ts
|
|
174
174
|
const findSimilar = exaOperation({
|
|
175
|
-
id: "
|
|
175
|
+
id: "exa.find-similar",
|
|
176
176
|
name: "Exa Find Similar",
|
|
177
177
|
description: "Find web pages similar to a given URL.",
|
|
178
178
|
input: z.object({
|
|
@@ -204,7 +204,7 @@ const findSimilarTool = findSimilar;
|
|
|
204
204
|
//#endregion
|
|
205
205
|
//#region src/find-similar-with-contents.ts
|
|
206
206
|
const findSimilarWithContents = exaOperation({
|
|
207
|
-
id: "
|
|
207
|
+
id: "exa.find-similar-with-contents",
|
|
208
208
|
name: "Exa Find Similar with Contents",
|
|
209
209
|
description: "Find web pages similar to a given URL and retrieve their contents in a single request.",
|
|
210
210
|
input: z.object({
|
|
@@ -278,7 +278,7 @@ const findSimilarWithContentsTool = findSimilarWithContents;
|
|
|
278
278
|
//#endregion
|
|
279
279
|
//#region src/monitors.ts
|
|
280
280
|
const createMonitor = exaOperation({
|
|
281
|
-
id: "
|
|
281
|
+
id: "exa.create-monitor",
|
|
282
282
|
name: "Create Exa Monitor",
|
|
283
283
|
description: "Create a new Exa monitor to track search results over time.",
|
|
284
284
|
needsApproval: true,
|
|
@@ -307,7 +307,7 @@ const createMonitor = exaOperation({
|
|
|
307
307
|
});
|
|
308
308
|
const createMonitorTool = createMonitor;
|
|
309
309
|
const listMonitors = exaOperation({
|
|
310
|
-
id: "
|
|
310
|
+
id: "exa.list-monitors",
|
|
311
311
|
name: "List Exa Monitors",
|
|
312
312
|
description: "List all Exa monitors with optional status filtering and pagination.",
|
|
313
313
|
input: z.object({
|
|
@@ -326,7 +326,7 @@ const listMonitors = exaOperation({
|
|
|
326
326
|
});
|
|
327
327
|
const listMonitorsTool = listMonitors;
|
|
328
328
|
const getMonitor = exaOperation({
|
|
329
|
-
id: "
|
|
329
|
+
id: "exa.get-monitor",
|
|
330
330
|
name: "Get Exa Monitor",
|
|
331
331
|
description: "Get details of a specific Exa monitor by ID.",
|
|
332
332
|
input: z.object({ monitorId: z.string() }),
|
|
@@ -337,7 +337,7 @@ const getMonitor = exaOperation({
|
|
|
337
337
|
});
|
|
338
338
|
const getMonitorTool = getMonitor;
|
|
339
339
|
const updateMonitor = exaOperation({
|
|
340
|
-
id: "
|
|
340
|
+
id: "exa.update-monitor",
|
|
341
341
|
name: "Update Exa Monitor",
|
|
342
342
|
description: "Update an existing Exa monitor configuration.",
|
|
343
343
|
needsApproval: true,
|
|
@@ -369,7 +369,7 @@ const updateMonitor = exaOperation({
|
|
|
369
369
|
});
|
|
370
370
|
const updateMonitorTool = updateMonitor;
|
|
371
371
|
const deleteMonitor = exaOperation({
|
|
372
|
-
id: "
|
|
372
|
+
id: "exa.delete-monitor",
|
|
373
373
|
name: "Delete Exa Monitor",
|
|
374
374
|
description: "Delete an Exa monitor by ID. Returns the deleted monitor object.",
|
|
375
375
|
needsApproval: true,
|
|
@@ -381,7 +381,7 @@ const deleteMonitor = exaOperation({
|
|
|
381
381
|
});
|
|
382
382
|
const deleteMonitorTool = deleteMonitor;
|
|
383
383
|
const triggerMonitor = exaOperation({
|
|
384
|
-
id: "
|
|
384
|
+
id: "exa.trigger-monitor",
|
|
385
385
|
name: "Trigger Exa Monitor",
|
|
386
386
|
description: "Manually trigger an Exa monitor to run immediately.",
|
|
387
387
|
needsApproval: true,
|
|
@@ -393,7 +393,7 @@ const triggerMonitor = exaOperation({
|
|
|
393
393
|
});
|
|
394
394
|
const triggerMonitorTool = triggerMonitor;
|
|
395
395
|
const listMonitorRuns = exaOperation({
|
|
396
|
-
id: "
|
|
396
|
+
id: "exa.list-monitor-runs",
|
|
397
397
|
name: "List Exa Monitor Runs",
|
|
398
398
|
description: "List runs for a specific Exa monitor with pagination.",
|
|
399
399
|
input: z.object({
|
|
@@ -410,7 +410,7 @@ const listMonitorRuns = exaOperation({
|
|
|
410
410
|
});
|
|
411
411
|
const listMonitorRunsTool = listMonitorRuns;
|
|
412
412
|
const getMonitorRun = exaOperation({
|
|
413
|
-
id: "
|
|
413
|
+
id: "exa.get-monitor-run",
|
|
414
414
|
name: "Get Exa Monitor Run",
|
|
415
415
|
description: "Get details of a specific Exa monitor run.",
|
|
416
416
|
input: z.object({
|
|
@@ -427,7 +427,7 @@ const getMonitorRunTool = getMonitorRun;
|
|
|
427
427
|
//#endregion
|
|
428
428
|
//#region src/search.ts
|
|
429
429
|
const search = exaOperation({
|
|
430
|
-
id: "
|
|
430
|
+
id: "exa.search",
|
|
431
431
|
name: "Exa Search",
|
|
432
432
|
description: "Search the web using Exa semantic, keyword, or hybrid search.",
|
|
433
433
|
input: z.object({
|
|
@@ -512,7 +512,7 @@ const contentsOptionsSchema = z.object({
|
|
|
512
512
|
filterEmptyResults: z.boolean().optional()
|
|
513
513
|
});
|
|
514
514
|
const searchWithContents = exaOperation({
|
|
515
|
-
id: "
|
|
515
|
+
id: "exa.search-with-contents",
|
|
516
516
|
name: "Exa Search with Contents",
|
|
517
517
|
description: "Search the web using Exa and retrieve page contents (text, highlights, summaries) in a single request.",
|
|
518
518
|
input: z.object({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/exa",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"LICENSE"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@keystrokehq/integration-authoring": "^0.0.
|
|
23
|
+
"@keystrokehq/integration-authoring": "^0.0.8",
|
|
24
24
|
"exa-js": "^2.11.0",
|
|
25
25
|
"zod": "^4.3.6"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@keystrokehq/core": ">=0.0.
|
|
28
|
+
"@keystrokehq/core": ">=0.0.8 <0.1.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.19.11",
|
|
32
32
|
"tsdown": "^0.20.3",
|
|
33
33
|
"typescript": "^5.9.3",
|
|
34
34
|
"vitest": "^4.0.18",
|
|
35
|
-
"@keystrokehq/core": "^0.0.
|
|
35
|
+
"@keystrokehq/core": "^0.0.8",
|
|
36
36
|
"@keystrokehq/test-utils": "0.0.0",
|
|
37
37
|
"@keystrokehq/typescript-config": "0.0.0"
|
|
38
38
|
},
|