@muggleai/mcp 1.0.20 → 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.
@@ -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,8 +16,52 @@ 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;
@@ -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, {
161
+ projectId: string;
116
162
  name: string;
117
163
  url: string;
118
164
  description: string;
119
- projectId: string;
120
165
  prdFilePath: string;
121
166
  originalFileName: string;
122
167
  contentChecksum: string;
123
168
  fileSize: number;
124
169
  }, {
170
+ projectId: string;
125
171
  name: string;
126
172
  url: string;
127
173
  description: string;
128
- projectId: 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;
155
201
  name: string;
156
202
  value: string;
157
203
  description: string;
158
- projectId: string;
159
204
  source?: "user" | "agent" | undefined;
160
205
  }, {
206
+ projectId: string;
161
207
  name: string;
162
208
  value: string;
163
209
  description: string;
164
- projectId: string;
165
210
  source?: "user" | "agent" | undefined;
166
211
  }>;
167
212
  export declare const SecretGetInputSchema: z.ZodObject<{
@@ -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,13 +376,13 @@ 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, {
379
+ projectId: string;
380
+ useCaseId: string;
334
381
  url: string;
335
382
  goal: string;
336
383
  title: string;
337
384
  expectedResult: string;
338
385
  description: string;
339
- projectId: string;
340
- useCaseId: string;
341
386
  status?: "DRAFT" | "ACTIVE" | "DEPRECATED" | "ARCHIVED" | undefined;
342
387
  precondition?: string | undefined;
343
388
  priority?: "HIGH" | "MEDIUM" | "LOW" | undefined;
@@ -345,13 +390,13 @@ export declare const TestCaseCreateInputSchema: z.ZodObject<{
345
390
  category?: string | undefined;
346
391
  automated?: boolean | undefined;
347
392
  }, {
393
+ projectId: string;
394
+ useCaseId: string;
348
395
  url: string;
349
396
  goal: string;
350
397
  title: string;
351
398
  expectedResult: string;
352
399
  description: string;
353
- projectId: string;
354
- useCaseId: string;
355
400
  status?: "DRAFT" | "ACTIVE" | "DEPRECATED" | "ARCHIVED" | undefined;
356
401
  precondition?: string | undefined;
357
402
  priority?: "HIGH" | "MEDIUM" | "LOW" | 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, {
482
+ projectId: string;
404
483
  url: string;
405
484
  description: string;
406
- projectId: 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
  }, {
499
+ projectId: string;
410
500
  url: string;
411
501
  description: string;
412
- projectId: 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, {
571
+ projectId: string;
572
+ useCaseId: string;
438
573
  name: string;
439
574
  url: string;
440
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
+ }, {
441
589
  projectId: string;
442
590
  useCaseId: string;
443
- workflowParams?: Record<string, unknown> | undefined;
444
- }, {
445
591
  name: string;
446
592
  url: string;
447
593
  description: string;
448
- projectId: string;
449
- useCaseId: string;
450
- workflowParams?: Record<string, unknown> | undefined;
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,8 +614,43 @@ 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, {
652
+ projectId: string;
653
+ useCaseId: string;
464
654
  name: string;
465
655
  url: string;
466
656
  goal: string;
@@ -468,10 +658,21 @@ export declare const WorkflowStartTestScriptGenerationInputSchema: z.ZodObject<{
468
658
  precondition: string;
469
659
  instructions: string;
470
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
+ }, {
471
674
  projectId: string;
472
675
  useCaseId: string;
473
- workflowParams?: Record<string, unknown> | undefined;
474
- }, {
475
676
  name: string;
476
677
  url: string;
477
678
  goal: string;
@@ -479,9 +680,18 @@ export declare const WorkflowStartTestScriptGenerationInputSchema: z.ZodObject<{
479
680
  precondition: string;
480
681
  instructions: string;
481
682
  testCaseId: string;
482
- projectId: string;
483
- useCaseId: string;
484
- workflowParams?: Record<string, unknown> | undefined;
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, {
744
+ projectId: string;
745
+ useCaseId: string;
501
746
  testScriptId: string;
502
747
  name: string;
503
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
+ }, {
504
762
  projectId: string;
505
763
  useCaseId: string;
506
- workflowParams?: Record<string, unknown> | undefined;
507
- }, {
508
764
  testScriptId: string;
509
765
  name: string;
510
766
  testCaseId: string;
511
- projectId: string;
512
- useCaseId: string;
513
- workflowParams?: Record<string, unknown> | undefined;
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,24 +786,79 @@ 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
- limit?: number | undefined;
530
827
  useCaseId?: string | undefined;
531
- workflowParams?: Record<string, unknown> | undefined;
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;
532
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
- limit?: number | undefined;
540
848
  useCaseId?: string | undefined;
541
- workflowParams?: Record<string, unknown> | undefined;
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;
542
862
  namePrefix?: string | undefined;
543
863
  testCaseIds?: string[] | undefined;
544
864
  repeatPerTestCase?: number | undefined;
@@ -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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"}