doc-detective-common 4.0.0-beta.0-dev.7 → 4.0.0-beta.0-dev.9

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 (45) hide show
  1. package/dist/detectTests.d.ts +17 -22
  2. package/dist/detectTests.d.ts.map +1 -1
  3. package/dist/detectTests.js +81 -4
  4. package/dist/detectTests.js.map +1 -1
  5. package/dist/fileTypes.d.ts +35 -0
  6. package/dist/fileTypes.d.ts.map +1 -0
  7. package/dist/fileTypes.js +293 -0
  8. package/dist/fileTypes.js.map +1 -0
  9. package/dist/index.cjs +7288 -162
  10. package/dist/index.d.cts +2 -1
  11. package/dist/index.d.ts +2 -1
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/index.js +1 -0
  14. package/dist/index.js.map +1 -1
  15. package/dist/schemas/schemas.json +6786 -0
  16. package/dist/types/generated/step_v3.d.ts +288 -0
  17. package/dist/types/generated/step_v3.d.ts.map +1 -1
  18. package/dist/types/generated/test_v3.d.ts +576 -0
  19. package/dist/types/generated/test_v3.d.ts.map +1 -1
  20. package/package.json +8 -7
  21. package/dist/schemas/checkLink_v3.schema.json +0 -145
  22. package/dist/schemas/click_v3.schema.json +0 -252
  23. package/dist/schemas/config_v3.schema.json +0 -16470
  24. package/dist/schemas/context_v3.schema.json +0 -374
  25. package/dist/schemas/dragAndDrop_v3.schema.json +0 -496
  26. package/dist/schemas/find_v3.schema.json +0 -1349
  27. package/dist/schemas/goTo_v3.schema.json +0 -419
  28. package/dist/schemas/httpRequest_v3.schema.json +0 -994
  29. package/dist/schemas/loadCookie_v3.schema.json +0 -228
  30. package/dist/schemas/loadVariables_v3.schema.json +0 -9
  31. package/dist/schemas/openApi_v3.schema.json +0 -162
  32. package/dist/schemas/record_v3.schema.json +0 -101
  33. package/dist/schemas/report_v3.schema.json +0 -16826
  34. package/dist/schemas/resolvedTests_v3.schema.json +0 -33331
  35. package/dist/schemas/runCode_v3.schema.json +0 -222
  36. package/dist/schemas/runShell_v3.schema.json +0 -236
  37. package/dist/schemas/saveCookie_v3.schema.json +0 -245
  38. package/dist/schemas/screenshot_v3.schema.json +0 -681
  39. package/dist/schemas/sourceIntegration_v3.schema.json +0 -50
  40. package/dist/schemas/spec_v3.schema.json +0 -16630
  41. package/dist/schemas/step_v3.schema.json +0 -7317
  42. package/dist/schemas/stopRecord_v3.schema.json +0 -12
  43. package/dist/schemas/test_v3.schema.json +0 -15863
  44. package/dist/schemas/type_v3.schema.json +0 -244
  45. package/dist/schemas/wait_v3.schema.json +0 -41
@@ -642,6 +642,7 @@ export interface Common {
642
642
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
643
643
  */
644
644
  breakpoint?: boolean;
645
+ location?: SourceLocation;
645
646
  [k: string]: unknown;
646
647
  }
647
648
  /**
@@ -668,6 +669,23 @@ export interface VariablesStep {
668
669
  */
669
670
  [k: string]: string;
670
671
  }
672
+ /**
673
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
674
+ */
675
+ export interface SourceLocation {
676
+ /**
677
+ * 1-indexed line number in the source file where the step was detected.
678
+ */
679
+ line: number;
680
+ /**
681
+ * 0-indexed character offset from the start of the source file where the step begins.
682
+ */
683
+ startIndex: number;
684
+ /**
685
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
686
+ */
687
+ endIndex: number;
688
+ }
671
689
  export interface CheckLink {
672
690
  checkLink: CheckLink1;
673
691
  [k: string]: unknown;
@@ -712,6 +730,7 @@ export interface Common1 {
712
730
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
713
731
  */
714
732
  breakpoint?: boolean;
733
+ location?: SourceLocation1;
715
734
  [k: string]: unknown;
716
735
  }
717
736
  /**
@@ -738,6 +757,23 @@ export interface VariablesStep1 {
738
757
  */
739
758
  [k: string]: string;
740
759
  }
