commandbar 1.6.15 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/commandbar-js/src/index.d.ts +2 -0
- package/build/commandbar-js/src/index.js +2 -1
- package/build/commandbar-js/src/index.js.LICENSE.txt +14 -0
- package/build/internal/src/client/AddContextOptions.d.ts +4 -0
- package/build/internal/src/client/CommandBarClientSDK.d.ts +32 -12
- package/build/internal/src/client/CommandBarProxySDK.d.ts +2 -1
- package/build/internal/src/client/CommandBarSDK.d.ts +3 -1
- package/build/internal/src/client/EventHandler.d.ts +19 -2
- package/build/internal/src/client/symbols.d.ts +1 -0
- package/build/internal/src/middleware/CommandFromClientV.d.ts +11 -2
- package/build/internal/src/middleware/OrganizationV.d.ts +24 -0
- package/build/internal/src/middleware/ResourceSettingsV.d.ts +24 -0
- package/build/internal/src/middleware/command.d.ts +293 -259
- package/build/internal/src/middleware/commandCategory.d.ts +8 -0
- package/build/internal/src/middleware/detailPreview.d.ts +3 -6
- package/build/internal/src/middleware/nudge.d.ts +24 -8
- package/build/internal/src/middleware/organization.d.ts +67 -17
- package/build/internal/src/middleware/tab.d.ts +27 -0
- package/build/internal/src/middleware/types.d.ts +24 -17
- package/build/internal/src/middleware/user.d.ts +1 -1
- package/package.json +7 -3
- package/src/commandbar-launcher.d.ts +7 -0
- package/src/index.ts +2 -0
- package/src/snippet.ts +5 -1
@@ -434,6 +434,7 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
434
434
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
435
435
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
436
436
|
icon: t.UnionC<[t.StringC, t.NullC]>;
|
437
|
+
image: t.UnionC<[t.StringC, t.NullC]>;
|
437
438
|
celebrate: t.UnionC<[t.BooleanC, t.PartialC<{
|
438
439
|
angle: t.NumberC;
|
439
440
|
spread: t.NumberC;
|
@@ -454,17 +455,20 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
454
455
|
hotkey_mac: t.StringC;
|
455
456
|
hotkey_win: t.StringC;
|
456
457
|
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
457
|
-
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.
|
458
|
+
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.LiteralC<"component">]>;
|
458
459
|
value: t.StringC;
|
459
460
|
}>, t.PartialC<{
|
460
461
|
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
461
462
|
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
462
|
-
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.
|
463
|
+
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.LiteralC<"component">]>;
|
463
464
|
value: t.StringC;
|
464
465
|
}>, t.PartialC<{
|
465
466
|
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
466
467
|
}>]>]>>]>;
|
467
468
|
next_steps: t.ArrayC<t.UnionC<[t.StringC, t.NumberC]>>;
|
469
|
+
}>, t.PartialC<{
|
470
|
+
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
471
|
+
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
468
472
|
}>]>;
|
469
473
|
export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
470
474
|
id: t.NumberC;
|
@@ -850,6 +854,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
850
854
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
851
855
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
852
856
|
icon: t.UnionC<[t.StringC, t.NullC]>;
|
857
|
+
image: t.UnionC<[t.StringC, t.NullC]>;
|
853
858
|
celebrate: t.UnionC<[t.BooleanC, t.PartialC<{
|
854
859
|
angle: t.NumberC;
|
855
860
|
spread: t.NumberC;
|
@@ -870,12 +875,12 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
870
875
|
hotkey_mac: t.StringC;
|
871
876
|
hotkey_win: t.StringC;
|
872
877
|
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
873
|
-
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.
|
878
|
+
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.LiteralC<"component">]>;
|
874
879
|
value: t.StringC;
|
875
880
|
}>, t.PartialC<{
|
876
881
|
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
877
882
|
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
878
|
-
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.
|
883
|
+
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.LiteralC<"component">]>;
|
879
884
|
value: t.StringC;
|
880
885
|
}>, t.PartialC<{
|
881
886
|
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
@@ -1281,6 +1286,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1281
1286
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
1282
1287
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
1283
1288
|
icon: t.UnionC<[t.StringC, t.NullC]>;
|
1289
|
+
image: t.UnionC<[t.StringC, t.NullC]>;
|
1284
1290
|
celebrate: t.UnionC<[t.BooleanC, t.PartialC<{
|
1285
1291
|
angle: t.NumberC;
|
1286
1292
|
spread: t.NumberC;
|
@@ -1301,12 +1307,12 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1301
1307
|
hotkey_mac: t.StringC;
|
1302
1308
|
hotkey_win: t.StringC;
|
1303
1309
|
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
1304
|
-
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.
|
1310
|
+
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.LiteralC<"component">]>;
|
1305
1311
|
value: t.StringC;
|
1306
1312
|
}>, t.PartialC<{
|
1307
1313
|
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
1308
1314
|
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
1309
|
-
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.
|
1315
|
+
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.LiteralC<"component">]>;
|
1310
1316
|
value: t.StringC;
|
1311
1317
|
}>, t.PartialC<{
|
1312
1318
|
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
@@ -1326,7 +1332,7 @@ export declare class Command {
|
|
1326
1332
|
type: "admin";
|
1327
1333
|
value: string;
|
1328
1334
|
} & {} & {
|
1329
|
-
commandType?: "object" | "
|
1335
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1330
1336
|
object?: string | undefined;
|
1331
1337
|
hoverTooltip?: boolean | undefined;
|
1332
1338
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1334,7 +1340,7 @@ export declare class Command {
|
|
1334
1340
|
type: "callback";
|
1335
1341
|
value: string;
|
1336
1342
|
} & {} & {
|
1337
|
-
commandType?: "object" | "
|
1343
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1338
1344
|
object?: string | undefined;
|
1339
1345
|
hoverTooltip?: boolean | undefined;
|
1340
1346
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1342,7 +1348,7 @@ export declare class Command {
|
|
1342
1348
|
type: "link";
|
1343
1349
|
value: string;
|
1344
1350
|
} & {} & {
|
1345
|
-
commandType?: "object" | "
|
1351
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1346
1352
|
object?: string | undefined;
|
1347
1353
|
hoverTooltip?: boolean | undefined;
|
1348
1354
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1350,7 +1356,7 @@ export declare class Command {
|
|
1350
1356
|
type: "click" | "clickByXpath" | "clickBySelector";
|
1351
1357
|
value: string[];
|
1352
1358
|
} & {} & {
|
1353
|
-
commandType?: "object" | "
|
1359
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1354
1360
|
object?: string | undefined;
|
1355
1361
|
hoverTooltip?: boolean | undefined;
|
1356
1362
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1358,7 +1364,7 @@ export declare class Command {
|
|
1358
1364
|
type: "builtin";
|
1359
1365
|
value: string;
|
1360
1366
|
} & {} & {
|
1361
|
-
commandType?: "object" | "
|
1367
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1362
1368
|
object?: string | undefined;
|
1363
1369
|
hoverTooltip?: boolean | undefined;
|
1364
1370
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1366,7 +1372,7 @@ export declare class Command {
|
|
1366
1372
|
type: "webhook";
|
1367
1373
|
value: string;
|
1368
1374
|
} & {} & {
|
1369
|
-
commandType?: "object" | "
|
1375
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1370
1376
|
object?: string | undefined;
|
1371
1377
|
hoverTooltip?: boolean | undefined;
|
1372
1378
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1374,7 +1380,7 @@ export declare class Command {
|
|
1374
1380
|
type: "script";
|
1375
1381
|
value: string;
|
1376
1382
|
} & {} & {
|
1377
|
-
commandType?: "object" | "
|
1383
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1378
1384
|
object?: string | undefined;
|
1379
1385
|
hoverTooltip?: boolean | undefined;
|
1380
1386
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1395,7 +1401,7 @@ export declare class Command {
|
|
1395
1401
|
onError?: string | undefined;
|
1396
1402
|
};
|
1397
1403
|
} & {} & {
|
1398
|
-
commandType?: "object" | "
|
1404
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1399
1405
|
object?: string | undefined;
|
1400
1406
|
hoverTooltip?: boolean | undefined;
|
1401
1407
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1403,7 +1409,7 @@ export declare class Command {
|
|
1403
1409
|
type: "appcues";
|
1404
1410
|
value: string;
|
1405
1411
|
} & {} & {
|
1406
|
-
commandType?: "object" | "
|
1412
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1407
1413
|
object?: string | undefined;
|
1408
1414
|
hoverTooltip?: boolean | undefined;
|
1409
1415
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1411,7 +1417,7 @@ export declare class Command {
|
|
1411
1417
|
type: "video";
|
1412
1418
|
value: string;
|
1413
1419
|
} & {} & {
|
1414
|
-
commandType?: "object" | "
|
1420
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1415
1421
|
object?: string | undefined;
|
1416
1422
|
hoverTooltip?: boolean | undefined;
|
1417
1423
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1419,7 +1425,7 @@ export declare class Command {
|
|
1419
1425
|
type: "helpdoc";
|
1420
1426
|
value: string;
|
1421
1427
|
} & {} & {
|
1422
|
-
commandType?: "object" | "
|
1428
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1423
1429
|
object?: string | undefined;
|
1424
1430
|
hoverTooltip?: boolean | undefined;
|
1425
1431
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1574,14 +1580,14 @@ export declare class Command {
|
|
1574
1580
|
};
|
1575
1581
|
tags: string[];
|
1576
1582
|
availability_rules: ({
|
1577
|
-
type: "url" | "
|
1583
|
+
type: "url" | "element" | "context";
|
1578
1584
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1579
1585
|
} & {
|
1580
1586
|
field?: string | undefined;
|
1581
1587
|
value?: string | undefined;
|
1582
1588
|
reason?: string | undefined;
|
1583
1589
|
})[] | (({
|
1584
|
-
type: "url" | "
|
1590
|
+
type: "url" | "element" | "context";
|
1585
1591
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1586
1592
|
} & {
|
1587
1593
|
field?: string | undefined;
|
@@ -1594,7 +1600,7 @@ export declare class Command {
|
|
1594
1600
|
reason?: string | undefined;
|
1595
1601
|
}))[];
|
1596
1602
|
recommend_rules: (({
|
1597
|
-
type: "url" | "
|
1603
|
+
type: "url" | "element" | "context";
|
1598
1604
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1599
1605
|
} & {
|
1600
1606
|
field?: string | undefined;
|
@@ -1608,7 +1614,7 @@ export declare class Command {
|
|
1608
1614
|
value?: null | undefined;
|
1609
1615
|
reason?: null | undefined;
|
1610
1616
|
}))[] | (({
|
1611
|
-
type: "url" | "
|
1617
|
+
type: "url" | "element" | "context";
|
1612
1618
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1613
1619
|
} & {
|
1614
1620
|
field?: string | undefined;
|
@@ -1638,6 +1644,7 @@ export declare class Command {
|
|
1638
1644
|
category: number | null;
|
1639
1645
|
sort_key: number | null;
|
1640
1646
|
icon: string | null;
|
1647
|
+
image: string | null;
|
1641
1648
|
celebrate: boolean | {
|
1642
1649
|
angle?: number | undefined;
|
1643
1650
|
spread?: number | undefined;
|
@@ -1658,12 +1665,12 @@ export declare class Command {
|
|
1658
1665
|
hotkey_mac: string;
|
1659
1666
|
hotkey_win: string;
|
1660
1667
|
detail: string | ({
|
1661
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
1668
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
1662
1669
|
value: string;
|
1663
1670
|
} & {
|
1664
1671
|
position?: "inline" | "popover" | undefined;
|
1665
1672
|
}) | (string | ({
|
1666
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
1673
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
1667
1674
|
value: string;
|
1668
1675
|
} & {
|
1669
1676
|
position?: "inline" | "popover" | undefined;
|
@@ -1680,7 +1687,7 @@ export declare class Command {
|
|
1680
1687
|
type: "admin";
|
1681
1688
|
value: string;
|
1682
1689
|
} & {} & {
|
1683
|
-
commandType?: "object" | "
|
1690
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1684
1691
|
object?: string | undefined;
|
1685
1692
|
hoverTooltip?: boolean | undefined;
|
1686
1693
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1688,7 +1695,7 @@ export declare class Command {
|
|
1688
1695
|
type: "callback";
|
1689
1696
|
value: string;
|
1690
1697
|
} & {} & {
|
1691
|
-
commandType?: "object" | "
|
1698
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1692
1699
|
object?: string | undefined;
|
1693
1700
|
hoverTooltip?: boolean | undefined;
|
1694
1701
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1696,7 +1703,7 @@ export declare class Command {
|
|
1696
1703
|
type: "link";
|
1697
1704
|
value: string;
|
1698
1705
|
} & {} & {
|
1699
|
-
commandType?: "object" | "
|
1706
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1700
1707
|
object?: string | undefined;
|
1701
1708
|
hoverTooltip?: boolean | undefined;
|
1702
1709
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1704,7 +1711,7 @@ export declare class Command {
|
|
1704
1711
|
type: "click" | "clickByXpath" | "clickBySelector";
|
1705
1712
|
value: string[];
|
1706
1713
|
} & {} & {
|
1707
|
-
commandType?: "object" | "
|
1714
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1708
1715
|
object?: string | undefined;
|
1709
1716
|
hoverTooltip?: boolean | undefined;
|
1710
1717
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1712,7 +1719,7 @@ export declare class Command {
|
|
1712
1719
|
type: "builtin";
|
1713
1720
|
value: string;
|
1714
1721
|
} & {} & {
|
1715
|
-
commandType?: "object" | "
|
1722
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1716
1723
|
object?: string | undefined;
|
1717
1724
|
hoverTooltip?: boolean | undefined;
|
1718
1725
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1720,7 +1727,7 @@ export declare class Command {
|
|
1720
1727
|
type: "webhook";
|
1721
1728
|
value: string;
|
1722
1729
|
} & {} & {
|
1723
|
-
commandType?: "object" | "
|
1730
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1724
1731
|
object?: string | undefined;
|
1725
1732
|
hoverTooltip?: boolean | undefined;
|
1726
1733
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1728,7 +1735,7 @@ export declare class Command {
|
|
1728
1735
|
type: "script";
|
1729
1736
|
value: string;
|
1730
1737
|
} & {} & {
|
1731
|
-
commandType?: "object" | "
|
1738
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1732
1739
|
object?: string | undefined;
|
1733
1740
|
hoverTooltip?: boolean | undefined;
|
1734
1741
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1749,7 +1756,7 @@ export declare class Command {
|
|
1749
1756
|
onError?: string | undefined;
|
1750
1757
|
};
|
1751
1758
|
} & {} & {
|
1752
|
-
commandType?: "object" | "
|
1759
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1753
1760
|
object?: string | undefined;
|
1754
1761
|
hoverTooltip?: boolean | undefined;
|
1755
1762
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1757,7 +1764,7 @@ export declare class Command {
|
|
1757
1764
|
type: "appcues";
|
1758
1765
|
value: string;
|
1759
1766
|
} & {} & {
|
1760
|
-
commandType?: "object" | "
|
1767
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1761
1768
|
object?: string | undefined;
|
1762
1769
|
hoverTooltip?: boolean | undefined;
|
1763
1770
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1765,7 +1772,7 @@ export declare class Command {
|
|
1765
1772
|
type: "video";
|
1766
1773
|
value: string;
|
1767
1774
|
} & {} & {
|
1768
|
-
commandType?: "object" | "
|
1775
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1769
1776
|
object?: string | undefined;
|
1770
1777
|
hoverTooltip?: boolean | undefined;
|
1771
1778
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1773,7 +1780,7 @@ export declare class Command {
|
|
1773
1780
|
type: "helpdoc";
|
1774
1781
|
value: string;
|
1775
1782
|
} & {} & {
|
1776
|
-
commandType?: "object" | "
|
1783
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
1777
1784
|
object?: string | undefined;
|
1778
1785
|
hoverTooltip?: boolean | undefined;
|
1779
1786
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -1928,14 +1935,14 @@ export declare class Command {
|
|
1928
1935
|
};
|
1929
1936
|
tags: string[];
|
1930
1937
|
availability_rules: ({
|
1931
|
-
type: "url" | "
|
1938
|
+
type: "url" | "element" | "context";
|
1932
1939
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1933
1940
|
} & {
|
1934
1941
|
field?: string | undefined;
|
1935
1942
|
value?: string | undefined;
|
1936
1943
|
reason?: string | undefined;
|
1937
1944
|
})[] | (({
|
1938
|
-
type: "url" | "
|
1945
|
+
type: "url" | "element" | "context";
|
1939
1946
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1940
1947
|
} & {
|
1941
1948
|
field?: string | undefined;
|
@@ -1948,7 +1955,7 @@ export declare class Command {
|
|
1948
1955
|
reason?: string | undefined;
|
1949
1956
|
}))[];
|
1950
1957
|
recommend_rules: (({
|
1951
|
-
type: "url" | "
|
1958
|
+
type: "url" | "element" | "context";
|
1952
1959
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1953
1960
|
} & {
|
1954
1961
|
field?: string | undefined;
|
@@ -1962,7 +1969,7 @@ export declare class Command {
|
|
1962
1969
|
value?: null | undefined;
|
1963
1970
|
reason?: null | undefined;
|
1964
1971
|
}))[] | (({
|
1965
|
-
type: "url" | "
|
1972
|
+
type: "url" | "element" | "context";
|
1966
1973
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1967
1974
|
} & {
|
1968
1975
|
field?: string | undefined;
|
@@ -1992,6 +1999,7 @@ export declare class Command {
|
|
1992
1999
|
category: number | null;
|
1993
2000
|
sort_key: number | null;
|
1994
2001
|
icon: string | null;
|
2002
|
+
image: string | null;
|
1995
2003
|
celebrate: boolean | {
|
1996
2004
|
angle?: number | undefined;
|
1997
2005
|
spread?: number | undefined;
|
@@ -2012,12 +2020,12 @@ export declare class Command {
|
|
2012
2020
|
hotkey_mac: string;
|
2013
2021
|
hotkey_win: string;
|
2014
2022
|
detail: string | ({
|
2015
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
2023
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
2016
2024
|
value: string;
|
2017
2025
|
} & {
|
2018
2026
|
position?: "inline" | "popover" | undefined;
|
2019
2027
|
}) | (string | ({
|
2020
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
2028
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
2021
2029
|
value: string;
|
2022
2030
|
} & {
|
2023
2031
|
position?: "inline" | "popover" | undefined;
|
@@ -2035,7 +2043,7 @@ export declare class Command {
|
|
2035
2043
|
type: "admin";
|
2036
2044
|
value: string;
|
2037
2045
|
} & {} & {
|
2038
|
-
commandType?: "object" | "
|
2046
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2039
2047
|
object?: string | undefined;
|
2040
2048
|
hoverTooltip?: boolean | undefined;
|
2041
2049
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2043,7 +2051,7 @@ export declare class Command {
|
|
2043
2051
|
type: "callback";
|
2044
2052
|
value: string;
|
2045
2053
|
} & {} & {
|
2046
|
-
commandType?: "object" | "
|
2054
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2047
2055
|
object?: string | undefined;
|
2048
2056
|
hoverTooltip?: boolean | undefined;
|
2049
2057
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2051,7 +2059,7 @@ export declare class Command {
|
|
2051
2059
|
type: "link";
|
2052
2060
|
value: string;
|
2053
2061
|
} & {} & {
|
2054
|
-
commandType?: "object" | "
|
2062
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2055
2063
|
object?: string | undefined;
|
2056
2064
|
hoverTooltip?: boolean | undefined;
|
2057
2065
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2059,7 +2067,7 @@ export declare class Command {
|
|
2059
2067
|
type: "click" | "clickByXpath" | "clickBySelector";
|
2060
2068
|
value: string[];
|
2061
2069
|
} & {} & {
|
2062
|
-
commandType?: "object" | "
|
2070
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2063
2071
|
object?: string | undefined;
|
2064
2072
|
hoverTooltip?: boolean | undefined;
|
2065
2073
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2067,7 +2075,7 @@ export declare class Command {
|
|
2067
2075
|
type: "builtin";
|
2068
2076
|
value: string;
|
2069
2077
|
} & {} & {
|
2070
|
-
commandType?: "object" | "
|
2078
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2071
2079
|
object?: string | undefined;
|
2072
2080
|
hoverTooltip?: boolean | undefined;
|
2073
2081
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2075,7 +2083,7 @@ export declare class Command {
|
|
2075
2083
|
type: "webhook";
|
2076
2084
|
value: string;
|
2077
2085
|
} & {} & {
|
2078
|
-
commandType?: "object" | "
|
2086
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2079
2087
|
object?: string | undefined;
|
2080
2088
|
hoverTooltip?: boolean | undefined;
|
2081
2089
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2083,7 +2091,7 @@ export declare class Command {
|
|
2083
2091
|
type: "script";
|
2084
2092
|
value: string;
|
2085
2093
|
} & {} & {
|
2086
|
-
commandType?: "object" | "
|
2094
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2087
2095
|
object?: string | undefined;
|
2088
2096
|
hoverTooltip?: boolean | undefined;
|
2089
2097
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2104,7 +2112,7 @@ export declare class Command {
|
|
2104
2112
|
onError?: string | undefined;
|
2105
2113
|
};
|
2106
2114
|
} & {} & {
|
2107
|
-
commandType?: "object" | "
|
2115
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2108
2116
|
object?: string | undefined;
|
2109
2117
|
hoverTooltip?: boolean | undefined;
|
2110
2118
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2112,7 +2120,7 @@ export declare class Command {
|
|
2112
2120
|
type: "appcues";
|
2113
2121
|
value: string;
|
2114
2122
|
} & {} & {
|
2115
|
-
commandType?: "object" | "
|
2123
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2116
2124
|
object?: string | undefined;
|
2117
2125
|
hoverTooltip?: boolean | undefined;
|
2118
2126
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2120,7 +2128,7 @@ export declare class Command {
|
|
2120
2128
|
type: "video";
|
2121
2129
|
value: string;
|
2122
2130
|
} & {} & {
|
2123
|
-
commandType?: "object" | "
|
2131
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2124
2132
|
object?: string | undefined;
|
2125
2133
|
hoverTooltip?: boolean | undefined;
|
2126
2134
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2128,7 +2136,7 @@ export declare class Command {
|
|
2128
2136
|
type: "helpdoc";
|
2129
2137
|
value: string;
|
2130
2138
|
} & {} & {
|
2131
|
-
commandType?: "object" | "
|
2139
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2132
2140
|
object?: string | undefined;
|
2133
2141
|
hoverTooltip?: boolean | undefined;
|
2134
2142
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2283,14 +2291,14 @@ export declare class Command {
|
|
2283
2291
|
};
|
2284
2292
|
tags: string[];
|
2285
2293
|
availability_rules: ({
|
2286
|
-
type: "url" | "
|
2294
|
+
type: "url" | "element" | "context";
|
2287
2295
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2288
2296
|
} & {
|
2289
2297
|
field?: string | undefined;
|
2290
2298
|
value?: string | undefined;
|
2291
2299
|
reason?: string | undefined;
|
2292
2300
|
})[] | (({
|
2293
|
-
type: "url" | "
|
2301
|
+
type: "url" | "element" | "context";
|
2294
2302
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2295
2303
|
} & {
|
2296
2304
|
field?: string | undefined;
|
@@ -2303,7 +2311,7 @@ export declare class Command {
|
|
2303
2311
|
reason?: string | undefined;
|
2304
2312
|
}))[];
|
2305
2313
|
recommend_rules: (({
|
2306
|
-
type: "url" | "
|
2314
|
+
type: "url" | "element" | "context";
|
2307
2315
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2308
2316
|
} & {
|
2309
2317
|
field?: string | undefined;
|
@@ -2317,7 +2325,7 @@ export declare class Command {
|
|
2317
2325
|
value?: null | undefined;
|
2318
2326
|
reason?: null | undefined;
|
2319
2327
|
}))[] | (({
|
2320
|
-
type: "url" | "
|
2328
|
+
type: "url" | "element" | "context";
|
2321
2329
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2322
2330
|
} & {
|
2323
2331
|
field?: string | undefined;
|
@@ -2347,6 +2355,7 @@ export declare class Command {
|
|
2347
2355
|
category: number | null;
|
2348
2356
|
sort_key: number | null;
|
2349
2357
|
icon: string | null;
|
2358
|
+
image: string | null;
|
2350
2359
|
celebrate: boolean | {
|
2351
2360
|
angle?: number | undefined;
|
2352
2361
|
spread?: number | undefined;
|
@@ -2367,12 +2376,12 @@ export declare class Command {
|
|
2367
2376
|
hotkey_mac: string;
|
2368
2377
|
hotkey_win: string;
|
2369
2378
|
detail: string | ({
|
2370
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
2379
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
2371
2380
|
value: string;
|
2372
2381
|
} & {
|
2373
2382
|
position?: "inline" | "popover" | undefined;
|
2374
2383
|
}) | (string | ({
|
2375
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
2384
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
2376
2385
|
value: string;
|
2377
2386
|
} & {
|
2378
2387
|
position?: "inline" | "popover" | undefined;
|
@@ -2389,7 +2398,7 @@ export declare class Command {
|
|
2389
2398
|
type: "admin";
|
2390
2399
|
value: string;
|
2391
2400
|
} & {} & {
|
2392
|
-
commandType?: "object" | "
|
2401
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2393
2402
|
object?: string | undefined;
|
2394
2403
|
hoverTooltip?: boolean | undefined;
|
2395
2404
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2397,7 +2406,7 @@ export declare class Command {
|
|
2397
2406
|
type: "callback";
|
2398
2407
|
value: string;
|
2399
2408
|
} & {} & {
|
2400
|
-
commandType?: "object" | "
|
2409
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2401
2410
|
object?: string | undefined;
|
2402
2411
|
hoverTooltip?: boolean | undefined;
|
2403
2412
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2405,7 +2414,7 @@ export declare class Command {
|
|
2405
2414
|
type: "link";
|
2406
2415
|
value: string;
|
2407
2416
|
} & {} & {
|
2408
|
-
commandType?: "object" | "
|
2417
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2409
2418
|
object?: string | undefined;
|
2410
2419
|
hoverTooltip?: boolean | undefined;
|
2411
2420
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2413,7 +2422,7 @@ export declare class Command {
|
|
2413
2422
|
type: "click" | "clickByXpath" | "clickBySelector";
|
2414
2423
|
value: string[];
|
2415
2424
|
} & {} & {
|
2416
|
-
commandType?: "object" | "
|
2425
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2417
2426
|
object?: string | undefined;
|
2418
2427
|
hoverTooltip?: boolean | undefined;
|
2419
2428
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2421,7 +2430,7 @@ export declare class Command {
|
|
2421
2430
|
type: "builtin";
|
2422
2431
|
value: string;
|
2423
2432
|
} & {} & {
|
2424
|
-
commandType?: "object" | "
|
2433
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2425
2434
|
object?: string | undefined;
|
2426
2435
|
hoverTooltip?: boolean | undefined;
|
2427
2436
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2429,7 +2438,7 @@ export declare class Command {
|
|
2429
2438
|
type: "webhook";
|
2430
2439
|
value: string;
|
2431
2440
|
} & {} & {
|
2432
|
-
commandType?: "object" | "
|
2441
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2433
2442
|
object?: string | undefined;
|
2434
2443
|
hoverTooltip?: boolean | undefined;
|
2435
2444
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2437,7 +2446,7 @@ export declare class Command {
|
|
2437
2446
|
type: "script";
|
2438
2447
|
value: string;
|
2439
2448
|
} & {} & {
|
2440
|
-
commandType?: "object" | "
|
2449
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2441
2450
|
object?: string | undefined;
|
2442
2451
|
hoverTooltip?: boolean | undefined;
|
2443
2452
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2458,7 +2467,7 @@ export declare class Command {
|
|
2458
2467
|
onError?: string | undefined;
|
2459
2468
|
};
|
2460
2469
|
} & {} & {
|
2461
|
-
commandType?: "object" | "
|
2470
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2462
2471
|
object?: string | undefined;
|
2463
2472
|
hoverTooltip?: boolean | undefined;
|
2464
2473
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2466,7 +2475,7 @@ export declare class Command {
|
|
2466
2475
|
type: "appcues";
|
2467
2476
|
value: string;
|
2468
2477
|
} & {} & {
|
2469
|
-
commandType?: "object" | "
|
2478
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2470
2479
|
object?: string | undefined;
|
2471
2480
|
hoverTooltip?: boolean | undefined;
|
2472
2481
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2474,7 +2483,7 @@ export declare class Command {
|
|
2474
2483
|
type: "video";
|
2475
2484
|
value: string;
|
2476
2485
|
} & {} & {
|
2477
|
-
commandType?: "object" | "
|
2486
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2478
2487
|
object?: string | undefined;
|
2479
2488
|
hoverTooltip?: boolean | undefined;
|
2480
2489
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2482,7 +2491,7 @@ export declare class Command {
|
|
2482
2491
|
type: "helpdoc";
|
2483
2492
|
value: string;
|
2484
2493
|
} & {} & {
|
2485
|
-
commandType?: "object" | "
|
2494
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2486
2495
|
object?: string | undefined;
|
2487
2496
|
hoverTooltip?: boolean | undefined;
|
2488
2497
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2637,14 +2646,14 @@ export declare class Command {
|
|
2637
2646
|
};
|
2638
2647
|
tags: string[];
|
2639
2648
|
availability_rules: ({
|
2640
|
-
type: "url" | "
|
2649
|
+
type: "url" | "element" | "context";
|
2641
2650
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2642
2651
|
} & {
|
2643
2652
|
field?: string | undefined;
|
2644
2653
|
value?: string | undefined;
|
2645
2654
|
reason?: string | undefined;
|
2646
2655
|
})[] | (({
|
2647
|
-
type: "url" | "
|
2656
|
+
type: "url" | "element" | "context";
|
2648
2657
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2649
2658
|
} & {
|
2650
2659
|
field?: string | undefined;
|
@@ -2657,7 +2666,7 @@ export declare class Command {
|
|
2657
2666
|
reason?: string | undefined;
|
2658
2667
|
}))[];
|
2659
2668
|
recommend_rules: (({
|
2660
|
-
type: "url" | "
|
2669
|
+
type: "url" | "element" | "context";
|
2661
2670
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2662
2671
|
} & {
|
2663
2672
|
field?: string | undefined;
|
@@ -2671,7 +2680,7 @@ export declare class Command {
|
|
2671
2680
|
value?: null | undefined;
|
2672
2681
|
reason?: null | undefined;
|
2673
2682
|
}))[] | (({
|
2674
|
-
type: "url" | "
|
2683
|
+
type: "url" | "element" | "context";
|
2675
2684
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2676
2685
|
} & {
|
2677
2686
|
field?: string | undefined;
|
@@ -2701,6 +2710,7 @@ export declare class Command {
|
|
2701
2710
|
category: number | null;
|
2702
2711
|
sort_key: number | null;
|
2703
2712
|
icon: string | null;
|
2713
|
+
image: string | null;
|
2704
2714
|
celebrate: boolean | {
|
2705
2715
|
angle?: number | undefined;
|
2706
2716
|
spread?: number | undefined;
|
@@ -2721,12 +2731,12 @@ export declare class Command {
|
|
2721
2731
|
hotkey_mac: string;
|
2722
2732
|
hotkey_win: string;
|
2723
2733
|
detail: string | ({
|
2724
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
2734
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
2725
2735
|
value: string;
|
2726
2736
|
} & {
|
2727
2737
|
position?: "inline" | "popover" | undefined;
|
2728
2738
|
}) | (string | ({
|
2729
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
2739
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
2730
2740
|
value: string;
|
2731
2741
|
} & {
|
2732
2742
|
position?: "inline" | "popover" | undefined;
|
@@ -2746,7 +2756,7 @@ export declare class Command {
|
|
2746
2756
|
type: "admin";
|
2747
2757
|
value: string;
|
2748
2758
|
} & {} & {
|
2749
|
-
commandType?: "object" | "
|
2759
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2750
2760
|
object?: string | undefined;
|
2751
2761
|
hoverTooltip?: boolean | undefined;
|
2752
2762
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2754,7 +2764,7 @@ export declare class Command {
|
|
2754
2764
|
type: "callback";
|
2755
2765
|
value: string;
|
2756
2766
|
} & {} & {
|
2757
|
-
commandType?: "object" | "
|
2767
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2758
2768
|
object?: string | undefined;
|
2759
2769
|
hoverTooltip?: boolean | undefined;
|
2760
2770
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2762,7 +2772,7 @@ export declare class Command {
|
|
2762
2772
|
type: "link";
|
2763
2773
|
value: string;
|
2764
2774
|
} & {} & {
|
2765
|
-
commandType?: "object" | "
|
2775
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2766
2776
|
object?: string | undefined;
|
2767
2777
|
hoverTooltip?: boolean | undefined;
|
2768
2778
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2770,7 +2780,7 @@ export declare class Command {
|
|
2770
2780
|
type: "click" | "clickByXpath" | "clickBySelector";
|
2771
2781
|
value: string[];
|
2772
2782
|
} & {} & {
|
2773
|
-
commandType?: "object" | "
|
2783
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2774
2784
|
object?: string | undefined;
|
2775
2785
|
hoverTooltip?: boolean | undefined;
|
2776
2786
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2778,7 +2788,7 @@ export declare class Command {
|
|
2778
2788
|
type: "builtin";
|
2779
2789
|
value: string;
|
2780
2790
|
} & {} & {
|
2781
|
-
commandType?: "object" | "
|
2791
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2782
2792
|
object?: string | undefined;
|
2783
2793
|
hoverTooltip?: boolean | undefined;
|
2784
2794
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2786,7 +2796,7 @@ export declare class Command {
|
|
2786
2796
|
type: "webhook";
|
2787
2797
|
value: string;
|
2788
2798
|
} & {} & {
|
2789
|
-
commandType?: "object" | "
|
2799
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2790
2800
|
object?: string | undefined;
|
2791
2801
|
hoverTooltip?: boolean | undefined;
|
2792
2802
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2794,7 +2804,7 @@ export declare class Command {
|
|
2794
2804
|
type: "script";
|
2795
2805
|
value: string;
|
2796
2806
|
} & {} & {
|
2797
|
-
commandType?: "object" | "
|
2807
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2798
2808
|
object?: string | undefined;
|
2799
2809
|
hoverTooltip?: boolean | undefined;
|
2800
2810
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2815,7 +2825,7 @@ export declare class Command {
|
|
2815
2825
|
onError?: string | undefined;
|
2816
2826
|
};
|
2817
2827
|
} & {} & {
|
2818
|
-
commandType?: "object" | "
|
2828
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2819
2829
|
object?: string | undefined;
|
2820
2830
|
hoverTooltip?: boolean | undefined;
|
2821
2831
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2823,7 +2833,7 @@ export declare class Command {
|
|
2823
2833
|
type: "appcues";
|
2824
2834
|
value: string;
|
2825
2835
|
} & {} & {
|
2826
|
-
commandType?: "object" | "
|
2836
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2827
2837
|
object?: string | undefined;
|
2828
2838
|
hoverTooltip?: boolean | undefined;
|
2829
2839
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2831,7 +2841,7 @@ export declare class Command {
|
|
2831
2841
|
type: "video";
|
2832
2842
|
value: string;
|
2833
2843
|
} & {} & {
|
2834
|
-
commandType?: "object" | "
|
2844
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2835
2845
|
object?: string | undefined;
|
2836
2846
|
hoverTooltip?: boolean | undefined;
|
2837
2847
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2839,7 +2849,7 @@ export declare class Command {
|
|
2839
2849
|
type: "helpdoc";
|
2840
2850
|
value: string;
|
2841
2851
|
} & {} & {
|
2842
|
-
commandType?: "object" | "
|
2852
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
2843
2853
|
object?: string | undefined;
|
2844
2854
|
hoverTooltip?: boolean | undefined;
|
2845
2855
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -2994,14 +3004,14 @@ export declare class Command {
|
|
2994
3004
|
};
|
2995
3005
|
tags: string[];
|
2996
3006
|
availability_rules: ({
|
2997
|
-
type: "url" | "
|
3007
|
+
type: "url" | "element" | "context";
|
2998
3008
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2999
3009
|
} & {
|
3000
3010
|
field?: string | undefined;
|
3001
3011
|
value?: string | undefined;
|
3002
3012
|
reason?: string | undefined;
|
3003
3013
|
})[] | (({
|
3004
|
-
type: "url" | "
|
3014
|
+
type: "url" | "element" | "context";
|
3005
3015
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3006
3016
|
} & {
|
3007
3017
|
field?: string | undefined;
|
@@ -3014,7 +3024,7 @@ export declare class Command {
|
|
3014
3024
|
reason?: string | undefined;
|
3015
3025
|
}))[];
|
3016
3026
|
recommend_rules: (({
|
3017
|
-
type: "url" | "
|
3027
|
+
type: "url" | "element" | "context";
|
3018
3028
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3019
3029
|
} & {
|
3020
3030
|
field?: string | undefined;
|
@@ -3028,7 +3038,7 @@ export declare class Command {
|
|
3028
3038
|
value?: null | undefined;
|
3029
3039
|
reason?: null | undefined;
|
3030
3040
|
}))[] | (({
|
3031
|
-
type: "url" | "
|
3041
|
+
type: "url" | "element" | "context";
|
3032
3042
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3033
3043
|
} & {
|
3034
3044
|
field?: string | undefined;
|
@@ -3058,6 +3068,7 @@ export declare class Command {
|
|
3058
3068
|
category: number | null;
|
3059
3069
|
sort_key: number | null;
|
3060
3070
|
icon: string | null;
|
3071
|
+
image: string | null;
|
3061
3072
|
celebrate: boolean | {
|
3062
3073
|
angle?: number | undefined;
|
3063
3074
|
spread?: number | undefined;
|
@@ -3078,12 +3089,12 @@ export declare class Command {
|
|
3078
3089
|
hotkey_mac: string;
|
3079
3090
|
hotkey_win: string;
|
3080
3091
|
detail: string | ({
|
3081
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
3092
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
3082
3093
|
value: string;
|
3083
3094
|
} & {
|
3084
3095
|
position?: "inline" | "popover" | undefined;
|
3085
3096
|
}) | (string | ({
|
3086
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
3097
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
3087
3098
|
value: string;
|
3088
3099
|
} & {
|
3089
3100
|
position?: "inline" | "popover" | undefined;
|
@@ -3100,7 +3111,7 @@ export declare class Command {
|
|
3100
3111
|
type: "callback";
|
3101
3112
|
value: string;
|
3102
3113
|
} & {} & {
|
3103
|
-
commandType?: "object" | "
|
3114
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3104
3115
|
object?: string | undefined;
|
3105
3116
|
hoverTooltip?: boolean | undefined;
|
3106
3117
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3108,7 +3119,7 @@ export declare class Command {
|
|
3108
3119
|
type: "link";
|
3109
3120
|
value: string;
|
3110
3121
|
} & {} & {
|
3111
|
-
commandType?: "object" | "
|
3122
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3112
3123
|
object?: string | undefined;
|
3113
3124
|
hoverTooltip?: boolean | undefined;
|
3114
3125
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3116,7 +3127,7 @@ export declare class Command {
|
|
3116
3127
|
type: "click" | "clickByXpath" | "clickBySelector";
|
3117
3128
|
value: string[];
|
3118
3129
|
} & {} & {
|
3119
|
-
commandType?: "object" | "
|
3130
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3120
3131
|
object?: string | undefined;
|
3121
3132
|
hoverTooltip?: boolean | undefined;
|
3122
3133
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3124,7 +3135,7 @@ export declare class Command {
|
|
3124
3135
|
type: "webhook";
|
3125
3136
|
value: string;
|
3126
3137
|
} & {} & {
|
3127
|
-
commandType?: "object" | "
|
3138
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3128
3139
|
object?: string | undefined;
|
3129
3140
|
hoverTooltip?: boolean | undefined;
|
3130
3141
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3145,7 +3156,7 @@ export declare class Command {
|
|
3145
3156
|
onError?: string | undefined;
|
3146
3157
|
};
|
3147
3158
|
} & {} & {
|
3148
|
-
commandType?: "object" | "
|
3159
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3149
3160
|
object?: string | undefined;
|
3150
3161
|
hoverTooltip?: boolean | undefined;
|
3151
3162
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3153,7 +3164,15 @@ export declare class Command {
|
|
3153
3164
|
type: "appcues";
|
3154
3165
|
value: string;
|
3155
3166
|
} & {} & {
|
3156
|
-
commandType?: "object" | "
|
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;
|
3157
3176
|
object?: string | undefined;
|
3158
3177
|
hoverTooltip?: boolean | undefined;
|
3159
3178
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3310,6 +3329,7 @@ export declare class Command {
|
|
3310
3329
|
} | undefined;
|
3311
3330
|
category?: string | number | null | undefined;
|
3312
3331
|
icon?: string | null | undefined;
|
3332
|
+
image?: string | null | undefined;
|
3313
3333
|
celebrate?: boolean | {
|
3314
3334
|
angle?: number | undefined;
|
3315
3335
|
spread?: number | undefined;
|
@@ -3325,7 +3345,7 @@ export declare class Command {
|
|
3325
3345
|
random?: any;
|
3326
3346
|
} | null | undefined;
|
3327
3347
|
availability_rules?: ({
|
3328
|
-
type: "url" | "
|
3348
|
+
type: "url" | "element" | "context";
|
3329
3349
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3330
3350
|
} & {
|
3331
3351
|
field?: string | undefined;
|
@@ -3333,7 +3353,7 @@ export declare class Command {
|
|
3333
3353
|
reason?: string | undefined;
|
3334
3354
|
})[] | undefined;
|
3335
3355
|
recommend_rules?: (({
|
3336
|
-
type: "url" | "
|
3356
|
+
type: "url" | "element" | "context";
|
3337
3357
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3338
3358
|
} & {
|
3339
3359
|
field?: string | undefined;
|
@@ -3350,12 +3370,12 @@ export declare class Command {
|
|
3350
3370
|
availability_expression?: import("./helpers/rules").RuleExpression[] | undefined;
|
3351
3371
|
recommend_expression?: import("./helpers/rules").RuleExpression[] | undefined;
|
3352
3372
|
detail?: string | ({
|
3353
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
3373
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
3354
3374
|
value: string;
|
3355
3375
|
} & {
|
3356
3376
|
position?: "inline" | "popover" | undefined;
|
3357
3377
|
}) | ({
|
3358
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
3378
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
3359
3379
|
value: string;
|
3360
3380
|
} & {
|
3361
3381
|
position?: "inline" | "popover" | undefined;
|
@@ -3369,7 +3389,7 @@ export declare class Command {
|
|
3369
3389
|
type: "admin";
|
3370
3390
|
value: string;
|
3371
3391
|
} & {} & {
|
3372
|
-
commandType?: "object" | "
|
3392
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3373
3393
|
object?: string | undefined;
|
3374
3394
|
hoverTooltip?: boolean | undefined;
|
3375
3395
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3377,7 +3397,7 @@ export declare class Command {
|
|
3377
3397
|
type: "callback";
|
3378
3398
|
value: string;
|
3379
3399
|
} & {} & {
|
3380
|
-
commandType?: "object" | "
|
3400
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3381
3401
|
object?: string | undefined;
|
3382
3402
|
hoverTooltip?: boolean | undefined;
|
3383
3403
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3385,7 +3405,7 @@ export declare class Command {
|
|
3385
3405
|
type: "link";
|
3386
3406
|
value: string;
|
3387
3407
|
} & {} & {
|
3388
|
-
commandType?: "object" | "
|
3408
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3389
3409
|
object?: string | undefined;
|
3390
3410
|
hoverTooltip?: boolean | undefined;
|
3391
3411
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3393,7 +3413,7 @@ export declare class Command {
|
|
3393
3413
|
type: "click" | "clickByXpath" | "clickBySelector";
|
3394
3414
|
value: string[];
|
3395
3415
|
} & {} & {
|
3396
|
-
commandType?: "object" | "
|
3416
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3397
3417
|
object?: string | undefined;
|
3398
3418
|
hoverTooltip?: boolean | undefined;
|
3399
3419
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3401,7 +3421,7 @@ export declare class Command {
|
|
3401
3421
|
type: "builtin";
|
3402
3422
|
value: string;
|
3403
3423
|
} & {} & {
|
3404
|
-
commandType?: "object" | "
|
3424
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3405
3425
|
object?: string | undefined;
|
3406
3426
|
hoverTooltip?: boolean | undefined;
|
3407
3427
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3409,7 +3429,7 @@ export declare class Command {
|
|
3409
3429
|
type: "webhook";
|
3410
3430
|
value: string;
|
3411
3431
|
} & {} & {
|
3412
|
-
commandType?: "object" | "
|
3432
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3413
3433
|
object?: string | undefined;
|
3414
3434
|
hoverTooltip?: boolean | undefined;
|
3415
3435
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3417,7 +3437,7 @@ export declare class Command {
|
|
3417
3437
|
type: "script";
|
3418
3438
|
value: string;
|
3419
3439
|
} & {} & {
|
3420
|
-
commandType?: "object" | "
|
3440
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3421
3441
|
object?: string | undefined;
|
3422
3442
|
hoverTooltip?: boolean | undefined;
|
3423
3443
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3438,7 +3458,7 @@ export declare class Command {
|
|
3438
3458
|
onError?: string | undefined;
|
3439
3459
|
};
|
3440
3460
|
} & {} & {
|
3441
|
-
commandType?: "object" | "
|
3461
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3442
3462
|
object?: string | undefined;
|
3443
3463
|
hoverTooltip?: boolean | undefined;
|
3444
3464
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3446,7 +3466,7 @@ export declare class Command {
|
|
3446
3466
|
type: "appcues";
|
3447
3467
|
value: string;
|
3448
3468
|
} & {} & {
|
3449
|
-
commandType?: "object" | "
|
3469
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3450
3470
|
object?: string | undefined;
|
3451
3471
|
hoverTooltip?: boolean | undefined;
|
3452
3472
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3454,7 +3474,7 @@ export declare class Command {
|
|
3454
3474
|
type: "video";
|
3455
3475
|
value: string;
|
3456
3476
|
} & {} & {
|
3457
|
-
commandType?: "object" | "
|
3477
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3458
3478
|
object?: string | undefined;
|
3459
3479
|
hoverTooltip?: boolean | undefined;
|
3460
3480
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3462,7 +3482,7 @@ export declare class Command {
|
|
3462
3482
|
type: "helpdoc";
|
3463
3483
|
value: string;
|
3464
3484
|
} & {} & {
|
3465
|
-
commandType?: "object" | "
|
3485
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3466
3486
|
object?: string | undefined;
|
3467
3487
|
hoverTooltip?: boolean | undefined;
|
3468
3488
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3617,7 +3637,7 @@ export declare class Command {
|
|
3617
3637
|
};
|
3618
3638
|
tags: string[];
|
3619
3639
|
availability_rules: ({
|
3620
|
-
type: "url" | "
|
3640
|
+
type: "url" | "element" | "context";
|
3621
3641
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3622
3642
|
} & {
|
3623
3643
|
field?: string | undefined;
|
@@ -3625,7 +3645,7 @@ export declare class Command {
|
|
3625
3645
|
reason?: string | undefined;
|
3626
3646
|
})[];
|
3627
3647
|
recommend_rules: (({
|
3628
|
-
type: "url" | "
|
3648
|
+
type: "url" | "element" | "context";
|
3629
3649
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3630
3650
|
} & {
|
3631
3651
|
field?: string | undefined;
|
@@ -3650,6 +3670,7 @@ export declare class Command {
|
|
3650
3670
|
category: number | null;
|
3651
3671
|
sort_key: number | null;
|
3652
3672
|
icon: string | null;
|
3673
|
+
image: string | null;
|
3653
3674
|
celebrate: boolean | {
|
3654
3675
|
angle?: number | undefined;
|
3655
3676
|
spread?: number | undefined;
|
@@ -3670,17 +3691,20 @@ export declare class Command {
|
|
3670
3691
|
hotkey_mac: string;
|
3671
3692
|
hotkey_win: string;
|
3672
3693
|
detail: string | ({
|
3673
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
3694
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
3674
3695
|
value: string;
|
3675
3696
|
} & {
|
3676
3697
|
position?: "inline" | "popover" | undefined;
|
3677
3698
|
}) | (string | ({
|
3678
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
3699
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
3679
3700
|
value: string;
|
3680
3701
|
} & {
|
3681
3702
|
position?: "inline" | "popover" | undefined;
|
3682
3703
|
}))[] | null;
|
3683
3704
|
next_steps: (string | number)[];
|
3705
|
+
} & {
|
3706
|
+
third_party_source?: string | null | undefined;
|
3707
|
+
third_party_id?: string | null | undefined;
|
3684
3708
|
};
|
3685
3709
|
static decodeEditorCommand: (data: {
|
3686
3710
|
id: number;
|
@@ -3690,7 +3714,7 @@ export declare class Command {
|
|
3690
3714
|
type: "admin";
|
3691
3715
|
value: string;
|
3692
3716
|
} & {} & {
|
3693
|
-
commandType?: "object" | "
|
3717
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3694
3718
|
object?: string | undefined;
|
3695
3719
|
hoverTooltip?: boolean | undefined;
|
3696
3720
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3698,7 +3722,7 @@ export declare class Command {
|
|
3698
3722
|
type: "callback";
|
3699
3723
|
value: string;
|
3700
3724
|
} & {} & {
|
3701
|
-
commandType?: "object" | "
|
3725
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3702
3726
|
object?: string | undefined;
|
3703
3727
|
hoverTooltip?: boolean | undefined;
|
3704
3728
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3706,7 +3730,7 @@ export declare class Command {
|
|
3706
3730
|
type: "link";
|
3707
3731
|
value: string;
|
3708
3732
|
} & {} & {
|
3709
|
-
commandType?: "object" | "
|
3733
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3710
3734
|
object?: string | undefined;
|
3711
3735
|
hoverTooltip?: boolean | undefined;
|
3712
3736
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3714,7 +3738,7 @@ export declare class Command {
|
|
3714
3738
|
type: "click" | "clickByXpath" | "clickBySelector";
|
3715
3739
|
value: string[];
|
3716
3740
|
} & {} & {
|
3717
|
-
commandType?: "object" | "
|
3741
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3718
3742
|
object?: string | undefined;
|
3719
3743
|
hoverTooltip?: boolean | undefined;
|
3720
3744
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3722,7 +3746,7 @@ export declare class Command {
|
|
3722
3746
|
type: "builtin";
|
3723
3747
|
value: string;
|
3724
3748
|
} & {} & {
|
3725
|
-
commandType?: "object" | "
|
3749
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3726
3750
|
object?: string | undefined;
|
3727
3751
|
hoverTooltip?: boolean | undefined;
|
3728
3752
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3730,7 +3754,7 @@ export declare class Command {
|
|
3730
3754
|
type: "webhook";
|
3731
3755
|
value: string;
|
3732
3756
|
} & {} & {
|
3733
|
-
commandType?: "object" | "
|
3757
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3734
3758
|
object?: string | undefined;
|
3735
3759
|
hoverTooltip?: boolean | undefined;
|
3736
3760
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3738,7 +3762,7 @@ export declare class Command {
|
|
3738
3762
|
type: "script";
|
3739
3763
|
value: string;
|
3740
3764
|
} & {} & {
|
3741
|
-
commandType?: "object" | "
|
3765
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3742
3766
|
object?: string | undefined;
|
3743
3767
|
hoverTooltip?: boolean | undefined;
|
3744
3768
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3759,7 +3783,7 @@ export declare class Command {
|
|
3759
3783
|
onError?: string | undefined;
|
3760
3784
|
};
|
3761
3785
|
} & {} & {
|
3762
|
-
commandType?: "object" | "
|
3786
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3763
3787
|
object?: string | undefined;
|
3764
3788
|
hoverTooltip?: boolean | undefined;
|
3765
3789
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3767,7 +3791,7 @@ export declare class Command {
|
|
3767
3791
|
type: "appcues";
|
3768
3792
|
value: string;
|
3769
3793
|
} & {} & {
|
3770
|
-
commandType?: "object" | "
|
3794
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3771
3795
|
object?: string | undefined;
|
3772
3796
|
hoverTooltip?: boolean | undefined;
|
3773
3797
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3775,7 +3799,7 @@ export declare class Command {
|
|
3775
3799
|
type: "video";
|
3776
3800
|
value: string;
|
3777
3801
|
} & {} & {
|
3778
|
-
commandType?: "object" | "
|
3802
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3779
3803
|
object?: string | undefined;
|
3780
3804
|
hoverTooltip?: boolean | undefined;
|
3781
3805
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3783,7 +3807,7 @@ export declare class Command {
|
|
3783
3807
|
type: "helpdoc";
|
3784
3808
|
value: string;
|
3785
3809
|
} & {} & {
|
3786
|
-
commandType?: "object" | "
|
3810
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3787
3811
|
object?: string | undefined;
|
3788
3812
|
hoverTooltip?: boolean | undefined;
|
3789
3813
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3805,7 +3829,7 @@ export declare class Command {
|
|
3805
3829
|
type: "admin";
|
3806
3830
|
value: string;
|
3807
3831
|
} & {} & {
|
3808
|
-
commandType?: "object" | "
|
3832
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3809
3833
|
object?: string | undefined;
|
3810
3834
|
hoverTooltip?: boolean | undefined;
|
3811
3835
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3813,7 +3837,7 @@ export declare class Command {
|
|
3813
3837
|
type: "callback";
|
3814
3838
|
value: string;
|
3815
3839
|
} & {} & {
|
3816
|
-
commandType?: "object" | "
|
3840
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3817
3841
|
object?: string | undefined;
|
3818
3842
|
hoverTooltip?: boolean | undefined;
|
3819
3843
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3821,7 +3845,7 @@ export declare class Command {
|
|
3821
3845
|
type: "link";
|
3822
3846
|
value: string;
|
3823
3847
|
} & {} & {
|
3824
|
-
commandType?: "object" | "
|
3848
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3825
3849
|
object?: string | undefined;
|
3826
3850
|
hoverTooltip?: boolean | undefined;
|
3827
3851
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3829,7 +3853,7 @@ export declare class Command {
|
|
3829
3853
|
type: "click" | "clickByXpath" | "clickBySelector";
|
3830
3854
|
value: string[];
|
3831
3855
|
} & {} & {
|
3832
|
-
commandType?: "object" | "
|
3856
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3833
3857
|
object?: string | undefined;
|
3834
3858
|
hoverTooltip?: boolean | undefined;
|
3835
3859
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3837,7 +3861,7 @@ export declare class Command {
|
|
3837
3861
|
type: "builtin";
|
3838
3862
|
value: string;
|
3839
3863
|
} & {} & {
|
3840
|
-
commandType?: "object" | "
|
3864
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3841
3865
|
object?: string | undefined;
|
3842
3866
|
hoverTooltip?: boolean | undefined;
|
3843
3867
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3845,7 +3869,7 @@ export declare class Command {
|
|
3845
3869
|
type: "webhook";
|
3846
3870
|
value: string;
|
3847
3871
|
} & {} & {
|
3848
|
-
commandType?: "object" | "
|
3872
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3849
3873
|
object?: string | undefined;
|
3850
3874
|
hoverTooltip?: boolean | undefined;
|
3851
3875
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3853,7 +3877,7 @@ export declare class Command {
|
|
3853
3877
|
type: "script";
|
3854
3878
|
value: string;
|
3855
3879
|
} & {} & {
|
3856
|
-
commandType?: "object" | "
|
3880
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3857
3881
|
object?: string | undefined;
|
3858
3882
|
hoverTooltip?: boolean | undefined;
|
3859
3883
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3874,7 +3898,7 @@ export declare class Command {
|
|
3874
3898
|
onError?: string | undefined;
|
3875
3899
|
};
|
3876
3900
|
} & {} & {
|
3877
|
-
commandType?: "object" | "
|
3901
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3878
3902
|
object?: string | undefined;
|
3879
3903
|
hoverTooltip?: boolean | undefined;
|
3880
3904
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3882,7 +3906,7 @@ export declare class Command {
|
|
3882
3906
|
type: "appcues";
|
3883
3907
|
value: string;
|
3884
3908
|
} & {} & {
|
3885
|
-
commandType?: "object" | "
|
3909
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3886
3910
|
object?: string | undefined;
|
3887
3911
|
hoverTooltip?: boolean | undefined;
|
3888
3912
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3890,7 +3914,7 @@ export declare class Command {
|
|
3890
3914
|
type: "video";
|
3891
3915
|
value: string;
|
3892
3916
|
} & {} & {
|
3893
|
-
commandType?: "object" | "
|
3917
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3894
3918
|
object?: string | undefined;
|
3895
3919
|
hoverTooltip?: boolean | undefined;
|
3896
3920
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -3898,7 +3922,7 @@ export declare class Command {
|
|
3898
3922
|
type: "helpdoc";
|
3899
3923
|
value: string;
|
3900
3924
|
} & {} & {
|
3901
|
-
commandType?: "object" | "
|
3925
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
3902
3926
|
object?: string | undefined;
|
3903
3927
|
hoverTooltip?: boolean | undefined;
|
3904
3928
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4053,14 +4077,14 @@ export declare class Command {
|
|
4053
4077
|
};
|
4054
4078
|
tags: string[];
|
4055
4079
|
availability_rules: ({
|
4056
|
-
type: "url" | "
|
4080
|
+
type: "url" | "element" | "context";
|
4057
4081
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4058
4082
|
} & {
|
4059
4083
|
field?: string | undefined;
|
4060
4084
|
value?: string | undefined;
|
4061
4085
|
reason?: string | undefined;
|
4062
4086
|
})[] | (({
|
4063
|
-
type: "url" | "
|
4087
|
+
type: "url" | "element" | "context";
|
4064
4088
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4065
4089
|
} & {
|
4066
4090
|
field?: string | undefined;
|
@@ -4073,7 +4097,7 @@ export declare class Command {
|
|
4073
4097
|
reason?: string | undefined;
|
4074
4098
|
}))[];
|
4075
4099
|
recommend_rules: (({
|
4076
|
-
type: "url" | "
|
4100
|
+
type: "url" | "element" | "context";
|
4077
4101
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4078
4102
|
} & {
|
4079
4103
|
field?: string | undefined;
|
@@ -4087,7 +4111,7 @@ export declare class Command {
|
|
4087
4111
|
value?: null | undefined;
|
4088
4112
|
reason?: null | undefined;
|
4089
4113
|
}))[] | (({
|
4090
|
-
type: "url" | "
|
4114
|
+
type: "url" | "element" | "context";
|
4091
4115
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4092
4116
|
} & {
|
4093
4117
|
field?: string | undefined;
|
@@ -4117,6 +4141,7 @@ export declare class Command {
|
|
4117
4141
|
category: number | null;
|
4118
4142
|
sort_key: number | null;
|
4119
4143
|
icon: string | null;
|
4144
|
+
image: string | null;
|
4120
4145
|
celebrate: boolean | {
|
4121
4146
|
angle?: number | undefined;
|
4122
4147
|
spread?: number | undefined;
|
@@ -4137,12 +4162,12 @@ export declare class Command {
|
|
4137
4162
|
hotkey_mac: string;
|
4138
4163
|
hotkey_win: string;
|
4139
4164
|
detail: string | ({
|
4140
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
4165
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
4141
4166
|
value: string;
|
4142
4167
|
} & {
|
4143
4168
|
position?: "inline" | "popover" | undefined;
|
4144
4169
|
}) | (string | ({
|
4145
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
4170
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
4146
4171
|
value: string;
|
4147
4172
|
} & {
|
4148
4173
|
position?: "inline" | "popover" | undefined;
|
@@ -4160,7 +4185,7 @@ export declare class Command {
|
|
4160
4185
|
type: "admin";
|
4161
4186
|
value: string;
|
4162
4187
|
} & {} & {
|
4163
|
-
commandType?: "object" | "
|
4188
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4164
4189
|
object?: string | undefined;
|
4165
4190
|
hoverTooltip?: boolean | undefined;
|
4166
4191
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4168,7 +4193,7 @@ export declare class Command {
|
|
4168
4193
|
type: "callback";
|
4169
4194
|
value: string;
|
4170
4195
|
} & {} & {
|
4171
|
-
commandType?: "object" | "
|
4196
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4172
4197
|
object?: string | undefined;
|
4173
4198
|
hoverTooltip?: boolean | undefined;
|
4174
4199
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4176,7 +4201,7 @@ export declare class Command {
|
|
4176
4201
|
type: "link";
|
4177
4202
|
value: string;
|
4178
4203
|
} & {} & {
|
4179
|
-
commandType?: "object" | "
|
4204
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4180
4205
|
object?: string | undefined;
|
4181
4206
|
hoverTooltip?: boolean | undefined;
|
4182
4207
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4184,7 +4209,7 @@ export declare class Command {
|
|
4184
4209
|
type: "click" | "clickByXpath" | "clickBySelector";
|
4185
4210
|
value: string[];
|
4186
4211
|
} & {} & {
|
4187
|
-
commandType?: "object" | "
|
4212
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4188
4213
|
object?: string | undefined;
|
4189
4214
|
hoverTooltip?: boolean | undefined;
|
4190
4215
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4192,7 +4217,7 @@ export declare class Command {
|
|
4192
4217
|
type: "builtin";
|
4193
4218
|
value: string;
|
4194
4219
|
} & {} & {
|
4195
|
-
commandType?: "object" | "
|
4220
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4196
4221
|
object?: string | undefined;
|
4197
4222
|
hoverTooltip?: boolean | undefined;
|
4198
4223
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4200,7 +4225,7 @@ export declare class Command {
|
|
4200
4225
|
type: "webhook";
|
4201
4226
|
value: string;
|
4202
4227
|
} & {} & {
|
4203
|
-
commandType?: "object" | "
|
4228
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4204
4229
|
object?: string | undefined;
|
4205
4230
|
hoverTooltip?: boolean | undefined;
|
4206
4231
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4208,7 +4233,7 @@ export declare class Command {
|
|
4208
4233
|
type: "script";
|
4209
4234
|
value: string;
|
4210
4235
|
} & {} & {
|
4211
|
-
commandType?: "object" | "
|
4236
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4212
4237
|
object?: string | undefined;
|
4213
4238
|
hoverTooltip?: boolean | undefined;
|
4214
4239
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4229,7 +4254,7 @@ export declare class Command {
|
|
4229
4254
|
onError?: string | undefined;
|
4230
4255
|
};
|
4231
4256
|
} & {} & {
|
4232
|
-
commandType?: "object" | "
|
4257
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4233
4258
|
object?: string | undefined;
|
4234
4259
|
hoverTooltip?: boolean | undefined;
|
4235
4260
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4237,7 +4262,7 @@ export declare class Command {
|
|
4237
4262
|
type: "appcues";
|
4238
4263
|
value: string;
|
4239
4264
|
} & {} & {
|
4240
|
-
commandType?: "object" | "
|
4265
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4241
4266
|
object?: string | undefined;
|
4242
4267
|
hoverTooltip?: boolean | undefined;
|
4243
4268
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4245,7 +4270,7 @@ export declare class Command {
|
|
4245
4270
|
type: "video";
|
4246
4271
|
value: string;
|
4247
4272
|
} & {} & {
|
4248
|
-
commandType?: "object" | "
|
4273
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4249
4274
|
object?: string | undefined;
|
4250
4275
|
hoverTooltip?: boolean | undefined;
|
4251
4276
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4253,7 +4278,7 @@ export declare class Command {
|
|
4253
4278
|
type: "helpdoc";
|
4254
4279
|
value: string;
|
4255
4280
|
} & {} & {
|
4256
|
-
commandType?: "object" | "
|
4281
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4257
4282
|
object?: string | undefined;
|
4258
4283
|
hoverTooltip?: boolean | undefined;
|
4259
4284
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4408,14 +4433,14 @@ export declare class Command {
|
|
4408
4433
|
};
|
4409
4434
|
tags: string[];
|
4410
4435
|
availability_rules: ({
|
4411
|
-
type: "url" | "
|
4436
|
+
type: "url" | "element" | "context";
|
4412
4437
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4413
4438
|
} & {
|
4414
4439
|
field?: string | undefined;
|
4415
4440
|
value?: string | undefined;
|
4416
4441
|
reason?: string | undefined;
|
4417
4442
|
})[] | (({
|
4418
|
-
type: "url" | "
|
4443
|
+
type: "url" | "element" | "context";
|
4419
4444
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4420
4445
|
} & {
|
4421
4446
|
field?: string | undefined;
|
@@ -4428,7 +4453,7 @@ export declare class Command {
|
|
4428
4453
|
reason?: string | undefined;
|
4429
4454
|
}))[];
|
4430
4455
|
recommend_rules: (({
|
4431
|
-
type: "url" | "
|
4456
|
+
type: "url" | "element" | "context";
|
4432
4457
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4433
4458
|
} & {
|
4434
4459
|
field?: string | undefined;
|
@@ -4442,7 +4467,7 @@ export declare class Command {
|
|
4442
4467
|
value?: null | undefined;
|
4443
4468
|
reason?: null | undefined;
|
4444
4469
|
}))[] | (({
|
4445
|
-
type: "url" | "
|
4470
|
+
type: "url" | "element" | "context";
|
4446
4471
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4447
4472
|
} & {
|
4448
4473
|
field?: string | undefined;
|
@@ -4472,6 +4497,7 @@ export declare class Command {
|
|
4472
4497
|
category: number | null;
|
4473
4498
|
sort_key: number | null;
|
4474
4499
|
icon: string | null;
|
4500
|
+
image: string | null;
|
4475
4501
|
celebrate: boolean | {
|
4476
4502
|
angle?: number | undefined;
|
4477
4503
|
spread?: number | undefined;
|
@@ -4492,12 +4518,12 @@ export declare class Command {
|
|
4492
4518
|
hotkey_mac: string;
|
4493
4519
|
hotkey_win: string;
|
4494
4520
|
detail: string | ({
|
4495
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
4521
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
4496
4522
|
value: string;
|
4497
4523
|
} & {
|
4498
4524
|
position?: "inline" | "popover" | undefined;
|
4499
4525
|
}) | (string | ({
|
4500
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
4526
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
4501
4527
|
value: string;
|
4502
4528
|
} & {
|
4503
4529
|
position?: "inline" | "popover" | undefined;
|
@@ -4514,7 +4540,7 @@ export declare class Command {
|
|
4514
4540
|
type: "admin";
|
4515
4541
|
value: string;
|
4516
4542
|
} & {} & {
|
4517
|
-
commandType?: "object" | "
|
4543
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4518
4544
|
object?: string | undefined;
|
4519
4545
|
hoverTooltip?: boolean | undefined;
|
4520
4546
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4522,7 +4548,7 @@ export declare class Command {
|
|
4522
4548
|
type: "callback";
|
4523
4549
|
value: string;
|
4524
4550
|
} & {} & {
|
4525
|
-
commandType?: "object" | "
|
4551
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4526
4552
|
object?: string | undefined;
|
4527
4553
|
hoverTooltip?: boolean | undefined;
|
4528
4554
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4530,7 +4556,7 @@ export declare class Command {
|
|
4530
4556
|
type: "link";
|
4531
4557
|
value: string;
|
4532
4558
|
} & {} & {
|
4533
|
-
commandType?: "object" | "
|
4559
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4534
4560
|
object?: string | undefined;
|
4535
4561
|
hoverTooltip?: boolean | undefined;
|
4536
4562
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4538,7 +4564,7 @@ export declare class Command {
|
|
4538
4564
|
type: "click" | "clickByXpath" | "clickBySelector";
|
4539
4565
|
value: string[];
|
4540
4566
|
} & {} & {
|
4541
|
-
commandType?: "object" | "
|
4567
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4542
4568
|
object?: string | undefined;
|
4543
4569
|
hoverTooltip?: boolean | undefined;
|
4544
4570
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4546,7 +4572,7 @@ export declare class Command {
|
|
4546
4572
|
type: "builtin";
|
4547
4573
|
value: string;
|
4548
4574
|
} & {} & {
|
4549
|
-
commandType?: "object" | "
|
4575
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4550
4576
|
object?: string | undefined;
|
4551
4577
|
hoverTooltip?: boolean | undefined;
|
4552
4578
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4554,7 +4580,7 @@ export declare class Command {
|
|
4554
4580
|
type: "webhook";
|
4555
4581
|
value: string;
|
4556
4582
|
} & {} & {
|
4557
|
-
commandType?: "object" | "
|
4583
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4558
4584
|
object?: string | undefined;
|
4559
4585
|
hoverTooltip?: boolean | undefined;
|
4560
4586
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4562,7 +4588,7 @@ export declare class Command {
|
|
4562
4588
|
type: "script";
|
4563
4589
|
value: string;
|
4564
4590
|
} & {} & {
|
4565
|
-
commandType?: "object" | "
|
4591
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4566
4592
|
object?: string | undefined;
|
4567
4593
|
hoverTooltip?: boolean | undefined;
|
4568
4594
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4583,7 +4609,7 @@ export declare class Command {
|
|
4583
4609
|
onError?: string | undefined;
|
4584
4610
|
};
|
4585
4611
|
} & {} & {
|
4586
|
-
commandType?: "object" | "
|
4612
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4587
4613
|
object?: string | undefined;
|
4588
4614
|
hoverTooltip?: boolean | undefined;
|
4589
4615
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4591,7 +4617,7 @@ export declare class Command {
|
|
4591
4617
|
type: "appcues";
|
4592
4618
|
value: string;
|
4593
4619
|
} & {} & {
|
4594
|
-
commandType?: "object" | "
|
4620
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4595
4621
|
object?: string | undefined;
|
4596
4622
|
hoverTooltip?: boolean | undefined;
|
4597
4623
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4599,7 +4625,7 @@ export declare class Command {
|
|
4599
4625
|
type: "video";
|
4600
4626
|
value: string;
|
4601
4627
|
} & {} & {
|
4602
|
-
commandType?: "object" | "
|
4628
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4603
4629
|
object?: string | undefined;
|
4604
4630
|
hoverTooltip?: boolean | undefined;
|
4605
4631
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4607,7 +4633,7 @@ export declare class Command {
|
|
4607
4633
|
type: "helpdoc";
|
4608
4634
|
value: string;
|
4609
4635
|
} & {} & {
|
4610
|
-
commandType?: "object" | "
|
4636
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4611
4637
|
object?: string | undefined;
|
4612
4638
|
hoverTooltip?: boolean | undefined;
|
4613
4639
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4762,14 +4788,14 @@ export declare class Command {
|
|
4762
4788
|
};
|
4763
4789
|
tags: string[];
|
4764
4790
|
availability_rules: ({
|
4765
|
-
type: "url" | "
|
4791
|
+
type: "url" | "element" | "context";
|
4766
4792
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4767
4793
|
} & {
|
4768
4794
|
field?: string | undefined;
|
4769
4795
|
value?: string | undefined;
|
4770
4796
|
reason?: string | undefined;
|
4771
4797
|
})[] | (({
|
4772
|
-
type: "url" | "
|
4798
|
+
type: "url" | "element" | "context";
|
4773
4799
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4774
4800
|
} & {
|
4775
4801
|
field?: string | undefined;
|
@@ -4782,7 +4808,7 @@ export declare class Command {
|
|
4782
4808
|
reason?: string | undefined;
|
4783
4809
|
}))[];
|
4784
4810
|
recommend_rules: (({
|
4785
|
-
type: "url" | "
|
4811
|
+
type: "url" | "element" | "context";
|
4786
4812
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4787
4813
|
} & {
|
4788
4814
|
field?: string | undefined;
|
@@ -4796,7 +4822,7 @@ export declare class Command {
|
|
4796
4822
|
value?: null | undefined;
|
4797
4823
|
reason?: null | undefined;
|
4798
4824
|
}))[] | (({
|
4799
|
-
type: "url" | "
|
4825
|
+
type: "url" | "element" | "context";
|
4800
4826
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4801
4827
|
} & {
|
4802
4828
|
field?: string | undefined;
|
@@ -4826,6 +4852,7 @@ export declare class Command {
|
|
4826
4852
|
category: number | null;
|
4827
4853
|
sort_key: number | null;
|
4828
4854
|
icon: string | null;
|
4855
|
+
image: string | null;
|
4829
4856
|
celebrate: boolean | {
|
4830
4857
|
angle?: number | undefined;
|
4831
4858
|
spread?: number | undefined;
|
@@ -4846,12 +4873,12 @@ export declare class Command {
|
|
4846
4873
|
hotkey_mac: string;
|
4847
4874
|
hotkey_win: string;
|
4848
4875
|
detail: string | ({
|
4849
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
4876
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
4850
4877
|
value: string;
|
4851
4878
|
} & {
|
4852
4879
|
position?: "inline" | "popover" | undefined;
|
4853
4880
|
}) | (string | ({
|
4854
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
4881
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
4855
4882
|
value: string;
|
4856
4883
|
} & {
|
4857
4884
|
position?: "inline" | "popover" | undefined;
|
@@ -4869,7 +4896,7 @@ export declare class Command {
|
|
4869
4896
|
type: "admin";
|
4870
4897
|
value: string;
|
4871
4898
|
} & {} & {
|
4872
|
-
commandType?: "object" | "
|
4899
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4873
4900
|
object?: string | undefined;
|
4874
4901
|
hoverTooltip?: boolean | undefined;
|
4875
4902
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4877,7 +4904,7 @@ export declare class Command {
|
|
4877
4904
|
type: "callback";
|
4878
4905
|
value: string;
|
4879
4906
|
} & {} & {
|
4880
|
-
commandType?: "object" | "
|
4907
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4881
4908
|
object?: string | undefined;
|
4882
4909
|
hoverTooltip?: boolean | undefined;
|
4883
4910
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4885,7 +4912,7 @@ export declare class Command {
|
|
4885
4912
|
type: "link";
|
4886
4913
|
value: string;
|
4887
4914
|
} & {} & {
|
4888
|
-
commandType?: "object" | "
|
4915
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4889
4916
|
object?: string | undefined;
|
4890
4917
|
hoverTooltip?: boolean | undefined;
|
4891
4918
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4893,7 +4920,7 @@ export declare class Command {
|
|
4893
4920
|
type: "click" | "clickByXpath" | "clickBySelector";
|
4894
4921
|
value: string[];
|
4895
4922
|
} & {} & {
|
4896
|
-
commandType?: "object" | "
|
4923
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4897
4924
|
object?: string | undefined;
|
4898
4925
|
hoverTooltip?: boolean | undefined;
|
4899
4926
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4901,7 +4928,7 @@ export declare class Command {
|
|
4901
4928
|
type: "builtin";
|
4902
4929
|
value: string;
|
4903
4930
|
} & {} & {
|
4904
|
-
commandType?: "object" | "
|
4931
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4905
4932
|
object?: string | undefined;
|
4906
4933
|
hoverTooltip?: boolean | undefined;
|
4907
4934
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4909,7 +4936,7 @@ export declare class Command {
|
|
4909
4936
|
type: "webhook";
|
4910
4937
|
value: string;
|
4911
4938
|
} & {} & {
|
4912
|
-
commandType?: "object" | "
|
4939
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4913
4940
|
object?: string | undefined;
|
4914
4941
|
hoverTooltip?: boolean | undefined;
|
4915
4942
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4917,7 +4944,7 @@ export declare class Command {
|
|
4917
4944
|
type: "script";
|
4918
4945
|
value: string;
|
4919
4946
|
} & {} & {
|
4920
|
-
commandType?: "object" | "
|
4947
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4921
4948
|
object?: string | undefined;
|
4922
4949
|
hoverTooltip?: boolean | undefined;
|
4923
4950
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4938,7 +4965,7 @@ export declare class Command {
|
|
4938
4965
|
onError?: string | undefined;
|
4939
4966
|
};
|
4940
4967
|
} & {} & {
|
4941
|
-
commandType?: "object" | "
|
4968
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4942
4969
|
object?: string | undefined;
|
4943
4970
|
hoverTooltip?: boolean | undefined;
|
4944
4971
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4946,7 +4973,7 @@ export declare class Command {
|
|
4946
4973
|
type: "appcues";
|
4947
4974
|
value: string;
|
4948
4975
|
} & {} & {
|
4949
|
-
commandType?: "object" | "
|
4976
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4950
4977
|
object?: string | undefined;
|
4951
4978
|
hoverTooltip?: boolean | undefined;
|
4952
4979
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4954,7 +4981,7 @@ export declare class Command {
|
|
4954
4981
|
type: "video";
|
4955
4982
|
value: string;
|
4956
4983
|
} & {} & {
|
4957
|
-
commandType?: "object" | "
|
4984
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4958
4985
|
object?: string | undefined;
|
4959
4986
|
hoverTooltip?: boolean | undefined;
|
4960
4987
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -4962,7 +4989,7 @@ export declare class Command {
|
|
4962
4989
|
type: "helpdoc";
|
4963
4990
|
value: string;
|
4964
4991
|
} & {} & {
|
4965
|
-
commandType?: "object" | "
|
4992
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
4966
4993
|
object?: string | undefined;
|
4967
4994
|
hoverTooltip?: boolean | undefined;
|
4968
4995
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5117,14 +5144,14 @@ export declare class Command {
|
|
5117
5144
|
};
|
5118
5145
|
tags: string[];
|
5119
5146
|
availability_rules: ({
|
5120
|
-
type: "url" | "
|
5147
|
+
type: "url" | "element" | "context";
|
5121
5148
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5122
5149
|
} & {
|
5123
5150
|
field?: string | undefined;
|
5124
5151
|
value?: string | undefined;
|
5125
5152
|
reason?: string | undefined;
|
5126
5153
|
})[] | (({
|
5127
|
-
type: "url" | "
|
5154
|
+
type: "url" | "element" | "context";
|
5128
5155
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5129
5156
|
} & {
|
5130
5157
|
field?: string | undefined;
|
@@ -5137,7 +5164,7 @@ export declare class Command {
|
|
5137
5164
|
reason?: string | undefined;
|
5138
5165
|
}))[];
|
5139
5166
|
recommend_rules: (({
|
5140
|
-
type: "url" | "
|
5167
|
+
type: "url" | "element" | "context";
|
5141
5168
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5142
5169
|
} & {
|
5143
5170
|
field?: string | undefined;
|
@@ -5151,7 +5178,7 @@ export declare class Command {
|
|
5151
5178
|
value?: null | undefined;
|
5152
5179
|
reason?: null | undefined;
|
5153
5180
|
}))[] | (({
|
5154
|
-
type: "url" | "
|
5181
|
+
type: "url" | "element" | "context";
|
5155
5182
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5156
5183
|
} & {
|
5157
5184
|
field?: string | undefined;
|
@@ -5181,6 +5208,7 @@ export declare class Command {
|
|
5181
5208
|
category: number | null;
|
5182
5209
|
sort_key: number | null;
|
5183
5210
|
icon: string | null;
|
5211
|
+
image: string | null;
|
5184
5212
|
celebrate: boolean | {
|
5185
5213
|
angle?: number | undefined;
|
5186
5214
|
spread?: number | undefined;
|
@@ -5201,12 +5229,12 @@ export declare class Command {
|
|
5201
5229
|
hotkey_mac: string;
|
5202
5230
|
hotkey_win: string;
|
5203
5231
|
detail: string | ({
|
5204
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
5232
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
5205
5233
|
value: string;
|
5206
5234
|
} & {
|
5207
5235
|
position?: "inline" | "popover" | undefined;
|
5208
5236
|
}) | (string | ({
|
5209
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
5237
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
5210
5238
|
value: string;
|
5211
5239
|
} & {
|
5212
5240
|
position?: "inline" | "popover" | undefined;
|
@@ -5223,7 +5251,7 @@ export declare class Command {
|
|
5223
5251
|
type: "admin";
|
5224
5252
|
value: string;
|
5225
5253
|
} & {} & {
|
5226
|
-
commandType?: "object" | "
|
5254
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5227
5255
|
object?: string | undefined;
|
5228
5256
|
hoverTooltip?: boolean | undefined;
|
5229
5257
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5231,7 +5259,7 @@ export declare class Command {
|
|
5231
5259
|
type: "callback";
|
5232
5260
|
value: string;
|
5233
5261
|
} & {} & {
|
5234
|
-
commandType?: "object" | "
|
5262
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5235
5263
|
object?: string | undefined;
|
5236
5264
|
hoverTooltip?: boolean | undefined;
|
5237
5265
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5239,7 +5267,7 @@ export declare class Command {
|
|
5239
5267
|
type: "link";
|
5240
5268
|
value: string;
|
5241
5269
|
} & {} & {
|
5242
|
-
commandType?: "object" | "
|
5270
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5243
5271
|
object?: string | undefined;
|
5244
5272
|
hoverTooltip?: boolean | undefined;
|
5245
5273
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5247,7 +5275,7 @@ export declare class Command {
|
|
5247
5275
|
type: "click" | "clickByXpath" | "clickBySelector";
|
5248
5276
|
value: string[];
|
5249
5277
|
} & {} & {
|
5250
|
-
commandType?: "object" | "
|
5278
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5251
5279
|
object?: string | undefined;
|
5252
5280
|
hoverTooltip?: boolean | undefined;
|
5253
5281
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5255,7 +5283,7 @@ export declare class Command {
|
|
5255
5283
|
type: "builtin";
|
5256
5284
|
value: string;
|
5257
5285
|
} & {} & {
|
5258
|
-
commandType?: "object" | "
|
5286
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5259
5287
|
object?: string | undefined;
|
5260
5288
|
hoverTooltip?: boolean | undefined;
|
5261
5289
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5263,7 +5291,7 @@ export declare class Command {
|
|
5263
5291
|
type: "webhook";
|
5264
5292
|
value: string;
|
5265
5293
|
} & {} & {
|
5266
|
-
commandType?: "object" | "
|
5294
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5267
5295
|
object?: string | undefined;
|
5268
5296
|
hoverTooltip?: boolean | undefined;
|
5269
5297
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5271,7 +5299,7 @@ export declare class Command {
|
|
5271
5299
|
type: "script";
|
5272
5300
|
value: string;
|
5273
5301
|
} & {} & {
|
5274
|
-
commandType?: "object" | "
|
5302
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5275
5303
|
object?: string | undefined;
|
5276
5304
|
hoverTooltip?: boolean | undefined;
|
5277
5305
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5292,7 +5320,7 @@ export declare class Command {
|
|
5292
5320
|
onError?: string | undefined;
|
5293
5321
|
};
|
5294
5322
|
} & {} & {
|
5295
|
-
commandType?: "object" | "
|
5323
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5296
5324
|
object?: string | undefined;
|
5297
5325
|
hoverTooltip?: boolean | undefined;
|
5298
5326
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5300,7 +5328,7 @@ export declare class Command {
|
|
5300
5328
|
type: "appcues";
|
5301
5329
|
value: string;
|
5302
5330
|
} & {} & {
|
5303
|
-
commandType?: "object" | "
|
5331
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5304
5332
|
object?: string | undefined;
|
5305
5333
|
hoverTooltip?: boolean | undefined;
|
5306
5334
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5308,7 +5336,7 @@ export declare class Command {
|
|
5308
5336
|
type: "video";
|
5309
5337
|
value: string;
|
5310
5338
|
} & {} & {
|
5311
|
-
commandType?: "object" | "
|
5339
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5312
5340
|
object?: string | undefined;
|
5313
5341
|
hoverTooltip?: boolean | undefined;
|
5314
5342
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5316,7 +5344,7 @@ export declare class Command {
|
|
5316
5344
|
type: "helpdoc";
|
5317
5345
|
value: string;
|
5318
5346
|
} & {} & {
|
5319
|
-
commandType?: "object" | "
|
5347
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5320
5348
|
object?: string | undefined;
|
5321
5349
|
hoverTooltip?: boolean | undefined;
|
5322
5350
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5471,14 +5499,14 @@ export declare class Command {
|
|
5471
5499
|
};
|
5472
5500
|
tags: string[];
|
5473
5501
|
availability_rules: ({
|
5474
|
-
type: "url" | "
|
5502
|
+
type: "url" | "element" | "context";
|
5475
5503
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5476
5504
|
} & {
|
5477
5505
|
field?: string | undefined;
|
5478
5506
|
value?: string | undefined;
|
5479
5507
|
reason?: string | undefined;
|
5480
5508
|
})[] | (({
|
5481
|
-
type: "url" | "
|
5509
|
+
type: "url" | "element" | "context";
|
5482
5510
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5483
5511
|
} & {
|
5484
5512
|
field?: string | undefined;
|
@@ -5491,7 +5519,7 @@ export declare class Command {
|
|
5491
5519
|
reason?: string | undefined;
|
5492
5520
|
}))[];
|
5493
5521
|
recommend_rules: (({
|
5494
|
-
type: "url" | "
|
5522
|
+
type: "url" | "element" | "context";
|
5495
5523
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5496
5524
|
} & {
|
5497
5525
|
field?: string | undefined;
|
@@ -5505,7 +5533,7 @@ export declare class Command {
|
|
5505
5533
|
value?: null | undefined;
|
5506
5534
|
reason?: null | undefined;
|
5507
5535
|
}))[] | (({
|
5508
|
-
type: "url" | "
|
5536
|
+
type: "url" | "element" | "context";
|
5509
5537
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5510
5538
|
} & {
|
5511
5539
|
field?: string | undefined;
|
@@ -5535,6 +5563,7 @@ export declare class Command {
|
|
5535
5563
|
category: number | null;
|
5536
5564
|
sort_key: number | null;
|
5537
5565
|
icon: string | null;
|
5566
|
+
image: string | null;
|
5538
5567
|
celebrate: boolean | {
|
5539
5568
|
angle?: number | undefined;
|
5540
5569
|
spread?: number | undefined;
|
@@ -5555,12 +5584,12 @@ export declare class Command {
|
|
5555
5584
|
hotkey_mac: string;
|
5556
5585
|
hotkey_win: string;
|
5557
5586
|
detail: string | ({
|
5558
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
5587
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
5559
5588
|
value: string;
|
5560
5589
|
} & {
|
5561
5590
|
position?: "inline" | "popover" | undefined;
|
5562
5591
|
}) | (string | ({
|
5563
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
5592
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
5564
5593
|
value: string;
|
5565
5594
|
} & {
|
5566
5595
|
position?: "inline" | "popover" | undefined;
|
@@ -5574,6 +5603,7 @@ export declare class Command {
|
|
5574
5603
|
static commandUID: (cmd: t.TypeOf<typeof CommandV> | t.TypeOf<typeof EditorCommandV>) => string;
|
5575
5604
|
static isProgrammatic: (cmd: t.TypeOf<typeof CommandV> | t.TypeOf<typeof EditorCommandV>) => boolean;
|
5576
5605
|
static isRecordAction: (cmd: t.TypeOf<typeof CommandV> | t.TypeOf<typeof EditorCommandV>, recordKey?: string | undefined) => boolean;
|
5606
|
+
static isHelpSyncCommand: (cmd: t.TypeOf<typeof CommandV> | t.TypeOf<typeof EditorCommandV>) => boolean;
|
5577
5607
|
static showInDefaultList: (cmd: t.TypeOf<typeof CommandV> | t.TypeOf<typeof EditorCommandV>) => boolean;
|
5578
5608
|
}
|
5579
5609
|
export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
@@ -5893,6 +5923,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
5893
5923
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
5894
5924
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
5895
5925
|
icon: t.UnionC<[t.StringC, t.NullC]>;
|
5926
|
+
image: t.UnionC<[t.StringC, t.NullC]>;
|
5896
5927
|
celebrate: t.UnionC<[t.BooleanC, t.PartialC<{
|
5897
5928
|
angle: t.NumberC;
|
5898
5929
|
spread: t.NumberC;
|
@@ -5913,12 +5944,12 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
5913
5944
|
hotkey_mac: t.StringC;
|
5914
5945
|
hotkey_win: t.StringC;
|
5915
5946
|
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
5916
|
-
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.
|
5947
|
+
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.LiteralC<"component">]>;
|
5917
5948
|
value: t.StringC;
|
5918
5949
|
}>, t.PartialC<{
|
5919
5950
|
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
5920
5951
|
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
5921
|
-
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.
|
5952
|
+
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.LiteralC<"component">]>;
|
5922
5953
|
value: t.StringC;
|
5923
5954
|
}>, t.PartialC<{
|
5924
5955
|
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
@@ -5937,7 +5968,7 @@ export declare class HelpSyncCommand {
|
|
5937
5968
|
type: "admin";
|
5938
5969
|
value: string;
|
5939
5970
|
} & {} & {
|
5940
|
-
commandType?: "object" | "
|
5971
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5941
5972
|
object?: string | undefined;
|
5942
5973
|
hoverTooltip?: boolean | undefined;
|
5943
5974
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5945,7 +5976,7 @@ export declare class HelpSyncCommand {
|
|
5945
5976
|
type: "callback";
|
5946
5977
|
value: string;
|
5947
5978
|
} & {} & {
|
5948
|
-
commandType?: "object" | "
|
5979
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5949
5980
|
object?: string | undefined;
|
5950
5981
|
hoverTooltip?: boolean | undefined;
|
5951
5982
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5953,7 +5984,7 @@ export declare class HelpSyncCommand {
|
|
5953
5984
|
type: "link";
|
5954
5985
|
value: string;
|
5955
5986
|
} & {} & {
|
5956
|
-
commandType?: "object" | "
|
5987
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5957
5988
|
object?: string | undefined;
|
5958
5989
|
hoverTooltip?: boolean | undefined;
|
5959
5990
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5961,7 +5992,7 @@ export declare class HelpSyncCommand {
|
|
5961
5992
|
type: "click" | "clickByXpath" | "clickBySelector";
|
5962
5993
|
value: string[];
|
5963
5994
|
} & {} & {
|
5964
|
-
commandType?: "object" | "
|
5995
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5965
5996
|
object?: string | undefined;
|
5966
5997
|
hoverTooltip?: boolean | undefined;
|
5967
5998
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5969,7 +6000,7 @@ export declare class HelpSyncCommand {
|
|
5969
6000
|
type: "builtin";
|
5970
6001
|
value: string;
|
5971
6002
|
} & {} & {
|
5972
|
-
commandType?: "object" | "
|
6003
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5973
6004
|
object?: string | undefined;
|
5974
6005
|
hoverTooltip?: boolean | undefined;
|
5975
6006
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5977,7 +6008,7 @@ export declare class HelpSyncCommand {
|
|
5977
6008
|
type: "webhook";
|
5978
6009
|
value: string;
|
5979
6010
|
} & {} & {
|
5980
|
-
commandType?: "object" | "
|
6011
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5981
6012
|
object?: string | undefined;
|
5982
6013
|
hoverTooltip?: boolean | undefined;
|
5983
6014
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -5985,7 +6016,7 @@ export declare class HelpSyncCommand {
|
|
5985
6016
|
type: "script";
|
5986
6017
|
value: string;
|
5987
6018
|
} & {} & {
|
5988
|
-
commandType?: "object" | "
|
6019
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
5989
6020
|
object?: string | undefined;
|
5990
6021
|
hoverTooltip?: boolean | undefined;
|
5991
6022
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6006,7 +6037,7 @@ export declare class HelpSyncCommand {
|
|
6006
6037
|
onError?: string | undefined;
|
6007
6038
|
};
|
6008
6039
|
} & {} & {
|
6009
|
-
commandType?: "object" | "
|
6040
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6010
6041
|
object?: string | undefined;
|
6011
6042
|
hoverTooltip?: boolean | undefined;
|
6012
6043
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6014,7 +6045,7 @@ export declare class HelpSyncCommand {
|
|
6014
6045
|
type: "appcues";
|
6015
6046
|
value: string;
|
6016
6047
|
} & {} & {
|
6017
|
-
commandType?: "object" | "
|
6048
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6018
6049
|
object?: string | undefined;
|
6019
6050
|
hoverTooltip?: boolean | undefined;
|
6020
6051
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6022,7 +6053,7 @@ export declare class HelpSyncCommand {
|
|
6022
6053
|
type: "video";
|
6023
6054
|
value: string;
|
6024
6055
|
} & {} & {
|
6025
|
-
commandType?: "object" | "
|
6056
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6026
6057
|
object?: string | undefined;
|
6027
6058
|
hoverTooltip?: boolean | undefined;
|
6028
6059
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6030,7 +6061,7 @@ export declare class HelpSyncCommand {
|
|
6030
6061
|
type: "helpdoc";
|
6031
6062
|
value: string;
|
6032
6063
|
} & {} & {
|
6033
|
-
commandType?: "object" | "
|
6064
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6034
6065
|
object?: string | undefined;
|
6035
6066
|
hoverTooltip?: boolean | undefined;
|
6036
6067
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6185,7 +6216,7 @@ export declare class HelpSyncCommand {
|
|
6185
6216
|
};
|
6186
6217
|
tags: string[];
|
6187
6218
|
availability_rules: ({
|
6188
|
-
type: "url" | "
|
6219
|
+
type: "url" | "element" | "context";
|
6189
6220
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6190
6221
|
} & {
|
6191
6222
|
field?: string | undefined;
|
@@ -6193,7 +6224,7 @@ export declare class HelpSyncCommand {
|
|
6193
6224
|
reason?: string | undefined;
|
6194
6225
|
})[];
|
6195
6226
|
recommend_rules: (({
|
6196
|
-
type: "url" | "
|
6227
|
+
type: "url" | "element" | "context";
|
6197
6228
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6198
6229
|
} & {
|
6199
6230
|
field?: string | undefined;
|
@@ -6218,6 +6249,7 @@ export declare class HelpSyncCommand {
|
|
6218
6249
|
category: number | null;
|
6219
6250
|
sort_key: number | null;
|
6220
6251
|
icon: string | null;
|
6252
|
+
image: string | null;
|
6221
6253
|
celebrate: boolean | {
|
6222
6254
|
angle?: number | undefined;
|
6223
6255
|
spread?: number | undefined;
|
@@ -6238,12 +6270,12 @@ export declare class HelpSyncCommand {
|
|
6238
6270
|
hotkey_mac: string;
|
6239
6271
|
hotkey_win: string;
|
6240
6272
|
detail: string | ({
|
6241
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
6273
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
6242
6274
|
value: string;
|
6243
6275
|
} & {
|
6244
6276
|
position?: "inline" | "popover" | undefined;
|
6245
6277
|
}) | (string | ({
|
6246
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
6278
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
6247
6279
|
value: string;
|
6248
6280
|
} & {
|
6249
6281
|
position?: "inline" | "popover" | undefined;
|
@@ -6261,7 +6293,7 @@ export declare class HelpSyncCommand {
|
|
6261
6293
|
type: "admin";
|
6262
6294
|
value: string;
|
6263
6295
|
} & {} & {
|
6264
|
-
commandType?: "object" | "
|
6296
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6265
6297
|
object?: string | undefined;
|
6266
6298
|
hoverTooltip?: boolean | undefined;
|
6267
6299
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6269,7 +6301,7 @@ export declare class HelpSyncCommand {
|
|
6269
6301
|
type: "callback";
|
6270
6302
|
value: string;
|
6271
6303
|
} & {} & {
|
6272
|
-
commandType?: "object" | "
|
6304
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6273
6305
|
object?: string | undefined;
|
6274
6306
|
hoverTooltip?: boolean | undefined;
|
6275
6307
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6277,7 +6309,7 @@ export declare class HelpSyncCommand {
|
|
6277
6309
|
type: "link";
|
6278
6310
|
value: string;
|
6279
6311
|
} & {} & {
|
6280
|
-
commandType?: "object" | "
|
6312
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6281
6313
|
object?: string | undefined;
|
6282
6314
|
hoverTooltip?: boolean | undefined;
|
6283
6315
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6285,7 +6317,7 @@ export declare class HelpSyncCommand {
|
|
6285
6317
|
type: "click" | "clickByXpath" | "clickBySelector";
|
6286
6318
|
value: string[];
|
6287
6319
|
} & {} & {
|
6288
|
-
commandType?: "object" | "
|
6320
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6289
6321
|
object?: string | undefined;
|
6290
6322
|
hoverTooltip?: boolean | undefined;
|
6291
6323
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6293,7 +6325,7 @@ export declare class HelpSyncCommand {
|
|
6293
6325
|
type: "builtin";
|
6294
6326
|
value: string;
|
6295
6327
|
} & {} & {
|
6296
|
-
commandType?: "object" | "
|
6328
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6297
6329
|
object?: string | undefined;
|
6298
6330
|
hoverTooltip?: boolean | undefined;
|
6299
6331
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6301,7 +6333,7 @@ export declare class HelpSyncCommand {
|
|
6301
6333
|
type: "webhook";
|
6302
6334
|
value: string;
|
6303
6335
|
} & {} & {
|
6304
|
-
commandType?: "object" | "
|
6336
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6305
6337
|
object?: string | undefined;
|
6306
6338
|
hoverTooltip?: boolean | undefined;
|
6307
6339
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6309,7 +6341,7 @@ export declare class HelpSyncCommand {
|
|
6309
6341
|
type: "script";
|
6310
6342
|
value: string;
|
6311
6343
|
} & {} & {
|
6312
|
-
commandType?: "object" | "
|
6344
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6313
6345
|
object?: string | undefined;
|
6314
6346
|
hoverTooltip?: boolean | undefined;
|
6315
6347
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6330,7 +6362,7 @@ export declare class HelpSyncCommand {
|
|
6330
6362
|
onError?: string | undefined;
|
6331
6363
|
};
|
6332
6364
|
} & {} & {
|
6333
|
-
commandType?: "object" | "
|
6365
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6334
6366
|
object?: string | undefined;
|
6335
6367
|
hoverTooltip?: boolean | undefined;
|
6336
6368
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6338,7 +6370,7 @@ export declare class HelpSyncCommand {
|
|
6338
6370
|
type: "appcues";
|
6339
6371
|
value: string;
|
6340
6372
|
} & {} & {
|
6341
|
-
commandType?: "object" | "
|
6373
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6342
6374
|
object?: string | undefined;
|
6343
6375
|
hoverTooltip?: boolean | undefined;
|
6344
6376
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6346,7 +6378,7 @@ export declare class HelpSyncCommand {
|
|
6346
6378
|
type: "video";
|
6347
6379
|
value: string;
|
6348
6380
|
} & {} & {
|
6349
|
-
commandType?: "object" | "
|
6381
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6350
6382
|
object?: string | undefined;
|
6351
6383
|
hoverTooltip?: boolean | undefined;
|
6352
6384
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6354,7 +6386,7 @@ export declare class HelpSyncCommand {
|
|
6354
6386
|
type: "helpdoc";
|
6355
6387
|
value: string;
|
6356
6388
|
} & {} & {
|
6357
|
-
commandType?: "object" | "
|
6389
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6358
6390
|
object?: string | undefined;
|
6359
6391
|
hoverTooltip?: boolean | undefined;
|
6360
6392
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6509,7 +6541,7 @@ export declare class HelpSyncCommand {
|
|
6509
6541
|
};
|
6510
6542
|
tags: string[];
|
6511
6543
|
availability_rules: ({
|
6512
|
-
type: "url" | "
|
6544
|
+
type: "url" | "element" | "context";
|
6513
6545
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6514
6546
|
} & {
|
6515
6547
|
field?: string | undefined;
|
@@ -6517,7 +6549,7 @@ export declare class HelpSyncCommand {
|
|
6517
6549
|
reason?: string | undefined;
|
6518
6550
|
})[];
|
6519
6551
|
recommend_rules: (({
|
6520
|
-
type: "url" | "
|
6552
|
+
type: "url" | "element" | "context";
|
6521
6553
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6522
6554
|
} & {
|
6523
6555
|
field?: string | undefined;
|
@@ -6542,6 +6574,7 @@ export declare class HelpSyncCommand {
|
|
6542
6574
|
category: number | null;
|
6543
6575
|
sort_key: number | null;
|
6544
6576
|
icon: string | null;
|
6577
|
+
image: string | null;
|
6545
6578
|
celebrate: boolean | {
|
6546
6579
|
angle?: number | undefined;
|
6547
6580
|
spread?: number | undefined;
|
@@ -6562,12 +6595,12 @@ export declare class HelpSyncCommand {
|
|
6562
6595
|
hotkey_mac: string;
|
6563
6596
|
hotkey_win: string;
|
6564
6597
|
detail: string | ({
|
6565
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
6598
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
6566
6599
|
value: string;
|
6567
6600
|
} & {
|
6568
6601
|
position?: "inline" | "popover" | undefined;
|
6569
6602
|
}) | (string | ({
|
6570
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
6603
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
6571
6604
|
value: string;
|
6572
6605
|
} & {
|
6573
6606
|
position?: "inline" | "popover" | undefined;
|
@@ -6584,7 +6617,7 @@ export declare class HelpSyncCommand {
|
|
6584
6617
|
type: "admin";
|
6585
6618
|
value: string;
|
6586
6619
|
} & {} & {
|
6587
|
-
commandType?: "object" | "
|
6620
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6588
6621
|
object?: string | undefined;
|
6589
6622
|
hoverTooltip?: boolean | undefined;
|
6590
6623
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6592,7 +6625,7 @@ export declare class HelpSyncCommand {
|
|
6592
6625
|
type: "callback";
|
6593
6626
|
value: string;
|
6594
6627
|
} & {} & {
|
6595
|
-
commandType?: "object" | "
|
6628
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6596
6629
|
object?: string | undefined;
|
6597
6630
|
hoverTooltip?: boolean | undefined;
|
6598
6631
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6600,7 +6633,7 @@ export declare class HelpSyncCommand {
|
|
6600
6633
|
type: "link";
|
6601
6634
|
value: string;
|
6602
6635
|
} & {} & {
|
6603
|
-
commandType?: "object" | "
|
6636
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6604
6637
|
object?: string | undefined;
|
6605
6638
|
hoverTooltip?: boolean | undefined;
|
6606
6639
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6608,7 +6641,7 @@ export declare class HelpSyncCommand {
|
|
6608
6641
|
type: "click" | "clickByXpath" | "clickBySelector";
|
6609
6642
|
value: string[];
|
6610
6643
|
} & {} & {
|
6611
|
-
commandType?: "object" | "
|
6644
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6612
6645
|
object?: string | undefined;
|
6613
6646
|
hoverTooltip?: boolean | undefined;
|
6614
6647
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6616,7 +6649,7 @@ export declare class HelpSyncCommand {
|
|
6616
6649
|
type: "builtin";
|
6617
6650
|
value: string;
|
6618
6651
|
} & {} & {
|
6619
|
-
commandType?: "object" | "
|
6652
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6620
6653
|
object?: string | undefined;
|
6621
6654
|
hoverTooltip?: boolean | undefined;
|
6622
6655
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6624,7 +6657,7 @@ export declare class HelpSyncCommand {
|
|
6624
6657
|
type: "webhook";
|
6625
6658
|
value: string;
|
6626
6659
|
} & {} & {
|
6627
|
-
commandType?: "object" | "
|
6660
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6628
6661
|
object?: string | undefined;
|
6629
6662
|
hoverTooltip?: boolean | undefined;
|
6630
6663
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6632,7 +6665,7 @@ export declare class HelpSyncCommand {
|
|
6632
6665
|
type: "script";
|
6633
6666
|
value: string;
|
6634
6667
|
} & {} & {
|
6635
|
-
commandType?: "object" | "
|
6668
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6636
6669
|
object?: string | undefined;
|
6637
6670
|
hoverTooltip?: boolean | undefined;
|
6638
6671
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6653,7 +6686,7 @@ export declare class HelpSyncCommand {
|
|
6653
6686
|
onError?: string | undefined;
|
6654
6687
|
};
|
6655
6688
|
} & {} & {
|
6656
|
-
commandType?: "object" | "
|
6689
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6657
6690
|
object?: string | undefined;
|
6658
6691
|
hoverTooltip?: boolean | undefined;
|
6659
6692
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6661,7 +6694,7 @@ export declare class HelpSyncCommand {
|
|
6661
6694
|
type: "appcues";
|
6662
6695
|
value: string;
|
6663
6696
|
} & {} & {
|
6664
|
-
commandType?: "object" | "
|
6697
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6665
6698
|
object?: string | undefined;
|
6666
6699
|
hoverTooltip?: boolean | undefined;
|
6667
6700
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6669,7 +6702,7 @@ export declare class HelpSyncCommand {
|
|
6669
6702
|
type: "video";
|
6670
6703
|
value: string;
|
6671
6704
|
} & {} & {
|
6672
|
-
commandType?: "object" | "
|
6705
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6673
6706
|
object?: string | undefined;
|
6674
6707
|
hoverTooltip?: boolean | undefined;
|
6675
6708
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6677,7 +6710,7 @@ export declare class HelpSyncCommand {
|
|
6677
6710
|
type: "helpdoc";
|
6678
6711
|
value: string;
|
6679
6712
|
} & {} & {
|
6680
|
-
commandType?: "object" | "
|
6713
|
+
commandType?: "object" | "help" | "independent" | undefined;
|
6681
6714
|
object?: string | undefined;
|
6682
6715
|
hoverTooltip?: boolean | undefined;
|
6683
6716
|
operation?: "self" | "router" | "blank" | undefined;
|
@@ -6832,7 +6865,7 @@ export declare class HelpSyncCommand {
|
|
6832
6865
|
};
|
6833
6866
|
tags: string[];
|
6834
6867
|
availability_rules: ({
|
6835
|
-
type: "url" | "
|
6868
|
+
type: "url" | "element" | "context";
|
6836
6869
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6837
6870
|
} & {
|
6838
6871
|
field?: string | undefined;
|
@@ -6840,7 +6873,7 @@ export declare class HelpSyncCommand {
|
|
6840
6873
|
reason?: string | undefined;
|
6841
6874
|
})[];
|
6842
6875
|
recommend_rules: (({
|
6843
|
-
type: "url" | "
|
6876
|
+
type: "url" | "element" | "context";
|
6844
6877
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6845
6878
|
} & {
|
6846
6879
|
field?: string | undefined;
|
@@ -6865,6 +6898,7 @@ export declare class HelpSyncCommand {
|
|
6865
6898
|
category: number | null;
|
6866
6899
|
sort_key: number | null;
|
6867
6900
|
icon: string | null;
|
6901
|
+
image: string | null;
|
6868
6902
|
celebrate: boolean | {
|
6869
6903
|
angle?: number | undefined;
|
6870
6904
|
spread?: number | undefined;
|
@@ -6885,12 +6919,12 @@ export declare class HelpSyncCommand {
|
|
6885
6919
|
hotkey_mac: string;
|
6886
6920
|
hotkey_win: string;
|
6887
6921
|
detail: string | ({
|
6888
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
6922
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
6889
6923
|
value: string;
|
6890
6924
|
} & {
|
6891
6925
|
position?: "inline" | "popover" | undefined;
|
6892
6926
|
}) | (string | ({
|
6893
|
-
type: "html" | "video" | "plaintext" | "markdown" | "react" |
|
6927
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | "component";
|
6894
6928
|
value: string;
|
6895
6929
|
} & {
|
6896
6930
|
position?: "inline" | "popover" | undefined;
|