autokap 1.9.10 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli-runner.js +13 -2
- package/dist/cli.d.ts +21 -0
- package/dist/cli.js +48 -1
- package/dist/execution-schema.d.ts +382 -182
- package/dist/execution-schema.js +40 -13
- package/dist/execution-types.d.ts +64 -33
- package/dist/llm-healer.js +28 -16
- package/dist/opcode-actions.js +139 -42
- package/dist/opcode-runner.d.ts +10 -1
- package/dist/opcode-runner.js +1 -0
- package/dist/program-signing.d.ts +47 -7
- package/dist/recovery-chain.js +51 -12
- package/dist/selector-resolver.d.ts +19 -4
- package/dist/selector-resolver.js +39 -3
- package/dist/semantic-resolver.d.ts +8 -0
- package/dist/semantic-resolver.js +0 -0
- package/dist/video-narration-schema.d.ts +47 -7
- package/dist/web-playwright-local.d.ts +12 -0
- package/dist/web-playwright-local.js +53 -0
- package/package.json +1 -1
|
@@ -164,13 +164,17 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
164
164
|
stepId: z.ZodOptional<z.ZodString>;
|
|
165
165
|
kind: z.ZodLiteral<"ASSERT_SURFACE">;
|
|
166
166
|
}, z.core.$strict>, z.ZodObject<{
|
|
167
|
-
selector: z.ZodString
|
|
167
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
168
168
|
target: z.ZodOptional<z.ZodObject<{
|
|
169
169
|
text: z.ZodOptional<z.ZodString>;
|
|
170
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
170
171
|
role: z.ZodOptional<z.ZodString>;
|
|
171
172
|
label: z.ZodOptional<z.ZodString>;
|
|
173
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
172
174
|
near: z.ZodOptional<z.ZodString>;
|
|
175
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
173
176
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
177
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
174
178
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
175
179
|
}, z.core.$strict>>;
|
|
176
180
|
button: z.ZodOptional<z.ZodEnum<{
|
|
@@ -209,13 +213,17 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
209
213
|
stepId: z.ZodOptional<z.ZodString>;
|
|
210
214
|
kind: z.ZodLiteral<"CLICK">;
|
|
211
215
|
}, z.core.$strict>, z.ZodObject<{
|
|
212
|
-
selector: z.ZodString
|
|
216
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
213
217
|
target: z.ZodOptional<z.ZodObject<{
|
|
214
218
|
text: z.ZodOptional<z.ZodString>;
|
|
219
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
215
220
|
role: z.ZodOptional<z.ZodString>;
|
|
216
221
|
label: z.ZodOptional<z.ZodString>;
|
|
222
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
217
223
|
near: z.ZodOptional<z.ZodString>;
|
|
224
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
218
225
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
226
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
219
227
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
220
228
|
}, z.core.$strict>>;
|
|
221
229
|
text: z.ZodString;
|
|
@@ -287,10 +295,14 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
287
295
|
selector: z.ZodOptional<z.ZodString>;
|
|
288
296
|
target: z.ZodOptional<z.ZodObject<{
|
|
289
297
|
text: z.ZodOptional<z.ZodString>;
|
|
298
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
290
299
|
role: z.ZodOptional<z.ZodString>;
|
|
291
300
|
label: z.ZodOptional<z.ZodString>;
|
|
301
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
292
302
|
near: z.ZodOptional<z.ZodString>;
|
|
303
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
293
304
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
305
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
294
306
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
295
307
|
}, z.core.$strict>>;
|
|
296
308
|
state: z.ZodEnum<{
|
|
@@ -466,10 +478,14 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
466
478
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
467
479
|
target: z.ZodOptional<z.ZodObject<{
|
|
468
480
|
text: z.ZodOptional<z.ZodString>;
|
|
481
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
469
482
|
role: z.ZodOptional<z.ZodString>;
|
|
470
483
|
label: z.ZodOptional<z.ZodString>;
|
|
484
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
471
485
|
near: z.ZodOptional<z.ZodString>;
|
|
486
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
472
487
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
488
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
473
489
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
474
490
|
}, z.core.$strict>>;
|
|
475
491
|
description: z.ZodString;
|
|
@@ -609,13 +625,17 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
609
625
|
stepId: z.ZodOptional<z.ZodString>;
|
|
610
626
|
kind: z.ZodLiteral<"END_CLIP">;
|
|
611
627
|
}, z.core.$strict>, z.ZodObject<{
|
|
612
|
-
selector: z.ZodString
|
|
628
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
613
629
|
target: z.ZodOptional<z.ZodObject<{
|
|
614
630
|
text: z.ZodOptional<z.ZodString>;
|
|
631
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
615
632
|
role: z.ZodOptional<z.ZodString>;
|
|
616
633
|
label: z.ZodOptional<z.ZodString>;
|
|
634
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
617
635
|
near: z.ZodOptional<z.ZodString>;
|
|
636
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
618
637
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
638
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
619
639
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
620
640
|
}, z.core.$strict>>;
|
|
621
641
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -650,13 +670,17 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
650
670
|
stepId: z.ZodOptional<z.ZodString>;
|
|
651
671
|
kind: z.ZodLiteral<"HOVER">;
|
|
652
672
|
}, z.core.$strict>, z.ZodObject<{
|
|
653
|
-
selector: z.ZodString
|
|
673
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
654
674
|
target: z.ZodOptional<z.ZodObject<{
|
|
655
675
|
text: z.ZodOptional<z.ZodString>;
|
|
676
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
656
677
|
role: z.ZodOptional<z.ZodString>;
|
|
657
678
|
label: z.ZodOptional<z.ZodString>;
|
|
679
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
658
680
|
near: z.ZodOptional<z.ZodString>;
|
|
681
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
659
682
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
683
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
660
684
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
661
685
|
}, z.core.$strict>>;
|
|
662
686
|
optionLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -694,13 +718,17 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
694
718
|
stepId: z.ZodOptional<z.ZodString>;
|
|
695
719
|
kind: z.ZodLiteral<"SELECT_OPTION">;
|
|
696
720
|
}, z.core.$strict>, z.ZodObject<{
|
|
697
|
-
selector: z.ZodString
|
|
721
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
698
722
|
target: z.ZodOptional<z.ZodObject<{
|
|
699
723
|
text: z.ZodOptional<z.ZodString>;
|
|
724
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
700
725
|
role: z.ZodOptional<z.ZodString>;
|
|
701
726
|
label: z.ZodOptional<z.ZodString>;
|
|
727
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
702
728
|
near: z.ZodOptional<z.ZodString>;
|
|
729
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
703
730
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
731
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
704
732
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
705
733
|
}, z.core.$strict>>;
|
|
706
734
|
checked: z.ZodBoolean;
|
|
@@ -736,13 +764,17 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
736
764
|
stepId: z.ZodOptional<z.ZodString>;
|
|
737
765
|
kind: z.ZodLiteral<"CHECK">;
|
|
738
766
|
}, z.core.$strict>, z.ZodObject<{
|
|
739
|
-
selector: z.ZodString
|
|
767
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
740
768
|
target: z.ZodOptional<z.ZodObject<{
|
|
741
769
|
text: z.ZodOptional<z.ZodString>;
|
|
770
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
742
771
|
role: z.ZodOptional<z.ZodString>;
|
|
743
772
|
label: z.ZodOptional<z.ZodString>;
|
|
773
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
744
774
|
near: z.ZodOptional<z.ZodString>;
|
|
775
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
745
776
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
777
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
746
778
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
747
779
|
}, z.core.$strict>>;
|
|
748
780
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -777,13 +809,17 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
777
809
|
stepId: z.ZodOptional<z.ZodString>;
|
|
778
810
|
kind: z.ZodLiteral<"DOUBLE_CLICK">;
|
|
779
811
|
}, z.core.$strict>, z.ZodObject<{
|
|
780
|
-
selector: z.ZodString
|
|
812
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
781
813
|
target: z.ZodOptional<z.ZodObject<{
|
|
782
814
|
text: z.ZodOptional<z.ZodString>;
|
|
815
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
783
816
|
role: z.ZodOptional<z.ZodString>;
|
|
784
817
|
label: z.ZodOptional<z.ZodString>;
|
|
818
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
785
819
|
near: z.ZodOptional<z.ZodString>;
|
|
820
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
786
821
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
822
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
787
823
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
788
824
|
}, z.core.$strict>>;
|
|
789
825
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -791,10 +827,14 @@ export declare const ExecutionOpcodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
791
827
|
toSelector: z.ZodOptional<z.ZodString>;
|
|
792
828
|
toTarget: z.ZodOptional<z.ZodObject<{
|
|
793
829
|
text: z.ZodOptional<z.ZodString>;
|
|
830
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
794
831
|
role: z.ZodOptional<z.ZodString>;
|
|
795
832
|
label: z.ZodOptional<z.ZodString>;
|
|
833
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
796
834
|
near: z.ZodOptional<z.ZodString>;
|
|
835
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
797
836
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
837
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
798
838
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
799
839
|
}, z.core.$strict>>;
|
|
800
840
|
toSelectorAlternates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1371,13 +1411,17 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1371
1411
|
stepId: z.ZodOptional<z.ZodString>;
|
|
1372
1412
|
kind: z.ZodLiteral<"ASSERT_SURFACE">;
|
|
1373
1413
|
}, z.core.$strict>, z.ZodObject<{
|
|
1374
|
-
selector: z.ZodString
|
|
1414
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
1375
1415
|
target: z.ZodOptional<z.ZodObject<{
|
|
1376
1416
|
text: z.ZodOptional<z.ZodString>;
|
|
1417
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1377
1418
|
role: z.ZodOptional<z.ZodString>;
|
|
1378
1419
|
label: z.ZodOptional<z.ZodString>;
|
|
1420
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1379
1421
|
near: z.ZodOptional<z.ZodString>;
|
|
1422
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1380
1423
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1424
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1381
1425
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
1382
1426
|
}, z.core.$strict>>;
|
|
1383
1427
|
button: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1416,13 +1460,17 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1416
1460
|
stepId: z.ZodOptional<z.ZodString>;
|
|
1417
1461
|
kind: z.ZodLiteral<"CLICK">;
|
|
1418
1462
|
}, z.core.$strict>, z.ZodObject<{
|
|
1419
|
-
selector: z.ZodString
|
|
1463
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
1420
1464
|
target: z.ZodOptional<z.ZodObject<{
|
|
1421
1465
|
text: z.ZodOptional<z.ZodString>;
|
|
1466
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1422
1467
|
role: z.ZodOptional<z.ZodString>;
|
|
1423
1468
|
label: z.ZodOptional<z.ZodString>;
|
|
1469
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1424
1470
|
near: z.ZodOptional<z.ZodString>;
|
|
1471
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1425
1472
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1473
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1426
1474
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
1427
1475
|
}, z.core.$strict>>;
|
|
1428
1476
|
text: z.ZodString;
|
|
@@ -1494,10 +1542,14 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1494
1542
|
selector: z.ZodOptional<z.ZodString>;
|
|
1495
1543
|
target: z.ZodOptional<z.ZodObject<{
|
|
1496
1544
|
text: z.ZodOptional<z.ZodString>;
|
|
1545
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1497
1546
|
role: z.ZodOptional<z.ZodString>;
|
|
1498
1547
|
label: z.ZodOptional<z.ZodString>;
|
|
1548
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1499
1549
|
near: z.ZodOptional<z.ZodString>;
|
|
1550
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1500
1551
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1552
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1501
1553
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
1502
1554
|
}, z.core.$strict>>;
|
|
1503
1555
|
state: z.ZodEnum<{
|
|
@@ -1673,10 +1725,14 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1673
1725
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
1674
1726
|
target: z.ZodOptional<z.ZodObject<{
|
|
1675
1727
|
text: z.ZodOptional<z.ZodString>;
|
|
1728
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1676
1729
|
role: z.ZodOptional<z.ZodString>;
|
|
1677
1730
|
label: z.ZodOptional<z.ZodString>;
|
|
1731
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1678
1732
|
near: z.ZodOptional<z.ZodString>;
|
|
1733
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1679
1734
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1735
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1680
1736
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
1681
1737
|
}, z.core.$strict>>;
|
|
1682
1738
|
description: z.ZodString;
|
|
@@ -1816,13 +1872,17 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1816
1872
|
stepId: z.ZodOptional<z.ZodString>;
|
|
1817
1873
|
kind: z.ZodLiteral<"END_CLIP">;
|
|
1818
1874
|
}, z.core.$strict>, z.ZodObject<{
|
|
1819
|
-
selector: z.ZodString
|
|
1875
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
1820
1876
|
target: z.ZodOptional<z.ZodObject<{
|
|
1821
1877
|
text: z.ZodOptional<z.ZodString>;
|
|
1878
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1822
1879
|
role: z.ZodOptional<z.ZodString>;
|
|
1823
1880
|
label: z.ZodOptional<z.ZodString>;
|
|
1881
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1824
1882
|
near: z.ZodOptional<z.ZodString>;
|
|
1883
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1825
1884
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1885
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1826
1886
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
1827
1887
|
}, z.core.$strict>>;
|
|
1828
1888
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -1857,13 +1917,17 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1857
1917
|
stepId: z.ZodOptional<z.ZodString>;
|
|
1858
1918
|
kind: z.ZodLiteral<"HOVER">;
|
|
1859
1919
|
}, z.core.$strict>, z.ZodObject<{
|
|
1860
|
-
selector: z.ZodString
|
|
1920
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
1861
1921
|
target: z.ZodOptional<z.ZodObject<{
|
|
1862
1922
|
text: z.ZodOptional<z.ZodString>;
|
|
1923
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1863
1924
|
role: z.ZodOptional<z.ZodString>;
|
|
1864
1925
|
label: z.ZodOptional<z.ZodString>;
|
|
1926
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1865
1927
|
near: z.ZodOptional<z.ZodString>;
|
|
1928
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1866
1929
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1930
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1867
1931
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
1868
1932
|
}, z.core.$strict>>;
|
|
1869
1933
|
optionLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -1901,13 +1965,17 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1901
1965
|
stepId: z.ZodOptional<z.ZodString>;
|
|
1902
1966
|
kind: z.ZodLiteral<"SELECT_OPTION">;
|
|
1903
1967
|
}, z.core.$strict>, z.ZodObject<{
|
|
1904
|
-
selector: z.ZodString
|
|
1968
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
1905
1969
|
target: z.ZodOptional<z.ZodObject<{
|
|
1906
1970
|
text: z.ZodOptional<z.ZodString>;
|
|
1971
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1907
1972
|
role: z.ZodOptional<z.ZodString>;
|
|
1908
1973
|
label: z.ZodOptional<z.ZodString>;
|
|
1974
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1909
1975
|
near: z.ZodOptional<z.ZodString>;
|
|
1976
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1910
1977
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1978
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1911
1979
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
1912
1980
|
}, z.core.$strict>>;
|
|
1913
1981
|
checked: z.ZodBoolean;
|
|
@@ -1943,13 +2011,17 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1943
2011
|
stepId: z.ZodOptional<z.ZodString>;
|
|
1944
2012
|
kind: z.ZodLiteral<"CHECK">;
|
|
1945
2013
|
}, z.core.$strict>, z.ZodObject<{
|
|
1946
|
-
selector: z.ZodString
|
|
2014
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
1947
2015
|
target: z.ZodOptional<z.ZodObject<{
|
|
1948
2016
|
text: z.ZodOptional<z.ZodString>;
|
|
2017
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1949
2018
|
role: z.ZodOptional<z.ZodString>;
|
|
1950
2019
|
label: z.ZodOptional<z.ZodString>;
|
|
2020
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1951
2021
|
near: z.ZodOptional<z.ZodString>;
|
|
2022
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1952
2023
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2024
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1953
2025
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
1954
2026
|
}, z.core.$strict>>;
|
|
1955
2027
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -1984,13 +2056,17 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1984
2056
|
stepId: z.ZodOptional<z.ZodString>;
|
|
1985
2057
|
kind: z.ZodLiteral<"DOUBLE_CLICK">;
|
|
1986
2058
|
}, z.core.$strict>, z.ZodObject<{
|
|
1987
|
-
selector: z.ZodString
|
|
2059
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
1988
2060
|
target: z.ZodOptional<z.ZodObject<{
|
|
1989
2061
|
text: z.ZodOptional<z.ZodString>;
|
|
2062
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1990
2063
|
role: z.ZodOptional<z.ZodString>;
|
|
1991
2064
|
label: z.ZodOptional<z.ZodString>;
|
|
2065
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1992
2066
|
near: z.ZodOptional<z.ZodString>;
|
|
2067
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1993
2068
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2069
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1994
2070
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
1995
2071
|
}, z.core.$strict>>;
|
|
1996
2072
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -1998,10 +2074,14 @@ export declare const ExecutionProgramSchema: z.ZodObject<{
|
|
|
1998
2074
|
toSelector: z.ZodOptional<z.ZodString>;
|
|
1999
2075
|
toTarget: z.ZodOptional<z.ZodObject<{
|
|
2000
2076
|
text: z.ZodOptional<z.ZodString>;
|
|
2077
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2001
2078
|
role: z.ZodOptional<z.ZodString>;
|
|
2002
2079
|
label: z.ZodOptional<z.ZodString>;
|
|
2080
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2003
2081
|
near: z.ZodOptional<z.ZodString>;
|
|
2082
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2004
2083
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2084
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2005
2085
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2006
2086
|
}, z.core.$strict>>;
|
|
2007
2087
|
toSelectorAlternates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2362,13 +2442,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2362
2442
|
stepId: z.ZodOptional<z.ZodString>;
|
|
2363
2443
|
kind: z.ZodLiteral<"ASSERT_SURFACE">;
|
|
2364
2444
|
}, z.core.$strict>, z.ZodObject<{
|
|
2365
|
-
selector: z.ZodString
|
|
2445
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
2366
2446
|
target: z.ZodOptional<z.ZodObject<{
|
|
2367
2447
|
text: z.ZodOptional<z.ZodString>;
|
|
2448
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2368
2449
|
role: z.ZodOptional<z.ZodString>;
|
|
2369
2450
|
label: z.ZodOptional<z.ZodString>;
|
|
2451
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2370
2452
|
near: z.ZodOptional<z.ZodString>;
|
|
2453
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2371
2454
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2455
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2372
2456
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2373
2457
|
}, z.core.$strict>>;
|
|
2374
2458
|
button: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2407,13 +2491,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2407
2491
|
stepId: z.ZodOptional<z.ZodString>;
|
|
2408
2492
|
kind: z.ZodLiteral<"CLICK">;
|
|
2409
2493
|
}, z.core.$strict>, z.ZodObject<{
|
|
2410
|
-
selector: z.ZodString
|
|
2494
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
2411
2495
|
target: z.ZodOptional<z.ZodObject<{
|
|
2412
2496
|
text: z.ZodOptional<z.ZodString>;
|
|
2497
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2413
2498
|
role: z.ZodOptional<z.ZodString>;
|
|
2414
2499
|
label: z.ZodOptional<z.ZodString>;
|
|
2500
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2415
2501
|
near: z.ZodOptional<z.ZodString>;
|
|
2502
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2416
2503
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2504
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2417
2505
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2418
2506
|
}, z.core.$strict>>;
|
|
2419
2507
|
text: z.ZodString;
|
|
@@ -2485,10 +2573,14 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2485
2573
|
selector: z.ZodOptional<z.ZodString>;
|
|
2486
2574
|
target: z.ZodOptional<z.ZodObject<{
|
|
2487
2575
|
text: z.ZodOptional<z.ZodString>;
|
|
2576
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2488
2577
|
role: z.ZodOptional<z.ZodString>;
|
|
2489
2578
|
label: z.ZodOptional<z.ZodString>;
|
|
2579
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2490
2580
|
near: z.ZodOptional<z.ZodString>;
|
|
2581
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2491
2582
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2583
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2492
2584
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2493
2585
|
}, z.core.$strict>>;
|
|
2494
2586
|
state: z.ZodEnum<{
|
|
@@ -2664,10 +2756,14 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2664
2756
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
2665
2757
|
target: z.ZodOptional<z.ZodObject<{
|
|
2666
2758
|
text: z.ZodOptional<z.ZodString>;
|
|
2759
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2667
2760
|
role: z.ZodOptional<z.ZodString>;
|
|
2668
2761
|
label: z.ZodOptional<z.ZodString>;
|
|
2762
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2669
2763
|
near: z.ZodOptional<z.ZodString>;
|
|
2764
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2670
2765
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2766
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2671
2767
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2672
2768
|
}, z.core.$strict>>;
|
|
2673
2769
|
description: z.ZodString;
|
|
@@ -2807,13 +2903,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2807
2903
|
stepId: z.ZodOptional<z.ZodString>;
|
|
2808
2904
|
kind: z.ZodLiteral<"END_CLIP">;
|
|
2809
2905
|
}, z.core.$strict>, z.ZodObject<{
|
|
2810
|
-
selector: z.ZodString
|
|
2906
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
2811
2907
|
target: z.ZodOptional<z.ZodObject<{
|
|
2812
2908
|
text: z.ZodOptional<z.ZodString>;
|
|
2909
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2813
2910
|
role: z.ZodOptional<z.ZodString>;
|
|
2814
2911
|
label: z.ZodOptional<z.ZodString>;
|
|
2912
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2815
2913
|
near: z.ZodOptional<z.ZodString>;
|
|
2914
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2816
2915
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2916
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2817
2917
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2818
2918
|
}, z.core.$strict>>;
|
|
2819
2919
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -2848,13 +2948,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2848
2948
|
stepId: z.ZodOptional<z.ZodString>;
|
|
2849
2949
|
kind: z.ZodLiteral<"HOVER">;
|
|
2850
2950
|
}, z.core.$strict>, z.ZodObject<{
|
|
2851
|
-
selector: z.ZodString
|
|
2951
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
2852
2952
|
target: z.ZodOptional<z.ZodObject<{
|
|
2853
2953
|
text: z.ZodOptional<z.ZodString>;
|
|
2954
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2854
2955
|
role: z.ZodOptional<z.ZodString>;
|
|
2855
2956
|
label: z.ZodOptional<z.ZodString>;
|
|
2957
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2856
2958
|
near: z.ZodOptional<z.ZodString>;
|
|
2959
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2857
2960
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2961
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2858
2962
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2859
2963
|
}, z.core.$strict>>;
|
|
2860
2964
|
optionLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -2892,13 +2996,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2892
2996
|
stepId: z.ZodOptional<z.ZodString>;
|
|
2893
2997
|
kind: z.ZodLiteral<"SELECT_OPTION">;
|
|
2894
2998
|
}, z.core.$strict>, z.ZodObject<{
|
|
2895
|
-
selector: z.ZodString
|
|
2999
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
2896
3000
|
target: z.ZodOptional<z.ZodObject<{
|
|
2897
3001
|
text: z.ZodOptional<z.ZodString>;
|
|
3002
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2898
3003
|
role: z.ZodOptional<z.ZodString>;
|
|
2899
3004
|
label: z.ZodOptional<z.ZodString>;
|
|
3005
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2900
3006
|
near: z.ZodOptional<z.ZodString>;
|
|
3007
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2901
3008
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3009
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2902
3010
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2903
3011
|
}, z.core.$strict>>;
|
|
2904
3012
|
checked: z.ZodBoolean;
|
|
@@ -2934,13 +3042,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2934
3042
|
stepId: z.ZodOptional<z.ZodString>;
|
|
2935
3043
|
kind: z.ZodLiteral<"CHECK">;
|
|
2936
3044
|
}, z.core.$strict>, z.ZodObject<{
|
|
2937
|
-
selector: z.ZodString
|
|
3045
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
2938
3046
|
target: z.ZodOptional<z.ZodObject<{
|
|
2939
3047
|
text: z.ZodOptional<z.ZodString>;
|
|
3048
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2940
3049
|
role: z.ZodOptional<z.ZodString>;
|
|
2941
3050
|
label: z.ZodOptional<z.ZodString>;
|
|
3051
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2942
3052
|
near: z.ZodOptional<z.ZodString>;
|
|
3053
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2943
3054
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3055
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2944
3056
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2945
3057
|
}, z.core.$strict>>;
|
|
2946
3058
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -2975,13 +3087,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2975
3087
|
stepId: z.ZodOptional<z.ZodString>;
|
|
2976
3088
|
kind: z.ZodLiteral<"DOUBLE_CLICK">;
|
|
2977
3089
|
}, z.core.$strict>, z.ZodObject<{
|
|
2978
|
-
selector: z.ZodString
|
|
3090
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
2979
3091
|
target: z.ZodOptional<z.ZodObject<{
|
|
2980
3092
|
text: z.ZodOptional<z.ZodString>;
|
|
3093
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2981
3094
|
role: z.ZodOptional<z.ZodString>;
|
|
2982
3095
|
label: z.ZodOptional<z.ZodString>;
|
|
3096
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2983
3097
|
near: z.ZodOptional<z.ZodString>;
|
|
3098
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2984
3099
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3100
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2985
3101
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2986
3102
|
}, z.core.$strict>>;
|
|
2987
3103
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -2989,10 +3105,14 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
2989
3105
|
toSelector: z.ZodOptional<z.ZodString>;
|
|
2990
3106
|
toTarget: z.ZodOptional<z.ZodObject<{
|
|
2991
3107
|
text: z.ZodOptional<z.ZodString>;
|
|
3108
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2992
3109
|
role: z.ZodOptional<z.ZodString>;
|
|
2993
3110
|
label: z.ZodOptional<z.ZodString>;
|
|
3111
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2994
3112
|
near: z.ZodOptional<z.ZodString>;
|
|
3113
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2995
3114
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3115
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2996
3116
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
2997
3117
|
}, z.core.$strict>>;
|
|
2998
3118
|
toSelectorAlternates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3295,13 +3415,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3295
3415
|
stepId: z.ZodOptional<z.ZodString>;
|
|
3296
3416
|
kind: z.ZodLiteral<"ASSERT_SURFACE">;
|
|
3297
3417
|
}, z.core.$strict>, z.ZodObject<{
|
|
3298
|
-
selector: z.ZodString
|
|
3418
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
3299
3419
|
target: z.ZodOptional<z.ZodObject<{
|
|
3300
3420
|
text: z.ZodOptional<z.ZodString>;
|
|
3421
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3301
3422
|
role: z.ZodOptional<z.ZodString>;
|
|
3302
3423
|
label: z.ZodOptional<z.ZodString>;
|
|
3424
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3303
3425
|
near: z.ZodOptional<z.ZodString>;
|
|
3426
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3304
3427
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3428
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3305
3429
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3306
3430
|
}, z.core.$strict>>;
|
|
3307
3431
|
button: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3340,13 +3464,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3340
3464
|
stepId: z.ZodOptional<z.ZodString>;
|
|
3341
3465
|
kind: z.ZodLiteral<"CLICK">;
|
|
3342
3466
|
}, z.core.$strict>, z.ZodObject<{
|
|
3343
|
-
selector: z.ZodString
|
|
3467
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
3344
3468
|
target: z.ZodOptional<z.ZodObject<{
|
|
3345
3469
|
text: z.ZodOptional<z.ZodString>;
|
|
3470
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3346
3471
|
role: z.ZodOptional<z.ZodString>;
|
|
3347
3472
|
label: z.ZodOptional<z.ZodString>;
|
|
3473
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3348
3474
|
near: z.ZodOptional<z.ZodString>;
|
|
3475
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3349
3476
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3477
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3350
3478
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3351
3479
|
}, z.core.$strict>>;
|
|
3352
3480
|
text: z.ZodString;
|
|
@@ -3418,10 +3546,14 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3418
3546
|
selector: z.ZodOptional<z.ZodString>;
|
|
3419
3547
|
target: z.ZodOptional<z.ZodObject<{
|
|
3420
3548
|
text: z.ZodOptional<z.ZodString>;
|
|
3549
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3421
3550
|
role: z.ZodOptional<z.ZodString>;
|
|
3422
3551
|
label: z.ZodOptional<z.ZodString>;
|
|
3552
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3423
3553
|
near: z.ZodOptional<z.ZodString>;
|
|
3554
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3424
3555
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3556
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3425
3557
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3426
3558
|
}, z.core.$strict>>;
|
|
3427
3559
|
state: z.ZodEnum<{
|
|
@@ -3597,10 +3729,14 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3597
3729
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
3598
3730
|
target: z.ZodOptional<z.ZodObject<{
|
|
3599
3731
|
text: z.ZodOptional<z.ZodString>;
|
|
3732
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3600
3733
|
role: z.ZodOptional<z.ZodString>;
|
|
3601
3734
|
label: z.ZodOptional<z.ZodString>;
|
|
3735
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3602
3736
|
near: z.ZodOptional<z.ZodString>;
|
|
3737
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3603
3738
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3739
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3604
3740
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3605
3741
|
}, z.core.$strict>>;
|
|
3606
3742
|
description: z.ZodString;
|
|
@@ -3740,13 +3876,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3740
3876
|
stepId: z.ZodOptional<z.ZodString>;
|
|
3741
3877
|
kind: z.ZodLiteral<"END_CLIP">;
|
|
3742
3878
|
}, z.core.$strict>, z.ZodObject<{
|
|
3743
|
-
selector: z.ZodString
|
|
3879
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
3744
3880
|
target: z.ZodOptional<z.ZodObject<{
|
|
3745
3881
|
text: z.ZodOptional<z.ZodString>;
|
|
3882
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3746
3883
|
role: z.ZodOptional<z.ZodString>;
|
|
3747
3884
|
label: z.ZodOptional<z.ZodString>;
|
|
3885
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3748
3886
|
near: z.ZodOptional<z.ZodString>;
|
|
3887
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3749
3888
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3889
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3750
3890
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3751
3891
|
}, z.core.$strict>>;
|
|
3752
3892
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -3781,13 +3921,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3781
3921
|
stepId: z.ZodOptional<z.ZodString>;
|
|
3782
3922
|
kind: z.ZodLiteral<"HOVER">;
|
|
3783
3923
|
}, z.core.$strict>, z.ZodObject<{
|
|
3784
|
-
selector: z.ZodString
|
|
3924
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
3785
3925
|
target: z.ZodOptional<z.ZodObject<{
|
|
3786
3926
|
text: z.ZodOptional<z.ZodString>;
|
|
3927
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3787
3928
|
role: z.ZodOptional<z.ZodString>;
|
|
3788
3929
|
label: z.ZodOptional<z.ZodString>;
|
|
3930
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3789
3931
|
near: z.ZodOptional<z.ZodString>;
|
|
3932
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3790
3933
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3934
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3791
3935
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3792
3936
|
}, z.core.$strict>>;
|
|
3793
3937
|
optionLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -3825,13 +3969,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3825
3969
|
stepId: z.ZodOptional<z.ZodString>;
|
|
3826
3970
|
kind: z.ZodLiteral<"SELECT_OPTION">;
|
|
3827
3971
|
}, z.core.$strict>, z.ZodObject<{
|
|
3828
|
-
selector: z.ZodString
|
|
3972
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
3829
3973
|
target: z.ZodOptional<z.ZodObject<{
|
|
3830
3974
|
text: z.ZodOptional<z.ZodString>;
|
|
3975
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3831
3976
|
role: z.ZodOptional<z.ZodString>;
|
|
3832
3977
|
label: z.ZodOptional<z.ZodString>;
|
|
3978
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3833
3979
|
near: z.ZodOptional<z.ZodString>;
|
|
3980
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3834
3981
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3982
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3835
3983
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3836
3984
|
}, z.core.$strict>>;
|
|
3837
3985
|
checked: z.ZodBoolean;
|
|
@@ -3867,13 +4015,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3867
4015
|
stepId: z.ZodOptional<z.ZodString>;
|
|
3868
4016
|
kind: z.ZodLiteral<"CHECK">;
|
|
3869
4017
|
}, z.core.$strict>, z.ZodObject<{
|
|
3870
|
-
selector: z.ZodString
|
|
4018
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
3871
4019
|
target: z.ZodOptional<z.ZodObject<{
|
|
3872
4020
|
text: z.ZodOptional<z.ZodString>;
|
|
4021
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3873
4022
|
role: z.ZodOptional<z.ZodString>;
|
|
3874
4023
|
label: z.ZodOptional<z.ZodString>;
|
|
4024
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3875
4025
|
near: z.ZodOptional<z.ZodString>;
|
|
4026
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3876
4027
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
4028
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3877
4029
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3878
4030
|
}, z.core.$strict>>;
|
|
3879
4031
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -3908,13 +4060,17 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3908
4060
|
stepId: z.ZodOptional<z.ZodString>;
|
|
3909
4061
|
kind: z.ZodLiteral<"DOUBLE_CLICK">;
|
|
3910
4062
|
}, z.core.$strict>, z.ZodObject<{
|
|
3911
|
-
selector: z.ZodString
|
|
4063
|
+
selector: z.ZodOptional<z.ZodString>;
|
|
3912
4064
|
target: z.ZodOptional<z.ZodObject<{
|
|
3913
4065
|
text: z.ZodOptional<z.ZodString>;
|
|
4066
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3914
4067
|
role: z.ZodOptional<z.ZodString>;
|
|
3915
4068
|
label: z.ZodOptional<z.ZodString>;
|
|
4069
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3916
4070
|
near: z.ZodOptional<z.ZodString>;
|
|
4071
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3917
4072
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
4073
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3918
4074
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3919
4075
|
}, z.core.$strict>>;
|
|
3920
4076
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
@@ -3922,10 +4078,14 @@ export declare const HealerPatchSchema: z.ZodObject<{
|
|
|
3922
4078
|
toSelector: z.ZodOptional<z.ZodString>;
|
|
3923
4079
|
toTarget: z.ZodOptional<z.ZodObject<{
|
|
3924
4080
|
text: z.ZodOptional<z.ZodString>;
|
|
4081
|
+
textByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3925
4082
|
role: z.ZodOptional<z.ZodString>;
|
|
3926
4083
|
label: z.ZodOptional<z.ZodString>;
|
|
4084
|
+
labelByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3927
4085
|
near: z.ZodOptional<z.ZodString>;
|
|
4086
|
+
nearByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3928
4087
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
4088
|
+
placeholderByLocale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3929
4089
|
exact: z.ZodOptional<z.ZodBoolean>;
|
|
3930
4090
|
}, z.core.$strict>>;
|
|
3931
4091
|
toSelectorAlternates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -4254,6 +4414,82 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4254
4414
|
maxFailures: number;
|
|
4255
4415
|
kind: "ASSERT_SURFACE";
|
|
4256
4416
|
stepId?: string | undefined;
|
|
4417
|
+
} | {
|
|
4418
|
+
description: string;
|
|
4419
|
+
postcondition: {
|
|
4420
|
+
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
4421
|
+
pattern?: string | undefined;
|
|
4422
|
+
selector?: string | undefined;
|
|
4423
|
+
text?: string | undefined;
|
|
4424
|
+
threshold?: number | undefined;
|
|
4425
|
+
waitMs?: number | undefined;
|
|
4426
|
+
};
|
|
4427
|
+
recovery: {
|
|
4428
|
+
retries: number;
|
|
4429
|
+
useSelectorMemory: boolean;
|
|
4430
|
+
useAltInteraction: boolean;
|
|
4431
|
+
allowReload: boolean;
|
|
4432
|
+
allowHealer: boolean;
|
|
4433
|
+
};
|
|
4434
|
+
timeoutMs: number;
|
|
4435
|
+
maxFailures: number;
|
|
4436
|
+
kind: "CLICK";
|
|
4437
|
+
selector?: string | undefined;
|
|
4438
|
+
target?: {
|
|
4439
|
+
text?: string | undefined;
|
|
4440
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4441
|
+
role?: string | undefined;
|
|
4442
|
+
label?: string | undefined;
|
|
4443
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4444
|
+
near?: string | undefined;
|
|
4445
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4446
|
+
placeholder?: string | undefined;
|
|
4447
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4448
|
+
exact?: boolean | undefined;
|
|
4449
|
+
} | undefined;
|
|
4450
|
+
button?: "right" | "middle" | undefined;
|
|
4451
|
+
fingerprint?: string | undefined;
|
|
4452
|
+
selectorAlternates?: string[] | undefined;
|
|
4453
|
+
stepId?: string | undefined;
|
|
4454
|
+
} | {
|
|
4455
|
+
text: string;
|
|
4456
|
+
clearFirst: boolean;
|
|
4457
|
+
description: string;
|
|
4458
|
+
postcondition: {
|
|
4459
|
+
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
4460
|
+
pattern?: string | undefined;
|
|
4461
|
+
selector?: string | undefined;
|
|
4462
|
+
text?: string | undefined;
|
|
4463
|
+
threshold?: number | undefined;
|
|
4464
|
+
waitMs?: number | undefined;
|
|
4465
|
+
};
|
|
4466
|
+
recovery: {
|
|
4467
|
+
retries: number;
|
|
4468
|
+
useSelectorMemory: boolean;
|
|
4469
|
+
useAltInteraction: boolean;
|
|
4470
|
+
allowReload: boolean;
|
|
4471
|
+
allowHealer: boolean;
|
|
4472
|
+
};
|
|
4473
|
+
timeoutMs: number;
|
|
4474
|
+
maxFailures: number;
|
|
4475
|
+
kind: "TYPE";
|
|
4476
|
+
selector?: string | undefined;
|
|
4477
|
+
target?: {
|
|
4478
|
+
text?: string | undefined;
|
|
4479
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4480
|
+
role?: string | undefined;
|
|
4481
|
+
label?: string | undefined;
|
|
4482
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4483
|
+
near?: string | undefined;
|
|
4484
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4485
|
+
placeholder?: string | undefined;
|
|
4486
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4487
|
+
exact?: boolean | undefined;
|
|
4488
|
+
} | undefined;
|
|
4489
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4490
|
+
fingerprint?: string | undefined;
|
|
4491
|
+
selectorAlternates?: string[] | undefined;
|
|
4492
|
+
stepId?: string | undefined;
|
|
4257
4493
|
} | {
|
|
4258
4494
|
state: "visible" | "attached";
|
|
4259
4495
|
description: string;
|
|
@@ -4278,10 +4514,14 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4278
4514
|
selector?: string | undefined;
|
|
4279
4515
|
target?: {
|
|
4280
4516
|
text?: string | undefined;
|
|
4517
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4281
4518
|
role?: string | undefined;
|
|
4282
4519
|
label?: string | undefined;
|
|
4520
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4283
4521
|
near?: string | undefined;
|
|
4522
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4284
4523
|
placeholder?: string | undefined;
|
|
4524
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4285
4525
|
exact?: boolean | undefined;
|
|
4286
4526
|
} | undefined;
|
|
4287
4527
|
stepId?: string | undefined;
|
|
@@ -4368,7 +4608,6 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4368
4608
|
}[] | undefined;
|
|
4369
4609
|
stepId?: string | undefined;
|
|
4370
4610
|
} | {
|
|
4371
|
-
selector: string;
|
|
4372
4611
|
description: string;
|
|
4373
4612
|
postcondition: {
|
|
4374
4613
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4387,23 +4626,24 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4387
4626
|
};
|
|
4388
4627
|
timeoutMs: number;
|
|
4389
4628
|
maxFailures: number;
|
|
4390
|
-
kind: "
|
|
4629
|
+
kind: "HOVER";
|
|
4630
|
+
selector?: string | undefined;
|
|
4391
4631
|
target?: {
|
|
4392
4632
|
text?: string | undefined;
|
|
4633
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4393
4634
|
role?: string | undefined;
|
|
4394
4635
|
label?: string | undefined;
|
|
4636
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4395
4637
|
near?: string | undefined;
|
|
4638
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4396
4639
|
placeholder?: string | undefined;
|
|
4640
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4397
4641
|
exact?: boolean | undefined;
|
|
4398
4642
|
} | undefined;
|
|
4399
|
-
optionLabel?: string | undefined;
|
|
4400
|
-
optionValue?: string | undefined;
|
|
4401
|
-
optionIndex?: number | undefined;
|
|
4402
4643
|
fingerprint?: string | undefined;
|
|
4403
4644
|
selectorAlternates?: string[] | undefined;
|
|
4404
4645
|
stepId?: string | undefined;
|
|
4405
4646
|
} | {
|
|
4406
|
-
selector: string;
|
|
4407
4647
|
description: string;
|
|
4408
4648
|
postcondition: {
|
|
4409
4649
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4422,67 +4662,28 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4422
4662
|
};
|
|
4423
4663
|
timeoutMs: number;
|
|
4424
4664
|
maxFailures: number;
|
|
4425
|
-
kind: "
|
|
4665
|
+
kind: "SELECT_OPTION";
|
|
4666
|
+
selector?: string | undefined;
|
|
4426
4667
|
target?: {
|
|
4427
4668
|
text?: string | undefined;
|
|
4669
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4428
4670
|
role?: string | undefined;
|
|
4429
4671
|
label?: string | undefined;
|
|
4672
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4430
4673
|
near?: string | undefined;
|
|
4674
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4431
4675
|
placeholder?: string | undefined;
|
|
4676
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4432
4677
|
exact?: boolean | undefined;
|
|
4433
4678
|
} | undefined;
|
|
4679
|
+
optionLabel?: string | undefined;
|
|
4680
|
+
optionValue?: string | undefined;
|
|
4681
|
+
optionIndex?: number | undefined;
|
|
4434
4682
|
fingerprint?: string | undefined;
|
|
4435
4683
|
selectorAlternates?: string[] | undefined;
|
|
4436
|
-
toSelector?: string | undefined;
|
|
4437
|
-
toTarget?: {
|
|
4438
|
-
text?: string | undefined;
|
|
4439
|
-
role?: string | undefined;
|
|
4440
|
-
label?: string | undefined;
|
|
4441
|
-
near?: string | undefined;
|
|
4442
|
-
placeholder?: string | undefined;
|
|
4443
|
-
exact?: boolean | undefined;
|
|
4444
|
-
} | undefined;
|
|
4445
|
-
toSelectorAlternates?: string[] | undefined;
|
|
4446
|
-
offset?: {
|
|
4447
|
-
dx: number;
|
|
4448
|
-
dy: number;
|
|
4449
|
-
} | undefined;
|
|
4450
|
-
stepId?: string | undefined;
|
|
4451
|
-
} | {
|
|
4452
|
-
groupName: string;
|
|
4453
|
-
description: string;
|
|
4454
|
-
postcondition: {
|
|
4455
|
-
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
4456
|
-
pattern?: string | undefined;
|
|
4457
|
-
selector?: string | undefined;
|
|
4458
|
-
text?: string | undefined;
|
|
4459
|
-
threshold?: number | undefined;
|
|
4460
|
-
waitMs?: number | undefined;
|
|
4461
|
-
};
|
|
4462
|
-
recovery: {
|
|
4463
|
-
retries: number;
|
|
4464
|
-
useSelectorMemory: boolean;
|
|
4465
|
-
useAltInteraction: boolean;
|
|
4466
|
-
allowReload: boolean;
|
|
4467
|
-
allowHealer: boolean;
|
|
4468
|
-
};
|
|
4469
|
-
timeoutMs: number;
|
|
4470
|
-
maxFailures: number;
|
|
4471
|
-
kind: "INJECT_MOCK_DATA";
|
|
4472
|
-
containerSelector?: string | undefined;
|
|
4473
|
-
templateSelector?: string | undefined;
|
|
4474
|
-
count?: number | undefined;
|
|
4475
|
-
removeTemplate?: boolean | undefined;
|
|
4476
|
-
slotMappings?: {
|
|
4477
|
-
slot: string;
|
|
4478
|
-
selector: string;
|
|
4479
|
-
attribute?: string | undefined;
|
|
4480
|
-
}[] | undefined;
|
|
4481
|
-
inputSelector?: string | undefined;
|
|
4482
|
-
triggerSelector?: string | undefined;
|
|
4483
4684
|
stepId?: string | undefined;
|
|
4484
4685
|
} | {
|
|
4485
|
-
|
|
4686
|
+
checked: boolean;
|
|
4486
4687
|
description: string;
|
|
4487
4688
|
postcondition: {
|
|
4488
4689
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4501,31 +4702,24 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4501
4702
|
};
|
|
4502
4703
|
timeoutMs: number;
|
|
4503
4704
|
maxFailures: number;
|
|
4504
|
-
kind: "
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
description: string;
|
|
4508
|
-
postcondition: {
|
|
4509
|
-
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
4510
|
-
pattern?: string | undefined;
|
|
4511
|
-
selector?: string | undefined;
|
|
4705
|
+
kind: "CHECK";
|
|
4706
|
+
selector?: string | undefined;
|
|
4707
|
+
target?: {
|
|
4512
4708
|
text?: string | undefined;
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
};
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
kind: "DISMISS_OVERLAYS";
|
|
4709
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4710
|
+
role?: string | undefined;
|
|
4711
|
+
label?: string | undefined;
|
|
4712
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4713
|
+
near?: string | undefined;
|
|
4714
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4715
|
+
placeholder?: string | undefined;
|
|
4716
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4717
|
+
exact?: boolean | undefined;
|
|
4718
|
+
} | undefined;
|
|
4719
|
+
fingerprint?: string | undefined;
|
|
4720
|
+
selectorAlternates?: string[] | undefined;
|
|
4526
4721
|
stepId?: string | undefined;
|
|
4527
4722
|
} | {
|
|
4528
|
-
selector: string;
|
|
4529
4723
|
description: string;
|
|
4530
4724
|
postcondition: {
|
|
4531
4725
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4544,23 +4738,24 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4544
4738
|
};
|
|
4545
4739
|
timeoutMs: number;
|
|
4546
4740
|
maxFailures: number;
|
|
4547
|
-
kind: "
|
|
4741
|
+
kind: "DOUBLE_CLICK";
|
|
4742
|
+
selector?: string | undefined;
|
|
4548
4743
|
target?: {
|
|
4549
4744
|
text?: string | undefined;
|
|
4745
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4550
4746
|
role?: string | undefined;
|
|
4551
4747
|
label?: string | undefined;
|
|
4748
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4552
4749
|
near?: string | undefined;
|
|
4750
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4553
4751
|
placeholder?: string | undefined;
|
|
4752
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4554
4753
|
exact?: boolean | undefined;
|
|
4555
4754
|
} | undefined;
|
|
4556
|
-
button?: "right" | "middle" | undefined;
|
|
4557
4755
|
fingerprint?: string | undefined;
|
|
4558
4756
|
selectorAlternates?: string[] | undefined;
|
|
4559
4757
|
stepId?: string | undefined;
|
|
4560
4758
|
} | {
|
|
4561
|
-
selector: string;
|
|
4562
|
-
text: string;
|
|
4563
|
-
clearFirst: boolean;
|
|
4564
4759
|
description: string;
|
|
4565
4760
|
postcondition: {
|
|
4566
4761
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4579,21 +4774,43 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4579
4774
|
};
|
|
4580
4775
|
timeoutMs: number;
|
|
4581
4776
|
maxFailures: number;
|
|
4582
|
-
kind: "
|
|
4777
|
+
kind: "DRAG";
|
|
4778
|
+
selector?: string | undefined;
|
|
4583
4779
|
target?: {
|
|
4584
4780
|
text?: string | undefined;
|
|
4781
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4585
4782
|
role?: string | undefined;
|
|
4586
4783
|
label?: string | undefined;
|
|
4784
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4587
4785
|
near?: string | undefined;
|
|
4786
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4588
4787
|
placeholder?: string | undefined;
|
|
4788
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4589
4789
|
exact?: boolean | undefined;
|
|
4590
4790
|
} | undefined;
|
|
4591
|
-
textByLocale?: Record<string, string> | undefined;
|
|
4592
4791
|
fingerprint?: string | undefined;
|
|
4593
4792
|
selectorAlternates?: string[] | undefined;
|
|
4793
|
+
toSelector?: string | undefined;
|
|
4794
|
+
toTarget?: {
|
|
4795
|
+
text?: string | undefined;
|
|
4796
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4797
|
+
role?: string | undefined;
|
|
4798
|
+
label?: string | undefined;
|
|
4799
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4800
|
+
near?: string | undefined;
|
|
4801
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4802
|
+
placeholder?: string | undefined;
|
|
4803
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4804
|
+
exact?: boolean | undefined;
|
|
4805
|
+
} | undefined;
|
|
4806
|
+
toSelectorAlternates?: string[] | undefined;
|
|
4807
|
+
offset?: {
|
|
4808
|
+
dx: number;
|
|
4809
|
+
dy: number;
|
|
4810
|
+
} | undefined;
|
|
4594
4811
|
stepId?: string | undefined;
|
|
4595
4812
|
} | {
|
|
4596
|
-
|
|
4813
|
+
groupName: string;
|
|
4597
4814
|
description: string;
|
|
4598
4815
|
postcondition: {
|
|
4599
4816
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4612,10 +4829,21 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4612
4829
|
};
|
|
4613
4830
|
timeoutMs: number;
|
|
4614
4831
|
maxFailures: number;
|
|
4615
|
-
kind: "
|
|
4832
|
+
kind: "INJECT_MOCK_DATA";
|
|
4833
|
+
containerSelector?: string | undefined;
|
|
4834
|
+
templateSelector?: string | undefined;
|
|
4835
|
+
count?: number | undefined;
|
|
4836
|
+
removeTemplate?: boolean | undefined;
|
|
4837
|
+
slotMappings?: {
|
|
4838
|
+
slot: string;
|
|
4839
|
+
selector: string;
|
|
4840
|
+
attribute?: string | undefined;
|
|
4841
|
+
}[] | undefined;
|
|
4842
|
+
inputSelector?: string | undefined;
|
|
4843
|
+
triggerSelector?: string | undefined;
|
|
4616
4844
|
stepId?: string | undefined;
|
|
4617
4845
|
} | {
|
|
4618
|
-
|
|
4846
|
+
url: string;
|
|
4619
4847
|
description: string;
|
|
4620
4848
|
postcondition: {
|
|
4621
4849
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4634,17 +4862,7 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4634
4862
|
};
|
|
4635
4863
|
timeoutMs: number;
|
|
4636
4864
|
maxFailures: number;
|
|
4637
|
-
kind: "
|
|
4638
|
-
amount?: number | undefined;
|
|
4639
|
-
targetSelector?: string | undefined;
|
|
4640
|
-
target?: {
|
|
4641
|
-
text?: string | undefined;
|
|
4642
|
-
role?: string | undefined;
|
|
4643
|
-
label?: string | undefined;
|
|
4644
|
-
near?: string | undefined;
|
|
4645
|
-
placeholder?: string | undefined;
|
|
4646
|
-
exact?: boolean | undefined;
|
|
4647
|
-
} | undefined;
|
|
4865
|
+
kind: "NAVIGATE";
|
|
4648
4866
|
stepId?: string | undefined;
|
|
4649
4867
|
} | {
|
|
4650
4868
|
description: string;
|
|
@@ -4665,22 +4883,10 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4665
4883
|
};
|
|
4666
4884
|
timeoutMs: number;
|
|
4667
4885
|
maxFailures: number;
|
|
4668
|
-
kind: "
|
|
4669
|
-
captureId?: string | undefined;
|
|
4670
|
-
captureName?: string | undefined;
|
|
4671
|
-
elementSelector?: string | undefined;
|
|
4672
|
-
outscale?: {
|
|
4673
|
-
padding?: number | undefined;
|
|
4674
|
-
paddingTop?: number | undefined;
|
|
4675
|
-
paddingRight?: number | undefined;
|
|
4676
|
-
paddingBottom?: number | undefined;
|
|
4677
|
-
paddingLeft?: number | undefined;
|
|
4678
|
-
paddingPercent?: number | undefined;
|
|
4679
|
-
clampToViewport?: boolean | undefined;
|
|
4680
|
-
backgroundColor?: string | undefined;
|
|
4681
|
-
} | undefined;
|
|
4886
|
+
kind: "DISMISS_OVERLAYS";
|
|
4682
4887
|
stepId?: string | undefined;
|
|
4683
4888
|
} | {
|
|
4889
|
+
key: string;
|
|
4684
4890
|
description: string;
|
|
4685
4891
|
postcondition: {
|
|
4686
4892
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4699,11 +4905,10 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4699
4905
|
};
|
|
4700
4906
|
timeoutMs: number;
|
|
4701
4907
|
maxFailures: number;
|
|
4702
|
-
kind: "
|
|
4703
|
-
clipId?: string | undefined;
|
|
4704
|
-
clipName?: string | undefined;
|
|
4908
|
+
kind: "PRESS_KEY";
|
|
4705
4909
|
stepId?: string | undefined;
|
|
4706
4910
|
} | {
|
|
4911
|
+
direction: "up" | "down" | "left" | "right";
|
|
4707
4912
|
description: string;
|
|
4708
4913
|
postcondition: {
|
|
4709
4914
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4722,12 +4927,23 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4722
4927
|
};
|
|
4723
4928
|
timeoutMs: number;
|
|
4724
4929
|
maxFailures: number;
|
|
4725
|
-
kind: "
|
|
4726
|
-
|
|
4727
|
-
|
|
4930
|
+
kind: "SCROLL";
|
|
4931
|
+
amount?: number | undefined;
|
|
4932
|
+
targetSelector?: string | undefined;
|
|
4933
|
+
target?: {
|
|
4934
|
+
text?: string | undefined;
|
|
4935
|
+
textByLocale?: Record<string, string> | undefined;
|
|
4936
|
+
role?: string | undefined;
|
|
4937
|
+
label?: string | undefined;
|
|
4938
|
+
labelByLocale?: Record<string, string> | undefined;
|
|
4939
|
+
near?: string | undefined;
|
|
4940
|
+
nearByLocale?: Record<string, string> | undefined;
|
|
4941
|
+
placeholder?: string | undefined;
|
|
4942
|
+
placeholderByLocale?: Record<string, string> | undefined;
|
|
4943
|
+
exact?: boolean | undefined;
|
|
4944
|
+
} | undefined;
|
|
4728
4945
|
stepId?: string | undefined;
|
|
4729
4946
|
} | {
|
|
4730
|
-
selector: string;
|
|
4731
4947
|
description: string;
|
|
4732
4948
|
postcondition: {
|
|
4733
4949
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4746,21 +4962,22 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4746
4962
|
};
|
|
4747
4963
|
timeoutMs: number;
|
|
4748
4964
|
maxFailures: number;
|
|
4749
|
-
kind: "
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4965
|
+
kind: "CAPTURE_SCREENSHOT";
|
|
4966
|
+
captureId?: string | undefined;
|
|
4967
|
+
captureName?: string | undefined;
|
|
4968
|
+
elementSelector?: string | undefined;
|
|
4969
|
+
outscale?: {
|
|
4970
|
+
padding?: number | undefined;
|
|
4971
|
+
paddingTop?: number | undefined;
|
|
4972
|
+
paddingRight?: number | undefined;
|
|
4973
|
+
paddingBottom?: number | undefined;
|
|
4974
|
+
paddingLeft?: number | undefined;
|
|
4975
|
+
paddingPercent?: number | undefined;
|
|
4976
|
+
clampToViewport?: boolean | undefined;
|
|
4977
|
+
backgroundColor?: string | undefined;
|
|
4757
4978
|
} | undefined;
|
|
4758
|
-
fingerprint?: string | undefined;
|
|
4759
|
-
selectorAlternates?: string[] | undefined;
|
|
4760
4979
|
stepId?: string | undefined;
|
|
4761
4980
|
} | {
|
|
4762
|
-
selector: string;
|
|
4763
|
-
checked: boolean;
|
|
4764
4981
|
description: string;
|
|
4765
4982
|
postcondition: {
|
|
4766
4983
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4779,20 +4996,11 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4779
4996
|
};
|
|
4780
4997
|
timeoutMs: number;
|
|
4781
4998
|
maxFailures: number;
|
|
4782
|
-
kind: "
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
role?: string | undefined;
|
|
4786
|
-
label?: string | undefined;
|
|
4787
|
-
near?: string | undefined;
|
|
4788
|
-
placeholder?: string | undefined;
|
|
4789
|
-
exact?: boolean | undefined;
|
|
4790
|
-
} | undefined;
|
|
4791
|
-
fingerprint?: string | undefined;
|
|
4792
|
-
selectorAlternates?: string[] | undefined;
|
|
4999
|
+
kind: "BEGIN_CLIP";
|
|
5000
|
+
clipId?: string | undefined;
|
|
5001
|
+
clipName?: string | undefined;
|
|
4793
5002
|
stepId?: string | undefined;
|
|
4794
5003
|
} | {
|
|
4795
|
-
selector: string;
|
|
4796
5004
|
description: string;
|
|
4797
5005
|
postcondition: {
|
|
4798
5006
|
type: "route_matches" | "element_visible" | "element_absent" | "text_contains" | "overlay_dismissed" | "screenshot_stable" | "any_change" | "always";
|
|
@@ -4811,17 +5019,9 @@ export declare function safeParseProgramResult(data: unknown): z.ZodSafeParseRes
|
|
|
4811
5019
|
};
|
|
4812
5020
|
timeoutMs: number;
|
|
4813
5021
|
maxFailures: number;
|
|
4814
|
-
kind: "
|
|
4815
|
-
|
|
4816
|
-
|
|
4817
|
-
role?: string | undefined;
|
|
4818
|
-
label?: string | undefined;
|
|
4819
|
-
near?: string | undefined;
|
|
4820
|
-
placeholder?: string | undefined;
|
|
4821
|
-
exact?: boolean | undefined;
|
|
4822
|
-
} | undefined;
|
|
4823
|
-
fingerprint?: string | undefined;
|
|
4824
|
-
selectorAlternates?: string[] | undefined;
|
|
5022
|
+
kind: "END_CLIP";
|
|
5023
|
+
clipId?: string | undefined;
|
|
5024
|
+
clipName?: string | undefined;
|
|
4825
5025
|
stepId?: string | undefined;
|
|
4826
5026
|
} | {
|
|
4827
5027
|
sourceSelector: string;
|