commandbar 1.6.16 → 1.7.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1332,7 +1332,7 @@ export declare class Command {
1332
1332
  type: "admin";
1333
1333
  value: string;
1334
1334
  } & {} & {
1335
- commandType?: "object" | "independent" | "help" | undefined;
1335
+ commandType?: "object" | "help" | "independent" | undefined;
1336
1336
  object?: string | undefined;
1337
1337
  hoverTooltip?: boolean | undefined;
1338
1338
  operation?: "self" | "router" | "blank" | undefined;
@@ -1340,7 +1340,7 @@ export declare class Command {
1340
1340
  type: "callback";
1341
1341
  value: string;
1342
1342
  } & {} & {
1343
- commandType?: "object" | "independent" | "help" | undefined;
1343
+ commandType?: "object" | "help" | "independent" | undefined;
1344
1344
  object?: string | undefined;
1345
1345
  hoverTooltip?: boolean | undefined;
1346
1346
  operation?: "self" | "router" | "blank" | undefined;
@@ -1348,7 +1348,7 @@ export declare class Command {
1348
1348
  type: "link";
1349
1349
  value: string;
1350
1350
  } & {} & {
1351
- commandType?: "object" | "independent" | "help" | undefined;
1351
+ commandType?: "object" | "help" | "independent" | undefined;
1352
1352
  object?: string | undefined;
1353
1353
  hoverTooltip?: boolean | undefined;
1354
1354
  operation?: "self" | "router" | "blank" | undefined;
@@ -1356,7 +1356,7 @@ export declare class Command {
1356
1356
  type: "click" | "clickByXpath" | "clickBySelector";
1357
1357
  value: string[];
1358
1358
  } & {} & {
1359
- commandType?: "object" | "independent" | "help" | undefined;
1359
+ commandType?: "object" | "help" | "independent" | undefined;
1360
1360
  object?: string | undefined;
1361
1361
  hoverTooltip?: boolean | undefined;
1362
1362
  operation?: "self" | "router" | "blank" | undefined;
@@ -1364,7 +1364,7 @@ export declare class Command {
1364
1364
  type: "builtin";
1365
1365
  value: string;
1366
1366
  } & {} & {
1367
- commandType?: "object" | "independent" | "help" | undefined;
1367
+ commandType?: "object" | "help" | "independent" | undefined;
1368
1368
  object?: string | undefined;
1369
1369
  hoverTooltip?: boolean | undefined;
1370
1370
  operation?: "self" | "router" | "blank" | undefined;
@@ -1372,7 +1372,7 @@ export declare class Command {
1372
1372
  type: "webhook";
1373
1373
  value: string;
1374
1374
  } & {} & {
1375
- commandType?: "object" | "independent" | "help" | undefined;
1375
+ commandType?: "object" | "help" | "independent" | undefined;
1376
1376
  object?: string | undefined;
1377
1377
  hoverTooltip?: boolean | undefined;
1378
1378
  operation?: "self" | "router" | "blank" | undefined;
@@ -1380,7 +1380,7 @@ export declare class Command {
1380
1380
  type: "script";
1381
1381
  value: string;
1382
1382
  } & {} & {
1383
- commandType?: "object" | "independent" | "help" | undefined;
1383
+ commandType?: "object" | "help" | "independent" | undefined;
1384
1384
  object?: string | undefined;
1385
1385
  hoverTooltip?: boolean | undefined;
1386
1386
  operation?: "self" | "router" | "blank" | undefined;
@@ -1401,7 +1401,7 @@ export declare class Command {
1401
1401
  onError?: string | undefined;
1402
1402
  };
1403
1403
  } & {} & {
1404
- commandType?: "object" | "independent" | "help" | undefined;
1404
+ commandType?: "object" | "help" | "independent" | undefined;
1405
1405
  object?: string | undefined;
1406
1406
  hoverTooltip?: boolean | undefined;
1407
1407
  operation?: "self" | "router" | "blank" | undefined;
@@ -1409,7 +1409,7 @@ export declare class Command {
1409
1409
  type: "appcues";
1410
1410
  value: string;
1411
1411
  } & {} & {
1412
- commandType?: "object" | "independent" | "help" | undefined;
1412
+ commandType?: "object" | "help" | "independent" | undefined;
1413
1413
  object?: string | undefined;
1414
1414
  hoverTooltip?: boolean | undefined;
1415
1415
  operation?: "self" | "router" | "blank" | undefined;
@@ -1417,7 +1417,7 @@ export declare class Command {
1417
1417
  type: "video";
1418
1418
  value: string;
1419
1419
  } & {} & {
1420
- commandType?: "object" | "independent" | "help" | undefined;
1420
+ commandType?: "object" | "help" | "independent" | undefined;
1421
1421
  object?: string | undefined;
1422
1422
  hoverTooltip?: boolean | undefined;
1423
1423
  operation?: "self" | "router" | "blank" | undefined;
@@ -1425,7 +1425,7 @@ export declare class Command {
1425
1425
  type: "helpdoc";
1426
1426
  value: string;
1427
1427
  } & {} & {
1428
- commandType?: "object" | "independent" | "help" | undefined;
1428
+ commandType?: "object" | "help" | "independent" | undefined;
1429
1429
  object?: string | undefined;
1430
1430
  hoverTooltip?: boolean | undefined;
1431
1431
  operation?: "self" | "router" | "blank" | undefined;
@@ -1580,14 +1580,14 @@ export declare class Command {
1580
1580
  };
1581
1581
  tags: string[];
1582
1582
  availability_rules: ({
1583
- type: "url" | "context" | "element";
1583
+ type: "url" | "element" | "context";
1584
1584
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
1585
1585
  } & {
1586
1586
  field?: string | undefined;
1587
1587
  value?: string | undefined;
1588
1588
  reason?: string | undefined;
1589
1589
  })[] | (({
1590
- type: "url" | "context" | "element";
1590
+ type: "url" | "element" | "context";
1591
1591
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
1592
1592
  } & {
1593
1593
  field?: string | undefined;
@@ -1600,7 +1600,7 @@ export declare class Command {
1600
1600
  reason?: string | undefined;
1601
1601
  }))[];
1602
1602
  recommend_rules: (({
1603
- type: "url" | "context" | "element";
1603
+ type: "url" | "element" | "context";
1604
1604
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
1605
1605
  } & {
1606
1606
  field?: string | undefined;
@@ -1614,17 +1614,12 @@ export declare class Command {
1614
1614
  value?: null | undefined;
1615
1615
  reason?: null | undefined;
1616
1616
  }))[] | (({
1617
- type: "url" | "context" | "element";
1617
+ type: "url" | "element" | "context";
1618
1618
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
1619
1619
  } & {
1620
1620
  field?: string | undefined;
1621
1621
  value?: string | undefined;
1622
1622
  reason?: string | undefined;
1623
- }) | ({
1624
- type: "named_rule";
1625
- rule_id: number;
1626
- } & {
1627
- reason?: string | undefined;
1628
1623
  }) | ({
1629
1624
  type: "always";
1630
1625
  } & {
@@ -1632,6 +1627,11 @@ export declare class Command {
1632
1627
  field?: null | undefined;
1633
1628
  value?: null | undefined;
1634
1629
  reason?: null | undefined;
1630
+ }) | ({
1631
+ type: "named_rule";
1632
+ rule_id: number;
1633
+ } & {
1634
+ reason?: string | undefined;
1635
1635
  }))[];
1636
1636
  availability_expression: import("./helpers/rules").RuleExpression;
1637
1637
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -1687,7 +1687,7 @@ export declare class Command {
1687
1687
  type: "admin";
1688
1688
  value: string;
1689
1689
  } & {} & {
1690
- commandType?: "object" | "independent" | "help" | undefined;
1690
+ commandType?: "object" | "help" | "independent" | undefined;
1691
1691
  object?: string | undefined;
1692
1692
  hoverTooltip?: boolean | undefined;
1693
1693
  operation?: "self" | "router" | "blank" | undefined;
@@ -1695,7 +1695,7 @@ export declare class Command {
1695
1695
  type: "callback";
1696
1696
  value: string;
1697
1697
  } & {} & {
1698
- commandType?: "object" | "independent" | "help" | undefined;
1698
+ commandType?: "object" | "help" | "independent" | undefined;
1699
1699
  object?: string | undefined;
1700
1700
  hoverTooltip?: boolean | undefined;
1701
1701
  operation?: "self" | "router" | "blank" | undefined;
@@ -1703,7 +1703,7 @@ export declare class Command {
1703
1703
  type: "link";
1704
1704
  value: string;
1705
1705
  } & {} & {
1706
- commandType?: "object" | "independent" | "help" | undefined;
1706
+ commandType?: "object" | "help" | "independent" | undefined;
1707
1707
  object?: string | undefined;
1708
1708
  hoverTooltip?: boolean | undefined;
1709
1709
  operation?: "self" | "router" | "blank" | undefined;
@@ -1711,7 +1711,7 @@ export declare class Command {
1711
1711
  type: "click" | "clickByXpath" | "clickBySelector";
1712
1712
  value: string[];
1713
1713
  } & {} & {
1714
- commandType?: "object" | "independent" | "help" | undefined;
1714
+ commandType?: "object" | "help" | "independent" | undefined;
1715
1715
  object?: string | undefined;
1716
1716
  hoverTooltip?: boolean | undefined;
1717
1717
  operation?: "self" | "router" | "blank" | undefined;
@@ -1719,7 +1719,7 @@ export declare class Command {
1719
1719
  type: "builtin";
1720
1720
  value: string;
1721
1721
  } & {} & {
1722
- commandType?: "object" | "independent" | "help" | undefined;
1722
+ commandType?: "object" | "help" | "independent" | undefined;
1723
1723
  object?: string | undefined;
1724
1724
  hoverTooltip?: boolean | undefined;
1725
1725
  operation?: "self" | "router" | "blank" | undefined;
@@ -1727,7 +1727,7 @@ export declare class Command {
1727
1727
  type: "webhook";
1728
1728
  value: string;
1729
1729
  } & {} & {
1730
- commandType?: "object" | "independent" | "help" | undefined;
1730
+ commandType?: "object" | "help" | "independent" | undefined;
1731
1731
  object?: string | undefined;
1732
1732
  hoverTooltip?: boolean | undefined;
1733
1733
  operation?: "self" | "router" | "blank" | undefined;
@@ -1735,7 +1735,7 @@ export declare class Command {
1735
1735
  type: "script";
1736
1736
  value: string;
1737
1737
  } & {} & {
1738
- commandType?: "object" | "independent" | "help" | undefined;
1738
+ commandType?: "object" | "help" | "independent" | undefined;
1739
1739
  object?: string | undefined;
1740
1740
  hoverTooltip?: boolean | undefined;
1741
1741
  operation?: "self" | "router" | "blank" | undefined;
@@ -1756,7 +1756,7 @@ export declare class Command {
1756
1756
  onError?: string | undefined;
1757
1757
  };
1758
1758
  } & {} & {
1759
- commandType?: "object" | "independent" | "help" | undefined;
1759
+ commandType?: "object" | "help" | "independent" | undefined;
1760
1760
  object?: string | undefined;
1761
1761
  hoverTooltip?: boolean | undefined;
1762
1762
  operation?: "self" | "router" | "blank" | undefined;
@@ -1764,7 +1764,7 @@ export declare class Command {
1764
1764
  type: "appcues";
1765
1765
  value: string;
1766
1766
  } & {} & {
1767
- commandType?: "object" | "independent" | "help" | undefined;
1767
+ commandType?: "object" | "help" | "independent" | undefined;
1768
1768
  object?: string | undefined;
1769
1769
  hoverTooltip?: boolean | undefined;
1770
1770
  operation?: "self" | "router" | "blank" | undefined;
@@ -1772,7 +1772,7 @@ export declare class Command {
1772
1772
  type: "video";
1773
1773
  value: string;
1774
1774
  } & {} & {
1775
- commandType?: "object" | "independent" | "help" | undefined;
1775
+ commandType?: "object" | "help" | "independent" | undefined;
1776
1776
  object?: string | undefined;
1777
1777
  hoverTooltip?: boolean | undefined;
1778
1778
  operation?: "self" | "router" | "blank" | undefined;
@@ -1780,7 +1780,7 @@ export declare class Command {
1780
1780
  type: "helpdoc";
1781
1781
  value: string;
1782
1782
  } & {} & {
1783
- commandType?: "object" | "independent" | "help" | undefined;
1783
+ commandType?: "object" | "help" | "independent" | undefined;
1784
1784
  object?: string | undefined;
1785
1785
  hoverTooltip?: boolean | undefined;
1786
1786
  operation?: "self" | "router" | "blank" | undefined;
@@ -1935,14 +1935,14 @@ export declare class Command {
1935
1935
  };
1936
1936
  tags: string[];
1937
1937
  availability_rules: ({
1938
- type: "url" | "context" | "element";
1938
+ type: "url" | "element" | "context";
1939
1939
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
1940
1940
  } & {
1941
1941
  field?: string | undefined;
1942
1942
  value?: string | undefined;
1943
1943
  reason?: string | undefined;
1944
1944
  })[] | (({
1945
- type: "url" | "context" | "element";
1945
+ type: "url" | "element" | "context";
1946
1946
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
1947
1947
  } & {
1948
1948
  field?: string | undefined;
@@ -1955,7 +1955,7 @@ export declare class Command {
1955
1955
  reason?: string | undefined;
1956
1956
  }))[];
1957
1957
  recommend_rules: (({
1958
- type: "url" | "context" | "element";
1958
+ type: "url" | "element" | "context";
1959
1959
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
1960
1960
  } & {
1961
1961
  field?: string | undefined;
@@ -1969,17 +1969,12 @@ export declare class Command {
1969
1969
  value?: null | undefined;
1970
1970
  reason?: null | undefined;
1971
1971
  }))[] | (({
1972
- type: "url" | "context" | "element";
1972
+ type: "url" | "element" | "context";
1973
1973
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
1974
1974
  } & {
1975
1975
  field?: string | undefined;
1976
1976
  value?: string | undefined;
1977
1977
  reason?: string | undefined;
1978
- }) | ({
1979
- type: "named_rule";
1980
- rule_id: number;
1981
- } & {
1982
- reason?: string | undefined;
1983
1978
  }) | ({
1984
1979
  type: "always";
1985
1980
  } & {
@@ -1987,6 +1982,11 @@ export declare class Command {
1987
1982
  field?: null | undefined;
1988
1983
  value?: null | undefined;
1989
1984
  reason?: null | undefined;
1985
+ }) | ({
1986
+ type: "named_rule";
1987
+ rule_id: number;
1988
+ } & {
1989
+ reason?: string | undefined;
1990
1990
  }))[];
1991
1991
  availability_expression: import("./helpers/rules").RuleExpression;
1992
1992
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -2043,7 +2043,7 @@ export declare class Command {
2043
2043
  type: "admin";
2044
2044
  value: string;
2045
2045
  } & {} & {
2046
- commandType?: "object" | "independent" | "help" | undefined;
2046
+ commandType?: "object" | "help" | "independent" | undefined;
2047
2047
  object?: string | undefined;
2048
2048
  hoverTooltip?: boolean | undefined;
2049
2049
  operation?: "self" | "router" | "blank" | undefined;
@@ -2051,7 +2051,7 @@ export declare class Command {
2051
2051
  type: "callback";
2052
2052
  value: string;
2053
2053
  } & {} & {
2054
- commandType?: "object" | "independent" | "help" | undefined;
2054
+ commandType?: "object" | "help" | "independent" | undefined;
2055
2055
  object?: string | undefined;
2056
2056
  hoverTooltip?: boolean | undefined;
2057
2057
  operation?: "self" | "router" | "blank" | undefined;
@@ -2059,7 +2059,7 @@ export declare class Command {
2059
2059
  type: "link";
2060
2060
  value: string;
2061
2061
  } & {} & {
2062
- commandType?: "object" | "independent" | "help" | undefined;
2062
+ commandType?: "object" | "help" | "independent" | undefined;
2063
2063
  object?: string | undefined;
2064
2064
  hoverTooltip?: boolean | undefined;
2065
2065
  operation?: "self" | "router" | "blank" | undefined;
@@ -2067,7 +2067,7 @@ export declare class Command {
2067
2067
  type: "click" | "clickByXpath" | "clickBySelector";
2068
2068
  value: string[];
2069
2069
  } & {} & {
2070
- commandType?: "object" | "independent" | "help" | undefined;
2070
+ commandType?: "object" | "help" | "independent" | undefined;
2071
2071
  object?: string | undefined;
2072
2072
  hoverTooltip?: boolean | undefined;
2073
2073
  operation?: "self" | "router" | "blank" | undefined;
@@ -2075,7 +2075,7 @@ export declare class Command {
2075
2075
  type: "builtin";
2076
2076
  value: string;
2077
2077
  } & {} & {
2078
- commandType?: "object" | "independent" | "help" | undefined;
2078
+ commandType?: "object" | "help" | "independent" | undefined;
2079
2079
  object?: string | undefined;
2080
2080
  hoverTooltip?: boolean | undefined;
2081
2081
  operation?: "self" | "router" | "blank" | undefined;
@@ -2083,7 +2083,7 @@ export declare class Command {
2083
2083
  type: "webhook";
2084
2084
  value: string;
2085
2085
  } & {} & {
2086
- commandType?: "object" | "independent" | "help" | undefined;
2086
+ commandType?: "object" | "help" | "independent" | undefined;
2087
2087
  object?: string | undefined;
2088
2088
  hoverTooltip?: boolean | undefined;
2089
2089
  operation?: "self" | "router" | "blank" | undefined;
@@ -2091,7 +2091,7 @@ export declare class Command {
2091
2091
  type: "script";
2092
2092
  value: string;
2093
2093
  } & {} & {
2094
- commandType?: "object" | "independent" | "help" | undefined;
2094
+ commandType?: "object" | "help" | "independent" | undefined;
2095
2095
  object?: string | undefined;
2096
2096
  hoverTooltip?: boolean | undefined;
2097
2097
  operation?: "self" | "router" | "blank" | undefined;
@@ -2112,7 +2112,7 @@ export declare class Command {
2112
2112
  onError?: string | undefined;
2113
2113
  };
2114
2114
  } & {} & {
2115
- commandType?: "object" | "independent" | "help" | undefined;
2115
+ commandType?: "object" | "help" | "independent" | undefined;
2116
2116
  object?: string | undefined;
2117
2117
  hoverTooltip?: boolean | undefined;
2118
2118
  operation?: "self" | "router" | "blank" | undefined;
@@ -2120,7 +2120,7 @@ export declare class Command {
2120
2120
  type: "appcues";
2121
2121
  value: string;
2122
2122
  } & {} & {
2123
- commandType?: "object" | "independent" | "help" | undefined;
2123
+ commandType?: "object" | "help" | "independent" | undefined;
2124
2124
  object?: string | undefined;
2125
2125
  hoverTooltip?: boolean | undefined;
2126
2126
  operation?: "self" | "router" | "blank" | undefined;
@@ -2128,7 +2128,7 @@ export declare class Command {
2128
2128
  type: "video";
2129
2129
  value: string;
2130
2130
  } & {} & {
2131
- commandType?: "object" | "independent" | "help" | undefined;
2131
+ commandType?: "object" | "help" | "independent" | undefined;
2132
2132
  object?: string | undefined;
2133
2133
  hoverTooltip?: boolean | undefined;
2134
2134
  operation?: "self" | "router" | "blank" | undefined;
@@ -2136,7 +2136,7 @@ export declare class Command {
2136
2136
  type: "helpdoc";
2137
2137
  value: string;
2138
2138
  } & {} & {
2139
- commandType?: "object" | "independent" | "help" | undefined;
2139
+ commandType?: "object" | "help" | "independent" | undefined;
2140
2140
  object?: string | undefined;
2141
2141
  hoverTooltip?: boolean | undefined;
2142
2142
  operation?: "self" | "router" | "blank" | undefined;
@@ -2291,14 +2291,14 @@ export declare class Command {
2291
2291
  };
2292
2292
  tags: string[];
2293
2293
  availability_rules: ({
2294
- type: "url" | "context" | "element";
2294
+ type: "url" | "element" | "context";
2295
2295
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
2296
2296
  } & {
2297
2297
  field?: string | undefined;
2298
2298
  value?: string | undefined;
2299
2299
  reason?: string | undefined;
2300
2300
  })[] | (({
2301
- type: "url" | "context" | "element";
2301
+ type: "url" | "element" | "context";
2302
2302
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
2303
2303
  } & {
2304
2304
  field?: string | undefined;
@@ -2311,7 +2311,7 @@ export declare class Command {
2311
2311
  reason?: string | undefined;
2312
2312
  }))[];
2313
2313
  recommend_rules: (({
2314
- type: "url" | "context" | "element";
2314
+ type: "url" | "element" | "context";
2315
2315
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
2316
2316
  } & {
2317
2317
  field?: string | undefined;
@@ -2325,17 +2325,12 @@ export declare class Command {
2325
2325
  value?: null | undefined;
2326
2326
  reason?: null | undefined;
2327
2327
  }))[] | (({
2328
- type: "url" | "context" | "element";
2328
+ type: "url" | "element" | "context";
2329
2329
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
2330
2330
  } & {
2331
2331
  field?: string | undefined;
2332
2332
  value?: string | undefined;
2333
2333
  reason?: string | undefined;
2334
- }) | ({
2335
- type: "named_rule";
2336
- rule_id: number;
2337
- } & {
2338
- reason?: string | undefined;
2339
2334
  }) | ({
2340
2335
  type: "always";
2341
2336
  } & {
@@ -2343,6 +2338,11 @@ export declare class Command {
2343
2338
  field?: null | undefined;
2344
2339
  value?: null | undefined;
2345
2340
  reason?: null | undefined;
2341
+ }) | ({
2342
+ type: "named_rule";
2343
+ rule_id: number;
2344
+ } & {
2345
+ reason?: string | undefined;
2346
2346
  }))[];
2347
2347
  availability_expression: import("./helpers/rules").RuleExpression;
2348
2348
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -2398,7 +2398,7 @@ export declare class Command {
2398
2398
  type: "admin";
2399
2399
  value: string;
2400
2400
  } & {} & {
2401
- commandType?: "object" | "independent" | "help" | undefined;
2401
+ commandType?: "object" | "help" | "independent" | undefined;
2402
2402
  object?: string | undefined;
2403
2403
  hoverTooltip?: boolean | undefined;
2404
2404
  operation?: "self" | "router" | "blank" | undefined;
@@ -2406,7 +2406,7 @@ export declare class Command {
2406
2406
  type: "callback";
2407
2407
  value: string;
2408
2408
  } & {} & {
2409
- commandType?: "object" | "independent" | "help" | undefined;
2409
+ commandType?: "object" | "help" | "independent" | undefined;
2410
2410
  object?: string | undefined;
2411
2411
  hoverTooltip?: boolean | undefined;
2412
2412
  operation?: "self" | "router" | "blank" | undefined;
@@ -2414,7 +2414,7 @@ export declare class Command {
2414
2414
  type: "link";
2415
2415
  value: string;
2416
2416
  } & {} & {
2417
- commandType?: "object" | "independent" | "help" | undefined;
2417
+ commandType?: "object" | "help" | "independent" | undefined;
2418
2418
  object?: string | undefined;
2419
2419
  hoverTooltip?: boolean | undefined;
2420
2420
  operation?: "self" | "router" | "blank" | undefined;
@@ -2422,7 +2422,7 @@ export declare class Command {
2422
2422
  type: "click" | "clickByXpath" | "clickBySelector";
2423
2423
  value: string[];
2424
2424
  } & {} & {
2425
- commandType?: "object" | "independent" | "help" | undefined;
2425
+ commandType?: "object" | "help" | "independent" | undefined;
2426
2426
  object?: string | undefined;
2427
2427
  hoverTooltip?: boolean | undefined;
2428
2428
  operation?: "self" | "router" | "blank" | undefined;
@@ -2430,7 +2430,7 @@ export declare class Command {
2430
2430
  type: "builtin";
2431
2431
  value: string;
2432
2432
  } & {} & {
2433
- commandType?: "object" | "independent" | "help" | undefined;
2433
+ commandType?: "object" | "help" | "independent" | undefined;
2434
2434
  object?: string | undefined;
2435
2435
  hoverTooltip?: boolean | undefined;
2436
2436
  operation?: "self" | "router" | "blank" | undefined;
@@ -2438,7 +2438,7 @@ export declare class Command {
2438
2438
  type: "webhook";
2439
2439
  value: string;
2440
2440
  } & {} & {
2441
- commandType?: "object" | "independent" | "help" | undefined;
2441
+ commandType?: "object" | "help" | "independent" | undefined;
2442
2442
  object?: string | undefined;
2443
2443
  hoverTooltip?: boolean | undefined;
2444
2444
  operation?: "self" | "router" | "blank" | undefined;
@@ -2446,7 +2446,7 @@ export declare class Command {
2446
2446
  type: "script";
2447
2447
  value: string;
2448
2448
  } & {} & {
2449
- commandType?: "object" | "independent" | "help" | undefined;
2449
+ commandType?: "object" | "help" | "independent" | undefined;
2450
2450
  object?: string | undefined;
2451
2451
  hoverTooltip?: boolean | undefined;
2452
2452
  operation?: "self" | "router" | "blank" | undefined;
@@ -2467,7 +2467,7 @@ export declare class Command {
2467
2467
  onError?: string | undefined;
2468
2468
  };
2469
2469
  } & {} & {
2470
- commandType?: "object" | "independent" | "help" | undefined;
2470
+ commandType?: "object" | "help" | "independent" | undefined;
2471
2471
  object?: string | undefined;
2472
2472
  hoverTooltip?: boolean | undefined;
2473
2473
  operation?: "self" | "router" | "blank" | undefined;
@@ -2475,7 +2475,7 @@ export declare class Command {
2475
2475
  type: "appcues";
2476
2476
  value: string;
2477
2477
  } & {} & {
2478
- commandType?: "object" | "independent" | "help" | undefined;
2478
+ commandType?: "object" | "help" | "independent" | undefined;
2479
2479
  object?: string | undefined;
2480
2480
  hoverTooltip?: boolean | undefined;
2481
2481
  operation?: "self" | "router" | "blank" | undefined;
@@ -2483,7 +2483,7 @@ export declare class Command {
2483
2483
  type: "video";
2484
2484
  value: string;
2485
2485
  } & {} & {
2486
- commandType?: "object" | "independent" | "help" | undefined;
2486
+ commandType?: "object" | "help" | "independent" | undefined;
2487
2487
  object?: string | undefined;
2488
2488
  hoverTooltip?: boolean | undefined;
2489
2489
  operation?: "self" | "router" | "blank" | undefined;
@@ -2491,7 +2491,7 @@ export declare class Command {
2491
2491
  type: "helpdoc";
2492
2492
  value: string;
2493
2493
  } & {} & {
2494
- commandType?: "object" | "independent" | "help" | undefined;
2494
+ commandType?: "object" | "help" | "independent" | undefined;
2495
2495
  object?: string | undefined;
2496
2496
  hoverTooltip?: boolean | undefined;
2497
2497
  operation?: "self" | "router" | "blank" | undefined;
@@ -2646,14 +2646,14 @@ export declare class Command {
2646
2646
  };
2647
2647
  tags: string[];
2648
2648
  availability_rules: ({
2649
- type: "url" | "context" | "element";
2649
+ type: "url" | "element" | "context";
2650
2650
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
2651
2651
  } & {
2652
2652
  field?: string | undefined;
2653
2653
  value?: string | undefined;
2654
2654
  reason?: string | undefined;
2655
2655
  })[] | (({
2656
- type: "url" | "context" | "element";
2656
+ type: "url" | "element" | "context";
2657
2657
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
2658
2658
  } & {
2659
2659
  field?: string | undefined;
@@ -2666,7 +2666,7 @@ export declare class Command {
2666
2666
  reason?: string | undefined;
2667
2667
  }))[];
2668
2668
  recommend_rules: (({
2669
- type: "url" | "context" | "element";
2669
+ type: "url" | "element" | "context";
2670
2670
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
2671
2671
  } & {
2672
2672
  field?: string | undefined;
@@ -2680,17 +2680,12 @@ export declare class Command {
2680
2680
  value?: null | undefined;
2681
2681
  reason?: null | undefined;
2682
2682
  }))[] | (({
2683
- type: "url" | "context" | "element";
2683
+ type: "url" | "element" | "context";
2684
2684
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
2685
2685
  } & {
2686
2686
  field?: string | undefined;
2687
2687
  value?: string | undefined;
2688
2688
  reason?: string | undefined;
2689
- }) | ({
2690
- type: "named_rule";
2691
- rule_id: number;
2692
- } & {
2693
- reason?: string | undefined;
2694
2689
  }) | ({
2695
2690
  type: "always";
2696
2691
  } & {
@@ -2698,6 +2693,11 @@ export declare class Command {
2698
2693
  field?: null | undefined;
2699
2694
  value?: null | undefined;
2700
2695
  reason?: null | undefined;
2696
+ }) | ({
2697
+ type: "named_rule";
2698
+ rule_id: number;
2699
+ } & {
2700
+ reason?: string | undefined;
2701
2701
  }))[];
2702
2702
  availability_expression: import("./helpers/rules").RuleExpression;
2703
2703
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -2756,7 +2756,7 @@ export declare class Command {
2756
2756
  type: "admin";
2757
2757
  value: string;
2758
2758
  } & {} & {
2759
- commandType?: "object" | "independent" | "help" | undefined;
2759
+ commandType?: "object" | "help" | "independent" | undefined;
2760
2760
  object?: string | undefined;
2761
2761
  hoverTooltip?: boolean | undefined;
2762
2762
  operation?: "self" | "router" | "blank" | undefined;
@@ -2764,7 +2764,7 @@ export declare class Command {
2764
2764
  type: "callback";
2765
2765
  value: string;
2766
2766
  } & {} & {
2767
- commandType?: "object" | "independent" | "help" | undefined;
2767
+ commandType?: "object" | "help" | "independent" | undefined;
2768
2768
  object?: string | undefined;
2769
2769
  hoverTooltip?: boolean | undefined;
2770
2770
  operation?: "self" | "router" | "blank" | undefined;
@@ -2772,7 +2772,7 @@ export declare class Command {
2772
2772
  type: "link";
2773
2773
  value: string;
2774
2774
  } & {} & {
2775
- commandType?: "object" | "independent" | "help" | undefined;
2775
+ commandType?: "object" | "help" | "independent" | undefined;
2776
2776
  object?: string | undefined;
2777
2777
  hoverTooltip?: boolean | undefined;
2778
2778
  operation?: "self" | "router" | "blank" | undefined;
@@ -2780,7 +2780,7 @@ export declare class Command {
2780
2780
  type: "click" | "clickByXpath" | "clickBySelector";
2781
2781
  value: string[];
2782
2782
  } & {} & {
2783
- commandType?: "object" | "independent" | "help" | undefined;
2783
+ commandType?: "object" | "help" | "independent" | undefined;
2784
2784
  object?: string | undefined;
2785
2785
  hoverTooltip?: boolean | undefined;
2786
2786
  operation?: "self" | "router" | "blank" | undefined;
@@ -2788,7 +2788,7 @@ export declare class Command {
2788
2788
  type: "builtin";
2789
2789
  value: string;
2790
2790
  } & {} & {
2791
- commandType?: "object" | "independent" | "help" | undefined;
2791
+ commandType?: "object" | "help" | "independent" | undefined;
2792
2792
  object?: string | undefined;
2793
2793
  hoverTooltip?: boolean | undefined;
2794
2794
  operation?: "self" | "router" | "blank" | undefined;
@@ -2796,7 +2796,7 @@ export declare class Command {
2796
2796
  type: "webhook";
2797
2797
  value: string;
2798
2798
  } & {} & {
2799
- commandType?: "object" | "independent" | "help" | undefined;
2799
+ commandType?: "object" | "help" | "independent" | undefined;
2800
2800
  object?: string | undefined;
2801
2801
  hoverTooltip?: boolean | undefined;
2802
2802
  operation?: "self" | "router" | "blank" | undefined;
@@ -2804,7 +2804,7 @@ export declare class Command {
2804
2804
  type: "script";
2805
2805
  value: string;
2806
2806
  } & {} & {
2807
- commandType?: "object" | "independent" | "help" | undefined;
2807
+ commandType?: "object" | "help" | "independent" | undefined;
2808
2808
  object?: string | undefined;
2809
2809
  hoverTooltip?: boolean | undefined;
2810
2810
  operation?: "self" | "router" | "blank" | undefined;
@@ -2825,7 +2825,7 @@ export declare class Command {
2825
2825
  onError?: string | undefined;
2826
2826
  };
2827
2827
  } & {} & {
2828
- commandType?: "object" | "independent" | "help" | undefined;
2828
+ commandType?: "object" | "help" | "independent" | undefined;
2829
2829
  object?: string | undefined;
2830
2830
  hoverTooltip?: boolean | undefined;
2831
2831
  operation?: "self" | "router" | "blank" | undefined;
@@ -2833,7 +2833,7 @@ export declare class Command {
2833
2833
  type: "appcues";
2834
2834
  value: string;
2835
2835
  } & {} & {
2836
- commandType?: "object" | "independent" | "help" | undefined;
2836
+ commandType?: "object" | "help" | "independent" | undefined;
2837
2837
  object?: string | undefined;
2838
2838
  hoverTooltip?: boolean | undefined;
2839
2839
  operation?: "self" | "router" | "blank" | undefined;
@@ -2841,7 +2841,7 @@ export declare class Command {
2841
2841
  type: "video";
2842
2842
  value: string;
2843
2843
  } & {} & {
2844
- commandType?: "object" | "independent" | "help" | undefined;
2844
+ commandType?: "object" | "help" | "independent" | undefined;
2845
2845
  object?: string | undefined;
2846
2846
  hoverTooltip?: boolean | undefined;
2847
2847
  operation?: "self" | "router" | "blank" | undefined;
@@ -2849,7 +2849,7 @@ export declare class Command {
2849
2849
  type: "helpdoc";
2850
2850
  value: string;
2851
2851
  } & {} & {
2852
- commandType?: "object" | "independent" | "help" | undefined;
2852
+ commandType?: "object" | "help" | "independent" | undefined;
2853
2853
  object?: string | undefined;
2854
2854
  hoverTooltip?: boolean | undefined;
2855
2855
  operation?: "self" | "router" | "blank" | undefined;
@@ -3004,14 +3004,14 @@ export declare class Command {
3004
3004
  };
3005
3005
  tags: string[];
3006
3006
  availability_rules: ({
3007
- type: "url" | "context" | "element";
3007
+ type: "url" | "element" | "context";
3008
3008
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
3009
3009
  } & {
3010
3010
  field?: string | undefined;
3011
3011
  value?: string | undefined;
3012
3012
  reason?: string | undefined;
3013
3013
  })[] | (({
3014
- type: "url" | "context" | "element";
3014
+ type: "url" | "element" | "context";
3015
3015
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
3016
3016
  } & {
3017
3017
  field?: string | undefined;
@@ -3024,7 +3024,7 @@ export declare class Command {
3024
3024
  reason?: string | undefined;
3025
3025
  }))[];
3026
3026
  recommend_rules: (({
3027
- type: "url" | "context" | "element";
3027
+ type: "url" | "element" | "context";
3028
3028
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
3029
3029
  } & {
3030
3030
  field?: string | undefined;
@@ -3038,17 +3038,12 @@ export declare class Command {
3038
3038
  value?: null | undefined;
3039
3039
  reason?: null | undefined;
3040
3040
  }))[] | (({
3041
- type: "url" | "context" | "element";
3041
+ type: "url" | "element" | "context";
3042
3042
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
3043
3043
  } & {
3044
3044
  field?: string | undefined;
3045
3045
  value?: string | undefined;
3046
3046
  reason?: string | undefined;
3047
- }) | ({
3048
- type: "named_rule";
3049
- rule_id: number;
3050
- } & {
3051
- reason?: string | undefined;
3052
3047
  }) | ({
3053
3048
  type: "always";
3054
3049
  } & {
@@ -3056,6 +3051,11 @@ export declare class Command {
3056
3051
  field?: null | undefined;
3057
3052
  value?: null | undefined;
3058
3053
  reason?: null | undefined;
3054
+ }) | ({
3055
+ type: "named_rule";
3056
+ rule_id: number;
3057
+ } & {
3058
+ reason?: string | undefined;
3059
3059
  }))[];
3060
3060
  availability_expression: import("./helpers/rules").RuleExpression;
3061
3061
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -3111,7 +3111,7 @@ export declare class Command {
3111
3111
  type: "callback";
3112
3112
  value: string;
3113
3113
  } & {} & {
3114
- commandType?: "object" | "independent" | "help" | undefined;
3114
+ commandType?: "object" | "help" | "independent" | undefined;
3115
3115
  object?: string | undefined;
3116
3116
  hoverTooltip?: boolean | undefined;
3117
3117
  operation?: "self" | "router" | "blank" | undefined;
@@ -3119,7 +3119,7 @@ export declare class Command {
3119
3119
  type: "link";
3120
3120
  value: string;
3121
3121
  } & {} & {
3122
- commandType?: "object" | "independent" | "help" | undefined;
3122
+ commandType?: "object" | "help" | "independent" | undefined;
3123
3123
  object?: string | undefined;
3124
3124
  hoverTooltip?: boolean | undefined;
3125
3125
  operation?: "self" | "router" | "blank" | undefined;
@@ -3127,7 +3127,7 @@ export declare class Command {
3127
3127
  type: "click" | "clickByXpath" | "clickBySelector";
3128
3128
  value: string[];
3129
3129
  } & {} & {
3130
- commandType?: "object" | "independent" | "help" | undefined;
3130
+ commandType?: "object" | "help" | "independent" | undefined;
3131
3131
  object?: string | undefined;
3132
3132
  hoverTooltip?: boolean | undefined;
3133
3133
  operation?: "self" | "router" | "blank" | undefined;
@@ -3135,7 +3135,7 @@ export declare class Command {
3135
3135
  type: "webhook";
3136
3136
  value: string;
3137
3137
  } & {} & {
3138
- commandType?: "object" | "independent" | "help" | undefined;
3138
+ commandType?: "object" | "help" | "independent" | undefined;
3139
3139
  object?: string | undefined;
3140
3140
  hoverTooltip?: boolean | undefined;
3141
3141
  operation?: "self" | "router" | "blank" | undefined;
@@ -3156,7 +3156,7 @@ export declare class Command {
3156
3156
  onError?: string | undefined;
3157
3157
  };
3158
3158
  } & {} & {
3159
- commandType?: "object" | "independent" | "help" | undefined;
3159
+ commandType?: "object" | "help" | "independent" | undefined;
3160
3160
  object?: string | undefined;
3161
3161
  hoverTooltip?: boolean | undefined;
3162
3162
  operation?: "self" | "router" | "blank" | undefined;
@@ -3164,7 +3164,15 @@ export declare class Command {
3164
3164
  type: "appcues";
3165
3165
  value: string;
3166
3166
  } & {} & {
3167
- commandType?: "object" | "independent" | "help" | undefined;
3167
+ commandType?: "object" | "help" | "independent" | undefined;
3168
+ object?: string | undefined;
3169
+ hoverTooltip?: boolean | undefined;
3170
+ operation?: "self" | "router" | "blank" | undefined;
3171
+ }) | ({
3172
+ type: "helpdoc";
3173
+ value: string;
3174
+ } & {} & {
3175
+ commandType?: "object" | "help" | "independent" | undefined;
3168
3176
  object?: string | undefined;
3169
3177
  hoverTooltip?: boolean | undefined;
3170
3178
  operation?: "self" | "router" | "blank" | undefined;
@@ -3337,7 +3345,7 @@ export declare class Command {
3337
3345
  random?: any;
3338
3346
  } | null | undefined;
3339
3347
  availability_rules?: ({
3340
- type: "url" | "context" | "element";
3348
+ type: "url" | "element" | "context";
3341
3349
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
3342
3350
  } & {
3343
3351
  field?: string | undefined;
@@ -3345,7 +3353,7 @@ export declare class Command {
3345
3353
  reason?: string | undefined;
3346
3354
  })[] | undefined;
3347
3355
  recommend_rules?: (({
3348
- type: "url" | "context" | "element";
3356
+ type: "url" | "element" | "context";
3349
3357
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
3350
3358
  } & {
3351
3359
  field?: string | undefined;
@@ -3381,7 +3389,7 @@ export declare class Command {
3381
3389
  type: "admin";
3382
3390
  value: string;
3383
3391
  } & {} & {
3384
- commandType?: "object" | "independent" | "help" | undefined;
3392
+ commandType?: "object" | "help" | "independent" | undefined;
3385
3393
  object?: string | undefined;
3386
3394
  hoverTooltip?: boolean | undefined;
3387
3395
  operation?: "self" | "router" | "blank" | undefined;
@@ -3389,7 +3397,7 @@ export declare class Command {
3389
3397
  type: "callback";
3390
3398
  value: string;
3391
3399
  } & {} & {
3392
- commandType?: "object" | "independent" | "help" | undefined;
3400
+ commandType?: "object" | "help" | "independent" | undefined;
3393
3401
  object?: string | undefined;
3394
3402
  hoverTooltip?: boolean | undefined;
3395
3403
  operation?: "self" | "router" | "blank" | undefined;
@@ -3397,7 +3405,7 @@ export declare class Command {
3397
3405
  type: "link";
3398
3406
  value: string;
3399
3407
  } & {} & {
3400
- commandType?: "object" | "independent" | "help" | undefined;
3408
+ commandType?: "object" | "help" | "independent" | undefined;
3401
3409
  object?: string | undefined;
3402
3410
  hoverTooltip?: boolean | undefined;
3403
3411
  operation?: "self" | "router" | "blank" | undefined;
@@ -3405,7 +3413,7 @@ export declare class Command {
3405
3413
  type: "click" | "clickByXpath" | "clickBySelector";
3406
3414
  value: string[];
3407
3415
  } & {} & {
3408
- commandType?: "object" | "independent" | "help" | undefined;
3416
+ commandType?: "object" | "help" | "independent" | undefined;
3409
3417
  object?: string | undefined;
3410
3418
  hoverTooltip?: boolean | undefined;
3411
3419
  operation?: "self" | "router" | "blank" | undefined;
@@ -3413,7 +3421,7 @@ export declare class Command {
3413
3421
  type: "builtin";
3414
3422
  value: string;
3415
3423
  } & {} & {
3416
- commandType?: "object" | "independent" | "help" | undefined;
3424
+ commandType?: "object" | "help" | "independent" | undefined;
3417
3425
  object?: string | undefined;
3418
3426
  hoverTooltip?: boolean | undefined;
3419
3427
  operation?: "self" | "router" | "blank" | undefined;
@@ -3421,7 +3429,7 @@ export declare class Command {
3421
3429
  type: "webhook";
3422
3430
  value: string;
3423
3431
  } & {} & {
3424
- commandType?: "object" | "independent" | "help" | undefined;
3432
+ commandType?: "object" | "help" | "independent" | undefined;
3425
3433
  object?: string | undefined;
3426
3434
  hoverTooltip?: boolean | undefined;
3427
3435
  operation?: "self" | "router" | "blank" | undefined;
@@ -3429,7 +3437,7 @@ export declare class Command {
3429
3437
  type: "script";
3430
3438
  value: string;
3431
3439
  } & {} & {
3432
- commandType?: "object" | "independent" | "help" | undefined;
3440
+ commandType?: "object" | "help" | "independent" | undefined;
3433
3441
  object?: string | undefined;
3434
3442
  hoverTooltip?: boolean | undefined;
3435
3443
  operation?: "self" | "router" | "blank" | undefined;
@@ -3450,7 +3458,7 @@ export declare class Command {
3450
3458
  onError?: string | undefined;
3451
3459
  };
3452
3460
  } & {} & {
3453
- commandType?: "object" | "independent" | "help" | undefined;
3461
+ commandType?: "object" | "help" | "independent" | undefined;
3454
3462
  object?: string | undefined;
3455
3463
  hoverTooltip?: boolean | undefined;
3456
3464
  operation?: "self" | "router" | "blank" | undefined;
@@ -3458,7 +3466,7 @@ export declare class Command {
3458
3466
  type: "appcues";
3459
3467
  value: string;
3460
3468
  } & {} & {
3461
- commandType?: "object" | "independent" | "help" | undefined;
3469
+ commandType?: "object" | "help" | "independent" | undefined;
3462
3470
  object?: string | undefined;
3463
3471
  hoverTooltip?: boolean | undefined;
3464
3472
  operation?: "self" | "router" | "blank" | undefined;
@@ -3466,7 +3474,7 @@ export declare class Command {
3466
3474
  type: "video";
3467
3475
  value: string;
3468
3476
  } & {} & {
3469
- commandType?: "object" | "independent" | "help" | undefined;
3477
+ commandType?: "object" | "help" | "independent" | undefined;
3470
3478
  object?: string | undefined;
3471
3479
  hoverTooltip?: boolean | undefined;
3472
3480
  operation?: "self" | "router" | "blank" | undefined;
@@ -3474,7 +3482,7 @@ export declare class Command {
3474
3482
  type: "helpdoc";
3475
3483
  value: string;
3476
3484
  } & {} & {
3477
- commandType?: "object" | "independent" | "help" | undefined;
3485
+ commandType?: "object" | "help" | "independent" | undefined;
3478
3486
  object?: string | undefined;
3479
3487
  hoverTooltip?: boolean | undefined;
3480
3488
  operation?: "self" | "router" | "blank" | undefined;
@@ -3629,7 +3637,7 @@ export declare class Command {
3629
3637
  };
3630
3638
  tags: string[];
3631
3639
  availability_rules: ({
3632
- type: "url" | "context" | "element";
3640
+ type: "url" | "element" | "context";
3633
3641
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
3634
3642
  } & {
3635
3643
  field?: string | undefined;
@@ -3637,7 +3645,7 @@ export declare class Command {
3637
3645
  reason?: string | undefined;
3638
3646
  })[];
3639
3647
  recommend_rules: (({
3640
- type: "url" | "context" | "element";
3648
+ type: "url" | "element" | "context";
3641
3649
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
3642
3650
  } & {
3643
3651
  field?: string | undefined;
@@ -3706,7 +3714,7 @@ export declare class Command {
3706
3714
  type: "admin";
3707
3715
  value: string;
3708
3716
  } & {} & {
3709
- commandType?: "object" | "independent" | "help" | undefined;
3717
+ commandType?: "object" | "help" | "independent" | undefined;
3710
3718
  object?: string | undefined;
3711
3719
  hoverTooltip?: boolean | undefined;
3712
3720
  operation?: "self" | "router" | "blank" | undefined;
@@ -3714,7 +3722,7 @@ export declare class Command {
3714
3722
  type: "callback";
3715
3723
  value: string;
3716
3724
  } & {} & {
3717
- commandType?: "object" | "independent" | "help" | undefined;
3725
+ commandType?: "object" | "help" | "independent" | undefined;
3718
3726
  object?: string | undefined;
3719
3727
  hoverTooltip?: boolean | undefined;
3720
3728
  operation?: "self" | "router" | "blank" | undefined;
@@ -3722,7 +3730,7 @@ export declare class Command {
3722
3730
  type: "link";
3723
3731
  value: string;
3724
3732
  } & {} & {
3725
- commandType?: "object" | "independent" | "help" | undefined;
3733
+ commandType?: "object" | "help" | "independent" | undefined;
3726
3734
  object?: string | undefined;
3727
3735
  hoverTooltip?: boolean | undefined;
3728
3736
  operation?: "self" | "router" | "blank" | undefined;
@@ -3730,7 +3738,7 @@ export declare class Command {
3730
3738
  type: "click" | "clickByXpath" | "clickBySelector";
3731
3739
  value: string[];
3732
3740
  } & {} & {
3733
- commandType?: "object" | "independent" | "help" | undefined;
3741
+ commandType?: "object" | "help" | "independent" | undefined;
3734
3742
  object?: string | undefined;
3735
3743
  hoverTooltip?: boolean | undefined;
3736
3744
  operation?: "self" | "router" | "blank" | undefined;
@@ -3738,7 +3746,7 @@ export declare class Command {
3738
3746
  type: "builtin";
3739
3747
  value: string;
3740
3748
  } & {} & {
3741
- commandType?: "object" | "independent" | "help" | undefined;
3749
+ commandType?: "object" | "help" | "independent" | undefined;
3742
3750
  object?: string | undefined;
3743
3751
  hoverTooltip?: boolean | undefined;
3744
3752
  operation?: "self" | "router" | "blank" | undefined;
@@ -3746,7 +3754,7 @@ export declare class Command {
3746
3754
  type: "webhook";
3747
3755
  value: string;
3748
3756
  } & {} & {
3749
- commandType?: "object" | "independent" | "help" | undefined;
3757
+ commandType?: "object" | "help" | "independent" | undefined;
3750
3758
  object?: string | undefined;
3751
3759
  hoverTooltip?: boolean | undefined;
3752
3760
  operation?: "self" | "router" | "blank" | undefined;
@@ -3754,7 +3762,7 @@ export declare class Command {
3754
3762
  type: "script";
3755
3763
  value: string;
3756
3764
  } & {} & {
3757
- commandType?: "object" | "independent" | "help" | undefined;
3765
+ commandType?: "object" | "help" | "independent" | undefined;
3758
3766
  object?: string | undefined;
3759
3767
  hoverTooltip?: boolean | undefined;
3760
3768
  operation?: "self" | "router" | "blank" | undefined;
@@ -3775,7 +3783,7 @@ export declare class Command {
3775
3783
  onError?: string | undefined;
3776
3784
  };
3777
3785
  } & {} & {
3778
- commandType?: "object" | "independent" | "help" | undefined;
3786
+ commandType?: "object" | "help" | "independent" | undefined;
3779
3787
  object?: string | undefined;
3780
3788
  hoverTooltip?: boolean | undefined;
3781
3789
  operation?: "self" | "router" | "blank" | undefined;
@@ -3783,7 +3791,7 @@ export declare class Command {
3783
3791
  type: "appcues";
3784
3792
  value: string;
3785
3793
  } & {} & {
3786
- commandType?: "object" | "independent" | "help" | undefined;
3794
+ commandType?: "object" | "help" | "independent" | undefined;
3787
3795
  object?: string | undefined;
3788
3796
  hoverTooltip?: boolean | undefined;
3789
3797
  operation?: "self" | "router" | "blank" | undefined;
@@ -3791,7 +3799,7 @@ export declare class Command {
3791
3799
  type: "video";
3792
3800
  value: string;
3793
3801
  } & {} & {
3794
- commandType?: "object" | "independent" | "help" | undefined;
3802
+ commandType?: "object" | "help" | "independent" | undefined;
3795
3803
  object?: string | undefined;
3796
3804
  hoverTooltip?: boolean | undefined;
3797
3805
  operation?: "self" | "router" | "blank" | undefined;
@@ -3799,7 +3807,7 @@ export declare class Command {
3799
3807
  type: "helpdoc";
3800
3808
  value: string;
3801
3809
  } & {} & {
3802
- commandType?: "object" | "independent" | "help" | undefined;
3810
+ commandType?: "object" | "help" | "independent" | undefined;
3803
3811
  object?: string | undefined;
3804
3812
  hoverTooltip?: boolean | undefined;
3805
3813
  operation?: "self" | "router" | "blank" | undefined;
@@ -3821,7 +3829,7 @@ export declare class Command {
3821
3829
  type: "admin";
3822
3830
  value: string;
3823
3831
  } & {} & {
3824
- commandType?: "object" | "independent" | "help" | undefined;
3832
+ commandType?: "object" | "help" | "independent" | undefined;
3825
3833
  object?: string | undefined;
3826
3834
  hoverTooltip?: boolean | undefined;
3827
3835
  operation?: "self" | "router" | "blank" | undefined;
@@ -3829,7 +3837,7 @@ export declare class Command {
3829
3837
  type: "callback";
3830
3838
  value: string;
3831
3839
  } & {} & {
3832
- commandType?: "object" | "independent" | "help" | undefined;
3840
+ commandType?: "object" | "help" | "independent" | undefined;
3833
3841
  object?: string | undefined;
3834
3842
  hoverTooltip?: boolean | undefined;
3835
3843
  operation?: "self" | "router" | "blank" | undefined;
@@ -3837,7 +3845,7 @@ export declare class Command {
3837
3845
  type: "link";
3838
3846
  value: string;
3839
3847
  } & {} & {
3840
- commandType?: "object" | "independent" | "help" | undefined;
3848
+ commandType?: "object" | "help" | "independent" | undefined;
3841
3849
  object?: string | undefined;
3842
3850
  hoverTooltip?: boolean | undefined;
3843
3851
  operation?: "self" | "router" | "blank" | undefined;
@@ -3845,7 +3853,7 @@ export declare class Command {
3845
3853
  type: "click" | "clickByXpath" | "clickBySelector";
3846
3854
  value: string[];
3847
3855
  } & {} & {
3848
- commandType?: "object" | "independent" | "help" | undefined;
3856
+ commandType?: "object" | "help" | "independent" | undefined;
3849
3857
  object?: string | undefined;
3850
3858
  hoverTooltip?: boolean | undefined;
3851
3859
  operation?: "self" | "router" | "blank" | undefined;
@@ -3853,7 +3861,7 @@ export declare class Command {
3853
3861
  type: "builtin";
3854
3862
  value: string;
3855
3863
  } & {} & {
3856
- commandType?: "object" | "independent" | "help" | undefined;
3864
+ commandType?: "object" | "help" | "independent" | undefined;
3857
3865
  object?: string | undefined;
3858
3866
  hoverTooltip?: boolean | undefined;
3859
3867
  operation?: "self" | "router" | "blank" | undefined;
@@ -3861,7 +3869,7 @@ export declare class Command {
3861
3869
  type: "webhook";
3862
3870
  value: string;
3863
3871
  } & {} & {
3864
- commandType?: "object" | "independent" | "help" | undefined;
3872
+ commandType?: "object" | "help" | "independent" | undefined;
3865
3873
  object?: string | undefined;
3866
3874
  hoverTooltip?: boolean | undefined;
3867
3875
  operation?: "self" | "router" | "blank" | undefined;
@@ -3869,7 +3877,7 @@ export declare class Command {
3869
3877
  type: "script";
3870
3878
  value: string;
3871
3879
  } & {} & {
3872
- commandType?: "object" | "independent" | "help" | undefined;
3880
+ commandType?: "object" | "help" | "independent" | undefined;
3873
3881
  object?: string | undefined;
3874
3882
  hoverTooltip?: boolean | undefined;
3875
3883
  operation?: "self" | "router" | "blank" | undefined;
@@ -3890,7 +3898,7 @@ export declare class Command {
3890
3898
  onError?: string | undefined;
3891
3899
  };
3892
3900
  } & {} & {
3893
- commandType?: "object" | "independent" | "help" | undefined;
3901
+ commandType?: "object" | "help" | "independent" | undefined;
3894
3902
  object?: string | undefined;
3895
3903
  hoverTooltip?: boolean | undefined;
3896
3904
  operation?: "self" | "router" | "blank" | undefined;
@@ -3898,7 +3906,7 @@ export declare class Command {
3898
3906
  type: "appcues";
3899
3907
  value: string;
3900
3908
  } & {} & {
3901
- commandType?: "object" | "independent" | "help" | undefined;
3909
+ commandType?: "object" | "help" | "independent" | undefined;
3902
3910
  object?: string | undefined;
3903
3911
  hoverTooltip?: boolean | undefined;
3904
3912
  operation?: "self" | "router" | "blank" | undefined;
@@ -3906,7 +3914,7 @@ export declare class Command {
3906
3914
  type: "video";
3907
3915
  value: string;
3908
3916
  } & {} & {
3909
- commandType?: "object" | "independent" | "help" | undefined;
3917
+ commandType?: "object" | "help" | "independent" | undefined;
3910
3918
  object?: string | undefined;
3911
3919
  hoverTooltip?: boolean | undefined;
3912
3920
  operation?: "self" | "router" | "blank" | undefined;
@@ -3914,7 +3922,7 @@ export declare class Command {
3914
3922
  type: "helpdoc";
3915
3923
  value: string;
3916
3924
  } & {} & {
3917
- commandType?: "object" | "independent" | "help" | undefined;
3925
+ commandType?: "object" | "help" | "independent" | undefined;
3918
3926
  object?: string | undefined;
3919
3927
  hoverTooltip?: boolean | undefined;
3920
3928
  operation?: "self" | "router" | "blank" | undefined;
@@ -4069,14 +4077,14 @@ export declare class Command {
4069
4077
  };
4070
4078
  tags: string[];
4071
4079
  availability_rules: ({
4072
- type: "url" | "context" | "element";
4080
+ type: "url" | "element" | "context";
4073
4081
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4074
4082
  } & {
4075
4083
  field?: string | undefined;
4076
4084
  value?: string | undefined;
4077
4085
  reason?: string | undefined;
4078
4086
  })[] | (({
4079
- type: "url" | "context" | "element";
4087
+ type: "url" | "element" | "context";
4080
4088
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4081
4089
  } & {
4082
4090
  field?: string | undefined;
@@ -4089,7 +4097,7 @@ export declare class Command {
4089
4097
  reason?: string | undefined;
4090
4098
  }))[];
4091
4099
  recommend_rules: (({
4092
- type: "url" | "context" | "element";
4100
+ type: "url" | "element" | "context";
4093
4101
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4094
4102
  } & {
4095
4103
  field?: string | undefined;
@@ -4103,17 +4111,12 @@ export declare class Command {
4103
4111
  value?: null | undefined;
4104
4112
  reason?: null | undefined;
4105
4113
  }))[] | (({
4106
- type: "url" | "context" | "element";
4114
+ type: "url" | "element" | "context";
4107
4115
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4108
4116
  } & {
4109
4117
  field?: string | undefined;
4110
4118
  value?: string | undefined;
4111
4119
  reason?: string | undefined;
4112
- }) | ({
4113
- type: "named_rule";
4114
- rule_id: number;
4115
- } & {
4116
- reason?: string | undefined;
4117
4120
  }) | ({
4118
4121
  type: "always";
4119
4122
  } & {
@@ -4121,6 +4124,11 @@ export declare class Command {
4121
4124
  field?: null | undefined;
4122
4125
  value?: null | undefined;
4123
4126
  reason?: null | undefined;
4127
+ }) | ({
4128
+ type: "named_rule";
4129
+ rule_id: number;
4130
+ } & {
4131
+ reason?: string | undefined;
4124
4132
  }))[];
4125
4133
  availability_expression: import("./helpers/rules").RuleExpression;
4126
4134
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -4177,7 +4185,7 @@ export declare class Command {
4177
4185
  type: "admin";
4178
4186
  value: string;
4179
4187
  } & {} & {
4180
- commandType?: "object" | "independent" | "help" | undefined;
4188
+ commandType?: "object" | "help" | "independent" | undefined;
4181
4189
  object?: string | undefined;
4182
4190
  hoverTooltip?: boolean | undefined;
4183
4191
  operation?: "self" | "router" | "blank" | undefined;
@@ -4185,7 +4193,7 @@ export declare class Command {
4185
4193
  type: "callback";
4186
4194
  value: string;
4187
4195
  } & {} & {
4188
- commandType?: "object" | "independent" | "help" | undefined;
4196
+ commandType?: "object" | "help" | "independent" | undefined;
4189
4197
  object?: string | undefined;
4190
4198
  hoverTooltip?: boolean | undefined;
4191
4199
  operation?: "self" | "router" | "blank" | undefined;
@@ -4193,7 +4201,7 @@ export declare class Command {
4193
4201
  type: "link";
4194
4202
  value: string;
4195
4203
  } & {} & {
4196
- commandType?: "object" | "independent" | "help" | undefined;
4204
+ commandType?: "object" | "help" | "independent" | undefined;
4197
4205
  object?: string | undefined;
4198
4206
  hoverTooltip?: boolean | undefined;
4199
4207
  operation?: "self" | "router" | "blank" | undefined;
@@ -4201,7 +4209,7 @@ export declare class Command {
4201
4209
  type: "click" | "clickByXpath" | "clickBySelector";
4202
4210
  value: string[];
4203
4211
  } & {} & {
4204
- commandType?: "object" | "independent" | "help" | undefined;
4212
+ commandType?: "object" | "help" | "independent" | undefined;
4205
4213
  object?: string | undefined;
4206
4214
  hoverTooltip?: boolean | undefined;
4207
4215
  operation?: "self" | "router" | "blank" | undefined;
@@ -4209,7 +4217,7 @@ export declare class Command {
4209
4217
  type: "builtin";
4210
4218
  value: string;
4211
4219
  } & {} & {
4212
- commandType?: "object" | "independent" | "help" | undefined;
4220
+ commandType?: "object" | "help" | "independent" | undefined;
4213
4221
  object?: string | undefined;
4214
4222
  hoverTooltip?: boolean | undefined;
4215
4223
  operation?: "self" | "router" | "blank" | undefined;
@@ -4217,7 +4225,7 @@ export declare class Command {
4217
4225
  type: "webhook";
4218
4226
  value: string;
4219
4227
  } & {} & {
4220
- commandType?: "object" | "independent" | "help" | undefined;
4228
+ commandType?: "object" | "help" | "independent" | undefined;
4221
4229
  object?: string | undefined;
4222
4230
  hoverTooltip?: boolean | undefined;
4223
4231
  operation?: "self" | "router" | "blank" | undefined;
@@ -4225,7 +4233,7 @@ export declare class Command {
4225
4233
  type: "script";
4226
4234
  value: string;
4227
4235
  } & {} & {
4228
- commandType?: "object" | "independent" | "help" | undefined;
4236
+ commandType?: "object" | "help" | "independent" | undefined;
4229
4237
  object?: string | undefined;
4230
4238
  hoverTooltip?: boolean | undefined;
4231
4239
  operation?: "self" | "router" | "blank" | undefined;
@@ -4246,7 +4254,7 @@ export declare class Command {
4246
4254
  onError?: string | undefined;
4247
4255
  };
4248
4256
  } & {} & {
4249
- commandType?: "object" | "independent" | "help" | undefined;
4257
+ commandType?: "object" | "help" | "independent" | undefined;
4250
4258
  object?: string | undefined;
4251
4259
  hoverTooltip?: boolean | undefined;
4252
4260
  operation?: "self" | "router" | "blank" | undefined;
@@ -4254,7 +4262,7 @@ export declare class Command {
4254
4262
  type: "appcues";
4255
4263
  value: string;
4256
4264
  } & {} & {
4257
- commandType?: "object" | "independent" | "help" | undefined;
4265
+ commandType?: "object" | "help" | "independent" | undefined;
4258
4266
  object?: string | undefined;
4259
4267
  hoverTooltip?: boolean | undefined;
4260
4268
  operation?: "self" | "router" | "blank" | undefined;
@@ -4262,7 +4270,7 @@ export declare class Command {
4262
4270
  type: "video";
4263
4271
  value: string;
4264
4272
  } & {} & {
4265
- commandType?: "object" | "independent" | "help" | undefined;
4273
+ commandType?: "object" | "help" | "independent" | undefined;
4266
4274
  object?: string | undefined;
4267
4275
  hoverTooltip?: boolean | undefined;
4268
4276
  operation?: "self" | "router" | "blank" | undefined;
@@ -4270,7 +4278,7 @@ export declare class Command {
4270
4278
  type: "helpdoc";
4271
4279
  value: string;
4272
4280
  } & {} & {
4273
- commandType?: "object" | "independent" | "help" | undefined;
4281
+ commandType?: "object" | "help" | "independent" | undefined;
4274
4282
  object?: string | undefined;
4275
4283
  hoverTooltip?: boolean | undefined;
4276
4284
  operation?: "self" | "router" | "blank" | undefined;
@@ -4425,14 +4433,14 @@ export declare class Command {
4425
4433
  };
4426
4434
  tags: string[];
4427
4435
  availability_rules: ({
4428
- type: "url" | "context" | "element";
4436
+ type: "url" | "element" | "context";
4429
4437
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4430
4438
  } & {
4431
4439
  field?: string | undefined;
4432
4440
  value?: string | undefined;
4433
4441
  reason?: string | undefined;
4434
4442
  })[] | (({
4435
- type: "url" | "context" | "element";
4443
+ type: "url" | "element" | "context";
4436
4444
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4437
4445
  } & {
4438
4446
  field?: string | undefined;
@@ -4445,7 +4453,7 @@ export declare class Command {
4445
4453
  reason?: string | undefined;
4446
4454
  }))[];
4447
4455
  recommend_rules: (({
4448
- type: "url" | "context" | "element";
4456
+ type: "url" | "element" | "context";
4449
4457
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4450
4458
  } & {
4451
4459
  field?: string | undefined;
@@ -4459,17 +4467,12 @@ export declare class Command {
4459
4467
  value?: null | undefined;
4460
4468
  reason?: null | undefined;
4461
4469
  }))[] | (({
4462
- type: "url" | "context" | "element";
4470
+ type: "url" | "element" | "context";
4463
4471
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4464
4472
  } & {
4465
4473
  field?: string | undefined;
4466
4474
  value?: string | undefined;
4467
4475
  reason?: string | undefined;
4468
- }) | ({
4469
- type: "named_rule";
4470
- rule_id: number;
4471
- } & {
4472
- reason?: string | undefined;
4473
4476
  }) | ({
4474
4477
  type: "always";
4475
4478
  } & {
@@ -4477,6 +4480,11 @@ export declare class Command {
4477
4480
  field?: null | undefined;
4478
4481
  value?: null | undefined;
4479
4482
  reason?: null | undefined;
4483
+ }) | ({
4484
+ type: "named_rule";
4485
+ rule_id: number;
4486
+ } & {
4487
+ reason?: string | undefined;
4480
4488
  }))[];
4481
4489
  availability_expression: import("./helpers/rules").RuleExpression;
4482
4490
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -4532,7 +4540,7 @@ export declare class Command {
4532
4540
  type: "admin";
4533
4541
  value: string;
4534
4542
  } & {} & {
4535
- commandType?: "object" | "independent" | "help" | undefined;
4543
+ commandType?: "object" | "help" | "independent" | undefined;
4536
4544
  object?: string | undefined;
4537
4545
  hoverTooltip?: boolean | undefined;
4538
4546
  operation?: "self" | "router" | "blank" | undefined;
@@ -4540,7 +4548,7 @@ export declare class Command {
4540
4548
  type: "callback";
4541
4549
  value: string;
4542
4550
  } & {} & {
4543
- commandType?: "object" | "independent" | "help" | undefined;
4551
+ commandType?: "object" | "help" | "independent" | undefined;
4544
4552
  object?: string | undefined;
4545
4553
  hoverTooltip?: boolean | undefined;
4546
4554
  operation?: "self" | "router" | "blank" | undefined;
@@ -4548,7 +4556,7 @@ export declare class Command {
4548
4556
  type: "link";
4549
4557
  value: string;
4550
4558
  } & {} & {
4551
- commandType?: "object" | "independent" | "help" | undefined;
4559
+ commandType?: "object" | "help" | "independent" | undefined;
4552
4560
  object?: string | undefined;
4553
4561
  hoverTooltip?: boolean | undefined;
4554
4562
  operation?: "self" | "router" | "blank" | undefined;
@@ -4556,7 +4564,7 @@ export declare class Command {
4556
4564
  type: "click" | "clickByXpath" | "clickBySelector";
4557
4565
  value: string[];
4558
4566
  } & {} & {
4559
- commandType?: "object" | "independent" | "help" | undefined;
4567
+ commandType?: "object" | "help" | "independent" | undefined;
4560
4568
  object?: string | undefined;
4561
4569
  hoverTooltip?: boolean | undefined;
4562
4570
  operation?: "self" | "router" | "blank" | undefined;
@@ -4564,7 +4572,7 @@ export declare class Command {
4564
4572
  type: "builtin";
4565
4573
  value: string;
4566
4574
  } & {} & {
4567
- commandType?: "object" | "independent" | "help" | undefined;
4575
+ commandType?: "object" | "help" | "independent" | undefined;
4568
4576
  object?: string | undefined;
4569
4577
  hoverTooltip?: boolean | undefined;
4570
4578
  operation?: "self" | "router" | "blank" | undefined;
@@ -4572,7 +4580,7 @@ export declare class Command {
4572
4580
  type: "webhook";
4573
4581
  value: string;
4574
4582
  } & {} & {
4575
- commandType?: "object" | "independent" | "help" | undefined;
4583
+ commandType?: "object" | "help" | "independent" | undefined;
4576
4584
  object?: string | undefined;
4577
4585
  hoverTooltip?: boolean | undefined;
4578
4586
  operation?: "self" | "router" | "blank" | undefined;
@@ -4580,7 +4588,7 @@ export declare class Command {
4580
4588
  type: "script";
4581
4589
  value: string;
4582
4590
  } & {} & {
4583
- commandType?: "object" | "independent" | "help" | undefined;
4591
+ commandType?: "object" | "help" | "independent" | undefined;
4584
4592
  object?: string | undefined;
4585
4593
  hoverTooltip?: boolean | undefined;
4586
4594
  operation?: "self" | "router" | "blank" | undefined;
@@ -4601,7 +4609,7 @@ export declare class Command {
4601
4609
  onError?: string | undefined;
4602
4610
  };
4603
4611
  } & {} & {
4604
- commandType?: "object" | "independent" | "help" | undefined;
4612
+ commandType?: "object" | "help" | "independent" | undefined;
4605
4613
  object?: string | undefined;
4606
4614
  hoverTooltip?: boolean | undefined;
4607
4615
  operation?: "self" | "router" | "blank" | undefined;
@@ -4609,7 +4617,7 @@ export declare class Command {
4609
4617
  type: "appcues";
4610
4618
  value: string;
4611
4619
  } & {} & {
4612
- commandType?: "object" | "independent" | "help" | undefined;
4620
+ commandType?: "object" | "help" | "independent" | undefined;
4613
4621
  object?: string | undefined;
4614
4622
  hoverTooltip?: boolean | undefined;
4615
4623
  operation?: "self" | "router" | "blank" | undefined;
@@ -4617,7 +4625,7 @@ export declare class Command {
4617
4625
  type: "video";
4618
4626
  value: string;
4619
4627
  } & {} & {
4620
- commandType?: "object" | "independent" | "help" | undefined;
4628
+ commandType?: "object" | "help" | "independent" | undefined;
4621
4629
  object?: string | undefined;
4622
4630
  hoverTooltip?: boolean | undefined;
4623
4631
  operation?: "self" | "router" | "blank" | undefined;
@@ -4625,7 +4633,7 @@ export declare class Command {
4625
4633
  type: "helpdoc";
4626
4634
  value: string;
4627
4635
  } & {} & {
4628
- commandType?: "object" | "independent" | "help" | undefined;
4636
+ commandType?: "object" | "help" | "independent" | undefined;
4629
4637
  object?: string | undefined;
4630
4638
  hoverTooltip?: boolean | undefined;
4631
4639
  operation?: "self" | "router" | "blank" | undefined;
@@ -4780,14 +4788,14 @@ export declare class Command {
4780
4788
  };
4781
4789
  tags: string[];
4782
4790
  availability_rules: ({
4783
- type: "url" | "context" | "element";
4791
+ type: "url" | "element" | "context";
4784
4792
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4785
4793
  } & {
4786
4794
  field?: string | undefined;
4787
4795
  value?: string | undefined;
4788
4796
  reason?: string | undefined;
4789
4797
  })[] | (({
4790
- type: "url" | "context" | "element";
4798
+ type: "url" | "element" | "context";
4791
4799
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4792
4800
  } & {
4793
4801
  field?: string | undefined;
@@ -4800,7 +4808,7 @@ export declare class Command {
4800
4808
  reason?: string | undefined;
4801
4809
  }))[];
4802
4810
  recommend_rules: (({
4803
- type: "url" | "context" | "element";
4811
+ type: "url" | "element" | "context";
4804
4812
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4805
4813
  } & {
4806
4814
  field?: string | undefined;
@@ -4814,17 +4822,12 @@ export declare class Command {
4814
4822
  value?: null | undefined;
4815
4823
  reason?: null | undefined;
4816
4824
  }))[] | (({
4817
- type: "url" | "context" | "element";
4825
+ type: "url" | "element" | "context";
4818
4826
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
4819
4827
  } & {
4820
4828
  field?: string | undefined;
4821
4829
  value?: string | undefined;
4822
4830
  reason?: string | undefined;
4823
- }) | ({
4824
- type: "named_rule";
4825
- rule_id: number;
4826
- } & {
4827
- reason?: string | undefined;
4828
4831
  }) | ({
4829
4832
  type: "always";
4830
4833
  } & {
@@ -4832,6 +4835,11 @@ export declare class Command {
4832
4835
  field?: null | undefined;
4833
4836
  value?: null | undefined;
4834
4837
  reason?: null | undefined;
4838
+ }) | ({
4839
+ type: "named_rule";
4840
+ rule_id: number;
4841
+ } & {
4842
+ reason?: string | undefined;
4835
4843
  }))[];
4836
4844
  availability_expression: import("./helpers/rules").RuleExpression;
4837
4845
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -4888,7 +4896,7 @@ export declare class Command {
4888
4896
  type: "admin";
4889
4897
  value: string;
4890
4898
  } & {} & {
4891
- commandType?: "object" | "independent" | "help" | undefined;
4899
+ commandType?: "object" | "help" | "independent" | undefined;
4892
4900
  object?: string | undefined;
4893
4901
  hoverTooltip?: boolean | undefined;
4894
4902
  operation?: "self" | "router" | "blank" | undefined;
@@ -4896,7 +4904,7 @@ export declare class Command {
4896
4904
  type: "callback";
4897
4905
  value: string;
4898
4906
  } & {} & {
4899
- commandType?: "object" | "independent" | "help" | undefined;
4907
+ commandType?: "object" | "help" | "independent" | undefined;
4900
4908
  object?: string | undefined;
4901
4909
  hoverTooltip?: boolean | undefined;
4902
4910
  operation?: "self" | "router" | "blank" | undefined;
@@ -4904,7 +4912,7 @@ export declare class Command {
4904
4912
  type: "link";
4905
4913
  value: string;
4906
4914
  } & {} & {
4907
- commandType?: "object" | "independent" | "help" | undefined;
4915
+ commandType?: "object" | "help" | "independent" | undefined;
4908
4916
  object?: string | undefined;
4909
4917
  hoverTooltip?: boolean | undefined;
4910
4918
  operation?: "self" | "router" | "blank" | undefined;
@@ -4912,7 +4920,7 @@ export declare class Command {
4912
4920
  type: "click" | "clickByXpath" | "clickBySelector";
4913
4921
  value: string[];
4914
4922
  } & {} & {
4915
- commandType?: "object" | "independent" | "help" | undefined;
4923
+ commandType?: "object" | "help" | "independent" | undefined;
4916
4924
  object?: string | undefined;
4917
4925
  hoverTooltip?: boolean | undefined;
4918
4926
  operation?: "self" | "router" | "blank" | undefined;
@@ -4920,7 +4928,7 @@ export declare class Command {
4920
4928
  type: "builtin";
4921
4929
  value: string;
4922
4930
  } & {} & {
4923
- commandType?: "object" | "independent" | "help" | undefined;
4931
+ commandType?: "object" | "help" | "independent" | undefined;
4924
4932
  object?: string | undefined;
4925
4933
  hoverTooltip?: boolean | undefined;
4926
4934
  operation?: "self" | "router" | "blank" | undefined;
@@ -4928,7 +4936,7 @@ export declare class Command {
4928
4936
  type: "webhook";
4929
4937
  value: string;
4930
4938
  } & {} & {
4931
- commandType?: "object" | "independent" | "help" | undefined;
4939
+ commandType?: "object" | "help" | "independent" | undefined;
4932
4940
  object?: string | undefined;
4933
4941
  hoverTooltip?: boolean | undefined;
4934
4942
  operation?: "self" | "router" | "blank" | undefined;
@@ -4936,7 +4944,7 @@ export declare class Command {
4936
4944
  type: "script";
4937
4945
  value: string;
4938
4946
  } & {} & {
4939
- commandType?: "object" | "independent" | "help" | undefined;
4947
+ commandType?: "object" | "help" | "independent" | undefined;
4940
4948
  object?: string | undefined;
4941
4949
  hoverTooltip?: boolean | undefined;
4942
4950
  operation?: "self" | "router" | "blank" | undefined;
@@ -4957,7 +4965,7 @@ export declare class Command {
4957
4965
  onError?: string | undefined;
4958
4966
  };
4959
4967
  } & {} & {
4960
- commandType?: "object" | "independent" | "help" | undefined;
4968
+ commandType?: "object" | "help" | "independent" | undefined;
4961
4969
  object?: string | undefined;
4962
4970
  hoverTooltip?: boolean | undefined;
4963
4971
  operation?: "self" | "router" | "blank" | undefined;
@@ -4965,7 +4973,7 @@ export declare class Command {
4965
4973
  type: "appcues";
4966
4974
  value: string;
4967
4975
  } & {} & {
4968
- commandType?: "object" | "independent" | "help" | undefined;
4976
+ commandType?: "object" | "help" | "independent" | undefined;
4969
4977
  object?: string | undefined;
4970
4978
  hoverTooltip?: boolean | undefined;
4971
4979
  operation?: "self" | "router" | "blank" | undefined;
@@ -4973,7 +4981,7 @@ export declare class Command {
4973
4981
  type: "video";
4974
4982
  value: string;
4975
4983
  } & {} & {
4976
- commandType?: "object" | "independent" | "help" | undefined;
4984
+ commandType?: "object" | "help" | "independent" | undefined;
4977
4985
  object?: string | undefined;
4978
4986
  hoverTooltip?: boolean | undefined;
4979
4987
  operation?: "self" | "router" | "blank" | undefined;
@@ -4981,7 +4989,7 @@ export declare class Command {
4981
4989
  type: "helpdoc";
4982
4990
  value: string;
4983
4991
  } & {} & {
4984
- commandType?: "object" | "independent" | "help" | undefined;
4992
+ commandType?: "object" | "help" | "independent" | undefined;
4985
4993
  object?: string | undefined;
4986
4994
  hoverTooltip?: boolean | undefined;
4987
4995
  operation?: "self" | "router" | "blank" | undefined;
@@ -5136,14 +5144,14 @@ export declare class Command {
5136
5144
  };
5137
5145
  tags: string[];
5138
5146
  availability_rules: ({
5139
- type: "url" | "context" | "element";
5147
+ type: "url" | "element" | "context";
5140
5148
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
5141
5149
  } & {
5142
5150
  field?: string | undefined;
5143
5151
  value?: string | undefined;
5144
5152
  reason?: string | undefined;
5145
5153
  })[] | (({
5146
- type: "url" | "context" | "element";
5154
+ type: "url" | "element" | "context";
5147
5155
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
5148
5156
  } & {
5149
5157
  field?: string | undefined;
@@ -5156,7 +5164,7 @@ export declare class Command {
5156
5164
  reason?: string | undefined;
5157
5165
  }))[];
5158
5166
  recommend_rules: (({
5159
- type: "url" | "context" | "element";
5167
+ type: "url" | "element" | "context";
5160
5168
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
5161
5169
  } & {
5162
5170
  field?: string | undefined;
@@ -5170,17 +5178,12 @@ export declare class Command {
5170
5178
  value?: null | undefined;
5171
5179
  reason?: null | undefined;
5172
5180
  }))[] | (({
5173
- type: "url" | "context" | "element";
5181
+ type: "url" | "element" | "context";
5174
5182
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
5175
5183
  } & {
5176
5184
  field?: string | undefined;
5177
5185
  value?: string | undefined;
5178
5186
  reason?: string | undefined;
5179
- }) | ({
5180
- type: "named_rule";
5181
- rule_id: number;
5182
- } & {
5183
- reason?: string | undefined;
5184
5187
  }) | ({
5185
5188
  type: "always";
5186
5189
  } & {
@@ -5188,6 +5191,11 @@ export declare class Command {
5188
5191
  field?: null | undefined;
5189
5192
  value?: null | undefined;
5190
5193
  reason?: null | undefined;
5194
+ }) | ({
5195
+ type: "named_rule";
5196
+ rule_id: number;
5197
+ } & {
5198
+ reason?: string | undefined;
5191
5199
  }))[];
5192
5200
  availability_expression: import("./helpers/rules").RuleExpression;
5193
5201
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -5243,7 +5251,7 @@ export declare class Command {
5243
5251
  type: "admin";
5244
5252
  value: string;
5245
5253
  } & {} & {
5246
- commandType?: "object" | "independent" | "help" | undefined;
5254
+ commandType?: "object" | "help" | "independent" | undefined;
5247
5255
  object?: string | undefined;
5248
5256
  hoverTooltip?: boolean | undefined;
5249
5257
  operation?: "self" | "router" | "blank" | undefined;
@@ -5251,7 +5259,7 @@ export declare class Command {
5251
5259
  type: "callback";
5252
5260
  value: string;
5253
5261
  } & {} & {
5254
- commandType?: "object" | "independent" | "help" | undefined;
5262
+ commandType?: "object" | "help" | "independent" | undefined;
5255
5263
  object?: string | undefined;
5256
5264
  hoverTooltip?: boolean | undefined;
5257
5265
  operation?: "self" | "router" | "blank" | undefined;
@@ -5259,7 +5267,7 @@ export declare class Command {
5259
5267
  type: "link";
5260
5268
  value: string;
5261
5269
  } & {} & {
5262
- commandType?: "object" | "independent" | "help" | undefined;
5270
+ commandType?: "object" | "help" | "independent" | undefined;
5263
5271
  object?: string | undefined;
5264
5272
  hoverTooltip?: boolean | undefined;
5265
5273
  operation?: "self" | "router" | "blank" | undefined;
@@ -5267,7 +5275,7 @@ export declare class Command {
5267
5275
  type: "click" | "clickByXpath" | "clickBySelector";
5268
5276
  value: string[];
5269
5277
  } & {} & {
5270
- commandType?: "object" | "independent" | "help" | undefined;
5278
+ commandType?: "object" | "help" | "independent" | undefined;
5271
5279
  object?: string | undefined;
5272
5280
  hoverTooltip?: boolean | undefined;
5273
5281
  operation?: "self" | "router" | "blank" | undefined;
@@ -5275,7 +5283,7 @@ export declare class Command {
5275
5283
  type: "builtin";
5276
5284
  value: string;
5277
5285
  } & {} & {
5278
- commandType?: "object" | "independent" | "help" | undefined;
5286
+ commandType?: "object" | "help" | "independent" | undefined;
5279
5287
  object?: string | undefined;
5280
5288
  hoverTooltip?: boolean | undefined;
5281
5289
  operation?: "self" | "router" | "blank" | undefined;
@@ -5283,7 +5291,7 @@ export declare class Command {
5283
5291
  type: "webhook";
5284
5292
  value: string;
5285
5293
  } & {} & {
5286
- commandType?: "object" | "independent" | "help" | undefined;
5294
+ commandType?: "object" | "help" | "independent" | undefined;
5287
5295
  object?: string | undefined;
5288
5296
  hoverTooltip?: boolean | undefined;
5289
5297
  operation?: "self" | "router" | "blank" | undefined;
@@ -5291,7 +5299,7 @@ export declare class Command {
5291
5299
  type: "script";
5292
5300
  value: string;
5293
5301
  } & {} & {
5294
- commandType?: "object" | "independent" | "help" | undefined;
5302
+ commandType?: "object" | "help" | "independent" | undefined;
5295
5303
  object?: string | undefined;
5296
5304
  hoverTooltip?: boolean | undefined;
5297
5305
  operation?: "self" | "router" | "blank" | undefined;
@@ -5312,7 +5320,7 @@ export declare class Command {
5312
5320
  onError?: string | undefined;
5313
5321
  };
5314
5322
  } & {} & {
5315
- commandType?: "object" | "independent" | "help" | undefined;
5323
+ commandType?: "object" | "help" | "independent" | undefined;
5316
5324
  object?: string | undefined;
5317
5325
  hoverTooltip?: boolean | undefined;
5318
5326
  operation?: "self" | "router" | "blank" | undefined;
@@ -5320,7 +5328,7 @@ export declare class Command {
5320
5328
  type: "appcues";
5321
5329
  value: string;
5322
5330
  } & {} & {
5323
- commandType?: "object" | "independent" | "help" | undefined;
5331
+ commandType?: "object" | "help" | "independent" | undefined;
5324
5332
  object?: string | undefined;
5325
5333
  hoverTooltip?: boolean | undefined;
5326
5334
  operation?: "self" | "router" | "blank" | undefined;
@@ -5328,7 +5336,7 @@ export declare class Command {
5328
5336
  type: "video";
5329
5337
  value: string;
5330
5338
  } & {} & {
5331
- commandType?: "object" | "independent" | "help" | undefined;
5339
+ commandType?: "object" | "help" | "independent" | undefined;
5332
5340
  object?: string | undefined;
5333
5341
  hoverTooltip?: boolean | undefined;
5334
5342
  operation?: "self" | "router" | "blank" | undefined;
@@ -5336,7 +5344,7 @@ export declare class Command {
5336
5344
  type: "helpdoc";
5337
5345
  value: string;
5338
5346
  } & {} & {
5339
- commandType?: "object" | "independent" | "help" | undefined;
5347
+ commandType?: "object" | "help" | "independent" | undefined;
5340
5348
  object?: string | undefined;
5341
5349
  hoverTooltip?: boolean | undefined;
5342
5350
  operation?: "self" | "router" | "blank" | undefined;
@@ -5491,14 +5499,14 @@ export declare class Command {
5491
5499
  };
5492
5500
  tags: string[];
5493
5501
  availability_rules: ({
5494
- type: "url" | "context" | "element";
5502
+ type: "url" | "element" | "context";
5495
5503
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
5496
5504
  } & {
5497
5505
  field?: string | undefined;
5498
5506
  value?: string | undefined;
5499
5507
  reason?: string | undefined;
5500
5508
  })[] | (({
5501
- type: "url" | "context" | "element";
5509
+ type: "url" | "element" | "context";
5502
5510
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
5503
5511
  } & {
5504
5512
  field?: string | undefined;
@@ -5511,7 +5519,7 @@ export declare class Command {
5511
5519
  reason?: string | undefined;
5512
5520
  }))[];
5513
5521
  recommend_rules: (({
5514
- type: "url" | "context" | "element";
5522
+ type: "url" | "element" | "context";
5515
5523
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
5516
5524
  } & {
5517
5525
  field?: string | undefined;
@@ -5525,17 +5533,12 @@ export declare class Command {
5525
5533
  value?: null | undefined;
5526
5534
  reason?: null | undefined;
5527
5535
  }))[] | (({
5528
- type: "url" | "context" | "element";
5536
+ type: "url" | "element" | "context";
5529
5537
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
5530
5538
  } & {
5531
5539
  field?: string | undefined;
5532
5540
  value?: string | undefined;
5533
5541
  reason?: string | undefined;
5534
- }) | ({
5535
- type: "named_rule";
5536
- rule_id: number;
5537
- } & {
5538
- reason?: string | undefined;
5539
5542
  }) | ({
5540
5543
  type: "always";
5541
5544
  } & {
@@ -5543,6 +5546,11 @@ export declare class Command {
5543
5546
  field?: null | undefined;
5544
5547
  value?: null | undefined;
5545
5548
  reason?: null | undefined;
5549
+ }) | ({
5550
+ type: "named_rule";
5551
+ rule_id: number;
5552
+ } & {
5553
+ reason?: string | undefined;
5546
5554
  }))[];
5547
5555
  availability_expression: import("./helpers/rules").RuleExpression;
5548
5556
  recommend_expression: import("./helpers/rules").RuleExpression;
@@ -5960,7 +5968,7 @@ export declare class HelpSyncCommand {
5960
5968
  type: "admin";
5961
5969
  value: string;
5962
5970
  } & {} & {
5963
- commandType?: "object" | "independent" | "help" | undefined;
5971
+ commandType?: "object" | "help" | "independent" | undefined;
5964
5972
  object?: string | undefined;
5965
5973
  hoverTooltip?: boolean | undefined;
5966
5974
  operation?: "self" | "router" | "blank" | undefined;
@@ -5968,7 +5976,7 @@ export declare class HelpSyncCommand {
5968
5976
  type: "callback";
5969
5977
  value: string;
5970
5978
  } & {} & {
5971
- commandType?: "object" | "independent" | "help" | undefined;
5979
+ commandType?: "object" | "help" | "independent" | undefined;
5972
5980
  object?: string | undefined;
5973
5981
  hoverTooltip?: boolean | undefined;
5974
5982
  operation?: "self" | "router" | "blank" | undefined;
@@ -5976,7 +5984,7 @@ export declare class HelpSyncCommand {
5976
5984
  type: "link";
5977
5985
  value: string;
5978
5986
  } & {} & {
5979
- commandType?: "object" | "independent" | "help" | undefined;
5987
+ commandType?: "object" | "help" | "independent" | undefined;
5980
5988
  object?: string | undefined;
5981
5989
  hoverTooltip?: boolean | undefined;
5982
5990
  operation?: "self" | "router" | "blank" | undefined;
@@ -5984,7 +5992,7 @@ export declare class HelpSyncCommand {
5984
5992
  type: "click" | "clickByXpath" | "clickBySelector";
5985
5993
  value: string[];
5986
5994
  } & {} & {
5987
- commandType?: "object" | "independent" | "help" | undefined;
5995
+ commandType?: "object" | "help" | "independent" | undefined;
5988
5996
  object?: string | undefined;
5989
5997
  hoverTooltip?: boolean | undefined;
5990
5998
  operation?: "self" | "router" | "blank" | undefined;
@@ -5992,7 +6000,7 @@ export declare class HelpSyncCommand {
5992
6000
  type: "builtin";
5993
6001
  value: string;
5994
6002
  } & {} & {
5995
- commandType?: "object" | "independent" | "help" | undefined;
6003
+ commandType?: "object" | "help" | "independent" | undefined;
5996
6004
  object?: string | undefined;
5997
6005
  hoverTooltip?: boolean | undefined;
5998
6006
  operation?: "self" | "router" | "blank" | undefined;
@@ -6000,7 +6008,7 @@ export declare class HelpSyncCommand {
6000
6008
  type: "webhook";
6001
6009
  value: string;
6002
6010
  } & {} & {
6003
- commandType?: "object" | "independent" | "help" | undefined;
6011
+ commandType?: "object" | "help" | "independent" | undefined;
6004
6012
  object?: string | undefined;
6005
6013
  hoverTooltip?: boolean | undefined;
6006
6014
  operation?: "self" | "router" | "blank" | undefined;
@@ -6008,7 +6016,7 @@ export declare class HelpSyncCommand {
6008
6016
  type: "script";
6009
6017
  value: string;
6010
6018
  } & {} & {
6011
- commandType?: "object" | "independent" | "help" | undefined;
6019
+ commandType?: "object" | "help" | "independent" | undefined;
6012
6020
  object?: string | undefined;
6013
6021
  hoverTooltip?: boolean | undefined;
6014
6022
  operation?: "self" | "router" | "blank" | undefined;
@@ -6029,7 +6037,7 @@ export declare class HelpSyncCommand {
6029
6037
  onError?: string | undefined;
6030
6038
  };
6031
6039
  } & {} & {
6032
- commandType?: "object" | "independent" | "help" | undefined;
6040
+ commandType?: "object" | "help" | "independent" | undefined;
6033
6041
  object?: string | undefined;
6034
6042
  hoverTooltip?: boolean | undefined;
6035
6043
  operation?: "self" | "router" | "blank" | undefined;
@@ -6037,7 +6045,7 @@ export declare class HelpSyncCommand {
6037
6045
  type: "appcues";
6038
6046
  value: string;
6039
6047
  } & {} & {
6040
- commandType?: "object" | "independent" | "help" | undefined;
6048
+ commandType?: "object" | "help" | "independent" | undefined;
6041
6049
  object?: string | undefined;
6042
6050
  hoverTooltip?: boolean | undefined;
6043
6051
  operation?: "self" | "router" | "blank" | undefined;
@@ -6045,7 +6053,7 @@ export declare class HelpSyncCommand {
6045
6053
  type: "video";
6046
6054
  value: string;
6047
6055
  } & {} & {
6048
- commandType?: "object" | "independent" | "help" | undefined;
6056
+ commandType?: "object" | "help" | "independent" | undefined;
6049
6057
  object?: string | undefined;
6050
6058
  hoverTooltip?: boolean | undefined;
6051
6059
  operation?: "self" | "router" | "blank" | undefined;
@@ -6053,7 +6061,7 @@ export declare class HelpSyncCommand {
6053
6061
  type: "helpdoc";
6054
6062
  value: string;
6055
6063
  } & {} & {
6056
- commandType?: "object" | "independent" | "help" | undefined;
6064
+ commandType?: "object" | "help" | "independent" | undefined;
6057
6065
  object?: string | undefined;
6058
6066
  hoverTooltip?: boolean | undefined;
6059
6067
  operation?: "self" | "router" | "blank" | undefined;
@@ -6208,7 +6216,7 @@ export declare class HelpSyncCommand {
6208
6216
  };
6209
6217
  tags: string[];
6210
6218
  availability_rules: ({
6211
- type: "url" | "context" | "element";
6219
+ type: "url" | "element" | "context";
6212
6220
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
6213
6221
  } & {
6214
6222
  field?: string | undefined;
@@ -6216,7 +6224,7 @@ export declare class HelpSyncCommand {
6216
6224
  reason?: string | undefined;
6217
6225
  })[];
6218
6226
  recommend_rules: (({
6219
- type: "url" | "context" | "element";
6227
+ type: "url" | "element" | "context";
6220
6228
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
6221
6229
  } & {
6222
6230
  field?: string | undefined;
@@ -6285,7 +6293,7 @@ export declare class HelpSyncCommand {
6285
6293
  type: "admin";
6286
6294
  value: string;
6287
6295
  } & {} & {
6288
- commandType?: "object" | "independent" | "help" | undefined;
6296
+ commandType?: "object" | "help" | "independent" | undefined;
6289
6297
  object?: string | undefined;
6290
6298
  hoverTooltip?: boolean | undefined;
6291
6299
  operation?: "self" | "router" | "blank" | undefined;
@@ -6293,7 +6301,7 @@ export declare class HelpSyncCommand {
6293
6301
  type: "callback";
6294
6302
  value: string;
6295
6303
  } & {} & {
6296
- commandType?: "object" | "independent" | "help" | undefined;
6304
+ commandType?: "object" | "help" | "independent" | undefined;
6297
6305
  object?: string | undefined;
6298
6306
  hoverTooltip?: boolean | undefined;
6299
6307
  operation?: "self" | "router" | "blank" | undefined;
@@ -6301,7 +6309,7 @@ export declare class HelpSyncCommand {
6301
6309
  type: "link";
6302
6310
  value: string;
6303
6311
  } & {} & {
6304
- commandType?: "object" | "independent" | "help" | undefined;
6312
+ commandType?: "object" | "help" | "independent" | undefined;
6305
6313
  object?: string | undefined;
6306
6314
  hoverTooltip?: boolean | undefined;
6307
6315
  operation?: "self" | "router" | "blank" | undefined;
@@ -6309,7 +6317,7 @@ export declare class HelpSyncCommand {
6309
6317
  type: "click" | "clickByXpath" | "clickBySelector";
6310
6318
  value: string[];
6311
6319
  } & {} & {
6312
- commandType?: "object" | "independent" | "help" | undefined;
6320
+ commandType?: "object" | "help" | "independent" | undefined;
6313
6321
  object?: string | undefined;
6314
6322
  hoverTooltip?: boolean | undefined;
6315
6323
  operation?: "self" | "router" | "blank" | undefined;
@@ -6317,7 +6325,7 @@ export declare class HelpSyncCommand {
6317
6325
  type: "builtin";
6318
6326
  value: string;
6319
6327
  } & {} & {
6320
- commandType?: "object" | "independent" | "help" | undefined;
6328
+ commandType?: "object" | "help" | "independent" | undefined;
6321
6329
  object?: string | undefined;
6322
6330
  hoverTooltip?: boolean | undefined;
6323
6331
  operation?: "self" | "router" | "blank" | undefined;
@@ -6325,7 +6333,7 @@ export declare class HelpSyncCommand {
6325
6333
  type: "webhook";
6326
6334
  value: string;
6327
6335
  } & {} & {
6328
- commandType?: "object" | "independent" | "help" | undefined;
6336
+ commandType?: "object" | "help" | "independent" | undefined;
6329
6337
  object?: string | undefined;
6330
6338
  hoverTooltip?: boolean | undefined;
6331
6339
  operation?: "self" | "router" | "blank" | undefined;
@@ -6333,7 +6341,7 @@ export declare class HelpSyncCommand {
6333
6341
  type: "script";
6334
6342
  value: string;
6335
6343
  } & {} & {
6336
- commandType?: "object" | "independent" | "help" | undefined;
6344
+ commandType?: "object" | "help" | "independent" | undefined;
6337
6345
  object?: string | undefined;
6338
6346
  hoverTooltip?: boolean | undefined;
6339
6347
  operation?: "self" | "router" | "blank" | undefined;
@@ -6354,7 +6362,7 @@ export declare class HelpSyncCommand {
6354
6362
  onError?: string | undefined;
6355
6363
  };
6356
6364
  } & {} & {
6357
- commandType?: "object" | "independent" | "help" | undefined;
6365
+ commandType?: "object" | "help" | "independent" | undefined;
6358
6366
  object?: string | undefined;
6359
6367
  hoverTooltip?: boolean | undefined;
6360
6368
  operation?: "self" | "router" | "blank" | undefined;
@@ -6362,7 +6370,7 @@ export declare class HelpSyncCommand {
6362
6370
  type: "appcues";
6363
6371
  value: string;
6364
6372
  } & {} & {
6365
- commandType?: "object" | "independent" | "help" | undefined;
6373
+ commandType?: "object" | "help" | "independent" | undefined;
6366
6374
  object?: string | undefined;
6367
6375
  hoverTooltip?: boolean | undefined;
6368
6376
  operation?: "self" | "router" | "blank" | undefined;
@@ -6370,7 +6378,7 @@ export declare class HelpSyncCommand {
6370
6378
  type: "video";
6371
6379
  value: string;
6372
6380
  } & {} & {
6373
- commandType?: "object" | "independent" | "help" | undefined;
6381
+ commandType?: "object" | "help" | "independent" | undefined;
6374
6382
  object?: string | undefined;
6375
6383
  hoverTooltip?: boolean | undefined;
6376
6384
  operation?: "self" | "router" | "blank" | undefined;
@@ -6378,7 +6386,7 @@ export declare class HelpSyncCommand {
6378
6386
  type: "helpdoc";
6379
6387
  value: string;
6380
6388
  } & {} & {
6381
- commandType?: "object" | "independent" | "help" | undefined;
6389
+ commandType?: "object" | "help" | "independent" | undefined;
6382
6390
  object?: string | undefined;
6383
6391
  hoverTooltip?: boolean | undefined;
6384
6392
  operation?: "self" | "router" | "blank" | undefined;
@@ -6533,7 +6541,7 @@ export declare class HelpSyncCommand {
6533
6541
  };
6534
6542
  tags: string[];
6535
6543
  availability_rules: ({
6536
- type: "url" | "context" | "element";
6544
+ type: "url" | "element" | "context";
6537
6545
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
6538
6546
  } & {
6539
6547
  field?: string | undefined;
@@ -6541,7 +6549,7 @@ export declare class HelpSyncCommand {
6541
6549
  reason?: string | undefined;
6542
6550
  })[];
6543
6551
  recommend_rules: (({
6544
- type: "url" | "context" | "element";
6552
+ type: "url" | "element" | "context";
6545
6553
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
6546
6554
  } & {
6547
6555
  field?: string | undefined;
@@ -6609,7 +6617,7 @@ export declare class HelpSyncCommand {
6609
6617
  type: "admin";
6610
6618
  value: string;
6611
6619
  } & {} & {
6612
- commandType?: "object" | "independent" | "help" | undefined;
6620
+ commandType?: "object" | "help" | "independent" | undefined;
6613
6621
  object?: string | undefined;
6614
6622
  hoverTooltip?: boolean | undefined;
6615
6623
  operation?: "self" | "router" | "blank" | undefined;
@@ -6617,7 +6625,7 @@ export declare class HelpSyncCommand {
6617
6625
  type: "callback";
6618
6626
  value: string;
6619
6627
  } & {} & {
6620
- commandType?: "object" | "independent" | "help" | undefined;
6628
+ commandType?: "object" | "help" | "independent" | undefined;
6621
6629
  object?: string | undefined;
6622
6630
  hoverTooltip?: boolean | undefined;
6623
6631
  operation?: "self" | "router" | "blank" | undefined;
@@ -6625,7 +6633,7 @@ export declare class HelpSyncCommand {
6625
6633
  type: "link";
6626
6634
  value: string;
6627
6635
  } & {} & {
6628
- commandType?: "object" | "independent" | "help" | undefined;
6636
+ commandType?: "object" | "help" | "independent" | undefined;
6629
6637
  object?: string | undefined;
6630
6638
  hoverTooltip?: boolean | undefined;
6631
6639
  operation?: "self" | "router" | "blank" | undefined;
@@ -6633,7 +6641,7 @@ export declare class HelpSyncCommand {
6633
6641
  type: "click" | "clickByXpath" | "clickBySelector";
6634
6642
  value: string[];
6635
6643
  } & {} & {
6636
- commandType?: "object" | "independent" | "help" | undefined;
6644
+ commandType?: "object" | "help" | "independent" | undefined;
6637
6645
  object?: string | undefined;
6638
6646
  hoverTooltip?: boolean | undefined;
6639
6647
  operation?: "self" | "router" | "blank" | undefined;
@@ -6641,7 +6649,7 @@ export declare class HelpSyncCommand {
6641
6649
  type: "builtin";
6642
6650
  value: string;
6643
6651
  } & {} & {
6644
- commandType?: "object" | "independent" | "help" | undefined;
6652
+ commandType?: "object" | "help" | "independent" | undefined;
6645
6653
  object?: string | undefined;
6646
6654
  hoverTooltip?: boolean | undefined;
6647
6655
  operation?: "self" | "router" | "blank" | undefined;
@@ -6649,7 +6657,7 @@ export declare class HelpSyncCommand {
6649
6657
  type: "webhook";
6650
6658
  value: string;
6651
6659
  } & {} & {
6652
- commandType?: "object" | "independent" | "help" | undefined;
6660
+ commandType?: "object" | "help" | "independent" | undefined;
6653
6661
  object?: string | undefined;
6654
6662
  hoverTooltip?: boolean | undefined;
6655
6663
  operation?: "self" | "router" | "blank" | undefined;
@@ -6657,7 +6665,7 @@ export declare class HelpSyncCommand {
6657
6665
  type: "script";
6658
6666
  value: string;
6659
6667
  } & {} & {
6660
- commandType?: "object" | "independent" | "help" | undefined;
6668
+ commandType?: "object" | "help" | "independent" | undefined;
6661
6669
  object?: string | undefined;
6662
6670
  hoverTooltip?: boolean | undefined;
6663
6671
  operation?: "self" | "router" | "blank" | undefined;
@@ -6678,7 +6686,7 @@ export declare class HelpSyncCommand {
6678
6686
  onError?: string | undefined;
6679
6687
  };
6680
6688
  } & {} & {
6681
- commandType?: "object" | "independent" | "help" | undefined;
6689
+ commandType?: "object" | "help" | "independent" | undefined;
6682
6690
  object?: string | undefined;
6683
6691
  hoverTooltip?: boolean | undefined;
6684
6692
  operation?: "self" | "router" | "blank" | undefined;
@@ -6686,7 +6694,7 @@ export declare class HelpSyncCommand {
6686
6694
  type: "appcues";
6687
6695
  value: string;
6688
6696
  } & {} & {
6689
- commandType?: "object" | "independent" | "help" | undefined;
6697
+ commandType?: "object" | "help" | "independent" | undefined;
6690
6698
  object?: string | undefined;
6691
6699
  hoverTooltip?: boolean | undefined;
6692
6700
  operation?: "self" | "router" | "blank" | undefined;
@@ -6694,7 +6702,7 @@ export declare class HelpSyncCommand {
6694
6702
  type: "video";
6695
6703
  value: string;
6696
6704
  } & {} & {
6697
- commandType?: "object" | "independent" | "help" | undefined;
6705
+ commandType?: "object" | "help" | "independent" | undefined;
6698
6706
  object?: string | undefined;
6699
6707
  hoverTooltip?: boolean | undefined;
6700
6708
  operation?: "self" | "router" | "blank" | undefined;
@@ -6702,7 +6710,7 @@ export declare class HelpSyncCommand {
6702
6710
  type: "helpdoc";
6703
6711
  value: string;
6704
6712
  } & {} & {
6705
- commandType?: "object" | "independent" | "help" | undefined;
6713
+ commandType?: "object" | "help" | "independent" | undefined;
6706
6714
  object?: string | undefined;
6707
6715
  hoverTooltip?: boolean | undefined;
6708
6716
  operation?: "self" | "router" | "blank" | undefined;
@@ -6857,7 +6865,7 @@ export declare class HelpSyncCommand {
6857
6865
  };
6858
6866
  tags: string[];
6859
6867
  availability_rules: ({
6860
- type: "url" | "context" | "element";
6868
+ type: "url" | "element" | "context";
6861
6869
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
6862
6870
  } & {
6863
6871
  field?: string | undefined;
@@ -6865,7 +6873,7 @@ export declare class HelpSyncCommand {
6865
6873
  reason?: string | undefined;
6866
6874
  })[];
6867
6875
  recommend_rules: (({
6868
- type: "url" | "context" | "element";
6876
+ type: "url" | "element" | "context";
6869
6877
  operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
6870
6878
  } & {
6871
6879
  field?: string | undefined;