@hasna/connectors 1.3.12 → 1.3.13
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/bin/index.js +20568 -20320
- package/bin/mcp.js +4243 -4158
- package/bin/serve.js +4200 -4113
- package/dist/cli/commands/auth.d.ts +2 -0
- package/dist/cli/commands/browse.d.ts +2 -0
- package/dist/cli/commands/install.d.ts +8 -0
- package/dist/cli/commands/misc.d.ts +2 -0
- package/dist/cli/commands/ops.d.ts +2 -0
- package/dist/cli/commands/status.d.ts +2 -0
- package/dist/cli/commands/sync.d.ts +2 -0
- package/dist/cli/commands/system.d.ts +2 -0
- package/dist/index.js +4242 -4157
- package/dist/lib/connectors/advertising.d.ts +2 -0
- package/dist/lib/connectors/ai-ml.d.ts +2 -0
- package/dist/lib/connectors/business-tools.d.ts +2 -0
- package/dist/lib/connectors/commerce-finance.d.ts +2 -0
- package/dist/lib/connectors/communication.d.ts +2 -0
- package/dist/lib/connectors/data-analytics.d.ts +2 -0
- package/dist/lib/connectors/database.d.ts +2 -0
- package/dist/lib/connectors/design-content.d.ts +2 -0
- package/dist/lib/connectors/developer-tools.d.ts +2 -0
- package/dist/lib/connectors/google-workspace.d.ts +2 -0
- package/dist/lib/connectors/healthcare-hospitality.d.ts +2 -0
- package/dist/lib/connectors/infrastructure.d.ts +2 -0
- package/dist/lib/connectors/iot-messaging.d.ts +2 -0
- package/dist/lib/connectors/marketing-sales.d.ts +2 -0
- package/dist/lib/connectors/patents-ip.d.ts +2 -0
- package/dist/lib/connectors/security-compliance.d.ts +2 -0
- package/dist/lib/connectors/social-media.d.ts +2 -0
- package/dist/server/server-auth.test.d.ts +1 -0
- package/dist/server/server-connector-routes.test.d.ts +1 -0
- package/dist/server/server-mgmt-routes.test.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Command } from "commander";
|
|
2
|
+
export declare const isTTY: boolean;
|
|
3
|
+
export declare const PRESETS: Record<string, {
|
|
4
|
+
description: string;
|
|
5
|
+
connectors: string[];
|
|
6
|
+
}>;
|
|
7
|
+
export declare function listFilesRecursive(dir: string, base?: string): string[];
|
|
8
|
+
export declare function registerCommands(program: Command): void;
|