@dominusnode/mastra-tools 1.0.1 → 1.3.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/CHANGELOG.md +30 -0
- package/README.md +6 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -2
- package/dist/toolkit.d.ts +183 -3
- package/dist/toolkit.js +870 -12
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- Stripe checkout top-up tool (`dominusnode_topup_stripe`) — create Stripe Checkout sessions ($5–$1,000)
|
|
7
|
+
- Crypto top-up tool (`dominusnode_topup_crypto`) — NOWPayments invoices for BTC, ETH, LTC, XMR, ZEC, USDC, SOL, USDT, DAI, BNB, LINK ($5–$1,000)
|
|
8
|
+
- `dominusnode_update_wallet_policy` tool — update daily limits and domain allowlists for agentic wallets
|
|
9
|
+
- Comprehensive test suite: 167 tests covering SSRF protection (incl. DNS rebinding), input validation, credential scrubbing, payment response fields, and all 26 tools
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- `topupCrypto`: use `Number.isFinite()` instead of `isNaN()` to correctly reject `NaN` and `Infinity` inputs
|
|
13
|
+
|
|
14
|
+
## 1.0.1
|
|
15
|
+
|
|
16
|
+
- Fix branding: replace "DomiNode" with "Dominus Node" throughout
|
|
17
|
+
|
|
18
|
+
## 1.0.0 (2026-02-24)
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- Initial release with 23 Mastra AI tools for Dominus Node proxy service
|
|
23
|
+
- Proxied fetch with full SSRF protection, DNS rebinding, OFAC blocking, and credential scrubbing
|
|
24
|
+
- Wallet balance and usage monitoring tools
|
|
25
|
+
- Proxy configuration and active session listing
|
|
26
|
+
- Agentic wallet management: create, fund, balance, list, transactions, freeze, unfreeze, delete
|
|
27
|
+
- Team management: create, list, details, fund, create key, usage, update, update member role
|
|
28
|
+
- PayPal top-up and x402 micropayment info tools
|
|
29
|
+
- Full security suite: DNS rebinding protection, Teredo/6to4 IPv6 tunnel detection, IPv4-mapped/compatible IPv6 handling, hex/octal/decimal IP normalization, prototype pollution prevention
|
|
30
|
+
- Comprehensive test suite covering SSRF, sanitization, OFAC, HTTP methods, validation, and all 23 tools
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Dominus Node rotating proxy tools for [Mastra AI](https://mastra.ai) agents.
|
|
4
4
|
|
|
5
|
-
Provides
|
|
5
|
+
Provides 26 tools for interacting with Dominus Node's rotating proxy-as-a-service platform from Mastra AI workflows and agents.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -35,7 +35,7 @@ const balance = await toolkit.checkBalance();
|
|
|
35
35
|
| `DOMINUSNODE_PROXY_HOST` | Proxy gateway host | `proxy.dominusnode.com` |
|
|
36
36
|
| `DOMINUSNODE_PROXY_PORT` | Proxy gateway port | `8080` |
|
|
37
37
|
|
|
38
|
-
## Available Tools (
|
|
38
|
+
## Available Tools (26)
|
|
39
39
|
|
|
40
40
|
### Proxy Operations
|
|
41
41
|
- `dominusnode_proxied_fetch` - Fetch a URL through the rotating proxy with geo-targeting
|
|
@@ -53,6 +53,7 @@ const balance = await toolkit.checkBalance();
|
|
|
53
53
|
- `dominusnode_freeze_agentic_wallet` - Freeze an agentic wallet
|
|
54
54
|
- `dominusnode_unfreeze_agentic_wallet` - Unfreeze an agentic wallet
|
|
55
55
|
- `dominusnode_delete_agentic_wallet` - Delete an agentic wallet
|
|
56
|
+
- `dominusnode_update_wallet_policy` - Update daily limits and domain restrictions
|
|
56
57
|
|
|
57
58
|
### Team Management
|
|
58
59
|
- `dominusnode_create_team` - Create a team with shared wallet
|
|
@@ -65,7 +66,9 @@ const balance = await toolkit.checkBalance();
|
|
|
65
66
|
- `dominusnode_update_team_member_role` - Change a member's role
|
|
66
67
|
|
|
67
68
|
### Payments
|
|
68
|
-
- `dominusnode_topup_paypal` - Top up wallet via PayPal
|
|
69
|
+
- `dominusnode_topup_paypal` - Top up wallet via PayPal ($5–$1,000)
|
|
70
|
+
- `dominusnode_topup_stripe` - Top up wallet via Stripe ($5–$1,000)
|
|
71
|
+
- `dominusnode_topup_crypto` - Top up wallet via crypto (BTC/ETH/LTC/XMR/ZEC/USDC/SOL/USDT/DAI/BNB/LINK)
|
|
69
72
|
- `dominusnode_x402_info` - Get x402 micropayment protocol info
|
|
70
73
|
|
|
71
74
|
## Security
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @dominusnode/mastra-tools
|
|
3
3
|
*
|
|
4
4
|
* Dominus Node rotating proxy tools for Mastra AI agents.
|
|
5
|
-
* Provides
|
|
5
|
+
* Provides 26 tools for proxy fetching, wallet management,
|
|
6
6
|
* team collaboration, and payment operations.
|
|
7
7
|
*
|
|
8
8
|
* @example
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
* const tools = toolkit.getTools();
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
export { DominusNodeToolkit, isPrivateIp, validateTargetUrl, validateCountry, validateUuid, normalizeIpv4, stripDangerousKeys, scrubCredentials, truncate, formatBytes, formatCents, } from "./toolkit.js";
|
|
19
|
+
export { DominusNodeToolkit, isPrivateIp, validateTargetUrl, validateCountry, validateUuid, normalizeIpv4, stripDangerousKeys, scrubCredentials, truncate, formatBytes, formatCents, checkDnsRebinding, SANCTIONED_COUNTRIES, BLOCKED_HOSTNAMES, } from "./toolkit.js";
|
|
20
20
|
export type { DominusNodeToolkitConfig } from "./toolkit.js";
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @dominusnode/mastra-tools
|
|
4
4
|
*
|
|
5
5
|
* Dominus Node rotating proxy tools for Mastra AI agents.
|
|
6
|
-
* Provides
|
|
6
|
+
* Provides 26 tools for proxy fetching, wallet management,
|
|
7
7
|
* team collaboration, and payment operations.
|
|
8
8
|
*
|
|
9
9
|
* @example
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* ```
|
|
19
19
|
*/
|
|
20
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
-
exports.formatCents = exports.formatBytes = exports.truncate = exports.scrubCredentials = exports.stripDangerousKeys = exports.normalizeIpv4 = exports.validateUuid = exports.validateCountry = exports.validateTargetUrl = exports.isPrivateIp = exports.DominusNodeToolkit = void 0;
|
|
21
|
+
exports.BLOCKED_HOSTNAMES = exports.SANCTIONED_COUNTRIES = exports.checkDnsRebinding = exports.formatCents = exports.formatBytes = exports.truncate = exports.scrubCredentials = exports.stripDangerousKeys = exports.normalizeIpv4 = exports.validateUuid = exports.validateCountry = exports.validateTargetUrl = exports.isPrivateIp = exports.DominusNodeToolkit = void 0;
|
|
22
22
|
var toolkit_js_1 = require("./toolkit.js");
|
|
23
23
|
Object.defineProperty(exports, "DominusNodeToolkit", { enumerable: true, get: function () { return toolkit_js_1.DominusNodeToolkit; } });
|
|
24
24
|
// Security utilities (exported for testing)
|
|
@@ -32,3 +32,6 @@ Object.defineProperty(exports, "scrubCredentials", { enumerable: true, get: func
|
|
|
32
32
|
Object.defineProperty(exports, "truncate", { enumerable: true, get: function () { return toolkit_js_1.truncate; } });
|
|
33
33
|
Object.defineProperty(exports, "formatBytes", { enumerable: true, get: function () { return toolkit_js_1.formatBytes; } });
|
|
34
34
|
Object.defineProperty(exports, "formatCents", { enumerable: true, get: function () { return toolkit_js_1.formatCents; } });
|
|
35
|
+
Object.defineProperty(exports, "checkDnsRebinding", { enumerable: true, get: function () { return toolkit_js_1.checkDnsRebinding; } });
|
|
36
|
+
Object.defineProperty(exports, "SANCTIONED_COUNTRIES", { enumerable: true, get: function () { return toolkit_js_1.SANCTIONED_COUNTRIES; } });
|
|
37
|
+
Object.defineProperty(exports, "BLOCKED_HOSTNAMES", { enumerable: true, get: function () { return toolkit_js_1.BLOCKED_HOSTNAMES; } });
|
package/dist/toolkit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Dominus Node Mastra AI Toolkit
|
|
3
3
|
*
|
|
4
|
-
* Implements
|
|
4
|
+
* Implements 53 tools for interacting with Dominus Node's rotating proxy service
|
|
5
5
|
* from Mastra AI agents and workflows.
|
|
6
6
|
*
|
|
7
7
|
* Uses createTool() from @mastra/core/tools with Zod schemas.
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
* - 10 MB response cap, 30s timeout
|
|
17
17
|
* - Redirect following disabled
|
|
18
18
|
*/
|
|
19
|
+
/** OFAC sanctioned countries -- must never be used as geo-targeting destinations. */
|
|
20
|
+
export declare const SANCTIONED_COUNTRIES: Set<string>;
|
|
19
21
|
export interface DominusNodeToolkitConfig {
|
|
20
22
|
/** Dominus Node API key (dn_live_... or dn_test_...). Falls back to DOMINUSNODE_API_KEY env var. */
|
|
21
23
|
apiKey?: string;
|
|
@@ -25,10 +27,13 @@ export interface DominusNodeToolkitConfig {
|
|
|
25
27
|
proxyHost?: string;
|
|
26
28
|
/** Port of the Dominus Node proxy gateway. */
|
|
27
29
|
proxyPort?: number;
|
|
30
|
+
/** Optional agent secret for MCP agent auto-verification (bypasses reCAPTCHA). */
|
|
31
|
+
agentSecret?: string;
|
|
28
32
|
}
|
|
29
33
|
/** Remove any dn_live_* or dn_test_* tokens from error messages. */
|
|
30
34
|
export declare function scrubCredentials(msg: string): string;
|
|
31
35
|
export declare function truncate(text: string, max?: number): string;
|
|
36
|
+
export declare const BLOCKED_HOSTNAMES: Set<string>;
|
|
32
37
|
/**
|
|
33
38
|
* Normalize non-standard IPv4 representations to dotted-decimal.
|
|
34
39
|
* Handles: decimal integers (2130706433), hex (0x7f000001), octal octets (0177.0.0.1).
|
|
@@ -48,6 +53,10 @@ export declare function validateCountry(country: string | undefined): string | u
|
|
|
48
53
|
* Validate a UUID string.
|
|
49
54
|
*/
|
|
50
55
|
export declare function validateUuid(id: string, label: string): string;
|
|
56
|
+
/**
|
|
57
|
+
* Resolve a hostname via DNS and verify none of the resolved IPs are private.
|
|
58
|
+
*/
|
|
59
|
+
export declare function checkDnsRebinding(hostname: string): Promise<void>;
|
|
51
60
|
export declare function stripDangerousKeys(obj: unknown, depth?: number): void;
|
|
52
61
|
export declare function formatBytes(bytes: number): string;
|
|
53
62
|
export declare function formatCents(cents: number): string;
|
|
@@ -56,6 +65,7 @@ export declare class DominusNodeToolkit {
|
|
|
56
65
|
private baseUrl;
|
|
57
66
|
private proxyHost;
|
|
58
67
|
private proxyPort;
|
|
68
|
+
private agentSecret?;
|
|
59
69
|
private cachedJwt;
|
|
60
70
|
private jwtExpiresAt;
|
|
61
71
|
constructor(config?: DominusNodeToolkitConfig);
|
|
@@ -66,6 +76,12 @@ export declare class DominusNodeToolkit {
|
|
|
66
76
|
private apiPost;
|
|
67
77
|
private apiDelete;
|
|
68
78
|
private apiPatch;
|
|
79
|
+
private apiPut;
|
|
80
|
+
/**
|
|
81
|
+
* Raw POST/GET for unauthenticated endpoints (register, login, verify-email).
|
|
82
|
+
* Does NOT use ensureAuth(). Includes agent headers if configured.
|
|
83
|
+
*/
|
|
84
|
+
private rawRequest;
|
|
69
85
|
proxiedFetch(url: string, method?: string, country?: string, proxyType?: string): Promise<{
|
|
70
86
|
status: number;
|
|
71
87
|
headers: Record<string, string>;
|
|
@@ -105,7 +121,40 @@ export declare class DominusNodeToolkit {
|
|
|
105
121
|
updateTeam(teamId: string, name?: string, maxMembers?: number): Promise<Record<string, unknown>>;
|
|
106
122
|
updateTeamMemberRole(teamId: string, userId: string, role: string): Promise<Record<string, unknown>>;
|
|
107
123
|
topupPaypal(amountCents: number): Promise<Record<string, unknown>>;
|
|
124
|
+
topupStripe(amountCents: number): Promise<Record<string, unknown>>;
|
|
125
|
+
private static readonly VALID_CRYPTO_CURRENCIES;
|
|
126
|
+
topupCrypto(amountUsd: number, currency: string): Promise<Record<string, unknown>>;
|
|
108
127
|
x402Info(): Promise<Record<string, unknown>>;
|
|
128
|
+
getProxyStatus(): Promise<Record<string, unknown>>;
|
|
129
|
+
getTransactions(limit?: number): Promise<Record<string, unknown>>;
|
|
130
|
+
getForecast(): Promise<Record<string, unknown>>;
|
|
131
|
+
checkPayment(invoiceId: string): Promise<Record<string, unknown>>;
|
|
132
|
+
getDailyUsage(days?: number): Promise<Record<string, unknown>>;
|
|
133
|
+
getTopHosts(limit?: number): Promise<Record<string, unknown>>;
|
|
134
|
+
private static readonly EMAIL_RE;
|
|
135
|
+
private static validateEmail;
|
|
136
|
+
private static validatePassword;
|
|
137
|
+
register(email: string, password: string): Promise<Record<string, unknown>>;
|
|
138
|
+
login(email: string, password: string): Promise<Record<string, unknown>>;
|
|
139
|
+
getAccountInfo(): Promise<Record<string, unknown>>;
|
|
140
|
+
verifyEmail(token: string): Promise<Record<string, unknown>>;
|
|
141
|
+
resendVerification(): Promise<Record<string, unknown>>;
|
|
142
|
+
updatePassword(currentPassword: string, newPassword: string): Promise<Record<string, unknown>>;
|
|
143
|
+
listKeys(): Promise<Record<string, unknown>>;
|
|
144
|
+
createKey(label: string): Promise<Record<string, unknown>>;
|
|
145
|
+
revokeKey(keyId: string): Promise<Record<string, unknown>>;
|
|
146
|
+
getPlan(): Promise<Record<string, unknown>>;
|
|
147
|
+
listPlans(): Promise<Record<string, unknown>>;
|
|
148
|
+
changePlan(planId: string): Promise<Record<string, unknown>>;
|
|
149
|
+
teamDelete(teamId: string): Promise<Record<string, unknown>>;
|
|
150
|
+
teamRevokeKey(teamId: string, keyId: string): Promise<Record<string, unknown>>;
|
|
151
|
+
teamListKeys(teamId: string): Promise<Record<string, unknown>>;
|
|
152
|
+
teamListMembers(teamId: string): Promise<Record<string, unknown>>;
|
|
153
|
+
teamAddMember(teamId: string, userId: string, role?: string): Promise<Record<string, unknown>>;
|
|
154
|
+
teamRemoveMember(teamId: string, userId: string): Promise<Record<string, unknown>>;
|
|
155
|
+
teamInviteMember(teamId: string, email: string, role?: string): Promise<Record<string, unknown>>;
|
|
156
|
+
teamListInvites(teamId: string): Promise<Record<string, unknown>>;
|
|
157
|
+
teamCancelInvite(teamId: string, inviteId: string): Promise<Record<string, unknown>>;
|
|
109
158
|
getTools(): (import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
110
159
|
context: any;
|
|
111
160
|
}, {
|
|
@@ -237,8 +286,139 @@ export declare class DominusNodeToolkit {
|
|
|
237
286
|
}, {
|
|
238
287
|
error?: string | undefined;
|
|
239
288
|
data?: unknown;
|
|
240
|
-
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_topup_paypal", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<
|
|
289
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_topup_paypal", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
290
|
+
context: any;
|
|
291
|
+
}, {
|
|
292
|
+
error?: string | undefined;
|
|
293
|
+
data?: unknown;
|
|
294
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_topup_stripe", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
295
|
+
context: any;
|
|
296
|
+
}, {
|
|
297
|
+
error?: string | undefined;
|
|
298
|
+
data?: unknown;
|
|
299
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_topup_crypto", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<unknown, {
|
|
300
|
+
error?: string | undefined;
|
|
301
|
+
data?: unknown;
|
|
302
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_x402_info", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<unknown, {
|
|
303
|
+
error?: string | undefined;
|
|
304
|
+
data?: unknown;
|
|
305
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_get_proxy_status", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
306
|
+
context: any;
|
|
307
|
+
}, {
|
|
308
|
+
error?: string | undefined;
|
|
309
|
+
data?: unknown;
|
|
310
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_get_transactions", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<unknown, {
|
|
311
|
+
error?: string | undefined;
|
|
312
|
+
data?: unknown;
|
|
313
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_get_forecast", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
314
|
+
context: any;
|
|
315
|
+
}, {
|
|
316
|
+
error?: string | undefined;
|
|
317
|
+
data?: unknown;
|
|
318
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_check_payment", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
319
|
+
context: any;
|
|
320
|
+
}, {
|
|
321
|
+
error?: string | undefined;
|
|
322
|
+
data?: unknown;
|
|
323
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_get_daily_usage", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
324
|
+
context: any;
|
|
325
|
+
}, {
|
|
326
|
+
error?: string | undefined;
|
|
327
|
+
data?: unknown;
|
|
328
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_get_top_hosts", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
329
|
+
context: any;
|
|
330
|
+
}, {
|
|
331
|
+
error?: string | undefined;
|
|
332
|
+
data?: unknown;
|
|
333
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_register", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
334
|
+
context: any;
|
|
335
|
+
}, {
|
|
336
|
+
error?: string | undefined;
|
|
337
|
+
data?: unknown;
|
|
338
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_login", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<unknown, {
|
|
339
|
+
error?: string | undefined;
|
|
340
|
+
data?: unknown;
|
|
341
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_get_account_info", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
342
|
+
context: any;
|
|
343
|
+
}, {
|
|
344
|
+
error?: string | undefined;
|
|
345
|
+
data?: unknown;
|
|
346
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_verify_email", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<unknown, {
|
|
347
|
+
error?: string | undefined;
|
|
348
|
+
data?: unknown;
|
|
349
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_resend_verification", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
350
|
+
context: any;
|
|
351
|
+
}, {
|
|
352
|
+
error?: string | undefined;
|
|
353
|
+
data?: unknown;
|
|
354
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_update_password", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<unknown, {
|
|
355
|
+
error?: string | undefined;
|
|
356
|
+
data?: unknown;
|
|
357
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_list_keys", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
358
|
+
context: any;
|
|
359
|
+
}, {
|
|
360
|
+
error?: string | undefined;
|
|
361
|
+
data?: unknown;
|
|
362
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_create_key", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
363
|
+
context: any;
|
|
364
|
+
}, {
|
|
365
|
+
error?: string | undefined;
|
|
366
|
+
data?: unknown;
|
|
367
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_revoke_key", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<unknown, {
|
|
368
|
+
error?: string | undefined;
|
|
369
|
+
data?: unknown;
|
|
370
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_get_plan", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<unknown, {
|
|
371
|
+
error?: string | undefined;
|
|
372
|
+
data?: unknown;
|
|
373
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_list_plans", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
374
|
+
context: any;
|
|
375
|
+
}, {
|
|
376
|
+
error?: string | undefined;
|
|
377
|
+
data?: unknown;
|
|
378
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_change_plan", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
379
|
+
context: any;
|
|
380
|
+
}, {
|
|
381
|
+
error?: string | undefined;
|
|
382
|
+
data?: unknown;
|
|
383
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_team_delete", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
384
|
+
context: any;
|
|
385
|
+
}, {
|
|
386
|
+
error?: string | undefined;
|
|
387
|
+
data?: unknown;
|
|
388
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_team_revoke_key", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
389
|
+
context: any;
|
|
390
|
+
}, {
|
|
391
|
+
error?: string | undefined;
|
|
392
|
+
data?: unknown;
|
|
393
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_team_list_keys", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
394
|
+
context: any;
|
|
395
|
+
}, {
|
|
396
|
+
error?: string | undefined;
|
|
397
|
+
data?: unknown;
|
|
398
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_team_list_members", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
399
|
+
context: any;
|
|
400
|
+
}, {
|
|
401
|
+
error?: string | undefined;
|
|
402
|
+
data?: unknown;
|
|
403
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_team_add_member", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
404
|
+
context: any;
|
|
405
|
+
}, {
|
|
406
|
+
error?: string | undefined;
|
|
407
|
+
data?: unknown;
|
|
408
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_team_remove_member", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
409
|
+
context: any;
|
|
410
|
+
}, {
|
|
411
|
+
error?: string | undefined;
|
|
412
|
+
data?: unknown;
|
|
413
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_team_invite_member", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
414
|
+
context: any;
|
|
415
|
+
}, {
|
|
416
|
+
error?: string | undefined;
|
|
417
|
+
data?: unknown;
|
|
418
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_team_list_invites", unknown> | import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).Tool<{
|
|
419
|
+
context: any;
|
|
420
|
+
}, {
|
|
241
421
|
error?: string | undefined;
|
|
242
422
|
data?: unknown;
|
|
243
|
-
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "
|
|
423
|
+
}, unknown, unknown, import("@mastra/core/tools", { with: { "resolution-mode": "import" } }).ToolExecutionContext<unknown, unknown, unknown>, "dominusnode_team_cancel_invite", unknown>)[];
|
|
244
424
|
}
|