@muggleai/mcp 1.0.19 → 1.0.21

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 (33) hide show
  1. package/bin/muggle-mcp.js +0 -0
  2. package/dist/{chunk-UKMTQHS2.js → chunk-DGEO3CP2.js} +3345 -2489
  3. package/dist/chunk-DGEO3CP2.js.map +1 -0
  4. package/dist/cli/doctor.d.ts.map +1 -1
  5. package/dist/cli/login.d.ts.map +1 -1
  6. package/dist/cli.js +15 -8
  7. package/dist/cli.js.map +1 -1
  8. package/dist/index.js +6 -3
  9. package/dist/index.js.map +1 -1
  10. package/dist/local-qa/contracts/auth-schemas.d.ts +2 -2
  11. package/dist/local-qa/contracts/project-schemas.d.ts +66 -26
  12. package/dist/local-qa/contracts/project-schemas.d.ts.map +1 -1
  13. package/dist/local-qa/services/auth-service.d.ts +17 -0
  14. package/dist/local-qa/services/auth-service.d.ts.map +1 -1
  15. package/dist/local-qa/services/execution-service.d.ts.map +1 -1
  16. package/dist/local-qa/services/run-result-storage-service.d.ts +37 -0
  17. package/dist/local-qa/services/run-result-storage-service.d.ts.map +1 -1
  18. package/dist/local-qa/tools/tool-registry.d.ts.map +1 -1
  19. package/dist/qa/contracts/index.d.ts +394 -74
  20. package/dist/qa/contracts/index.d.ts.map +1 -1
  21. package/dist/qa/contracts/local-run-schemas.d.ts +123 -0
  22. package/dist/qa/contracts/local-run-schemas.d.ts.map +1 -0
  23. package/dist/qa/tools/tool-registry.d.ts.map +1 -1
  24. package/dist/shared/auth.d.ts +15 -6
  25. package/dist/shared/auth.d.ts.map +1 -1
  26. package/dist/shared/config.d.ts.map +1 -1
  27. package/dist/shared/credentials.d.ts +19 -10
  28. package/dist/shared/credentials.d.ts.map +1 -1
  29. package/dist/shared/types.d.ts +2 -0
  30. package/dist/shared/types.d.ts.map +1 -1
  31. package/package.json +3 -2
  32. package/scripts/postinstall.mjs +268 -9
  33. package/dist/chunk-UKMTQHS2.js.map +0 -1
@@ -2,6 +2,7 @@
2
2
  * Zod schemas/contracts for QA Gateway tools.
3
3
  */
4
4
  import { z } from "zod";
5
+ export * from "./local-run-schemas.js";
5
6
  /** Pagination input schema. */
