commandbar 1.10.2 → 1.11.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/src/shared/services/analytics/EventHandler.d.ts +7 -2
- package/build/commandbar/src/shared/services/analytics/event-queue.d.ts +13 -0
- package/build/commandbar/src/shared/services/analytics/types.d.ts +1 -1
- package/build/commandbar/src/shared/services/analytics/v2/client.d.ts +54 -0
- package/build/commandbar/src/shared/services/analytics/v2/helpers.d.ts +6 -0
- package/build/commandbar/src/shared/services/analytics/v2/schema.d.ts +152 -0
- package/build/commandbar/src/shared/services/analytics/v2/types.d.ts +4 -0
- package/build/commandbar-js/src/index.d.ts +0 -1
- package/build/commandbar-js/src/index.js +1 -1
- package/build/commandbar-js/src/snippet.d.ts +7 -1
- package/build/internal/src/client/CommandBarClientSDK.d.ts +12 -0
- package/build/internal/src/client/CommandBarProxySDK.d.ts +1 -4
- package/build/internal/src/client/CommandBarSDK.d.ts +5 -3
- package/build/internal/src/client/SDKConfig.d.ts +3 -1
- package/build/internal/src/client/globals.d.ts +1 -0
- package/build/internal/src/client/symbols.d.ts +3 -1
- package/build/internal/src/middleware/CommandFromClientV.d.ts +16 -2
- package/build/internal/src/middleware/OrganizationV.d.ts +34 -8
- package/build/internal/src/middleware/additionalResource.d.ts +9 -9
- package/build/internal/src/middleware/api.d.ts +173 -0
- package/build/internal/src/middleware/billing.d.ts +10 -0
- package/build/internal/src/middleware/chat.d.ts +3662 -172
- package/build/internal/src/middleware/checklist.d.ts +18 -10
- package/build/internal/src/middleware/command.d.ts +540 -140
- package/build/internal/src/middleware/endUser.d.ts +2 -0
- package/build/internal/src/middleware/experienceTemplate.d.ts +2874 -8
- package/build/internal/src/middleware/experiencesSearch.d.ts +233 -28
- package/build/internal/src/middleware/flags.d.ts +14 -1
- package/build/internal/src/middleware/generics.d.ts +1 -0
- package/build/internal/src/middleware/helpDocsIntegration.d.ts +98 -0
- package/build/internal/src/middleware/helpDocsSearch.d.ts +165 -20
- package/build/internal/src/middleware/helpDocsSync.d.ts +4 -0
- package/build/internal/src/middleware/helpers/actions.d.ts +6 -6
- package/build/internal/src/middleware/helpers/commandTemplate.d.ts +2 -2
- package/build/internal/src/middleware/helpers/rules.d.ts +7 -7
- package/build/internal/src/middleware/localizedMessage.d.ts +50 -0
- package/build/internal/src/middleware/network.d.ts +1 -0
- package/build/internal/src/middleware/nudge.d.ts +96 -24
- package/build/internal/src/middleware/organization.d.ts +180 -62
- package/build/internal/src/middleware/organizationSettings.d.ts +8 -8
- package/build/internal/src/middleware/profile.d.ts +8 -0
- package/build/internal/src/middleware/recommendationSet.d.ts +18 -9
- package/build/internal/src/middleware/theme.d.ts +7 -0
- package/build/internal/src/middleware/types.d.ts +23 -5
- package/build/internal/src/middleware/user.d.ts +9 -1
- package/build/internal/src/middleware/workflow.d.ts +69 -0
- package/package.json +5 -2
- package/src/index.ts +0 -1
- package/src/init.ts +27 -13
- package/src/snippet.ts +79 -74
- package/build/internal/src/client/OrgConfig.d.ts +0 -5
- package/build/internal/src/middleware/guide.d.ts +0 -37
@@ -158,7 +158,7 @@ declare const CommandBaseV: t.IntersectionC<[t.TypeC<{
|
|
158
158
|
}>]>, t.TypeC<{
|
159
159
|
type: t.LiteralC<"open_chat">;
|
160
160
|
meta: t.TypeC<{
|
161
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
161
|
+
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<"">]>;
|
162
162
|
}>;
|
163
163
|
}>, t.TypeC<{
|
164
164
|
type: t.LiteralC<"dismiss">;
|
@@ -207,6 +207,20 @@ declare const HelpSyncCommandAdditionalV: t.PartialC<{
|
|
207
207
|
integration: t.UnionC<[t.TypeC<{
|
208
208
|
id: t.NumberC;
|
209
209
|
helphub_view_article_button_hidden: t.UnionC<[t.BooleanC, t.UndefinedC]>;
|
210
|
+
audience: t.UnionC<[t.UnionC<[t.TypeC<{
|
211
|
+
type: t.LiteralC<"all_users">;
|
212
|
+
}>, t.TypeC<{
|
213
|
+
type: t.LiteralC<"rule_expression">;
|
214
|
+
expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
215
|
+
}>, t.TypeC<{
|
216
|
+
type: t.LiteralC<"named_rule_reference">;
|
217
|
+
rule_reference: t.IntersectionC<[t.TypeC<{
|
218
|
+
type: t.LiteralC<"named_rule">;
|
219
|
+
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
220
|
+
}>, t.PartialC<{
|
221
|
+
reason: t.StringC;
|
222
|
+
}>]>;
|
223
|
+
}>]>, t.UndefinedC]>;
|
210
224
|
}>, t.NullC]>;
|
211
225
|
}>;
|
212
226
|
export declare const helpSyncDefaults: t.TypeOf<typeof HelpSyncCommandAdditionalV>;
|
@@ -391,7 +405,7 @@ export declare const CommandV: t.Type<{
|
|
391
405
|
}) | {
|
392
406
|
type: "open_chat";
|
393
407
|
meta: {
|
394
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
408
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
395
409
|
};
|
396
410
|
} | {
|
397
411
|
type: "dismiss";
|
@@ -517,7 +531,7 @@ export declare const CommandV: t.Type<{
|
|
517
531
|
};
|
518
532
|
tags: string[];
|
519
533
|
availability_rules: (({
|
520
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
534
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
521
535
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
522
536
|
} & {
|
523
537
|
field?: string | undefined;
|
@@ -546,7 +560,7 @@ export declare const CommandV: t.Type<{
|
|
546
560
|
reason?: string | undefined;
|
547
561
|
}))[];
|
548
562
|
recommend_rules: (({
|
549
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
563
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
550
564
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
551
565
|
} & {
|
552
566
|
field?: string | undefined;
|
@@ -585,6 +599,20 @@ export declare const CommandV: t.Type<{
|
|
585
599
|
availability_expression: import("./helpers/rules").RuleExpression | null;
|
586
600
|
recommend_expression: import("./helpers/rules").RuleExpression | null;
|
587
601
|
always_recommend: boolean;
|
602
|
+
audience: {
|
603
|
+
type: "all_users";
|
604
|
+
} | {
|
605
|
+
type: "rule_expression";
|
606
|
+
expression: import("./helpers/rules").RuleExpression;
|
607
|
+
} | {
|
608
|
+
type: "named_rule_reference";
|
609
|
+
rule_reference: {
|
610
|
+
type: "named_rule";
|
611
|
+
rule_id: string | number;
|
612
|
+
} & {
|
613
|
+
reason?: string | undefined;
|
614
|
+
};
|
615
|
+
} | null;
|
588
616
|
confirm: string;
|
589
617
|
shortcut: string[];
|
590
618
|
explanation: string;
|
@@ -661,7 +689,7 @@ export declare const CommandV: t.Type<{
|
|
661
689
|
}) | {
|
662
690
|
type: "open_chat";
|
663
691
|
meta: {
|
664
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
692
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
665
693
|
};
|
666
694
|
} | {
|
667
695
|
type: "dismiss";
|
@@ -702,6 +730,7 @@ export declare const CommandV: t.Type<{
|
|
702
730
|
show_in_helphub_search: boolean;
|
703
731
|
copilot_cta_label: string;
|
704
732
|
copilot_description: string;
|
733
|
+
copilot_use_verbatim: boolean;
|
705
734
|
} & {
|
706
735
|
third_party_source?: string | null | undefined;
|
707
736
|
third_party_id?: string | null | undefined;
|
@@ -709,6 +738,20 @@ export declare const CommandV: t.Type<{
|
|
709
738
|
integration?: {
|
710
739
|
id: number;
|
711
740
|
helphub_view_article_button_hidden: boolean | undefined;
|
741
|
+
audience: {
|
742
|
+
type: "all_users";
|
743
|
+
} | {
|
744
|
+
type: "rule_expression";
|
745
|
+
expression: import("./helpers/rules").RuleExpression;
|
746
|
+
} | {
|
747
|
+
type: "named_rule_reference";
|
748
|
+
rule_reference: {
|
749
|
+
type: "named_rule";
|
750
|
+
rule_id: string | number;
|
751
|
+
} & {
|
752
|
+
reason?: string | undefined;
|
753
|
+
};
|
754
|
+
} | undefined;
|
712
755
|
} | null | undefined;
|
713
756
|
}, {
|
714
757
|
id: number;
|
@@ -891,7 +934,7 @@ export declare const CommandV: t.Type<{
|
|
891
934
|
}) | {
|
892
935
|
type: "open_chat";
|
893
936
|
meta: {
|
894
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
937
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
895
938
|
};
|
896
939
|
} | {
|
897
940
|
type: "dismiss";
|
@@ -1017,7 +1060,7 @@ export declare const CommandV: t.Type<{
|
|
1017
1060
|
};
|
1018
1061
|
tags: string[];
|
1019
1062
|
availability_rules: (({
|
1020
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
1063
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
1021
1064
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
1022
1065
|
} & {
|
1023
1066
|
field?: string | undefined;
|
@@ -1046,7 +1089,7 @@ export declare const CommandV: t.Type<{
|
|
1046
1089
|
reason?: string | undefined;
|
1047
1090
|
}))[];
|
1048
1091
|
recommend_rules: (({
|
1049
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
1092
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
1050
1093
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
1051
1094
|
} & {
|
1052
1095
|
field?: string | undefined;
|
@@ -1085,6 +1128,20 @@ export declare const CommandV: t.Type<{
|
|
1085
1128
|
availability_expression: import("./helpers/rules").RuleExpression | null;
|
1086
1129
|
recommend_expression: import("./helpers/rules").RuleExpression | null;
|
1087
1130
|
always_recommend: boolean;
|
1131
|
+
audience: {
|
1132
|
+
type: "all_users";
|
1133
|
+
} | {
|
1134
|
+
type: "rule_expression";
|
1135
|
+
expression: import("./helpers/rules").RuleExpression;
|
1136
|
+
} | {
|
1137
|
+
type: "named_rule_reference";
|
1138
|
+
rule_reference: {
|
1139
|
+
type: "named_rule";
|
1140
|
+
rule_id: string | number;
|
1141
|
+
} & {
|
1142
|
+
reason?: string | undefined;
|
1143
|
+
};
|
1144
|
+
} | null;
|
1088
1145
|
confirm: string;
|
1089
1146
|
shortcut: string[];
|
1090
1147
|
explanation: string;
|
@@ -1161,7 +1218,7 @@ export declare const CommandV: t.Type<{
|
|
1161
1218
|
}) | {
|
1162
1219
|
type: "open_chat";
|
1163
1220
|
meta: {
|
1164
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
1221
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
1165
1222
|
};
|
1166
1223
|
} | {
|
1167
1224
|
type: "dismiss";
|
@@ -1202,6 +1259,7 @@ export declare const CommandV: t.Type<{
|
|
1202
1259
|
show_in_helphub_search: boolean;
|
1203
1260
|
copilot_cta_label: string;
|
1204
1261
|
copilot_description: string;
|
1262
|
+
copilot_use_verbatim: boolean;
|
1205
1263
|
} & {
|
1206
1264
|
third_party_source?: string | null | undefined;
|
1207
1265
|
third_party_id?: string | null | undefined;
|
@@ -1209,6 +1267,20 @@ export declare const CommandV: t.Type<{
|
|
1209
1267
|
integration?: {
|
1210
1268
|
id: number;
|
1211
1269
|
helphub_view_article_button_hidden: boolean | undefined;
|
1270
|
+
audience: {
|
1271
|
+
type: "all_users";
|
1272
|
+
} | {
|
1273
|
+
type: "rule_expression";
|
1274
|
+
expression: import("./helpers/rules").RuleExpression;
|
1275
|
+
} | {
|
1276
|
+
type: "named_rule_reference";
|
1277
|
+
rule_reference: {
|
1278
|
+
type: "named_rule";
|
1279
|
+
rule_id: string | number;
|
1280
|
+
} & {
|
1281
|
+
reason?: string | undefined;
|
1282
|
+
};
|
1283
|
+
} | undefined;
|
1212
1284
|
} | null | undefined;
|
1213
1285
|
}, any>;
|
1214
1286
|
export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
@@ -1366,7 +1438,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1366
1438
|
}>]>, t.TypeC<{
|
1367
1439
|
type: t.LiteralC<"open_chat">;
|
1368
1440
|
meta: t.TypeC<{
|
1369
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
1441
|
+
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<"">]>;
|
1370
1442
|
}>;
|
1371
1443
|
}>, t.TypeC<{
|
1372
1444
|
type: t.LiteralC<"dismiss">;
|
@@ -1484,7 +1556,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1484
1556
|
}>]>]>>;
|
1485
1557
|
tags: t.ArrayC<t.StringC>;
|
1486
1558
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
1487
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
1559
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
1488
1560
|
operator: t.KeyofC<{
|
1489
1561
|
includes: null;
|
1490
1562
|
endsWith: null;
|
@@ -1548,7 +1620,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1548
1620
|
}>, t.PartialC<{
|
1549
1621
|
reason: t.StringC;
|
1550
1622
|
}>]>]>>, t.ArrayC<t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
1551
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
1623
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
1552
1624
|
operator: t.KeyofC<{
|
1553
1625
|
includes: null;
|
1554
1626
|
endsWith: null;
|
@@ -1616,7 +1688,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1616
1688
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
1617
1689
|
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
1618
1690
|
}>]>, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
1619
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
1691
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
1620
1692
|
operator: t.KeyofC<{
|
1621
1693
|
includes: null;
|
1622
1694
|
endsWith: null;
|
@@ -1688,7 +1760,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1688
1760
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
1689
1761
|
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
1690
1762
|
}>]>, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
1691
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
1763
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
1692
1764
|
operator: t.KeyofC<{
|
1693
1765
|
includes: null;
|
1694
1766
|
endsWith: null;
|
@@ -1833,7 +1905,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1833
1905
|
}>]>, t.TypeC<{
|
1834
1906
|
type: t.LiteralC<"open_chat">;
|
1835
1907
|
meta: t.TypeC<{
|
1836
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
1908
|
+
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<"">]>;
|
1837
1909
|
}>;
|
1838
1910
|
}>, t.TypeC<{
|
1839
1911
|
type: t.LiteralC<"dismiss">;
|
@@ -1871,6 +1943,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1871
1943
|
show_in_helphub_search: t.BooleanC;
|
1872
1944
|
copilot_cta_label: t.StringC;
|
1873
1945
|
copilot_description: t.StringC;
|
1946
|
+
copilot_use_verbatim: t.BooleanC;
|
1874
1947
|
editor_tags: t.ArrayC<t.StringC>;
|
1875
1948
|
}>, t.PartialC<{
|
1876
1949
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -1879,6 +1952,20 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1879
1952
|
integration: t.UnionC<[t.TypeC<{
|
1880
1953
|
id: t.NumberC;
|
1881
1954
|
helphub_view_article_button_hidden: t.UnionC<[t.BooleanC, t.UndefinedC]>;
|
1955
|
+
audience: t.UnionC<[t.UnionC<[t.TypeC<{
|
1956
|
+
type: t.LiteralC<"all_users">;
|
1957
|
+
}>, t.TypeC<{
|
1958
|
+
type: t.LiteralC<"rule_expression">;
|
1959
|
+
expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
1960
|
+
}>, t.TypeC<{
|
1961
|
+
type: t.LiteralC<"named_rule_reference">;
|
1962
|
+
rule_reference: t.IntersectionC<[t.TypeC<{
|
1963
|
+
type: t.LiteralC<"named_rule">;
|
1964
|
+
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
1965
|
+
}>, t.PartialC<{
|
1966
|
+
reason: t.StringC;
|
1967
|
+
}>]>;
|
1968
|
+
}>]>, t.UndefinedC]>;
|
1882
1969
|
}>, t.NullC]>;
|
1883
1970
|
}>]>;
|
1884
1971
|
export declare const CommandLiteV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
@@ -2036,7 +2123,7 @@ export declare const CommandLiteV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2036
2123
|
}>]>, t.TypeC<{
|
2037
2124
|
type: t.LiteralC<"open_chat">;
|
2038
2125
|
meta: t.TypeC<{
|
2039
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
2126
|
+
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<"">]>;
|
2040
2127
|
}>;
|
2041
2128
|
}>, t.TypeC<{
|
2042
2129
|
type: t.LiteralC<"dismiss">;
|
@@ -2154,7 +2241,7 @@ export declare const CommandLiteV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2154
2241
|
}>]>]>>;
|
2155
2242
|
tags: t.ArrayC<t.StringC>;
|
2156
2243
|
availability_rules: t.ArrayC<t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
2157
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2244
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2158
2245
|
operator: t.KeyofC<{
|
2159
2246
|
includes: null;
|
2160
2247
|
endsWith: null;
|
@@ -2222,7 +2309,7 @@ export declare const CommandLiteV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2222
2309
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
2223
2310
|
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
2224
2311
|
}>]>, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
2225
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2312
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2226
2313
|
operator: t.KeyofC<{
|
2227
2314
|
includes: null;
|
2228
2315
|
endsWith: null;
|
@@ -2284,6 +2371,20 @@ export declare const CommandLiteV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2284
2371
|
availability_expression: t.UnionC<[t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>, t.NullC]>;
|
2285
2372
|
recommend_expression: t.UnionC<[t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>, t.NullC]>;
|
2286
2373
|
always_recommend: t.BooleanC;
|
2374
|
+
audience: t.UnionC<[t.UnionC<[t.TypeC<{
|
2375
|
+
type: t.LiteralC<"all_users">;
|
2376
|
+
}>, t.TypeC<{
|
2377
|
+
type: t.LiteralC<"rule_expression">;
|
2378
|
+
expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
2379
|
+
}>, t.TypeC<{
|
2380
|
+
type: t.LiteralC<"named_rule_reference">;
|
2381
|
+
rule_reference: t.IntersectionC<[t.TypeC<{
|
2382
|
+
type: t.LiteralC<"named_rule">;
|
2383
|
+
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
2384
|
+
}>, t.PartialC<{
|
2385
|
+
reason: t.StringC;
|
2386
|
+
}>]>;
|
2387
|
+
}>]>, t.NullC]>;
|
2287
2388
|
confirm: t.StringC;
|
2288
2389
|
shortcut: t.ArrayC<t.StringC>;
|
2289
2390
|
explanation: t.StringC;
|
@@ -2362,7 +2463,7 @@ export declare const CommandLiteV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2362
2463
|
}>]>, t.TypeC<{
|
2363
2464
|
type: t.LiteralC<"open_chat">;
|
2364
2465
|
meta: t.TypeC<{
|
2365
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
2466
|
+
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<"">]>;
|
2366
2467
|
}>;
|
2367
2468
|
}>, t.TypeC<{
|
2368
2469
|
type: t.LiteralC<"dismiss">;
|
@@ -2401,13 +2502,28 @@ export declare const CommandLiteV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2401
2502
|
show_in_helphub_search: t.BooleanC;
|
2402
2503
|
copilot_cta_label: t.StringC;
|
2403
2504
|
copilot_description: t.StringC;
|
2404
|
-
|
2505
|
+
copilot_use_verbatim: t.BooleanC;
|
2506
|
+
}, "image" | "confirm" | "icon" | "heading" | "sort_key" | "is_live" | "audience" | "copilot_suggest" | "show_in_spotlight_search" | "show_in_helphub_search" | "copilot_cta_label" | "copilot_description" | "tags" | "arguments" | "extra" | "shortcut" | "icon_color" | "image_color" | "show_preview" | "shortcut_mac" | "shortcut_win" | "hotkey_mac" | "hotkey_win" | "category" | "celebrate" | "availability_rules" | "recommend_rules" | "availability_expression" | "recommend_expression" | "always_recommend" | "recommend_sort_key" | "next_steps" | "thumbnail" | "copilot_use_verbatim">>, t.PartialC<{
|
2405
2507
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
2406
2508
|
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
2407
2509
|
training_only: t.BooleanC;
|
2408
2510
|
integration: t.UnionC<[t.TypeC<{
|
2409
2511
|
id: t.NumberC;
|
2410
2512
|
helphub_view_article_button_hidden: t.UnionC<[t.BooleanC, t.UndefinedC]>;
|
2513
|
+
audience: t.UnionC<[t.UnionC<[t.TypeC<{
|
2514
|
+
type: t.LiteralC<"all_users">;
|
2515
|
+
}>, t.TypeC<{
|
2516
|
+
type: t.LiteralC<"rule_expression">;
|
2517
|
+
expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
2518
|
+
}>, t.TypeC<{
|
2519
|
+
type: t.LiteralC<"named_rule_reference">;
|
2520
|
+
rule_reference: t.IntersectionC<[t.TypeC<{
|
2521
|
+
type: t.LiteralC<"named_rule">;
|
2522
|
+
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
2523
|
+
}>, t.PartialC<{
|
2524
|
+
reason: t.StringC;
|
2525
|
+
}>]>;
|
2526
|
+
}>]>, t.UndefinedC]>;
|
2411
2527
|
}>, t.NullC]>;
|
2412
2528
|
}>]>;
|
2413
2529
|
export declare const EditorCommandLiteV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
@@ -2565,7 +2681,7 @@ export declare const EditorCommandLiteV: t.IntersectionC<[t.IntersectionC<[t.Typ
|
|
2565
2681
|
}>]>, t.TypeC<{
|
2566
2682
|
type: t.LiteralC<"open_chat">;
|
2567
2683
|
meta: t.TypeC<{
|
2568
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
2684
|
+
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<"">]>;
|
2569
2685
|
}>;
|
2570
2686
|
}>, t.TypeC<{
|
2571
2687
|
type: t.LiteralC<"dismiss">;
|
@@ -2683,7 +2799,7 @@ export declare const EditorCommandLiteV: t.IntersectionC<[t.IntersectionC<[t.Typ
|
|
2683
2799
|
}>]>]>>;
|
2684
2800
|
tags: t.ArrayC<t.StringC>;
|
2685
2801
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
2686
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2802
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2687
2803
|
operator: t.KeyofC<{
|
2688
2804
|
includes: null;
|
2689
2805
|
endsWith: null;
|
@@ -2747,7 +2863,7 @@ export declare const EditorCommandLiteV: t.IntersectionC<[t.IntersectionC<[t.Typ
|
|
2747
2863
|
}>, t.PartialC<{
|
2748
2864
|
reason: t.StringC;
|
2749
2865
|
}>]>]>>, t.ArrayC<t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
2750
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2866
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2751
2867
|
operator: t.KeyofC<{
|
2752
2868
|
includes: null;
|
2753
2869
|
endsWith: null;
|
@@ -2815,7 +2931,7 @@ export declare const EditorCommandLiteV: t.IntersectionC<[t.IntersectionC<[t.Typ
|
|
2815
2931
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
2816
2932
|
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
2817
2933
|
}>]>, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
2818
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2934
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2819
2935
|
operator: t.KeyofC<{
|
2820
2936
|
includes: null;
|
2821
2937
|
endsWith: null;
|
@@ -2887,7 +3003,7 @@ export declare const EditorCommandLiteV: t.IntersectionC<[t.IntersectionC<[t.Typ
|
|
2887
3003
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
2888
3004
|
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
2889
3005
|
}>]>, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
2890
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
3006
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
2891
3007
|
operator: t.KeyofC<{
|
2892
3008
|
includes: null;
|
2893
3009
|
endsWith: null;
|
@@ -3032,7 +3148,7 @@ export declare const EditorCommandLiteV: t.IntersectionC<[t.IntersectionC<[t.Typ
|
|
3032
3148
|
}>]>, t.TypeC<{
|
3033
3149
|
type: t.LiteralC<"open_chat">;
|
3034
3150
|
meta: t.TypeC<{
|
3035
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
3151
|
+
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<"">]>;
|
3036
3152
|
}>;
|
3037
3153
|
}>, t.TypeC<{
|
3038
3154
|
type: t.LiteralC<"dismiss">;
|
@@ -3070,14 +3186,29 @@ export declare const EditorCommandLiteV: t.IntersectionC<[t.IntersectionC<[t.Typ
|
|
3070
3186
|
show_in_helphub_search: t.BooleanC;
|
3071
3187
|
copilot_cta_label: t.StringC;
|
3072
3188
|
copilot_description: t.StringC;
|
3189
|
+
copilot_use_verbatim: t.BooleanC;
|
3073
3190
|
editor_tags: t.ArrayC<t.StringC>;
|
3074
|
-
}, "image" | "confirm" | "icon" | "heading" | "sort_key" | "is_live" | "copilot_suggest" | "show_in_spotlight_search" | "show_in_helphub_search" | "copilot_cta_label" | "copilot_description" | "editor_tags" | "tags" | "arguments" | "shortcut" | "
|
3191
|
+
}, "image" | "confirm" | "icon" | "heading" | "sort_key" | "is_live" | "copilot_suggest" | "show_in_spotlight_search" | "show_in_helphub_search" | "copilot_cta_label" | "copilot_description" | "editor_tags" | "tags" | "arguments" | "shortcut" | "icon_color" | "image_color" | "show_preview" | "shortcut_mac" | "shortcut_win" | "hotkey_mac" | "hotkey_win" | "category" | "celebrate" | "availability_rules" | "recommend_rules" | "availability_expression" | "recommend_expression" | "always_recommend" | "recommend_sort_key" | "next_steps" | "thumbnail" | "copilot_use_verbatim" | "generated_tags">>, t.PartialC<{
|
3075
3192
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
3076
3193
|
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
3077
3194
|
training_only: t.BooleanC;
|
3078
3195
|
integration: t.UnionC<[t.TypeC<{
|
3079
3196
|
id: t.NumberC;
|
3080
3197
|
helphub_view_article_button_hidden: t.UnionC<[t.BooleanC, t.UndefinedC]>;
|
3198
|
+
audience: t.UnionC<[t.UnionC<[t.TypeC<{
|
3199
|
+
type: t.LiteralC<"all_users">;
|
3200
|
+
}>, t.TypeC<{
|
3201
|
+
type: t.LiteralC<"rule_expression">;
|
3202
|
+
expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
3203
|
+
}>, t.TypeC<{
|
3204
|
+
type: t.LiteralC<"named_rule_reference">;
|
3205
|
+
rule_reference: t.IntersectionC<[t.TypeC<{
|
3206
|
+
type: t.LiteralC<"named_rule">;
|
3207
|
+
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
3208
|
+
}>, t.PartialC<{
|
3209
|
+
reason: t.StringC;
|
3210
|
+
}>]>;
|
3211
|
+
}>]>, t.UndefinedC]>;
|
3081
3212
|
}>, t.NullC]>;
|
3082
3213
|
}>]>;
|
3083
3214
|
export declare const BatchOperationV: t.UnionC<[t.TypeC<{
|
@@ -3247,7 +3378,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
3247
3378
|
}>]>, t.TypeC<{
|
3248
3379
|
type: t.LiteralC<"open_chat">;
|
3249
3380
|
meta: t.TypeC<{
|
3250
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
3381
|
+
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<"">]>;
|
3251
3382
|
}>;
|
3252
3383
|
}>, t.TypeC<{
|
3253
3384
|
type: t.LiteralC<"dismiss">;
|
@@ -3365,7 +3496,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
3365
3496
|
}>]>]>>;
|
3366
3497
|
tags: t.ArrayC<t.StringC>;
|
3367
3498
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
3368
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
3499
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
3369
3500
|
operator: t.KeyofC<{
|
3370
3501
|
includes: null;
|
3371
3502
|
endsWith: null;
|
@@ -3429,7 +3560,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
3429
3560
|
}>, t.PartialC<{
|
3430
3561
|
reason: t.StringC;
|
3431
3562
|
}>]>]>>, t.ArrayC<t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
3432
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
3563
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
3433
3564
|
operator: t.KeyofC<{
|
3434
3565
|
includes: null;
|
3435
3566
|
endsWith: null;
|
@@ -3497,7 +3628,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
3497
3628
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
3498
3629
|
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
3499
3630
|
}>]>, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
3500
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
3631
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
3501
3632
|
operator: t.KeyofC<{
|
3502
3633
|
includes: null;
|
3503
3634
|
endsWith: null;
|
@@ -3569,7 +3700,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
3569
3700
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
3570
3701
|
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
3571
3702
|
}>]>, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
3572
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
3703
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
3573
3704
|
operator: t.KeyofC<{
|
3574
3705
|
includes: null;
|
3575
3706
|
endsWith: null;
|
@@ -3714,7 +3845,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
3714
3845
|
}>]>, t.TypeC<{
|
3715
3846
|
type: t.LiteralC<"open_chat">;
|
3716
3847
|
meta: t.TypeC<{
|
3717
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
3848
|
+
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<"">]>;
|
3718
3849
|
}>;
|
3719
3850
|
}>, t.TypeC<{
|
3720
3851
|
type: t.LiteralC<"dismiss">;
|
@@ -3752,6 +3883,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
3752
3883
|
show_in_helphub_search: t.BooleanC;
|
3753
3884
|
copilot_cta_label: t.StringC;
|
3754
3885
|
copilot_description: t.StringC;
|
3886
|
+
copilot_use_verbatim: t.BooleanC;
|
3755
3887
|
editor_tags: t.ArrayC<t.StringC>;
|
3756
3888
|
}>, t.PartialC<{
|
3757
3889
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -3760,6 +3892,20 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
3760
3892
|
integration: t.UnionC<[t.TypeC<{
|
3761
3893
|
id: t.NumberC;
|
3762
3894
|
helphub_view_article_button_hidden: t.UnionC<[t.BooleanC, t.UndefinedC]>;
|
3895
|
+
audience: t.UnionC<[t.UnionC<[t.TypeC<{
|
3896
|
+
type: t.LiteralC<"all_users">;
|
3897
|
+
}>, t.TypeC<{
|
3898
|
+
type: t.LiteralC<"rule_expression">;
|
3899
|
+
expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
3900
|
+
}>, t.TypeC<{
|
3901
|
+
type: t.LiteralC<"named_rule_reference">;
|
3902
|
+
rule_reference: t.IntersectionC<[t.TypeC<{
|
3903
|
+
type: t.LiteralC<"named_rule">;
|
3904
|
+
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
3905
|
+
}>, t.PartialC<{
|
3906
|
+
reason: t.StringC;
|
3907
|
+
}>]>;
|
3908
|
+
}>]>, t.UndefinedC]>;
|
3763
3909
|
}>, t.NullC]>;
|
3764
3910
|
}>]>>;
|
3765
3911
|
}>;
|
@@ -3944,7 +4090,7 @@ export declare const create: (object: {
|
|
3944
4090
|
}) | {
|
3945
4091
|
type: "open_chat";
|
3946
4092
|
meta: {
|
3947
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
4093
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
3948
4094
|
};
|
3949
4095
|
} | {
|
3950
4096
|
type: "dismiss";
|
@@ -4070,7 +4216,7 @@ export declare const create: (object: {
|
|
4070
4216
|
};
|
4071
4217
|
tags: string[];
|
4072
4218
|
availability_rules: (({
|
4073
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4219
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4074
4220
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
4075
4221
|
} & {
|
4076
4222
|
field?: string | undefined;
|
@@ -4103,7 +4249,7 @@ export declare const create: (object: {
|
|
4103
4249
|
} & {
|
4104
4250
|
reason?: string | undefined;
|
4105
4251
|
}) | ({
|
4106
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4252
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4107
4253
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
4108
4254
|
} & {
|
4109
4255
|
field?: string | undefined;
|
@@ -4132,7 +4278,7 @@ export declare const create: (object: {
|
|
4132
4278
|
reason?: string | undefined;
|
4133
4279
|
}))[];
|
4134
4280
|
recommend_rules: (({
|
4135
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4281
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4136
4282
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
4137
4283
|
} & {
|
4138
4284
|
field?: string | undefined;
|
@@ -4173,7 +4319,7 @@ export declare const create: (object: {
|
|
4173
4319
|
} & {
|
4174
4320
|
reason?: string | undefined;
|
4175
4321
|
}) | ({
|
4176
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4322
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4177
4323
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
4178
4324
|
} & {
|
4179
4325
|
field?: string | undefined;
|
@@ -4293,7 +4439,7 @@ export declare const create: (object: {
|
|
4293
4439
|
}) | {
|
4294
4440
|
type: "open_chat";
|
4295
4441
|
meta: {
|
4296
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
4442
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
4297
4443
|
};
|
4298
4444
|
} | {
|
4299
4445
|
type: "dismiss";
|
@@ -4333,6 +4479,7 @@ export declare const create: (object: {
|
|
4333
4479
|
show_in_helphub_search: boolean;
|
4334
4480
|
copilot_cta_label: string;
|
4335
4481
|
copilot_description: string;
|
4482
|
+
copilot_use_verbatim: boolean;
|
4336
4483
|
editor_tags: string[];
|
4337
4484
|
} & {
|
4338
4485
|
third_party_source?: string | null | undefined;
|
@@ -4341,6 +4488,20 @@ export declare const create: (object: {
|
|
4341
4488
|
integration?: {
|
4342
4489
|
id: number;
|
4343
4490
|
helphub_view_article_button_hidden: boolean | undefined;
|
4491
|
+
audience: {
|
4492
|
+
type: "all_users";
|
4493
|
+
} | {
|
4494
|
+
type: "rule_expression";
|
4495
|
+
expression: import("./helpers/rules").RuleExpression;
|
4496
|
+
} | {
|
4497
|
+
type: "named_rule_reference";
|
4498
|
+
rule_reference: {
|
4499
|
+
type: "named_rule";
|
4500
|
+
rule_id: string | number;
|
4501
|
+
} & {
|
4502
|
+
reason?: string | undefined;
|
4503
|
+
};
|
4504
|
+
} | undefined;
|
4344
4505
|
} | null | undefined;
|
4345
4506
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
4346
4507
|
id: number;
|
@@ -4523,7 +4684,7 @@ export declare const create: (object: {
|
|
4523
4684
|
}) | {
|
4524
4685
|
type: "open_chat";
|
4525
4686
|
meta: {
|
4526
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
4687
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
4527
4688
|
};
|
4528
4689
|
} | {
|
4529
4690
|
type: "dismiss";
|
@@ -4649,7 +4810,7 @@ export declare const create: (object: {
|
|
4649
4810
|
};
|
4650
4811
|
tags: string[];
|
4651
4812
|
availability_rules: (({
|
4652
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4813
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4653
4814
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
4654
4815
|
} & {
|
4655
4816
|
field?: string | undefined;
|
@@ -4682,7 +4843,7 @@ export declare const create: (object: {
|
|
4682
4843
|
} & {
|
4683
4844
|
reason?: string | undefined;
|
4684
4845
|
}) | ({
|
4685
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4846
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4686
4847
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
4687
4848
|
} & {
|
4688
4849
|
field?: string | undefined;
|
@@ -4711,7 +4872,7 @@ export declare const create: (object: {
|
|
4711
4872
|
reason?: string | undefined;
|
4712
4873
|
}))[];
|
4713
4874
|
recommend_rules: (({
|
4714
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4875
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4715
4876
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
4716
4877
|
} & {
|
4717
4878
|
field?: string | undefined;
|
@@ -4752,7 +4913,7 @@ export declare const create: (object: {
|
|
4752
4913
|
} & {
|
4753
4914
|
reason?: string | undefined;
|
4754
4915
|
}) | ({
|
4755
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4916
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
4756
4917
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
4757
4918
|
} & {
|
4758
4919
|
field?: string | undefined;
|
@@ -4872,7 +5033,7 @@ export declare const create: (object: {
|
|
4872
5033
|
}) | {
|
4873
5034
|
type: "open_chat";
|
4874
5035
|
meta: {
|
4875
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
5036
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
4876
5037
|
};
|
4877
5038
|
} | {
|
4878
5039
|
type: "dismiss";
|
@@ -4912,6 +5073,7 @@ export declare const create: (object: {
|
|
4912
5073
|
show_in_helphub_search: boolean;
|
4913
5074
|
copilot_cta_label: string;
|
4914
5075
|
copilot_description: string;
|
5076
|
+
copilot_use_verbatim: boolean;
|
4915
5077
|
editor_tags: string[];
|
4916
5078
|
} & {
|
4917
5079
|
third_party_source?: string | null | undefined;
|
@@ -4920,6 +5082,20 @@ export declare const create: (object: {
|
|
4920
5082
|
integration?: {
|
4921
5083
|
id: number;
|
4922
5084
|
helphub_view_article_button_hidden: boolean | undefined;
|
5085
|
+
audience: {
|
5086
|
+
type: "all_users";
|
5087
|
+
} | {
|
5088
|
+
type: "rule_expression";
|
5089
|
+
expression: import("./helpers/rules").RuleExpression;
|
5090
|
+
} | {
|
5091
|
+
type: "named_rule_reference";
|
5092
|
+
rule_reference: {
|
5093
|
+
type: "named_rule";
|
5094
|
+
rule_id: string | number;
|
5095
|
+
} & {
|
5096
|
+
reason?: string | undefined;
|
5097
|
+
};
|
5098
|
+
} | undefined;
|
4923
5099
|
} | null | undefined;
|
4924
5100
|
}>;
|
4925
5101
|
export declare const update: (object: {
|
@@ -5103,7 +5279,7 @@ export declare const update: (object: {
|
|
5103
5279
|
}) | {
|
5104
5280
|
type: "open_chat";
|
5105
5281
|
meta: {
|
5106
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
5282
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
5107
5283
|
};
|
5108
5284
|
} | {
|
5109
5285
|
type: "dismiss";
|
@@ -5229,7 +5405,7 @@ export declare const update: (object: {
|
|
5229
5405
|
};
|
5230
5406
|
tags: string[];
|
5231
5407
|
availability_rules: (({
|
5232
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5408
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5233
5409
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
5234
5410
|
} & {
|
5235
5411
|
field?: string | undefined;
|
@@ -5262,7 +5438,7 @@ export declare const update: (object: {
|
|
5262
5438
|
} & {
|
5263
5439
|
reason?: string | undefined;
|
5264
5440
|
}) | ({
|
5265
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5441
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5266
5442
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
5267
5443
|
} & {
|
5268
5444
|
field?: string | undefined;
|
@@ -5291,7 +5467,7 @@ export declare const update: (object: {
|
|
5291
5467
|
reason?: string | undefined;
|
5292
5468
|
}))[];
|
5293
5469
|
recommend_rules: (({
|
5294
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5470
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5295
5471
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
5296
5472
|
} & {
|
5297
5473
|
field?: string | undefined;
|
@@ -5332,7 +5508,7 @@ export declare const update: (object: {
|
|
5332
5508
|
} & {
|
5333
5509
|
reason?: string | undefined;
|
5334
5510
|
}) | ({
|
5335
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5511
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5336
5512
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
5337
5513
|
} & {
|
5338
5514
|
field?: string | undefined;
|
@@ -5452,7 +5628,7 @@ export declare const update: (object: {
|
|
5452
5628
|
}) | {
|
5453
5629
|
type: "open_chat";
|
5454
5630
|
meta: {
|
5455
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
5631
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
5456
5632
|
};
|
5457
5633
|
} | {
|
5458
5634
|
type: "dismiss";
|
@@ -5492,6 +5668,7 @@ export declare const update: (object: {
|
|
5492
5668
|
show_in_helphub_search: boolean;
|
5493
5669
|
copilot_cta_label: string;
|
5494
5670
|
copilot_description: string;
|
5671
|
+
copilot_use_verbatim: boolean;
|
5495
5672
|
editor_tags: string[];
|
5496
5673
|
} & {
|
5497
5674
|
third_party_source?: string | null | undefined;
|
@@ -5500,6 +5677,20 @@ export declare const update: (object: {
|
|
5500
5677
|
integration?: {
|
5501
5678
|
id: number;
|
5502
5679
|
helphub_view_article_button_hidden: boolean | undefined;
|
5680
|
+
audience: {
|
5681
|
+
type: "all_users";
|
5682
|
+
} | {
|
5683
|
+
type: "rule_expression";
|
5684
|
+
expression: import("./helpers/rules").RuleExpression;
|
5685
|
+
} | {
|
5686
|
+
type: "named_rule_reference";
|
5687
|
+
rule_reference: {
|
5688
|
+
type: "named_rule";
|
5689
|
+
rule_id: string | number;
|
5690
|
+
} & {
|
5691
|
+
reason?: string | undefined;
|
5692
|
+
};
|
5693
|
+
} | undefined;
|
5503
5694
|
} | null | undefined;
|
5504
5695
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
5505
5696
|
id: number;
|
@@ -5682,7 +5873,7 @@ export declare const update: (object: {
|
|
5682
5873
|
}) | {
|
5683
5874
|
type: "open_chat";
|
5684
5875
|
meta: {
|
5685
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
5876
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
5686
5877
|
};
|
5687
5878
|
} | {
|
5688
5879
|
type: "dismiss";
|
@@ -5808,7 +5999,7 @@ export declare const update: (object: {
|
|
5808
5999
|
};
|
5809
6000
|
tags: string[];
|
5810
6001
|
availability_rules: (({
|
5811
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6002
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5812
6003
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
5813
6004
|
} & {
|
5814
6005
|
field?: string | undefined;
|
@@ -5841,7 +6032,7 @@ export declare const update: (object: {
|
|
5841
6032
|
} & {
|
5842
6033
|
reason?: string | undefined;
|
5843
6034
|
}) | ({
|
5844
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6035
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5845
6036
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
5846
6037
|
} & {
|
5847
6038
|
field?: string | undefined;
|
@@ -5870,7 +6061,7 @@ export declare const update: (object: {
|
|
5870
6061
|
reason?: string | undefined;
|
5871
6062
|
}))[];
|
5872
6063
|
recommend_rules: (({
|
5873
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6064
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5874
6065
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
5875
6066
|
} & {
|
5876
6067
|
field?: string | undefined;
|
@@ -5911,7 +6102,7 @@ export declare const update: (object: {
|
|
5911
6102
|
} & {
|
5912
6103
|
reason?: string | undefined;
|
5913
6104
|
}) | ({
|
5914
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6105
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
5915
6106
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
5916
6107
|
} & {
|
5917
6108
|
field?: string | undefined;
|
@@ -6031,7 +6222,7 @@ export declare const update: (object: {
|
|
6031
6222
|
}) | {
|
6032
6223
|
type: "open_chat";
|
6033
6224
|
meta: {
|
6034
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
6225
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
6035
6226
|
};
|
6036
6227
|
} | {
|
6037
6228
|
type: "dismiss";
|
@@ -6071,6 +6262,7 @@ export declare const update: (object: {
|
|
6071
6262
|
show_in_helphub_search: boolean;
|
6072
6263
|
copilot_cta_label: string;
|
6073
6264
|
copilot_description: string;
|
6265
|
+
copilot_use_verbatim: boolean;
|
6074
6266
|
editor_tags: string[];
|
6075
6267
|
} & {
|
6076
6268
|
third_party_source?: string | null | undefined;
|
@@ -6079,6 +6271,20 @@ export declare const update: (object: {
|
|
6079
6271
|
integration?: {
|
6080
6272
|
id: number;
|
6081
6273
|
helphub_view_article_button_hidden: boolean | undefined;
|
6274
|
+
audience: {
|
6275
|
+
type: "all_users";
|
6276
|
+
} | {
|
6277
|
+
type: "rule_expression";
|
6278
|
+
expression: import("./helpers/rules").RuleExpression;
|
6279
|
+
} | {
|
6280
|
+
type: "named_rule_reference";
|
6281
|
+
rule_reference: {
|
6282
|
+
type: "named_rule";
|
6283
|
+
rule_id: string | number;
|
6284
|
+
} & {
|
6285
|
+
reason?: string | undefined;
|
6286
|
+
};
|
6287
|
+
} | undefined;
|
6082
6288
|
} | null | undefined;
|
6083
6289
|
}>;
|
6084
6290
|
export declare const del: (id: string | number, params?: Record<string, string> | undefined, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<void>;
|
@@ -6266,7 +6472,7 @@ export declare const get: (arg0: string, params?: Record<string, string> | undef
|
|
6266
6472
|
}) | {
|
6267
6473
|
type: "open_chat";
|
6268
6474
|
meta: {
|
6269
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
6475
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
6270
6476
|
};
|
6271
6477
|
} | {
|
6272
6478
|
type: "dismiss";
|
@@ -6392,7 +6598,7 @@ export declare const get: (arg0: string, params?: Record<string, string> | undef
|
|
6392
6598
|
};
|
6393
6599
|
tags: string[];
|
6394
6600
|
availability_rules: (({
|
6395
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6601
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6396
6602
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
6397
6603
|
} & {
|
6398
6604
|
field?: string | undefined;
|
@@ -6425,7 +6631,7 @@ export declare const get: (arg0: string, params?: Record<string, string> | undef
|
|
6425
6631
|
} & {
|
6426
6632
|
reason?: string | undefined;
|
6427
6633
|
}) | ({
|
6428
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6634
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6429
6635
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
6430
6636
|
} & {
|
6431
6637
|
field?: string | undefined;
|
@@ -6454,7 +6660,7 @@ export declare const get: (arg0: string, params?: Record<string, string> | undef
|
|
6454
6660
|
reason?: string | undefined;
|
6455
6661
|
}))[];
|
6456
6662
|
recommend_rules: (({
|
6457
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6663
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6458
6664
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
6459
6665
|
} & {
|
6460
6666
|
field?: string | undefined;
|
@@ -6495,7 +6701,7 @@ export declare const get: (arg0: string, params?: Record<string, string> | undef
|
|
6495
6701
|
} & {
|
6496
6702
|
reason?: string | undefined;
|
6497
6703
|
}) | ({
|
6498
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6704
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6499
6705
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
6500
6706
|
} & {
|
6501
6707
|
field?: string | undefined;
|
@@ -6615,7 +6821,7 @@ export declare const get: (arg0: string, params?: Record<string, string> | undef
|
|
6615
6821
|
}) | {
|
6616
6822
|
type: "open_chat";
|
6617
6823
|
meta: {
|
6618
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
6824
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
6619
6825
|
};
|
6620
6826
|
} | {
|
6621
6827
|
type: "dismiss";
|
@@ -6655,6 +6861,7 @@ export declare const get: (arg0: string, params?: Record<string, string> | undef
|
|
6655
6861
|
show_in_helphub_search: boolean;
|
6656
6862
|
copilot_cta_label: string;
|
6657
6863
|
copilot_description: string;
|
6864
|
+
copilot_use_verbatim: boolean;
|
6658
6865
|
editor_tags: string[];
|
6659
6866
|
} & {
|
6660
6867
|
third_party_source?: string | null | undefined;
|
@@ -6663,6 +6870,20 @@ export declare const get: (arg0: string, params?: Record<string, string> | undef
|
|
6663
6870
|
integration?: {
|
6664
6871
|
id: number;
|
6665
6872
|
helphub_view_article_button_hidden: boolean | undefined;
|
6873
|
+
audience: {
|
6874
|
+
type: "all_users";
|
6875
|
+
} | {
|
6876
|
+
type: "rule_expression";
|
6877
|
+
expression: import("./helpers/rules").RuleExpression;
|
6878
|
+
} | {
|
6879
|
+
type: "named_rule_reference";
|
6880
|
+
rule_reference: {
|
6881
|
+
type: "named_rule";
|
6882
|
+
rule_id: string | number;
|
6883
|
+
} & {
|
6884
|
+
reason?: string | undefined;
|
6885
|
+
};
|
6886
|
+
} | undefined;
|
6666
6887
|
} | null | undefined;
|
6667
6888
|
}>;
|
6668
6889
|
export declare const updatePartial: (command: Pick<IEditorCommandType, 'id'> & Partial<IEditorCommandType>) => Promise<{
|
@@ -6846,7 +7067,7 @@ export declare const updatePartial: (command: Pick<IEditorCommandType, 'id'> & P
|
|
6846
7067
|
}) | {
|
6847
7068
|
type: "open_chat";
|
6848
7069
|
meta: {
|
6849
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
7070
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
6850
7071
|
};
|
6851
7072
|
} | {
|
6852
7073
|
type: "dismiss";
|
@@ -6972,7 +7193,7 @@ export declare const updatePartial: (command: Pick<IEditorCommandType, 'id'> & P
|
|
6972
7193
|
};
|
6973
7194
|
tags: string[];
|
6974
7195
|
availability_rules: (({
|
6975
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7196
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
6976
7197
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
6977
7198
|
} & {
|
6978
7199
|
field?: string | undefined;
|
@@ -7005,7 +7226,7 @@ export declare const updatePartial: (command: Pick<IEditorCommandType, 'id'> & P
|
|
7005
7226
|
} & {
|
7006
7227
|
reason?: string | undefined;
|
7007
7228
|
}) | ({
|
7008
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7229
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7009
7230
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
7010
7231
|
} & {
|
7011
7232
|
field?: string | undefined;
|
@@ -7034,7 +7255,7 @@ export declare const updatePartial: (command: Pick<IEditorCommandType, 'id'> & P
|
|
7034
7255
|
reason?: string | undefined;
|
7035
7256
|
}))[];
|
7036
7257
|
recommend_rules: (({
|
7037
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7258
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7038
7259
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
7039
7260
|
} & {
|
7040
7261
|
field?: string | undefined;
|
@@ -7075,7 +7296,7 @@ export declare const updatePartial: (command: Pick<IEditorCommandType, 'id'> & P
|
|
7075
7296
|
} & {
|
7076
7297
|
reason?: string | undefined;
|
7077
7298
|
}) | ({
|
7078
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7299
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7079
7300
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
7080
7301
|
} & {
|
7081
7302
|
field?: string | undefined;
|
@@ -7195,7 +7416,7 @@ export declare const updatePartial: (command: Pick<IEditorCommandType, 'id'> & P
|
|
7195
7416
|
}) | {
|
7196
7417
|
type: "open_chat";
|
7197
7418
|
meta: {
|
7198
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
7419
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
7199
7420
|
};
|
7200
7421
|
} | {
|
7201
7422
|
type: "dismiss";
|
@@ -7235,6 +7456,7 @@ export declare const updatePartial: (command: Pick<IEditorCommandType, 'id'> & P
|
|
7235
7456
|
show_in_helphub_search: boolean;
|
7236
7457
|
copilot_cta_label: string;
|
7237
7458
|
copilot_description: string;
|
7459
|
+
copilot_use_verbatim: boolean;
|
7238
7460
|
editor_tags: string[];
|
7239
7461
|
} & {
|
7240
7462
|
third_party_source?: string | null | undefined;
|
@@ -7243,6 +7465,20 @@ export declare const updatePartial: (command: Pick<IEditorCommandType, 'id'> & P
|
|
7243
7465
|
integration?: {
|
7244
7466
|
id: number;
|
7245
7467
|
helphub_view_article_button_hidden: boolean | undefined;
|
7468
|
+
audience: {
|
7469
|
+
type: "all_users";
|
7470
|
+
} | {
|
7471
|
+
type: "rule_expression";
|
7472
|
+
expression: import("./helpers/rules").RuleExpression;
|
7473
|
+
} | {
|
7474
|
+
type: "named_rule_reference";
|
7475
|
+
rule_reference: {
|
7476
|
+
type: "named_rule";
|
7477
|
+
rule_id: string | number;
|
7478
|
+
} & {
|
7479
|
+
reason?: string | undefined;
|
7480
|
+
};
|
7481
|
+
} | undefined;
|
7246
7482
|
} | null | undefined;
|
7247
7483
|
}>;
|
7248
7484
|
export declare const batch: (request: t.TypeOf<typeof GenericBatchRequest>) => Promise<{
|
@@ -7427,7 +7663,7 @@ export declare const batch: (request: t.TypeOf<typeof GenericBatchRequest>) => P
|
|
7427
7663
|
}) | {
|
7428
7664
|
type: "open_chat";
|
7429
7665
|
meta: {
|
7430
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
7666
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
7431
7667
|
};
|
7432
7668
|
} | {
|
7433
7669
|
type: "dismiss";
|
@@ -7553,7 +7789,7 @@ export declare const batch: (request: t.TypeOf<typeof GenericBatchRequest>) => P
|
|
7553
7789
|
};
|
7554
7790
|
tags: string[];
|
7555
7791
|
availability_rules: (({
|
7556
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7792
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7557
7793
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
7558
7794
|
} & {
|
7559
7795
|
field?: string | undefined;
|
@@ -7586,7 +7822,7 @@ export declare const batch: (request: t.TypeOf<typeof GenericBatchRequest>) => P
|
|
7586
7822
|
} & {
|
7587
7823
|
reason?: string | undefined;
|
7588
7824
|
}) | ({
|
7589
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7825
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7590
7826
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
7591
7827
|
} & {
|
7592
7828
|
field?: string | undefined;
|
@@ -7615,7 +7851,7 @@ export declare const batch: (request: t.TypeOf<typeof GenericBatchRequest>) => P
|
|
7615
7851
|
reason?: string | undefined;
|
7616
7852
|
}))[];
|
7617
7853
|
recommend_rules: (({
|
7618
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7854
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7619
7855
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
7620
7856
|
} & {
|
7621
7857
|
field?: string | undefined;
|
@@ -7656,7 +7892,7 @@ export declare const batch: (request: t.TypeOf<typeof GenericBatchRequest>) => P
|
|
7656
7892
|
} & {
|
7657
7893
|
reason?: string | undefined;
|
7658
7894
|
}) | ({
|
7659
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7895
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
7660
7896
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
7661
7897
|
} & {
|
7662
7898
|
field?: string | undefined;
|
@@ -7776,7 +8012,7 @@ export declare const batch: (request: t.TypeOf<typeof GenericBatchRequest>) => P
|
|
7776
8012
|
}) | {
|
7777
8013
|
type: "open_chat";
|
7778
8014
|
meta: {
|
7779
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
8015
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
7780
8016
|
};
|
7781
8017
|
} | {
|
7782
8018
|
type: "dismiss";
|
@@ -7816,6 +8052,7 @@ export declare const batch: (request: t.TypeOf<typeof GenericBatchRequest>) => P
|
|
7816
8052
|
show_in_helphub_search: boolean;
|
7817
8053
|
copilot_cta_label: string;
|
7818
8054
|
copilot_description: string;
|
8055
|
+
copilot_use_verbatim: boolean;
|
7819
8056
|
editor_tags: string[];
|
7820
8057
|
} & {
|
7821
8058
|
third_party_source?: string | null | undefined;
|
@@ -7824,6 +8061,20 @@ export declare const batch: (request: t.TypeOf<typeof GenericBatchRequest>) => P
|
|
7824
8061
|
integration?: {
|
7825
8062
|
id: number;
|
7826
8063
|
helphub_view_article_button_hidden: boolean | undefined;
|
8064
|
+
audience: {
|
8065
|
+
type: "all_users";
|
8066
|
+
} | {
|
8067
|
+
type: "rule_expression";
|
8068
|
+
expression: import("./helpers/rules").RuleExpression;
|
8069
|
+
} | {
|
8070
|
+
type: "named_rule_reference";
|
8071
|
+
rule_reference: {
|
8072
|
+
type: "named_rule";
|
8073
|
+
rule_id: string | number;
|
8074
|
+
} & {
|
8075
|
+
reason?: string | undefined;
|
8076
|
+
};
|
8077
|
+
} | undefined;
|
7827
8078
|
} | null | undefined;
|
7828
8079
|
})[];
|
7829
8080
|
}>;
|
@@ -8049,7 +8300,7 @@ export declare const validateFromClient: (data: any) => Promise<{
|
|
8049
8300
|
random?: any;
|
8050
8301
|
} | null | undefined;
|
8051
8302
|
availability_rules?: (({
|
8052
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8303
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8053
8304
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
8054
8305
|
} & {
|
8055
8306
|
field?: string | undefined;
|
@@ -8078,7 +8329,7 @@ export declare const validateFromClient: (data: any) => Promise<{
|
|
8078
8329
|
reason?: string | undefined;
|
8079
8330
|
}))[] | undefined;
|
8080
8331
|
recommend_rules?: (({
|
8081
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8332
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8082
8333
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
8083
8334
|
} & {
|
8084
8335
|
field?: string | undefined;
|
@@ -8116,6 +8367,20 @@ export declare const validateFromClient: (data: any) => Promise<{
|
|
8116
8367
|
}))[] | undefined;
|
8117
8368
|
availability_expression?: import("./helpers/rules").RuleExpression[] | undefined;
|
8118
8369
|
recommend_expression?: import("./helpers/rules").RuleExpression[] | undefined;
|
8370
|
+
audience?: {
|
8371
|
+
type: "all_users";
|
8372
|
+
} | {
|
8373
|
+
type: "rule_expression";
|
8374
|
+
expression: import("./helpers/rules").RuleExpression;
|
8375
|
+
} | {
|
8376
|
+
type: "named_rule_reference";
|
8377
|
+
rule_reference: {
|
8378
|
+
type: "named_rule";
|
8379
|
+
rule_id: string | number;
|
8380
|
+
} & {
|
8381
|
+
reason?: string | undefined;
|
8382
|
+
};
|
8383
|
+
} | undefined;
|
8119
8384
|
detail?: string | ({
|
8120
8385
|
type: "html" | "video" | "plaintext" | "markdown" | "component" | "react";
|
8121
8386
|
value: string;
|
@@ -8323,7 +8588,7 @@ export declare const decodeEditorCommand: (data: {
|
|
8323
8588
|
}) | {
|
8324
8589
|
type: "open_chat";
|
8325
8590
|
meta: {
|
8326
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
8591
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
8327
8592
|
};
|
8328
8593
|
} | {
|
8329
8594
|
type: "dismiss";
|
@@ -8551,7 +8816,7 @@ export declare const decodeEditorCommand: (data: {
|
|
8551
8816
|
}) | {
|
8552
8817
|
type: "open_chat";
|
8553
8818
|
meta: {
|
8554
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
8819
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
8555
8820
|
};
|
8556
8821
|
} | {
|
8557
8822
|
type: "dismiss";
|
@@ -8677,7 +8942,7 @@ export declare const decodeEditorCommand: (data: {
|
|
8677
8942
|
};
|
8678
8943
|
tags: string[];
|
8679
8944
|
availability_rules: (({
|
8680
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8945
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8681
8946
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
8682
8947
|
} & {
|
8683
8948
|
field?: string | undefined;
|
@@ -8710,7 +8975,7 @@ export declare const decodeEditorCommand: (data: {
|
|
8710
8975
|
} & {
|
8711
8976
|
reason?: string | undefined;
|
8712
8977
|
}) | ({
|
8713
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8978
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8714
8979
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
8715
8980
|
} & {
|
8716
8981
|
field?: string | undefined;
|
@@ -8739,7 +9004,7 @@ export declare const decodeEditorCommand: (data: {
|
|
8739
9004
|
reason?: string | undefined;
|
8740
9005
|
}))[];
|
8741
9006
|
recommend_rules: (({
|
8742
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9007
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8743
9008
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
8744
9009
|
} & {
|
8745
9010
|
field?: string | undefined;
|
@@ -8780,7 +9045,7 @@ export declare const decodeEditorCommand: (data: {
|
|
8780
9045
|
} & {
|
8781
9046
|
reason?: string | undefined;
|
8782
9047
|
}) | ({
|
8783
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9048
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
8784
9049
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
8785
9050
|
} & {
|
8786
9051
|
field?: string | undefined;
|
@@ -8900,7 +9165,7 @@ export declare const decodeEditorCommand: (data: {
|
|
8900
9165
|
}) | {
|
8901
9166
|
type: "open_chat";
|
8902
9167
|
meta: {
|
8903
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
9168
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
8904
9169
|
};
|
8905
9170
|
} | {
|
8906
9171
|
type: "dismiss";
|
@@ -8940,6 +9205,7 @@ export declare const decodeEditorCommand: (data: {
|
|
8940
9205
|
show_in_helphub_search: boolean;
|
8941
9206
|
copilot_cta_label: string;
|
8942
9207
|
copilot_description: string;
|
9208
|
+
copilot_use_verbatim: boolean;
|
8943
9209
|
editor_tags: string[];
|
8944
9210
|
} & {
|
8945
9211
|
third_party_source?: string | null | undefined;
|
@@ -8948,6 +9214,20 @@ export declare const decodeEditorCommand: (data: {
|
|
8948
9214
|
integration?: {
|
8949
9215
|
id: number;
|
8950
9216
|
helphub_view_article_button_hidden: boolean | undefined;
|
9217
|
+
audience: {
|
9218
|
+
type: "all_users";
|
9219
|
+
} | {
|
9220
|
+
type: "rule_expression";
|
9221
|
+
expression: import("./helpers/rules").RuleExpression;
|
9222
|
+
} | {
|
9223
|
+
type: "named_rule_reference";
|
9224
|
+
rule_reference: {
|
9225
|
+
type: "named_rule";
|
9226
|
+
rule_id: string | number;
|
9227
|
+
} & {
|
9228
|
+
reason?: string | undefined;
|
9229
|
+
};
|
9230
|
+
} | undefined;
|
8951
9231
|
} | null | undefined;
|
8952
9232
|
};
|
8953
9233
|
export declare const createWithoutThrottle: (object: {
|
@@ -9131,7 +9411,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9131
9411
|
}) | {
|
9132
9412
|
type: "open_chat";
|
9133
9413
|
meta: {
|
9134
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
9414
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
9135
9415
|
};
|
9136
9416
|
} | {
|
9137
9417
|
type: "dismiss";
|
@@ -9257,7 +9537,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9257
9537
|
};
|
9258
9538
|
tags: string[];
|
9259
9539
|
availability_rules: (({
|
9260
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9540
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9261
9541
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
9262
9542
|
} & {
|
9263
9543
|
field?: string | undefined;
|
@@ -9290,7 +9570,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9290
9570
|
} & {
|
9291
9571
|
reason?: string | undefined;
|
9292
9572
|
}) | ({
|
9293
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9573
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9294
9574
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
9295
9575
|
} & {
|
9296
9576
|
field?: string | undefined;
|
@@ -9319,7 +9599,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9319
9599
|
reason?: string | undefined;
|
9320
9600
|
}))[];
|
9321
9601
|
recommend_rules: (({
|
9322
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9602
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9323
9603
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
9324
9604
|
} & {
|
9325
9605
|
field?: string | undefined;
|
@@ -9360,7 +9640,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9360
9640
|
} & {
|
9361
9641
|
reason?: string | undefined;
|
9362
9642
|
}) | ({
|
9363
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9643
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9364
9644
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
9365
9645
|
} & {
|
9366
9646
|
field?: string | undefined;
|
@@ -9480,7 +9760,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9480
9760
|
}) | {
|
9481
9761
|
type: "open_chat";
|
9482
9762
|
meta: {
|
9483
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
9763
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
9484
9764
|
};
|
9485
9765
|
} | {
|
9486
9766
|
type: "dismiss";
|
@@ -9520,6 +9800,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9520
9800
|
show_in_helphub_search: boolean;
|
9521
9801
|
copilot_cta_label: string;
|
9522
9802
|
copilot_description: string;
|
9803
|
+
copilot_use_verbatim: boolean;
|
9523
9804
|
editor_tags: string[];
|
9524
9805
|
} & {
|
9525
9806
|
third_party_source?: string | null | undefined;
|
@@ -9528,6 +9809,20 @@ export declare const createWithoutThrottle: (object: {
|
|
9528
9809
|
integration?: {
|
9529
9810
|
id: number;
|
9530
9811
|
helphub_view_article_button_hidden: boolean | undefined;
|
9812
|
+
audience: {
|
9813
|
+
type: "all_users";
|
9814
|
+
} | {
|
9815
|
+
type: "rule_expression";
|
9816
|
+
expression: import("./helpers/rules").RuleExpression;
|
9817
|
+
} | {
|
9818
|
+
type: "named_rule_reference";
|
9819
|
+
rule_reference: {
|
9820
|
+
type: "named_rule";
|
9821
|
+
rule_id: string | number;
|
9822
|
+
} & {
|
9823
|
+
reason?: string | undefined;
|
9824
|
+
};
|
9825
|
+
} | undefined;
|
9531
9826
|
} | null | undefined;
|
9532
9827
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
9533
9828
|
id: number;
|
@@ -9710,7 +10005,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9710
10005
|
}) | {
|
9711
10006
|
type: "open_chat";
|
9712
10007
|
meta: {
|
9713
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
10008
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
9714
10009
|
};
|
9715
10010
|
} | {
|
9716
10011
|
type: "dismiss";
|
@@ -9836,7 +10131,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9836
10131
|
};
|
9837
10132
|
tags: string[];
|
9838
10133
|
availability_rules: (({
|
9839
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10134
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9840
10135
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
9841
10136
|
} & {
|
9842
10137
|
field?: string | undefined;
|
@@ -9869,7 +10164,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9869
10164
|
} & {
|
9870
10165
|
reason?: string | undefined;
|
9871
10166
|
}) | ({
|
9872
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10167
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9873
10168
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
9874
10169
|
} & {
|
9875
10170
|
field?: string | undefined;
|
@@ -9898,7 +10193,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9898
10193
|
reason?: string | undefined;
|
9899
10194
|
}))[];
|
9900
10195
|
recommend_rules: (({
|
9901
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10196
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9902
10197
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
9903
10198
|
} & {
|
9904
10199
|
field?: string | undefined;
|
@@ -9939,7 +10234,7 @@ export declare const createWithoutThrottle: (object: {
|
|
9939
10234
|
} & {
|
9940
10235
|
reason?: string | undefined;
|
9941
10236
|
}) | ({
|
9942
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10237
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
9943
10238
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
9944
10239
|
} & {
|
9945
10240
|
field?: string | undefined;
|
@@ -10059,7 +10354,7 @@ export declare const createWithoutThrottle: (object: {
|
|
10059
10354
|
}) | {
|
10060
10355
|
type: "open_chat";
|
10061
10356
|
meta: {
|
10062
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
10357
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
10063
10358
|
};
|
10064
10359
|
} | {
|
10065
10360
|
type: "dismiss";
|
@@ -10099,6 +10394,7 @@ export declare const createWithoutThrottle: (object: {
|
|
10099
10394
|
show_in_helphub_search: boolean;
|
10100
10395
|
copilot_cta_label: string;
|
10101
10396
|
copilot_description: string;
|
10397
|
+
copilot_use_verbatim: boolean;
|
10102
10398
|
editor_tags: string[];
|
10103
10399
|
} & {
|
10104
10400
|
third_party_source?: string | null | undefined;
|
@@ -10107,6 +10403,20 @@ export declare const createWithoutThrottle: (object: {
|
|
10107
10403
|
integration?: {
|
10108
10404
|
id: number;
|
10109
10405
|
helphub_view_article_button_hidden: boolean | undefined;
|
10406
|
+
audience: {
|
10407
|
+
type: "all_users";
|
10408
|
+
} | {
|
10409
|
+
type: "rule_expression";
|
10410
|
+
expression: import("./helpers/rules").RuleExpression;
|
10411
|
+
} | {
|
10412
|
+
type: "named_rule_reference";
|
10413
|
+
rule_reference: {
|
10414
|
+
type: "named_rule";
|
10415
|
+
rule_id: string | number;
|
10416
|
+
} & {
|
10417
|
+
reason?: string | undefined;
|
10418
|
+
};
|
10419
|
+
} | undefined;
|
10110
10420
|
} | null | undefined;
|
10111
10421
|
}>;
|
10112
10422
|
export declare const updateWithoutThrottle: (object: {
|
@@ -10290,7 +10600,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
10290
10600
|
}) | {
|
10291
10601
|
type: "open_chat";
|
10292
10602
|
meta: {
|
10293
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
10603
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
10294
10604
|
};
|
10295
10605
|
} | {
|
10296
10606
|
type: "dismiss";
|
@@ -10416,7 +10726,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
10416
10726
|
};
|
10417
10727
|
tags: string[];
|
10418
10728
|
availability_rules: (({
|
10419
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10729
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10420
10730
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
10421
10731
|
} & {
|
10422
10732
|
field?: string | undefined;
|
@@ -10449,7 +10759,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
10449
10759
|
} & {
|
10450
10760
|
reason?: string | undefined;
|
10451
10761
|
}) | ({
|
10452
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10762
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10453
10763
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
10454
10764
|
} & {
|
10455
10765
|
field?: string | undefined;
|
@@ -10478,7 +10788,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
10478
10788
|
reason?: string | undefined;
|
10479
10789
|
}))[];
|
10480
10790
|
recommend_rules: (({
|
10481
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10791
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10482
10792
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
10483
10793
|
} & {
|
10484
10794
|
field?: string | undefined;
|
@@ -10519,7 +10829,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
10519
10829
|
} & {
|
10520
10830
|
reason?: string | undefined;
|
10521
10831
|
}) | ({
|
10522
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10832
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10523
10833
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
10524
10834
|
} & {
|
10525
10835
|
field?: string | undefined;
|
@@ -10639,7 +10949,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
10639
10949
|
}) | {
|
10640
10950
|
type: "open_chat";
|
10641
10951
|
meta: {
|
10642
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
10952
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
10643
10953
|
};
|
10644
10954
|
} | {
|
10645
10955
|
type: "dismiss";
|
@@ -10679,6 +10989,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
10679
10989
|
show_in_helphub_search: boolean;
|
10680
10990
|
copilot_cta_label: string;
|
10681
10991
|
copilot_description: string;
|
10992
|
+
copilot_use_verbatim: boolean;
|
10682
10993
|
editor_tags: string[];
|
10683
10994
|
} & {
|
10684
10995
|
third_party_source?: string | null | undefined;
|
@@ -10687,6 +10998,20 @@ export declare const updateWithoutThrottle: (object: {
|
|
10687
10998
|
integration?: {
|
10688
10999
|
id: number;
|
10689
11000
|
helphub_view_article_button_hidden: boolean | undefined;
|
11001
|
+
audience: {
|
11002
|
+
type: "all_users";
|
11003
|
+
} | {
|
11004
|
+
type: "rule_expression";
|
11005
|
+
expression: import("./helpers/rules").RuleExpression;
|
11006
|
+
} | {
|
11007
|
+
type: "named_rule_reference";
|
11008
|
+
rule_reference: {
|
11009
|
+
type: "named_rule";
|
11010
|
+
rule_id: string | number;
|
11011
|
+
} & {
|
11012
|
+
reason?: string | undefined;
|
11013
|
+
};
|
11014
|
+
} | undefined;
|
10690
11015
|
} | null | undefined;
|
10691
11016
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
10692
11017
|
id: number;
|
@@ -10869,7 +11194,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
10869
11194
|
}) | {
|
10870
11195
|
type: "open_chat";
|
10871
11196
|
meta: {
|
10872
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
11197
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
10873
11198
|
};
|
10874
11199
|
} | {
|
10875
11200
|
type: "dismiss";
|
@@ -10995,7 +11320,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
10995
11320
|
};
|
10996
11321
|
tags: string[];
|
10997
11322
|
availability_rules: (({
|
10998
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
11323
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
10999
11324
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
11000
11325
|
} & {
|
11001
11326
|
field?: string | undefined;
|
@@ -11028,7 +11353,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
11028
11353
|
} & {
|
11029
11354
|
reason?: string | undefined;
|
11030
11355
|
}) | ({
|
11031
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
11356
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
11032
11357
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
11033
11358
|
} & {
|
11034
11359
|
field?: string | undefined;
|
@@ -11057,7 +11382,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
11057
11382
|
reason?: string | undefined;
|
11058
11383
|
}))[];
|
11059
11384
|
recommend_rules: (({
|
11060
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
11385
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
11061
11386
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
11062
11387
|
} & {
|
11063
11388
|
field?: string | undefined;
|
@@ -11098,7 +11423,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
11098
11423
|
} & {
|
11099
11424
|
reason?: string | undefined;
|
11100
11425
|
}) | ({
|
11101
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
11426
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
11102
11427
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
11103
11428
|
} & {
|
11104
11429
|
field?: string | undefined;
|
@@ -11218,7 +11543,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
11218
11543
|
}) | {
|
11219
11544
|
type: "open_chat";
|
11220
11545
|
meta: {
|
11221
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
11546
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
11222
11547
|
};
|
11223
11548
|
} | {
|
11224
11549
|
type: "dismiss";
|
@@ -11258,6 +11583,7 @@ export declare const updateWithoutThrottle: (object: {
|
|
11258
11583
|
show_in_helphub_search: boolean;
|
11259
11584
|
copilot_cta_label: string;
|
11260
11585
|
copilot_description: string;
|
11586
|
+
copilot_use_verbatim: boolean;
|
11261
11587
|
editor_tags: string[];
|
11262
11588
|
} & {
|
11263
11589
|
third_party_source?: string | null | undefined;
|
@@ -11266,6 +11592,20 @@ export declare const updateWithoutThrottle: (object: {
|
|
11266
11592
|
integration?: {
|
11267
11593
|
id: number;
|
11268
11594
|
helphub_view_article_button_hidden: boolean | undefined;
|
11595
|
+
audience: {
|
11596
|
+
type: "all_users";
|
11597
|
+
} | {
|
11598
|
+
type: "rule_expression";
|
11599
|
+
expression: import("./helpers/rules").RuleExpression;
|
11600
|
+
} | {
|
11601
|
+
type: "named_rule_reference";
|
11602
|
+
rule_reference: {
|
11603
|
+
type: "named_rule";
|
11604
|
+
rule_id: string | number;
|
11605
|
+
} & {
|
11606
|
+
reason?: string | undefined;
|
11607
|
+
};
|
11608
|
+
} | undefined;
|
11269
11609
|
} | null | undefined;
|
11270
11610
|
}>;
|
11271
11611
|
export declare const deleteWithoutThrottle: (id: string | number, params?: Record<string, string> | undefined, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<void>;
|
@@ -11431,7 +11771,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
11431
11771
|
}>]>, t.TypeC<{
|
11432
11772
|
type: t.LiteralC<"open_chat">;
|
11433
11773
|
meta: t.TypeC<{
|
11434
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
11774
|
+
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<"">]>;
|
11435
11775
|
}>;
|
11436
11776
|
}>, t.TypeC<{
|
11437
11777
|
type: t.LiteralC<"dismiss">;
|
@@ -11549,7 +11889,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
11549
11889
|
}>]>]>>;
|
11550
11890
|
tags: t.ArrayC<t.StringC>;
|
11551
11891
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
11552
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
11892
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
11553
11893
|
operator: t.KeyofC<{
|
11554
11894
|
includes: null;
|
11555
11895
|
endsWith: null;
|
@@ -11613,7 +11953,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
11613
11953
|
}>, t.PartialC<{
|
11614
11954
|
reason: t.StringC;
|
11615
11955
|
}>]>]>>, t.ArrayC<t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
11616
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
11956
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
11617
11957
|
operator: t.KeyofC<{
|
11618
11958
|
includes: null;
|
11619
11959
|
endsWith: null;
|
@@ -11681,7 +12021,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
11681
12021
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
11682
12022
|
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
11683
12023
|
}>]>, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
11684
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
12024
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
11685
12025
|
operator: t.KeyofC<{
|
11686
12026
|
includes: null;
|
11687
12027
|
endsWith: null;
|
@@ -11753,7 +12093,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
11753
12093
|
reason: t.UnionC<[t.UndefinedC, t.NullC]>;
|
11754
12094
|
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
11755
12095
|
}>]>, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
11756
|
-
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
12096
|
+
type: t.UnionC<[t.LiteralC<"user_property">, t.LiteralC<"event_property">, t.LiteralC<"context">, t.LiteralC<"url">, t.LiteralC<"hostname">, t.LiteralC<"element">, t.LiteralC<"executions">, t.LiteralC<"shortcuts">, t.LiteralC<"last_seen">, t.LiteralC<"first_seen">, t.LiteralC<"sessions">, t.LiteralC<"opens">, t.LiteralC<"deadends">, t.LiteralC<"heap">, t.LiteralC<"hubspot">, t.LiteralC<"amplitude">, t.LiteralC<"device_type">, t.LiteralC<"ab_test">, t.LiteralC<"intent">, t.LiteralC<"help_doc_interaction">, t.LiteralC<"video_interaction">, t.LiteralC<"survey_response">]>;
|
11757
12097
|
operator: t.KeyofC<{
|
11758
12098
|
includes: null;
|
11759
12099
|
endsWith: null;
|
@@ -11898,7 +12238,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
11898
12238
|
}>]>, t.TypeC<{
|
11899
12239
|
type: t.LiteralC<"open_chat">;
|
11900
12240
|
meta: t.TypeC<{
|
11901
|
-
type: t.UnionC<[t.LiteralC<"intercom">, t.LiteralC<"helpscout">, t.LiteralC<"freshdesk">, t.LiteralC<"crisp">, t.LiteralC<"zendesk">, t.LiteralC<"liveChat">, t.LiteralC<"gist">, t.LiteralC<"olark">, t.LiteralC<"hubspot">, t.LiteralC<"drift">, t.LiteralC<"">]>;
|
12241
|
+
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<"">]>;
|
11902
12242
|
}>;
|
11903
12243
|
}>, t.TypeC<{
|
11904
12244
|
type: t.LiteralC<"dismiss">;
|
@@ -11936,6 +12276,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
11936
12276
|
show_in_helphub_search: t.BooleanC;
|
11937
12277
|
copilot_cta_label: t.StringC;
|
11938
12278
|
copilot_description: t.StringC;
|
12279
|
+
copilot_use_verbatim: t.BooleanC;
|
11939
12280
|
editor_tags: t.ArrayC<t.StringC>;
|
11940
12281
|
}>, t.PartialC<{
|
11941
12282
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -11944,6 +12285,20 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
11944
12285
|
integration: t.UnionC<[t.TypeC<{
|
11945
12286
|
id: t.NumberC;
|
11946
12287
|
helphub_view_article_button_hidden: t.UnionC<[t.BooleanC, t.UndefinedC]>;
|
12288
|
+
audience: t.UnionC<[t.UnionC<[t.TypeC<{
|
12289
|
+
type: t.LiteralC<"all_users">;
|
12290
|
+
}>, t.TypeC<{
|
12291
|
+
type: t.LiteralC<"rule_expression">;
|
12292
|
+
expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
12293
|
+
}>, t.TypeC<{
|
12294
|
+
type: t.LiteralC<"named_rule_reference">;
|
12295
|
+
rule_reference: t.IntersectionC<[t.TypeC<{
|
12296
|
+
type: t.LiteralC<"named_rule">;
|
12297
|
+
rule_id: t.UnionC<[t.NumberC, t.StringC]>;
|
12298
|
+
}>, t.PartialC<{
|
12299
|
+
reason: t.StringC;
|
12300
|
+
}>]>;
|
12301
|
+
}>]>, t.UndefinedC]>;
|
11947
12302
|
}>, t.NullC]>;
|
11948
12303
|
}>]>;
|
11949
12304
|
export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<({
|
@@ -12127,7 +12482,7 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12127
12482
|
}) | {
|
12128
12483
|
type: "open_chat";
|
12129
12484
|
meta: {
|
12130
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
12485
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
12131
12486
|
};
|
12132
12487
|
} | {
|
12133
12488
|
type: "dismiss";
|
@@ -12265,6 +12620,14 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12265
12620
|
});
|
12266
12621
|
};
|
12267
12622
|
shortcut: string[];
|
12623
|
+
icon_color: string | null;
|
12624
|
+
image_color: string | null;
|
12625
|
+
show_preview: boolean;
|
12626
|
+
shortcut_mac: string[];
|
12627
|
+
shortcut_win: string[];
|
12628
|
+
hotkey_mac: string;
|
12629
|
+
hotkey_win: string;
|
12630
|
+
category: number | null;
|
12268
12631
|
celebrate: boolean | {
|
12269
12632
|
angle?: number | undefined;
|
12270
12633
|
spread?: number | undefined;
|
@@ -12279,11 +12642,8 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12279
12642
|
colors?: string[] | undefined;
|
12280
12643
|
random?: any;
|
12281
12644
|
} | null;
|
12282
|
-
icon_color: string | null;
|
12283
|
-
image_color: string | null;
|
12284
|
-
show_preview: boolean;
|
12285
12645
|
availability_rules: (({
|
12286
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12646
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12287
12647
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
12288
12648
|
} & {
|
12289
12649
|
field?: string | undefined;
|
@@ -12316,7 +12676,7 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12316
12676
|
} & {
|
12317
12677
|
reason?: string | undefined;
|
12318
12678
|
}) | ({
|
12319
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12679
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12320
12680
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
12321
12681
|
} & {
|
12322
12682
|
field?: string | undefined;
|
@@ -12345,7 +12705,7 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12345
12705
|
reason?: string | undefined;
|
12346
12706
|
}))[];
|
12347
12707
|
recommend_rules: (({
|
12348
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12708
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12349
12709
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
12350
12710
|
} & {
|
12351
12711
|
field?: string | undefined;
|
@@ -12386,7 +12746,7 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12386
12746
|
} & {
|
12387
12747
|
reason?: string | undefined;
|
12388
12748
|
}) | ({
|
12389
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12749
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12390
12750
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
12391
12751
|
} & {
|
12392
12752
|
field?: string | undefined;
|
@@ -12425,12 +12785,7 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12425
12785
|
availability_expression: import("./helpers/rules").RuleExpression;
|
12426
12786
|
recommend_expression: import("./helpers/rules").RuleExpression;
|
12427
12787
|
always_recommend: boolean;
|
12428
|
-
category: number | null;
|
12429
12788
|
recommend_sort_key: number | null;
|
12430
|
-
shortcut_mac: string[];
|
12431
|
-
shortcut_win: string[];
|
12432
|
-
hotkey_mac: string;
|
12433
|
-
hotkey_win: string;
|
12434
12789
|
next_steps: (string | number | {
|
12435
12790
|
cta: string;
|
12436
12791
|
action: {
|
@@ -12454,7 +12809,7 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12454
12809
|
}) | {
|
12455
12810
|
type: "open_chat";
|
12456
12811
|
meta: {
|
12457
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
12812
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
12458
12813
|
};
|
12459
12814
|
} | {
|
12460
12815
|
type: "dismiss";
|
@@ -12489,6 +12844,7 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12489
12844
|
file_name: string;
|
12490
12845
|
size: string;
|
12491
12846
|
} | null;
|
12847
|
+
copilot_use_verbatim: boolean;
|
12492
12848
|
generated_tags: {
|
12493
12849
|
automated?: string[] | null | undefined;
|
12494
12850
|
manual?: string[] | null | undefined;
|
@@ -12501,6 +12857,20 @@ export declare const listHelpCenter: (onSuccess?: (() => void) | undefined, onEr
|
|
12501
12857
|
integration?: {
|
12502
12858
|
id: number;
|
12503
12859
|
helphub_view_article_button_hidden: boolean | undefined;
|
12860
|
+
audience: {
|
12861
|
+
type: "all_users";
|
12862
|
+
} | {
|
12863
|
+
type: "rule_expression";
|
12864
|
+
expression: import("./helpers/rules").RuleExpression;
|
12865
|
+
} | {
|
12866
|
+
type: "named_rule_reference";
|
12867
|
+
rule_reference: {
|
12868
|
+
type: "named_rule";
|
12869
|
+
rule_id: string | number;
|
12870
|
+
} & {
|
12871
|
+
reason?: string | undefined;
|
12872
|
+
};
|
12873
|
+
} | undefined;
|
12504
12874
|
} | null | undefined;
|
12505
12875
|
})[]>;
|
12506
12876
|
export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
@@ -12684,7 +13054,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
12684
13054
|
}) | {
|
12685
13055
|
type: "open_chat";
|
12686
13056
|
meta: {
|
12687
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
13057
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
12688
13058
|
};
|
12689
13059
|
} | {
|
12690
13060
|
type: "dismiss";
|
@@ -12810,7 +13180,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
12810
13180
|
};
|
12811
13181
|
tags: string[];
|
12812
13182
|
availability_rules: (({
|
12813
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13183
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12814
13184
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
12815
13185
|
} & {
|
12816
13186
|
field?: string | undefined;
|
@@ -12843,7 +13213,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
12843
13213
|
} & {
|
12844
13214
|
reason?: string | undefined;
|
12845
13215
|
}) | ({
|
12846
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13216
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12847
13217
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
12848
13218
|
} & {
|
12849
13219
|
field?: string | undefined;
|
@@ -12872,7 +13242,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
12872
13242
|
reason?: string | undefined;
|
12873
13243
|
}))[];
|
12874
13244
|
recommend_rules: (({
|
12875
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13245
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12876
13246
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
12877
13247
|
} & {
|
12878
13248
|
field?: string | undefined;
|
@@ -12913,7 +13283,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
12913
13283
|
} & {
|
12914
13284
|
reason?: string | undefined;
|
12915
13285
|
}) | ({
|
12916
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13286
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
12917
13287
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
12918
13288
|
} & {
|
12919
13289
|
field?: string | undefined;
|
@@ -13033,7 +13403,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13033
13403
|
}) | {
|
13034
13404
|
type: "open_chat";
|
13035
13405
|
meta: {
|
13036
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
13406
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
13037
13407
|
};
|
13038
13408
|
} | {
|
13039
13409
|
type: "dismiss";
|
@@ -13073,6 +13443,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13073
13443
|
show_in_helphub_search: boolean;
|
13074
13444
|
copilot_cta_label: string;
|
13075
13445
|
copilot_description: string;
|
13446
|
+
copilot_use_verbatim: boolean;
|
13076
13447
|
editor_tags: string[];
|
13077
13448
|
} & {
|
13078
13449
|
third_party_source?: string | null | undefined;
|
@@ -13081,6 +13452,20 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13081
13452
|
integration?: {
|
13082
13453
|
id: number;
|
13083
13454
|
helphub_view_article_button_hidden: boolean | undefined;
|
13455
|
+
audience: {
|
13456
|
+
type: "all_users";
|
13457
|
+
} | {
|
13458
|
+
type: "rule_expression";
|
13459
|
+
expression: import("./helpers/rules").RuleExpression;
|
13460
|
+
} | {
|
13461
|
+
type: "named_rule_reference";
|
13462
|
+
rule_reference: {
|
13463
|
+
type: "named_rule";
|
13464
|
+
rule_id: string | number;
|
13465
|
+
} & {
|
13466
|
+
reason?: string | undefined;
|
13467
|
+
};
|
13468
|
+
} | undefined;
|
13084
13469
|
} | null | undefined;
|
13085
13470
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
13086
13471
|
id: number;
|
@@ -13263,7 +13648,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13263
13648
|
}) | {
|
13264
13649
|
type: "open_chat";
|
13265
13650
|
meta: {
|
13266
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
13651
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
13267
13652
|
};
|
13268
13653
|
} | {
|
13269
13654
|
type: "dismiss";
|
@@ -13389,7 +13774,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13389
13774
|
};
|
13390
13775
|
tags: string[];
|
13391
13776
|
availability_rules: (({
|
13392
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13777
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13393
13778
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
13394
13779
|
} & {
|
13395
13780
|
field?: string | undefined;
|
@@ -13422,7 +13807,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13422
13807
|
} & {
|
13423
13808
|
reason?: string | undefined;
|
13424
13809
|
}) | ({
|
13425
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13810
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13426
13811
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
13427
13812
|
} & {
|
13428
13813
|
field?: string | undefined;
|
@@ -13451,7 +13836,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13451
13836
|
reason?: string | undefined;
|
13452
13837
|
}))[];
|
13453
13838
|
recommend_rules: (({
|
13454
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13839
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13455
13840
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
13456
13841
|
} & {
|
13457
13842
|
field?: string | undefined;
|
@@ -13492,7 +13877,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13492
13877
|
} & {
|
13493
13878
|
reason?: string | undefined;
|
13494
13879
|
}) | ({
|
13495
|
-
type: "url" | "element" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13880
|
+
type: "url" | "element" | "amplitude" | "context" | "hubspot" | "device_type" | "sessions" | "survey_response" | "user_property" | "event_property" | "hostname" | "executions" | "shortcuts" | "last_seen" | "first_seen" | "opens" | "deadends" | "heap" | "ab_test" | "intent" | "help_doc_interaction" | "video_interaction";
|
13496
13881
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTrue" | "isFalse" | "isTruthy" | "isFalsy" | "matchesRegex" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage" | "selectorOnPage" | "classnameNotOnPage" | "idNotOnPage" | "selectorNotOnPage" | "doesNotInclude" | "isNot" | "isGreaterThan" | "isLessThan";
|
13497
13882
|
} & {
|
13498
13883
|
field?: string | undefined;
|
@@ -13612,7 +13997,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13612
13997
|
}) | {
|
13613
13998
|
type: "open_chat";
|
13614
13999
|
meta: {
|
13615
|
-
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
14000
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "freshchat" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift" | "zendesk_handoff";
|
13616
14001
|
};
|
13617
14002
|
} | {
|
13618
14003
|
type: "dismiss";
|
@@ -13652,6 +14037,7 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13652
14037
|
show_in_helphub_search: boolean;
|
13653
14038
|
copilot_cta_label: string;
|
13654
14039
|
copilot_description: string;
|
14040
|
+
copilot_use_verbatim: boolean;
|
13655
14041
|
editor_tags: string[];
|
13656
14042
|
} & {
|
13657
14043
|
third_party_source?: string | null | undefined;
|
@@ -13660,5 +14046,19 @@ export declare const updateHelpSyncCommandWithoutThrottle: (object: {
|
|
13660
14046
|
integration?: {
|
13661
14047
|
id: number;
|
13662
14048
|
helphub_view_article_button_hidden: boolean | undefined;
|
14049
|
+
audience: {
|
14050
|
+
type: "all_users";
|
14051
|
+
} | {
|
14052
|
+
type: "rule_expression";
|
14053
|
+
expression: import("./helpers/rules").RuleExpression;
|
14054
|
+
} | {
|
14055
|
+
type: "named_rule_reference";
|
14056
|
+
rule_reference: {
|
14057
|
+
type: "named_rule";
|
14058
|
+
rule_id: string | number;
|
14059
|
+
} & {
|
14060
|
+
reason?: string | undefined;
|
14061
|
+
};
|
14062
|
+
} | undefined;
|
13663
14063
|
} | null | undefined;
|
13664
14064
|
}>;
|