doc-detective 4.13.0 → 4.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/common/src/schemas/schemas.json +4559 -605
  2. package/dist/common/src/types/generated/runBrowserScript_v3.d.ts +48 -0
  3. package/dist/common/src/types/generated/runBrowserScript_v3.d.ts.map +1 -0
  4. package/dist/common/src/types/generated/runBrowserScript_v3.js +7 -0
  5. package/dist/common/src/types/generated/runBrowserScript_v3.js.map +1 -0
  6. package/dist/common/src/types/generated/step_v3.d.ts +191 -73
  7. package/dist/common/src/types/generated/step_v3.d.ts.map +1 -1
  8. package/dist/common/src/types/generated/test_v3.d.ts +454 -218
  9. package/dist/common/src/types/generated/test_v3.d.ts.map +1 -1
  10. package/dist/core/resolveTests.d.ts.map +1 -1
  11. package/dist/core/resolveTests.js +2 -13
  12. package/dist/core/resolveTests.js.map +1 -1
  13. package/dist/core/tests/runBrowserScript.d.ts +7 -0
  14. package/dist/core/tests/runBrowserScript.d.ts.map +1 -0
  15. package/dist/core/tests/runBrowserScript.js +133 -0
  16. package/dist/core/tests/runBrowserScript.js.map +1 -0
  17. package/dist/core/tests.d.ts.map +1 -1
  18. package/dist/core/tests.js +10 -13
  19. package/dist/core/tests.js.map +1 -1
  20. package/dist/core/utils.d.ts +25 -1
  21. package/dist/core/utils.d.ts.map +1 -1
  22. package/dist/core/utils.js +55 -1
  23. package/dist/core/utils.js.map +1 -1
  24. package/dist/hints/hints.d.ts.map +1 -1
  25. package/dist/hints/hints.js +21 -0
  26. package/dist/hints/hints.js.map +1 -1
  27. package/dist/index.cjs +4914 -839
  28. package/dist/runtime/browserStepKeys.d.ts +19 -0
  29. package/dist/runtime/browserStepKeys.d.ts.map +1 -0
  30. package/dist/runtime/browserStepKeys.js +33 -0
  31. package/dist/runtime/browserStepKeys.js.map +1 -0
  32. package/dist/runtime/inferRuntimeNeeds.d.ts.map +1 -1
  33. package/dist/runtime/inferRuntimeNeeds.js +4 -19
  34. package/dist/runtime/inferRuntimeNeeds.js.map +1 -1
  35. package/package.json +1 -1
