@mindstudio-ai/agent 0.1.3 → 0.1.5
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 +443 -284
- package/dist/index.d.ts +183 -213
- package/dist/index.js +160 -54
- package/dist/index.js.map +1 -1
- package/dist/postinstall.js +444 -285
- package/llms.txt +15 -15
- 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). */
|
|
@@ -217,6 +328,15 @@ declare class MindStudioAgent$1 {
|
|
|
217
328
|
* ```
|
|
218
329
|
*/
|
|
219
330
|
executeStep<TOutput = unknown>(stepType: string, step: Record<string, unknown>, options?: StepExecutionOptions): Promise<StepExecutionResult<TOutput>>;
|
|
331
|
+
/**
|
|
332
|
+
* Get the authenticated user's identity and organization info.
|
|
333
|
+
*
|
|
334
|
+
* ```ts
|
|
335
|
+
* const info = await agent.getUserInfo();
|
|
336
|
+
* console.log(info.displayName, info.organizationName);
|
|
337
|
+
* ```
|
|
338
|
+
*/
|
|
339
|
+
getUserInfo(): Promise<UserInfoResult>;
|
|
220
340
|
/**
|
|
221
341
|
* List all pre-built agents in the organization.
|
|
222
342
|
*
|
|
@@ -241,11 +361,70 @@ declare class MindStudioAgent$1 {
|
|
|
241
361
|
* ```
|
|
242
362
|
*/
|
|
243
363
|
runAgent(options: RunAgentOptions): Promise<RunAgentResult>;
|
|
244
|
-
/** @internal Used by generated
|
|
364
|
+
/** @internal Used by generated action methods. */
|
|
245
365
|
_request<T>(method: 'GET' | 'POST', path: string, body?: unknown): Promise<{
|
|
246
366
|
data: T;
|
|
247
367
|
headers: Headers;
|
|
248
368
|
}>;
|
|
369
|
+
/** List all available AI models. */
|
|
370
|
+
listModels(): Promise<{
|
|
371
|
+
models: MindStudioModel[];
|
|
372
|
+
}>;
|
|
373
|
+
/** List AI models filtered by type. */
|
|
374
|
+
listModelsByType(modelType: ModelType): Promise<{
|
|
375
|
+
models: MindStudioModel[];
|
|
376
|
+
}>;
|
|
377
|
+
/** List all available AI models (summary). Returns only id, name, type, and tags. */
|
|
378
|
+
listModelsSummary(): Promise<{
|
|
379
|
+
models: MindStudioModelSummary[];
|
|
380
|
+
}>;
|
|
381
|
+
/** List AI models (summary) filtered by type. */
|
|
382
|
+
listModelsSummaryByType(modelType: ModelType): Promise<{
|
|
383
|
+
models: MindStudioModelSummary[];
|
|
384
|
+
}>;
|
|
385
|
+
/**
|
|
386
|
+
* List available OAuth connector services (Slack, Google, HubSpot, etc.).
|
|
387
|
+
*
|
|
388
|
+
* These are third-party integrations from the MindStudio Connector Registry.
|
|
389
|
+
* For most tasks, use actions directly instead.
|
|
390
|
+
*/
|
|
391
|
+
listConnectors(): Promise<{
|
|
392
|
+
services: ConnectorService[];
|
|
393
|
+
}>;
|
|
394
|
+
/** Get details for a single OAuth connector service. */
|
|
395
|
+
getConnector(serviceId: string): Promise<{
|
|
396
|
+
service: ConnectorService;
|
|
397
|
+
}>;
|
|
398
|
+
/** Get the full configuration for an OAuth connector action, including input fields. */
|
|
399
|
+
getConnectorAction(serviceId: string, actionId: string): Promise<{
|
|
400
|
+
action: ConnectorActionDetail;
|
|
401
|
+
}>;
|
|
402
|
+
/** List OAuth connections for the organization. These are authenticated third-party service links. */
|
|
403
|
+
listConnections(): Promise<{
|
|
404
|
+
connections: Connection[];
|
|
405
|
+
}>;
|
|
406
|
+
/** Estimate the cost of executing an action before running it. */
|
|
407
|
+
estimateStepCost(stepType: string, step?: Record<string, unknown>, options?: {
|
|
408
|
+
appId?: string;
|
|
409
|
+
workflowId?: string;
|
|
410
|
+
}): Promise<{
|
|
411
|
+
costType?: string;
|
|
412
|
+
estimates?: StepCostEstimateEntry[];
|
|
413
|
+
}>;
|
|
414
|
+
/** Update the display name of the authenticated user/agent. */
|
|
415
|
+
changeName(displayName: string): Promise<void>;
|
|
416
|
+
/** Update the profile picture of the authenticated user/agent. */
|
|
417
|
+
changeProfilePicture(url: string): Promise<void>;
|
|
418
|
+
/**
|
|
419
|
+
* Upload a file to the MindStudio CDN.
|
|
420
|
+
*
|
|
421
|
+
* Gets a signed upload URL, PUTs the file content, and returns the
|
|
422
|
+
* permanent public URL.
|
|
423
|
+
*/
|
|
424
|
+
uploadFile(content: Buffer | Uint8Array, options: {
|
|
425
|
+
extension: string;
|
|
426
|
+
type?: string;
|
|
427
|
+
}): Promise<UploadFileResult>;
|
|
249
428
|
}
|
|
250
429
|
|
|
251
430
|
interface ActiveCampaignAddNoteStepInput {
|
|
@@ -6492,215 +6671,6 @@ interface StepMethods {
|
|
|
6492
6671
|
watermarkVideo(step: WatermarkVideoStepInput, options?: StepExecutionOptions): Promise<StepExecutionResult<WatermarkVideoStepOutput>>;
|
|
6493
6672
|
}
|
|
6494
6673
|
|
|
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
6674
|
/**
|
|
6705
6675
|
* Error thrown when a MindStudio API request fails.
|
|
6706
6676
|
*
|
|
@@ -6742,11 +6712,11 @@ interface StepMetadata {
|
|
|
6742
6712
|
}
|
|
6743
6713
|
declare const stepMetadata: Record<string, StepMetadata>;
|
|
6744
6714
|
|
|
6745
|
-
/** MindStudioAgent with all generated step
|
|
6746
|
-
type MindStudioAgent = MindStudioAgent$1 & StepMethods
|
|
6715
|
+
/** MindStudioAgent with all generated step methods. */
|
|
6716
|
+
type MindStudioAgent = MindStudioAgent$1 & StepMethods;
|
|
6747
6717
|
/** {@inheritDoc MindStudioAgent} */
|
|
6748
6718
|
declare const MindStudioAgent: {
|
|
6749
6719
|
new (options?: AgentOptions): MindStudioAgent;
|
|
6750
6720
|
};
|
|
6751
6721
|
|
|
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 };
|
|
6722
|
+
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 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 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 };
|