@usex/mikrotik-mcp 2.4.0 → 2.5.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/README.md +88 -62
- package/dist/cli.js +4170 -2086
- package/dist/index.d.ts +0 -4
- package/dist/index.js +3758 -2075
- package/dist/ui/dashboard.html +1 -1
- package/dist/ui/firewall-audit.html +20 -0
- package/dist/ui/firewall.html +1 -1
- package/dist/ui/interfaces.html +1 -1
- package/dist/ui/observability.html +11 -7
- package/dist/ui/records.html +1 -1
- package/package.json +4 -2
- package/schemas/README.md +5 -5
- package/schemas/tool-catalog.json +465 -4
- package/schemas/tools/apply_plan.json +23 -0
- package/schemas/tools/capture_config_snapshot.json +30 -0
- package/schemas/tools/diff_config_snapshots.json +31 -0
- package/schemas/tools/firewall_audit.json +19 -0
- package/schemas/tools/get_config_snapshot.json +16 -0
- package/schemas/tools/get_neighbor_discovery_settings.json +7 -0
- package/schemas/tools/list_config_snapshots.json +15 -0
- package/schemas/tools/list_neighbors.json +24 -0
- package/schemas/tools/mirror_traffic_to_capture.json +36 -0
- package/schemas/tools/packet_capture_status.json +16 -0
- package/schemas/tools/plan_changes.json +19 -0
- package/schemas/tools/remove_config_snapshot.json +16 -0
- package/schemas/tools/set_neighbor_discovery_settings.json +25 -0
- package/schemas/tools/start_packet_capture.json +31 -0
- package/schemas/tools/stop_packet_capture.json +7 -0
package/dist/index.d.ts
CHANGED
|
@@ -4,10 +4,6 @@ declare const DeviceConfigSchema: unknown;
|
|
|
4
4
|
type DeviceConfig = z.infer<typeof DeviceConfigSchema>;
|
|
5
5
|
declare const MikrotikConfigSchema: unknown;
|
|
6
6
|
type MikrotikConfig = z.infer<typeof MikrotikConfigSchema>;
|
|
7
|
-
/**
|
|
8
|
-
* Build the effective configuration from the environment and CLI flags.
|
|
9
|
-
* `argv` defaults to the process arguments (after `bun run <file>`).
|
|
10
|
-
*/
|
|
11
7
|
declare function loadConfig(argv?: string[]): MikrotikConfig;
|
|
12
8
|
interface ToolContext {
|
|
13
9
|
/** Informational progress message. */
|