760
+ /**
761
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
762
+ */
763
+ export interface SourceLocation1 {
764
+ /**
765
+ * 1-indexed line number in the source file where the step was detected.
766
+ */
767
+ line: number;
768
+ /**
769
+ * 0-indexed character offset from the start of the source file where the step begins.
770
+ */
771
+ startIndex: number;
772
+ /**
773
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
774
+ */
775
+ endIndex: number;
776
+ }
741
777
  export interface Click {
742
778
  click: Click1;
743
779
  [k: string]: unknown;
@@ -765,6 +801,7 @@ export interface Common2 {
765
801
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
766
802
  */
767
803
  breakpoint?: boolean;
804
+ location?: SourceLocation2;
768
805
  [k: string]: unknown;
769
806
  }
770
807
  /**
@@ -791,6 +828,23 @@ export interface VariablesStep2 {
791
828
  */
792
829
  [k: string]: string;
793
830
  }
831
+ /**
832
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
833
+ */
834
+ export interface SourceLocation2 {
835
+ /**
836
+ * 1-indexed line number in the source file where the step was detected.
837
+ */
838
+ line: number;
839
+ /**
840
+ * 0-indexed character offset from the start of the source file where the step begins.
841
+ */
842
+ startIndex: number;
843
+ /**
844
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
845
+ */
846
+ endIndex: number;
847
+ }
794
848
  export interface Find {
795
849
  find: Find1;
796
850
  [k: string]: unknown;
@@ -818,6 +872,7 @@ export interface Common3 {
818
872
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
819
873
  */
820
874
  breakpoint?: boolean;
875
+ location?: SourceLocation3;
821
876
  [k: string]: unknown;
822
877
  }
823
878
  /**
@@ -844,6 +899,23 @@ export interface VariablesStep3 {
844
899
  */
845
900
  [k: string]: string;
846
901
  }
902
+ /**
903
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
904
+ */
905
+ export interface SourceLocation3 {
906
+ /**
907
+ * 1-indexed line number in the source file where the step was detected.
908
+ */
909
+ line: number;
910
+ /**
911
+ * 0-indexed character offset from the start of the source file where the step begins.
912
+ */
913
+ startIndex: number;
914
+ /**
915
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
916
+ */
917
+ endIndex: number;
918
+ }
847
919
  export interface GoTo {
848
920
  goTo: GoTo1;
849
921
  [k: string]: unknown;
@@ -919,6 +991,7 @@ export interface Common4 {
919
991
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
920
992
  */
921
993
  breakpoint?: boolean;
994
+ location?: SourceLocation4;
922
995
  [k: string]: unknown;
923
996
  }
924
997
  /**
@@ -945,6 +1018,23 @@ export interface VariablesStep4 {
945
1018
  */
946
1019
  [k: string]: string;
947
1020
  }
1021
+ /**
1022
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1023
+ */
1024
+ export interface SourceLocation4 {
1025
+ /**
1026
+ * 1-indexed line number in the source file where the step was detected.
1027
+ */
1028
+ line: number;
1029
+ /**
1030
+ * 0-indexed character offset from the start of the source file where the step begins.
1031
+ */
1032
+ startIndex: number;
1033
+ /**
1034
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1035
+ */
1036
+ endIndex: number;
1037
+ }
948
1038
  export interface HttpRequest {
949
1039
  httpRequest: HttpRequest1;
950
1040
  [k: string]: unknown;
@@ -972,6 +1062,7 @@ export interface Common5 {
972
1062
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
973
1063
  */
974
1064
  breakpoint?: boolean;
1065
+ location?: SourceLocation5;
975
1066
  [k: string]: unknown;
976
1067
  }
977
1068
  /**
@@ -998,6 +1089,23 @@ export interface VariablesStep5 {
998
1089
  */
999
1090
  [k: string]: string;
1000
1091
  }
1092
+ /**
1093
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1094
+ */
1095
+ export interface SourceLocation5 {
1096
+ /**
1097
+ * 1-indexed line number in the source file where the step was detected.
1098
+ */
1099
+ line: number;
1100
+ /**
1101
+ * 0-indexed character offset from the start of the source file where the step begins.
1102
+ */
1103
+ startIndex: number;
1104
+ /**
1105
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1106
+ */
1107
+ endIndex: number;
1108
+ }
1001
1109
  export interface RunShell {
1002
1110
  runShell: RunShell1;
1003
1111
  [k: string]: unknown;
@@ -1068,6 +1176,7 @@ export interface Common6 {
1068
1176
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1069
1177
  */
1070
1178
  breakpoint?: boolean;
1179
+ location?: SourceLocation6;
1071
1180
  [k: string]: unknown;
1072
1181
  }
1073
1182
  /**
@@ -1094,6 +1203,23 @@ export interface VariablesStep6 {
1094
1203
  */
1095
1204
  [k: string]: string;
1096
1205
  }
