commandbar 1.12.0 → 1.13.1
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/src/shared/services/analytics/EventHandler.d.ts +2 -0
- package/build/commandbar-js/src/index.js +1 -1
- package/build/commandbar-js/src/init.d.ts +10 -1
- package/build/commandbar-js/src/snippet.d.ts +0 -1
- package/build/internal/src/client/CommandBarClientSDK.d.ts +5 -0
- package/build/internal/src/client/CommandBarProxySDK.d.ts +2 -3
- package/build/internal/src/client/SDKConfig.d.ts +1 -0
- package/build/internal/src/client/symbols.d.ts +2 -0
- package/build/internal/src/middleware/CommandFromClientV.d.ts +7 -0
- package/build/internal/src/middleware/OrganizationV.d.ts +104 -12
- package/build/internal/src/middleware/additionalResource.d.ts +208 -118
- package/build/internal/src/middleware/api.d.ts +7 -7
- package/build/internal/src/middleware/chat.d.ts +23641 -12011
- package/build/internal/src/middleware/checklist.d.ts +221 -121
- package/build/internal/src/middleware/command.d.ts +2611 -2021
- package/build/internal/src/middleware/endUser.d.ts +0 -32
- package/build/internal/src/middleware/experienceTemplate.d.ts +407 -223
- package/build/internal/src/middleware/experiencesSearch.d.ts +818 -657
- package/build/internal/src/middleware/flags.d.ts +9 -8
- package/build/internal/src/middleware/helpDocsSearch.d.ts +586 -471
- package/build/internal/src/middleware/helpers/actions.d.ts +83 -30
- package/build/internal/src/middleware/helpers/commandTemplate.d.ts +32 -6
- package/build/internal/src/middleware/helpers/rules.d.ts +19 -4
- package/build/internal/src/middleware/keyword.d.ts +82 -0
- package/build/internal/src/middleware/network.d.ts +2 -2
- package/build/internal/src/middleware/nudge.d.ts +520 -247
- package/build/internal/src/middleware/organization.d.ts +886 -607
- package/build/internal/src/middleware/organizationSettings.d.ts +282 -114
- package/build/internal/src/middleware/profile.d.ts +1 -1
- package/build/internal/src/middleware/recommendationSet.d.ts +208 -118
- package/build/internal/src/middleware/theme.d.ts +7 -0
- package/build/internal/src/middleware/types.d.ts +21 -20
- package/package.json +1 -1
- package/src/init.ts +13 -2
- package/src/snippet.ts +1 -14
- package/build/commandbar/src/shared/services/analytics/event-queue.d.ts +0 -13
- package/build/commandbar/src/shared/services/analytics/v2/client.d.ts +0 -54
- package/build/commandbar/src/shared/services/analytics/v2/helpers.d.ts +0 -6
- package/build/commandbar/src/shared/services/analytics/v2/schema.d.ts +0 -152
- package/build/commandbar/src/shared/services/analytics/v2/types.d.ts +0 -4
- package/build/internal/src/client/CommandBarSDK.d.ts +0 -99
- package/build/internal/src/client/globals.d.ts +0 -27
- package/build/internal/src/util/dispatchCustomEvent.d.ts +0 -14
- package/build/internal/src/util/sentry.d.ts +0 -23
@@ -46,10 +46,18 @@ export declare const ChecklistItemV: t.IntersectionC<[t.TypeC<{
|
|
46
46
|
value: t.StringC;
|
47
47
|
}>, t.PartialC<{
|
48
48
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
49
|
+
meta: t.TypeC<{
|
50
|
+
command: t.StringC;
|
51
|
+
}>;
|
49
52
|
}>]>, t.TypeC<{
|
50
53
|
type: t.LiteralC<"open_chat">;
|
51
54
|
meta: t.TypeC<{
|
52
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"freshchat">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"zendesk_handoff">, t.LiteralC<"">]>;
|
55
|
+
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"freshchat">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"pylon">, t.LiteralC<"zendesk_handoff">, t.LiteralC<"">]>;
|
56
|
+
}>;
|
57
|
+
}>, t.TypeC<{
|
58
|
+
type: t.LiteralC<"chat_handoff">;
|
59
|
+
meta: t.TypeC<{
|
60
|
+
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"freshchat">, t.LiteralC<"zendesk">, t.LiteralC<"">]>;
|
53
61
|
}>;
|
54
62
|
}>, t.TypeC<{
|
55
63
|
type: t.LiteralC<"dismiss">;
|
@@ -73,9 +81,11 @@ export declare const ChecklistItemV: t.IntersectionC<[t.TypeC<{
|
|
73
81
|
categoryFilter: t.NumberC;
|
74
82
|
}>]>, t.TypeC<{
|
75
83
|
type: t.LiteralC<"open_helphub">;
|
76
|
-
}>, t.TypeC<{
|
84
|
+
}>, t.IntersectionC<[t.TypeC<{
|
77
85
|
type: t.LiteralC<"open_copilot">;
|
78
|
-
}
|
86
|
+
}>, t.PartialC<{
|
87
|
+
query: t.StringC;
|
88
|
+
}>]>]>;
|
79
89
|
celebrate: t.BooleanC;
|
80
90
|
}>, t.PartialC<{
|
81
91
|
description: t.StringC;
|
@@ -177,10 +187,18 @@ export declare const ChecklistBaseV: t.IntersectionC<[t.TypeC<{
|
|
177
187
|
value: t.StringC;
|
178
188
|
}>, t.PartialC<{
|
179
189
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
190
|
+
meta: t.TypeC<{
|
191
|
+
command: t.StringC;
|
192
|
+
}>;
|
180
193
|
}>]>, t.TypeC<{
|
181
194
|
type: t.LiteralC<"open_chat">;
|
182
195
|
meta: t.TypeC<{
|
183
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"freshchat">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"zendesk_handoff">, t.LiteralC<"">]>;
|
196
|
+
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"freshchat">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"pylon">, t.LiteralC<"zendesk_handoff">, t.LiteralC<"">]>;
|
197
|
+
}>;
|
198
|
+
}>, t.TypeC<{
|
199
|
+
type: t.LiteralC<"chat_handoff">;
|
200
|
+
meta: t.TypeC<{
|
201
|
+
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"freshchat">, t.LiteralC<"zendesk">, t.LiteralC<"">]>;
|
184
202
|
}>;
|
185
203
|
}>, t.TypeC<{
|
186
204
|
type: t.LiteralC<"dismiss">;
|
@@ -204,9 +222,11 @@ export declare const ChecklistBaseV: t.IntersectionC<[t.TypeC<{
|
|
204
222
|
categoryFilter: t.NumberC;
|
205
223
|
}>]>, t.TypeC<{
|
206
224
|
type: t.LiteralC<"open_helphub">;
|
207
|
-
}>, t.TypeC<{
|
225
|
+
}>, t.IntersectionC<[t.TypeC<{
|
208
226
|
type: t.LiteralC<"open_copilot">;
|
209
|
-
}
|
227
|
+
}>, t.PartialC<{
|
228
|
+
query: t.StringC;
|
229
|
+
}>]>]>;
|
210
230
|
celebrate: t.BooleanC;
|
211
231
|
}>, t.PartialC<{
|
212
232
|
description: t.StringC;
|
@@ -326,10 +346,18 @@ export declare const ChecklistV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
326
346
|
value: t.StringC;
|
327
347
|
}>, t.PartialC<{
|
328
348
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
349
|
+
meta: t.TypeC<{
|
350
|
+
command: t.StringC;
|
351
|
+
}>;
|
329
352
|
}>]>, t.TypeC<{
|
330
353
|
type: t.LiteralC<"open_chat">;
|
331
354
|
meta: t.TypeC<{
|
332
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"freshchat">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"zendesk_handoff">, t.LiteralC<"">]>;
|
355
|
+
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"freshchat">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"pylon">, t.LiteralC<"zendesk_handoff">, t.LiteralC<"">]>;
|
356
|
+
}>;
|
357
|
+
}>, t.TypeC<{
|
358
|
+
type: t.LiteralC<"chat_handoff">;
|
359
|
+
meta: t.TypeC<{
|
360
|
+
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"freshchat">, t.LiteralC<"zendesk">, t.LiteralC<"">]>;
|
333
361
|
}>;
|
334
362
|
}>, t.TypeC<{
|
335
363
|
type: t.LiteralC<"dismiss">;
|
@@ -353,9 +381,11 @@ export declare const ChecklistV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
353
381
|
categoryFilter: t.NumberC;
|
354
382
|
}>]>, t.TypeC<{
|
355
383
|
type: t.LiteralC<"open_helphub">;
|
356
|
-
}>, t.TypeC<{
|
384
|
+
}>, t.IntersectionC<[t.TypeC<{
|
357
385
|
type: t.LiteralC<"open_copilot">;
|
358
|
-
}
|
386
|
+
}>, t.PartialC<{
|
387
|
+
query: t.StringC;
|
388
|
+
}>]>]>;
|
359
389
|
celebrate: t.BooleanC;
|
360
390
|
}>, t.PartialC<{
|
361
391
|
description: t.StringC;
|
@@ -471,28 +501,38 @@ export declare class Checklist {
|
|
471
501
|
} & {
|
472
502
|
condition_group?: import("./helpers/rules").RuleExpression | null | undefined;
|
473
503
|
});
|
474
|
-
action: {
|
504
|
+
action: ({
|
505
|
+
type: "link";
|
506
|
+
value: string;
|
507
|
+
} & {
|
508
|
+
operation?: "self" | "router" | "blank" | undefined;
|
509
|
+
meta?: {
|
510
|
+
command: string;
|
511
|
+
} | undefined;
|
512
|
+
}) | {
|
513
|
+
type: "click" | "clickBySelector" | "clickByXpath";
|
514
|
+
value: string[];
|
515
|
+
} | {
|
475
516
|
type: "execute_command";
|
476
517
|
meta: {
|
477
518
|
command: string;
|
478
519
|
} & {
|
479
520
|
type?: "link" | "video" | "action" | "helpdoc" | undefined;
|
480
521
|
};
|
522
|
+
} | {
|
523
|
+
type: "no_action";
|
481
524
|
} | {
|
482
525
|
type: "click";
|
483
526
|
value: string;
|
484
527
|
} | {
|
485
|
-
type: "click" | "clickBySelector" | "clickByXpath";
|
486
|
-
value: string[];
|
487
|
-
} | ({
|
488
|
-
type: "link";
|
489
|
-
value: string;
|
490
|
-
} & {
|
491
|
-
operation?: "self" | "router" | "blank" | undefined;
|
492
|
-
}) | {
|
493
528
|
type: "open_chat";
|
494
529
|
meta: {
|
495
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "
|
530
|
+
type: "" | "hubspot" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "drift" | "pylon" | "zendesk_handoff";
|
531
|
+
};
|
532
|
+
} | {
|
533
|
+
type: "chat_handoff";
|
534
|
+
meta: {
|
535
|
+
type: "" | "intercom" | "freshchat" | "zendesk";
|
496
536
|
};
|
497
537
|
} | {
|
498
538
|
type: "dismiss";
|
@@ -501,14 +541,14 @@ export declare class Checklist {
|
|
501
541
|
} | {
|
502
542
|
type: "questlist";
|
503
543
|
value: number;
|
504
|
-
} | {
|
505
|
-
type: "step_back";
|
506
544
|
} | {
|
507
545
|
type: "nudge";
|
508
546
|
value: number;
|
509
547
|
} | {
|
510
548
|
type: "go_to_step";
|
511
549
|
value: number;
|
550
|
+
} | {
|
551
|
+
type: "step_back";
|
512
552
|
} | ({
|
513
553
|
type: "open_bar";
|
514
554
|
} & {
|
@@ -516,11 +556,11 @@ export declare class Checklist {
|
|
516
556
|
categoryFilter?: number | undefined;
|
517
557
|
}) | {
|
518
558
|
type: "open_helphub";
|
519
|
-
} | {
|
559
|
+
} | ({
|
520
560
|
type: "open_copilot";
|
521
|
-
}
|
522
|
-
|
523
|
-
};
|
561
|
+
} & {
|
562
|
+
query?: string | undefined;
|
563
|
+
});
|
524
564
|
celebrate: boolean;
|
525
565
|
} & {
|
526
566
|
description?: string | undefined;
|
@@ -635,28 +675,38 @@ export declare class Checklist {
|
|
635
675
|
} & {
|
636
676
|
condition_group?: import("./helpers/rules").RuleExpression | null | undefined;
|
637
677
|
});
|
638
|
-
action: {
|
678
|
+
action: ({
|
679
|
+
type: "link";
|
680
|
+
value: string;
|
681
|
+
} & {
|
682
|
+
operation?: "self" | "router" | "blank" | undefined;
|
683
|
+
meta?: {
|
684
|
+
command: string;
|
685
|
+
} | undefined;
|
686
|
+
}) | {
|
687
|
+
type: "click" | "clickBySelector" | "clickByXpath";
|
688
|
+
value: string[];
|
689
|
+
} | {
|
639
690
|
type: "execute_command";
|
640
691
|
meta: {
|
641
692
|
command: string;
|
642
693
|
} & {
|
643
694
|
type?: "link" | "video" | "action" | "helpdoc" | undefined;
|
644
695
|
};
|
696
|
+
} | {
|
697
|
+
type: "no_action";
|
645
698
|
} | {
|
646
699
|
type: "click";
|
647
700
|
value: string;
|
648
701
|
} | {
|
649
|
-
type: "click" | "clickBySelector" | "clickByXpath";
|
650
|
-
value: string[];
|
651
|
-
} | ({
|
652
|
-
type: "link";
|
653
|
-
value: string;
|
654
|
-
} & {
|
655
|
-
operation?: "self" | "router" | "blank" | undefined;
|
656
|
-
}) | {
|
657
702
|
type: "open_chat";
|
658
703
|
meta: {
|
659
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "
|
704
|
+
type: "" | "hubspot" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "drift" | "pylon" | "zendesk_handoff";
|
705
|
+
};
|
706
|
+
} | {
|
707
|
+
type: "chat_handoff";
|
708
|
+
meta: {
|
709
|
+
type: "" | "intercom" | "freshchat" | "zendesk";
|
660
710
|
};
|
661
711
|
} | {
|
662
712
|
type: "dismiss";
|
@@ -665,14 +715,14 @@ export declare class Checklist {
|
|
665
715
|
} | {
|
666
716
|
type: "questlist";
|
667
717
|
value: number;
|
668
|
-
} | {
|
669
|
-
type: "step_back";
|
670
718
|
} | {
|
671
719
|
type: "nudge";
|
672
720
|
value: number;
|
673
721
|
} | {
|
674
722
|
type: "go_to_step";
|
675
723
|
value: number;
|
724
|
+
} | {
|
725
|
+
type: "step_back";
|
676
726
|
} | ({
|
677
727
|
type: "open_bar";
|
678
728
|
} & {
|
@@ -680,11 +730,11 @@ export declare class Checklist {
|
|
680
730
|
categoryFilter?: number | undefined;
|
681
731
|
}) | {
|
682
732
|
type: "open_helphub";
|
683
|
-
} | {
|
733
|
+
} | ({
|
684
734
|
type: "open_copilot";
|
685
|
-
}
|
686
|
-
|
687
|
-
};
|
735
|
+
} & {
|
736
|
+
query?: string | undefined;
|
737
|
+
});
|
688
738
|
celebrate: boolean;
|
689
739
|
} & {
|
690
740
|
description?: string | undefined;
|
@@ -798,28 +848,38 @@ export declare class Checklist {
|
|
798
848
|
} & {
|
799
849
|
condition_group?: import("./helpers/rules").RuleExpression | null | undefined;
|
800
850
|
});
|
801
|
-
action: {
|
851
|
+
action: ({
|
852
|
+
type: "link";
|
853
|
+
value: string;
|
854
|
+
} & {
|
855
|
+
operation?: "self" | "router" | "blank" | undefined;
|
856
|
+
meta?: {
|
857
|
+
command: string;
|
858
|
+
} | undefined;
|
859
|
+
}) | {
|
860
|
+
type: "click" | "clickBySelector" | "clickByXpath";
|
861
|
+
value: string[];
|
862
|
+
} | {
|
802
863
|
type: "execute_command";
|
803
864
|
meta: {
|
804
865
|
command: string;
|
805
866
|
} & {
|
806
867
|
type?: "link" | "video" | "action" | "helpdoc" | undefined;
|
807
868
|
};
|
869
|
+
} | {
|
870
|
+
type: "no_action";
|
808
871
|
} | {
|
809
872
|
type: "click";
|
810
873
|
value: string;
|
811
874
|
} | {
|
812
|
-
type: "click" | "clickBySelector" | "clickByXpath";
|
813
|
-
value: string[];
|
814
|
-
} | ({
|
815
|
-
type: "link";
|
816
|
-
value: string;
|
817
|
-
} & {
|
818
|
-
operation?: "self" | "router" | "blank" | undefined;
|
819
|
-
}) | {
|
820
875
|
type: "open_chat";
|
821
876
|
meta: {
|
822
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "
|
877
|
+
type: "" | "hubspot" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "drift" | "pylon" | "zendesk_handoff";
|
878
|
+
};
|
879
|
+
} | {
|
880
|
+
type: "chat_handoff";
|
881
|
+
meta: {
|
882
|
+
type: "" | "intercom" | "freshchat" | "zendesk";
|
823
883
|
};
|
824
884
|
} | {
|
825
885
|
type: "dismiss";
|
@@ -828,14 +888,14 @@ export declare class Checklist {
|
|
828
888
|
} | {
|
829
889
|
type: "questlist";
|
830
890
|
value: number;
|
831
|
-
} | {
|
832
|
-
type: "step_back";
|
833
891
|
} | {
|
834
892
|
type: "nudge";
|
835
893
|
value: number;
|
836
894
|
} | {
|
837
895
|
type: "go_to_step";
|
838
896
|
value: number;
|
897
|
+
} | {
|
898
|
+
type: "step_back";
|
839
899
|
} | ({
|
840
900
|
type: "open_bar";
|
841
901
|
} & {
|
@@ -843,11 +903,11 @@ export declare class Checklist {
|
|
843
903
|
categoryFilter?: number | undefined;
|
844
904
|
}) | {
|
845
905
|
type: "open_helphub";
|
846
|
-
} | {
|
906
|
+
} | ({
|
847
907
|
type: "open_copilot";
|
848
|
-
}
|
849
|
-
|
850
|
-
};
|
908
|
+
} & {
|
909
|
+
query?: string | undefined;
|
910
|
+
});
|
851
911
|
celebrate: boolean;
|
852
912
|
} & {
|
853
913
|
description?: string | undefined;
|
@@ -962,28 +1022,38 @@ export declare class Checklist {
|
|
962
1022
|
} & {
|
963
1023
|
condition_group?: import("./helpers/rules").RuleExpression | null | undefined;
|
964
1024
|
});
|
965
|
-
action: {
|
1025
|
+
action: ({
|
1026
|
+
type: "link";
|
1027
|
+
value: string;
|
1028
|
+
} & {
|
1029
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1030
|
+
meta?: {
|
1031
|
+
command: string;
|
1032
|
+
} | undefined;
|
1033
|
+
}) | {
|
1034
|
+
type: "click" | "clickBySelector" | "clickByXpath";
|
1035
|
+
value: string[];
|
1036
|
+
} | {
|
966
1037
|
type: "execute_command";
|
967
1038
|
meta: {
|
968
1039
|
command: string;
|
969
1040
|
} & {
|
970
1041
|
type?: "link" | "video" | "action" | "helpdoc" | undefined;
|
971
1042
|
};
|
1043
|
+
} | {
|
1044
|
+
type: "no_action";
|
972
1045
|
} | {
|
973
1046
|
type: "click";
|
974
1047
|
value: string;
|
975
1048
|
} | {
|
976
|
-
type: "click" | "clickBySelector" | "clickByXpath";
|
977
|
-
value: string[];
|
978
|
-
} | ({
|
979
|
-
type: "link";
|
980
|
-
value: string;
|
981
|
-
} & {
|
982
|
-
operation?: "self" | "router" | "blank" | undefined;
|
983
|
-
}) | {
|
984
1049
|
type: "open_chat";
|
985
1050
|
meta: {
|
986
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "
|
1051
|
+
type: "" | "hubspot" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "drift" | "pylon" | "zendesk_handoff";
|
1052
|
+
};
|
1053
|
+
} | {
|
1054
|
+
type: "chat_handoff";
|
1055
|
+
meta: {
|
1056
|
+
type: "" | "intercom" | "freshchat" | "zendesk";
|
987
1057
|
};
|
988
1058
|
} | {
|
989
1059
|
type: "dismiss";
|
@@ -992,14 +1062,14 @@ export declare class Checklist {
|
|
992
1062
|
} | {
|
993
1063
|
type: "questlist";
|
994
1064
|
value: number;
|
995
|
-
} | {
|
996
|
-
type: "step_back";
|
997
1065
|
} | {
|
998
1066
|
type: "nudge";
|
999
1067
|
value: number;
|
1000
1068
|
} | {
|
1001
1069
|
type: "go_to_step";
|
1002
1070
|
value: number;
|
1071
|
+
} | {
|
1072
|
+
type: "step_back";
|
1003
1073
|
} | ({
|
1004
1074
|
type: "open_bar";
|
1005
1075
|
} & {
|
@@ -1007,11 +1077,11 @@ export declare class Checklist {
|
|
1007
1077
|
categoryFilter?: number | undefined;
|
1008
1078
|
}) | {
|
1009
1079
|
type: "open_helphub";
|
1010
|
-
} | {
|
1080
|
+
} | ({
|
1011
1081
|
type: "open_copilot";
|
1012
|
-
}
|
1013
|
-
|
1014
|
-
};
|
1082
|
+
} & {
|
1083
|
+
query?: string | undefined;
|
1084
|
+
});
|
1015
1085
|
celebrate: boolean;
|
1016
1086
|
} & {
|
1017
1087
|
description?: string | undefined;
|
@@ -1125,28 +1195,38 @@ export declare class Checklist {
|
|
1125
1195
|
} & {
|
1126
1196
|
condition_group?: import("./helpers/rules").RuleExpression | null | undefined;
|
1127
1197
|
});
|
1128
|
-
action: {
|
1198
|
+
action: ({
|
1199
|
+
type: "link";
|
1200
|
+
value: string;
|
1201
|
+
} & {
|
1202
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1203
|
+
meta?: {
|
1204
|
+
command: string;
|
1205
|
+
} | undefined;
|
1206
|
+
}) | {
|
1207
|
+
type: "click" | "clickBySelector" | "clickByXpath";
|
1208
|
+
value: string[];
|
1209
|
+
} | {
|
1129
1210
|
type: "execute_command";
|
1130
1211
|
meta: {
|
1131
1212
|
command: string;
|
1132
1213
|
} & {
|
1133
1214
|
type?: "link" | "video" | "action" | "helpdoc" | undefined;
|
1134
1215
|
};
|
1216
|
+
} | {
|
1217
|
+
type: "no_action";
|
1135
1218
|
} | {
|
1136
1219
|
type: "click";
|
1137
1220
|
value: string;
|
1138
1221
|
} | {
|
1139
|
-
type: "click" | "clickBySelector" | "clickByXpath";
|
1140
|
-
value: string[];
|
1141
|
-
} | ({
|
1142
|
-
type: "link";
|
1143
|
-
value: string;
|
1144
|
-
} & {
|
1145
|
-
operation?: "self" | "router" | "blank" | undefined;
|
1146
|
-
}) | {
|
1147
1222
|
type: "open_chat";
|
1148
1223
|
meta: {
|
1149
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "
|
1224
|
+
type: "" | "hubspot" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "drift" | "pylon" | "zendesk_handoff";
|
1225
|
+
};
|
1226
|
+
} | {
|
1227
|
+
type: "chat_handoff";
|
1228
|
+
meta: {
|
1229
|
+
type: "" | "intercom" | "freshchat" | "zendesk";
|
1150
1230
|
};
|
1151
1231
|
} | {
|
1152
1232
|
type: "dismiss";
|
@@ -1155,14 +1235,14 @@ export declare class Checklist {
|
|
1155
1235
|
} | {
|
1156
1236
|
type: "questlist";
|
1157
1237
|
value: number;
|
1158
|
-
} | {
|
1159
|
-
type: "step_back";
|
1160
1238
|
} | {
|
1161
1239
|
type: "nudge";
|
1162
1240
|
value: number;
|
1163
1241
|
} | {
|
1164
1242
|
type: "go_to_step";
|
1165
1243
|
value: number;
|
1244
|
+
} | {
|
1245
|
+
type: "step_back";
|
1166
1246
|
} | ({
|
1167
1247
|
type: "open_bar";
|
1168
1248
|
} & {
|
@@ -1170,11 +1250,11 @@ export declare class Checklist {
|
|
1170
1250
|
categoryFilter?: number | undefined;
|
1171
1251
|
}) | {
|
1172
1252
|
type: "open_helphub";
|
1173
|
-
} | {
|
1253
|
+
} | ({
|
1174
1254
|
type: "open_copilot";
|
1175
|
-
}
|
1176
|
-
|
1177
|
-
};
|
1255
|
+
} & {
|
1256
|
+
query?: string | undefined;
|
1257
|
+
});
|
1178
1258
|
celebrate: boolean;
|
1179
1259
|
} & {
|
1180
1260
|
description?: string | undefined;
|
@@ -1290,28 +1370,38 @@ export declare class Checklist {
|
|
1290
1370
|
} & {
|
1291
1371
|
condition_group?: import("./helpers/rules").RuleExpression | null | undefined;
|
1292
1372
|
});
|
1293
|
-
action: {
|
1373
|
+
action: ({
|
1374
|
+
type: "link";
|
1375
|
+
value: string;
|
1376
|
+
} & {
|
1377
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1378
|
+
meta?: {
|
1379
|
+
command: string;
|
1380
|
+
} | undefined;
|
1381
|
+
}) | {
|
1382
|
+
type: "click" | "clickBySelector" | "clickByXpath";
|
1383
|
+
value: string[];
|
1384
|
+
} | {
|
1294
1385
|
type: "execute_command";
|
1295
1386
|
meta: {
|
1296
1387
|
command: string;
|
1297
1388
|
} & {
|
1298
1389
|
type?: "link" | "video" | "action" | "helpdoc" | undefined;
|
1299
1390
|
};
|
1391
|
+
} | {
|
1392
|
+
type: "no_action";
|
1300
1393
|
} | {
|
1301
1394
|
type: "click";
|
1302
1395
|
value: string;
|
1303
1396
|
} | {
|
1304
|
-
type: "click" | "clickBySelector" | "clickByXpath";
|
1305
|
-
value: string[];
|
1306
|
-
} | ({
|
1307
|
-
type: "link";
|
1308
|
-
value: string;
|
1309
|
-
} & {
|
1310
|
-
operation?: "self" | "router" | "blank" | undefined;
|
1311
|
-
}) | {
|
1312
1397
|
type: "open_chat";
|
1313
1398
|
meta: {
|
1314
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "
|
1399
|
+
type: "" | "hubspot" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "drift" | "pylon" | "zendesk_handoff";
|
1400
|
+
};
|
1401
|
+
} | {
|
1402
|
+
type: "chat_handoff";
|
1403
|
+
meta: {
|
1404
|
+
type: "" | "intercom" | "freshchat" | "zendesk";
|
1315
1405
|
};
|
1316
1406
|
} | {
|
1317
1407
|
type: "dismiss";
|
@@ -1320,14 +1410,14 @@ export declare class Checklist {
|
|
1320
1410
|
} | {
|
1321
1411
|
type: "questlist";
|
1322
1412
|
value: number;
|
1323
|
-
} | {
|
1324
|
-
type: "step_back";
|
1325
1413
|
} | {
|
1326
1414
|
type: "nudge";
|
1327
1415
|
value: number;
|
1328
1416
|
} | {
|
1329
1417
|
type: "go_to_step";
|
1330
1418
|
value: number;
|
1419
|
+
} | {
|
1420
|
+
type: "step_back";
|
1331
1421
|
} | ({
|
1332
1422
|
type: "open_bar";
|
1333
1423
|
} & {
|
@@ -1335,11 +1425,11 @@ export declare class Checklist {
|
|
1335
1425
|
categoryFilter?: number | undefined;
|
1336
1426
|
}) | {
|
1337
1427
|
type: "open_helphub";
|
1338
|
-
} | {
|
1428
|
+
} | ({
|
1339
1429
|
type: "open_copilot";
|
1340
|
-
}
|
1341
|
-
|
1342
|
-
};
|
1430
|
+
} & {
|
1431
|
+
query?: string | undefined;
|
1432
|
+
});
|
1343
1433
|
celebrate: boolean;
|
1344
1434
|
} & {
|
1345
1435
|
description?: string | undefined;
|
@@ -1457,28 +1547,38 @@ export declare class Checklist {
|
|
1457
1547
|
} & {
|
1458
1548
|
condition_group?: import("./helpers/rules").RuleExpression | null | undefined;
|
1459
1549
|
});
|
1460
|
-
action: {
|
1550
|
+
action: ({
|
1551
|
+
type: "link";
|
1552
|
+
value: string;
|
1553
|
+
} & {
|
1554
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1555
|
+
meta?: {
|
1556
|
+
command: string;
|
1557
|
+
} | undefined;
|
1558
|
+
}) | {
|
1559
|
+
type: "click" | "clickBySelector" | "clickByXpath";
|
1560
|
+
value: string[];
|
1561
|
+
} | {
|
1461
1562
|
type: "execute_command";
|
1462
1563
|
meta: {
|
1463
1564
|
command: string;
|
1464
1565
|
} & {
|
1465
1566
|
type?: "link" | "video" | "action" | "helpdoc" | undefined;
|
1466
1567
|
};
|
1568
|
+
} | {
|
1569
|
+
type: "no_action";
|
1467
1570
|
} | {
|
1468
1571
|
type: "click";
|
1469
1572
|
value: string;
|
1470
1573
|
} | {
|
1471
|
-
type: "click" | "clickBySelector" | "clickByXpath";
|
1472
|
-
value: string[];
|
1473
|
-
} | ({
|
1474
|
-
type: "link";
|
1475
|
-
value: string;
|
1476
|
-
} & {
|
1477
|
-
operation?: "self" | "router" | "blank" | undefined;
|
1478
|
-
}) | {
|
1479
1574
|
type: "open_chat";
|
1480
1575
|
meta: {
|
1481
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "
|
1576
|
+
type: "" | "hubspot" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "drift" | "pylon" | "zendesk_handoff";
|
1577
|
+
};
|
1578
|
+
} | {
|
1579
|
+
type: "chat_handoff";
|
1580
|
+
meta: {
|
1581
|
+
type: "" | "intercom" | "freshchat" | "zendesk";
|
1482
1582
|
};
|
1483
1583
|
} | {
|
1484
1584
|
type: "dismiss";
|
@@ -1487,14 +1587,14 @@ export declare class Checklist {
|
|
1487
1587
|
} | {
|
1488
1588
|
type: "questlist";
|
1489
1589
|
value: number;
|
1490
|
-
} | {
|
1491
|
-
type: "step_back";
|
1492
1590
|
} | {
|
1493
1591
|
type: "nudge";
|
1494
1592
|
value: number;
|
1495
1593
|
} | {
|
1496
1594
|
type: "go_to_step";
|
1497
1595
|
value: number;
|
1596
|
+
} | {
|
1597
|
+
type: "step_back";
|
1498
1598
|
} | ({
|
1499
1599
|
type: "open_bar";
|
1500
1600
|
} & {
|
@@ -1502,11 +1602,11 @@ export declare class Checklist {
|
|
1502
1602
|
categoryFilter?: number | undefined;
|
1503
1603
|
}) | {
|
1504
1604
|
type: "open_helphub";
|
1505
|
-
} | {
|
1605
|
+
} | ({
|
1506
1606
|
type: "open_copilot";
|
1507
|
-
}
|
1508
|
-
|
1509
|
-
};
|
1607
|
+
} & {
|
1608
|
+
query?: string | undefined;
|
1609
|
+
});
|
1510
1610
|
celebrate: boolean;
|
1511
1611
|
} & {
|
1512
1612
|
description?: string | undefined;
|