@bubblelab/bubble-core 0.1.19 → 0.1.20
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/bubble-bundle.d.ts +70 -70
- package/dist/bubbles/service-bubble/agi-inc.d.ts +140 -140
- package/dist/bubbles/service-bubble/ai-agent.d.ts +58 -58
- package/dist/bubbles/service-bubble/airtable.d.ts +106 -106
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +47 -47
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +730 -730
- package/dist/bubbles/service-bubble/followupboss.d.ts +282 -282
- package/dist/bubbles/service-bubble/github.d.ts +196 -196
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +1148 -346
- package/dist/bubbles/service-bubble/google-calendar.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.js +51 -9
- package/dist/bubbles/service-bubble/google-calendar.js.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.d.ts +259 -114
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +95 -0
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +52 -52
- package/dist/bubbles/service-bubble/hello-world.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +987 -987
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +40 -40
- package/dist/bubbles/service-bubble/slack/slack.d.ts +314 -314
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +30 -30
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +68 -68
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +106 -106
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +92 -92
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +3 -3
- package/package.json +2 -2
|
@@ -81,14 +81,14 @@ declare const AGIIncParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
81
81
|
start_url: z.ZodOptional<z.ZodString>;
|
|
82
82
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
83
83
|
}, "strip", z.ZodTypeAny, {
|
|
84
|
-
operation: "send_message";
|
|
85
84
|
message: string;
|
|
85
|
+
operation: "send_message";
|
|
86
86
|
session_id: string;
|
|
87
87
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
88
88
|
start_url?: string | undefined;
|
|
89
89
|
}, {
|
|
90
|
-
operation: "send_message";
|
|
91
90
|
message: string;
|
|
91
|
+
operation: "send_message";
|
|
92
92
|
session_id: string;
|
|
93
93
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
94
94
|
start_url?: string | undefined;
|
|
@@ -164,13 +164,13 @@ declare const AGIIncParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
164
164
|
url: z.ZodString;
|
|
165
165
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
166
166
|
}, "strip", z.ZodTypeAny, {
|
|
167
|
-
operation: "navigate";
|
|
168
167
|
url: string;
|
|
168
|
+
operation: "navigate";
|
|
169
169
|
session_id: string;
|
|
170
170
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
171
171
|
}, {
|
|
172
|
-
operation: "navigate";
|
|
173
172
|
url: string;
|
|
173
|
+
operation: "navigate";
|
|
174
174
|
session_id: string;
|
|
175
175
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
176
176
|
}>, z.ZodObject<{
|
|
@@ -197,25 +197,25 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
197
197
|
error: z.ZodString;
|
|
198
198
|
success: z.ZodBoolean;
|
|
199
199
|
}, "strip", z.ZodTypeAny, {
|
|
200
|
+
success: boolean;
|
|
201
|
+
error: string;
|
|
200
202
|
operation: "create_session";
|
|
201
203
|
ok: boolean;
|
|
202
|
-
error: string;
|
|
203
|
-
success: boolean;
|
|
204
204
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
205
205
|
created_at?: string | undefined;
|
|
206
|
+
agent_name?: string | undefined;
|
|
206
207
|
session_id?: string | undefined;
|
|
207
208
|
vnc_url?: string | undefined;
|
|
208
|
-
agent_name?: string | undefined;
|
|
209
209
|
}, {
|
|
210
|
+
success: boolean;
|
|
211
|
+
error: string;
|
|
210
212
|
operation: "create_session";
|
|
211
213
|
ok: boolean;
|
|
212
|
-
error: string;
|
|
213
|
-
success: boolean;
|
|
214
214
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
215
215
|
created_at?: string | undefined;
|
|
216
|
+
agent_name?: string | undefined;
|
|
216
217
|
session_id?: string | undefined;
|
|
217
218
|
vnc_url?: string | undefined;
|
|
218
|
-
agent_name?: string | undefined;
|
|
219
219
|
}>, z.ZodObject<{
|
|
220
220
|
operation: z.ZodLiteral<"list_sessions">;
|
|
221
221
|
ok: z.ZodBoolean;
|
|
@@ -228,40 +228,40 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
|
229
229
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
230
230
|
created_at: string;
|
|
231
|
-
session_id: string;
|
|
232
231
|
agent_name: string;
|
|
232
|
+
session_id: string;
|
|
233
233
|
vnc_url?: string | undefined;
|
|
234
234
|
}, {
|
|
235
235
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
236
236
|
created_at: string;
|
|
237
|
-
session_id: string;
|
|
238
237
|
agent_name: string;
|
|
238
|
+
session_id: string;
|
|
239
239
|
vnc_url?: string | undefined;
|
|
240
240
|
}>, "many">>;
|
|
241
241
|
error: z.ZodString;
|
|
242
242
|
success: z.ZodBoolean;
|
|
243
243
|
}, "strip", z.ZodTypeAny, {
|
|
244
|
+
success: boolean;
|
|
245
|
+
error: string;
|
|
244
246
|
operation: "list_sessions";
|
|
245
247
|
ok: boolean;
|
|
246
|
-
error: string;
|
|
247
|
-
success: boolean;
|
|
248
248
|
sessions?: {
|
|
249
249
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
250
250
|
created_at: string;
|
|
251
|
-
session_id: string;
|
|
252
251
|
agent_name: string;
|
|
252
|
+
session_id: string;
|
|
253
253
|
vnc_url?: string | undefined;
|
|
254
254
|
}[] | undefined;
|
|
255
255
|
}, {
|
|
256
|
+
success: boolean;
|
|
257
|
+
error: string;
|
|
256
258
|
operation: "list_sessions";
|
|
257
259
|
ok: boolean;
|
|
258
|
-
error: string;
|
|
259
|
-
success: boolean;
|
|
260
260
|
sessions?: {
|
|
261
261
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
262
262
|
created_at: string;
|
|
263
|
-
session_id: string;
|
|
264
263
|
agent_name: string;
|
|
264
|
+
session_id: string;
|
|
265
265
|
vnc_url?: string | undefined;
|
|
266
266
|
}[] | undefined;
|
|
267
267
|
}>, z.ZodObject<{
|
|
@@ -276,40 +276,40 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
276
276
|
}, "strip", z.ZodTypeAny, {
|
|
277
277
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
278
278
|
created_at: string;
|
|
279
|
-
session_id: string;
|
|
280
279
|
agent_name: string;
|
|
280
|
+
session_id: string;
|
|
281
281
|
vnc_url?: string | undefined;
|
|
282
282
|
}, {
|
|
283
283
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
284
284
|
created_at: string;
|
|
285
|
-
session_id: string;
|
|
286
285
|
agent_name: string;
|
|
286
|
+
session_id: string;
|
|
287
287
|
vnc_url?: string | undefined;
|
|
288
288
|
}>>;
|
|
289
289
|
error: z.ZodString;
|
|
290
290
|
success: z.ZodBoolean;
|
|
291
291
|
}, "strip", z.ZodTypeAny, {
|
|
292
|
+
success: boolean;
|
|
293
|
+
error: string;
|
|
292
294
|
operation: "get_session";
|
|
293
295
|
ok: boolean;
|
|
294
|
-
error: string;
|
|
295
|
-
success: boolean;
|
|
296
296
|
session?: {
|
|
297
297
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
298
298
|
created_at: string;
|
|
299
|
-
session_id: string;
|
|
300
299
|
agent_name: string;
|
|
300
|
+
session_id: string;
|
|
301
301
|
vnc_url?: string | undefined;
|
|
302
302
|
} | undefined;
|
|
303
303
|
}, {
|
|
304
|
+
success: boolean;
|
|
305
|
+
error: string;
|
|
304
306
|
operation: "get_session";
|
|
305
307
|
ok: boolean;
|
|
306
|
-
error: string;
|
|
307
|
-
success: boolean;
|
|
308
308
|
session?: {
|
|
309
309
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
310
310
|
created_at: string;
|
|
311
|
-
session_id: string;
|
|
312
311
|
agent_name: string;
|
|
312
|
+
session_id: string;
|
|
313
313
|
vnc_url?: string | undefined;
|
|
314
314
|
} | undefined;
|
|
315
315
|
}>, z.ZodObject<{
|
|
@@ -320,17 +320,17 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
320
320
|
error: z.ZodString;
|
|
321
321
|
success: z.ZodBoolean;
|
|
322
322
|
}, "strip", z.ZodTypeAny, {
|
|
323
|
+
success: boolean;
|
|
324
|
+
error: string;
|
|
323
325
|
operation: "delete_session";
|
|
324
326
|
ok: boolean;
|
|
325
|
-
error: string;
|
|
326
|
-
success: boolean;
|
|
327
327
|
message?: string | undefined;
|
|
328
328
|
deleted?: boolean | undefined;
|
|
329
329
|
}, {
|
|
330
|
+
success: boolean;
|
|
331
|
+
error: string;
|
|
330
332
|
operation: "delete_session";
|
|
331
333
|
ok: boolean;
|
|
332
|
-
error: string;
|
|
333
|
-
success: boolean;
|
|
334
334
|
message?: string | undefined;
|
|
335
335
|
deleted?: boolean | undefined;
|
|
336
336
|
}>, z.ZodObject<{
|
|
@@ -341,17 +341,17 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
341
341
|
error: z.ZodString;
|
|
342
342
|
success: z.ZodBoolean;
|
|
343
343
|
}, "strip", z.ZodTypeAny, {
|
|
344
|
+
success: boolean;
|
|
345
|
+
error: string;
|
|
344
346
|
operation: "delete_all_sessions";
|
|
345
347
|
ok: boolean;
|
|
346
|
-
error: string;
|
|
347
|
-
success: boolean;
|
|
348
348
|
message?: string | undefined;
|
|
349
349
|
deleted?: boolean | undefined;
|
|
350
350
|
}, {
|
|
351
|
+
success: boolean;
|
|
352
|
+
error: string;
|
|
351
353
|
operation: "delete_all_sessions";
|
|
352
354
|
ok: boolean;
|
|
353
|
-
error: string;
|
|
354
|
-
success: boolean;
|
|
355
355
|
message?: string | undefined;
|
|
356
356
|
deleted?: boolean | undefined;
|
|
357
357
|
}>, z.ZodObject<{
|
|
@@ -361,16 +361,16 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
361
361
|
error: z.ZodString;
|
|
362
362
|
success: z.ZodBoolean;
|
|
363
363
|
}, "strip", z.ZodTypeAny, {
|
|
364
|
+
success: boolean;
|
|
365
|
+
error: string;
|
|
364
366
|
operation: "send_message";
|
|
365
367
|
ok: boolean;
|
|
366
|
-
error: string;
|
|
367
|
-
success: boolean;
|
|
368
368
|
message?: string | undefined;
|
|
369
369
|
}, {
|
|
370
|
+
success: boolean;
|
|
371
|
+
error: string;
|
|
370
372
|
operation: "send_message";
|
|
371
373
|
ok: boolean;
|
|
372
|
-
error: string;
|
|
373
|
-
success: boolean;
|
|
374
374
|
message?: string | undefined;
|
|
375
375
|
}>, z.ZodObject<{
|
|
376
376
|
operation: z.ZodLiteral<"get_status">;
|
|
@@ -379,16 +379,16 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
379
379
|
error: z.ZodString;
|
|
380
380
|
success: z.ZodBoolean;
|
|
381
381
|
}, "strip", z.ZodTypeAny, {
|
|
382
|
+
success: boolean;
|
|
383
|
+
error: string;
|
|
382
384
|
operation: "get_status";
|
|
383
385
|
ok: boolean;
|
|
384
|
-
error: string;
|
|
385
|
-
success: boolean;
|
|
386
386
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
387
387
|
}, {
|
|
388
|
+
success: boolean;
|
|
389
|
+
error: string;
|
|
388
390
|
operation: "get_status";
|
|
389
391
|
ok: boolean;
|
|
390
|
-
error: string;
|
|
391
|
-
success: boolean;
|
|
392
392
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
393
393
|
}>, z.ZodObject<{
|
|
394
394
|
operation: z.ZodLiteral<"get_messages">;
|
|
@@ -400,13 +400,13 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
400
400
|
timestamp: z.ZodString;
|
|
401
401
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
402
402
|
}, "strip", z.ZodTypeAny, {
|
|
403
|
-
type: "
|
|
403
|
+
type: "THOUGHT" | "QUESTION" | "USER" | "DONE" | "ERROR" | "LOG";
|
|
404
404
|
content: string | Record<string, unknown>;
|
|
405
405
|
timestamp: string;
|
|
406
406
|
id: number;
|
|
407
407
|
metadata?: Record<string, unknown> | undefined;
|
|
408
408
|
}, {
|
|
409
|
-
type: "
|
|
409
|
+
type: "THOUGHT" | "QUESTION" | "USER" | "DONE" | "ERROR" | "LOG";
|
|
410
410
|
content: string | Record<string, unknown>;
|
|
411
411
|
timestamp: string;
|
|
412
412
|
id: number;
|
|
@@ -417,13 +417,13 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
417
417
|
error: z.ZodString;
|
|
418
418
|
success: z.ZodBoolean;
|
|
419
419
|
}, "strip", z.ZodTypeAny, {
|
|
420
|
+
success: boolean;
|
|
421
|
+
error: string;
|
|
420
422
|
operation: "get_messages";
|
|
421
423
|
ok: boolean;
|
|
422
|
-
error: string;
|
|
423
|
-
success: boolean;
|
|
424
424
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
425
425
|
messages?: {
|
|
426
|
-
type: "
|
|
426
|
+
type: "THOUGHT" | "QUESTION" | "USER" | "DONE" | "ERROR" | "LOG";
|
|
427
427
|
content: string | Record<string, unknown>;
|
|
428
428
|
timestamp: string;
|
|
429
429
|
id: number;
|
|
@@ -431,13 +431,13 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
431
431
|
}[] | undefined;
|
|
432
432
|
has_agent?: boolean | undefined;
|
|
433
433
|
}, {
|
|
434
|
+
success: boolean;
|
|
435
|
+
error: string;
|
|
434
436
|
operation: "get_messages";
|
|
435
437
|
ok: boolean;
|
|
436
|
-
error: string;
|
|
437
|
-
success: boolean;
|
|
438
438
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
439
439
|
messages?: {
|
|
440
|
-
type: "
|
|
440
|
+
type: "THOUGHT" | "QUESTION" | "USER" | "DONE" | "ERROR" | "LOG";
|
|
441
441
|
content: string | Record<string, unknown>;
|
|
442
442
|
timestamp: string;
|
|
443
443
|
id: number;
|
|
@@ -451,16 +451,16 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
451
451
|
error: z.ZodString;
|
|
452
452
|
success: z.ZodBoolean;
|
|
453
453
|
}, "strip", z.ZodTypeAny, {
|
|
454
|
+
success: boolean;
|
|
455
|
+
error: string;
|
|
454
456
|
operation: "pause_session";
|
|
455
457
|
ok: boolean;
|
|
456
|
-
error: string;
|
|
457
|
-
success: boolean;
|
|
458
458
|
message?: string | undefined;
|
|
459
459
|
}, {
|
|
460
|
+
success: boolean;
|
|
461
|
+
error: string;
|
|
460
462
|
operation: "pause_session";
|
|
461
463
|
ok: boolean;
|
|
462
|
-
error: string;
|
|
463
|
-
success: boolean;
|
|
464
464
|
message?: string | undefined;
|
|
465
465
|
}>, z.ZodObject<{
|
|
466
466
|
operation: z.ZodLiteral<"resume_session">;
|
|
@@ -469,16 +469,16 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
469
469
|
error: z.ZodString;
|
|
470
470
|
success: z.ZodBoolean;
|
|
471
471
|
}, "strip", z.ZodTypeAny, {
|
|
472
|
+
success: boolean;
|
|
473
|
+
error: string;
|
|
472
474
|
operation: "resume_session";
|
|
473
475
|
ok: boolean;
|
|
474
|
-
error: string;
|
|
475
|
-
success: boolean;
|
|
476
476
|
message?: string | undefined;
|
|
477
477
|
}, {
|
|
478
|
+
success: boolean;
|
|
479
|
+
error: string;
|
|
478
480
|
operation: "resume_session";
|
|
479
481
|
ok: boolean;
|
|
480
|
-
error: string;
|
|
481
|
-
success: boolean;
|
|
482
482
|
message?: string | undefined;
|
|
483
483
|
}>, z.ZodObject<{
|
|
484
484
|
operation: z.ZodLiteral<"cancel_session">;
|
|
@@ -487,16 +487,16 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
487
487
|
error: z.ZodString;
|
|
488
488
|
success: z.ZodBoolean;
|
|
489
489
|
}, "strip", z.ZodTypeAny, {
|
|
490
|
+
success: boolean;
|
|
491
|
+
error: string;
|
|
490
492
|
operation: "cancel_session";
|
|
491
493
|
ok: boolean;
|
|
492
|
-
error: string;
|
|
493
|
-
success: boolean;
|
|
494
494
|
message?: string | undefined;
|
|
495
495
|
}, {
|
|
496
|
+
success: boolean;
|
|
497
|
+
error: string;
|
|
496
498
|
operation: "cancel_session";
|
|
497
499
|
ok: boolean;
|
|
498
|
-
error: string;
|
|
499
|
-
success: boolean;
|
|
500
500
|
message?: string | undefined;
|
|
501
501
|
}>, z.ZodObject<{
|
|
502
502
|
operation: z.ZodLiteral<"navigate">;
|
|
@@ -505,16 +505,16 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
505
505
|
error: z.ZodString;
|
|
506
506
|
success: z.ZodBoolean;
|
|
507
507
|
}, "strip", z.ZodTypeAny, {
|
|
508
|
+
success: boolean;
|
|
509
|
+
error: string;
|
|
508
510
|
operation: "navigate";
|
|
509
511
|
ok: boolean;
|
|
510
|
-
error: string;
|
|
511
|
-
success: boolean;
|
|
512
512
|
current_url?: string | undefined;
|
|
513
513
|
}, {
|
|
514
|
+
success: boolean;
|
|
515
|
+
error: string;
|
|
514
516
|
operation: "navigate";
|
|
515
517
|
ok: boolean;
|
|
516
|
-
error: string;
|
|
517
|
-
success: boolean;
|
|
518
518
|
current_url?: string | undefined;
|
|
519
519
|
}>, z.ZodObject<{
|
|
520
520
|
operation: z.ZodLiteral<"get_screenshot">;
|
|
@@ -525,18 +525,18 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
525
525
|
error: z.ZodString;
|
|
526
526
|
success: z.ZodBoolean;
|
|
527
527
|
}, "strip", z.ZodTypeAny, {
|
|
528
|
+
success: boolean;
|
|
529
|
+
error: string;
|
|
528
530
|
operation: "get_screenshot";
|
|
529
531
|
ok: boolean;
|
|
530
|
-
error: string;
|
|
531
|
-
success: boolean;
|
|
532
532
|
title?: string | undefined;
|
|
533
533
|
url?: string | undefined;
|
|
534
534
|
screenshot?: string | undefined;
|
|
535
535
|
}, {
|
|
536
|
+
success: boolean;
|
|
537
|
+
error: string;
|
|
536
538
|
operation: "get_screenshot";
|
|
537
539
|
ok: boolean;
|
|
538
|
-
error: string;
|
|
539
|
-
success: boolean;
|
|
540
540
|
title?: string | undefined;
|
|
541
541
|
url?: string | undefined;
|
|
542
542
|
screenshot?: string | undefined;
|
|
@@ -634,14 +634,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
634
634
|
start_url: z.ZodOptional<z.ZodString>;
|
|
635
635
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
636
636
|
}, "strip", z.ZodTypeAny, {
|
|
637
|
-
operation: "send_message";
|
|
638
637
|
message: string;
|
|
638
|
+
operation: "send_message";
|
|
639
639
|
session_id: string;
|
|
640
640
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
641
641
|
start_url?: string | undefined;
|
|
642
642
|
}, {
|
|
643
|
-
operation: "send_message";
|
|
644
643
|
message: string;
|
|
644
|
+
operation: "send_message";
|
|
645
645
|
session_id: string;
|
|
646
646
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
647
647
|
start_url?: string | undefined;
|
|
@@ -717,13 +717,13 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
717
717
|
url: z.ZodString;
|
|
718
718
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
719
719
|
}, "strip", z.ZodTypeAny, {
|
|
720
|
-
operation: "navigate";
|
|
721
720
|
url: string;
|
|
721
|
+
operation: "navigate";
|
|
722
722
|
session_id: string;
|
|
723
723
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
724
724
|
}, {
|
|
725
|
-
operation: "navigate";
|
|
726
725
|
url: string;
|
|
726
|
+
operation: "navigate";
|
|
727
727
|
session_id: string;
|
|
728
728
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
729
729
|
}>, z.ZodObject<{
|
|
@@ -750,25 +750,25 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
750
750
|
error: z.ZodString;
|
|
751
751
|
success: z.ZodBoolean;
|
|
752
752
|
}, "strip", z.ZodTypeAny, {
|
|
753
|
+
success: boolean;
|
|
754
|
+
error: string;
|
|
753
755
|
operation: "create_session";
|
|
754
756
|
ok: boolean;
|
|
755
|
-
error: string;
|
|
756
|
-
success: boolean;
|
|
757
757
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
758
758
|
created_at?: string | undefined;
|
|
759
|
+
agent_name?: string | undefined;
|
|
759
760
|
session_id?: string | undefined;
|
|
760
761
|
vnc_url?: string | undefined;
|
|
761
|
-
agent_name?: string | undefined;
|
|
762
762
|
}, {
|
|
763
|
+
success: boolean;
|
|
764
|
+
error: string;
|
|
763
765
|
operation: "create_session";
|
|
764
766
|
ok: boolean;
|
|
765
|
-
error: string;
|
|
766
|
-
success: boolean;
|
|
767
767
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
768
768
|
created_at?: string | undefined;
|
|
769
|
+
agent_name?: string | undefined;
|
|
769
770
|
session_id?: string | undefined;
|
|
770
771
|
vnc_url?: string | undefined;
|
|
771
|
-
agent_name?: string | undefined;
|
|
772
772
|
}>, z.ZodObject<{
|
|
773
773
|
operation: z.ZodLiteral<"list_sessions">;
|
|
774
774
|
ok: z.ZodBoolean;
|
|
@@ -781,40 +781,40 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
781
781
|
}, "strip", z.ZodTypeAny, {
|
|
782
782
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
783
783
|
created_at: string;
|
|
784
|
-
session_id: string;
|
|
785
784
|
agent_name: string;
|
|
785
|
+
session_id: string;
|
|
786
786
|
vnc_url?: string | undefined;
|
|
787
787
|
}, {
|
|
788
788
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
789
789
|
created_at: string;
|
|
790
|
-
session_id: string;
|
|
791
790
|
agent_name: string;
|
|
791
|
+
session_id: string;
|
|
792
792
|
vnc_url?: string | undefined;
|
|
793
793
|
}>, "many">>;
|
|
794
794
|
error: z.ZodString;
|
|
795
795
|
success: z.ZodBoolean;
|
|
796
796
|
}, "strip", z.ZodTypeAny, {
|
|
797
|
+
success: boolean;
|
|
798
|
+
error: string;
|
|
797
799
|
operation: "list_sessions";
|
|
798
800
|
ok: boolean;
|
|
799
|
-
error: string;
|
|
800
|
-
success: boolean;
|
|
801
801
|
sessions?: {
|
|
802
802
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
803
803
|
created_at: string;
|
|
804
|
-
session_id: string;
|
|
805
804
|
agent_name: string;
|
|
805
|
+
session_id: string;
|
|
806
806
|
vnc_url?: string | undefined;
|
|
807
807
|
}[] | undefined;
|
|
808
808
|
}, {
|
|
809
|
+
success: boolean;
|
|
810
|
+
error: string;
|
|
809
811
|
operation: "list_sessions";
|
|
810
812
|
ok: boolean;
|
|
811
|
-
error: string;
|
|
812
|
-
success: boolean;
|
|
813
813
|
sessions?: {
|
|
814
814
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
815
815
|
created_at: string;
|
|
816
|
-
session_id: string;
|
|
817
816
|
agent_name: string;
|
|
817
|
+
session_id: string;
|
|
818
818
|
vnc_url?: string | undefined;
|
|
819
819
|
}[] | undefined;
|
|
820
820
|
}>, z.ZodObject<{
|
|
@@ -829,40 +829,40 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
829
829
|
}, "strip", z.ZodTypeAny, {
|
|
830
830
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
831
831
|
created_at: string;
|
|
832
|
-
session_id: string;
|
|
833
832
|
agent_name: string;
|
|
833
|
+
session_id: string;
|
|
834
834
|
vnc_url?: string | undefined;
|
|
835
835
|
}, {
|
|
836
836
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
837
837
|
created_at: string;
|
|
838
|
-
session_id: string;
|
|
839
838
|
agent_name: string;
|
|
839
|
+
session_id: string;
|
|
840
840
|
vnc_url?: string | undefined;
|
|
841
841
|
}>>;
|
|
842
842
|
error: z.ZodString;
|
|
843
843
|
success: z.ZodBoolean;
|
|
844
844
|
}, "strip", z.ZodTypeAny, {
|
|
845
|
+
success: boolean;
|
|
846
|
+
error: string;
|
|
845
847
|
operation: "get_session";
|
|
846
848
|
ok: boolean;
|
|
847
|
-
error: string;
|
|
848
|
-
success: boolean;
|
|
849
849
|
session?: {
|
|
850
850
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
851
851
|
created_at: string;
|
|
852
|
-
session_id: string;
|
|
853
852
|
agent_name: string;
|
|
853
|
+
session_id: string;
|
|
854
854
|
vnc_url?: string | undefined;
|
|
855
855
|
} | undefined;
|
|
856
856
|
}, {
|
|
857
|
+
success: boolean;
|
|
858
|
+
error: string;
|
|
857
859
|
operation: "get_session";
|
|
858
860
|
ok: boolean;
|
|
859
|
-
error: string;
|
|
860
|
-
success: boolean;
|
|
861
861
|
session?: {
|
|
862
862
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
863
863
|
created_at: string;
|
|
864
|
-
session_id: string;
|
|
865
864
|
agent_name: string;
|
|
865
|
+
session_id: string;
|
|
866
866
|
vnc_url?: string | undefined;
|
|
867
867
|
} | undefined;
|
|
868
868
|
}>, z.ZodObject<{
|
|
@@ -873,17 +873,17 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
873
873
|
error: z.ZodString;
|
|
874
874
|
success: z.ZodBoolean;
|
|
875
875
|
}, "strip", z.ZodTypeAny, {
|
|
876
|
+
success: boolean;
|
|
877
|
+
error: string;
|
|
876
878
|
operation: "delete_session";
|
|
877
879
|
ok: boolean;
|
|
878
|
-
error: string;
|
|
879
|
-
success: boolean;
|
|
880
880
|
message?: string | undefined;
|
|
881
881
|
deleted?: boolean | undefined;
|
|
882
882
|
}, {
|
|
883
|
+
success: boolean;
|
|
884
|
+
error: string;
|
|
883
885
|
operation: "delete_session";
|
|
884
886
|
ok: boolean;
|
|
885
|
-
error: string;
|
|
886
|
-
success: boolean;
|
|
887
887
|
message?: string | undefined;
|
|
888
888
|
deleted?: boolean | undefined;
|
|
889
889
|
}>, z.ZodObject<{
|
|
@@ -894,17 +894,17 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
894
894
|
error: z.ZodString;
|
|
895
895
|
success: z.ZodBoolean;
|
|
896
896
|
}, "strip", z.ZodTypeAny, {
|
|
897
|
+
success: boolean;
|
|
898
|
+
error: string;
|
|
897
899
|
operation: "delete_all_sessions";
|
|
898
900
|
ok: boolean;
|
|
899
|
-
error: string;
|
|
900
|
-
success: boolean;
|
|
901
901
|
message?: string | undefined;
|
|
902
902
|
deleted?: boolean | undefined;
|
|
903
903
|
}, {
|
|
904
|
+
success: boolean;
|
|
905
|
+
error: string;
|
|
904
906
|
operation: "delete_all_sessions";
|
|
905
907
|
ok: boolean;
|
|
906
|
-
error: string;
|
|
907
|
-
success: boolean;
|
|
908
908
|
message?: string | undefined;
|
|
909
909
|
deleted?: boolean | undefined;
|
|
910
910
|
}>, z.ZodObject<{
|
|
@@ -914,16 +914,16 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
914
914
|
error: z.ZodString;
|
|
915
915
|
success: z.ZodBoolean;
|
|
916
916
|
}, "strip", z.ZodTypeAny, {
|
|
917
|
+
success: boolean;
|
|
918
|
+
error: string;
|
|
917
919
|
operation: "send_message";
|
|
918
920
|
ok: boolean;
|
|
919
|
-
error: string;
|
|
920
|
-
success: boolean;
|
|
921
921
|
message?: string | undefined;
|
|
922
922
|
}, {
|
|
923
|
+
success: boolean;
|
|
924
|
+
error: string;
|
|
923
925
|
operation: "send_message";
|
|
924
926
|
ok: boolean;
|
|
925
|
-
error: string;
|
|
926
|
-
success: boolean;
|
|
927
927
|
message?: string | undefined;
|
|
928
928
|
}>, z.ZodObject<{
|
|
929
929
|
operation: z.ZodLiteral<"get_status">;
|
|
@@ -932,16 +932,16 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
932
932
|
error: z.ZodString;
|
|
933
933
|
success: z.ZodBoolean;
|
|
934
934
|
}, "strip", z.ZodTypeAny, {
|
|
935
|
+
success: boolean;
|
|
936
|
+
error: string;
|
|
935
937
|
operation: "get_status";
|
|
936
938
|
ok: boolean;
|
|
937
|
-
error: string;
|
|
938
|
-
success: boolean;
|
|
939
939
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
940
940
|
}, {
|
|
941
|
+
success: boolean;
|
|
942
|
+
error: string;
|
|
941
943
|
operation: "get_status";
|
|
942
944
|
ok: boolean;
|
|
943
|
-
error: string;
|
|
944
|
-
success: boolean;
|
|
945
945
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
946
946
|
}>, z.ZodObject<{
|
|
947
947
|
operation: z.ZodLiteral<"get_messages">;
|
|
@@ -953,13 +953,13 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
953
953
|
timestamp: z.ZodString;
|
|
954
954
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
955
955
|
}, "strip", z.ZodTypeAny, {
|
|
956
|
-
type: "
|
|
956
|
+
type: "THOUGHT" | "QUESTION" | "USER" | "DONE" | "ERROR" | "LOG";
|
|
957
957
|
content: string | Record<string, unknown>;
|
|
958
958
|
timestamp: string;
|
|
959
959
|
id: number;
|
|
960
960
|
metadata?: Record<string, unknown> | undefined;
|
|
961
961
|
}, {
|
|
962
|
-
type: "
|
|
962
|
+
type: "THOUGHT" | "QUESTION" | "USER" | "DONE" | "ERROR" | "LOG";
|
|
963
963
|
content: string | Record<string, unknown>;
|
|
964
964
|
timestamp: string;
|
|
965
965
|
id: number;
|
|
@@ -970,13 +970,13 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
970
970
|
error: z.ZodString;
|
|
971
971
|
success: z.ZodBoolean;
|
|
972
972
|
}, "strip", z.ZodTypeAny, {
|
|
973
|
+
success: boolean;
|
|
974
|
+
error: string;
|
|
973
975
|
operation: "get_messages";
|
|
974
976
|
ok: boolean;
|
|
975
|
-
error: string;
|
|
976
|
-
success: boolean;
|
|
977
977
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
978
978
|
messages?: {
|
|
979
|
-
type: "
|
|
979
|
+
type: "THOUGHT" | "QUESTION" | "USER" | "DONE" | "ERROR" | "LOG";
|
|
980
980
|
content: string | Record<string, unknown>;
|
|
981
981
|
timestamp: string;
|
|
982
982
|
id: number;
|
|
@@ -984,13 +984,13 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
984
984
|
}[] | undefined;
|
|
985
985
|
has_agent?: boolean | undefined;
|
|
986
986
|
}, {
|
|
987
|
+
success: boolean;
|
|
988
|
+
error: string;
|
|
987
989
|
operation: "get_messages";
|
|
988
990
|
ok: boolean;
|
|
989
|
-
error: string;
|
|
990
|
-
success: boolean;
|
|
991
991
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
992
992
|
messages?: {
|
|
993
|
-
type: "
|
|
993
|
+
type: "THOUGHT" | "QUESTION" | "USER" | "DONE" | "ERROR" | "LOG";
|
|
994
994
|
content: string | Record<string, unknown>;
|
|
995
995
|
timestamp: string;
|
|
996
996
|
id: number;
|
|
@@ -1004,16 +1004,16 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
1004
1004
|
error: z.ZodString;
|
|
1005
1005
|
success: z.ZodBoolean;
|
|
1006
1006
|
}, "strip", z.ZodTypeAny, {
|
|
1007
|
+
success: boolean;
|
|
1008
|
+
error: string;
|
|
1007
1009
|
operation: "pause_session";
|
|
1008
1010
|
ok: boolean;
|
|
1009
|
-
error: string;
|
|
1010
|
-
success: boolean;
|
|
1011
1011
|
message?: string | undefined;
|
|
1012
1012
|
}, {
|
|
1013
|
+
success: boolean;
|
|
1014
|
+
error: string;
|
|
1013
1015
|
operation: "pause_session";
|
|
1014
1016
|
ok: boolean;
|
|
1015
|
-
error: string;
|
|
1016
|
-
success: boolean;
|
|
1017
1017
|
message?: string | undefined;
|
|
1018
1018
|
}>, z.ZodObject<{
|
|
1019
1019
|
operation: z.ZodLiteral<"resume_session">;
|
|
@@ -1022,16 +1022,16 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
1022
1022
|
error: z.ZodString;
|
|
1023
1023
|
success: z.ZodBoolean;
|
|
1024
1024
|
}, "strip", z.ZodTypeAny, {
|
|
1025
|
+
success: boolean;
|
|
1026
|
+
error: string;
|
|
1025
1027
|
operation: "resume_session";
|
|
1026
1028
|
ok: boolean;
|
|
1027
|
-
error: string;
|
|
1028
|
-
success: boolean;
|
|
1029
1029
|
message?: string | undefined;
|
|
1030
1030
|
}, {
|
|
1031
|
+
success: boolean;
|
|
1032
|
+
error: string;
|
|
1031
1033
|
operation: "resume_session";
|
|
1032
1034
|
ok: boolean;
|
|
1033
|
-
error: string;
|
|
1034
|
-
success: boolean;
|
|
1035
1035
|
message?: string | undefined;
|
|
1036
1036
|
}>, z.ZodObject<{
|
|
1037
1037
|
operation: z.ZodLiteral<"cancel_session">;
|
|
@@ -1040,16 +1040,16 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
1040
1040
|
error: z.ZodString;
|
|
1041
1041
|
success: z.ZodBoolean;
|
|
1042
1042
|
}, "strip", z.ZodTypeAny, {
|
|
1043
|
+
success: boolean;
|
|
1044
|
+
error: string;
|
|
1043
1045
|
operation: "cancel_session";
|
|
1044
1046
|
ok: boolean;
|
|
1045
|
-
error: string;
|
|
1046
|
-
success: boolean;
|
|
1047
1047
|
message?: string | undefined;
|
|
1048
1048
|
}, {
|
|
1049
|
+
success: boolean;
|
|
1050
|
+
error: string;
|
|
1049
1051
|
operation: "cancel_session";
|
|
1050
1052
|
ok: boolean;
|
|
1051
|
-
error: string;
|
|
1052
|
-
success: boolean;
|
|
1053
1053
|
message?: string | undefined;
|
|
1054
1054
|
}>, z.ZodObject<{
|
|
1055
1055
|
operation: z.ZodLiteral<"navigate">;
|
|
@@ -1058,16 +1058,16 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
1058
1058
|
error: z.ZodString;
|
|
1059
1059
|
success: z.ZodBoolean;
|
|
1060
1060
|
}, "strip", z.ZodTypeAny, {
|
|
1061
|
+
success: boolean;
|
|
1062
|
+
error: string;
|
|
1061
1063
|
operation: "navigate";
|
|
1062
1064
|
ok: boolean;
|
|
1063
|
-
error: string;
|
|
1064
|
-
success: boolean;
|
|
1065
1065
|
current_url?: string | undefined;
|
|
1066
1066
|
}, {
|
|
1067
|
+
success: boolean;
|
|
1068
|
+
error: string;
|
|
1067
1069
|
operation: "navigate";
|
|
1068
1070
|
ok: boolean;
|
|
1069
|
-
error: string;
|
|
1070
|
-
success: boolean;
|
|
1071
1071
|
current_url?: string | undefined;
|
|
1072
1072
|
}>, z.ZodObject<{
|
|
1073
1073
|
operation: z.ZodLiteral<"get_screenshot">;
|
|
@@ -1078,18 +1078,18 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
1078
1078
|
error: z.ZodString;
|
|
1079
1079
|
success: z.ZodBoolean;
|
|
1080
1080
|
}, "strip", z.ZodTypeAny, {
|
|
1081
|
+
success: boolean;
|
|
1082
|
+
error: string;
|
|
1081
1083
|
operation: "get_screenshot";
|
|
1082
1084
|
ok: boolean;
|
|
1083
|
-
error: string;
|
|
1084
|
-
success: boolean;
|
|
1085
1085
|
title?: string | undefined;
|
|
1086
1086
|
url?: string | undefined;
|
|
1087
1087
|
screenshot?: string | undefined;
|
|
1088
1088
|
}, {
|
|
1089
|
+
success: boolean;
|
|
1090
|
+
error: string;
|
|
1089
1091
|
operation: "get_screenshot";
|
|
1090
1092
|
ok: boolean;
|
|
1091
|
-
error: string;
|
|
1092
|
-
success: boolean;
|
|
1093
1093
|
title?: string | undefined;
|
|
1094
1094
|
url?: string | undefined;
|
|
1095
1095
|
screenshot?: string | undefined;
|