1206
+ /**
1207
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1208
+ */
1209
+ export interface SourceLocation6 {
1210
+ /**
1211
+ * 1-indexed line number in the source file where the step was detected.
1212
+ */
1213
+ line: number;
1214
+ /**
1215
+ * 0-indexed character offset from the start of the source file where the step begins.
1216
+ */
1217
+ startIndex: number;
1218
+ /**
1219
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1220
+ */
1221
+ endIndex: number;
1222
+ }
1097
1223
  export interface RunCode {
1098
1224
  runCode: RunCode1;
1099
1225
  [k: string]: unknown;
@@ -1169,6 +1295,7 @@ export interface Common7 {
1169
1295
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1170
1296
  */
1171
1297
  breakpoint?: boolean;
1298
+ location?: SourceLocation7;
1172
1299
  [k: string]: unknown;
1173
1300
  }
1174
1301
  /**
@@ -1195,6 +1322,23 @@ export interface VariablesStep7 {
1195
1322
  */
1196
1323
  [k: string]: string;
1197
1324
  }
1325
+ /**
1326
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1327
+ */
1328
+ export interface SourceLocation7 {
1329
+ /**
1330
+ * 1-indexed line number in the source file where the step was detected.
1331
+ */
1332
+ line: number;
1333
+ /**
1334
+ * 0-indexed character offset from the start of the source file where the step begins.
1335
+ */
1336
+ startIndex: number;
1337
+ /**
1338
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1339
+ */
1340
+ endIndex: number;
1341
+ }
1198
1342
  export interface Type {
1199
1343
  type: TypeKeys;
1200
1344
  [k: string]: unknown;
@@ -1259,6 +1403,7 @@ export interface Common8 {
1259
1403
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1260
1404
  */
1261
1405
  breakpoint?: boolean;
1406
+ location?: SourceLocation8;
1262
1407
  [k: string]: unknown;
1263
1408
  }
1264
1409
  /**
@@ -1285,6 +1430,23 @@ export interface VariablesStep8 {
1285
1430
  */
1286
1431
  [k: string]: string;
1287
1432
  }
1433
+ /**
1434
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1435
+ */
1436
+ export interface SourceLocation8 {
1437
+ /**
1438
+ * 1-indexed line number in the source file where the step was detected.
1439
+ */
1440
+ line: number;
1441
+ /**
1442
+ * 0-indexed character offset from the start of the source file where the step begins.
1443
+ */
1444
+ startIndex: number;
1445
+ /**
1446
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1447
+ */
1448
+ endIndex: number;
1449
+ }
1288
1450
  export interface Screenshot {
1289
1451
  screenshot: Screenshot1;
1290
1452
  [k: string]: unknown;
@@ -1355,6 +1517,7 @@ export interface Common9 {
1355
1517
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1356
1518
  */
1357
1519
  breakpoint?: boolean;
1520
+ location?: SourceLocation9;
1358
1521
  [k: string]: unknown;
1359
1522
  }
1360
1523
  /**
@@ -1381,6 +1544,23 @@ export interface VariablesStep9 {
1381
1544
  */
1382
1545
  [k: string]: string;
1383
1546
  }
1547
+ /**
1548
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1549
+ */
1550
+ export interface SourceLocation9 {
1551
+ /**
1552
+ * 1-indexed line number in the source file where the step was detected.
1553
+ */
1554
+ line: number;
1555
+ /**
1556
+ * 0-indexed character offset from the start of the source file where the step begins.
1557
+ */
1558
+ startIndex: number;
1559
+ /**
1560
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1561
+ */
1562
+ endIndex: number;
1563
+ }
1384
1564
  export interface SaveCookie {
1385
1565
  saveCookie: SaveCookie1;
1386
1566
  [k: string]: unknown;
@@ -1408,6 +1588,7 @@ export interface Common10 {
1408
1588
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1409
1589
  */
1410
1590
  breakpoint?: boolean;
1591
+ location?: SourceLocation10;
1411
1592
  [k: string]: unknown;
1412
1593
  }
1413
1594
  /**
@@ -1434,6 +1615,23 @@ export interface VariablesStep10 {
1434
1615
  */
1435
1616
  [k: string]: string;
1436
1617
  }
