commandbar 1.7.1 → 1.7.2
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.js +1 -1
- package/build/commandbar-js/src/init.d.ts +1 -7
- package/build/internal/src/client/AnalyticsEventTypes.d.ts +1 -1
- package/build/internal/src/client/CommandBarClientSDK.d.ts +18 -5
- package/build/internal/src/client/CommandBarSDK.d.ts +5 -3
- package/build/internal/src/client/EventHandler.d.ts +26 -2
- package/build/internal/src/client/globals.d.ts +1 -0
- package/build/internal/src/client/symbols.d.ts +1 -0
- package/build/internal/src/middleware/CommandFromClientV.d.ts +4 -2
- package/build/internal/src/middleware/OrganizationV.d.ts +8 -2
- package/build/internal/src/middleware/ResourceSettingsV.d.ts +4 -0
- package/build/internal/src/middleware/command.d.ts +100 -62
- package/build/internal/src/middleware/commandCategory.d.ts +32 -0
- package/build/internal/src/middleware/detailPreview.d.ts +1 -0
- package/build/internal/src/middleware/helpers/rules.d.ts +5 -5
- package/build/internal/src/middleware/nudge.d.ts +56 -8
- package/build/internal/src/middleware/organization.d.ts +26 -8
- package/build/internal/src/middleware/types.d.ts +15 -1
- package/package.json +3 -3
- package/src/init.ts +1 -8
- package/src/snippet.ts +2 -2
- package/webpack.config.js +5 -0
@@ -365,7 +365,7 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
365
365
|
}>]>]>>;
|
366
366
|
tags: t.ArrayC<t.StringC>;
|
367
367
|
availability_rules: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
368
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
368
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
369
369
|
operator: t.KeyofC<{
|
370
370
|
includes: null;
|
371
371
|
endsWith: null;
|
@@ -398,7 +398,7 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
398
398
|
value: t.UnionC<[t.UndefinedC, t.NullC]>;
|
399
399
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
400
400
|
}>]>, t.IntersectionC<[t.TypeC<{
|
401
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
401
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
402
402
|
operator: t.KeyofC<{
|
403
403
|
includes: null;
|
404
404
|
endsWith: null;
|
@@ -434,6 +434,8 @@ 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
|
+
icon_color: t.UnionC<[t.StringC, t.NullC]>;
|
438
|
+
image_color: t.UnionC<[t.StringC, t.NullC]>;
|
437
439
|
image: t.UnionC<[t.StringC, t.NullC]>;
|
438
440
|
celebrate: t.UnionC<[t.BooleanC, t.PartialC<{
|
439
441
|
angle: t.NumberC;
|
@@ -718,7 +720,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
718
720
|
}>]>]>>;
|
719
721
|
tags: t.ArrayC<t.StringC>;
|
720
722
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
721
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
723
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
722
724
|
operator: t.KeyofC<{
|
723
725
|
includes: null;
|
724
726
|
endsWith: null;
|
@@ -748,7 +750,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
748
750
|
}>, t.PartialC<{
|
749
751
|
reason: t.StringC;
|
750
752
|
}>]>]>>, t.ArrayC<t.IntersectionC<[t.TypeC<{
|
751
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
753
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
752
754
|
operator: t.KeyofC<{
|
753
755
|
includes: null;
|
754
756
|
endsWith: null;
|
@@ -781,7 +783,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
781
783
|
value: t.UnionC<[t.UndefinedC, t.NullC]>;
|
782
784
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
783
785
|
}>]>, t.IntersectionC<[t.TypeC<{
|
784
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
786
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
785
787
|
operator: t.KeyofC<{
|
786
788
|
includes: null;
|
787
789
|
endsWith: null;
|
@@ -818,7 +820,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
818
820
|
value: t.UnionC<[t.UndefinedC, t.NullC]>;
|
819
821
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
820
822
|
}>]>, t.IntersectionC<[t.TypeC<{
|
821
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
823
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
822
824
|
operator: t.KeyofC<{
|
823
825
|
includes: null;
|
824
826
|
endsWith: null;
|
@@ -854,6 +856,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
854
856
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
855
857
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
856
858
|
icon: t.UnionC<[t.StringC, t.NullC]>;
|
859
|
+
icon_color: t.UnionC<[t.StringC, t.NullC]>;
|
860
|
+
image_color: t.UnionC<[t.StringC, t.NullC]>;
|
857
861
|
image: t.UnionC<[t.StringC, t.NullC]>;
|
858
862
|
celebrate: t.UnionC<[t.BooleanC, t.PartialC<{
|
859
863
|
angle: t.NumberC;
|
@@ -1150,7 +1154,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1150
1154
|
}>]>]>>;
|
1151
1155
|
tags: t.ArrayC<t.StringC>;
|
1152
1156
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
1153
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
1157
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
1154
1158
|
operator: t.KeyofC<{
|
1155
1159
|
includes: null;
|
1156
1160
|
endsWith: null;
|
@@ -1180,7 +1184,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1180
1184
|
}>, t.PartialC<{
|
1181
1185
|
reason: t.StringC;
|
1182
1186
|
}>]>]>>, t.ArrayC<t.IntersectionC<[t.TypeC<{
|
1183
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
1187
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
1184
1188
|
operator: t.KeyofC<{
|
1185
1189
|
includes: null;
|
1186
1190
|
endsWith: null;
|
@@ -1213,7 +1217,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1213
1217
|
value: t.UnionC<[t.UndefinedC, t.NullC]>;
|
1214
1218
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
1215
1219
|
}>]>, t.IntersectionC<[t.TypeC<{
|
1216
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
1220
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
1217
1221
|
operator: t.KeyofC<{
|
1218
1222
|
includes: null;
|
1219
1223
|
endsWith: null;
|
@@ -1250,7 +1254,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1250
1254
|
value: t.UnionC<[t.UndefinedC, t.NullC]>;
|
1251
1255
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
1252
1256
|
}>]>, t.IntersectionC<[t.TypeC<{
|
1253
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
1257
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
1254
1258
|
operator: t.KeyofC<{
|
1255
1259
|
includes: null;
|
1256
1260
|
endsWith: null;
|
@@ -1286,6 +1290,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1286
1290
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
1287
1291
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
1288
1292
|
icon: t.UnionC<[t.StringC, t.NullC]>;
|
1293
|
+
icon_color: t.UnionC<[t.StringC, t.NullC]>;
|
1294
|
+
image_color: t.UnionC<[t.StringC, t.NullC]>;
|
1289
1295
|
image: t.UnionC<[t.StringC, t.NullC]>;
|
1290
1296
|
celebrate: t.UnionC<[t.BooleanC, t.PartialC<{
|
1291
1297
|
angle: t.NumberC;
|
@@ -1580,14 +1586,14 @@ export declare class Command {
|
|
1580
1586
|
};
|
1581
1587
|
tags: string[];
|
1582
1588
|
availability_rules: ({
|
1583
|
-
type: "url" | "element" | "context";
|
1589
|
+
type: "url" | "element" | "context" | "event_count";
|
1584
1590
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1585
1591
|
} & {
|
1586
1592
|
field?: string | undefined;
|
1587
1593
|
value?: string | undefined;
|
1588
1594
|
reason?: string | undefined;
|
1589
1595
|
})[] | (({
|
1590
|
-
type: "url" | "element" | "context";
|
1596
|
+
type: "url" | "element" | "context" | "event_count";
|
1591
1597
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1592
1598
|
} & {
|
1593
1599
|
field?: string | undefined;
|
@@ -1600,7 +1606,7 @@ export declare class Command {
|
|
1600
1606
|
reason?: string | undefined;
|
1601
1607
|
}))[];
|
1602
1608
|
recommend_rules: (({
|
1603
|
-
type: "url" | "element" | "context";
|
1609
|
+
type: "url" | "element" | "context" | "event_count";
|
1604
1610
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1605
1611
|
} & {
|
1606
1612
|
field?: string | undefined;
|
@@ -1614,7 +1620,7 @@ export declare class Command {
|
|
1614
1620
|
value?: null | undefined;
|
1615
1621
|
reason?: null | undefined;
|
1616
1622
|
}))[] | (({
|
1617
|
-
type: "url" | "element" | "context";
|
1623
|
+
type: "url" | "element" | "context" | "event_count";
|
1618
1624
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1619
1625
|
} & {
|
1620
1626
|
field?: string | undefined;
|
@@ -1644,6 +1650,8 @@ export declare class Command {
|
|
1644
1650
|
category: number | null;
|
1645
1651
|
sort_key: number | null;
|
1646
1652
|
icon: string | null;
|
1653
|
+
icon_color: string | null;
|
1654
|
+
image_color: string | null;
|
1647
1655
|
image: string | null;
|
1648
1656
|
celebrate: boolean | {
|
1649
1657
|
angle?: number | undefined;
|
@@ -1935,14 +1943,14 @@ export declare class Command {
|
|
1935
1943
|
};
|
1936
1944
|
tags: string[];
|
1937
1945
|
availability_rules: ({
|
1938
|
-
type: "url" | "element" | "context";
|
1946
|
+
type: "url" | "element" | "context" | "event_count";
|
1939
1947
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1940
1948
|
} & {
|
1941
1949
|
field?: string | undefined;
|
1942
1950
|
value?: string | undefined;
|
1943
1951
|
reason?: string | undefined;
|
1944
1952
|
})[] | (({
|
1945
|
-
type: "url" | "element" | "context";
|
1953
|
+
type: "url" | "element" | "context" | "event_count";
|
1946
1954
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1947
1955
|
} & {
|
1948
1956
|
field?: string | undefined;
|
@@ -1955,7 +1963,7 @@ export declare class Command {
|
|
1955
1963
|
reason?: string | undefined;
|
1956
1964
|
}))[];
|
1957
1965
|
recommend_rules: (({
|
1958
|
-
type: "url" | "element" | "context";
|
1966
|
+
type: "url" | "element" | "context" | "event_count";
|
1959
1967
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1960
1968
|
} & {
|
1961
1969
|
field?: string | undefined;
|
@@ -1969,7 +1977,7 @@ export declare class Command {
|
|
1969
1977
|
value?: null | undefined;
|
1970
1978
|
reason?: null | undefined;
|
1971
1979
|
}))[] | (({
|
1972
|
-
type: "url" | "element" | "context";
|
1980
|
+
type: "url" | "element" | "context" | "event_count";
|
1973
1981
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1974
1982
|
} & {
|
1975
1983
|
field?: string | undefined;
|
@@ -1999,6 +2007,8 @@ export declare class Command {
|
|
1999
2007
|
category: number | null;
|
2000
2008
|
sort_key: number | null;
|
2001
2009
|
icon: string | null;
|
2010
|
+
icon_color: string | null;
|
2011
|
+
image_color: string | null;
|
2002
2012
|
image: string | null;
|
2003
2013
|
celebrate: boolean | {
|
2004
2014
|
angle?: number | undefined;
|
@@ -2291,14 +2301,14 @@ export declare class Command {
|
|
2291
2301
|
};
|
2292
2302
|
tags: string[];
|
2293
2303
|
availability_rules: ({
|
2294
|
-
type: "url" | "element" | "context";
|
2304
|
+
type: "url" | "element" | "context" | "event_count";
|
2295
2305
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2296
2306
|
} & {
|
2297
2307
|
field?: string | undefined;
|
2298
2308
|
value?: string | undefined;
|
2299
2309
|
reason?: string | undefined;
|
2300
2310
|
})[] | (({
|
2301
|
-
type: "url" | "element" | "context";
|
2311
|
+
type: "url" | "element" | "context" | "event_count";
|
2302
2312
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2303
2313
|
} & {
|
2304
2314
|
field?: string | undefined;
|
@@ -2311,7 +2321,7 @@ export declare class Command {
|
|
2311
2321
|
reason?: string | undefined;
|
2312
2322
|
}))[];
|
2313
2323
|
recommend_rules: (({
|
2314
|
-
type: "url" | "element" | "context";
|
2324
|
+
type: "url" | "element" | "context" | "event_count";
|
2315
2325
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2316
2326
|
} & {
|
2317
2327
|
field?: string | undefined;
|
@@ -2325,7 +2335,7 @@ export declare class Command {
|
|
2325
2335
|
value?: null | undefined;
|
2326
2336
|
reason?: null | undefined;
|
2327
2337
|
}))[] | (({
|
2328
|
-
type: "url" | "element" | "context";
|
2338
|
+
type: "url" | "element" | "context" | "event_count";
|
2329
2339
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2330
2340
|
} & {
|
2331
2341
|
field?: string | undefined;
|
@@ -2355,6 +2365,8 @@ export declare class Command {
|
|
2355
2365
|
category: number | null;
|
2356
2366
|
sort_key: number | null;
|
2357
2367
|
icon: string | null;
|
2368
|
+
icon_color: string | null;
|
2369
|
+
image_color: string | null;
|
2358
2370
|
image: string | null;
|
2359
2371
|
celebrate: boolean | {
|
2360
2372
|
angle?: number | undefined;
|
@@ -2646,14 +2658,14 @@ export declare class Command {
|
|
2646
2658
|
};
|
2647
2659
|
tags: string[];
|
2648
2660
|
availability_rules: ({
|
2649
|
-
type: "url" | "element" | "context";
|
2661
|
+
type: "url" | "element" | "context" | "event_count";
|
2650
2662
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2651
2663
|
} & {
|
2652
2664
|
field?: string | undefined;
|
2653
2665
|
value?: string | undefined;
|
2654
2666
|
reason?: string | undefined;
|
2655
2667
|
})[] | (({
|
2656
|
-
type: "url" | "element" | "context";
|
2668
|
+
type: "url" | "element" | "context" | "event_count";
|
2657
2669
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2658
2670
|
} & {
|
2659
2671
|
field?: string | undefined;
|
@@ -2666,7 +2678,7 @@ export declare class Command {
|
|
2666
2678
|
reason?: string | undefined;
|
2667
2679
|
}))[];
|
2668
2680
|
recommend_rules: (({
|
2669
|
-
type: "url" | "element" | "context";
|
2681
|
+
type: "url" | "element" | "context" | "event_count";
|
2670
2682
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2671
2683
|
} & {
|
2672
2684
|
field?: string | undefined;
|
@@ -2680,7 +2692,7 @@ export declare class Command {
|
|
2680
2692
|
value?: null | undefined;
|
2681
2693
|
reason?: null | undefined;
|
2682
2694
|
}))[] | (({
|
2683
|
-
type: "url" | "element" | "context";
|
2695
|
+
type: "url" | "element" | "context" | "event_count";
|
2684
2696
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2685
2697
|
} & {
|
2686
2698
|
field?: string | undefined;
|
@@ -2710,6 +2722,8 @@ export declare class Command {
|
|
2710
2722
|
category: number | null;
|
2711
2723
|
sort_key: number | null;
|
2712
2724
|
icon: string | null;
|
2725
|
+
icon_color: string | null;
|
2726
|
+
image_color: string | null;
|
2713
2727
|
image: string | null;
|
2714
2728
|
celebrate: boolean | {
|
2715
2729
|
angle?: number | undefined;
|
@@ -3004,14 +3018,14 @@ export declare class Command {
|
|
3004
3018
|
};
|
3005
3019
|
tags: string[];
|
3006
3020
|
availability_rules: ({
|
3007
|
-
type: "url" | "element" | "context";
|
3021
|
+
type: "url" | "element" | "context" | "event_count";
|
3008
3022
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3009
3023
|
} & {
|
3010
3024
|
field?: string | undefined;
|
3011
3025
|
value?: string | undefined;
|
3012
3026
|
reason?: string | undefined;
|
3013
3027
|
})[] | (({
|
3014
|
-
type: "url" | "element" | "context";
|
3028
|
+
type: "url" | "element" | "context" | "event_count";
|
3015
3029
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3016
3030
|
} & {
|
3017
3031
|
field?: string | undefined;
|
@@ -3024,7 +3038,7 @@ export declare class Command {
|
|
3024
3038
|
reason?: string | undefined;
|
3025
3039
|
}))[];
|
3026
3040
|
recommend_rules: (({
|
3027
|
-
type: "url" | "element" | "context";
|
3041
|
+
type: "url" | "element" | "context" | "event_count";
|
3028
3042
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3029
3043
|
} & {
|
3030
3044
|
field?: string | undefined;
|
@@ -3038,7 +3052,7 @@ export declare class Command {
|
|
3038
3052
|
value?: null | undefined;
|
3039
3053
|
reason?: null | undefined;
|
3040
3054
|
}))[] | (({
|
3041
|
-
type: "url" | "element" | "context";
|
3055
|
+
type: "url" | "element" | "context" | "event_count";
|
3042
3056
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3043
3057
|
} & {
|
3044
3058
|
field?: string | undefined;
|
@@ -3068,6 +3082,8 @@ export declare class Command {
|
|
3068
3082
|
category: number | null;
|
3069
3083
|
sort_key: number | null;
|
3070
3084
|
icon: string | null;
|
3085
|
+
icon_color: string | null;
|
3086
|
+
image_color: string | null;
|
3071
3087
|
image: string | null;
|
3072
3088
|
celebrate: boolean | {
|
3073
3089
|
angle?: number | undefined;
|
@@ -3329,6 +3345,8 @@ export declare class Command {
|
|
3329
3345
|
} | undefined;
|
3330
3346
|
category?: string | number | null | undefined;
|
3331
3347
|
icon?: string | null | undefined;
|
3348
|
+
icon_color?: string | null | undefined;
|
3349
|
+
image_color?: string | null | undefined;
|
3332
3350
|
image?: string | null | undefined;
|
3333
3351
|
celebrate?: boolean | {
|
3334
3352
|
angle?: number | undefined;
|
@@ -3345,7 +3363,7 @@ export declare class Command {
|
|
3345
3363
|
random?: any;
|
3346
3364
|
} | null | undefined;
|
3347
3365
|
availability_rules?: ({
|
3348
|
-
type: "url" | "element" | "context";
|
3366
|
+
type: "url" | "element" | "context" | "event_count";
|
3349
3367
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3350
3368
|
} & {
|
3351
3369
|
field?: string | undefined;
|
@@ -3353,7 +3371,7 @@ export declare class Command {
|
|
3353
3371
|
reason?: string | undefined;
|
3354
3372
|
})[] | undefined;
|
3355
3373
|
recommend_rules?: (({
|
3356
|
-
type: "url" | "element" | "context";
|
3374
|
+
type: "url" | "element" | "context" | "event_count";
|
3357
3375
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3358
3376
|
} & {
|
3359
3377
|
field?: string | undefined;
|
@@ -3637,7 +3655,7 @@ export declare class Command {
|
|
3637
3655
|
};
|
3638
3656
|
tags: string[];
|
3639
3657
|
availability_rules: ({
|
3640
|
-
type: "url" | "element" | "context";
|
3658
|
+
type: "url" | "element" | "context" | "event_count";
|
3641
3659
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3642
3660
|
} & {
|
3643
3661
|
field?: string | undefined;
|
@@ -3645,7 +3663,7 @@ export declare class Command {
|
|
3645
3663
|
reason?: string | undefined;
|
3646
3664
|
})[];
|
3647
3665
|
recommend_rules: (({
|
3648
|
-
type: "url" | "element" | "context";
|
3666
|
+
type: "url" | "element" | "context" | "event_count";
|
3649
3667
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3650
3668
|
} & {
|
3651
3669
|
field?: string | undefined;
|
@@ -3670,6 +3688,8 @@ export declare class Command {
|
|
3670
3688
|
category: number | null;
|
3671
3689
|
sort_key: number | null;
|
3672
3690
|
icon: string | null;
|
3691
|
+
icon_color: string | null;
|
3692
|
+
image_color: string | null;
|
3673
3693
|
image: string | null;
|
3674
3694
|
celebrate: boolean | {
|
3675
3695
|
angle?: number | undefined;
|
@@ -4077,14 +4097,14 @@ export declare class Command {
|
|
4077
4097
|
};
|
4078
4098
|
tags: string[];
|
4079
4099
|
availability_rules: ({
|
4080
|
-
type: "url" | "element" | "context";
|
4100
|
+
type: "url" | "element" | "context" | "event_count";
|
4081
4101
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4082
4102
|
} & {
|
4083
4103
|
field?: string | undefined;
|
4084
4104
|
value?: string | undefined;
|
4085
4105
|
reason?: string | undefined;
|
4086
4106
|
})[] | (({
|
4087
|
-
type: "url" | "element" | "context";
|
4107
|
+
type: "url" | "element" | "context" | "event_count";
|
4088
4108
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4089
4109
|
} & {
|
4090
4110
|
field?: string | undefined;
|
@@ -4097,7 +4117,7 @@ export declare class Command {
|
|
4097
4117
|
reason?: string | undefined;
|
4098
4118
|
}))[];
|
4099
4119
|
recommend_rules: (({
|
4100
|
-
type: "url" | "element" | "context";
|
4120
|
+
type: "url" | "element" | "context" | "event_count";
|
4101
4121
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4102
4122
|
} & {
|
4103
4123
|
field?: string | undefined;
|
@@ -4111,7 +4131,7 @@ export declare class Command {
|
|
4111
4131
|
value?: null | undefined;
|
4112
4132
|
reason?: null | undefined;
|
4113
4133
|
}))[] | (({
|
4114
|
-
type: "url" | "element" | "context";
|
4134
|
+
type: "url" | "element" | "context" | "event_count";
|
4115
4135
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4116
4136
|
} & {
|
4117
4137
|
field?: string | undefined;
|
@@ -4141,6 +4161,8 @@ export declare class Command {
|
|
4141
4161
|
category: number | null;
|
4142
4162
|
sort_key: number | null;
|
4143
4163
|
icon: string | null;
|
4164
|
+
icon_color: string | null;
|
4165
|
+
image_color: string | null;
|
4144
4166
|
image: string | null;
|
4145
4167
|
celebrate: boolean | {
|
4146
4168
|
angle?: number | undefined;
|
@@ -4433,14 +4455,14 @@ export declare class Command {
|
|
4433
4455
|
};
|
4434
4456
|
tags: string[];
|
4435
4457
|
availability_rules: ({
|
4436
|
-
type: "url" | "element" | "context";
|
4458
|
+
type: "url" | "element" | "context" | "event_count";
|
4437
4459
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4438
4460
|
} & {
|
4439
4461
|
field?: string | undefined;
|
4440
4462
|
value?: string | undefined;
|
4441
4463
|
reason?: string | undefined;
|
4442
4464
|
})[] | (({
|
4443
|
-
type: "url" | "element" | "context";
|
4465
|
+
type: "url" | "element" | "context" | "event_count";
|
4444
4466
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4445
4467
|
} & {
|
4446
4468
|
field?: string | undefined;
|
@@ -4453,7 +4475,7 @@ export declare class Command {
|
|
4453
4475
|
reason?: string | undefined;
|
4454
4476
|
}))[];
|
4455
4477
|
recommend_rules: (({
|
4456
|
-
type: "url" | "element" | "context";
|
4478
|
+
type: "url" | "element" | "context" | "event_count";
|
4457
4479
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4458
4480
|
} & {
|
4459
4481
|
field?: string | undefined;
|
@@ -4467,7 +4489,7 @@ export declare class Command {
|
|
4467
4489
|
value?: null | undefined;
|
4468
4490
|
reason?: null | undefined;
|
4469
4491
|
}))[] | (({
|
4470
|
-
type: "url" | "element" | "context";
|
4492
|
+
type: "url" | "element" | "context" | "event_count";
|
4471
4493
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4472
4494
|
} & {
|
4473
4495
|
field?: string | undefined;
|
@@ -4497,6 +4519,8 @@ export declare class Command {
|
|
4497
4519
|
category: number | null;
|
4498
4520
|
sort_key: number | null;
|
4499
4521
|
icon: string | null;
|
4522
|
+
icon_color: string | null;
|
4523
|
+
image_color: string | null;
|
4500
4524
|
image: string | null;
|
4501
4525
|
celebrate: boolean | {
|
4502
4526
|
angle?: number | undefined;
|
@@ -4788,14 +4812,14 @@ export declare class Command {
|
|
4788
4812
|
};
|
4789
4813
|
tags: string[];
|
4790
4814
|
availability_rules: ({
|
4791
|
-
type: "url" | "element" | "context";
|
4815
|
+
type: "url" | "element" | "context" | "event_count";
|
4792
4816
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4793
4817
|
} & {
|
4794
4818
|
field?: string | undefined;
|
4795
4819
|
value?: string | undefined;
|
4796
4820
|
reason?: string | undefined;
|
4797
4821
|
})[] | (({
|
4798
|
-
type: "url" | "element" | "context";
|
4822
|
+
type: "url" | "element" | "context" | "event_count";
|
4799
4823
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4800
4824
|
} & {
|
4801
4825
|
field?: string | undefined;
|
@@ -4808,7 +4832,7 @@ export declare class Command {
|
|
4808
4832
|
reason?: string | undefined;
|
4809
4833
|
}))[];
|
4810
4834
|
recommend_rules: (({
|
4811
|
-
type: "url" | "element" | "context";
|
4835
|
+
type: "url" | "element" | "context" | "event_count";
|
4812
4836
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4813
4837
|
} & {
|
4814
4838
|
field?: string | undefined;
|
@@ -4822,7 +4846,7 @@ export declare class Command {
|
|
4822
4846
|
value?: null | undefined;
|
4823
4847
|
reason?: null | undefined;
|
4824
4848
|
}))[] | (({
|
4825
|
-
type: "url" | "element" | "context";
|
4849
|
+
type: "url" | "element" | "context" | "event_count";
|
4826
4850
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4827
4851
|
} & {
|
4828
4852
|
field?: string | undefined;
|
@@ -4852,6 +4876,8 @@ export declare class Command {
|
|
4852
4876
|
category: number | null;
|
4853
4877
|
sort_key: number | null;
|
4854
4878
|
icon: string | null;
|
4879
|
+
icon_color: string | null;
|
4880
|
+
image_color: string | null;
|
4855
4881
|
image: string | null;
|
4856
4882
|
celebrate: boolean | {
|
4857
4883
|
angle?: number | undefined;
|
@@ -5144,14 +5170,14 @@ export declare class Command {
|
|
5144
5170
|
};
|
5145
5171
|
tags: string[];
|
5146
5172
|
availability_rules: ({
|
5147
|
-
type: "url" | "element" | "context";
|
5173
|
+
type: "url" | "element" | "context" | "event_count";
|
5148
5174
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5149
5175
|
} & {
|
5150
5176
|
field?: string | undefined;
|
5151
5177
|
value?: string | undefined;
|
5152
5178
|
reason?: string | undefined;
|
5153
5179
|
})[] | (({
|
5154
|
-
type: "url" | "element" | "context";
|
5180
|
+
type: "url" | "element" | "context" | "event_count";
|
5155
5181
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5156
5182
|
} & {
|
5157
5183
|
field?: string | undefined;
|
@@ -5164,7 +5190,7 @@ export declare class Command {
|
|
5164
5190
|
reason?: string | undefined;
|
5165
5191
|
}))[];
|
5166
5192
|
recommend_rules: (({
|
5167
|
-
type: "url" | "element" | "context";
|
5193
|
+
type: "url" | "element" | "context" | "event_count";
|
5168
5194
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5169
5195
|
} & {
|
5170
5196
|
field?: string | undefined;
|
@@ -5178,7 +5204,7 @@ export declare class Command {
|
|
5178
5204
|
value?: null | undefined;
|
5179
5205
|
reason?: null | undefined;
|
5180
5206
|
}))[] | (({
|
5181
|
-
type: "url" | "element" | "context";
|
5207
|
+
type: "url" | "element" | "context" | "event_count";
|
5182
5208
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5183
5209
|
} & {
|
5184
5210
|
field?: string | undefined;
|
@@ -5208,6 +5234,8 @@ export declare class Command {
|
|
5208
5234
|
category: number | null;
|
5209
5235
|
sort_key: number | null;
|
5210
5236
|
icon: string | null;
|
5237
|
+
icon_color: string | null;
|
5238
|
+
image_color: string | null;
|
5211
5239
|
image: string | null;
|
5212
5240
|
celebrate: boolean | {
|
5213
5241
|
angle?: number | undefined;
|
@@ -5499,14 +5527,14 @@ export declare class Command {
|
|
5499
5527
|
};
|
5500
5528
|
tags: string[];
|
5501
5529
|
availability_rules: ({
|
5502
|
-
type: "url" | "element" | "context";
|
5530
|
+
type: "url" | "element" | "context" | "event_count";
|
5503
5531
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5504
5532
|
} & {
|
5505
5533
|
field?: string | undefined;
|
5506
5534
|
value?: string | undefined;
|
5507
5535
|
reason?: string | undefined;
|
5508
5536
|
})[] | (({
|
5509
|
-
type: "url" | "element" | "context";
|
5537
|
+
type: "url" | "element" | "context" | "event_count";
|
5510
5538
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5511
5539
|
} & {
|
5512
5540
|
field?: string | undefined;
|
@@ -5519,7 +5547,7 @@ export declare class Command {
|
|
5519
5547
|
reason?: string | undefined;
|
5520
5548
|
}))[];
|
5521
5549
|
recommend_rules: (({
|
5522
|
-
type: "url" | "element" | "context";
|
5550
|
+
type: "url" | "element" | "context" | "event_count";
|
5523
5551
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5524
5552
|
} & {
|
5525
5553
|
field?: string | undefined;
|
@@ -5533,7 +5561,7 @@ export declare class Command {
|
|
5533
5561
|
value?: null | undefined;
|
5534
5562
|
reason?: null | undefined;
|
5535
5563
|
}))[] | (({
|
5536
|
-
type: "url" | "element" | "context";
|
5564
|
+
type: "url" | "element" | "context" | "event_count";
|
5537
5565
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5538
5566
|
} & {
|
5539
5567
|
field?: string | undefined;
|
@@ -5563,6 +5591,8 @@ export declare class Command {
|
|
5563
5591
|
category: number | null;
|
5564
5592
|
sort_key: number | null;
|
5565
5593
|
icon: string | null;
|
5594
|
+
icon_color: string | null;
|
5595
|
+
image_color: string | null;
|
5566
5596
|
image: string | null;
|
5567
5597
|
celebrate: boolean | {
|
5568
5598
|
angle?: number | undefined;
|
@@ -5854,7 +5884,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
5854
5884
|
}>]>]>>;
|
5855
5885
|
tags: t.ArrayC<t.StringC>;
|
5856
5886
|
availability_rules: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
5857
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
5887
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
5858
5888
|
operator: t.KeyofC<{
|
5859
5889
|
includes: null;
|
5860
5890
|
endsWith: null;
|
@@ -5887,7 +5917,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
5887
5917
|
value: t.UnionC<[t.UndefinedC, t.NullC]>;
|
5888
5918
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
5889
5919
|
}>]>, t.IntersectionC<[t.TypeC<{
|
5890
|
-
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">]>;
|
5920
|
+
type: t.UnionC<[t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"element">, t.LiteralC<"event_count">]>;
|
5891
5921
|
operator: t.KeyofC<{
|
5892
5922
|
includes: null;
|
5893
5923
|
endsWith: null;
|
@@ -5923,6 +5953,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
5923
5953
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
5924
5954
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
5925
5955
|
icon: t.UnionC<[t.StringC, t.NullC]>;
|
5956
|
+
icon_color: t.UnionC<[t.StringC, t.NullC]>;
|
5957
|
+
image_color: t.UnionC<[t.StringC, t.NullC]>;
|
5926
5958
|
image: t.UnionC<[t.StringC, t.NullC]>;
|
5927
5959
|
celebrate: t.UnionC<[t.BooleanC, t.PartialC<{
|
5928
5960
|
angle: t.NumberC;
|
@@ -6216,7 +6248,7 @@ export declare class HelpSyncCommand {
|
|
6216
6248
|
};
|
6217
6249
|
tags: string[];
|
6218
6250
|
availability_rules: ({
|
6219
|
-
type: "url" | "element" | "context";
|
6251
|
+
type: "url" | "element" | "context" | "event_count";
|
6220
6252
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6221
6253
|
} & {
|
6222
6254
|
field?: string | undefined;
|
@@ -6224,7 +6256,7 @@ export declare class HelpSyncCommand {
|
|
6224
6256
|
reason?: string | undefined;
|
6225
6257
|
})[];
|
6226
6258
|
recommend_rules: (({
|
6227
|
-
type: "url" | "element" | "context";
|
6259
|
+
type: "url" | "element" | "context" | "event_count";
|
6228
6260
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6229
6261
|
} & {
|
6230
6262
|
field?: string | undefined;
|
@@ -6249,6 +6281,8 @@ export declare class HelpSyncCommand {
|
|
6249
6281
|
category: number | null;
|
6250
6282
|
sort_key: number | null;
|
6251
6283
|
icon: string | null;
|
6284
|
+
icon_color: string | null;
|
6285
|
+
image_color: string | null;
|
6252
6286
|
image: string | null;
|
6253
6287
|
celebrate: boolean | {
|
6254
6288
|
angle?: number | undefined;
|
@@ -6541,7 +6575,7 @@ export declare class HelpSyncCommand {
|
|
6541
6575
|
};
|
6542
6576
|
tags: string[];
|
6543
6577
|
availability_rules: ({
|
6544
|
-
type: "url" | "element" | "context";
|
6578
|
+
type: "url" | "element" | "context" | "event_count";
|
6545
6579
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6546
6580
|
} & {
|
6547
6581
|
field?: string | undefined;
|
@@ -6549,7 +6583,7 @@ export declare class HelpSyncCommand {
|
|
6549
6583
|
reason?: string | undefined;
|
6550
6584
|
})[];
|
6551
6585
|
recommend_rules: (({
|
6552
|
-
type: "url" | "element" | "context";
|
6586
|
+
type: "url" | "element" | "context" | "event_count";
|
6553
6587
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6554
6588
|
} & {
|
6555
6589
|
field?: string | undefined;
|
@@ -6574,6 +6608,8 @@ export declare class HelpSyncCommand {
|
|
6574
6608
|
category: number | null;
|
6575
6609
|
sort_key: number | null;
|
6576
6610
|
icon: string | null;
|
6611
|
+
icon_color: string | null;
|
6612
|
+
image_color: string | null;
|
6577
6613
|
image: string | null;
|
6578
6614
|
celebrate: boolean | {
|
6579
6615
|
angle?: number | undefined;
|
@@ -6865,7 +6901,7 @@ export declare class HelpSyncCommand {
|
|
6865
6901
|
};
|
6866
6902
|
tags: string[];
|
6867
6903
|
availability_rules: ({
|
6868
|
-
type: "url" | "element" | "context";
|
6904
|
+
type: "url" | "element" | "context" | "event_count";
|
6869
6905
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6870
6906
|
} & {
|
6871
6907
|
field?: string | undefined;
|
@@ -6873,7 +6909,7 @@ export declare class HelpSyncCommand {
|
|
6873
6909
|
reason?: string | undefined;
|
6874
6910
|
})[];
|
6875
6911
|
recommend_rules: (({
|
6876
|
-
type: "url" | "element" | "context";
|
6912
|
+
type: "url" | "element" | "context" | "event_count";
|
6877
6913
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
6878
6914
|
} & {
|
6879
6915
|
field?: string | undefined;
|
@@ -6898,6 +6934,8 @@ export declare class HelpSyncCommand {
|
|
6898
6934
|
category: number | null;
|
6899
6935
|
sort_key: number | null;
|
6900
6936
|
icon: string | null;
|
6937
|
+
icon_color: string | null;
|
6938
|
+
image_color: string | null;
|
6901
6939
|
image: string | null;
|
6902
6940
|
celebrate: boolean | {
|
6903
6941
|
angle?: number | undefined;
|