6
7
  export declare const PaginationInputSchema: z.ZodObject<{
7
8
  page: z.ZodOptional<z.ZodNumber>;
@@ -15,19 +16,63 @@ export declare const PaginationInputSchema: z.ZodObject<{
15
16
  }>;
16
17
  /** ID string schema. */
17
18
  export declare const IdSchema: z.ZodString;
19
+ /** Optional memory configuration overrides in workflow params. */
20
+ export declare const WorkflowMemoryParamsSchema: z.ZodObject<{
21
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
22
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
23
+ }, "strip", z.ZodTypeAny, {
24
+ enableSharedTestMemory?: boolean | undefined;
25
+ enableEverMemOS?: boolean | undefined;
26
+ }, {
27
+ enableSharedTestMemory?: boolean | undefined;
28
+ enableEverMemOS?: boolean | undefined;
29
+ }>;
18
30
  /** Optional workflow parameters. */
19
- export declare const WorkflowParamsSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
31
+ export declare const WorkflowParamsSchema: z.ZodOptional<z.ZodObject<{
32
+ memory: z.ZodOptional<z.ZodObject<{
33
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
34
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
35
+ }, "strip", z.ZodTypeAny, {
36
+ enableSharedTestMemory?: boolean | undefined;
37
+ enableEverMemOS?: boolean | undefined;
38
+ }, {
39
+ enableSharedTestMemory?: boolean | undefined;
40
+ enableEverMemOS?: boolean | undefined;
41
+ }>>;
42
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
43
+ memory: z.ZodOptional<z.ZodObject<{
44
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
45
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
46
+ }, "strip", z.ZodTypeAny, {
47
+ enableSharedTestMemory?: boolean | undefined;
48
+ enableEverMemOS?: boolean | undefined;
49
+ }, {
50
+ enableSharedTestMemory?: boolean | undefined;
51
+ enableEverMemOS?: boolean | undefined;
52
+ }>>;
53
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
54
+ memory: z.ZodOptional<z.ZodObject<{
55
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
56
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
57
+ }, "strip", z.ZodTypeAny, {
58
+ enableSharedTestMemory?: boolean | undefined;
59
+ enableEverMemOS?: boolean | undefined;
60
+ }, {
61
+ enableSharedTestMemory?: boolean | undefined;
62
+ enableEverMemOS?: boolean | undefined;
63
+ }>>;
64
+ }, z.ZodTypeAny, "passthrough">>>;
20
65
  export declare const ProjectCreateInputSchema: z.ZodObject<{
21
66
  projectName: z.ZodString;
22
67
  description: z.ZodString;
23
68
  url: z.ZodString;
24
69
  }, "strip", z.ZodTypeAny, {
25
- description: string;
26
70
  url: string;
71
+ description: string;
27
72
  projectName: string;
28
73
  }, {
29
- description: string;
30
74
  url: string;
75
+ description: string;
31
76
  projectName: string;
32
77
  }>;
33
78
  export declare const ProjectGetInputSchema: z.ZodObject<{
@@ -51,13 +96,13 @@ export declare const ProjectUpdateInputSchema: z.ZodObject<{
51
96
  url: z.ZodOptional<z.ZodString>;
52
97
  }, "strip", z.ZodTypeAny, {
53
98
  projectId: string;
54
- description?: string | undefined;
55
99
  url?: string | undefined;
100
+ description?: string | undefined;
56
101
  projectName?: string | undefined;
57
102
  }, {
58
103
  projectId: string;
59
- description?: string | undefined;
60
104
  url?: string | undefined;
105
+ description?: string | undefined;
61
106
  projectName?: string | undefined;
62
107
  }>;
63
108
  export declare const ProjectListInputSchema: z.ZodObject<{
@@ -113,19 +158,19 @@ export declare const PrdFileProcessStartInputSchema: z.ZodObject<{
113
158
  contentChecksum: z.ZodString;
114
159
  fileSize: z.ZodNumber;
115
160
  }, "strip", z.ZodTypeAny, {
116
- description: string;
117
- url: string;
118
- name: string;
119
161
  projectId: string;
162
+ name: string;
163
+ url: string;
164
+ description: string;
120
165
  prdFilePath: string;
121
166
  originalFileName: string;
122
167
  contentChecksum: string;
123
168
  fileSize: number;
124
169
  }, {
125
- description: string;
126
- url: string;
127
- name: string;
128
170
  projectId: string;
171
+ name: string;
172
+ url: string;
173
+ description: string;
129
174
  prdFilePath: string;
130
175
  originalFileName: string;
131
176
  contentChecksum: string;
@@ -152,16 +197,16 @@ export declare const SecretCreateInputSchema: z.ZodObject<{
152
197
  description: z.ZodString;
153
198
  source: z.ZodOptional<z.ZodEnum<["user", "agent"]>>;
154
199
  }, "strip", z.ZodTypeAny, {
200
+ projectId: string;
201
+ name: string;
155
202
  value: string;
156
203
  description: string;
157
- name: string;
158
- projectId: string;
159
204
  source?: "user" | "agent" | undefined;
160
205
  }, {
206
+ projectId: string;
207
+ name: string;
161
208
  value: string;
162
209
  description: string;
163
- name: string;
164
- projectId: string;
165
210
  source?: "user" | "agent" | undefined;
166
211
  }>;
167
212
  export declare const SecretGetInputSchema: z.ZodObject<{
@@ -178,14 +223,14 @@ export declare const SecretUpdateInputSchema: z.ZodObject<{
178
223
  description: z.ZodOptional<z.ZodString>;
179
224
  }, "strip", z.ZodTypeAny, {
180
225
  secretId: string;
226
+ name?: string | undefined;
181
227
  value?: string | undefined;
182
228
  description?: string | undefined;
183
- name?: string | undefined;
184
229
  }, {
185
230
  secretId: string;
231
+ name?: string | undefined;
186
232
  value?: string | undefined;
187
233
  description?: string | undefined;
188
- name?: string | undefined;
189
234
  }>;
190
235
  export declare const SecretDeleteInputSchema: z.ZodObject<{
191
236
  secretId: z.ZodString;
@@ -252,15 +297,15 @@ export declare const UseCaseCreateFromPromptsInputSchema: z.ZodObject<{
252
297
  instruction: string;
253
298
  }>, "many">;
254
299
  }, "strip", z.ZodTypeAny, {
300
+ projectId: string;
255
301
  prompts: {
256
302
  instruction: string;
257
303
  }[];
258
- projectId: string;
259
304
  }, {
305
+ projectId: string;
260
306
  prompts: {
261
307
  instruction: string;
262
308
  }[];
263
- projectId: string;
264
309
  }>;
265
310
  export declare const UseCaseUpdateFromPromptInputSchema: z.ZodObject<{
266
311
  projectId: z.ZodString;
@@ -331,30 +376,30 @@ export declare const TestCaseCreateInputSchema: z.ZodObject<{
331
376
  category: z.ZodOptional<z.ZodString>;
332
377
  automated: z.ZodOptional<z.ZodBoolean>;
333
378
  }, "strip", z.ZodTypeAny, {
334
- description: string;
335
- url: string;
336
- title: string;
337
379
  projectId: string;
338
380
  useCaseId: string;
381
+ url: string;
339
382
  goal: string;
383
+ title: string;
340
384
  expectedResult: string;
385
+ description: string;
341
386
  status?: "DRAFT" | "ACTIVE" | "DEPRECATED" | "ARCHIVED" | undefined;
342
- priority?: "HIGH" | "MEDIUM" | "LOW" | undefined;
343
387
  precondition?: string | undefined;
388
+ priority?: "HIGH" | "MEDIUM" | "LOW" | undefined;
344
389
  tags?: string[] | undefined;
345
390
  category?: string | undefined;
346
391
  automated?: boolean | undefined;
347
392
  }, {
348
- description: string;
349
- url: string;
350
- title: string;
351
393
  projectId: string;
352
394
  useCaseId: string;
395
+ url: string;
353
396
  goal: string;
397
+ title: string;
354
398
  expectedResult: string;
399
+ description: string;
355
400
  status?: "DRAFT" | "ACTIVE" | "DEPRECATED" | "ARCHIVED" | undefined;
356
- priority?: "HIGH" | "MEDIUM" | "LOW" | undefined;
357
401
  precondition?: string | undefined;
402
+ priority?: "HIGH" | "MEDIUM" | "LOW" | undefined;
358
403
  tags?: string[] | undefined;
359
404
  category?: string | undefined;
360
405
  automated?: boolean | undefined;
@@ -399,19 +444,74 @@ export declare const WorkflowStartWebsiteScanInputSchema: z.ZodObject<{
399
444
  url: z.ZodString;
400
445
  description: z.ZodString;
401
446
  archiveUnapproved: z.ZodOptional<z.ZodBoolean>;
402
- workflowParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
447
+ workflowParams: z.ZodOptional<z.ZodObject<{
448
+ memory: z.ZodOptional<z.ZodObject<{
449
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
450
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
451
+ }, "strip", z.ZodTypeAny, {
452
+ enableSharedTestMemory?: boolean | undefined;
453
+ enableEverMemOS?: boolean | undefined;
454
+ }, {
455
+ enableSharedTestMemory?: boolean | undefined;
456
+ enableEverMemOS?: boolean | undefined;
457
+ }>>;
458
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
459
+ memory: z.ZodOptional<z.ZodObject<{
460
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
461
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
462
+ }, "strip", z.ZodTypeAny, {
463
+ enableSharedTestMemory?: boolean | undefined;
464
+ enableEverMemOS?: boolean | undefined;
465
+ }, {
466
+ enableSharedTestMemory?: boolean | undefined;
467
+ enableEverMemOS?: boolean | undefined;
468
+ }>>;
469
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
470
+ memory: z.ZodOptional<z.ZodObject<{
471
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
472
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
473
+ }, "strip", z.ZodTypeAny, {
474
+ enableSharedTestMemory?: boolean | undefined;
475
+ enableEverMemOS?: boolean | undefined;
476
+ }, {
477
+ enableSharedTestMemory?: boolean | undefined;
478
+ enableEverMemOS?: boolean | undefined;
479
+ }>>;
480
+ }, z.ZodTypeAny, "passthrough">>>;
403
481
  }, "strip", z.ZodTypeAny, {
404
- description: string;
405
- url: string;
406
482
  projectId: string;
483
+ url: string;
484
+ description: string;
407
485
  archiveUnapproved?: boolean | undefined;
408
- workflowParams?: Record<string, unknown> | undefined;
486
+ workflowParams?: z.objectOutputType<{
487
+ memory: z.ZodOptional<z.ZodObject<{
488
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
489
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
490
+ }, "strip", z.ZodTypeAny, {
491
+ enableSharedTestMemory?: boolean | undefined;
492
+ enableEverMemOS?: boolean | undefined;
493
+ }, {
494
+ enableSharedTestMemory?: boolean | undefined;
495
+ enableEverMemOS?: boolean | undefined;
496
+ }>>;
497
+ }, z.ZodTypeAny, "passthrough"> | undefined;
409
498
  }, {
410
- description: string;
411
- url: string;
412
499
  projectId: string;
500
+ url: string;
501
+ description: string;
413
502
  archiveUnapproved?: boolean | undefined;
414
- workflowParams?: Record<string, unknown> | undefined;
503
+ workflowParams?: z.objectInputType<{
504
+ memory: z.ZodOptional<z.ZodObject<{
505
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
506
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
507
+ }, "strip", z.ZodTypeAny, {
508
+ enableSharedTestMemory?: boolean | undefined;
509
+ enableEverMemOS?: boolean | undefined;
510
+ }, {
511
+ enableSharedTestMemory?: boolean | undefined;
512
+ enableEverMemOS?: boolean | undefined;
513
+ }>>;
514
+ }, z.ZodTypeAny, "passthrough"> | undefined;
415
515
  }>;
416
516
  export declare const WorkflowListRuntimesInputSchema: z.ZodObject<{
417
517
  projectId: z.ZodOptional<z.ZodString>;
@@ -433,21 +533,76 @@ export declare const WorkflowStartTestCaseDetectionInputSchema: z.ZodObject<{
433
533
  name: z.ZodString;
434
534
  description: z.ZodString;
435
535
  url: z.ZodString;
436
- workflowParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
536
+ workflowParams: z.ZodOptional<z.ZodObject<{
537
+ memory: z.ZodOptional<z.ZodObject<{
538
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
539
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
540
+ }, "strip", z.ZodTypeAny, {
541
+ enableSharedTestMemory?: boolean | undefined;
542
+ enableEverMemOS?: boolean | undefined;
543
+ }, {
544
+ enableSharedTestMemory?: boolean | undefined;
545
+ enableEverMemOS?: boolean | undefined;
546
+ }>>;
547
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
548
+ memory: z.ZodOptional<z.ZodObject<{
549
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
550
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
551
+ }, "strip", z.ZodTypeAny, {
552
+ enableSharedTestMemory?: boolean | undefined;
553
+ enableEverMemOS?: boolean | undefined;
554
+ }, {
555
+ enableSharedTestMemory?: boolean | undefined;
556
+ enableEverMemOS?: boolean | undefined;
557
+ }>>;
558
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
559
+ memory: z.ZodOptional<z.ZodObject<{
560
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
561
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
562
+ }, "strip", z.ZodTypeAny, {
563
+ enableSharedTestMemory?: boolean | undefined;
564
+ enableEverMemOS?: boolean | undefined;
565
+ }, {
566
+ enableSharedTestMemory?: boolean | undefined;
567
+ enableEverMemOS?: boolean | undefined;
568
+ }>>;
569
+ }, z.ZodTypeAny, "passthrough">>>;
437
570
  }, "strip", z.ZodTypeAny, {
438
- description: string;
439
- url: string;
440
- name: string;
441
571
  projectId: string;
442
572
  useCaseId: string;
443
- workflowParams?: Record<string, unknown> | undefined;
444
- }, {
445
- description: string;
446
- url: string;
447
573
  name: string;
574
+ url: string;
575
+ description: string;
576
+ workflowParams?: z.objectOutputType<{
577
+ memory: z.ZodOptional<z.ZodObject<{
578
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
579
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
580
+ }, "strip", z.ZodTypeAny, {
581
+ enableSharedTestMemory?: boolean | undefined;
582
+ enableEverMemOS?: boolean | undefined;
583
+ }, {
584
+ enableSharedTestMemory?: boolean | undefined;
585
+ enableEverMemOS?: boolean | undefined;
586
+ }>>;
587
+ }, z.ZodTypeAny, "passthrough"> | undefined;
588
+ }, {
448
589
  projectId: string;
449
590
  useCaseId: string;
450
- workflowParams?: Record<string, unknown> | undefined;
591
+ name: string;
592
+ url: string;
593
+ description: string;
594
+ workflowParams?: z.objectInputType<{
595
+ memory: z.ZodOptional<z.ZodObject<{
596
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
597
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
598
+ }, "strip", z.ZodTypeAny, {
599
+ enableSharedTestMemory?: boolean | undefined;
600
+ enableEverMemOS?: boolean | undefined;
601
+ }, {
602
+ enableSharedTestMemory?: boolean | undefined;
603
+ enableEverMemOS?: boolean | undefined;
604
+ }>>;
605
+ }, z.ZodTypeAny, "passthrough"> | undefined;
451
606
  }>;
452
607
  export declare const WorkflowStartTestScriptGenerationInputSchema: z.ZodObject<{
453
608
  projectId: z.ZodString;
@@ -459,29 +614,84 @@ export declare const WorkflowStartTestScriptGenerationInputSchema: z.ZodObject<{
459
614
  precondition: z.ZodString;
460
615
  instructions: z.ZodString;
461
616
  expectedResult: z.ZodString;
462
- workflowParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
617
+ workflowParams: z.ZodOptional<z.ZodObject<{
618
+ memory: z.ZodOptional<z.ZodObject<{
619
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
620
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
621
+ }, "strip", z.ZodTypeAny, {
622
+ enableSharedTestMemory?: boolean | undefined;
623
+ enableEverMemOS?: boolean | undefined;
624
+ }, {
625
+ enableSharedTestMemory?: boolean | undefined;
626
+ enableEverMemOS?: boolean | undefined;
627
+ }>>;
628
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
629
+ memory: z.ZodOptional<z.ZodObject<{
630
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
631
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
632
+ }, "strip", z.ZodTypeAny, {
633
+ enableSharedTestMemory?: boolean | undefined;
634
+ enableEverMemOS?: boolean | undefined;
635
+ }, {
636
+ enableSharedTestMemory?: boolean | undefined;
637
+ enableEverMemOS?: boolean | undefined;
638
+ }>>;
639
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
640
+ memory: z.ZodOptional<z.ZodObject<{
641
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
642
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
643
+ }, "strip", z.ZodTypeAny, {
644
+ enableSharedTestMemory?: boolean | undefined;
645
+ enableEverMemOS?: boolean | undefined;
646
+ }, {
647
+ enableSharedTestMemory?: boolean | undefined;
648
+ enableEverMemOS?: boolean | undefined;
649
+ }>>;
650
+ }, z.ZodTypeAny, "passthrough">>>;
463
651
  }, "strip", z.ZodTypeAny, {
464
- url: string;
465
- name: string;
466
- instructions: string;
467
652
  projectId: string;
468
653
  useCaseId: string;
469
- testCaseId: string;
654
+ name: string;
655
+ url: string;
470
656
  goal: string;
471
- precondition: string;
472
657
  expectedResult: string;
473
- workflowParams?: Record<string, unknown> | undefined;
474
- }, {
475
- url: string;
476
- name: string;
658
+ precondition: string;
477
659
  instructions: string;
660
+ testCaseId: string;
661
+ workflowParams?: z.objectOutputType<{
662
+ memory: z.ZodOptional<z.ZodObject<{
663
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
664
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
665
+ }, "strip", z.ZodTypeAny, {
666
+ enableSharedTestMemory?: boolean | undefined;
667
+ enableEverMemOS?: boolean | undefined;
668
+ }, {
669
+ enableSharedTestMemory?: boolean | undefined;
670
+ enableEverMemOS?: boolean | undefined;
671
+ }>>;
672
+ }, z.ZodTypeAny, "passthrough"> | undefined;
673
+ }, {
478
674
  projectId: string;
479
675
  useCaseId: string;
480
- testCaseId: string;
676
+ name: string;
677
+ url: string;
481
678
  goal: string;
482
- precondition: string;
483
679
  expectedResult: string;
484
- workflowParams?: Record<string, unknown> | undefined;
680
+ precondition: string;
681
+ instructions: string;
682
+ testCaseId: string;
683
+ workflowParams?: z.objectInputType<{
684
+ memory: z.ZodOptional<z.ZodObject<{
685
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
686
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
687
+ }, "strip", z.ZodTypeAny, {
688
+ enableSharedTestMemory?: boolean | undefined;
689
+ enableEverMemOS?: boolean | undefined;
690
+ }, {
691
+ enableSharedTestMemory?: boolean | undefined;
692
+ enableEverMemOS?: boolean | undefined;
693
+ }>>;
694
+ }, z.ZodTypeAny, "passthrough"> | undefined;
485
695
  }>;
486
696
  export declare const WorkflowGetLatestScriptGenByTestCaseInputSchema: z.ZodObject<{
487
697
  testCaseId: z.ZodString;
@@ -496,21 +706,76 @@ export declare const WorkflowStartTestScriptReplayInputSchema: z.ZodObject<{
496
706
  testCaseId: z.ZodString;
497
707
  testScriptId: z.ZodString;
498
708
  name: z.ZodString;
499
- workflowParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
709
+ workflowParams: z.ZodOptional<z.ZodObject<{
710
+ memory: z.ZodOptional<z.ZodObject<{
711
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
712
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
713
+ }, "strip", z.ZodTypeAny, {
714
+ enableSharedTestMemory?: boolean | undefined;
715
+ enableEverMemOS?: boolean | undefined;
716
+ }, {
717
+ enableSharedTestMemory?: boolean | undefined;
718
+ enableEverMemOS?: boolean | undefined;
719
+ }>>;
720
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
721
+ memory: z.ZodOptional<z.ZodObject<{
722
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
723
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
724
+ }, "strip", z.ZodTypeAny, {
725
+ enableSharedTestMemory?: boolean | undefined;
726
+ enableEverMemOS?: boolean | undefined;
727
+ }, {
728
+ enableSharedTestMemory?: boolean | undefined;
729
+ enableEverMemOS?: boolean | undefined;
730
+ }>>;
731
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
732
+ memory: z.ZodOptional<z.ZodObject<{
733
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
734
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
735
+ }, "strip", z.ZodTypeAny, {
736
+ enableSharedTestMemory?: boolean | undefined;
737
+ enableEverMemOS?: boolean | undefined;
738
+ }, {
739
+ enableSharedTestMemory?: boolean | undefined;
740
+ enableEverMemOS?: boolean | undefined;
741
+ }>>;
742
+ }, z.ZodTypeAny, "passthrough">>>;
500
743
  }, "strip", z.ZodTypeAny, {
501
- name: string;
502
744
  projectId: string;
503
745
  useCaseId: string;
504
- testCaseId: string;
505
746
  testScriptId: string;
506
- workflowParams?: Record<string, unknown> | undefined;
507
- }, {
508
747
  name: string;
748
+ testCaseId: string;
749
+ workflowParams?: z.objectOutputType<{
750
+ memory: z.ZodOptional<z.ZodObject<{
751
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
752
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
753
+ }, "strip", z.ZodTypeAny, {
754
+ enableSharedTestMemory?: boolean | undefined;
755
+ enableEverMemOS?: boolean | undefined;
756
+ }, {
757
+ enableSharedTestMemory?: boolean | undefined;
758
+ enableEverMemOS?: boolean | undefined;
759
+ }>>;
760
+ }, z.ZodTypeAny, "passthrough"> | undefined;
761
+ }, {
509
762
  projectId: string;
510
763
  useCaseId: string;
511
- testCaseId: string;
512
764
  testScriptId: string;
513
- workflowParams?: Record<string, unknown> | undefined;
765
+ name: string;
766
+ testCaseId: string;
767
+ workflowParams?: z.objectInputType<{
768
+ memory: z.ZodOptional<z.ZodObject<{
769
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
770
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
771
+ }, "strip", z.ZodTypeAny, {
772
+ enableSharedTestMemory?: boolean | undefined;
773
+ enableEverMemOS?: boolean | undefined;
774
+ }, {
775
+ enableSharedTestMemory?: boolean | undefined;
776
+ enableEverMemOS?: boolean | undefined;
777
+ }>>;
778
+ }, z.ZodTypeAny, "passthrough"> | undefined;
514
779
  }>;
515
780
  export declare const WorkflowStartTestScriptReplayBulkInputSchema: z.ZodObject<{
516
781
  projectId: z.ZodString;
@@ -521,25 +786,80 @@ export declare const WorkflowStartTestScriptReplayBulkInputSchema: z.ZodObject<{
521
786
  limit: z.ZodOptional<z.ZodNumber>;
522
787
  testCaseIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
523
788
  repeatPerTestCase: z.ZodOptional<z.ZodNumber>;
524
- workflowParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
789
+ workflowParams: z.ZodOptional<z.ZodObject<{
790
+ memory: z.ZodOptional<z.ZodObject<{
791
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
792
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
793
+ }, "strip", z.ZodTypeAny, {
794
+ enableSharedTestMemory?: boolean | undefined;
795
+ enableEverMemOS?: boolean | undefined;
796
+ }, {
797
+ enableSharedTestMemory?: boolean | undefined;
798
+ enableEverMemOS?: boolean | undefined;
799
+ }>>;
800
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
801
+ memory: z.ZodOptional<z.ZodObject<{
802
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
803
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
804
+ }, "strip", z.ZodTypeAny, {
805
+ enableSharedTestMemory?: boolean | undefined;
806
+ enableEverMemOS?: boolean | undefined;
807
+ }, {
808
+ enableSharedTestMemory?: boolean | undefined;
809
+ enableEverMemOS?: boolean | undefined;
810
+ }>>;
811
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
812
+ memory: z.ZodOptional<z.ZodObject<{
813
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
814
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
815
+ }, "strip", z.ZodTypeAny, {
816
+ enableSharedTestMemory?: boolean | undefined;
817
+ enableEverMemOS?: boolean | undefined;
818
+ }, {
819
+ enableSharedTestMemory?: boolean | undefined;
820
+ enableEverMemOS?: boolean | undefined;
821
+ }>>;
822
+ }, z.ZodTypeAny, "passthrough">>>;
525
823
  }, "strip", z.ZodTypeAny, {
526
- name: string;
527
824
  projectId: string;
825
+ name: string;
528
826
  intervalSec: number;
529
827
  useCaseId?: string | undefined;
530
- workflowParams?: Record<string, unknown> | undefined;
531
- namePrefix?: string | undefined;
532
828
  limit?: number | undefined;
829
+ workflowParams?: z.objectOutputType<{
830
+ memory: z.ZodOptional<z.ZodObject<{
831
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
832
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
833
+ }, "strip", z.ZodTypeAny, {
834
+ enableSharedTestMemory?: boolean | undefined;
835
+ enableEverMemOS?: boolean | undefined;
836
+ }, {
837
+ enableSharedTestMemory?: boolean | undefined;
838
+ enableEverMemOS?: boolean | undefined;
839
+ }>>;
840
+ }, z.ZodTypeAny, "passthrough"> | undefined;
841
+ namePrefix?: string | undefined;
533
842
  testCaseIds?: string[] | undefined;
534
843
  repeatPerTestCase?: number | undefined;
535
844
  }, {
536
- name: string;
537
845
  projectId: string;
846
+ name: string;
538
847
  intervalSec: number;
539
848
  useCaseId?: string | undefined;
540
- workflowParams?: Record<string, unknown> | undefined;
541
- namePrefix?: string | undefined;
542
849
  limit?: number | undefined;
850
+ workflowParams?: z.objectInputType<{
851
+ memory: z.ZodOptional<z.ZodObject<{
852
+ enableSharedTestMemory: z.ZodOptional<z.ZodBoolean>;
853
+ enableEverMemOS: z.ZodOptional<z.ZodBoolean>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ enableSharedTestMemory?: boolean | undefined;
856
+ enableEverMemOS?: boolean | undefined;
857
+ }, {
858
+ enableSharedTestMemory?: boolean | undefined;
859
+ enableEverMemOS?: boolean | undefined;
860
+ }>>;
861
+ }, z.ZodTypeAny, "passthrough"> | undefined;
862
+ namePrefix?: string | undefined;
543
863
  testCaseIds?: string[] | undefined;
544
864
  repeatPerTestCase?: number | undefined;
545
865
  }>;
@@ -717,11 +1037,11 @@ export declare const ApiKeyCreateInputSchema: z.ZodObject<{
717
1037
  name: z.ZodOptional<z.ZodString>;
718
1038
  expiry: z.ZodOptional<z.ZodEnum<["30d", "90d", "1y", "never"]>>;
719
1039
  }, "strip", z.ZodTypeAny, {
720
- expiry?: "30d" | "90d" | "1y" | "never" | undefined;
721
1040
  name?: string | undefined;
722
- }, {
723
1041
  expiry?: "30d" | "90d" | "1y" | "never" | undefined;
1042
+ }, {
724
1043
  name?: string | undefined;
1044
+ expiry?: "30d" | "90d" | "1y" | "never" | undefined;
725
1045
  }>;
726
1046
  export declare const ApiKeyListInputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
727
1047
  export declare const ApiKeyGetInputSchema: z.ZodObject<{
@@ -745,11 +1065,11 @@ export declare const AuthLoginInputSchema: z.ZodObject<{
745
1065
  waitForCompletion: z.ZodOptional<z.ZodBoolean>;
746
1066
  timeoutMs: z.ZodOptional<z.ZodNumber>;
747
1067
  }, "strip", z.ZodTypeAny, {
748
- waitForCompletion?: boolean | undefined;
749
1068
  timeoutMs?: number | undefined;
750
- }, {
751
1069
  waitForCompletion?: boolean | undefined;
1070
+ }, {
752
1071
  timeoutMs?: number | undefined;
1072
+ waitForCompletion?: boolean | undefined;
753
1073
  }>;
754
1074
  /**
755
1075
  * Auth poll input schema.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/qa/contracts/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/qa/contracts/index.ts"],"names":[],"mappings":"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"}