1618
+ /**
1619
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1620
+ */
1621
+ export interface SourceLocation10 {
1622
+ /**
1623
+ * 1-indexed line number in the source file where the step was detected.
1624
+ */
1625
+ line: number;
1626
+ /**
1627
+ * 0-indexed character offset from the start of the source file where the step begins.
1628
+ */
1629
+ startIndex: number;
1630
+ /**
1631
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1632
+ */
1633
+ endIndex: number;
1634
+ }
1437
1635
  export interface Record {
1438
1636
  record: Record1;
1439
1637
  [k: string]: unknown;
@@ -1476,6 +1674,7 @@ export interface Common11 {
1476
1674
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1477
1675
  */
1478
1676
  breakpoint?: boolean;
1677
+ location?: SourceLocation11;
1479
1678
  [k: string]: unknown;
1480
1679
  }
1481
1680
  /**
@@ -1502,6 +1701,23 @@ export interface VariablesStep11 {
1502
1701
  */
1503
1702
  [k: string]: string;
1504
1703
  }
1704
+ /**
1705
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1706
+ */
1707
+ export interface SourceLocation11 {
1708
+ /**
1709
+ * 1-indexed line number in the source file where the step was detected.
1710
+ */
1711
+ line: number;
1712
+ /**
1713
+ * 0-indexed character offset from the start of the source file where the step begins.
1714
+ */
1715
+ startIndex: number;
1716
+ /**
1717
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1718
+ */
1719
+ endIndex: number;
1720
+ }
1505
1721
  export interface StopRecord {
1506
1722
  stopRecord: StopRecord1;
1507
1723
  [k: string]: unknown;
@@ -1529,6 +1745,7 @@ export interface Common12 {
1529
1745
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1530
1746
  */
1531
1747
  breakpoint?: boolean;
1748
+ location?: SourceLocation12;
1532
1749
  [k: string]: unknown;
1533
1750
  }
1534
1751
  /**
@@ -1555,6 +1772,23 @@ export interface VariablesStep12 {
1555
1772
  */
1556
1773
  [k: string]: string;
1557
1774
  }
1775
+ /**
1776
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1777
+ */
1778
+ export interface SourceLocation12 {
1779
+ /**
1780
+ * 1-indexed line number in the source file where the step was detected.
1781
+ */
1782
+ line: number;
1783
+ /**
1784
+ * 0-indexed character offset from the start of the source file where the step begins.
1785
+ */
1786
+ startIndex: number;
1787
+ /**
1788
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1789
+ */
1790
+ endIndex: number;
1791
+ }
1558
1792
  export interface LoadVariables {
1559
1793
  loadVariables: LoadVariables1;
1560
1794
  [k: string]: unknown;
@@ -1582,6 +1816,7 @@ export interface Common13 {
1582
1816
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1583
1817
  */
1584
1818
  breakpoint?: boolean;
1819
+ location?: SourceLocation13;
1585
1820
  [k: string]: unknown;
1586
1821
  }
1587
1822
  /**
@@ -1608,6 +1843,23 @@ export interface VariablesStep13 {
1608
1843
  */
1609
1844
  [k: string]: string;
1610
1845
  }
1846
+ /**
1847
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1848
+ */
1849
+ export interface SourceLocation13 {
1850
+ /**
1851
+ * 1-indexed line number in the source file where the step was detected.
1852
+ */
1853
+ line: number;
1854
+ /**
1855
+ * 0-indexed character offset from the start of the source file where the step begins.
1856
+ */
1857
+ startIndex: number;
1858
+ /**
1859
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1860
+ */
1861
+ endIndex: number;
1862
+ }
1611
1863
  export interface DragAndDrop {
1612
1864
  dragAndDrop: DragAndDrop1;
1613
1865
  [k: string]: unknown;
@@ -1653,6 +1905,7 @@ export interface Common14 {
1653
1905
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1654
1906
  */
1655
1907
  breakpoint?: boolean;
1908
+ location?: SourceLocation14;
1656
1909
  [k: string]: unknown;
1657
1910
  }
1658
1911
  /**
@@ -1679,6 +1932,23 @@ export interface VariablesStep14 {
1679
1932
  */
1680
1933
  [k: string]: string;
1681
1934
  }
