50c 2.5.2 → 2.5.3
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/lib/packs/beacon.js +4 -4
- package/package.json +1 -1
package/lib/packs/beacon.js
CHANGED
|
@@ -47,19 +47,19 @@ async function learningStats() {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
async function roadmapAdd(idea, priority = 'medium', tags = []) {
|
|
50
|
-
return apiRequest('POST', '/tools/
|
|
50
|
+
return apiRequest('POST', '/tools/roadmap_add', { idea, priority, tags });
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
async function roadmapList(filter = null) {
|
|
54
|
-
return apiRequest('POST', '/tools/
|
|
54
|
+
return apiRequest('POST', '/tools/roadmap_list', { filter });
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
async function roadmapUpdate(id, updates) {
|
|
58
|
-
return apiRequest('POST', '/tools/
|
|
58
|
+
return apiRequest('POST', '/tools/roadmap_update', { id, ...updates });
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
async function roadmapDelete(id) {
|
|
62
|
-
return apiRequest('POST', '/tools/
|
|
62
|
+
return apiRequest('POST', '/tools/roadmap_delete', { id });
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
// Tool definitions - STARTER tier ($29/mo)
|