@muggleai/mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/README.md +160 -0
  2. package/bin/muggle-mcp.js +2 -0
  3. package/dist/chunk-6DQWAMGJ.js +7626 -0
  4. package/dist/chunk-6DQWAMGJ.js.map +1 -0
  5. package/dist/cli/doctor.d.ts +8 -0
  6. package/dist/cli/doctor.d.ts.map +1 -0
  7. package/dist/cli/index.d.ts +9 -0
  8. package/dist/cli/index.d.ts.map +1 -0
  9. package/dist/cli/login.d.ts +26 -0
  10. package/dist/cli/login.d.ts.map +1 -0
  11. package/dist/cli/main.d.ts +6 -0
  12. package/dist/cli/main.d.ts.map +1 -0
  13. package/dist/cli/serve.d.ts +20 -0
  14. package/dist/cli/serve.d.ts.map +1 -0
  15. package/dist/cli/setup.d.ts +16 -0
  16. package/dist/cli/setup.d.ts.map +1 -0
  17. package/dist/cli.js +305 -0
  18. package/dist/cli.js.map +1 -0
  19. package/dist/index.d.ts +35 -0
  20. package/dist/index.d.ts.map +1 -0
  21. package/dist/index.js +36 -0
  22. package/dist/index.js.map +1 -0
  23. package/dist/local-qa/contracts/auth-schemas.d.ts +35 -0
  24. package/dist/local-qa/contracts/auth-schemas.d.ts.map +1 -0
  25. package/dist/local-qa/contracts/index.d.ts +7 -0
  26. package/dist/local-qa/contracts/index.d.ts.map +1 -0
  27. package/dist/local-qa/contracts/project-schemas.d.ts +1141 -0
  28. package/dist/local-qa/contracts/project-schemas.d.ts.map +1 -0
  29. package/dist/local-qa/contracts/session-schemas.d.ts +27 -0
  30. package/dist/local-qa/contracts/session-schemas.d.ts.map +1 -0
  31. package/dist/local-qa/index.d.ts +27 -0
  32. package/dist/local-qa/index.d.ts.map +1 -0
  33. package/dist/local-qa/services/auth-service.d.ts +79 -0
  34. package/dist/local-qa/services/auth-service.d.ts.map +1 -0
  35. package/dist/local-qa/services/execution-service.d.ts +55 -0
  36. package/dist/local-qa/services/execution-service.d.ts.map +1 -0
  37. package/dist/local-qa/services/index.d.ts +8 -0
  38. package/dist/local-qa/services/index.d.ts.map +1 -0
  39. package/dist/local-qa/services/project-storage-service.d.ts +262 -0
  40. package/dist/local-qa/services/project-storage-service.d.ts.map +1 -0
  41. package/dist/local-qa/services/storage-service.d.ts +166 -0
  42. package/dist/local-qa/services/storage-service.d.ts.map +1 -0
  43. package/dist/local-qa/tools/index.d.ts +5 -0
  44. package/dist/local-qa/tools/index.d.ts.map +1 -0
  45. package/dist/local-qa/tools/tool-registry.d.ts +18 -0
  46. package/dist/local-qa/tools/tool-registry.d.ts.map +1 -0
  47. package/dist/local-qa/types/auth-types.d.ts +97 -0
  48. package/dist/local-qa/types/auth-types.d.ts.map +1 -0
  49. package/dist/local-qa/types/config-types.d.ts +28 -0
  50. package/dist/local-qa/types/config-types.d.ts.map +1 -0
  51. package/dist/local-qa/types/enums.d.ts +141 -0
  52. package/dist/local-qa/types/enums.d.ts.map +1 -0
  53. package/dist/local-qa/types/index.d.ts +10 -0
  54. package/dist/local-qa/types/index.d.ts.map +1 -0
  55. package/dist/local-qa/types/project-types.d.ts +339 -0
  56. package/dist/local-qa/types/project-types.d.ts.map +1 -0
  57. package/dist/local-qa/types/storage-params.d.ts +544 -0
  58. package/dist/local-qa/types/storage-params.d.ts.map +1 -0
  59. package/dist/local-qa/types/tool-types.d.ts +38 -0
  60. package/dist/local-qa/types/tool-types.d.ts.map +1 -0
  61. package/dist/qa/contracts/index.d.ts +716 -0
  62. package/dist/qa/contracts/index.d.ts.map +1 -0
  63. package/dist/qa/index.d.ts +15 -0
  64. package/dist/qa/index.d.ts.map +1 -0
  65. package/dist/qa/tools/index.d.ts +5 -0
  66. package/dist/qa/tools/index.d.ts.map +1 -0
  67. package/dist/qa/tools/tool-registry.d.ts +22 -0
  68. package/dist/qa/tools/tool-registry.d.ts.map +1 -0
  69. package/dist/qa/types.d.ts +101 -0
  70. package/dist/qa/types.d.ts.map +1 -0
  71. package/dist/qa/upstream-client.d.ts +60 -0
  72. package/dist/qa/upstream-client.d.ts.map +1 -0
  73. package/dist/server/index.d.ts +6 -0
  74. package/dist/server/index.d.ts.map +1 -0
  75. package/dist/server/mcp-server.d.ts +34 -0
  76. package/dist/server/mcp-server.d.ts.map +1 -0
  77. package/dist/server/stdio-server.d.ts +11 -0
  78. package/dist/server/stdio-server.d.ts.map +1 -0
  79. package/dist/shared/auth.d.ts +75 -0
  80. package/dist/shared/auth.d.ts.map +1 -0
  81. package/dist/shared/config.d.ts +41 -0
  82. package/dist/shared/config.d.ts.map +1 -0
  83. package/dist/shared/credentials.d.ts +48 -0
  84. package/dist/shared/credentials.d.ts.map +1 -0
  85. package/dist/shared/index.d.ts +10 -0
  86. package/dist/shared/index.d.ts.map +1 -0
  87. package/dist/shared/logger.d.ts +21 -0
  88. package/dist/shared/logger.d.ts.map +1 -0
  89. package/dist/shared/open-browser.d.ts +27 -0
  90. package/dist/shared/open-browser.d.ts.map +1 -0
  91. package/dist/shared/types.d.ts +178 -0
  92. package/dist/shared/types.d.ts.map +1 -0
  93. package/package.json +75 -0
  94. package/scripts/postinstall.mjs +153 -0