1935
+ /**
1936
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1937
+ */
1938
+ export interface SourceLocation14 {
1939
+ /**
1940
+ * 1-indexed line number in the source file where the step was detected.
1941
+ */
1942
+ line: number;
1943
+ /**
1944
+ * 0-indexed character offset from the start of the source file where the step begins.
1945
+ */
1946
+ startIndex: number;
1947
+ /**
1948
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1949
+ */
1950
+ endIndex: number;
1951
+ }
1682
1952
  export interface LoadCookie {
1683
1953
  loadCookie: LoadCookie1;
1684
1954
  [k: string]: unknown;
@@ -1706,6 +1976,7 @@ export interface Common15 {
1706
1976
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1707
1977
  */
1708
1978
  breakpoint?: boolean;
1979
+ location?: SourceLocation15;
1709
1980
  [k: string]: unknown;
1710
1981
  }
1711
1982
  /**
@@ -1732,6 +2003,23 @@ export interface VariablesStep15 {
1732
2003
  */
1733
2004
  [k: string]: string;
1734
2005
  }
2006
+ /**
2007
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2008
+ */
2009
+ export interface SourceLocation15 {
2010
+ /**
2011
+ * 1-indexed line number in the source file where the step was detected.
2012
+ */
2013
+ line: number;
2014
+ /**
2015
+ * 0-indexed character offset from the start of the source file where the step begins.
2016
+ */
2017
+ startIndex: number;
2018
+ /**
2019
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2020
+ */
2021
+ endIndex: number;
2022
+ }
1735
2023
  export interface Wait {
1736
2024
  wait: Wait1;
1737
2025
  [k: string]: unknown;
@@ -1818,6 +2106,7 @@ export interface Common16 {
1818
2106
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1819
2107
  */
1820
2108
  breakpoint?: boolean;
2109
+ location?: SourceLocation16;
1821
2110
  [k: string]: unknown;
1822
2111
  }
1823
2112
  /**
@@ -1844,6 +2133,23 @@ export interface VariablesStep16 {
1844
2133
  */
1845
2134
  [k: string]: string;
1846
2135
  }
2136
+ /**
2137
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2138
+ */
2139
+ export interface SourceLocation16 {
2140
+ /**
2141
+ * 1-indexed line number in the source file where the step was detected.
2142
+ */
2143
+ line: number;
2144
+ /**
2145
+ * 0-indexed character offset from the start of the source file where the step begins.
2146
+ */
2147
+ startIndex: number;
2148
+ /**
2149
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2150
+ */
2151
+ endIndex: number;
2152
+ }
1847
2153
  export interface CheckLink2 {
1848
2154
  checkLink: CheckLink3;
1849
2155
  [k: string]: unknown;
@@ -1888,6 +2194,7 @@ export interface Common17 {
1888
2194
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1889
2195
  */
1890
2196
  breakpoint?: boolean;
2197
+ location?: SourceLocation17;
1891
2198
  [k: string]: unknown;
1892
2199
  }
1893
2200
  /**
@@ -1914,6 +2221,23 @@ export interface VariablesStep17 {
1914
2221
  */
1915
2222
  [k: string]: string;
1916
2223
  }
2224
+ /**
2225
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2226
+ */
2227
+ export interface SourceLocation17 {
2228
+ /**
2229
+ * 1-indexed line number in the source file where the step was detected.
2230
+ */
2231
+ line: number;
2232
+ /**
2233
+ * 0-indexed character offset from the start of the source file where the step begins.
2234
+ */
2235
+ startIndex: number;
2236
+ /**
2237
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2238
+ */
2239
+ endIndex: number;
2240
+ }
1917
2241
  export interface Click2 {
1918
2242
  click: Click3;
1919
2243
  [k: string]: unknown;
@@ -1941,6 +2265,7 @@ export interface Common18 {
1941
2265
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1942
2266
  */
1943
2267
  breakpoint?: boolean;
2268
+ location?: SourceLocation18;
1944
2269
  [k: string]: unknown;
1945
2270
  }
1946
2271
  /**
@@ -1967,6 +2292,23 @@ export interface VariablesStep18 {
1967
2292
  */
1968
2293
  [k: string]: string;
1969
2294
  }
2295
+ /**
2296
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2297
+ */
2298
+ export interface SourceLocation18 {
2299
+ /**
2300
+ * 1-indexed line number in the source file where the step was detected.
2301
+ */
2302
+ line: number;
2303
+ /**
2304
+ * 0-indexed character offset from the start of the source file where the step begins.
2305
+ */
2306
+ startIndex: number;
2307
+ /**
2308
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2309
+ */
2310
+ endIndex: number;
2311
+ }
1970
2312
  export interface Find2 {
1971
2313
  find: Find3;
1972
2314
  [k: string]: unknown;
@@ -1994,6 +2336,7 @@ export interface Common19 {
1994
2336
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
1995
2337
  */
1996
2338
  breakpoint?: boolean;
2339
+ location?: SourceLocation19;
1997
2340
  [k: string]: unknown;
1998
2341
  }
1999
2342
  /**
@@ -2020,6 +2363,23 @@ export interface VariablesStep19 {
2020
2363
  */
2021
2364
  [k: string]: string;
2022
2365
  }
