@heyseo/mcp-server 0.2.0 → 0.3.0

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.
Files changed (82) hide show
  1. package/README.md +234 -60
  2. package/dist/index.js +872 -293
  3. package/dist/index.js.map +1 -1
  4. package/dist/prompts/index.d.ts.map +1 -1
  5. package/dist/prompts/index.js +93 -0
  6. package/dist/prompts/index.js.map +1 -1
  7. package/dist/resources/index.d.ts +1 -1
  8. package/dist/resources/index.d.ts.map +1 -1
  9. package/dist/resources/index.js +135 -4
  10. package/dist/resources/index.js.map +1 -1
  11. package/dist/tools/chat.d.ts +44 -0
  12. package/dist/tools/chat.d.ts.map +1 -0
  13. package/dist/tools/chat.js +37 -0
  14. package/dist/tools/chat.js.map +1 -0
  15. package/dist/tools/comparison.d.ts +1 -1
  16. package/dist/tools/conversations.d.ts +95 -0
  17. package/dist/tools/conversations.d.ts.map +1 -0
  18. package/dist/tools/conversations.js +110 -0
  19. package/dist/tools/conversations.js.map +1 -0
  20. package/dist/tools/dataforseo.d.ts +49 -0
  21. package/dist/tools/dataforseo.d.ts.map +1 -0
  22. package/dist/tools/dataforseo.js +37 -0
  23. package/dist/tools/dataforseo.js.map +1 -0
  24. package/dist/tools/index.d.ts +1126 -4
  25. package/dist/tools/index.d.ts.map +1 -1
  26. package/dist/tools/index.js +146 -6
  27. package/dist/tools/index.js.map +1 -1
  28. package/dist/tools/indexing.d.ts +228 -0
  29. package/dist/tools/indexing.d.ts.map +1 -0
  30. package/dist/tools/indexing.js +262 -0
  31. package/dist/tools/indexing.js.map +1 -0
  32. package/dist/tools/insights.d.ts +61 -0
  33. package/dist/tools/insights.d.ts.map +1 -0
  34. package/dist/tools/insights.js +85 -0
  35. package/dist/tools/insights.js.map +1 -0
  36. package/dist/tools/knowledge.d.ts +98 -0
  37. package/dist/tools/knowledge.d.ts.map +1 -0
  38. package/dist/tools/knowledge.js +69 -0
  39. package/dist/tools/knowledge.js.map +1 -0
  40. package/dist/tools/memory.d.ts +602 -0
  41. package/dist/tools/memory.d.ts.map +1 -0
  42. package/dist/tools/memory.js +395 -0
  43. package/dist/tools/memory.js.map +1 -0
  44. package/dist/tools/notifications.d.ts +75 -0
  45. package/dist/tools/notifications.d.ts.map +1 -0
  46. package/dist/tools/notifications.js +62 -0
  47. package/dist/tools/notifications.js.map +1 -0
  48. package/dist/tools/onpage.d.ts +71 -0
  49. package/dist/tools/onpage.d.ts.map +1 -0
  50. package/dist/tools/onpage.js +75 -0
  51. package/dist/tools/onpage.js.map +1 -0
  52. package/dist/tools/pagespeed.d.ts +39 -0
  53. package/dist/tools/pagespeed.d.ts.map +1 -1
  54. package/dist/tools/pagespeed.js +29 -0
  55. package/dist/tools/pagespeed.js.map +1 -1
  56. package/dist/tools/reports.d.ts +248 -0
  57. package/dist/tools/reports.d.ts.map +1 -0
  58. package/dist/tools/reports.js +234 -0
  59. package/dist/tools/reports.js.map +1 -0
  60. package/dist/tools/serp.d.ts +138 -0
  61. package/dist/tools/serp.d.ts.map +1 -0
  62. package/dist/tools/serp.js +105 -0
  63. package/dist/tools/serp.js.map +1 -0
  64. package/dist/tools/site.d.ts +47 -0
  65. package/dist/tools/site.d.ts.map +1 -1
  66. package/dist/tools/site.js +88 -1
  67. package/dist/tools/site.js.map +1 -1
  68. package/dist/tools/sitemaps.d.ts +72 -0
  69. package/dist/tools/sitemaps.d.ts.map +1 -0
  70. package/dist/tools/sitemaps.js +100 -0
  71. package/dist/tools/sitemaps.js.map +1 -0
  72. package/dist/tools/tasks.d.ts +70 -16
  73. package/dist/tools/tasks.d.ts.map +1 -1
  74. package/dist/tools/tasks.js +46 -0
  75. package/dist/tools/tasks.js.map +1 -1
  76. package/dist/types.d.ts +138 -0
  77. package/dist/types.d.ts.map +1 -1
  78. package/dist/utils/api-client.d.ts +103 -1
  79. package/dist/utils/api-client.d.ts.map +1 -1
  80. package/dist/utils/api-client.js +400 -1
  81. package/dist/utils/api-client.js.map +1 -1
  82. package/package.json +2 -1
