@mindstudio-ai/agent 0.1.4 → 0.1.6
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 +46 -0
- package/dist/cli.js +756 -288
- package/dist/index.d.ts +240 -214
- package/dist/index.js +225 -56
- package/dist/index.js.map +1 -1
- package/dist/postinstall.js +757 -289
- package/llms.txt +47 -16
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -139,6 +139,117 @@ interface ListAgentsResult {
|
|
|
139
139
|
/** Agents in the organization. */
|
|
140
140
|
apps: AgentInfo[];
|
|
141
141
|
}
|
|
142
|
+
/** Result of {@link MindStudioAgent.getUserInfo}. */
|
|
143
|
+
interface UserInfoResult {
|
|
144
|
+
userId: string;
|
|
145
|
+
displayName: string;
|
|
146
|
+
organizationId: string;
|
|
147
|
+
organizationName: string;
|
|
148
|
+
members: {
|
|
149
|
+
userId: string;
|
|
150
|
+
displayName: string;
|
|
151
|
+
role: 'owner' | 'admin' | 'member' | 'guest' | 'agent';
|
|
152
|
+
isAgent: boolean;
|
|
153
|
+
}[];
|
|
154
|
+
}
|
|
155
|
+
/** An AI model available on MindStudio. */
|
|
156
|
+
interface MindStudioModel {
|
|
157
|
+
id?: string;
|
|
158
|
+
/** Display name of the model. */
|
|
159
|
+
name?: string;
|
|
160
|
+
/** One of: `llm_chat`, `image_generation`, `video_generation`, `video_analysis`, `text_to_speech`, `vision`, `transcription`. */
|
|
161
|
+
type?: ModelType;
|
|
162
|
+
maxTemperature?: number;
|
|
163
|
+
maxResponseSize?: number;
|
|
164
|
+
/** Accepted input types for this model (text, imageUrl, videoUrl, etc.). */
|
|
165
|
+
inputs?: Record<string, unknown>[];
|
|
166
|
+
}
|
|
167
|
+
/** A lightweight AI model summary. */
|
|
168
|
+
interface MindStudioModelSummary {
|
|
169
|
+
id?: string;
|
|
170
|
+
/** Display name of the model. */
|
|
171
|
+
name?: string;
|
|
172
|
+
/** One of: `llm_chat`, `image_generation`, `video_generation`, `video_analysis`, `text_to_speech`, `vision`, `transcription`. */
|
|
173
|
+
type?: ModelType;
|
|
174
|
+
/** Comma-separated tags for the model. */
|
|
175
|
+
tags?: string;
|
|
176
|
+
}
|
|
177
|
+
/** Supported model type categories for filtering. */
|
|
178
|
+
type ModelType = 'llm_chat' | 'image_generation' | 'video_generation' | 'video_analysis' | 'text_to_speech' | 'vision' | 'transcription';
|
|
179
|
+
/** An OAuth connector service with its available actions. Third-party integration from the MindStudio Connector Registry. */
|
|
180
|
+
interface ConnectorService {
|
|
181
|
+
id?: string;
|
|
182
|
+
/** Display name of the connector service. */
|
|
183
|
+
name?: string;
|
|
184
|
+
icon?: string;
|
|
185
|
+
/** Available actions for this connector service. */
|
|
186
|
+
actions?: {
|
|
187
|
+
id?: string;
|
|
188
|
+
/** Display name of the action. */
|
|
189
|
+
name?: string;
|
|
190
|
+
}[];
|
|
191
|
+
}
|
|
192
|
+
/** Full configuration details for an OAuth connector action. */
|
|
193
|
+
interface ConnectorActionDetail {
|
|
194
|
+
id?: string;
|
|
195
|
+
/** Display name of the action. */
|
|
196
|
+
name?: string;
|
|
197
|
+
/** What this action does. */
|
|
198
|
+
description?: string;
|
|
199
|
+
/** Short usage guidance for the action. */
|
|
200
|
+
quickHelp?: string;
|
|
201
|
+
/** Input field groups required to call this action. */
|
|
202
|
+
configuration?: {
|
|
203
|
+
title?: string;
|
|
204
|
+
items?: {
|
|
205
|
+
label?: string;
|
|
206
|
+
helpText?: string;
|
|
207
|
+
/** The variable name to use when passing this input. */
|
|
208
|
+
variable?: string;
|
|
209
|
+
/** One of: `text`, `outputVariableName`, `select`. */
|
|
210
|
+
type?: 'text' | 'outputVariableName' | 'select';
|
|
211
|
+
defaultValue?: string;
|
|
212
|
+
placeholder?: string;
|
|
213
|
+
selectOptions?: {
|
|
214
|
+
options?: {
|
|
215
|
+
label?: string;
|
|
216
|
+
value?: string;
|
|
217
|
+
}[];
|
|
218
|
+
};
|
|
219
|
+
}[];
|
|
220
|
+
}[];
|
|
221
|
+
}
|
|
222
|
+
/** An OAuth connection to a third-party service. */
|
|
223
|
+
interface Connection {
|
|
224
|
+
/** Connection ID. Pass this when executing connector actions. */
|
|
225
|
+
id?: string;
|
|
226
|
+
/** The integration provider (e.g., slack, google, github). */
|
|
227
|
+
provider?: string;
|
|
228
|
+
/** Display name or account identifier for the connection. */
|
|
229
|
+
name?: string;
|
|
230
|
+
}
|
|
231
|
+
/** A single cost estimate entry for an action. */
|
|
232
|
+
interface StepCostEstimateEntry {
|
|
233
|
+
/** Billing event type identifier. */
|
|
234
|
+
eventType?: string;
|
|
235
|
+
/** Human-readable label for the cost. */
|
|
236
|
+
label?: string;
|
|
237
|
+
/** Price per unit in billing units (1/1,000,000,000th of a credit). */
|
|
238
|
+
unitPrice?: number;
|
|
239
|
+
/** What constitutes a unit (e.g. "token", "request"). */
|
|
240
|
+
unitType?: string;
|
|
241
|
+
/** Estimated total cost in billing units, or null if not estimable. */
|
|
242
|
+
estimatedCost?: number;
|
|
243
|
+
/** Number of billable units. */
|
|
244
|
+
quantity?: number;
|
|
245
|
+
/** Estimated latency based on recent global model metrics. null when no metrics are available. */
|
|
246
|
+
latency?: unknown;
|
|
247
|
+
}
|
|
248
|
+
/** Result of {@link MindStudioAgent.uploadFile}. */
|
|
249
|
+
interface UploadFileResult {
|
|
250
|
+
/** Permanent public URL where the file is accessible. */
|
|
251
|
+
url: string;
|
|
252
|
+
}
|
|
142
253
|
/** Options for {@link MindStudioAgent.runAgent}. */
|
|
143
254
|
interface RunAgentOptions {
|
|
144
255
|
/** App/agent ID to run (required). */
|
|
@@ -156,6 +267,42 @@ interface RunAgentOptions {
|
|
|
156
267
|
/** Polling interval in milliseconds. @default 1000 */
|
|
157
268
|
pollIntervalMs?: number;
|
|
158
269
|
}
|
|
270
|
+
/** A single step in a batch request. */
|
|
271
|
+
interface BatchStepInput {
|
|
272
|
+
/** The step type to execute (e.g. "generateImage", "userMessage"). */
|
|
273
|
+
stepType: string;
|
|
274
|
+
/** Step configuration — same format as the single execute endpoint. */
|
|
275
|
+
step: Record<string, unknown>;
|
|
276
|
+
}
|
|
277
|
+
/** Result for a single step in a batch response. */
|
|
278
|
+
interface BatchStepResult {
|
|
279
|
+
/** The step type that was executed. */
|
|
280
|
+
stepType: string;
|
|
281
|
+
/** Step output data. Present on success. */
|
|
282
|
+
output?: Record<string, unknown>;
|
|
283
|
+
/** Cost of this step in billing units. Present on success. */
|
|
284
|
+
billingCost?: number;
|
|
285
|
+
/** Error message. Present when this step failed. */
|
|
286
|
+
error?: string;
|
|
287
|
+
}
|
|
288
|
+
/** Options for {@link MindStudioAgent.executeStepBatch}. */
|
|
289
|
+
interface ExecuteStepBatchOptions {
|
|
290
|
+
/** App ID to execute within. If omitted, a service account app is used. */
|
|
291
|
+
appId?: string;
|
|
292
|
+
/** Thread ID for state persistence. If omitted, an ephemeral thread is created. */
|
|
293
|
+
threadId?: string;
|
|
294
|
+
}
|
|
295
|
+
/** Result of {@link MindStudioAgent.executeStepBatch}. */
|
|
296
|
+
interface ExecuteStepBatchResult {
|
|
297
|
+
/** Results in the same order as the input steps. */
|
|
298
|
+
results: BatchStepResult[];
|
|
299
|
+
/** Sum of billingCost across all successful steps. */
|
|
300
|
+
totalBillingCost?: number;
|
|
301
|
+
/** The app ID used for execution. */
|
|
302
|
+
appId?: string;
|
|
303
|
+
/** The thread ID used for execution. */
|
|
304
|
+
threadId?: string;
|
|
305
|
+
}
|
|
159
306
|
/** Result of a successful agent run. */
|
|
160
307
|
interface RunAgentResult {
|
|
161
308
|
/** Whether the run succeeded. */
|
|
@@ -217,6 +364,30 @@ declare class MindStudioAgent$1 {
|
|
|
217
364
|
* ```
|
|
218
365
|
*/
|
|
219
366
|
executeStep<TOutput = unknown>(stepType: string, step: Record<string, unknown>, options?: StepExecutionOptions): Promise<StepExecutionResult<TOutput>>;
|
|
367
|
+
/**
|
|
368
|
+
* Execute multiple steps in parallel in a single request.
|
|
369
|
+
*
|
|
370
|
+
* All steps run in parallel on the server. Results are returned in the same
|
|
371
|
+
* order as the input. Individual step failures do not affect other steps —
|
|
372
|
+
* partial success is possible.
|
|
373
|
+
*
|
|
374
|
+
* ```ts
|
|
375
|
+
* const { results } = await agent.executeStepBatch([
|
|
376
|
+
* { stepType: 'generateImage', step: { prompt: 'a sunset' } },
|
|
377
|
+
* { stepType: 'textToSpeech', step: { text: 'Hello world' } },
|
|
378
|
+
* ]);
|
|
379
|
+
* ```
|
|
380
|
+
*/
|
|
381
|
+
executeStepBatch(steps: BatchStepInput[], options?: ExecuteStepBatchOptions): Promise<ExecuteStepBatchResult>;
|
|
382
|
+
/**
|
|
383
|
+
* Get the authenticated user's identity and organization info.
|
|
384
|
+
*
|
|
385
|
+
* ```ts
|
|
386
|
+
* const info = await agent.getUserInfo();
|
|
387
|
+
* console.log(info.displayName, info.organizationName);
|
|
388
|
+
* ```
|
|
389
|
+
*/
|
|
390
|
+
getUserInfo(): Promise<UserInfoResult>;
|
|
220
391
|
/**
|
|
221
392
|
* List all pre-built agents in the organization.
|
|
222
393
|
*
|
|
@@ -241,11 +412,70 @@ declare class MindStudioAgent$1 {
|
|
|
241
412
|
* ```
|
|
242
413
|
*/
|
|
243
414
|
runAgent(options: RunAgentOptions): Promise<RunAgentResult>;
|
|
244
|
-
/** @internal Used by generated
|
|
415
|
+
/** @internal Used by generated action methods. */
|
|
245
416
|
_request<T>(method: 'GET' | 'POST', path: string, body?: unknown): Promise<{
|
|
246
417
|
data: T;
|
|
247
418
|
headers: Headers;
|
|
248
419
|
}>;
|
|
420
|
+
/** List all available AI models. */
|
|
421
|
+
listModels(): Promise<{
|
|
422
|
+
models: MindStudioModel[];
|
|
423
|
+
}>;
|
|
424
|
+
/** List AI models filtered by type. */
|
|
425
|
+
listModelsByType(modelType: ModelType): Promise<{
|
|
426
|
+
models: MindStudioModel[];
|
|
427
|
+
}>;
|
|
428
|
+
/** List all available AI models (summary). Returns only id, name, type, and tags. */
|
|
429
|
+
listModelsSummary(): Promise<{
|
|
430
|
+
models: MindStudioModelSummary[];
|
|
431
|
+
}>;
|
|
432
|
+
/** List AI models (summary) filtered by type. */
|
|
433
|
+
listModelsSummaryByType(modelType: ModelType): Promise<{
|
|
434
|
+
models: MindStudioModelSummary[];
|
|
435
|
+
}>;
|
|
436
|
+
/**
|
|
437
|
+
* List available OAuth connector services (Slack, Google, HubSpot, etc.).
|
|
438
|
+
*
|
|
439
|
+
* These are third-party integrations from the MindStudio Connector Registry.
|
|
440
|
+
* For most tasks, use actions directly instead.
|
|
441
|
+
*/
|
|
442
|
+
listConnectors(): Promise<{
|
|
443
|
+
services: ConnectorService[];
|
|
444
|
+
}>;
|
|
445
|
+
/** Get details for a single OAuth connector service. */
|
|
446
|
+
getConnector(serviceId: string): Promise<{
|
|
447
|
+
service: ConnectorService;
|
|
448
|
+
}>;
|
|
449
|
+
/** Get the full configuration for an OAuth connector action, including input fields. */
|
|
450
|
+
getConnectorAction(serviceId: string, actionId: string): Promise<{
|
|
451
|
+
action: ConnectorActionDetail;
|
|
452
|
+
}>;
|
|
453
|
+
/** List OAuth connections for the organization. These are authenticated third-party service links. */
|
|
454
|
+
listConnections(): Promise<{
|
|
455
|
+
connections: Connection[];
|
|
456
|
+
}>;
|
|
457
|
+
/** Estimate the cost of executing an action before running it. */
|
|
458
|
+
estimateStepCost(stepType: string, step?: Record<string, unknown>, options?: {
|
|
459
|
+
appId?: string;
|
|
460
|
+
workflowId?: string;
|
|
461
|
+
}): Promise<{
|
|
462
|
+
costType?: string;
|
|
463
|
+
estimates?: StepCostEstimateEntry[];
|
|
464
|
+
}>;
|
|
465
|
+
/** Update the display name of the authenticated user/agent. */
|
|
466
|
+
changeName(displayName: string): Promise<void>;
|
|
467
|
+
/** Update the profile picture of the authenticated user/agent. */
|
|
468
|
+
changeProfilePicture(url: string): Promise<void>;
|
|
469
|
+
/**
|
|
470
|
+
* Upload a file to the MindStudio CDN.
|
|
471
|
+
*
|
|
472
|
+
* Gets a signed upload URL, PUTs the file content, and returns the
|
|
473
|
+
* permanent public URL.
|
|
474
|
+
*/
|
|
475
|
+
uploadFile(content: Buffer | Uint8Array, options: {
|
|
476
|
+
extension: string;
|
|
477
|
+
type?: string;
|
|
478
|
+
}): Promise<UploadFileResult>;
|
|
249
479
|
}
|
|
250
480
|
|
|
251
481
|
interface ActiveCampaignAddNoteStepInput {
|
|
@@ -2476,6 +2706,8 @@ interface PostToXStepInput {
|
|
|
2476
2706
|
text: string;
|
|
2477
2707
|
/** X (Twitter) OAuth connection ID */
|
|
2478
2708
|
connectionId?: string;
|
|
2709
|
+
/** Up to 4 URLs of images, GIFs, or videos to attach to the post */
|
|
2710
|
+
mediaUrls?: string[];
|
|
2479
2711
|
}
|
|
2480
2712
|
type PostToXStepOutput = unknown;
|
|
2481
2713
|
interface PostToZapierStepInput {
|
|
@@ -5452,7 +5684,10 @@ interface StepMethods {
|
|
|
5452
5684
|
*
|
|
5453
5685
|
* @remarks
|
|
5454
5686
|
* - Requires an X OAuth connection (connectionId).
|
|
5455
|
-
* -
|
|
5687
|
+
* - Maximum 280 characters of text.
|
|
5688
|
+
* - Optionally attach up to 4 media items (images, GIFs, or videos) via mediaUrls.
|
|
5689
|
+
* - Media URLs must be publicly accessible. The service fetches and uploads them to X.
|
|
5690
|
+
* - Supported formats: JPEG, PNG, GIF, WEBP, MP4. Images up to 5MB, videos up to 512MB.
|
|
5456
5691
|
*
|
|
5457
5692
|
* @example
|
|
5458
5693
|
* ```typescript
|
|
@@ -6492,215 +6727,6 @@ interface StepMethods {
|
|
|
6492
6727
|
watermarkVideo(step: WatermarkVideoStepInput, options?: StepExecutionOptions): Promise<StepExecutionResult<WatermarkVideoStepOutput>>;
|
|
6493
6728
|
}
|
|
6494
6729
|
|
|
6495
|
-
/** An AI model available on MindStudio. */
|
|
6496
|
-
interface MindStudioModel {
|
|
6497
|
-
id?: string;
|
|
6498
|
-
/** Display name of the model. */
|
|
6499
|
-
name?: string;
|
|
6500
|
-
/** One of: `llm_chat`, `image_generation`, `video_generation`, `video_analysis`, `text_to_speech`, `vision`, `transcription`. */
|
|
6501
|
-
type?: "llm_chat" | "image_generation" | "video_generation" | "video_analysis" | "text_to_speech" | "vision" | "transcription";
|
|
6502
|
-
maxTemperature?: number;
|
|
6503
|
-
maxResponseSize?: number;
|
|
6504
|
-
/** Accepted input types for this model (text, imageUrl, videoUrl, etc.). */
|
|
6505
|
-
inputs?: Record<string, unknown>[];
|
|
6506
|
-
}
|
|
6507
|
-
/** A lightweight AI model summary. */
|
|
6508
|
-
interface MindStudioModelSummary {
|
|
6509
|
-
id?: string;
|
|
6510
|
-
/** Display name of the model. */
|
|
6511
|
-
name?: string;
|
|
6512
|
-
/** One of: `llm_chat`, `image_generation`, `video_generation`, `video_analysis`, `text_to_speech`, `vision`, `transcription`. */
|
|
6513
|
-
type?: "llm_chat" | "image_generation" | "video_generation" | "video_analysis" | "text_to_speech" | "vision" | "transcription";
|
|
6514
|
-
/** Comma-separated tags for the model. */
|
|
6515
|
-
tags?: string;
|
|
6516
|
-
}
|
|
6517
|
-
/** A connector service with its available actions. */
|
|
6518
|
-
interface ConnectorService {
|
|
6519
|
-
id?: string;
|
|
6520
|
-
/** Display name of the connector service. */
|
|
6521
|
-
name?: string;
|
|
6522
|
-
icon?: string;
|
|
6523
|
-
/** Available actions for this connector service. */
|
|
6524
|
-
actions?: {
|
|
6525
|
-
id?: string;
|
|
6526
|
-
/** Display name of the action. */
|
|
6527
|
-
name?: string;
|
|
6528
|
-
}[];
|
|
6529
|
-
}
|
|
6530
|
-
/** Full configuration details for a connector action. */
|
|
6531
|
-
interface ConnectorActionDetail {
|
|
6532
|
-
id?: string;
|
|
6533
|
-
/** Display name of the action. */
|
|
6534
|
-
name?: string;
|
|
6535
|
-
/** What this action does. */
|
|
6536
|
-
description?: string;
|
|
6537
|
-
/** Short usage guidance for the action. */
|
|
6538
|
-
quickHelp?: string;
|
|
6539
|
-
/** Input field groups required to call this action. */
|
|
6540
|
-
configuration?: ({
|
|
6541
|
-
title?: string;
|
|
6542
|
-
items?: ({
|
|
6543
|
-
label?: string;
|
|
6544
|
-
helpText?: string;
|
|
6545
|
-
/** The variable name to use when passing this input. */
|
|
6546
|
-
variable?: string;
|
|
6547
|
-
/** One of: `text`, `outputVariableName`, `select`. */
|
|
6548
|
-
type?: "text" | "outputVariableName" | "select";
|
|
6549
|
-
defaultValue?: string;
|
|
6550
|
-
placeholder?: string;
|
|
6551
|
-
selectOptions?: {
|
|
6552
|
-
options?: {
|
|
6553
|
-
label?: string;
|
|
6554
|
-
value?: string;
|
|
6555
|
-
}[];
|
|
6556
|
-
};
|
|
6557
|
-
})[];
|
|
6558
|
-
})[];
|
|
6559
|
-
}
|
|
6560
|
-
/** An OAuth connection to a third-party service. */
|
|
6561
|
-
interface Connection {
|
|
6562
|
-
/** Connection ID. Pass this when executing connector actions. */
|
|
6563
|
-
id?: string;
|
|
6564
|
-
/** The integration provider (e.g., slack, google, github). */
|
|
6565
|
-
provider?: string;
|
|
6566
|
-
/** Display name or account identifier for the connection. */
|
|
6567
|
-
name?: string;
|
|
6568
|
-
}
|
|
6569
|
-
/** A single cost estimate entry for a step. */
|
|
6570
|
-
interface StepCostEstimateEntry {
|
|
6571
|
-
/** Billing event type identifier. */
|
|
6572
|
-
eventType?: string;
|
|
6573
|
-
/** Human-readable label for the cost. */
|
|
6574
|
-
label?: string;
|
|
6575
|
-
/** Price per unit in billing units (1/1,000,000,000th of a credit). */
|
|
6576
|
-
unitPrice?: number;
|
|
6577
|
-
/** What constitutes a unit (e.g. "token", "request"). */
|
|
6578
|
-
unitType?: string;
|
|
6579
|
-
/** Estimated total cost in billing units, or null if not estimable. */
|
|
6580
|
-
estimatedCost?: number;
|
|
6581
|
-
/** Number of billable units. */
|
|
6582
|
-
quantity?: number;
|
|
6583
|
-
/** Estimated latency based on recent global model metrics. null when no metrics are available. */
|
|
6584
|
-
latency?: unknown;
|
|
6585
|
-
}
|
|
6586
|
-
/** Supported model type categories for filtering. */
|
|
6587
|
-
type ModelType = "llm_chat" | "image_generation" | "video_generation" | "video_analysis" | "text_to_speech" | "vision" | "transcription";
|
|
6588
|
-
interface HelperMethods {
|
|
6589
|
-
/**
|
|
6590
|
-
* List all available AI models.
|
|
6591
|
-
*
|
|
6592
|
-
* Returns models across all categories (chat, image generation, video, etc.).
|
|
6593
|
-
* Use `listModelsByType()` to filter by category.
|
|
6594
|
-
*/
|
|
6595
|
-
listModels(): Promise<{
|
|
6596
|
-
models: MindStudioModel[];
|
|
6597
|
-
}>;
|
|
6598
|
-
/**
|
|
6599
|
-
* List AI models filtered by type.
|
|
6600
|
-
*
|
|
6601
|
-
* @param modelType - The category to filter by (e.g. "llm_chat", "image_generation").
|
|
6602
|
-
*/
|
|
6603
|
-
listModelsByType(modelType: ModelType): Promise<{
|
|
6604
|
-
models: MindStudioModel[];
|
|
6605
|
-
}>;
|
|
6606
|
-
/**
|
|
6607
|
-
* List all available AI models (summary). Returns only id, name, type, and tags.
|
|
6608
|
-
*
|
|
6609
|
-
* Suitable for display or consumption inside a model context window.
|
|
6610
|
-
*/
|
|
6611
|
-
listModelsSummary(): Promise<{
|
|
6612
|
-
models: MindStudioModelSummary[];
|
|
6613
|
-
}>;
|
|
6614
|
-
/**
|
|
6615
|
-
* List AI models (summary) filtered by type.
|
|
6616
|
-
*
|
|
6617
|
-
* @param modelType - The category to filter by (e.g. "llm_chat", "image_generation").
|
|
6618
|
-
*/
|
|
6619
|
-
listModelsSummaryByType(modelType: ModelType): Promise<{
|
|
6620
|
-
models: MindStudioModelSummary[];
|
|
6621
|
-
}>;
|
|
6622
|
-
/**
|
|
6623
|
-
* List all available connector services (Slack, Google, HubSpot, etc.).
|
|
6624
|
-
*/
|
|
6625
|
-
listConnectors(): Promise<{
|
|
6626
|
-
services: ConnectorService[];
|
|
6627
|
-
}>;
|
|
6628
|
-
/**
|
|
6629
|
-
* Get details for a single connector service.
|
|
6630
|
-
*
|
|
6631
|
-
* @param serviceId - The connector service ID.
|
|
6632
|
-
*/
|
|
6633
|
-
getConnector(serviceId: string): Promise<{
|
|
6634
|
-
service: ConnectorService;
|
|
6635
|
-
}>;
|
|
6636
|
-
/**
|
|
6637
|
-
* Get the full configuration for a connector action, including input fields.
|
|
6638
|
-
*
|
|
6639
|
-
* @param serviceId - The connector service ID.
|
|
6640
|
-
* @param actionId - The full action ID including service prefix (e.g. "slack/send-message").
|
|
6641
|
-
*/
|
|
6642
|
-
getConnectorAction(serviceId: string, actionId: string): Promise<{
|
|
6643
|
-
action: ConnectorActionDetail;
|
|
6644
|
-
}>;
|
|
6645
|
-
/**
|
|
6646
|
-
* List OAuth connections for the organization.
|
|
6647
|
-
*
|
|
6648
|
-
* Returns the third-party services the caller's organization has OAuth connections for.
|
|
6649
|
-
* Use the returned connection IDs when calling connector actions.
|
|
6650
|
-
*/
|
|
6651
|
-
listConnections(): Promise<{
|
|
6652
|
-
connections: Connection[];
|
|
6653
|
-
}>;
|
|
6654
|
-
/**
|
|
6655
|
-
* Estimate the cost of executing a step before running it.
|
|
6656
|
-
*
|
|
6657
|
-
* Pass the same step config you would use for execution.
|
|
6658
|
-
*
|
|
6659
|
-
* @param stepType - The step type name (e.g. "generateText").
|
|
6660
|
-
* @param step - The step input parameters.
|
|
6661
|
-
* @param options - Optional appId and workflowId for context-specific pricing.
|
|
6662
|
-
*/
|
|
6663
|
-
estimateStepCost(stepType: string, step?: Record<string, unknown>, options?: {
|
|
6664
|
-
appId?: string;
|
|
6665
|
-
workflowId?: string;
|
|
6666
|
-
}): Promise<{
|
|
6667
|
-
costType?: string;
|
|
6668
|
-
estimates?: StepCostEstimateEntry[];
|
|
6669
|
-
}>;
|
|
6670
|
-
/**
|
|
6671
|
-
* Update the display name of the authenticated agent.
|
|
6672
|
-
*
|
|
6673
|
-
* Useful for agents to set their own name after connecting.
|
|
6674
|
-
*
|
|
6675
|
-
* @param displayName - The new display name.
|
|
6676
|
-
*/
|
|
6677
|
-
changeName(displayName: string): Promise<void>;
|
|
6678
|
-
/**
|
|
6679
|
-
* Update the profile picture of the authenticated agent.
|
|
6680
|
-
*
|
|
6681
|
-
* Useful for agents to set their own avatar after connecting.
|
|
6682
|
-
*
|
|
6683
|
-
* @param profilePictureUrl - URL of the new profile picture.
|
|
6684
|
-
*/
|
|
6685
|
-
changeProfilePicture(profilePictureUrl: string): Promise<void>;
|
|
6686
|
-
/**
|
|
6687
|
-
* Upload a file to the MindStudio CDN.
|
|
6688
|
-
*
|
|
6689
|
-
* Gets a signed upload URL, PUTs the file content, and returns the permanent public URL.
|
|
6690
|
-
*
|
|
6691
|
-
* @param content - File content as a Buffer or Uint8Array.
|
|
6692
|
-
* @param options - Upload options.
|
|
6693
|
-
* @param options.extension - File extension without the dot (e.g. "png", "jpg", "mp4").
|
|
6694
|
-
* @param options.type - MIME type of the file (e.g. "image/png"). Determines which CDN subdomain is used.
|
|
6695
|
-
*/
|
|
6696
|
-
uploadFile(content: Buffer | Uint8Array, options: {
|
|
6697
|
-
extension: string;
|
|
6698
|
-
type?: string;
|
|
6699
|
-
}): Promise<{
|
|
6700
|
-
url: string;
|
|
6701
|
-
}>;
|
|
6702
|
-
}
|
|
6703
|
-
|
|
6704
6730
|
/**
|
|
6705
6731
|
* Error thrown when a MindStudio API request fails.
|
|
6706
6732
|
*
|
|
@@ -6742,11 +6768,11 @@ interface StepMetadata {
|
|
|
6742
6768
|
}
|
|
6743
6769
|
declare const stepMetadata: Record<string, StepMetadata>;
|
|
6744
6770
|
|
|
6745
|
-
/** MindStudioAgent with all generated step
|
|
6746
|
-
type MindStudioAgent = MindStudioAgent$1 & StepMethods
|
|
6771
|
+
/** MindStudioAgent with all generated step methods. */
|
|
6772
|
+
type MindStudioAgent = MindStudioAgent$1 & StepMethods;
|
|
6747
6773
|
/** {@inheritDoc MindStudioAgent} */
|
|
6748
6774
|
declare const MindStudioAgent: {
|
|
6749
6775
|
new (options?: AgentOptions): MindStudioAgent;
|
|
6750
6776
|
};
|
|
6751
6777
|
|
|
6752
|
-
export { type ActiveCampaignAddNoteStepInput, type ActiveCampaignAddNoteStepOutput, type ActiveCampaignCreateContactStepInput, type ActiveCampaignCreateContactStepOutput, type AddSubtitlesToVideoStepInput, type AddSubtitlesToVideoStepOutput, type AgentInfo, type AgentOptions, type AirtableCreateUpdateRecordStepInput, type AirtableCreateUpdateRecordStepOutput, type AirtableDeleteRecordStepInput, type AirtableDeleteRecordStepOutput, type AirtableGetRecordStepInput, type AirtableGetRecordStepOutput, type AirtableGetTableRecordsStepInput, type AirtableGetTableRecordsStepOutput, type AnalyzeImageStepInput, type AnalyzeImageStepOutput, type AnalyzeVideoStepInput, type AnalyzeVideoStepOutput, type CaptureThumbnailStepInput, type CaptureThumbnailStepOutput, type CodaCreateUpdatePageStepInput, type CodaCreateUpdatePageStepOutput, type CodaCreateUpdateRowStepInput, type CodaCreateUpdateRowStepOutput, type CodaFindRowStepInput, type CodaFindRowStepOutput, type CodaGetPageStepInput, type CodaGetPageStepOutput, type CodaGetTableRowsStepInput, type CodaGetTableRowsStepOutput, type ConvertPdfToImagesStepInput, type ConvertPdfToImagesStepOutput, type CreateDataSourceStepInput, type CreateDataSourceStepOutput, type CreateGmailDraftStepInput, type CreateGmailDraftStepOutput, type CreateGoogleCalendarEventStepInput, type CreateGoogleCalendarEventStepOutput, type CreateGoogleDocStepInput, type CreateGoogleDocStepOutput, type CreateGoogleSheetStepInput, type CreateGoogleSheetStepOutput, type DeleteDataSourceDocumentStepInput, type DeleteDataSourceDocumentStepOutput, type DeleteDataSourceStepInput, type DeleteDataSourceStepOutput, type DeleteGmailEmailStepInput, type DeleteGmailEmailStepOutput, type DeleteGoogleCalendarEventStepInput, type DeleteGoogleCalendarEventStepOutput, type DeleteGoogleSheetRowsStepInput, type DeleteGoogleSheetRowsStepOutput, type DetectChangesStepInput, type DetectChangesStepOutput, type DetectPIIStepInput, type DetectPIIStepOutput, type DiscordEditMessageStepInput, type DiscordEditMessageStepOutput, type DiscordSendFollowUpStepInput, type DiscordSendFollowUpStepOutput, type DiscordSendMessageStepInput, type DiscordSendMessageStepOutput, type DownloadVideoStepInput, type DownloadVideoStepOutput, type EnhanceImageGenerationPromptStepInput, type EnhanceImageGenerationPromptStepOutput, type EnhanceVideoGenerationPromptStepInput, type EnhanceVideoGenerationPromptStepOutput, type EnrichPersonStepInput, type EnrichPersonStepOutput, type ExtractAudioFromVideoStepInput, type ExtractAudioFromVideoStepOutput, type ExtractTextStepInput, type ExtractTextStepOutput, type FetchDataSourceDocumentStepInput, type FetchDataSourceDocumentStepOutput, type FetchGoogleDocStepInput, type FetchGoogleDocStepOutput, type FetchGoogleSheetStepInput, type FetchGoogleSheetStepOutput, type FetchSlackChannelHistoryStepInput, type FetchSlackChannelHistoryStepOutput, type FetchYoutubeCaptionsStepInput, type FetchYoutubeCaptionsStepOutput, type FetchYoutubeChannelStepInput, type FetchYoutubeChannelStepOutput, type FetchYoutubeCommentsStepInput, type FetchYoutubeCommentsStepOutput, type FetchYoutubeVideoStepInput, type FetchYoutubeVideoStepOutput, type GenerateAssetStepInput, type GenerateAssetStepOutput, type GenerateChartStepInput, type GenerateChartStepOutput, type GenerateImageStepInput, type GenerateImageStepOutput, type GenerateLipsyncStepInput, type GenerateLipsyncStepOutput, type GenerateMusicStepInput, type GenerateMusicStepOutput, type GeneratePdfStepInput, type GeneratePdfStepOutput, type GenerateStaticVideoFromImageStepInput, type GenerateStaticVideoFromImageStepOutput, type GenerateTextStepInput, type GenerateTextStepOutput, type GenerateVideoStepInput, type GenerateVideoStepOutput, type GetGmailAttachmentsStepInput, type GetGmailAttachmentsStepOutput, type GetGmailDraftStepInput, type GetGmailDraftStepOutput, type GetGmailEmailStepInput, type GetGmailEmailStepOutput, type GetGmailUnreadCountStepInput, type GetGmailUnreadCountStepOutput, type GetGoogleCalendarEventStepInput, type GetGoogleCalendarEventStepOutput, type GetGoogleDriveFileStepInput, type GetGoogleDriveFileStepOutput, type GetGoogleSheetInfoStepInput, type GetGoogleSheetInfoStepOutput, type GetMediaMetadataStepInput, type GetMediaMetadataStepOutput, type HelperMethods, type HttpRequestStepInput, type HttpRequestStepOutput, type HubspotCreateCompanyStepInput, type HubspotCreateCompanyStepOutput, type HubspotCreateContactStepInput, type HubspotCreateContactStepOutput, type HubspotGetCompanyStepInput, type HubspotGetCompanyStepOutput, type HubspotGetContactStepInput, type HubspotGetContactStepOutput, type HunterApiCompanyEnrichmentStepInput, type HunterApiCompanyEnrichmentStepOutput, type HunterApiDomainSearchStepInput, type HunterApiDomainSearchStepOutput, type HunterApiEmailFinderStepInput, type HunterApiEmailFinderStepOutput, type HunterApiEmailVerificationStepInput, type HunterApiEmailVerificationStepOutput, type HunterApiPersonEnrichmentStepInput, type HunterApiPersonEnrichmentStepOutput, type ImageFaceSwapStepInput, type ImageFaceSwapStepOutput, type ImageRemoveWatermarkStepInput, type ImageRemoveWatermarkStepOutput, type InsertVideoClipsStepInput, type InsertVideoClipsStepOutput, type ListAgentsResult, type ListDataSourcesStepInput, type ListDataSourcesStepOutput, type ListGmailDraftsStepInput, type ListGmailDraftsStepOutput, type ListGmailLabelsStepInput, type ListGmailLabelsStepOutput, type ListGoogleCalendarEventsStepInput, type ListGoogleCalendarEventsStepOutput, type ListGoogleDriveFilesStepInput, type ListGoogleDriveFilesStepOutput, type ListRecentGmailEmailsStepInput, type ListRecentGmailEmailsStepOutput, type LogicStepInput, type LogicStepOutput, type MakeDotComRunScenarioStepInput, type MakeDotComRunScenarioStepOutput, type MergeAudioStepInput, type MergeAudioStepOutput, type MergeVideosStepInput, type MergeVideosStepOutput, MindStudioAgent, MindStudioError, type MindStudioModel, type MixAudioIntoVideoStepInput, type MixAudioIntoVideoStepOutput, type ModelType, type MonacoSnippet, type MonacoSnippetField, type MonacoSnippetFieldType, type MuteVideoStepInput, type MuteVideoStepOutput, type N8nRunNodeStepInput, type N8nRunNodeStepOutput, type NotionCreatePageStepInput, type NotionCreatePageStepOutput, type NotionUpdatePageStepInput, type NotionUpdatePageStepOutput, type PeopleSearchStepInput, type PeopleSearchStepOutput, type PostToLinkedInStepInput, type PostToLinkedInStepOutput, type PostToSlackChannelStepInput, type PostToSlackChannelStepOutput, type PostToXStepInput, type PostToXStepOutput, type PostToZapierStepInput, type PostToZapierStepOutput, type QueryDataSourceStepInput, type QueryDataSourceStepOutput, type QueryExternalDatabaseStepInput, type QueryExternalDatabaseStepOutput, type RedactPIIStepInput, type RedactPIIStepOutput, type RemoveBackgroundFromImageStepInput, type RemoveBackgroundFromImageStepOutput, type ReplyToGmailEmailStepInput, type ReplyToGmailEmailStepOutput, type ResizeVideoStepInput, type ResizeVideoStepOutput, type RunAgentOptions, type RunAgentResult, type RunFromConnectorRegistryStepInput, type RunFromConnectorRegistryStepOutput, type RunPackagedWorkflowStepInput, type RunPackagedWorkflowStepOutput, type ScrapeFacebookPageStepInput, type ScrapeFacebookPageStepOutput, type ScrapeFacebookPostsStepInput, type ScrapeFacebookPostsStepOutput, type ScrapeInstagramCommentsStepInput, type ScrapeInstagramCommentsStepOutput, type ScrapeInstagramMentionsStepInput, type ScrapeInstagramMentionsStepOutput, type ScrapeInstagramPostsStepInput, type ScrapeInstagramPostsStepOutput, type ScrapeInstagramProfileStepInput, type ScrapeInstagramProfileStepOutput, type ScrapeInstagramReelsStepInput, type ScrapeInstagramReelsStepOutput, type ScrapeLinkedInCompanyStepInput, type ScrapeLinkedInCompanyStepOutput, type ScrapeLinkedInProfileStepInput, type ScrapeLinkedInProfileStepOutput, type ScrapeMetaThreadsProfileStepInput, type ScrapeMetaThreadsProfileStepOutput, type ScrapeUrlStepInput, type ScrapeUrlStepOutput, type ScrapeXPostStepInput, type ScrapeXPostStepOutput, type ScrapeXProfileStepInput, type ScrapeXProfileStepOutput, type SearchGmailEmailsStepInput, type SearchGmailEmailsStepOutput, type SearchGoogleCalendarEventsStepInput, type SearchGoogleCalendarEventsStepOutput, type SearchGoogleDriveStepInput, type SearchGoogleDriveStepOutput, type SearchGoogleImagesStepInput, type SearchGoogleImagesStepOutput, type SearchGoogleNewsStepInput, type SearchGoogleNewsStepOutput, type SearchGoogleStepInput, type SearchGoogleStepOutput, type SearchGoogleTrendsStepInput, type SearchGoogleTrendsStepOutput, type SearchPerplexityStepInput, type SearchPerplexityStepOutput, type SearchXPostsStepInput, type SearchXPostsStepOutput, type SearchYoutubeStepInput, type SearchYoutubeStepOutput, type SearchYoutubeTrendsStepInput, type SearchYoutubeTrendsStepOutput, type SendEmailStepInput, type SendEmailStepOutput, type SendGmailDraftStepInput, type SendGmailDraftStepOutput, type SendGmailMessageStepInput, type SendGmailMessageStepOutput, type SendSMSStepInput, type SendSMSStepOutput, type SetGmailReadStatusStepInput, type SetGmailReadStatusStepOutput, type SetRunTitleStepInput, type SetRunTitleStepOutput, type SetVariableStepInput, type SetVariableStepOutput, type StepCostEstimateEntry, type StepExecutionMeta, type StepExecutionOptions, type StepExecutionResult, type StepInputMap, type StepMetadata, type StepMethods, type StepName, type StepOutputMap, type TelegramEditMessageStepInput, type TelegramEditMessageStepOutput, type TelegramReplyToMessageStepInput, type TelegramReplyToMessageStepOutput, type TelegramSendAudioStepInput, type TelegramSendAudioStepOutput, type TelegramSendFileStepInput, type TelegramSendFileStepOutput, type TelegramSendImageStepInput, type TelegramSendImageStepOutput, type TelegramSendMessageStepInput, type TelegramSendMessageStepOutput, type TelegramSendVideoStepInput, type TelegramSendVideoStepOutput, type TelegramSetTypingStepInput, type TelegramSetTypingStepOutput, type TextToSpeechStepInput, type TextToSpeechStepOutput, type TranscribeAudioStepInput, type TranscribeAudioStepOutput, type TrimMediaStepInput, type TrimMediaStepOutput, type UpdateGmailLabelsStepInput, type UpdateGmailLabelsStepOutput, type UpdateGoogleCalendarEventStepInput, type UpdateGoogleCalendarEventStepOutput, type UpdateGoogleDocStepInput, type UpdateGoogleDocStepOutput, type UpdateGoogleSheetStepInput, type UpdateGoogleSheetStepOutput, type UploadDataSourceDocumentStepInput, type UploadDataSourceDocumentStepOutput, type UpscaleImageStepInput, type UpscaleImageStepOutput, type UpscaleVideoStepInput, type UpscaleVideoStepOutput, type UserMessageStepInput, type UserMessageStepOutput, type VideoFaceSwapStepInput, type VideoFaceSwapStepOutput, type VideoRemoveBackgroundStepInput, type VideoRemoveBackgroundStepOutput, type VideoRemoveWatermarkStepInput, type VideoRemoveWatermarkStepOutput, type WatermarkImageStepInput, type WatermarkImageStepOutput, type WatermarkVideoStepInput, type WatermarkVideoStepOutput, blockTypeAliases, monacoSnippets, stepMetadata };
|
|
6778
|
+
export { type ActiveCampaignAddNoteStepInput, type ActiveCampaignAddNoteStepOutput, type ActiveCampaignCreateContactStepInput, type ActiveCampaignCreateContactStepOutput, type AddSubtitlesToVideoStepInput, type AddSubtitlesToVideoStepOutput, type AgentInfo, type AgentOptions, type AirtableCreateUpdateRecordStepInput, type AirtableCreateUpdateRecordStepOutput, type AirtableDeleteRecordStepInput, type AirtableDeleteRecordStepOutput, type AirtableGetRecordStepInput, type AirtableGetRecordStepOutput, type AirtableGetTableRecordsStepInput, type AirtableGetTableRecordsStepOutput, type AnalyzeImageStepInput, type AnalyzeImageStepOutput, type AnalyzeVideoStepInput, type AnalyzeVideoStepOutput, type BatchStepInput, type BatchStepResult, type CaptureThumbnailStepInput, type CaptureThumbnailStepOutput, type CodaCreateUpdatePageStepInput, type CodaCreateUpdatePageStepOutput, type CodaCreateUpdateRowStepInput, type CodaCreateUpdateRowStepOutput, type CodaFindRowStepInput, type CodaFindRowStepOutput, type CodaGetPageStepInput, type CodaGetPageStepOutput, type CodaGetTableRowsStepInput, type CodaGetTableRowsStepOutput, type Connection, type ConnectorActionDetail, type ConnectorService, type ConvertPdfToImagesStepInput, type ConvertPdfToImagesStepOutput, type CreateDataSourceStepInput, type CreateDataSourceStepOutput, type CreateGmailDraftStepInput, type CreateGmailDraftStepOutput, type CreateGoogleCalendarEventStepInput, type CreateGoogleCalendarEventStepOutput, type CreateGoogleDocStepInput, type CreateGoogleDocStepOutput, type CreateGoogleSheetStepInput, type CreateGoogleSheetStepOutput, type DeleteDataSourceDocumentStepInput, type DeleteDataSourceDocumentStepOutput, type DeleteDataSourceStepInput, type DeleteDataSourceStepOutput, type DeleteGmailEmailStepInput, type DeleteGmailEmailStepOutput, type DeleteGoogleCalendarEventStepInput, type DeleteGoogleCalendarEventStepOutput, type DeleteGoogleSheetRowsStepInput, type DeleteGoogleSheetRowsStepOutput, type DetectChangesStepInput, type DetectChangesStepOutput, type DetectPIIStepInput, type DetectPIIStepOutput, type DiscordEditMessageStepInput, type DiscordEditMessageStepOutput, type DiscordSendFollowUpStepInput, type DiscordSendFollowUpStepOutput, type DiscordSendMessageStepInput, type DiscordSendMessageStepOutput, type DownloadVideoStepInput, type DownloadVideoStepOutput, type EnhanceImageGenerationPromptStepInput, type EnhanceImageGenerationPromptStepOutput, type EnhanceVideoGenerationPromptStepInput, type EnhanceVideoGenerationPromptStepOutput, type EnrichPersonStepInput, type EnrichPersonStepOutput, type ExecuteStepBatchOptions, type ExecuteStepBatchResult, type ExtractAudioFromVideoStepInput, type ExtractAudioFromVideoStepOutput, type ExtractTextStepInput, type ExtractTextStepOutput, type FetchDataSourceDocumentStepInput, type FetchDataSourceDocumentStepOutput, type FetchGoogleDocStepInput, type FetchGoogleDocStepOutput, type FetchGoogleSheetStepInput, type FetchGoogleSheetStepOutput, type FetchSlackChannelHistoryStepInput, type FetchSlackChannelHistoryStepOutput, type FetchYoutubeCaptionsStepInput, type FetchYoutubeCaptionsStepOutput, type FetchYoutubeChannelStepInput, type FetchYoutubeChannelStepOutput, type FetchYoutubeCommentsStepInput, type FetchYoutubeCommentsStepOutput, type FetchYoutubeVideoStepInput, type FetchYoutubeVideoStepOutput, type GenerateAssetStepInput, type GenerateAssetStepOutput, type GenerateChartStepInput, type GenerateChartStepOutput, type GenerateImageStepInput, type GenerateImageStepOutput, type GenerateLipsyncStepInput, type GenerateLipsyncStepOutput, type GenerateMusicStepInput, type GenerateMusicStepOutput, type GeneratePdfStepInput, type GeneratePdfStepOutput, type GenerateStaticVideoFromImageStepInput, type GenerateStaticVideoFromImageStepOutput, type GenerateTextStepInput, type GenerateTextStepOutput, type GenerateVideoStepInput, type GenerateVideoStepOutput, type GetGmailAttachmentsStepInput, type GetGmailAttachmentsStepOutput, type GetGmailDraftStepInput, type GetGmailDraftStepOutput, type GetGmailEmailStepInput, type GetGmailEmailStepOutput, type GetGmailUnreadCountStepInput, type GetGmailUnreadCountStepOutput, type GetGoogleCalendarEventStepInput, type GetGoogleCalendarEventStepOutput, type GetGoogleDriveFileStepInput, type GetGoogleDriveFileStepOutput, type GetGoogleSheetInfoStepInput, type GetGoogleSheetInfoStepOutput, type GetMediaMetadataStepInput, type GetMediaMetadataStepOutput, type HttpRequestStepInput, type HttpRequestStepOutput, type HubspotCreateCompanyStepInput, type HubspotCreateCompanyStepOutput, type HubspotCreateContactStepInput, type HubspotCreateContactStepOutput, type HubspotGetCompanyStepInput, type HubspotGetCompanyStepOutput, type HubspotGetContactStepInput, type HubspotGetContactStepOutput, type HunterApiCompanyEnrichmentStepInput, type HunterApiCompanyEnrichmentStepOutput, type HunterApiDomainSearchStepInput, type HunterApiDomainSearchStepOutput, type HunterApiEmailFinderStepInput, type HunterApiEmailFinderStepOutput, type HunterApiEmailVerificationStepInput, type HunterApiEmailVerificationStepOutput, type HunterApiPersonEnrichmentStepInput, type HunterApiPersonEnrichmentStepOutput, type ImageFaceSwapStepInput, type ImageFaceSwapStepOutput, type ImageRemoveWatermarkStepInput, type ImageRemoveWatermarkStepOutput, type InsertVideoClipsStepInput, type InsertVideoClipsStepOutput, type ListAgentsResult, type ListDataSourcesStepInput, type ListDataSourcesStepOutput, type ListGmailDraftsStepInput, type ListGmailDraftsStepOutput, type ListGmailLabelsStepInput, type ListGmailLabelsStepOutput, type ListGoogleCalendarEventsStepInput, type ListGoogleCalendarEventsStepOutput, type ListGoogleDriveFilesStepInput, type ListGoogleDriveFilesStepOutput, type ListRecentGmailEmailsStepInput, type ListRecentGmailEmailsStepOutput, type LogicStepInput, type LogicStepOutput, type MakeDotComRunScenarioStepInput, type MakeDotComRunScenarioStepOutput, type MergeAudioStepInput, type MergeAudioStepOutput, type MergeVideosStepInput, type MergeVideosStepOutput, MindStudioAgent, MindStudioError, type MindStudioModel, type MindStudioModelSummary, type MixAudioIntoVideoStepInput, type MixAudioIntoVideoStepOutput, type ModelType, type MonacoSnippet, type MonacoSnippetField, type MonacoSnippetFieldType, type MuteVideoStepInput, type MuteVideoStepOutput, type N8nRunNodeStepInput, type N8nRunNodeStepOutput, type NotionCreatePageStepInput, type NotionCreatePageStepOutput, type NotionUpdatePageStepInput, type NotionUpdatePageStepOutput, type PeopleSearchStepInput, type PeopleSearchStepOutput, type PostToLinkedInStepInput, type PostToLinkedInStepOutput, type PostToSlackChannelStepInput, type PostToSlackChannelStepOutput, type PostToXStepInput, type PostToXStepOutput, type PostToZapierStepInput, type PostToZapierStepOutput, type QueryDataSourceStepInput, type QueryDataSourceStepOutput, type QueryExternalDatabaseStepInput, type QueryExternalDatabaseStepOutput, type RedactPIIStepInput, type RedactPIIStepOutput, type RemoveBackgroundFromImageStepInput, type RemoveBackgroundFromImageStepOutput, type ReplyToGmailEmailStepInput, type ReplyToGmailEmailStepOutput, type ResizeVideoStepInput, type ResizeVideoStepOutput, type RunAgentOptions, type RunAgentResult, type RunFromConnectorRegistryStepInput, type RunFromConnectorRegistryStepOutput, type RunPackagedWorkflowStepInput, type RunPackagedWorkflowStepOutput, type ScrapeFacebookPageStepInput, type ScrapeFacebookPageStepOutput, type ScrapeFacebookPostsStepInput, type ScrapeFacebookPostsStepOutput, type ScrapeInstagramCommentsStepInput, type ScrapeInstagramCommentsStepOutput, type ScrapeInstagramMentionsStepInput, type ScrapeInstagramMentionsStepOutput, type ScrapeInstagramPostsStepInput, type ScrapeInstagramPostsStepOutput, type ScrapeInstagramProfileStepInput, type ScrapeInstagramProfileStepOutput, type ScrapeInstagramReelsStepInput, type ScrapeInstagramReelsStepOutput, type ScrapeLinkedInCompanyStepInput, type ScrapeLinkedInCompanyStepOutput, type ScrapeLinkedInProfileStepInput, type ScrapeLinkedInProfileStepOutput, type ScrapeMetaThreadsProfileStepInput, type ScrapeMetaThreadsProfileStepOutput, type ScrapeUrlStepInput, type ScrapeUrlStepOutput, type ScrapeXPostStepInput, type ScrapeXPostStepOutput, type ScrapeXProfileStepInput, type ScrapeXProfileStepOutput, type SearchGmailEmailsStepInput, type SearchGmailEmailsStepOutput, type SearchGoogleCalendarEventsStepInput, type SearchGoogleCalendarEventsStepOutput, type SearchGoogleDriveStepInput, type SearchGoogleDriveStepOutput, type SearchGoogleImagesStepInput, type SearchGoogleImagesStepOutput, type SearchGoogleNewsStepInput, type SearchGoogleNewsStepOutput, type SearchGoogleStepInput, type SearchGoogleStepOutput, type SearchGoogleTrendsStepInput, type SearchGoogleTrendsStepOutput, type SearchPerplexityStepInput, type SearchPerplexityStepOutput, type SearchXPostsStepInput, type SearchXPostsStepOutput, type SearchYoutubeStepInput, type SearchYoutubeStepOutput, type SearchYoutubeTrendsStepInput, type SearchYoutubeTrendsStepOutput, type SendEmailStepInput, type SendEmailStepOutput, type SendGmailDraftStepInput, type SendGmailDraftStepOutput, type SendGmailMessageStepInput, type SendGmailMessageStepOutput, type SendSMSStepInput, type SendSMSStepOutput, type SetGmailReadStatusStepInput, type SetGmailReadStatusStepOutput, type SetRunTitleStepInput, type SetRunTitleStepOutput, type SetVariableStepInput, type SetVariableStepOutput, type StepCostEstimateEntry, type StepExecutionMeta, type StepExecutionOptions, type StepExecutionResult, type StepInputMap, type StepMetadata, type StepMethods, type StepName, type StepOutputMap, type TelegramEditMessageStepInput, type TelegramEditMessageStepOutput, type TelegramReplyToMessageStepInput, type TelegramReplyToMessageStepOutput, type TelegramSendAudioStepInput, type TelegramSendAudioStepOutput, type TelegramSendFileStepInput, type TelegramSendFileStepOutput, type TelegramSendImageStepInput, type TelegramSendImageStepOutput, type TelegramSendMessageStepInput, type TelegramSendMessageStepOutput, type TelegramSendVideoStepInput, type TelegramSendVideoStepOutput, type TelegramSetTypingStepInput, type TelegramSetTypingStepOutput, type TextToSpeechStepInput, type TextToSpeechStepOutput, type TranscribeAudioStepInput, type TranscribeAudioStepOutput, type TrimMediaStepInput, type TrimMediaStepOutput, type UpdateGmailLabelsStepInput, type UpdateGmailLabelsStepOutput, type UpdateGoogleCalendarEventStepInput, type UpdateGoogleCalendarEventStepOutput, type UpdateGoogleDocStepInput, type UpdateGoogleDocStepOutput, type UpdateGoogleSheetStepInput, type UpdateGoogleSheetStepOutput, type UploadDataSourceDocumentStepInput, type UploadDataSourceDocumentStepOutput, type UploadFileResult, type UpscaleImageStepInput, type UpscaleImageStepOutput, type UpscaleVideoStepInput, type UpscaleVideoStepOutput, type UserInfoResult, type UserMessageStepInput, type UserMessageStepOutput, type VideoFaceSwapStepInput, type VideoFaceSwapStepOutput, type VideoRemoveBackgroundStepInput, type VideoRemoveBackgroundStepOutput, type VideoRemoveWatermarkStepInput, type VideoRemoveWatermarkStepOutput, type WatermarkImageStepInput, type WatermarkImageStepOutput, type WatermarkVideoStepInput, type WatermarkVideoStepOutput, blockTypeAliases, monacoSnippets, stepMetadata };
|