2366
+ /**
2367
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2368
+ */
2369
+ export interface SourceLocation19 {
2370
+ /**
2371
+ * 1-indexed line number in the source file where the step was detected.
2372
+ */
2373
+ line: number;
2374
+ /**
2375
+ * 0-indexed character offset from the start of the source file where the step begins.
2376
+ */
2377
+ startIndex: number;
2378
+ /**
2379
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2380
+ */
2381
+ endIndex: number;
2382
+ }
2023
2383
  export interface GoTo2 {
2024
2384
  goTo: GoTo3;
2025
2385
  [k: string]: unknown;
@@ -2095,6 +2455,7 @@ export interface Common20 {
2095
2455
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2096
2456
  */
2097
2457
  breakpoint?: boolean;
2458
+ location?: SourceLocation20;
2098
2459
  [k: string]: unknown;
2099
2460
  }
2100
2461
  /**
@@ -2121,6 +2482,23 @@ export interface VariablesStep20 {
2121
2482
  */
2122
2483
  [k: string]: string;
2123
2484
  }
2485
+ /**
2486
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2487
+ */
2488
+ export interface SourceLocation20 {
2489
+ /**
2490
+ * 1-indexed line number in the source file where the step was detected.
2491
+ */
2492
+ line: number;
2493
+ /**
2494
+ * 0-indexed character offset from the start of the source file where the step begins.
2495
+ */
2496
+ startIndex: number;
2497
+ /**
2498
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2499
+ */
2500
+ endIndex: number;
2501
+ }
2124
2502
  export interface HttpRequest2 {
2125
2503
  httpRequest: HttpRequest3;
2126
2504
  [k: string]: unknown;
@@ -2148,6 +2526,7 @@ export interface Common21 {
2148
2526
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2149
2527
  */
2150
2528
  breakpoint?: boolean;
2529
+ location?: SourceLocation21;
2151
2530
  [k: string]: unknown;
2152
2531
  }
2153
2532
  /**
@@ -2174,6 +2553,23 @@ export interface VariablesStep21 {
2174
2553
  */
2175
2554
  [k: string]: string;
2176
2555
  }
2556
+ /**
2557
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2558
+ */
2559
+ export interface SourceLocation21 {
2560
+ /**
2561
+ * 1-indexed line number in the source file where the step was detected.
2562
+ */
2563
+ line: number;
2564
+ /**
2565
+ * 0-indexed character offset from the start of the source file where the step begins.
2566
+ */
2567
+ startIndex: number;
2568
+ /**
2569
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2570
+ */
2571
+ endIndex: number;
2572
+ }
2177
2573
  export interface RunShell2 {
2178
2574
  runShell: RunShell3;
2179
2575
  [k: string]: unknown;
@@ -2244,6 +2640,7 @@ export interface Common22 {
2244
2640
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2245
2641
  */
2246
2642
  breakpoint?: boolean;
2643
+ location?: SourceLocation22;
2247
2644
  [k: string]: unknown;
2248
2645
  }
2249
2646
  /**
@@ -2270,6 +2667,23 @@ export interface VariablesStep22 {
2270
2667
  */
2271
2668
  [k: string]: string;
2272
2669
  }
2670
+ /**
2671
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2672
+ */
2673
+ export interface SourceLocation22 {
2674
+ /**
2675
+ * 1-indexed line number in the source file where the step was detected.
2676
+ */
2677
+ line: number;
2678
+ /**
2679
+ * 0-indexed character offset from the start of the source file where the step begins.
2680
+ */
2681
+ startIndex: number;
2682
+ /**
2683
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2684
+ */
2685
+ endIndex: number;
2686
+ }
2273
2687
  export interface RunCode2 {
2274
2688
  runCode: RunCode3;
2275
2689
  [k: string]: unknown;
@@ -2345,6 +2759,7 @@ export interface Common23 {
2345
2759
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2346
2760
  */
2347
2761
  breakpoint?: boolean;
2762
+ location?: SourceLocation23;
2348
2763
  [k: string]: unknown;
2349
2764
  }
2350
2765
  /**
@@ -2371,6 +2786,23 @@ export interface VariablesStep23 {
2371
2786
  */
2372
2787
  [k: string]: string;
2373
2788
  }