@@ -62,7 +62,7 @@ export type OpenApi = {
62
62
  /**
63
63
  * A step in a test.
64
64
  */
65
- export type Step = (Common & CheckLink) | (Common1 & Click) | (Common2 & Find) | (Common3 & GoTo) | (Common4 & HttpRequest) | (Common5 & RunShell) | (Common6 & RunCode) | (Common7 & Type) | (Common8 & Screenshot) | (Common9 & SaveCookie) | (Common10 & Record) | (Common11 & StopRecord) | (Common12 & LoadVariables) | (Common13 & DragAndDrop) | (Common14 & LoadCookie) | (Common15 & Wait);
65
+ export type Step = (Common & CheckLink) | (Common1 & Click) | (Common2 & Find) | (Common3 & GoTo) | (Common4 & HttpRequest) | (Common5 & RunShell) | (Common6 & RunCode) | (Common7 & RunBrowserScript) | (Common8 & Type) | (Common9 & Screenshot) | (Common10 & SaveCookie) | (Common11 & Record) | (Common12 & StopRecord) | (Common13 & LoadVariables) | (Common14 & DragAndDrop) | (Common15 & LoadCookie) | (Common16 & Wait);
66
66
  export type CheckLink1 = CheckLinkDetailed | CheckLinkDetailed1;
67
67
  /**
68
68
  * Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.
@@ -149,6 +149,14 @@ export type RunShellCommandSimple = string;
149
149
  * Assemble and run code.
150
150
  */
151
151
  export type RunCode1 = RunCodeDetailed;
152
+ /**
153
+ * Execute arbitrary JavaScript in the browser page context. Runs via the WebDriver `executeScript` endpoint, so it has access to the page's `document`, `window`, and DOM. Doc Detective captures the script's return value in the step's `outputs.result`. Distinct from `runCode`, which runs Node/Python/bash on the host machine.
154
+ */
155
+ export type RunBrowserScript1 = RunBrowserScriptSimple | RunBrowserScriptDetailed;
156
+ /**
157
+ * JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`.
158
+ */
159
+ export type RunBrowserScriptSimple = string;
152
160
  /**
153
161
  * Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.
154
162
  */
@@ -319,7 +327,7 @@ export type OpenApi1 = {
319
327
  /**
320
328
  * A step in a test.
321
329
  */
322
- export type Step1 = (Common16 & CheckLink2) | (Common17 & Click2) | (Common18 & Find2) | (Common19 & GoTo2) | (Common20 & HttpRequest2) | (Common21 & RunShell2) | (Common22 & RunCode2) | (Common23 & Type1) | (Common24 & Screenshot2) | (Common25 & SaveCookie2) | (Common26 & Record2) | (Common27 & StopRecord2) | (Common28 & LoadVariables2) | (Common29 & DragAndDrop2) | (Common30 & LoadCookie2) | (Common31 & Wait2);
330
+ export type Step1 = (Common17 & CheckLink2) | (Common18 & Click2) | (Common19 & Find2) | (Common20 & GoTo2) | (Common21 & HttpRequest2) | (Common22 & RunShell2) | (Common23 & RunCode2) | (Common24 & RunBrowserScript2) | (Common25 & Type1) | (Common26 & Screenshot2) | (Common27 & SaveCookie2) | (Common28 & Record2) | (Common29 & StopRecord2) | (Common30 & LoadVariables2) | (Common31 & DragAndDrop2) | (Common32 & LoadCookie2) | (Common33 & Wait2);
323
331
  export type CheckLink3 = CheckLinkDetailed2 | CheckLinkDetailed3;
324
332
  /**
325
333
  * Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.
@@ -406,6 +414,14 @@ export type RunShellCommandSimple1 = string;
406
414
  * Assemble and run code.
407
415
  */
408
416
  export type RunCode3 = RunCodeDetailed1;
417
+ /**
418
+ * Execute arbitrary JavaScript in the browser page context. Runs via the WebDriver `executeScript` endpoint, so it has access to the page's `document`, `window`, and DOM. Doc Detective captures the script's return value in the step's `outputs.result`. Distinct from `runCode`, which runs Node/Python/bash on the host machine.
419
+ */
420
+ export type RunBrowserScript3 = RunBrowserScriptSimple1 | RunBrowserScriptDetailed1;
421
+ /**
422
+ * JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`.
423
+ */
424
+ export type RunBrowserScriptSimple1 = string;
409
425
  /**
410
426
  * Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.
411
427
  */
@@ -1451,6 +1467,116 @@ export interface SourceLocation7 {
1451
1467
  */
1452
1468
  endIndex: number;
1453
1469
  }
1470
+ export interface RunBrowserScript {
1471
+ runBrowserScript: RunBrowserScript1;
1472
+ [k: string]: unknown;
1473
+ }
1474
+ export interface RunBrowserScriptDetailed {
1475
+ /**
1476
+ * JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`. The script reads arguments supplied in `args` through the `arguments` object (`arguments[0]`, `arguments[1]`, and so on).
1477
+ */
1478
+ script: string;
1479
+ /**
1480
+ * Arguments passed positionally to the script and exposed through the `arguments` object. Each item may be any JSON-serializable value (string, number, boolean, null, object, or array), matching what `executeScript` accepts.
1481
+ */
1482
+ args?: unknown[];
1483
+ /**
1484
+ * Content expected in the script's serialized return value. Doc Detective serializes non-string return values to JSON before matching. If the serialized return value doesn't contain the expected content, the step fails. Supports strings and regular expressions. To use a regular expression, the string must start and end with a forward slash, like in `/^hello-world.* /`.
1485
+ */
1486
+ output?: string;
1487
+ /**
1488
+ * File path to save the script's serialized return value, relative to `directory`.
1489
+ */
1490
+ path?: string;
1491
+ /**
1492
+ * Directory to save the script's return value. If the directory doesn't exist, creates the directory. If not specified, the directory is your media directory.
1493
+ */
1494
+ directory?: string;
1495
+ /**
1496
+ * Allowed variation as a fraction (0 to 1) of text different between the current return value and previously saved value. For example, 0.1 means 10%. If the difference between the current value and the previous value is greater than `maxVariation`, the step returns a warning. If no output exists at `path`, Doc Detective ignores this value.
1497
+ */
1498
+ maxVariation?: number;
1499
+ /**
1500
+ * If `true`, overwrites the existing output at `path` if it exists.
1501
+ * If `aboveVariation`, overwrites the existing output at `path` if the difference between the new output and the existing output is greater than `maxVariation`.
1502
+ */
1503
+ overwrite?: "true" | "false" | "aboveVariation";
1504
+ /**
1505
+ * Maximum time in milliseconds the script may run. If the script runs longer than this, the step fails.
1506
+ */
1507
+ timeout?: number;
1508
+ }
1509
+ export interface Common8 {
1510
+ /**
1511
+ * JSON Schema for this object.
1512
+ */
1513
+ $schema?: "https://raw.githubusercontent.com/doc-detective/common/refs/heads/main/dist/schemas/step_v3.schema.json";
1514
+ /**
1515
+ * ID of the step.
1516
+ */
1517
+ stepId?: string;
1518
+ /**
1519
+ * Description of the step.
1520
+ */
1521
+ description?: string;
1522
+ /**
1523
+ * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1524
+ */
1525
+ unsafe?: boolean;
1526
+ outputs?: OutputsStep8;
1527
+ variables?: VariablesStep8;
1528
+ /**
1529
+ * 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
+ */
1531
+ breakpoint?: boolean;
1532
+ location?: SourceLocation8;
1533
+ /**
1534
+ * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
1535
+ */
1536
+ autoScreenshot?: string;
1537
+ [k: string]: unknown;
1538
+ }
1539
+ /**
1540
+ * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1541
+ */
1542
+ export interface OutputsStep8 {
1543
+ /**
1544
+ * Runtime expression for a user-defined output value.
1545
+ *
1546
+ * This interface was referenced by `OutputsStep8`'s JSON-Schema definition
1547
+ * via the `patternProperty` "^[A-Za-z0-9_]+$".
1548
+ */
1549
+ [k: string]: string;
1550
+ }
1551
+ /**
1552
+ * Environment variables to set from user-defined expressions.
1553
+ */
1554
+ export interface VariablesStep8 {
1555
+ /**
1556
+ * Runtime expression for a user-defined output value.
1557
+ *
1558
+ * This interface was referenced by `VariablesStep8`'s JSON-Schema definition
1559
+ * via the `patternProperty` "^[A-Za-z0-9_]+$".
1560
+ */
1561
+ [k: string]: string;
1562
+ }
1563
+ /**
1564
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1565
+ */
1566
+ export interface SourceLocation8 {
1567
+ /**
1568
+ * 1-indexed line number in the source file where the step was detected.
1569
+ */
1570
+ line: number;
1571
+ /**
1572
+ * 0-indexed character offset from the start of the source file where the step begins.
1573
+ */
1574
+ startIndex: number;
1575
+ /**
1576
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1577
+ */
1578
+ endIndex: number;
1579
+ }
1454
1580
  export interface Type {
1455
1581
  type: TypeKeys;
1456
1582
  [k: string]: unknown;
@@ -1492,7 +1618,7 @@ export interface TypeKeysDetailed {
1492
1618
  */
1493
1619
  elementAria?: string;
1494
1620
  }
1495
- export interface Common8 {
1621
+ export interface Common9 {
1496
1622
  /**
1497
1623
  * JSON Schema for this object.
1498
1624
  */
@@ -1509,13 +1635,13 @@ export interface Common8 {
1509
1635
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1510
1636
  */
1511
1637
  unsafe?: boolean;
1512
- outputs?: OutputsStep8;
1513
- variables?: VariablesStep8;
1638
+ outputs?: OutputsStep9;
1639
+ variables?: VariablesStep9;
1514
1640
  /**
1515
1641
  * 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.
1516
1642
  */
1517
1643
  breakpoint?: boolean;
1518
- location?: SourceLocation8;
1644
+ location?: SourceLocation9;
1519
1645
  /**
1520
1646
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
1521
1647
  */
@@ -1525,11 +1651,11 @@ export interface Common8 {
1525
1651
  /**
1526
1652
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1527
1653
  */
1528
- export interface OutputsStep8 {
1654
+ export interface OutputsStep9 {
1529
1655
  /**
1530
1656
  * Runtime expression for a user-defined output value.
1531
1657
  *
1532
- * This interface was referenced by `OutputsStep8`'s JSON-Schema definition
1658
+ * This interface was referenced by `OutputsStep9`'s JSON-Schema definition
1533
1659
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1534
1660
  */
1535
1661
  [k: string]: string;
@@ -1537,11 +1663,11 @@ export interface OutputsStep8 {
1537
1663
  /**
1538
1664
  * Environment variables to set from user-defined expressions.
1539
1665
  */
1540
- export interface VariablesStep8 {
1666
+ export interface VariablesStep9 {
1541
1667
  /**
1542
1668
  * Runtime expression for a user-defined output value.
1543
1669
  *
1544
- * This interface was referenced by `VariablesStep8`'s JSON-Schema definition
1670
+ * This interface was referenced by `VariablesStep9`'s JSON-Schema definition
1545
1671
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1546
1672
  */
1547
1673
  [k: string]: string;
@@ -1549,7 +1675,7 @@ export interface VariablesStep8 {
1549
1675
  /**
1550
1676
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1551
1677
  */
1552
- export interface SourceLocation8 {
1678
+ export interface SourceLocation9 {
1553
1679
  /**
1554
1680
  * 1-indexed line number in the source file where the step was detected.
1555
1681
  */
@@ -1610,7 +1736,7 @@ export interface SourceIntegration {
1610
1736
  */
1611
1737
  contentPath?: string;
1612
1738
  }
1613
- export interface Common9 {
1739
+ export interface Common10 {
1614
1740
  /**
1615
1741
  * JSON Schema for this object.
1616
1742
  */
@@ -1627,13 +1753,13 @@ export interface Common9 {
1627
1753
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1628
1754
  */
1629
1755
  unsafe?: boolean;
1630
- outputs?: OutputsStep9;
1631
- variables?: VariablesStep9;
1756
+ outputs?: OutputsStep10;
1757
+ variables?: VariablesStep10;
1632
1758
  /**
1633
1759
  * 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.
1634
1760
  */
1635
1761
  breakpoint?: boolean;
1636
- location?: SourceLocation9;
1762
+ location?: SourceLocation10;
1637
1763
  /**
1638
1764
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
1639
1765
  */
@@ -1643,11 +1769,11 @@ export interface Common9 {
1643
1769
  /**
1644
1770
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1645
1771
  */
1646
- export interface OutputsStep9 {
1772
+ export interface OutputsStep10 {
1647
1773
  /**
1648
1774
  * Runtime expression for a user-defined output value.
1649
1775
  *
1650
- * This interface was referenced by `OutputsStep9`'s JSON-Schema definition
1776
+ * This interface was referenced by `OutputsStep10`'s JSON-Schema definition
1651
1777
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1652
1778
  */
1653
1779
  [k: string]: string;
@@ -1655,11 +1781,11 @@ export interface OutputsStep9 {
1655
1781
  /**
1656
1782
  * Environment variables to set from user-defined expressions.
1657
1783
  */
1658
- export interface VariablesStep9 {
1784
+ export interface VariablesStep10 {
1659
1785
  /**
1660
1786
  * Runtime expression for a user-defined output value.
1661
1787
  *
1662
- * This interface was referenced by `VariablesStep9`'s JSON-Schema definition
1788
+ * This interface was referenced by `VariablesStep10`'s JSON-Schema definition
1663
1789
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1664
1790
  */
1665
1791
  [k: string]: string;
@@ -1667,7 +1793,7 @@ export interface VariablesStep9 {
1667
1793
  /**
1668
1794
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1669
1795
  */
1670
- export interface SourceLocation9 {
1796
+ export interface SourceLocation10 {
1671
1797
  /**
1672
1798
  * 1-indexed line number in the source file where the step was detected.
1673
1799
  */
@@ -1685,7 +1811,7 @@ export interface SaveCookie {
1685
1811
  saveCookie: SaveCookie1;
1686
1812
  [k: string]: unknown;
1687
1813
  }
1688
- export interface Common10 {
1814
+ export interface Common11 {
1689
1815
  /**
1690
1816
  * JSON Schema for this object.
1691
1817
  */
@@ -1702,13 +1828,13 @@ export interface Common10 {
1702
1828
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1703
1829
  */
1704
1830
  unsafe?: boolean;
1705
- outputs?: OutputsStep10;
1706
- variables?: VariablesStep10;
1831
+ outputs?: OutputsStep11;
1832
+ variables?: VariablesStep11;
1707
1833
  /**
1708
1834
  * 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.
1709
1835
  */
1710
1836
  breakpoint?: boolean;
1711
- location?: SourceLocation10;
1837
+ location?: SourceLocation11;
1712
1838
  /**
1713
1839
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
1714
1840
  */
@@ -1718,11 +1844,11 @@ export interface Common10 {
1718
1844
  /**
1719
1845
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1720
1846
  */
1721
- export interface OutputsStep10 {
1847
+ export interface OutputsStep11 {
1722
1848
  /**
1723
1849
  * Runtime expression for a user-defined output value.
1724
1850
  *
1725
- * This interface was referenced by `OutputsStep10`'s JSON-Schema definition
1851
+ * This interface was referenced by `OutputsStep11`'s JSON-Schema definition
1726
1852
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1727
1853
  */
1728
1854
  [k: string]: string;
@@ -1730,11 +1856,11 @@ export interface OutputsStep10 {
1730
1856
  /**
1731
1857
  * Environment variables to set from user-defined expressions.
1732
1858
  */
1733
- export interface VariablesStep10 {
1859
+ export interface VariablesStep11 {
1734
1860
  /**
1735
1861
  * Runtime expression for a user-defined output value.
1736
1862
  *
1737
- * This interface was referenced by `VariablesStep10`'s JSON-Schema definition
1863
+ * This interface was referenced by `VariablesStep11`'s JSON-Schema definition
1738
1864
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1739
1865
  */
1740
1866
  [k: string]: string;
@@ -1742,7 +1868,7 @@ export interface VariablesStep10 {
1742
1868
  /**
1743
1869
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1744
1870
  */
1745
- export interface SourceLocation10 {
1871
+ export interface SourceLocation11 {
1746
1872
  /**
1747
1873
  * 1-indexed line number in the source file where the step was detected.
1748
1874
  */
@@ -1794,7 +1920,7 @@ export interface RecordingEngineDetailed {
1794
1920
  */
1795
1921
  fps?: number;
1796
1922
  }
1797
- export interface Common11 {
1923
+ export interface Common12 {
1798
1924
  /**
1799
1925
  * JSON Schema for this object.
1800
1926
  */
@@ -1811,13 +1937,13 @@ export interface Common11 {
1811
1937
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1812
1938
  */
1813
1939
  unsafe?: boolean;
1814
- outputs?: OutputsStep11;
1815
- variables?: VariablesStep11;
1940
+ outputs?: OutputsStep12;
1941
+ variables?: VariablesStep12;
1816
1942
  /**
1817
1943
  * 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.
1818
1944
  */
1819
1945
  breakpoint?: boolean;
1820
- location?: SourceLocation11;
1946
+ location?: SourceLocation12;
1821
1947
  /**
1822
1948
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
1823
1949
  */
@@ -1827,11 +1953,11 @@ export interface Common11 {
1827
1953
  /**
1828
1954
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1829
1955
  */
1830
- export interface OutputsStep11 {
1956
+ export interface OutputsStep12 {
1831
1957
  /**
1832
1958
  * Runtime expression for a user-defined output value.
1833
1959
  *
1834
- * This interface was referenced by `OutputsStep11`'s JSON-Schema definition
1960
+ * This interface was referenced by `OutputsStep12`'s JSON-Schema definition
1835
1961
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1836
1962
  */
1837
1963
  [k: string]: string;
@@ -1839,11 +1965,11 @@ export interface OutputsStep11 {
1839
1965
  /**
1840
1966
  * Environment variables to set from user-defined expressions.
1841
1967
  */
1842
- export interface VariablesStep11 {
1968
+ export interface VariablesStep12 {
1843
1969
  /**
1844
1970
  * Runtime expression for a user-defined output value.
1845
1971
  *
1846
- * This interface was referenced by `VariablesStep11`'s JSON-Schema definition
1972
+ * This interface was referenced by `VariablesStep12`'s JSON-Schema definition
1847
1973
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1848
1974
  */
1849
1975
  [k: string]: string;
@@ -1851,7 +1977,7 @@ export interface VariablesStep11 {
1851
1977
  /**
1852
1978
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1853
1979
  */
1854
- export interface SourceLocation11 {
1980
+ export interface SourceLocation12 {
1855
1981
  /**
1856
1982
  * 1-indexed line number in the source file where the step was detected.
1857
1983
  */
@@ -1875,7 +2001,7 @@ export interface StopRecordDetailed {
1875
2001
  */
1876
2002
  name: string;
1877
2003
  }
1878
- export interface Common12 {
2004
+ export interface Common13 {
1879
2005
  /**
1880
2006
  * JSON Schema for this object.
1881
2007
  */
@@ -1892,13 +2018,13 @@ export interface Common12 {
1892
2018
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1893
2019
  */
1894
2020
  unsafe?: boolean;
1895
- outputs?: OutputsStep12;
1896
- variables?: VariablesStep12;
2021
+ outputs?: OutputsStep13;
2022
+ variables?: VariablesStep13;
1897
2023
  /**
1898
2024
  * 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.
1899
2025
  */
1900
2026
  breakpoint?: boolean;
1901
- location?: SourceLocation12;
2027
+ location?: SourceLocation13;
1902
2028
  /**
1903
2029
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
1904
2030
  */
@@ -1908,11 +2034,11 @@ export interface Common12 {
1908
2034
  /**
1909
2035
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1910
2036
  */
1911
- export interface OutputsStep12 {
2037
+ export interface OutputsStep13 {
1912
2038
  /**
1913
2039
  * Runtime expression for a user-defined output value.
1914
2040
  *
1915
- * This interface was referenced by `OutputsStep12`'s JSON-Schema definition
2041
+ * This interface was referenced by `OutputsStep13`'s JSON-Schema definition
1916
2042
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1917
2043
  */
1918
2044
  [k: string]: string;
@@ -1920,11 +2046,11 @@ export interface OutputsStep12 {
1920
2046
  /**
1921
2047
  * Environment variables to set from user-defined expressions.
1922
2048
  */
1923
- export interface VariablesStep12 {
2049
+ export interface VariablesStep13 {
1924
2050
  /**
1925
2051
  * Runtime expression for a user-defined output value.
1926
2052
  *
1927
- * This interface was referenced by `VariablesStep12`'s JSON-Schema definition
2053
+ * This interface was referenced by `VariablesStep13`'s JSON-Schema definition
1928
2054
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1929
2055
  */
1930
2056
  [k: string]: string;
@@ -1932,7 +2058,7 @@ export interface VariablesStep12 {
1932
2058
  /**
1933
2059
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1934
2060
  */
1935
- export interface SourceLocation12 {
2061
+ export interface SourceLocation13 {
1936
2062
  /**
1937
2063
  * 1-indexed line number in the source file where the step was detected.
1938
2064
  */
@@ -1950,7 +2076,7 @@ export interface LoadVariables {
1950
2076
  loadVariables: LoadVariables1;
1951
2077
  [k: string]: unknown;
1952
2078
  }
1953
- export interface Common13 {
2079
+ export interface Common14 {
1954
2080
  /**
1955
2081
  * JSON Schema for this object.
1956
2082
  */
@@ -1967,13 +2093,13 @@ export interface Common13 {
1967
2093
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1968
2094
  */
1969
2095
  unsafe?: boolean;
1970
- outputs?: OutputsStep13;
1971
- variables?: VariablesStep13;
2096
+ outputs?: OutputsStep14;
2097
+ variables?: VariablesStep14;
1972
2098
  /**
1973
2099
  * 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.
1974
2100
  */
1975
2101
  breakpoint?: boolean;
1976
- location?: SourceLocation13;
2102
+ location?: SourceLocation14;
1977
2103
  /**
1978
2104
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
1979
2105
  */
@@ -1983,11 +2109,11 @@ export interface Common13 {
1983
2109
  /**
1984
2110
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1985
2111
  */
1986
- export interface OutputsStep13 {
2112
+ export interface OutputsStep14 {
1987
2113
  /**
1988
2114
  * Runtime expression for a user-defined output value.
1989
2115
  *
1990
- * This interface was referenced by `OutputsStep13`'s JSON-Schema definition
2116
+ * This interface was referenced by `OutputsStep14`'s JSON-Schema definition
1991
2117
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1992
2118
  */
1993
2119
  [k: string]: string;
@@ -1995,11 +2121,11 @@ export interface OutputsStep13 {
1995
2121
  /**
1996
2122
  * Environment variables to set from user-defined expressions.
1997
2123
  */
1998
- export interface VariablesStep13 {
2124
+ export interface VariablesStep14 {
1999
2125
  /**
2000
2126
  * Runtime expression for a user-defined output value.
2001
2127
  *
2002
- * This interface was referenced by `VariablesStep13`'s JSON-Schema definition
2128
+ * This interface was referenced by `VariablesStep14`'s JSON-Schema definition
2003
2129
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2004
2130
  */
2005
2131
  [k: string]: string;
@@ -2007,7 +2133,7 @@ export interface VariablesStep13 {
2007
2133
  /**
2008
2134
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2009
2135
  */
2010
- export interface SourceLocation13 {
2136
+ export interface SourceLocation14 {
2011
2137
  /**
2012
2138
  * 1-indexed line number in the source file where the step was detected.
2013
2139
  */
@@ -2043,7 +2169,7 @@ export interface DragAndDrop1 {
2043
2169
  duration?: number;
2044
2170
  [k: string]: unknown;
2045
2171
  }
2046
- export interface Common14 {
2172
+ export interface Common15 {
2047
2173
  /**
2048
2174
  * JSON Schema for this object.
2049
2175
  */
@@ -2060,13 +2186,13 @@ export interface Common14 {
2060
2186
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2061
2187
  */
2062
2188
  unsafe?: boolean;
2063
- outputs?: OutputsStep14;
2064
- variables?: VariablesStep14;
2189
+ outputs?: OutputsStep15;
2190
+ variables?: VariablesStep15;
2065
2191
  /**
2066
2192
  * 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.
2067
2193
  */
2068
2194
  breakpoint?: boolean;
2069
- location?: SourceLocation14;
2195
+ location?: SourceLocation15;
2070
2196
  /**
2071
2197
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2072
2198
  */
@@ -2076,11 +2202,11 @@ export interface Common14 {
2076
2202
  /**
2077
2203
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2078
2204
  */
2079
- export interface OutputsStep14 {
2205
+ export interface OutputsStep15 {
2080
2206
  /**
2081
2207
  * Runtime expression for a user-defined output value.
2082
2208
  *
2083
- * This interface was referenced by `OutputsStep14`'s JSON-Schema definition
2209
+ * This interface was referenced by `OutputsStep15`'s JSON-Schema definition
2084
2210
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2085
2211
  */
2086
2212
  [k: string]: string;
@@ -2088,11 +2214,11 @@ export interface OutputsStep14 {
2088
2214
  /**
2089
2215
  * Environment variables to set from user-defined expressions.
2090
2216
  */
2091
- export interface VariablesStep14 {
2217
+ export interface VariablesStep15 {
2092
2218
  /**
2093
2219
  * Runtime expression for a user-defined output value.
2094
2220
  *
2095
- * This interface was referenced by `VariablesStep14`'s JSON-Schema definition
2221
+ * This interface was referenced by `VariablesStep15`'s JSON-Schema definition
2096
2222
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2097
2223
  */
2098
2224
  [k: string]: string;
@@ -2100,7 +2226,7 @@ export interface VariablesStep14 {
2100
2226
  /**
2101
2227
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2102
2228
  */
2103
- export interface SourceLocation14 {
2229
+ export interface SourceLocation15 {
2104
2230
  /**
2105
2231
  * 1-indexed line number in the source file where the step was detected.
2106
2232
  */
@@ -2118,7 +2244,7 @@ export interface LoadCookie {
2118
2244
  loadCookie: LoadCookie1;
2119
2245
  [k: string]: unknown;
2120
2246
  }
2121
- export interface Common15 {
2247
+ export interface Common16 {
2122
2248
  /**
2123
2249
  * JSON Schema for this object.
2124
2250
  */
@@ -2135,13 +2261,13 @@ export interface Common15 {
2135
2261
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2136
2262
  */
2137
2263
  unsafe?: boolean;
2138
- outputs?: OutputsStep15;
2139
- variables?: VariablesStep15;
2264
+ outputs?: OutputsStep16;
2265
+ variables?: VariablesStep16;
2140
2266
  /**
2141
2267
  * 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.
2142
2268
  */
2143
2269
  breakpoint?: boolean;
2144
- location?: SourceLocation15;
2270
+ location?: SourceLocation16;
2145
2271
  /**
2146
2272
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2147
2273
  */
@@ -2151,11 +2277,11 @@ export interface Common15 {
2151
2277
  /**
2152
2278
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2153
2279
  */
2154
- export interface OutputsStep15 {
2280
+ export interface OutputsStep16 {
2155
2281
  /**
2156
2282
  * Runtime expression for a user-defined output value.
2157
2283
  *
2158
- * This interface was referenced by `OutputsStep15`'s JSON-Schema definition
2284
+ * This interface was referenced by `OutputsStep16`'s JSON-Schema definition
2159
2285
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2160
2286
  */
2161
2287
  [k: string]: string;
@@ -2163,11 +2289,11 @@ export interface OutputsStep15 {
2163
2289
  /**
2164
2290
  * Environment variables to set from user-defined expressions.
2165
2291
  */
2166
- export interface VariablesStep15 {
2292
+ export interface VariablesStep16 {
2167
2293
  /**
2168
2294
  * Runtime expression for a user-defined output value.
2169
2295
  *
2170
- * This interface was referenced by `VariablesStep15`'s JSON-Schema definition
2296
+ * This interface was referenced by `VariablesStep16`'s JSON-Schema definition
2171
2297
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2172
2298
  */
2173
2299
  [k: string]: string;
@@ -2175,7 +2301,7 @@ export interface VariablesStep15 {
2175
2301
  /**
2176
2302
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2177
2303
  */
2178
- export interface SourceLocation15 {
2304
+ export interface SourceLocation16 {
2179
2305
  /**
2180
2306
  * 1-indexed line number in the source file where the step was detected.
2181
2307
  */
@@ -2252,7 +2378,7 @@ export interface BrowserViewport2 {
2252
2378
  export interface OpenAPIDescriptionTest1 {
2253
2379
  [k: string]: unknown;
2254
2380
  }
2255
- export interface Common16 {
2381
+ export interface Common17 {
2256
2382
  /**
2257
2383
  * JSON Schema for this object.
2258
2384
  */
@@ -2269,13 +2395,13 @@ export interface Common16 {
2269
2395
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2270
2396
  */
2271
2397
  unsafe?: boolean;
2272
- outputs?: OutputsStep16;
2273
- variables?: VariablesStep16;
2398
+ outputs?: OutputsStep17;
2399
+ variables?: VariablesStep17;
2274
2400
  /**
2275
2401
  * 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.
2276
2402
  */
2277
2403
  breakpoint?: boolean;
2278
- location?: SourceLocation16;
2404
+ location?: SourceLocation17;
2279
2405
  /**
2280
2406
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2281
2407
  */
@@ -2285,11 +2411,11 @@ export interface Common16 {
2285
2411
  /**
2286
2412
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2287
2413
  */
2288
- export interface OutputsStep16 {
2414
+ export interface OutputsStep17 {
2289
2415
  /**
2290
2416
  * Runtime expression for a user-defined output value.
2291
2417
  *
2292
- * This interface was referenced by `OutputsStep16`'s JSON-Schema definition
2418
+ * This interface was referenced by `OutputsStep17`'s JSON-Schema definition
2293
2419
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2294
2420
  */
2295
2421
  [k: string]: string;
@@ -2297,11 +2423,11 @@ export interface OutputsStep16 {
2297
2423
  /**
2298
2424
  * Environment variables to set from user-defined expressions.
2299
2425
  */
2300
- export interface VariablesStep16 {
2426
+ export interface VariablesStep17 {
2301
2427
  /**
2302
2428
  * Runtime expression for a user-defined output value.
2303
2429
  *
2304
- * This interface was referenced by `VariablesStep16`'s JSON-Schema definition
2430
+ * This interface was referenced by `VariablesStep17`'s JSON-Schema definition
2305
2431
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2306
2432
  */
2307
2433
  [k: string]: string;
@@ -2309,7 +2435,7 @@ export interface VariablesStep16 {
2309
2435
  /**
2310
2436
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2311
2437
  */
2312
- export interface SourceLocation16 {
2438
+ export interface SourceLocation17 {
2313
2439
  /**
2314
2440
  * 1-indexed line number in the source file where the step was detected.
2315
2441
  */
@@ -2360,7 +2486,7 @@ export interface CheckLinkDetailed3 {
2360
2486
  export interface RequestHeadersObject1 {
2361
2487
  [k: string]: string;
2362
2488
  }
2363
- export interface Common17 {
2489
+ export interface Common18 {
2364
2490
  /**
2365
2491
  * JSON Schema for this object.
2366
2492
  */
@@ -2377,13 +2503,13 @@ export interface Common17 {
2377
2503
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2378
2504
  */
2379
2505
  unsafe?: boolean;
2380
- outputs?: OutputsStep17;
2381
- variables?: VariablesStep17;
2506
+ outputs?: OutputsStep18;
2507
+ variables?: VariablesStep18;
2382
2508
  /**
2383
2509
  * 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.
2384
2510
  */
2385
2511
  breakpoint?: boolean;
2386
- location?: SourceLocation17;
2512
+ location?: SourceLocation18;
2387
2513
  /**
2388
2514
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2389
2515
  */
@@ -2393,11 +2519,11 @@ export interface Common17 {
2393
2519
  /**
2394
2520
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2395
2521
  */
2396
- export interface OutputsStep17 {
2522
+ export interface OutputsStep18 {
2397
2523
  /**
2398
2524
  * Runtime expression for a user-defined output value.
2399
2525
  *
2400
- * This interface was referenced by `OutputsStep17`'s JSON-Schema definition
2526
+ * This interface was referenced by `OutputsStep18`'s JSON-Schema definition
2401
2527
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2402
2528
  */
2403
2529
  [k: string]: string;
@@ -2405,11 +2531,11 @@ export interface OutputsStep17 {
2405
2531
  /**
2406
2532
  * Environment variables to set from user-defined expressions.
2407
2533
  */
2408
- export interface VariablesStep17 {
2534
+ export interface VariablesStep18 {
2409
2535
  /**
2410
2536
  * Runtime expression for a user-defined output value.
2411
2537
  *
2412
- * This interface was referenced by `VariablesStep17`'s JSON-Schema definition
2538
+ * This interface was referenced by `VariablesStep18`'s JSON-Schema definition
2413
2539
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2414
2540
  */
2415
2541
  [k: string]: string;
@@ -2417,7 +2543,7 @@ export interface VariablesStep17 {
2417
2543
  /**
2418
2544
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2419
2545
  */
2420
- export interface SourceLocation17 {
2546
+ export interface SourceLocation18 {
2421
2547
  /**
2422
2548
  * 1-indexed line number in the source file where the step was detected.
2423
2549
  */
@@ -2435,7 +2561,7 @@ export interface Click2 {
2435
2561
  click: Click3;
2436
2562
  [k: string]: unknown;
2437
2563
  }
2438
- export interface Common18 {
2564
+ export interface Common19 {
2439
2565
  /**
2440
2566
  * JSON Schema for this object.
2441
2567
  */
@@ -2452,13 +2578,13 @@ export interface Common18 {
2452
2578
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2453
2579
  */
2454
2580
  unsafe?: boolean;
2455
- outputs?: OutputsStep18;
2456
- variables?: VariablesStep18;
2581
+ outputs?: OutputsStep19;
2582
+ variables?: VariablesStep19;
2457
2583
  /**
2458
2584
  * 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.
2459
2585
  */
2460
2586
  breakpoint?: boolean;
2461
- location?: SourceLocation18;
2587
+ location?: SourceLocation19;
2462
2588
  /**
2463
2589
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2464
2590
  */
@@ -2468,11 +2594,11 @@ export interface Common18 {
2468
2594
  /**
2469
2595
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2470
2596
  */
2471
- export interface OutputsStep18 {
2597
+ export interface OutputsStep19 {
2472
2598
  /**
2473
2599
  * Runtime expression for a user-defined output value.
2474
2600
  *
2475
- * This interface was referenced by `OutputsStep18`'s JSON-Schema definition
2601
+ * This interface was referenced by `OutputsStep19`'s JSON-Schema definition
2476
2602
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2477
2603
  */
2478
2604
  [k: string]: string;
@@ -2480,11 +2606,11 @@ export interface OutputsStep18 {
2480
2606
  /**
2481
2607
  * Environment variables to set from user-defined expressions.
2482
2608
  */
2483
- export interface VariablesStep18 {
2609
+ export interface VariablesStep19 {
2484
2610
  /**
2485
2611
  * Runtime expression for a user-defined output value.
2486
2612
  *
2487
- * This interface was referenced by `VariablesStep18`'s JSON-Schema definition
2613
+ * This interface was referenced by `VariablesStep19`'s JSON-Schema definition
2488
2614
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2489
2615
  */
2490
2616
  [k: string]: string;
@@ -2492,7 +2618,7 @@ export interface VariablesStep18 {
2492
2618
  /**
2493
2619
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2494
2620
  */
2495
- export interface SourceLocation18 {
2621
+ export interface SourceLocation19 {
2496
2622
  /**
2497
2623
  * 1-indexed line number in the source file where the step was detected.
2498
2624
  */
@@ -2510,7 +2636,7 @@ export interface Find2 {
2510
2636
  find: Find3;
2511
2637
  [k: string]: unknown;
2512
2638
  }
2513
- export interface Common19 {
2639
+ export interface Common20 {
2514
2640
  /**
2515
2641
  * JSON Schema for this object.
2516
2642
  */
@@ -2527,13 +2653,13 @@ export interface Common19 {
2527
2653
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2528
2654
  */
2529
2655
  unsafe?: boolean;
2530
- outputs?: OutputsStep19;
2531
- variables?: VariablesStep19;
2656
+ outputs?: OutputsStep20;
2657
+ variables?: VariablesStep20;
2532
2658
  /**
2533
2659
  * 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.
2534
2660
  */
2535
2661
  breakpoint?: boolean;
2536
- location?: SourceLocation19;
2662
+ location?: SourceLocation20;
2537
2663
  /**
2538
2664
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2539
2665
  */
@@ -2543,11 +2669,11 @@ export interface Common19 {
2543
2669
  /**
2544
2670
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2545
2671
  */
2546
- export interface OutputsStep19 {
2672
+ export interface OutputsStep20 {
2547
2673
  /**
2548
2674
  * Runtime expression for a user-defined output value.
2549
2675
  *
2550
- * This interface was referenced by `OutputsStep19`'s JSON-Schema definition
2676
+ * This interface was referenced by `OutputsStep20`'s JSON-Schema definition
2551
2677
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2552
2678
  */
2553
2679
  [k: string]: string;
@@ -2555,11 +2681,11 @@ export interface OutputsStep19 {
2555
2681
  /**
2556
2682
  * Environment variables to set from user-defined expressions.
2557
2683
  */
2558
- export interface VariablesStep19 {
2684
+ export interface VariablesStep20 {
2559
2685
  /**
2560
2686
  * Runtime expression for a user-defined output value.
2561
2687
  *
2562
- * This interface was referenced by `VariablesStep19`'s JSON-Schema definition
2688
+ * This interface was referenced by `VariablesStep20`'s JSON-Schema definition
2563
2689
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2564
2690
  */
2565
2691
  [k: string]: string;
@@ -2567,7 +2693,7 @@ export interface VariablesStep19 {
2567
2693
  /**
2568
2694
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2569
2695
  */
2570
- export interface SourceLocation19 {
2696
+ export interface SourceLocation20 {
2571
2697
  /**
2572
2698
  * 1-indexed line number in the source file where the step was detected.
2573
2699
  */
@@ -2639,7 +2765,7 @@ export interface GoToURLDetailed1 {
2639
2765
  };
2640
2766
  };
2641
2767
  }
2642
- export interface Common20 {
2768
+ export interface Common21 {
2643
2769
  /**
2644
2770
  * JSON Schema for this object.
2645
2771
  */
@@ -2656,13 +2782,13 @@ export interface Common20 {
2656
2782
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2657
2783
  */
2658
2784
  unsafe?: boolean;
2659
- outputs?: OutputsStep20;
2660
- variables?: VariablesStep20;
2785
+ outputs?: OutputsStep21;
2786
+ variables?: VariablesStep21;
2661
2787
  /**
2662
2788
  * 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.
2663
2789
  */
2664
2790
  breakpoint?: boolean;
2665
- location?: SourceLocation20;
2791
+ location?: SourceLocation21;
2666
2792
  /**
2667
2793
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2668
2794
  */
@@ -2672,11 +2798,11 @@ export interface Common20 {
2672
2798
  /**
2673
2799
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2674
2800
  */
2675
- export interface OutputsStep20 {
2801
+ export interface OutputsStep21 {
2676
2802
  /**
2677
2803
  * Runtime expression for a user-defined output value.
2678
2804
  *
2679
- * This interface was referenced by `OutputsStep20`'s JSON-Schema definition
2805
+ * This interface was referenced by `OutputsStep21`'s JSON-Schema definition
2680
2806
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2681
2807
  */
2682
2808
  [k: string]: string;
@@ -2684,11 +2810,11 @@ export interface OutputsStep20 {
2684
2810
  /**
2685
2811
  * Environment variables to set from user-defined expressions.
2686
2812
  */
2687
- export interface VariablesStep20 {
2813
+ export interface VariablesStep21 {
2688
2814
  /**
2689
2815
  * Runtime expression for a user-defined output value.
2690
2816
  *
2691
- * This interface was referenced by `VariablesStep20`'s JSON-Schema definition
2817
+ * This interface was referenced by `VariablesStep21`'s JSON-Schema definition
2692
2818
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2693
2819
  */
2694
2820
  [k: string]: string;
@@ -2696,7 +2822,7 @@ export interface VariablesStep20 {
2696
2822
  /**
2697
2823
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2698
2824
  */
2699
- export interface SourceLocation20 {
2825
+ export interface SourceLocation21 {
2700
2826
  /**
2701
2827
  * 1-indexed line number in the source file where the step was detected.
2702
2828
  */
@@ -2714,7 +2840,7 @@ export interface HttpRequest2 {
2714
2840
  httpRequest: HttpRequest3;
2715
2841
  [k: string]: unknown;
2716
2842
  }
2717
- export interface Common21 {
2843
+ export interface Common22 {
2718
2844
  /**
2719
2845
  * JSON Schema for this object.
2720
2846
  */
@@ -2731,13 +2857,13 @@ export interface Common21 {
2731
2857
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2732
2858
  */
2733
2859
  unsafe?: boolean;
2734
- outputs?: OutputsStep21;
2735
- variables?: VariablesStep21;
2860
+ outputs?: OutputsStep22;
2861
+ variables?: VariablesStep22;
2736
2862
  /**
2737
2863
  * 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.
2738
2864
  */
2739
2865
  breakpoint?: boolean;
2740
- location?: SourceLocation21;
2866
+ location?: SourceLocation22;
2741
2867
  /**
2742
2868
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2743
2869
  */
@@ -2747,11 +2873,11 @@ export interface Common21 {
2747
2873
  /**
2748
2874
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2749
2875
  */
2750
- export interface OutputsStep21 {
2876
+ export interface OutputsStep22 {
2751
2877
  /**
2752
2878
  * Runtime expression for a user-defined output value.
2753
2879
  *
2754
- * This interface was referenced by `OutputsStep21`'s JSON-Schema definition
2880
+ * This interface was referenced by `OutputsStep22`'s JSON-Schema definition
2755
2881
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2756
2882
  */
2757
2883
  [k: string]: string;
@@ -2759,11 +2885,11 @@ export interface OutputsStep21 {
2759
2885
  /**
2760
2886
  * Environment variables to set from user-defined expressions.
2761
2887
  */
2762
- export interface VariablesStep21 {
2888
+ export interface VariablesStep22 {
2763
2889
  /**
2764
2890
  * Runtime expression for a user-defined output value.
2765
2891
  *
2766
- * This interface was referenced by `VariablesStep21`'s JSON-Schema definition
2892
+ * This interface was referenced by `VariablesStep22`'s JSON-Schema definition
2767
2893
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2768
2894
  */
2769
2895
  [k: string]: string;
@@ -2771,7 +2897,7 @@ export interface VariablesStep21 {
2771
2897
  /**
2772
2898
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2773
2899
  */
2774
- export interface SourceLocation21 {
2900
+ export interface SourceLocation22 {
2775
2901
  /**
2776
2902
  * 1-indexed line number in the source file where the step was detected.
2777
2903
  */
@@ -2832,7 +2958,7 @@ export interface RunShellCommandDetailed1 {
2832
2958
  */
2833
2959
  timeout?: number;
2834
2960
  }
2835
- export interface Common22 {
2961
+ export interface Common23 {
2836
2962
  /**
2837
2963
  * JSON Schema for this object.
2838
2964
  */
@@ -2849,13 +2975,13 @@ export interface Common22 {
2849
2975
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2850
2976
  */
2851
2977
  unsafe?: boolean;
2852
- outputs?: OutputsStep22;
2853
- variables?: VariablesStep22;
2978
+ outputs?: OutputsStep23;
2979
+ variables?: VariablesStep23;
2854
2980
  /**
2855
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.
2856
2982
  */
2857
2983
  breakpoint?: boolean;
2858
- location?: SourceLocation22;
2984
+ location?: SourceLocation23;
2859
2985
  /**
2860
2986
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2861
2987
  */
@@ -2865,11 +2991,11 @@ export interface Common22 {
2865
2991
  /**
2866
2992
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2867
2993
  */
2868
- export interface OutputsStep22 {
2994
+ export interface OutputsStep23 {
2869
2995
  /**
2870
2996
  * Runtime expression for a user-defined output value.
2871
2997
  *
2872
- * This interface was referenced by `OutputsStep22`'s JSON-Schema definition
2998
+ * This interface was referenced by `OutputsStep23`'s JSON-Schema definition
2873
2999
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2874
3000
  */
2875
3001
  [k: string]: string;
@@ -2877,11 +3003,11 @@ export interface OutputsStep22 {
2877
3003
  /**
2878
3004
  * Environment variables to set from user-defined expressions.
2879
3005
  */
2880
- export interface VariablesStep22 {
3006
+ export interface VariablesStep23 {
2881
3007
  /**
2882
3008
  * Runtime expression for a user-defined output value.
2883
3009
  *
2884
- * This interface was referenced by `VariablesStep22`'s JSON-Schema definition
3010
+ * This interface was referenced by `VariablesStep23`'s JSON-Schema definition
2885
3011
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2886
3012
  */
2887
3013
  [k: string]: string;
@@ -2889,7 +3015,7 @@ export interface VariablesStep22 {
2889
3015
  /**
2890
3016
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2891
3017
  */
2892
- export interface SourceLocation22 {
3018
+ export interface SourceLocation23 {
2893
3019
  /**
2894
3020
  * 1-indexed line number in the source file where the step was detected.
2895
3021
  */
@@ -2955,7 +3081,7 @@ export interface RunCodeDetailed1 {
2955
3081
  timeout?: number;
2956
3082
  [k: string]: unknown;
2957
3083
  }
2958
- export interface Common23 {
3084
+ export interface Common24 {
2959
3085
  /**
2960
3086
  * JSON Schema for this object.
2961
3087
  */
@@ -2972,13 +3098,13 @@ export interface Common23 {
2972
3098
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2973
3099
  */
2974
3100
  unsafe?: boolean;
2975
- outputs?: OutputsStep23;
2976
- variables?: VariablesStep23;
3101
+ outputs?: OutputsStep24;
3102
+ variables?: VariablesStep24;
2977
3103
  /**
2978
3104
  * 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.
2979
3105
  */
2980
3106
  breakpoint?: boolean;
2981
- location?: SourceLocation23;
3107
+ location?: SourceLocation24;
2982
3108
  /**
2983
3109
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
2984
3110
  */
@@ -2988,11 +3114,11 @@ export interface Common23 {
2988
3114
  /**
2989
3115
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2990
3116
  */
2991
- export interface OutputsStep23 {
3117
+ export interface OutputsStep24 {
2992
3118
  /**
2993
3119
  * Runtime expression for a user-defined output value.
2994
3120
  *
2995
- * This interface was referenced by `OutputsStep23`'s JSON-Schema definition
3121
+ * This interface was referenced by `OutputsStep24`'s JSON-Schema definition
2996
3122
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2997
3123
  */
2998
3124
  [k: string]: string;
@@ -3000,11 +3126,11 @@ export interface OutputsStep23 {
3000
3126
  /**
3001
3127
  * Environment variables to set from user-defined expressions.
3002
3128
  */
3003
- export interface VariablesStep23 {
3129
+ export interface VariablesStep24 {
3004
3130
  /**
3005
3131
  * Runtime expression for a user-defined output value.
3006
3132
  *
3007
- * This interface was referenced by `VariablesStep23`'s JSON-Schema definition
3133
+ * This interface was referenced by `VariablesStep24`'s JSON-Schema definition
3008
3134
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3009
3135
  */
3010
3136
  [k: string]: string;
@@ -3012,7 +3138,117 @@ export interface VariablesStep23 {
3012
3138
  /**
3013
3139
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3014
3140
  */
3015
- export interface SourceLocation23 {
3141
+ export interface SourceLocation24 {
3142
+ /**
3143
+ * 1-indexed line number in the source file where the step was detected.
3144
+ */
3145
+ line: number;
3146
+ /**
3147
+ * 0-indexed character offset from the start of the source file where the step begins.
3148
+ */
3149
+ startIndex: number;
3150
+ /**
3151
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
3152
+ */
3153
+ endIndex: number;
3154
+ }
3155
+ export interface RunBrowserScript2 {
3156
+ runBrowserScript: RunBrowserScript3;
3157
+ [k: string]: unknown;
3158
+ }
3159
+ export interface RunBrowserScriptDetailed1 {
3160
+ /**
3161
+ * JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`. The script reads arguments supplied in `args` through the `arguments` object (`arguments[0]`, `arguments[1]`, and so on).
3162
+ */
3163
+ script: string;
3164
+ /**
3165
+ * Arguments passed positionally to the script and exposed through the `arguments` object. Each item may be any JSON-serializable value (string, number, boolean, null, object, or array), matching what `executeScript` accepts.
3166
+ */
3167
+ args?: unknown[];
3168
+ /**
3169
+ * Content expected in the script's serialized return value. Doc Detective serializes non-string return values to JSON before matching. If the serialized return value doesn't contain the expected content, the step fails. Supports strings and regular expressions. To use a regular expression, the string must start and end with a forward slash, like in `/^hello-world.* /`.
3170
+ */
3171
+ output?: string;
3172
+ /**
3173
+ * File path to save the script's serialized return value, relative to `directory`.
3174
+ */
3175
+ path?: string;
3176
+ /**
3177
+ * Directory to save the script's return value. If the directory doesn't exist, creates the directory. If not specified, the directory is your media directory.
3178
+ */
3179
+ directory?: string;
3180
+ /**
3181
+ * Allowed variation as a fraction (0 to 1) of text different between the current return value and previously saved value. For example, 0.1 means 10%. If the difference between the current value and the previous value is greater than `maxVariation`, the step returns a warning. If no output exists at `path`, Doc Detective ignores this value.
3182
+ */
3183
+ maxVariation?: number;
3184
+ /**
3185
+ * If `true`, overwrites the existing output at `path` if it exists.
3186
+ * If `aboveVariation`, overwrites the existing output at `path` if the difference between the new output and the existing output is greater than `maxVariation`.
3187
+ */
3188
+ overwrite?: "true" | "false" | "aboveVariation";
3189
+ /**
3190
+ * Maximum time in milliseconds the script may run. If the script runs longer than this, the step fails.
3191
+ */
3192
+ timeout?: number;
3193
+ }
3194
+ export interface Common25 {
3195
+ /**
3196
+ * JSON Schema for this object.
3197
+ */
3198
+ $schema?: "https://raw.githubusercontent.com/doc-detective/common/refs/heads/main/dist/schemas/step_v3.schema.json";
3199
+ /**
3200
+ * ID of the step.
3201
+ */
3202
+ stepId?: string;
3203
+ /**
3204
+ * Description of the step.
3205
+ */
3206
+ description?: string;
3207
+ /**
3208
+ * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3209
+ */
3210
+ unsafe?: boolean;
3211
+ outputs?: OutputsStep25;
3212
+ variables?: VariablesStep25;
3213
+ /**
3214
+ * 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.
3215
+ */
3216
+ breakpoint?: boolean;
3217
+ location?: SourceLocation25;
3218
+ /**
3219
+ * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
3220
+ */
3221
+ autoScreenshot?: string;
3222
+ [k: string]: unknown;
3223
+ }
3224
+ /**
3225
+ * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3226
+ */
3227
+ export interface OutputsStep25 {
3228
+ /**
3229
+ * Runtime expression for a user-defined output value.
3230
+ *
3231
+ * This interface was referenced by `OutputsStep25`'s JSON-Schema definition
3232
+ * via the `patternProperty` "^[A-Za-z0-9_]+$".
3233
+ */
3234
+ [k: string]: string;
3235
+ }
3236
+ /**
3237
+ * Environment variables to set from user-defined expressions.
3238
+ */
3239
+ export interface VariablesStep25 {
3240
+ /**
3241
+ * Runtime expression for a user-defined output value.
3242
+ *
3243
+ * This interface was referenced by `VariablesStep25`'s JSON-Schema definition
3244
+ * via the `patternProperty` "^[A-Za-z0-9_]+$".
3245
+ */
3246
+ [k: string]: string;
3247
+ }
3248
+ /**
3249
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3250
+ */
3251
+ export interface SourceLocation25 {
3016
3252
  /**
3017
3253
  * 1-indexed line number in the source file where the step was detected.
3018
3254
  */
@@ -3067,7 +3303,7 @@ export interface TypeKeysDetailed1 {
3067
3303
  */
3068
3304
  elementAria?: string;
3069
3305
  }
3070
- export interface Common24 {
3306
+ export interface Common26 {
3071
3307
  /**
3072
3308
  * JSON Schema for this object.
3073
3309
  */
@@ -3084,13 +3320,13 @@ export interface Common24 {
3084
3320
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3085
3321
  */
3086
3322
  unsafe?: boolean;
3087
- outputs?: OutputsStep24;
3088
- variables?: VariablesStep24;
3323
+ outputs?: OutputsStep26;
3324
+ variables?: VariablesStep26;
3089
3325
  /**
3090
3326
  * 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.
3091
3327
  */
3092
3328
  breakpoint?: boolean;
3093
- location?: SourceLocation24;
3329
+ location?: SourceLocation26;
3094
3330
  /**
3095
3331
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
3096
3332
  */
@@ -3100,11 +3336,11 @@ export interface Common24 {
3100
3336
  /**
3101
3337
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3102
3338
  */
3103
- export interface OutputsStep24 {
3339
+ export interface OutputsStep26 {
3104
3340
  /**
3105
3341
  * Runtime expression for a user-defined output value.
3106
3342
  *
3107
- * This interface was referenced by `OutputsStep24`'s JSON-Schema definition
3343
+ * This interface was referenced by `OutputsStep26`'s JSON-Schema definition
3108
3344
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3109
3345
  */
3110
3346
  [k: string]: string;
@@ -3112,11 +3348,11 @@ export interface OutputsStep24 {
3112
3348
  /**
3113
3349
  * Environment variables to set from user-defined expressions.
3114
3350
  */
3115
- export interface VariablesStep24 {
3351
+ export interface VariablesStep26 {
3116
3352
  /**
3117
3353
  * Runtime expression for a user-defined output value.
3118
3354
  *
3119
- * This interface was referenced by `VariablesStep24`'s JSON-Schema definition
3355
+ * This interface was referenced by `VariablesStep26`'s JSON-Schema definition
3120
3356
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3121
3357
  */
3122
3358
  [k: string]: string;
@@ -3124,7 +3360,7 @@ export interface VariablesStep24 {
3124
3360
  /**
3125
3361
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3126
3362
  */
3127
- export interface SourceLocation24 {
3363
+ export interface SourceLocation26 {
3128
3364
  /**
3129
3365
  * 1-indexed line number in the source file where the step was detected.
3130
3366
  */
@@ -3185,7 +3421,7 @@ export interface SourceIntegration1 {
3185
3421
  */
3186
3422
  contentPath?: string;
3187
3423
  }
3188
- export interface Common25 {
3424
+ export interface Common27 {
3189
3425
  /**
3190
3426
  * JSON Schema for this object.
3191
3427
  */
@@ -3202,13 +3438,13 @@ export interface Common25 {
3202
3438
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3203
3439
  */
3204
3440
  unsafe?: boolean;
3205
- outputs?: OutputsStep25;
3206
- variables?: VariablesStep25;
3441
+ outputs?: OutputsStep27;
3442
+ variables?: VariablesStep27;
3207
3443
  /**
3208
3444
  * 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.
3209
3445
  */
3210
3446
  breakpoint?: boolean;
3211
- location?: SourceLocation25;
3447
+ location?: SourceLocation27;
3212
3448
  /**
3213
3449
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
3214
3450
  */
@@ -3218,11 +3454,11 @@ export interface Common25 {
3218
3454
  /**
3219
3455
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3220
3456
  */
3221
- export interface OutputsStep25 {
3457
+ export interface OutputsStep27 {
3222
3458
  /**
3223
3459
  * Runtime expression for a user-defined output value.
3224
3460
  *
3225
- * This interface was referenced by `OutputsStep25`'s JSON-Schema definition
3461
+ * This interface was referenced by `OutputsStep27`'s JSON-Schema definition
3226
3462
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3227
3463
  */
3228
3464
  [k: string]: string;
@@ -3230,11 +3466,11 @@ export interface OutputsStep25 {
3230
3466
  /**
3231
3467
  * Environment variables to set from user-defined expressions.
3232
3468
  */
3233
- export interface VariablesStep25 {
3469
+ export interface VariablesStep27 {
3234
3470
  /**
3235
3471
  * Runtime expression for a user-defined output value.
3236
3472
  *
3237
- * This interface was referenced by `VariablesStep25`'s JSON-Schema definition
3473
+ * This interface was referenced by `VariablesStep27`'s JSON-Schema definition
3238
3474
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3239
3475
  */
3240
3476
  [k: string]: string;
@@ -3242,7 +3478,7 @@ export interface VariablesStep25 {
3242
3478
  /**
3243
3479
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3244
3480
  */
3245
- export interface SourceLocation25 {
3481
+ export interface SourceLocation27 {
3246
3482
  /**
3247
3483
  * 1-indexed line number in the source file where the step was detected.
3248
3484
  */
@@ -3260,7 +3496,7 @@ export interface SaveCookie2 {
3260
3496
  saveCookie: SaveCookie3;
3261
3497
  [k: string]: unknown;
3262
3498
  }
3263
- export interface Common26 {
3499
+ export interface Common28 {
3264
3500
  /**
3265
3501
  * JSON Schema for this object.
3266
3502
  */
@@ -3277,13 +3513,13 @@ export interface Common26 {
3277
3513
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3278
3514
  */
3279
3515
  unsafe?: boolean;
3280
- outputs?: OutputsStep26;
3281
- variables?: VariablesStep26;
3516
+ outputs?: OutputsStep28;
3517
+ variables?: VariablesStep28;
3282
3518
  /**
3283
3519
  * 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.
3284
3520
  */
3285
3521
  breakpoint?: boolean;
3286
- location?: SourceLocation26;
3522
+ location?: SourceLocation28;
3287
3523
  /**
3288
3524
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
3289
3525
  */
@@ -3293,11 +3529,11 @@ export interface Common26 {
3293
3529
  /**
3294
3530
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3295
3531
  */
3296
- export interface OutputsStep26 {
3532
+ export interface OutputsStep28 {
3297
3533
  /**
3298
3534
  * Runtime expression for a user-defined output value.
3299
3535
  *
3300
- * This interface was referenced by `OutputsStep26`'s JSON-Schema definition
3536
+ * This interface was referenced by `OutputsStep28`'s JSON-Schema definition
3301
3537
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3302
3538
  */
3303
3539
  [k: string]: string;
@@ -3305,11 +3541,11 @@ export interface OutputsStep26 {
3305
3541
  /**
3306
3542
  * Environment variables to set from user-defined expressions.
3307
3543
  */
3308
- export interface VariablesStep26 {
3544
+ export interface VariablesStep28 {
3309
3545
  /**
3310
3546
  * Runtime expression for a user-defined output value.
3311
3547
  *
3312
- * This interface was referenced by `VariablesStep26`'s JSON-Schema definition
3548
+ * This interface was referenced by `VariablesStep28`'s JSON-Schema definition
3313
3549
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3314
3550
  */
3315
3551
  [k: string]: string;
@@ -3317,7 +3553,7 @@ export interface VariablesStep26 {
3317
3553
  /**
3318
3554
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3319
3555
  */
3320
- export interface SourceLocation26 {
3556
+ export interface SourceLocation28 {
3321
3557
  /**
3322
3558
  * 1-indexed line number in the source file where the step was detected.
3323
3559
  */
@@ -3369,7 +3605,7 @@ export interface RecordingEngineDetailed1 {
3369
3605
  */
3370
3606
  fps?: number;
3371
3607
  }
3372
- export interface Common27 {
3608
+ export interface Common29 {
3373
3609
  /**
3374
3610
  * JSON Schema for this object.
3375
3611
  */
@@ -3386,13 +3622,13 @@ export interface Common27 {
3386
3622
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3387
3623
  */
3388
3624
  unsafe?: boolean;
3389
- outputs?: OutputsStep27;
3390
- variables?: VariablesStep27;
3625
+ outputs?: OutputsStep29;
3626
+ variables?: VariablesStep29;
3391
3627
  /**
3392
3628
  * 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.
3393
3629
  */
3394
3630
  breakpoint?: boolean;
3395
- location?: SourceLocation27;
3631
+ location?: SourceLocation29;
3396
3632
  /**
3397
3633
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
3398
3634
  */
@@ -3402,11 +3638,11 @@ export interface Common27 {
3402
3638
  /**
3403
3639
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3404
3640
  */
3405
- export interface OutputsStep27 {
3641
+ export interface OutputsStep29 {
3406
3642
  /**
3407
3643
  * Runtime expression for a user-defined output value.
3408
3644
  *
3409
- * This interface was referenced by `OutputsStep27`'s JSON-Schema definition
3645
+ * This interface was referenced by `OutputsStep29`'s JSON-Schema definition
3410
3646
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3411
3647
  */
3412
3648
  [k: string]: string;
@@ -3414,11 +3650,11 @@ export interface OutputsStep27 {
3414
3650
  /**
3415
3651
  * Environment variables to set from user-defined expressions.
3416
3652
  */
3417
- export interface VariablesStep27 {
3653
+ export interface VariablesStep29 {
3418
3654
  /**
3419
3655
  * Runtime expression for a user-defined output value.
3420
3656
  *
3421
- * This interface was referenced by `VariablesStep27`'s JSON-Schema definition
3657
+ * This interface was referenced by `VariablesStep29`'s JSON-Schema definition
3422
3658
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3423
3659
  */
3424
3660
  [k: string]: string;
@@ -3426,7 +3662,7 @@ export interface VariablesStep27 {
3426
3662
  /**
3427
3663
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3428
3664
  */
3429
- export interface SourceLocation27 {
3665
+ export interface SourceLocation29 {
3430
3666
  /**
3431
3667
  * 1-indexed line number in the source file where the step was detected.
3432
3668
  */
@@ -3450,7 +3686,7 @@ export interface StopRecordDetailed1 {
3450
3686
  */
3451
3687
  name: string;
3452
3688
  }
3453
- export interface Common28 {
3689
+ export interface Common30 {
3454
3690
  /**
3455
3691
  * JSON Schema for this object.
3456
3692
  */
@@ -3467,13 +3703,13 @@ export interface Common28 {
3467
3703
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3468
3704
  */
3469
3705
  unsafe?: boolean;
3470
- outputs?: OutputsStep28;
3471
- variables?: VariablesStep28;
3706
+ outputs?: OutputsStep30;
3707
+ variables?: VariablesStep30;
3472
3708
  /**
3473
3709
  * 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.
3474
3710
  */
3475
3711
  breakpoint?: boolean;
3476
- location?: SourceLocation28;
3712
+ location?: SourceLocation30;
3477
3713
  /**
3478
3714
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
3479
3715
  */
@@ -3483,11 +3719,11 @@ export interface Common28 {
3483
3719
  /**
3484
3720
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3485
3721
  */
3486
- export interface OutputsStep28 {
3722
+ export interface OutputsStep30 {
3487
3723
  /**
3488
3724
  * Runtime expression for a user-defined output value.
3489
3725
  *
3490
- * This interface was referenced by `OutputsStep28`'s JSON-Schema definition
3726
+ * This interface was referenced by `OutputsStep30`'s JSON-Schema definition
3491
3727
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3492
3728
  */
3493
3729
  [k: string]: string;
@@ -3495,11 +3731,11 @@ export interface OutputsStep28 {
3495
3731
  /**
3496
3732
  * Environment variables to set from user-defined expressions.
3497
3733
  */
3498
- export interface VariablesStep28 {
3734
+ export interface VariablesStep30 {
3499
3735
  /**
3500
3736
  * Runtime expression for a user-defined output value.
3501
3737
  *
3502
- * This interface was referenced by `VariablesStep28`'s JSON-Schema definition
3738
+ * This interface was referenced by `VariablesStep30`'s JSON-Schema definition
3503
3739
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3504
3740
  */
3505
3741
  [k: string]: string;
@@ -3507,7 +3743,7 @@ export interface VariablesStep28 {
3507
3743
  /**
3508
3744
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3509
3745
  */
3510
- export interface SourceLocation28 {
3746
+ export interface SourceLocation30 {
3511
3747
  /**
3512
3748
  * 1-indexed line number in the source file where the step was detected.
3513
3749
  */
@@ -3525,7 +3761,7 @@ export interface LoadVariables2 {
3525
3761
  loadVariables: LoadVariables3;
3526
3762
  [k: string]: unknown;
3527
3763
  }
3528
- export interface Common29 {
3764
+ export interface Common31 {
3529
3765
  /**
3530
3766
  * JSON Schema for this object.
3531
3767
  */
@@ -3542,13 +3778,13 @@ export interface Common29 {
3542
3778
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3543
3779
  */
3544
3780
  unsafe?: boolean;
3545
- outputs?: OutputsStep29;
3546
- variables?: VariablesStep29;
3781
+ outputs?: OutputsStep31;
3782
+ variables?: VariablesStep31;
3547
3783
  /**
3548
3784
  * 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.
3549
3785
  */
3550
3786
  breakpoint?: boolean;
3551
- location?: SourceLocation29;
3787
+ location?: SourceLocation31;
3552
3788
  /**
3553
3789
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
3554
3790
  */
@@ -3558,11 +3794,11 @@ export interface Common29 {
3558
3794
  /**
3559
3795
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3560
3796
  */
3561
- export interface OutputsStep29 {
3797
+ export interface OutputsStep31 {
3562
3798
  /**
3563
3799
  * Runtime expression for a user-defined output value.
3564
3800
  *
3565
- * This interface was referenced by `OutputsStep29`'s JSON-Schema definition
3801
+ * This interface was referenced by `OutputsStep31`'s JSON-Schema definition
3566
3802
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3567
3803
  */
3568
3804
  [k: string]: string;
@@ -3570,11 +3806,11 @@ export interface OutputsStep29 {
3570
3806
  /**
3571
3807
  * Environment variables to set from user-defined expressions.
3572
3808
  */
3573
- export interface VariablesStep29 {
3809
+ export interface VariablesStep31 {
3574
3810
  /**
3575
3811
  * Runtime expression for a user-defined output value.
3576
3812
  *
3577
- * This interface was referenced by `VariablesStep29`'s JSON-Schema definition
3813
+ * This interface was referenced by `VariablesStep31`'s JSON-Schema definition
3578
3814
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3579
3815
  */
3580
3816
  [k: string]: string;
@@ -3582,7 +3818,7 @@ export interface VariablesStep29 {
3582
3818
  /**
3583
3819
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3584
3820
  */
3585
- export interface SourceLocation29 {
3821
+ export interface SourceLocation31 {
3586
3822
  /**
3587
3823
  * 1-indexed line number in the source file where the step was detected.
3588
3824
  */
@@ -3618,7 +3854,7 @@ export interface DragAndDrop3 {
3618
3854
  duration?: number;
3619
3855
  [k: string]: unknown;
3620
3856
  }
3621
- export interface Common30 {
3857
+ export interface Common32 {
3622
3858
  /**
3623
3859
  * JSON Schema for this object.
3624
3860
  */
@@ -3635,13 +3871,13 @@ export interface Common30 {
3635
3871
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3636
3872
  */
3637
3873
  unsafe?: boolean;
3638
- outputs?: OutputsStep30;
3639
- variables?: VariablesStep30;
3874
+ outputs?: OutputsStep32;
3875
+ variables?: VariablesStep32;
3640
3876
  /**
3641
3877
  * 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.
3642
3878
  */
3643
3879
  breakpoint?: boolean;
3644
- location?: SourceLocation30;
3880
+ location?: SourceLocation32;
3645
3881
  /**
3646
3882
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
3647
3883
  */
@@ -3651,11 +3887,11 @@ export interface Common30 {
3651
3887
  /**
3652
3888
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3653
3889
  */
3654
- export interface OutputsStep30 {
3890
+ export interface OutputsStep32 {
3655
3891
  /**
3656
3892
  * Runtime expression for a user-defined output value.
3657
3893
  *
3658
- * This interface was referenced by `OutputsStep30`'s JSON-Schema definition
3894
+ * This interface was referenced by `OutputsStep32`'s JSON-Schema definition
3659
3895
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3660
3896
  */
3661
3897
  [k: string]: string;
@@ -3663,11 +3899,11 @@ export interface OutputsStep30 {
3663
3899
  /**
3664
3900
  * Environment variables to set from user-defined expressions.
3665
3901
  */
3666
- export interface VariablesStep30 {
3902
+ export interface VariablesStep32 {
3667
3903
  /**
3668
3904
  * Runtime expression for a user-defined output value.
3669
3905
  *
3670
- * This interface was referenced by `VariablesStep30`'s JSON-Schema definition
3906
+ * This interface was referenced by `VariablesStep32`'s JSON-Schema definition
3671
3907
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3672
3908
  */
3673
3909
  [k: string]: string;
@@ -3675,7 +3911,7 @@ export interface VariablesStep30 {
3675
3911
  /**
3676
3912
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3677
3913
  */
3678
- export interface SourceLocation30 {
3914
+ export interface SourceLocation32 {
3679
3915
  /**
3680
3916
  * 1-indexed line number in the source file where the step was detected.
3681
3917
  */
@@ -3693,7 +3929,7 @@ export interface LoadCookie2 {
3693
3929
  loadCookie: LoadCookie3;
3694
3930
  [k: string]: unknown;
3695
3931
  }
3696
- export interface Common31 {
3932
+ export interface Common33 {
3697
3933
  /**
3698
3934
  * JSON Schema for this object.
3699
3935
  */
@@ -3710,13 +3946,13 @@ export interface Common31 {
3710
3946
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3711
3947
  */
3712
3948
  unsafe?: boolean;
3713
- outputs?: OutputsStep31;
3714
- variables?: VariablesStep31;
3949
+ outputs?: OutputsStep33;
3950
+ variables?: VariablesStep33;
3715
3951
  /**
3716
3952
  * 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.
3717
3953
  */
3718
3954
  breakpoint?: boolean;
3719
- location?: SourceLocation31;
3955
+ location?: SourceLocation33;
3720
3956
  /**
3721
3957
  * Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
3722
3958
  */
@@ -3726,11 +3962,11 @@ export interface Common31 {
3726
3962
  /**
3727
3963
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3728
3964
  */
3729
- export interface OutputsStep31 {
3965
+ export interface OutputsStep33 {
3730
3966
  /**
3731
3967
  * Runtime expression for a user-defined output value.
3732
3968
  *
3733
- * This interface was referenced by `OutputsStep31`'s JSON-Schema definition
3969
+ * This interface was referenced by `OutputsStep33`'s JSON-Schema definition
3734
3970
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3735
3971
  */
3736
3972
  [k: string]: string;
@@ -3738,11 +3974,11 @@ export interface OutputsStep31 {
3738
3974
  /**
3739
3975
  * Environment variables to set from user-defined expressions.
3740
3976
  */
3741
- export interface VariablesStep31 {
3977
+ export interface VariablesStep33 {
3742
3978
  /**
3743
3979
  * Runtime expression for a user-defined output value.
3744
3980
  *
3745
- * This interface was referenced by `VariablesStep31`'s JSON-Schema definition
3981
+ * This interface was referenced by `VariablesStep33`'s JSON-Schema definition
3746
3982
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3747
3983
  */
3748
3984
  [k: string]: string;
@@ -3750,7 +3986,7 @@ export interface VariablesStep31 {
3750
3986
  /**
3751
3987
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3752
3988
  */
3753
- export interface SourceLocation31 {
3989
+ export interface SourceLocation33 {
3754
3990
  /**
3755
3991
  * 1-indexed line number in the source file where the step was detected.
3756
3992
  */