@@ -0,0 +1,1141 @@
1
+ /**
2
+ * Zod schemas for project-related tools.
3
+ */
4
+ import { z } from "zod";
5
+ /**
6
+ * Project create input schema.
7
+ */
8
+ export declare const ProjectCreateInputSchema: z.ZodObject<{
9
+ name: z.ZodString;
10
+ description: z.ZodString;
11
+ url: z.ZodString;
12
+ }, "strip", z.ZodTypeAny, {
13
+ description: string;
14
+ url: string;
15
+ name: string;
16
+ }, {
17
+ description: string;
18
+ url: string;
19
+ name: string;
20
+ }>;
21
+ export type ProjectCreateInput = z.infer<typeof ProjectCreateInputSchema>;
22
+ /**
23
+ * Project ID input schema.
24
+ */
25
+ export declare const ProjectIdInputSchema: z.ZodObject<{
26
+ projectId: z.ZodString;
27
+ }, "strip", z.ZodTypeAny, {
28
+ projectId: string;
29
+ }, {
30
+ projectId: string;
31
+ }>;
32
+ export type ProjectIdInput = z.infer<typeof ProjectIdInputSchema>;
33
+ /**
34
+ * Project update input schema.
35
+ */
36
+ export declare const ProjectUpdateInputSchema: z.ZodObject<{
37
+ projectId: z.ZodString;
38
+ name: z.ZodOptional<z.ZodString>;
39
+ description: z.ZodOptional<z.ZodString>;
40
+ url: z.ZodOptional<z.ZodString>;
41
+ }, "strip", z.ZodTypeAny, {
42
+ projectId: string;
43
+ description?: string | undefined;
44
+ url?: string | undefined;
45
+ name?: string | undefined;
46
+ }, {
47
+ projectId: string;
48
+ description?: string | undefined;
49
+ url?: string | undefined;
50
+ name?: string | undefined;
51
+ }>;
52
+ export type ProjectUpdateInput = z.infer<typeof ProjectUpdateInputSchema>;
53
+ /**
54
+ * Use case save input schema.
55
+ */
56
+ export declare const UseCaseSaveInputSchema: z.ZodObject<{
57
+ projectId: z.ZodString;
58
+ useCase: z.ZodObject<{
59
+ title: z.ZodString;
60
+ userStory: z.ZodOptional<z.ZodString>;
61
+ description: z.ZodOptional<z.ZodString>;
62
+ breakdownItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
63
+ title: z.ZodString;
64
+ description: z.ZodString;
65
+ }, "strip", z.ZodTypeAny, {
66
+ description: string;
67
+ title: string;
68
+ }, {
69
+ description: string;
70
+ title: string;
71
+ }>, "many">>;
72
+ }, "strip", z.ZodTypeAny, {
73
+ title: string;
74
+ description?: string | undefined;
75
+ userStory?: string | undefined;
76
+ breakdownItems?: {
77
+ description: string;
78
+ title: string;
79
+ }[] | undefined;
80
+ }, {
81
+ title: string;
82
+ description?: string | undefined;
83
+ userStory?: string | undefined;
84
+ breakdownItems?: {
85
+ description: string;
86
+ title: string;
87
+ }[] | undefined;
88
+ }>;
89
+ }, "strip", z.ZodTypeAny, {
90
+ projectId: string;
91
+ useCase: {
92
+ title: string;
93
+ description?: string | undefined;
94
+ userStory?: string | undefined;
95
+ breakdownItems?: {
96
+ description: string;
97
+ title: string;
98
+ }[] | undefined;
99
+ };
100
+ }, {
101
+ projectId: string;
102
+ useCase: {
103
+ title: string;
104
+ description?: string | undefined;
105
+ userStory?: string | undefined;
106
+ breakdownItems?: {
107
+ description: string;
108
+ title: string;
109
+ }[] | undefined;
110
+ };
111
+ }>;
112
+ export type UseCaseSaveInput = z.infer<typeof UseCaseSaveInputSchema>;
113
+ /**
114
+ * Use case get input schema.
115
+ */
116
+ export declare const UseCaseGetInputSchema: z.ZodObject<{
117
+ projectId: z.ZodString;
118
+ useCaseId: z.ZodString;
119
+ }, "strip", z.ZodTypeAny, {
120
+ projectId: string;
121
+ useCaseId: string;
122
+ }, {
123
+ projectId: string;
124
+ useCaseId: string;
125
+ }>;
126
+ export type UseCaseGetInput = z.infer<typeof UseCaseGetInputSchema>;
127
+ /**
128
+ * Use case list input schema.
129
+ */
130
+ export declare const UseCaseListInputSchema: z.ZodObject<{
131
+ projectId: z.ZodString;
132
+ }, "strip", z.ZodTypeAny, {
133
+ projectId: string;
134
+ }, {
135
+ projectId: string;
136
+ }>;
137
+ export type UseCaseListInput = z.infer<typeof UseCaseListInputSchema>;
138
+ /**
139
+ * Use case update input schema.
140
+ */
141
+ export declare const UseCaseUpdateInputSchema: z.ZodObject<{
142
+ projectId: z.ZodString;
143
+ useCaseId: z.ZodString;
144
+ title: z.ZodOptional<z.ZodString>;
145
+ userStory: z.ZodOptional<z.ZodString>;
146
+ description: z.ZodOptional<z.ZodString>;
147
+ breakdownItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
148
+ title: z.ZodString;
149
+ description: z.ZodString;
150
+ }, "strip", z.ZodTypeAny, {
151
+ description: string;
152
+ title: string;
153
+ }, {
154
+ description: string;
155
+ title: string;
156
+ }>, "many">>;
157
+ }, "strip", z.ZodTypeAny, {
158
+ projectId: string;
159
+ useCaseId: string;
160
+ description?: string | undefined;
161
+ title?: string | undefined;
162
+ userStory?: string | undefined;
163
+ breakdownItems?: {
164
+ description: string;
165
+ title: string;
166
+ }[] | undefined;
167
+ }, {
168
+ projectId: string;
169
+ useCaseId: string;
170
+ description?: string | undefined;
171
+ title?: string | undefined;
172
+ userStory?: string | undefined;
173
+ breakdownItems?: {
174
+ description: string;
175
+ title: string;
176
+ }[] | undefined;
177
+ }>;
178
+ export type UseCaseUpdateInput = z.infer<typeof UseCaseUpdateInputSchema>;
179
+ /**
180
+ * Use case delete input schema.
181
+ */
182
+ export declare const UseCaseDeleteInputSchema: z.ZodObject<{
183
+ projectId: z.ZodString;
184
+ useCaseId: z.ZodString;
185
+ }, "strip", z.ZodTypeAny, {
186
+ projectId: string;
187
+ useCaseId: string;
188
+ }, {
189
+ projectId: string;
190
+ useCaseId: string;
191
+ }>;
192
+ export type UseCaseDeleteInput = z.infer<typeof UseCaseDeleteInputSchema>;
193
+ /**
194
+ * Test case save input schema.
195
+ */
196
+ export declare const TestCaseSaveInputSchema: z.ZodObject<{
197
+ projectId: z.ZodString;
198
+ useCaseId: z.ZodString;
199
+ testCase: z.ZodObject<{
200
+ title: z.ZodString;
201
+ description: z.ZodString;
202
+ goal: z.ZodString;
203
+ precondition: z.ZodOptional<z.ZodString>;
204
+ instructions: z.ZodOptional<z.ZodString>;
205
+ expectedResult: z.ZodString;
206
+ url: z.ZodString;
207
+ }, "strip", z.ZodTypeAny, {
208
+ description: string;
209
+ url: string;
210
+ title: string;
211
+ goal: string;
212
+ expectedResult: string;
213
+ instructions?: string | undefined;
214
+ precondition?: string | undefined;
215
+ }, {
216
+ description: string;
217
+ url: string;
218
+ title: string;
219
+ goal: string;
220
+ expectedResult: string;
221
+ instructions?: string | undefined;
222
+ precondition?: string | undefined;
223
+ }>;
224
+ }, "strip", z.ZodTypeAny, {
225
+ projectId: string;
226
+ useCaseId: string;
227
+ testCase: {
228
+ description: string;
229
+ url: string;
230
+ title: string;
231
+ goal: string;
232
+ expectedResult: string;
233
+ instructions?: string | undefined;
234
+ precondition?: string | undefined;
235
+ };
236
+ }, {
237
+ projectId: string;
238
+ useCaseId: string;
239
+ testCase: {
240
+ description: string;
241
+ url: string;
242
+ title: string;
243
+ goal: string;
244
+ expectedResult: string;
245
+ instructions?: string | undefined;
246
+ precondition?: string | undefined;
247
+ };
248
+ }>;
249
+ export type TestCaseSaveInput = z.infer<typeof TestCaseSaveInputSchema>;
250
+ /**
251
+ * Test case get input schema.
252
+ */
253
+ export declare const TestCaseGetInputSchema: z.ZodObject<{
254
+ projectId: z.ZodString;
255
+ testCaseId: z.ZodString;
256
+ }, "strip", z.ZodTypeAny, {
257
+ projectId: string;
258
+ testCaseId: string;
259
+ }, {
260
+ projectId: string;
261
+ testCaseId: string;
262
+ }>;
263
+ export type TestCaseGetInput = z.infer<typeof TestCaseGetInputSchema>;
264
+ /**
265
+ * Test case list input schema.
266
+ */
267
+ export declare const TestCaseListInputSchema: z.ZodObject<{
268
+ projectId: z.ZodString;
269
+ useCaseId: z.ZodOptional<z.ZodString>;
270
+ }, "strip", z.ZodTypeAny, {
271
+ projectId: string;
272
+ useCaseId?: string | undefined;
273
+ }, {
274
+ projectId: string;
275
+ useCaseId?: string | undefined;
276
+ }>;
277
+ export type TestCaseListInput = z.infer<typeof TestCaseListInputSchema>;
278
+ /**
279
+ * Test case update input schema.
280
+ */
281
+ export declare const TestCaseUpdateInputSchema: z.ZodObject<{
282
+ projectId: z.ZodString;
283
+ testCaseId: z.ZodString;
284
+ title: z.ZodOptional<z.ZodString>;
285
+ description: z.ZodOptional<z.ZodString>;
286
+ goal: z.ZodOptional<z.ZodString>;
287
+ precondition: z.ZodOptional<z.ZodString>;
288
+ instructions: z.ZodOptional<z.ZodString>;
289
+ expectedResult: z.ZodOptional<z.ZodString>;
290
+ url: z.ZodOptional<z.ZodString>;
291
+ }, "strip", z.ZodTypeAny, {
292
+ projectId: string;
293
+ testCaseId: string;
294
+ description?: string | undefined;
295
+ url?: string | undefined;
296
+ title?: string | undefined;
297
+ instructions?: string | undefined;
298
+ goal?: string | undefined;
299
+ precondition?: string | undefined;
300
+ expectedResult?: string | undefined;
301
+ }, {
302
+ projectId: string;
303
+ testCaseId: string;
304
+ description?: string | undefined;
305
+ url?: string | undefined;
306
+ title?: string | undefined;
307
+ instructions?: string | undefined;
308
+ goal?: string | undefined;
309
+ precondition?: string | undefined;
310
+ expectedResult?: string | undefined;
311
+ }>;
312
+ export type TestCaseUpdateInput = z.infer<typeof TestCaseUpdateInputSchema>;
313
+ /**
314
+ * Test case delete input schema.
315
+ */
316
+ export declare const TestCaseDeleteInputSchema: z.ZodObject<{
317
+ projectId: z.ZodString;
318
+ testCaseId: z.ZodString;
319
+ }, "strip", z.ZodTypeAny, {
320
+ projectId: string;
321
+ testCaseId: string;
322
+ }, {
323
+ projectId: string;
324
+ testCaseId: string;
325
+ }>;
326
+ export type TestCaseDeleteInput = z.infer<typeof TestCaseDeleteInputSchema>;
327
+ /**
328
+ * Test script save input schema.
329
+ */
330
+ export declare const TestScriptSaveInputSchema: z.ZodObject<{
331
+ projectId: z.ZodString;
332
+ useCaseId: z.ZodString;
333
+ testCaseId: z.ZodString;
334
+ testScript: z.ZodObject<{
335
+ name: z.ZodString;
336
+ url: z.ZodString;
337
+ goal: z.ZodOptional<z.ZodString>;
338
+ description: z.ZodOptional<z.ZodString>;
339
+ precondition: z.ZodOptional<z.ZodString>;
340
+ expectedResult: z.ZodOptional<z.ZodString>;
341
+ actionScriptId: z.ZodOptional<z.ZodString>;
342
+ actionScript: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
343
+ }, "strip", z.ZodTypeAny, {
344
+ url: string;
345
+ name: string;
346
+ description?: string | undefined;
347
+ goal?: string | undefined;
348
+ precondition?: string | undefined;
349
+ expectedResult?: string | undefined;
350
+ actionScriptId?: string | undefined;
351
+ actionScript?: unknown[] | undefined;
352
+ }, {
353
+ url: string;
354
+ name: string;
355
+ description?: string | undefined;
356
+ goal?: string | undefined;
357
+ precondition?: string | undefined;
358
+ expectedResult?: string | undefined;
359
+ actionScriptId?: string | undefined;
360
+ actionScript?: unknown[] | undefined;
361
+ }>;
362
+ }, "strip", z.ZodTypeAny, {
363
+ projectId: string;
364
+ useCaseId: string;
365
+ testCaseId: string;
366
+ testScript: {
367
+ url: string;
368
+ name: string;
369
+ description?: string | undefined;
370
+ goal?: string | undefined;
371
+ precondition?: string | undefined;
372
+ expectedResult?: string | undefined;
373
+ actionScriptId?: string | undefined;
374
+ actionScript?: unknown[] | undefined;
375
+ };
376
+ }, {
377
+ projectId: string;
378
+ useCaseId: string;
379
+ testCaseId: string;
380
+ testScript: {
381
+ url: string;
382
+ name: string;
383
+ description?: string | undefined;
384
+ goal?: string | undefined;
385
+ precondition?: string | undefined;
386
+ expectedResult?: string | undefined;
387
+ actionScriptId?: string | undefined;
388
+ actionScript?: unknown[] | undefined;
389
+ };
390
+ }>;
391
+ export type TestScriptSaveInput = z.infer<typeof TestScriptSaveInputSchema>;
392
+ /**
393
+ * Test script get input schema.
394
+ */
395
+ export declare const TestScriptGetInputSchema: z.ZodObject<{
396
+ projectId: z.ZodString;
397
+ testScriptId: z.ZodString;
398
+ }, "strip", z.ZodTypeAny, {
399
+ projectId: string;
400
+ testScriptId: string;
401
+ }, {
402
+ projectId: string;
403
+ testScriptId: string;
404
+ }>;
405
+ export type TestScriptGetInput = z.infer<typeof TestScriptGetInputSchema>;
406
+ /**
407
+ * Test script list input schema.
408
+ */
409
+ export declare const TestScriptListInputSchema: z.ZodObject<{
410
+ projectId: z.ZodString;
411
+ testCaseId: z.ZodOptional<z.ZodString>;
412
+ }, "strip", z.ZodTypeAny, {
413
+ projectId: string;
414
+ testCaseId?: string | undefined;
415
+ }, {
416
+ projectId: string;
417
+ testCaseId?: string | undefined;
418
+ }>;
419
+ export type TestScriptListInput = z.infer<typeof TestScriptListInputSchema>;
420
+ /**
421
+ * Test script delete input schema.
422
+ */
423
+ export declare const TestScriptDeleteInputSchema: z.ZodObject<{
424
+ projectId: z.ZodString;
425
+ testScriptId: z.ZodString;
426
+ }, "strip", z.ZodTypeAny, {
427
+ projectId: string;
428
+ testScriptId: string;
429
+ }, {
430
+ projectId: string;
431
+ testScriptId: string;
432
+ }>;
433
+ export type TestScriptDeleteInput = z.infer<typeof TestScriptDeleteInputSchema>;
434
+ /**
435
+ * Run result list input schema.
436
+ */
437
+ export declare const RunResultListInputSchema: z.ZodObject<{
438
+ projectId: z.ZodString;
439
+ testScriptId: z.ZodOptional<z.ZodString>;
440
+ limit: z.ZodOptional<z.ZodNumber>;
441
+ }, "strip", z.ZodTypeAny, {
442
+ projectId: string;
443
+ testScriptId?: string | undefined;
444
+ limit?: number | undefined;
445
+ }, {
446
+ projectId: string;
447
+ testScriptId?: string | undefined;
448
+ limit?: number | undefined;
449
+ }>;
450
+ export type RunResultListInput = z.infer<typeof RunResultListInputSchema>;
451
+ /**
452
+ * Run result get input schema.
453
+ */
454
+ export declare const RunResultGetInputSchema: z.ZodObject<{
455
+ projectId: z.ZodString;
456
+ runId: z.ZodString;
457
+ }, "strip", z.ZodTypeAny, {
458
+ projectId: string;
459
+ runId: string;
460
+ }, {
461
+ projectId: string;
462
+ runId: string;
463
+ }>;
464
+ export type RunResultGetInput = z.infer<typeof RunResultGetInputSchema>;
465
+ /**
466
+ * Execute test generation input schema.
467
+ */
468
+ export declare const ExecuteTestGenerationInputSchema: z.ZodObject<{
469
+ projectId: z.ZodString;
470
+ testCaseId: z.ZodString;
471
+ approveElectronAppLaunch: z.ZodBoolean;
472
+ timeoutMs: z.ZodOptional<z.ZodNumber>;
473
+ }, "strip", z.ZodTypeAny, {
474
+ projectId: string;
475
+ testCaseId: string;
476
+ approveElectronAppLaunch: boolean;
477
+ timeoutMs?: number | undefined;
478
+ }, {
479
+ projectId: string;
480
+ testCaseId: string;
481
+ approveElectronAppLaunch: boolean;
482
+ timeoutMs?: number | undefined;
483
+ }>;
484
+ export type ExecuteTestGenerationInput = z.infer<typeof ExecuteTestGenerationInputSchema>;
485
+ /**
486
+ * Execute replay input schema.
487
+ */
488
+ export declare const ExecuteReplayInputSchema: z.ZodObject<{
489
+ projectId: z.ZodString;
490
+ testScriptId: z.ZodString;
491
+ approveElectronAppLaunch: z.ZodBoolean;
492
+ timeoutMs: z.ZodOptional<z.ZodNumber>;
493
+ }, "strip", z.ZodTypeAny, {
494
+ projectId: string;
495
+ testScriptId: string;
496
+ approveElectronAppLaunch: boolean;
497
+ timeoutMs?: number | undefined;
498
+ }, {
499
+ projectId: string;
500
+ testScriptId: string;
501
+ approveElectronAppLaunch: boolean;
502
+ timeoutMs?: number | undefined;
503
+ }>;
504
+ export type ExecuteReplayInput = z.infer<typeof ExecuteReplayInputSchema>;
505
+ /**
506
+ * Cancel execution input schema.
507
+ */
508
+ export declare const CancelExecutionInputSchema: z.ZodObject<{
509
+ runId: z.ZodString;
510
+ }, "strip", z.ZodTypeAny, {
511
+ runId: string;
512
+ }, {
513
+ runId: string;
514
+ }>;
515
+ export type CancelExecutionInput = z.infer<typeof CancelExecutionInputSchema>;
516
+ /**
517
+ * Secret create input schema.
518
+ */
519
+ export declare const SecretCreateInputSchema: z.ZodObject<{
520
+ projectId: z.ZodString;
521
+ secretName: z.ZodString;
522
+ value: z.ZodString;
523
+ description: z.ZodString;
524
+ source: z.ZodOptional<z.ZodEnum<["agent", "user"]>>;
525
+ }, "strip", z.ZodTypeAny, {
526
+ value: string;
527
+ description: string;
528
+ projectId: string;
529
+ secretName: string;
530
+ source?: "user" | "agent" | undefined;
531
+ }, {
532
+ value: string;
533
+ description: string;
534
+ projectId: string;
535
+ secretName: string;
536
+ source?: "user" | "agent" | undefined;
537
+ }>;
538
+ export type SecretCreateInput = z.infer<typeof SecretCreateInputSchema>;
539
+ /**
540
+ * Secret get input schema.
541
+ */
542
+ export declare const SecretGetInputSchema: z.ZodObject<{
543
+ projectId: z.ZodString;
544
+ secretId: z.ZodString;
545
+ }, "strip", z.ZodTypeAny, {
546
+ projectId: string;
547
+ secretId: string;
548
+ }, {
549
+ projectId: string;
550
+ secretId: string;
551
+ }>;
552
+ export type SecretGetInput = z.infer<typeof SecretGetInputSchema>;
553
+ /**
554
+ * Secret list input schema.
555
+ */
556
+ export declare const SecretListInputSchema: z.ZodObject<{
557
+ projectId: z.ZodString;
558
+ }, "strip", z.ZodTypeAny, {
559
+ projectId: string;
560
+ }, {
561
+ projectId: string;
562
+ }>;
563
+ export type SecretListInput = z.infer<typeof SecretListInputSchema>;
564
+ /**
565
+ * Secret update input schema.
566
+ */
567
+ export declare const SecretUpdateInputSchema: z.ZodObject<{
568
+ projectId: z.ZodString;
569
+ secretId: z.ZodString;
570
+ secretName: z.ZodOptional<z.ZodString>;
571
+ value: z.ZodOptional<z.ZodString>;
572
+ description: z.ZodOptional<z.ZodString>;
573
+ source: z.ZodOptional<z.ZodEnum<["agent", "user"]>>;
574
+ }, "strip", z.ZodTypeAny, {
575
+ projectId: string;
576
+ secretId: string;
577
+ value?: string | undefined;
578
+ description?: string | undefined;
579
+ source?: "user" | "agent" | undefined;
580
+ secretName?: string | undefined;
581
+ }, {
582
+ projectId: string;
583
+ secretId: string;
584
+ value?: string | undefined;
585
+ description?: string | undefined;
586
+ source?: "user" | "agent" | undefined;
587
+ secretName?: string | undefined;
588
+ }>;
589
+ export type SecretUpdateInput = z.infer<typeof SecretUpdateInputSchema>;
590
+ /**
591
+ * Secret delete input schema.
592
+ */
593
+ export declare const SecretDeleteInputSchema: z.ZodObject<{
594
+ projectId: z.ZodString;
595
+ secretId: z.ZodString;
596
+ }, "strip", z.ZodTypeAny, {
597
+ projectId: string;
598
+ secretId: string;
599
+ }, {
600
+ projectId: string;
601
+ secretId: string;
602
+ }>;
603
+ export type SecretDeleteInput = z.infer<typeof SecretDeleteInputSchema>;
604
+ /**
605
+ * Publish project input schema.
606
+ */
607
+ export declare const PublishProjectInputSchema: z.ZodObject<{
608
+ projectId: z.ZodString;
609
+ cloudProjectId: z.ZodOptional<z.ZodString>;
610
+ targetUrl: z.ZodOptional<z.ZodString>;
611
+ }, "strip", z.ZodTypeAny, {
612
+ projectId: string;
613
+ cloudProjectId?: string | undefined;
614
+ targetUrl?: string | undefined;
615
+ }, {
616
+ projectId: string;
617
+ cloudProjectId?: string | undefined;
618
+ targetUrl?: string | undefined;
619
+ }>;
620
+ export type PublishProjectInput = z.infer<typeof PublishProjectInputSchema>;
621
+ /**
622
+ * Publish test script input schema.
623
+ */
624
+ export declare const PublishTestScriptInputSchema: z.ZodObject<{
625
+ projectId: z.ZodString;
626
+ testScriptId: z.ZodString;
627
+ cloudProjectId: z.ZodString;
628
+ cloudUseCaseId: z.ZodString;
629
+ cloudTestCaseId: z.ZodString;
630
+ }, "strip", z.ZodTypeAny, {
631
+ projectId: string;
632
+ testScriptId: string;
633
+ cloudProjectId: string;
634
+ cloudUseCaseId: string;
635
+ cloudTestCaseId: string;
636
+ }, {
637
+ projectId: string;
638
+ testScriptId: string;
639
+ cloudProjectId: string;
640
+ cloudUseCaseId: string;
641
+ cloudTestCaseId: string;
642
+ }>;
643
+ export type PublishTestScriptInput = z.infer<typeof PublishTestScriptInputSchema>;
644
+ /**
645
+ * Workflow file association schema.
646
+ */
647
+ export declare const WorkflowFileAssociationSchema: z.ZodObject<{
648
+ entityType: z.ZodEnum<["project", "use_case", "test_case"]>;
649
+ entityId: z.ZodString;
650
+ }, "strip", z.ZodTypeAny, {
651
+ entityType: "project" | "use_case" | "test_case";
652
+ entityId: string;
653
+ }, {
654
+ entityType: "project" | "use_case" | "test_case";
655
+ entityId: string;
656
+ }>;
657
+ /**
658
+ * Workflow file create input schema.
659
+ */
660
+ export declare const WorkflowFileCreateInputSchema: z.ZodObject<{
661
+ projectId: z.ZodString;
662
+ filePath: z.ZodString;
663
+ description: z.ZodString;
664
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
665
+ associations: z.ZodOptional<z.ZodArray<z.ZodObject<{
666
+ entityType: z.ZodEnum<["project", "use_case", "test_case"]>;
667
+ entityId: z.ZodString;
668
+ }, "strip", z.ZodTypeAny, {
669
+ entityType: "project" | "use_case" | "test_case";
670
+ entityId: string;
671
+ }, {
672
+ entityType: "project" | "use_case" | "test_case";
673
+ entityId: string;
674
+ }>, "many">>;
675
+ }, "strip", z.ZodTypeAny, {
676
+ description: string;
677
+ projectId: string;
678
+ filePath: string;
679
+ tags?: string[] | undefined;
680
+ associations?: {
681
+ entityType: "project" | "use_case" | "test_case";
682
+ entityId: string;
683
+ }[] | undefined;
684
+ }, {
685
+ description: string;
686
+ projectId: string;
687
+ filePath: string;
688
+ tags?: string[] | undefined;
689
+ associations?: {
690
+ entityType: "project" | "use_case" | "test_case";
691
+ entityId: string;
692
+ }[] | undefined;
693
+ }>;
694
+ export type WorkflowFileCreateInput = z.infer<typeof WorkflowFileCreateInputSchema>;
695
+ /**
696
+ * Workflow file list input schema.
697
+ */
698
+ export declare const WorkflowFileListInputSchema: z.ZodObject<{
699
+ projectId: z.ZodString;
700
+ }, "strip", z.ZodTypeAny, {
701
+ projectId: string;
702
+ }, {
703
+ projectId: string;
704
+ }>;
705
+ export type WorkflowFileListInput = z.infer<typeof WorkflowFileListInputSchema>;
706
+ /**
707
+ * Workflow file list available input schema.
708
+ */
709
+ export declare const WorkflowFileListAvailableInputSchema: z.ZodObject<{
710
+ projectId: z.ZodString;
711
+ entityType: z.ZodEnum<["project", "use_case", "test_case"]>;
712
+ entityId: z.ZodString;
713
+ }, "strip", z.ZodTypeAny, {
714
+ projectId: string;
715
+ entityType: "project" | "use_case" | "test_case";
716
+ entityId: string;
717
+ }, {
718
+ projectId: string;
719
+ entityType: "project" | "use_case" | "test_case";
720
+ entityId: string;
721
+ }>;
722
+ export type WorkflowFileListAvailableInput = z.infer<typeof WorkflowFileListAvailableInputSchema>;
723
+ /**
724
+ * Workflow file get input schema.
725
+ */
726
+ export declare const WorkflowFileGetInputSchema: z.ZodObject<{
727
+ projectId: z.ZodString;
728
+ fileId: z.ZodString;
729
+ }, "strip", z.ZodTypeAny, {
730
+ projectId: string;
731
+ fileId: string;
732
+ }, {
733
+ projectId: string;
734
+ fileId: string;
735
+ }>;
736
+ export type WorkflowFileGetInput = z.infer<typeof WorkflowFileGetInputSchema>;
737
+ /**
738
+ * Workflow file update input schema.
739
+ */
740
+ export declare const WorkflowFileUpdateInputSchema: z.ZodObject<{
741
+ projectId: z.ZodString;
742
+ fileId: z.ZodString;
743
+ description: z.ZodOptional<z.ZodString>;
744
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
745
+ associations: z.ZodOptional<z.ZodArray<z.ZodObject<{
746
+ entityType: z.ZodEnum<["project", "use_case", "test_case"]>;
747
+ entityId: z.ZodString;
748
+ }, "strip", z.ZodTypeAny, {
749
+ entityType: "project" | "use_case" | "test_case";
750
+ entityId: string;
751
+ }, {
752
+ entityType: "project" | "use_case" | "test_case";
753
+ entityId: string;
754
+ }>, "many">>;
755
+ }, "strip", z.ZodTypeAny, {
756
+ projectId: string;
757
+ fileId: string;
758
+ description?: string | undefined;
759
+ tags?: string[] | undefined;
760
+ associations?: {
761
+ entityType: "project" | "use_case" | "test_case";
762
+ entityId: string;
763
+ }[] | undefined;
764
+ }, {
765
+ projectId: string;
766
+ fileId: string;
767
+ description?: string | undefined;
768
+ tags?: string[] | undefined;
769
+ associations?: {
770
+ entityType: "project" | "use_case" | "test_case";
771
+ entityId: string;
772
+ }[] | undefined;
773
+ }>;
774
+ export type WorkflowFileUpdateInput = z.infer<typeof WorkflowFileUpdateInputSchema>;
775
+ /**
776
+ * Workflow file delete input schema.
777
+ */
778
+ export declare const WorkflowFileDeleteInputSchema: z.ZodObject<{
779
+ projectId: z.ZodString;
780
+ fileId: z.ZodString;
781
+ }, "strip", z.ZodTypeAny, {
782
+ projectId: string;
783
+ fileId: string;
784
+ }, {
785
+ projectId: string;
786
+ fileId: string;
787
+ }>;
788
+ export type WorkflowFileDeleteInput = z.infer<typeof WorkflowFileDeleteInputSchema>;
789
+ /**
790
+ * Cloud project list input schema (empty - uses auth to determine user).
791
+ */
792
+ export declare const CloudProjectListInputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
793
+ export type CloudProjectListInput = z.infer<typeof CloudProjectListInputSchema>;
794
+ /**
795
+ * Cloud pull project input schema.
796
+ */
797
+ export declare const CloudPullProjectInputSchema: z.ZodObject<{
798
+ cloudProjectId: z.ZodString;
799
+ localUrl: z.ZodString;
800
+ }, "strip", z.ZodTypeAny, {
801
+ cloudProjectId: string;
802
+ localUrl: string;
803
+ }, {
804
+ cloudProjectId: string;
805
+ localUrl: string;
806
+ }>;
807
+ export type CloudPullProjectInput = z.infer<typeof CloudPullProjectInputSchema>;
808
+ /**
809
+ * Cloud pull use case input schema.
810
+ */
811
+ export declare const CloudPullUseCaseInputSchema: z.ZodObject<{
812
+ cloudProjectId: z.ZodString;
813
+ cloudUseCaseId: z.ZodString;
814
+ localProjectId: z.ZodString;
815
+ localUrl: z.ZodString;
816
+ }, "strip", z.ZodTypeAny, {
817
+ cloudProjectId: string;
818
+ cloudUseCaseId: string;
819
+ localUrl: string;
820
+ localProjectId: string;
821
+ }, {
822
+ cloudProjectId: string;
823
+ cloudUseCaseId: string;
824
+ localUrl: string;
825
+ localProjectId: string;
826
+ }>;
827
+ export type CloudPullUseCaseInput = z.infer<typeof CloudPullUseCaseInputSchema>;
828
+ /**
829
+ * Cloud pull test case input schema.
830
+ */
831
+ export declare const CloudPullTestCaseInputSchema: z.ZodObject<{
832
+ cloudProjectId: z.ZodString;
833
+ cloudUseCaseId: z.ZodString;
834
+ cloudTestCaseId: z.ZodString;
835
+ localProjectId: z.ZodString;
836
+ localUseCaseId: z.ZodString;
837
+ localUrl: z.ZodString;
838
+ }, "strip", z.ZodTypeAny, {
839
+ cloudProjectId: string;
840
+ cloudUseCaseId: string;
841
+ cloudTestCaseId: string;
842
+ localUrl: string;
843
+ localProjectId: string;
844
+ localUseCaseId: string;
845
+ }, {
846
+ cloudProjectId: string;
847
+ cloudUseCaseId: string;
848
+ cloudTestCaseId: string;
849
+ localUrl: string;
850
+ localProjectId: string;
851
+ localUseCaseId: string;
852
+ }>;
853
+ export type CloudPullTestCaseInput = z.infer<typeof CloudPullTestCaseInputSchema>;
854
+ /**
855
+ * Cloud secret create input schema.
856
+ */
857
+ export declare const CloudSecretCreateInputSchema: z.ZodObject<{
858
+ projectId: z.ZodString;
859
+ secretName: z.ZodString;
860
+ value: z.ZodString;
861
+ description: z.ZodString;
862
+ source: z.ZodOptional<z.ZodEnum<["agent", "user"]>>;
863
+ }, "strip", z.ZodTypeAny, {
864
+ value: string;
865
+ description: string;
866
+ projectId: string;
867
+ secretName: string;
868
+ source?: "user" | "agent" | undefined;
869
+ }, {
870
+ value: string;
871
+ description: string;
872
+ projectId: string;
873
+ secretName: string;
874
+ source?: "user" | "agent" | undefined;
875
+ }>;
876
+ export type CloudSecretCreateInput = z.infer<typeof CloudSecretCreateInputSchema>;
877
+ /**
878
+ * Cloud secret list input schema.
879
+ */
880
+ export declare const CloudSecretListInputSchema: z.ZodObject<{
881
+ projectId: z.ZodString;
882
+ }, "strip", z.ZodTypeAny, {
883
+ projectId: string;
884
+ }, {
885
+ projectId: string;
886
+ }>;
887
+ export type CloudSecretListInput = z.infer<typeof CloudSecretListInputSchema>;
888
+ /**
889
+ * Cloud secret get input schema.
890
+ */
891
+ export declare const CloudSecretGetInputSchema: z.ZodObject<{
892
+ secretId: z.ZodString;
893
+ }, "strip", z.ZodTypeAny, {
894
+ secretId: string;
895
+ }, {
896
+ secretId: string;
897
+ }>;
898
+ export type CloudSecretGetInput = z.infer<typeof CloudSecretGetInputSchema>;
899
+ /**
900
+ * Cloud secret update input schema.
901
+ */
902
+ export declare const CloudSecretUpdateInputSchema: z.ZodObject<{
903
+ secretId: z.ZodString;
904
+ projectId: z.ZodString;
905
+ secretName: z.ZodOptional<z.ZodString>;
906
+ value: z.ZodOptional<z.ZodString>;
907
+ description: z.ZodOptional<z.ZodString>;
908
+ source: z.ZodOptional<z.ZodEnum<["agent", "user"]>>;
909
+ }, "strip", z.ZodTypeAny, {
910
+ projectId: string;
911
+ secretId: string;
912
+ value?: string | undefined;
913
+ description?: string | undefined;
914
+ source?: "user" | "agent" | undefined;
915
+ secretName?: string | undefined;
916
+ }, {
917
+ projectId: string;
918
+ secretId: string;
919
+ value?: string | undefined;
920
+ description?: string | undefined;
921
+ source?: "user" | "agent" | undefined;
922
+ secretName?: string | undefined;
923
+ }>;
924
+ export type CloudSecretUpdateInput = z.infer<typeof CloudSecretUpdateInputSchema>;
925
+ /**
926
+ * Cloud secret delete input schema.
927
+ */
928
+ export declare const CloudSecretDeleteInputSchema: z.ZodObject<{
929
+ secretId: z.ZodString;
930
+ }, "strip", z.ZodTypeAny, {
931
+ secretId: string;
932
+ }, {
933
+ secretId: string;
934
+ }>;
935
+ export type CloudSecretDeleteInput = z.infer<typeof CloudSecretDeleteInputSchema>;
936
+ /**
937
+ * Cloud workflow file create input schema.
938
+ */
939
+ export declare const CloudWorkflowFileCreateInputSchema: z.ZodObject<{
940
+ projectId: z.ZodString;
941
+ filePath: z.ZodString;
942
+ description: z.ZodString;
943
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
944
+ associations: z.ZodOptional<z.ZodArray<z.ZodObject<{
945
+ entityType: z.ZodEnum<["project", "use_case", "test_case"]>;
946
+ entityId: z.ZodString;
947
+ }, "strip", z.ZodTypeAny, {
948
+ entityType: "project" | "use_case" | "test_case";
949
+ entityId: string;
950
+ }, {
951
+ entityType: "project" | "use_case" | "test_case";
952
+ entityId: string;
953
+ }>, "many">>;
954
+ }, "strip", z.ZodTypeAny, {
955
+ description: string;
956
+ projectId: string;
957
+ filePath: string;
958
+ tags?: string[] | undefined;
959
+ associations?: {
960
+ entityType: "project" | "use_case" | "test_case";
961
+ entityId: string;
962
+ }[] | undefined;
963
+ }, {
964
+ description: string;
965
+ projectId: string;
966
+ filePath: string;
967
+ tags?: string[] | undefined;
968
+ associations?: {
969
+ entityType: "project" | "use_case" | "test_case";
970
+ entityId: string;
971
+ }[] | undefined;
972
+ }>;
973
+ export type CloudWorkflowFileCreateInput = z.infer<typeof CloudWorkflowFileCreateInputSchema>;
974
+ /**
975
+ * Cloud workflow file list input schema.
976
+ */
977
+ export declare const CloudWorkflowFileListInputSchema: z.ZodObject<{
978
+ projectId: z.ZodString;
979
+ }, "strip", z.ZodTypeAny, {
980
+ projectId: string;
981
+ }, {
982
+ projectId: string;
983
+ }>;
984
+ export type CloudWorkflowFileListInput = z.infer<typeof CloudWorkflowFileListInputSchema>;
985
+ /**
986
+ * Cloud workflow file list available input schema.
987
+ */
988
+ export declare const CloudWorkflowFileListAvailableInputSchema: z.ZodObject<{
989
+ projectId: z.ZodString;
990
+ entityType: z.ZodEnum<["project", "use_case", "test_case"]>;
991
+ entityId: z.ZodString;
992
+ }, "strip", z.ZodTypeAny, {
993
+ projectId: string;
994
+ entityType: "project" | "use_case" | "test_case";
995
+ entityId: string;
996
+ }, {
997
+ projectId: string;
998
+ entityType: "project" | "use_case" | "test_case";
999
+ entityId: string;
1000
+ }>;
1001
+ export type CloudWorkflowFileListAvailableInput = z.infer<typeof CloudWorkflowFileListAvailableInputSchema>;
1002
+ /**
1003
+ * Cloud workflow file get input schema.
1004
+ */
1005
+ export declare const CloudWorkflowFileGetInputSchema: z.ZodObject<{
1006
+ fileId: z.ZodString;
1007
+ }, "strip", z.ZodTypeAny, {
1008
+ fileId: string;
1009
+ }, {
1010
+ fileId: string;
1011
+ }>;
1012
+ export type CloudWorkflowFileGetInput = z.infer<typeof CloudWorkflowFileGetInputSchema>;
1013
+ /**
1014
+ * Cloud workflow file update input schema.
1015
+ */
1016
+ export declare const CloudWorkflowFileUpdateInputSchema: z.ZodObject<{
1017
+ fileId: z.ZodString;
1018
+ description: z.ZodOptional<z.ZodString>;
1019
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1020
+ associations: z.ZodOptional<z.ZodArray<z.ZodObject<{
1021
+ entityType: z.ZodEnum<["project", "use_case", "test_case"]>;
1022
+ entityId: z.ZodString;
1023
+ }, "strip", z.ZodTypeAny, {
1024
+ entityType: "project" | "use_case" | "test_case";
1025
+ entityId: string;
1026
+ }, {
1027
+ entityType: "project" | "use_case" | "test_case";
1028
+ entityId: string;
1029
+ }>, "many">>;
1030
+ }, "strip", z.ZodTypeAny, {
1031
+ fileId: string;
1032
+ description?: string | undefined;
1033
+ tags?: string[] | undefined;
1034
+ associations?: {
1035
+ entityType: "project" | "use_case" | "test_case";
1036
+ entityId: string;
1037
+ }[] | undefined;
1038
+ }, {
1039
+ fileId: string;
1040
+ description?: string | undefined;
1041
+ tags?: string[] | undefined;
1042
+ associations?: {
1043
+ entityType: "project" | "use_case" | "test_case";
1044
+ entityId: string;
1045
+ }[] | undefined;
1046
+ }>;
1047
+ export type CloudWorkflowFileUpdateInput = z.infer<typeof CloudWorkflowFileUpdateInputSchema>;
1048
+ /**
1049
+ * Cloud workflow file delete input schema.
1050
+ */
1051
+ export declare const CloudWorkflowFileDeleteInputSchema: z.ZodObject<{
1052
+ fileId: z.ZodString;
1053
+ }, "strip", z.ZodTypeAny, {
1054
+ fileId: string;
1055
+ }, {
1056
+ fileId: string;
1057
+ }>;
1058
+ export type CloudWorkflowFileDeleteInput = z.infer<typeof CloudWorkflowFileDeleteInputSchema>;
1059
+ /**
1060
+ * Run test input schema.
1061
+ */
1062
+ export declare const RunTestInputSchema: z.ZodObject<{
1063
+ url: z.ZodString;
1064
+ instructions: z.ZodString;
1065
+ timeout_ms: z.ZodOptional<z.ZodNumber>;
1066
+ capture_screenshots: z.ZodOptional<z.ZodBoolean>;
1067
+ }, "strip", z.ZodTypeAny, {
1068
+ url: string;
1069
+ instructions: string;
1070
+ timeout_ms?: number | undefined;
1071
+ capture_screenshots?: boolean | undefined;
1072
+ }, {
1073
+ url: string;
1074
+ instructions: string;
1075
+ timeout_ms?: number | undefined;
1076
+ capture_screenshots?: boolean | undefined;
1077
+ }>;
1078
+ export type RunTestInput = z.infer<typeof RunTestInputSchema>;
1079
+ /**
1080
+ * Explore page input schema.
1081
+ */
1082
+ export declare const ExplorePageInputSchema: z.ZodObject<{
1083
+ url: z.ZodString;
1084
+ analysis_depth: z.ZodOptional<z.ZodEnum<["quick", "standard", "detailed"]>>;
1085
+ }, "strip", z.ZodTypeAny, {
1086
+ url: string;
1087
+ analysis_depth?: "quick" | "standard" | "detailed" | undefined;
1088
+ }, {
1089
+ url: string;
1090
+ analysis_depth?: "quick" | "standard" | "detailed" | undefined;
1091
+ }>;
1092
+ export type ExplorePageInput = z.infer<typeof ExplorePageInputSchema>;
1093
+ /**
1094
+ * Execute action input schema.
1095
+ */
1096
+ export declare const ExecuteActionInputSchema: z.ZodObject<{
1097
+ action_type: z.ZodEnum<["click", "type", "select", "scroll", "navigate", "wait"]>;
1098
+ target: z.ZodOptional<z.ZodString>;
1099
+ value: z.ZodOptional<z.ZodString>;
1100
+ url: z.ZodOptional<z.ZodString>;
1101
+ duration_ms: z.ZodOptional<z.ZodNumber>;
1102
+ }, "strip", z.ZodTypeAny, {
1103
+ action_type: "type" | "click" | "select" | "scroll" | "navigate" | "wait";
1104
+ value?: string | undefined;
1105
+ url?: string | undefined;
1106
+ target?: string | undefined;
1107
+ duration_ms?: number | undefined;
1108
+ }, {
1109
+ action_type: "type" | "click" | "select" | "scroll" | "navigate" | "wait";
1110
+ value?: string | undefined;
1111
+ url?: string | undefined;
1112
+ target?: string | undefined;
1113
+ duration_ms?: number | undefined;
1114
+ }>;
1115
+ export type ExecuteActionInput = z.infer<typeof ExecuteActionInputSchema>;
1116
+ /**
1117
+ * Get screenshot input schema.
1118
+ */
1119
+ export declare const GetScreenshotInputSchema: z.ZodObject<{
1120
+ execution_id: z.ZodOptional<z.ZodString>;
1121
+ full_page: z.ZodOptional<z.ZodBoolean>;
1122
+ }, "strip", z.ZodTypeAny, {
1123
+ execution_id?: string | undefined;
1124
+ full_page?: boolean | undefined;
1125
+ }, {
1126
+ execution_id?: string | undefined;
1127
+ full_page?: boolean | undefined;
1128
+ }>;
1129
+ export type GetScreenshotInput = z.infer<typeof GetScreenshotInputSchema>;
1130
+ /**
1131
+ * Get page state input schema.
1132
+ */
1133
+ export declare const GetPageStateInputSchema: z.ZodObject<{
1134
+ executionId: z.ZodOptional<z.ZodString>;
1135
+ }, "strip", z.ZodTypeAny, {
1136
+ executionId?: string | undefined;
1137
+ }, {
1138
+ executionId?: string | undefined;
1139
+ }>;
1140
+ export type GetPageStateInput = z.infer<typeof GetPageStateInputSchema>;
1141
+ //# sourceMappingURL=project-schemas.d.ts.map