2789
+ /**
2790
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2791
+ */
2792
+ export interface SourceLocation23 {
2793
+ /**
2794
+ * 1-indexed line number in the source file where the step was detected.
2795
+ */
2796
+ line: number;
2797
+ /**
2798
+ * 0-indexed character offset from the start of the source file where the step begins.
2799
+ */
2800
+ startIndex: number;
2801
+ /**
2802
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2803
+ */
2804
+ endIndex: number;
2805
+ }
2374
2806
  export interface Type1 {
2375
2807
  type: TypeKeys1;
2376
2808
  [k: string]: unknown;
@@ -2435,6 +2867,7 @@ export interface Common24 {
2435
2867
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2436
2868
  */
2437
2869
  breakpoint?: boolean;
2870
+ location?: SourceLocation24;
2438
2871
  [k: string]: unknown;
2439
2872
  }
2440
2873
  /**
@@ -2461,6 +2894,23 @@ export interface VariablesStep24 {
2461
2894
  */
2462
2895
  [k: string]: string;
2463
2896
  }
2897
+ /**
2898
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2899
+ */
2900
+ export interface SourceLocation24 {
2901
+ /**
2902
+ * 1-indexed line number in the source file where the step was detected.
2903
+ */
2904
+ line: number;
2905
+ /**
2906
+ * 0-indexed character offset from the start of the source file where the step begins.
2907
+ */
2908
+ startIndex: number;
2909
+ /**
2910
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
2911
+ */
2912
+ endIndex: number;
2913
+ }
2464
2914
  export interface Screenshot2 {
2465
2915
  screenshot: Screenshot3;
2466
2916
  [k: string]: unknown;
@@ -2531,6 +2981,7 @@ export interface Common25 {
2531
2981
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2532
2982
  */
2533
2983
  breakpoint?: boolean;
2984
+ location?: SourceLocation25;
2534
2985
  [k: string]: unknown;
2535
2986
  }
2536
2987
  /**
@@ -2557,6 +3008,23 @@ export interface VariablesStep25 {
2557
3008
  */
2558
3009
  [k: string]: string;
2559
3010
  }
3011
+ /**
3012
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3013
+ */
3014
+ export interface SourceLocation25 {
3015
+ /**
3016
+ * 1-indexed line number in the source file where the step was detected.
3017
+ */
3018
+ line: number;
3019
+ /**
3020
+ * 0-indexed character offset from the start of the source file where the step begins.
3021
+ */
3022
+ startIndex: number;
3023
+ /**
3024
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
3025
+ */
3026
+ endIndex: number;
3027
+ }
2560
3028
  export interface SaveCookie2 {
2561
3029
  saveCookie: SaveCookie3;
2562
3030
  [k: string]: unknown;
@@ -2584,6 +3052,7 @@ export interface Common26 {
2584
3052
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2585
3053
  */
2586
3054
  breakpoint?: boolean;
3055
+ location?: SourceLocation26;
2587
3056
  [k: string]: unknown;
2588
3057
  }
2589
3058
  /**
@@ -2610,6 +3079,23 @@ export interface VariablesStep26 {
2610
3079
  */
2611
3080
  [k: string]: string;
2612
3081
  }
3082
+ /**
3083
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3084
+ */
3085
+ export interface SourceLocation26 {
3086
+ /**
3087
+ * 1-indexed line number in the source file where the step was detected.
3088
+ */
3089
+ line: number;
3090
+ /**
3091
+ * 0-indexed character offset from the start of the source file where the step begins.
3092
+ */
3093
+ startIndex: number;
3094
+ /**
3095
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
3096
+ */
3097
+ endIndex: number;
3098
+ }
2613
3099
  export interface Record2 {
2614
3100
  record: Record3;
2615
3101
  [k: string]: unknown;
@@ -2652,6 +3138,7 @@ export interface Common27 {
2652
3138
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2653
3139
  */
2654
3140
  breakpoint?: boolean;
3141
+ location?: SourceLocation27;
2655
3142
  [k: string]: unknown;
2656
3143
  }
2657
3144
  /**
@@ -2678,6 +3165,23 @@ export interface VariablesStep27 {
2678
3165
  */
2679
3166
  [k: string]: string;
2680
3167
  }
