@usex/mikrotik-mcp 4.4.0 → 4.6.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.
- package/dist/cli.js +109 -9
- package/dist/index.js +1 -1
- package/dist/shared/{cli-k18dkv4w.js → cli-6xcbh1kn.js} +1 -1
- package/dist/shared/{cli-mm90zmj3.js → cli-hfhmh1qe.js} +141 -16
- package/dist/shared/{library-t0cfgfyj.js → library-399v2azd.js} +7 -3
- package/dist/shared/{library-tmmvpwjf.js → library-8hq0qqwm.js} +1 -1
- package/dist/ui/observability.html +47 -46
- package/package.json +1 -1
- package/schemas/config.schema.json +10 -2
- package/schemas/tool-catalog.json +1 -1
package/package.json
CHANGED
|
@@ -246,7 +246,8 @@
|
|
|
246
246
|
"maxEvents": 100000,
|
|
247
247
|
"captureBody": true,
|
|
248
248
|
"redactInput": false,
|
|
249
|
-
"maxBodyBytes": 16384
|
|
249
|
+
"maxBodyBytes": 16384,
|
|
250
|
+
"feedLimit": 200
|
|
250
251
|
},
|
|
251
252
|
"type": "object",
|
|
252
253
|
"properties": {
|
|
@@ -290,6 +291,12 @@
|
|
|
290
291
|
},
|
|
291
292
|
"token": {
|
|
292
293
|
"type": "string"
|
|
294
|
+
},
|
|
295
|
+
"feedLimit": {
|
|
296
|
+
"default": 200,
|
|
297
|
+
"type": "integer",
|
|
298
|
+
"exclusiveMinimum": 0,
|
|
299
|
+
"maximum": 10000
|
|
293
300
|
}
|
|
294
301
|
},
|
|
295
302
|
"required": [
|
|
@@ -300,7 +307,8 @@
|
|
|
300
307
|
"maxEvents",
|
|
301
308
|
"captureBody",
|
|
302
309
|
"redactInput",
|
|
303
|
-
"maxBodyBytes"
|
|
310
|
+
"maxBodyBytes",
|
|
311
|
+
"feedLimit"
|
|
304
312
|
],
|
|
305
313
|
"additionalProperties": false
|
|
306
314
|
},
|