fathom-mcp 0.5.4 → 0.5.5
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/package.json +1 -1
- package/src/server-client.js +4 -0
package/package.json
CHANGED
package/src/server-client.js
CHANGED
|
@@ -199,6 +199,8 @@ export function createClient(config) {
|
|
|
199
199
|
if (params.intervalMinutes != null) body.intervalMinutes = params.intervalMinutes;
|
|
200
200
|
if (params.singleFire != null) body.singleFire = params.singleFire;
|
|
201
201
|
if (params.contextSources != null) body.contextSources = params.contextSources;
|
|
202
|
+
if (params.schedule !== undefined) body.schedule = params.schedule;
|
|
203
|
+
if (params.conditions != null) body.conditions = params.conditions;
|
|
202
204
|
return request("POST", "/api/activation/ping/routines", {
|
|
203
205
|
params: { workspace: ws },
|
|
204
206
|
body,
|
|
@@ -218,6 +220,8 @@ export function createClient(config) {
|
|
|
218
220
|
if (params.intervalMinutes != null) body.intervalMinutes = params.intervalMinutes;
|
|
219
221
|
if (params.singleFire != null) body.singleFire = params.singleFire;
|
|
220
222
|
if (params.contextSources != null) body.contextSources = params.contextSources;
|
|
223
|
+
if (params.schedule !== undefined) body.schedule = params.schedule;
|
|
224
|
+
if (params.conditions != null) body.conditions = params.conditions;
|
|
221
225
|
return request("POST", `/api/activation/ping/routines/${encodeURIComponent(routineId)}`, {
|
|
222
226
|
params: { workspace: ws },
|
|
223
227
|
body,
|