3168
+ /**
3169
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3170
+ */
3171
+ export interface SourceLocation27 {
3172
+ /**
3173
+ * 1-indexed line number in the source file where the step was detected.
3174
+ */
3175
+ line: number;
3176
+ /**
3177
+ * 0-indexed character offset from the start of the source file where the step begins.
3178
+ */
3179
+ startIndex: number;
3180
+ /**
3181
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
3182
+ */
3183
+ endIndex: number;
3184
+ }
2681
3185
  export interface StopRecord2 {
2682
3186
  stopRecord: StopRecord3;
2683
3187
  [k: string]: unknown;
@@ -2705,6 +3209,7 @@ export interface Common28 {
2705
3209
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2706
3210
  */
2707
3211
  breakpoint?: boolean;
3212
+ location?: SourceLocation28;
2708
3213
  [k: string]: unknown;
2709
3214
  }
2710
3215
  /**
@@ -2731,6 +3236,23 @@ export interface VariablesStep28 {
2731
3236
  */
2732
3237
  [k: string]: string;
2733
3238
  }
3239
+ /**
3240
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3241
+ */
3242
+ export interface SourceLocation28 {
3243
+ /**
3244
+ * 1-indexed line number in the source file where the step was detected.
3245
+ */
3246
+ line: number;
3247
+ /**
3248
+ * 0-indexed character offset from the start of the source file where the step begins.
3249
+ */
3250
+ startIndex: number;
3251
+ /**
3252
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
3253
+ */
3254
+ endIndex: number;
3255
+ }
2734
3256
  export interface LoadVariables2 {
2735
3257
  loadVariables: LoadVariables3;
2736
3258
  [k: string]: unknown;
@@ -2758,6 +3280,7 @@ export interface Common29 {
2758
3280
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2759
3281
  */
2760
3282
  breakpoint?: boolean;
3283
+ location?: SourceLocation29;
2761
3284
  [k: string]: unknown;
2762
3285
  }
2763
3286
  /**
@@ -2784,6 +3307,23 @@ export interface VariablesStep29 {
2784
3307
  */
2785
3308
  [k: string]: string;
2786
3309
  }
3310
+ /**
3311
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3312
+ */
3313
+ export interface SourceLocation29 {
3314
+ /**
3315
+ * 1-indexed line number in the source file where the step was detected.
3316
+ */
3317
+ line: number;
3318
+ /**
3319
+ * 0-indexed character offset from the start of the source file where the step begins.
3320
+ */
3321
+ startIndex: number;
3322
+ /**
3323
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
3324
+ */
3325
+ endIndex: number;
3326
+ }
2787
3327
  export interface DragAndDrop2 {
2788
3328
  dragAndDrop: DragAndDrop3;
2789
3329
  [k: string]: unknown;
@@ -2829,6 +3369,7 @@ export interface Common30 {
2829
3369
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2830
3370
  */
2831
3371
  breakpoint?: boolean;
3372
+ location?: SourceLocation30;
2832
3373
  [k: string]: unknown;
2833
3374
  }
2834
3375
  /**
@@ -2855,6 +3396,23 @@ export interface VariablesStep30 {
2855
3396
  */
2856
3397
  [k: string]: string;
2857
3398
  }
3399
+ /**
3400
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3401
+ */
3402
+ export interface SourceLocation30 {
3403
+ /**
3404
+ * 1-indexed line number in the source file where the step was detected.
3405
+ */
3406
+ line: number;
3407
+ /**
3408
+ * 0-indexed character offset from the start of the source file where the step begins.
3409
+ */
3410
+ startIndex: number;
3411
+ /**
3412
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
3413
+ */
3414
+ endIndex: number;
3415
+ }
2858
3416
  export interface LoadCookie2 {
2859
3417
  loadCookie: LoadCookie3;
2860
3418
  [k: string]: unknown;
@@ -2882,6 +3440,7 @@ export interface Common31 {
2882
3440
  * Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
2883
3441
  */
2884
3442
  breakpoint?: boolean;
3443
+ location?: SourceLocation31;
2885
3444
  [k: string]: unknown;
2886
3445
  }
2887
3446
  /**
@@ -2908,6 +3467,23 @@ export interface VariablesStep31 {
2908
3467
  */
2909
3468
  [k: string]: string;
2910
3469
  }
3470
+ /**
3471
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3472
+ */
3473
+ export interface SourceLocation31 {
3474
+ /**
3475
+ * 1-indexed line number in the source file where the step was detected.
3476
+ */
3477
+ line: number;
3478
+ /**
3479
+ * 0-indexed character offset from the start of the source file where the step begins.
3480
+ */
3481
+ startIndex: number;
3482
+ /**
3483
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
3484
+ */
3485
+ endIndex: number;
3486
+ }
2911
3487
  export interface Wait2 {
2912
3488
  wait: Wait3;
2913
3489
  [k: string]: unknown;