@@ -0,0 +1,602 @@
1
+ /**
2
+ * SEO Memory Tools
3
+ * Tools for accessing and updating the SEO memory system (strategy, goals, actions, learnings)
4
+ */
5
+ import { z } from 'zod';
6
+ import type { HeySeoApiClient } from '../utils/api-client.js';
7
+ export declare const getMemorySchema: z.ZodObject<{
8
+ siteId: z.ZodString;
9
+ }, "strip", z.ZodTypeAny, {
10
+ siteId: string;
11
+ }, {
12
+ siteId: string;
13
+ }>;
14
+ export type GetMemoryInput = z.infer<typeof getMemorySchema>;
15
+ export declare const updateStrategySchema: z.ZodObject<{
16
+ siteId: z.ZodString;
17
+ action: z.ZodEnum<["update_summary", "create_goal", "update_goal"]>;
18
+ strategySummary: z.ZodOptional<z.ZodString>;
19
+ goalType: z.ZodOptional<z.ZodEnum<["clicks", "position", "ctr", "traffic", "ranking", "custom"]>>;
20
+ goalDescription: z.ZodOptional<z.ZodString>;
21
+ goalTargetValue: z.ZodOptional<z.ZodNumber>;
22
+ goalCurrentValue: z.ZodOptional<z.ZodNumber>;
23
+ goalTargetDate: z.ZodOptional<z.ZodString>;
24
+ goalId: z.ZodOptional<z.ZodString>;
25
+ goalStatus: z.ZodOptional<z.ZodEnum<["active", "achieved", "missed", "paused"]>>;
26
+ }, "strip", z.ZodTypeAny, {
27
+ siteId: string;
28
+ action: "update_summary" | "create_goal" | "update_goal";
29
+ strategySummary?: string | undefined;
30
+ goalType?: "clicks" | "ctr" | "position" | "custom" | "traffic" | "ranking" | undefined;
31
+ goalDescription?: string | undefined;
32
+ goalTargetValue?: number | undefined;
33
+ goalCurrentValue?: number | undefined;
34
+ goalTargetDate?: string | undefined;
35
+ goalId?: string | undefined;
36
+ goalStatus?: "active" | "achieved" | "missed" | "paused" | undefined;
37
+ }, {
38
+ siteId: string;
39
+ action: "update_summary" | "create_goal" | "update_goal";
40
+ strategySummary?: string | undefined;
41
+ goalType?: "clicks" | "ctr" | "position" | "custom" | "traffic" | "ranking" | undefined;
42
+ goalDescription?: string | undefined;
43
+ goalTargetValue?: number | undefined;
44
+ goalCurrentValue?: number | undefined;
45
+ goalTargetDate?: string | undefined;
46
+ goalId?: string | undefined;
47
+ goalStatus?: "active" | "achieved" | "missed" | "paused" | undefined;
48
+ }>;
49
+ export type UpdateStrategyInput = z.infer<typeof updateStrategySchema>;
50
+ export declare const recordActionSchema: z.ZodObject<{
51
+ siteId: z.ZodString;
52
+ title: z.ZodString;
53
+ description: z.ZodString;
54
+ category: z.ZodEnum<["technical", "content", "links", "ux"]>;
55
+ hypothesis: z.ZodOptional<z.ZodString>;
56
+ targetMetrics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
57
+ measurementDays: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
58
+ goalId: z.ZodOptional<z.ZodString>;
59
+ }, "strip", z.ZodTypeAny, {
60
+ description: string;
61
+ siteId: string;
62
+ title: string;
63
+ category: "technical" | "content" | "links" | "ux";
64
+ measurementDays: number;
65
+ hypothesis?: string | undefined;
66
+ targetMetrics?: string[] | undefined;
67
+ goalId?: string | undefined;
68
+ }, {
69
+ description: string;
70
+ siteId: string;
71
+ title: string;
72
+ category: "technical" | "content" | "links" | "ux";
73
+ hypothesis?: string | undefined;
74
+ targetMetrics?: string[] | undefined;
75
+ goalId?: string | undefined;
76
+ measurementDays?: number | undefined;
77
+ }>;
78
+ export type RecordActionInput = z.infer<typeof recordActionSchema>;
79
+ export declare const addLearningSchema: z.ZodObject<{
80
+ siteId: z.ZodString;
81
+ type: z.ZodEnum<["fact", "pattern"]>;
82
+ fact: z.ZodOptional<z.ZodString>;
83
+ pattern: z.ZodOptional<z.ZodString>;
84
+ evidence: z.ZodOptional<z.ZodString>;
85
+ applicableCategories: z.ZodOptional<z.ZodArray<z.ZodEnum<["technical", "content", "links", "ux"]>, "many">>;
86
+ confidence: z.ZodDefault<z.ZodOptional<z.ZodEnum<["high", "medium", "low"]>>>;
87
+ }, "strip", z.ZodTypeAny, {
88
+ type: "fact" | "pattern";
89
+ siteId: string;
90
+ confidence: "high" | "medium" | "low";
91
+ fact?: string | undefined;
92
+ pattern?: string | undefined;
93
+ evidence?: string | undefined;
94
+ applicableCategories?: ("technical" | "content" | "links" | "ux")[] | undefined;
95
+ }, {
96
+ type: "fact" | "pattern";
97
+ siteId: string;
98
+ fact?: string | undefined;
99
+ pattern?: string | undefined;
100
+ evidence?: string | undefined;
101
+ applicableCategories?: ("technical" | "content" | "links" | "ux")[] | undefined;
102
+ confidence?: "high" | "medium" | "low" | undefined;
103
+ }>;
104
+ export type AddLearningInput = z.infer<typeof addLearningSchema>;
105
+ export declare function executeGetMemory(client: HeySeoApiClient, input: GetMemoryInput): Promise<string>;
106
+ export declare function executeUpdateStrategy(client: HeySeoApiClient, input: UpdateStrategyInput): Promise<string>;
107
+ export declare function executeRecordAction(client: HeySeoApiClient, input: RecordActionInput): Promise<string>;
108
+ export declare function executeAddLearning(client: HeySeoApiClient, input: AddLearningInput): Promise<string>;
109
+ export declare const deleteGoalSchema: z.ZodObject<{
110
+ siteId: z.ZodString;
111
+ goalId: z.ZodString;
112
+ }, "strip", z.ZodTypeAny, {
113
+ siteId: string;
114
+ goalId: string;
115
+ }, {
116
+ siteId: string;
117
+ goalId: string;
118
+ }>;
119
+ export type DeleteGoalInput = z.infer<typeof deleteGoalSchema>;
120
+ export declare const memorySnapshotsSchema: z.ZodObject<{
121
+ siteId: z.ZodString;
122
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
123
+ }, "strip", z.ZodTypeAny, {
124
+ siteId: string;
125
+ limit: number;
126
+ }, {
127
+ siteId: string;
128
+ limit?: number | undefined;
129
+ }>;
130
+ export type MemorySnapshotsInput = z.infer<typeof memorySnapshotsSchema>;
131
+ export declare const generateSnapshotSchema: z.ZodObject<{
132
+ siteId: z.ZodString;
133
+ }, "strip", z.ZodTypeAny, {
134
+ siteId: string;
135
+ }, {
136
+ siteId: string;
137
+ }>;
138
+ export type GenerateSnapshotInput = z.infer<typeof generateSnapshotSchema>;
139
+ export declare const queueActionSchema: z.ZodObject<{
140
+ siteId: z.ZodString;
141
+ title: z.ZodString;
142
+ description: z.ZodString;
143
+ category: z.ZodEnum<["technical", "content", "links", "ux"]>;
144
+ priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
145
+ }, "strip", z.ZodTypeAny, {
146
+ description: string;
147
+ siteId: string;
148
+ title: string;
149
+ category: "technical" | "content" | "links" | "ux";
150
+ priority?: "high" | "medium" | "low" | undefined;
151
+ }, {
152
+ description: string;
153
+ siteId: string;
154
+ title: string;
155
+ category: "technical" | "content" | "links" | "ux";
156
+ priority?: "high" | "medium" | "low" | undefined;
157
+ }>;
158
+ export type QueueActionInput = z.infer<typeof queueActionSchema>;
159
+ export declare const updateQueuedActionSchema: z.ZodObject<{
160
+ siteId: z.ZodString;
161
+ actionId: z.ZodString;
162
+ status: z.ZodOptional<z.ZodString>;
163
+ priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
164
+ }, "strip", z.ZodTypeAny, {
165
+ siteId: string;
166
+ actionId: string;
167
+ status?: string | undefined;
168
+ priority?: "high" | "medium" | "low" | undefined;
169
+ }, {
170
+ siteId: string;
171
+ actionId: string;
172
+ status?: string | undefined;
173
+ priority?: "high" | "medium" | "low" | undefined;
174
+ }>;
175
+ export type UpdateQueuedActionInput = z.infer<typeof updateQueuedActionSchema>;
176
+ export declare function executeDeleteGoal(client: HeySeoApiClient, input: DeleteGoalInput): Promise<string>;
177
+ export declare function executeMemorySnapshots(client: HeySeoApiClient, input: MemorySnapshotsInput): Promise<string>;
178
+ export declare function executeGenerateSnapshot(client: HeySeoApiClient, input: GenerateSnapshotInput): Promise<string>;
179
+ export declare function executeQueueAction(client: HeySeoApiClient, input: QueueActionInput): Promise<string>;
180
+ export declare function executeUpdateQueuedAction(client: HeySeoApiClient, input: UpdateQueuedActionInput): Promise<string>;
181
+ export declare const memoryTools: ({
182
+ name: string;
183
+ description: string;
184
+ inputSchema: {
185
+ type: string;
186
+ properties: {
187
+ siteId: {
188
+ type: string;
189
+ description: string;
190
+ };
191
+ action?: undefined;
192
+ strategySummary?: undefined;
193
+ goalType?: undefined;
194
+ goalDescription?: undefined;
195
+ goalTargetValue?: undefined;
196
+ goalCurrentValue?: undefined;
197
+ goalTargetDate?: undefined;
198
+ goalId?: undefined;
199
+ goalStatus?: undefined;
200
+ title?: undefined;
201
+ description?: undefined;
202
+ category?: undefined;
203
+ hypothesis?: undefined;
204
+ targetMetrics?: undefined;
205
+ measurementDays?: undefined;
206
+ type?: undefined;
207
+ fact?: undefined;
208
+ pattern?: undefined;
209
+ evidence?: undefined;
210
+ applicableCategories?: undefined;
211
+ confidence?: undefined;
212
+ limit?: undefined;
213
+ priority?: undefined;
214
+ actionId?: undefined;
215
+ status?: undefined;
216
+ };
217
+ required: string[];
218
+ };
219
+ } | {
220
+ name: string;
221
+ description: string;
222
+ inputSchema: {
223
+ type: string;
224
+ properties: {
225
+ siteId: {
226
+ type: string;
227
+ description: string;
228
+ };
229
+ action: {
230
+ type: string;
231
+ enum: string[];
232
+ description: string;
233
+ };
234
+ strategySummary: {
235
+ type: string;
236
+ description: string;
237
+ };
238
+ goalType: {
239
+ type: string;
240
+ enum: string[];
241
+ description: string;
242
+ };
243
+ goalDescription: {
244
+ type: string;
245
+ description: string;
246
+ };
247
+ goalTargetValue: {
248
+ type: string;
249
+ description: string;
250
+ };
251
+ goalCurrentValue: {
252
+ type: string;
253
+ description: string;
254
+ };
255
+ goalTargetDate: {
256
+ type: string;
257
+ description: string;
258
+ };
259
+ goalId: {
260
+ type: string;
261
+ description: string;
262
+ };
263
+ goalStatus: {
264
+ type: string;
265
+ enum: string[];
266
+ description: string;
267
+ };
268
+ title?: undefined;
269
+ description?: undefined;
270
+ category?: undefined;
271
+ hypothesis?: undefined;
272
+ targetMetrics?: undefined;
273
+ measurementDays?: undefined;
274
+ type?: undefined;
275
+ fact?: undefined;
276
+ pattern?: undefined;
277
+ evidence?: undefined;
278
+ applicableCategories?: undefined;
279
+ confidence?: undefined;
280
+ limit?: undefined;
281
+ priority?: undefined;
282
+ actionId?: undefined;
283
+ status?: undefined;
284
+ };
285
+ required: string[];
286
+ };
287
+ } | {
288
+ name: string;
289
+ description: string;
290
+ inputSchema: {
291
+ type: string;
292
+ properties: {
293
+ siteId: {
294
+ type: string;
295
+ description: string;
296
+ };
297
+ title: {
298
+ type: string;
299
+ description: string;
300
+ };
301
+ description: {
302
+ type: string;
303
+ description: string;
304
+ };
305
+ category: {
306
+ type: string;
307
+ enum: string[];
308
+ description: string;
309
+ };
310
+ hypothesis: {
311
+ type: string;
312
+ description: string;
313
+ };
314
+ targetMetrics: {
315
+ type: string;
316
+ items: {
317
+ type: string;
318
+ };
319
+ description: string;
320
+ };
321
+ measurementDays: {
322
+ type: string;
323
+ minimum: number;
324
+ maximum: number;
325
+ default: number;
326
+ description: string;
327
+ };
328
+ goalId: {
329
+ type: string;
330
+ description: string;
331
+ };
332
+ action?: undefined;
333
+ strategySummary?: undefined;
334
+ goalType?: undefined;
335
+ goalDescription?: undefined;
336
+ goalTargetValue?: undefined;
337
+ goalCurrentValue?: undefined;
338
+ goalTargetDate?: undefined;
339
+ goalStatus?: undefined;
340
+ type?: undefined;
341
+ fact?: undefined;
342
+ pattern?: undefined;
343
+ evidence?: undefined;
344
+ applicableCategories?: undefined;
345
+ confidence?: undefined;
346
+ limit?: undefined;
347
+ priority?: undefined;
348
+ actionId?: undefined;
349
+ status?: undefined;
350
+ };
351
+ required: string[];
352
+ };
353
+ } | {
354
+ name: string;
355
+ description: string;
356
+ inputSchema: {
357
+ type: string;
358
+ properties: {
359
+ siteId: {
360
+ type: string;
361
+ description: string;
362
+ };
363
+ type: {
364
+ type: string;
365
+ enum: string[];
366
+ description: string;
367
+ };
368
+ fact: {
369
+ type: string;
370
+ description: string;
371
+ };
372
+ pattern: {
373
+ type: string;
374
+ description: string;
375
+ };
376
+ evidence: {
377
+ type: string;
378
+ description: string;
379
+ };
380
+ applicableCategories: {
381
+ type: string;
382
+ items: {
383
+ type: string;
384
+ enum: string[];
385
+ };
386
+ description: string;
387
+ };
388
+ confidence: {
389
+ type: string;
390
+ enum: string[];
391
+ default: string;
392
+ description: string;
393
+ };
394
+ action?: undefined;
395
+ strategySummary?: undefined;
396
+ goalType?: undefined;
397
+ goalDescription?: undefined;
398
+ goalTargetValue?: undefined;
399
+ goalCurrentValue?: undefined;
400
+ goalTargetDate?: undefined;
401
+ goalId?: undefined;
402
+ goalStatus?: undefined;
403
+ title?: undefined;
404
+ description?: undefined;
405
+ category?: undefined;
406
+ hypothesis?: undefined;
407
+ targetMetrics?: undefined;
408
+ measurementDays?: undefined;
409
+ limit?: undefined;
410
+ priority?: undefined;
411
+ actionId?: undefined;
412
+ status?: undefined;
413
+ };
414
+ required: string[];
415
+ };
416
+ } | {
417
+ name: string;
418
+ description: string;
419
+ inputSchema: {
420
+ type: string;
421
+ properties: {
422
+ siteId: {
423
+ type: string;
424
+ description: string;
425
+ };
426
+ goalId: {
427
+ type: string;
428
+ description: string;
429
+ };
430
+ action?: undefined;
431
+ strategySummary?: undefined;
432
+ goalType?: undefined;
433
+ goalDescription?: undefined;
434
+ goalTargetValue?: undefined;
435
+ goalCurrentValue?: undefined;
436
+ goalTargetDate?: undefined;
437
+ goalStatus?: undefined;
438
+ title?: undefined;
439
+ description?: undefined;
440
+ category?: undefined;
441
+ hypothesis?: undefined;
442
+ targetMetrics?: undefined;
443
+ measurementDays?: undefined;
444
+ type?: undefined;
445
+ fact?: undefined;
446
+ pattern?: undefined;
447
+ evidence?: undefined;
448
+ applicableCategories?: undefined;
449
+ confidence?: undefined;
450
+ limit?: undefined;
451
+ priority?: undefined;
452
+ actionId?: undefined;
453
+ status?: undefined;
454
+ };
455
+ required: string[];
456
+ };
457
+ } | {
458
+ name: string;
459
+ description: string;
460
+ inputSchema: {
461
+ type: string;
462
+ properties: {
463
+ siteId: {
464
+ type: string;
465
+ description: string;
466
+ };
467
+ limit: {
468
+ type: string;
469
+ minimum: number;
470
+ maximum: number;
471
+ default: number;
472
+ description: string;
473
+ };
474
+ action?: undefined;
475
+ strategySummary?: undefined;
476
+ goalType?: undefined;
477
+ goalDescription?: undefined;
478
+ goalTargetValue?: undefined;
479
+ goalCurrentValue?: undefined;
480
+ goalTargetDate?: undefined;
481
+ goalId?: undefined;
482
+ goalStatus?: undefined;
483
+ title?: undefined;
484
+ description?: undefined;
485
+ category?: undefined;
486
+ hypothesis?: undefined;
487
+ targetMetrics?: undefined;
488
+ measurementDays?: undefined;
489
+ type?: undefined;
490
+ fact?: undefined;
491
+ pattern?: undefined;
492
+ evidence?: undefined;
493
+ applicableCategories?: undefined;
494
+ confidence?: undefined;
495
+ priority?: undefined;
496
+ actionId?: undefined;
497
+ status?: undefined;
498
+ };
499
+ required: string[];
500
+ };
501
+ } | {
502
+ name: string;
503
+ description: string;
504
+ inputSchema: {
505
+ type: string;
506
+ properties: {
507
+ siteId: {
508
+ type: string;
509
+ description: string;
510
+ };
511
+ title: {
512
+ type: string;
513
+ description: string;
514
+ };
515
+ description: {
516
+ type: string;
517
+ description: string;
518
+ };
519
+ category: {
520
+ type: string;
521
+ enum: string[];
522
+ description: string;
523
+ };
524
+ priority: {
525
+ type: string;
526
+ enum: string[];
527
+ description: string;
528
+ };
529
+ action?: undefined;
530
+ strategySummary?: undefined;
531
+ goalType?: undefined;
532
+ goalDescription?: undefined;
533
+ goalTargetValue?: undefined;
534
+ goalCurrentValue?: undefined;
535
+ goalTargetDate?: undefined;
536
+ goalId?: undefined;
537
+ goalStatus?: undefined;
538
+ hypothesis?: undefined;
539
+ targetMetrics?: undefined;
540
+ measurementDays?: undefined;
541
+ type?: undefined;
542
+ fact?: undefined;
543
+ pattern?: undefined;
544
+ evidence?: undefined;
545
+ applicableCategories?: undefined;
546
+ confidence?: undefined;
547
+ limit?: undefined;
548
+ actionId?: undefined;
549
+ status?: undefined;
550
+ };
551
+ required: string[];
552
+ };
553
+ } | {
554
+ name: string;
555
+ description: string;
556
+ inputSchema: {
557
+ type: string;
558
+ properties: {
559
+ siteId: {
560
+ type: string;
561
+ description: string;
562
+ };
563
+ actionId: {
564
+ type: string;
565
+ description: string;
566
+ };
567
+ status: {
568
+ type: string;
569
+ description: string;
570
+ };
571
+ priority: {
572
+ type: string;
573
+ enum: string[];
574
+ description: string;
575
+ };
576
+ action?: undefined;
577
+ strategySummary?: undefined;
578
+ goalType?: undefined;
579
+ goalDescription?: undefined;
580
+ goalTargetValue?: undefined;
581
+ goalCurrentValue?: undefined;
582
+ goalTargetDate?: undefined;
583
+ goalId?: undefined;
584
+ goalStatus?: undefined;
585
+ title?: undefined;
586
+ description?: undefined;
587
+ category?: undefined;
588
+ hypothesis?: undefined;
589
+ targetMetrics?: undefined;
590
+ measurementDays?: undefined;
591
+ type?: undefined;
592
+ fact?: undefined;
593
+ pattern?: undefined;
594
+ evidence?: undefined;
595
+ applicableCategories?: undefined;
596
+ confidence?: undefined;
597
+ limit?: undefined;
598
+ };
599
+ required: string[];
600
+ };
601
+ })[];
602
+ //# sourceMappingURL=memory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../../src/tools/memory.ts"],"names":[],"mappings":"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"}