commandbar 1.8.7 → 1.10.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/{internal/src/client → commandbar/src/shared/services/analytics}/EventHandler.d.ts +51 -15
- package/build/commandbar/src/shared/services/analytics/types.d.ts +77 -0
- package/build/commandbar-js/src/index.d.ts +2 -2
- package/build/commandbar-js/src/index.js +1 -1
- package/build/internal/src/client/AddContextOptions.d.ts +8 -0
- package/build/internal/src/client/CommandBarClientSDK.d.ts +70 -19
- package/build/internal/src/client/CommandBarProxySDK.d.ts +3 -3
- package/build/internal/src/client/CommandBarSDK.d.ts +34 -18
- package/build/internal/src/client/SDKConfig.d.ts +3 -2
- package/build/internal/src/client/globals.d.ts +6 -0
- package/build/internal/src/client/symbols.d.ts +13 -6
- package/build/internal/src/middleware/CommandFromClientV.d.ts +88 -18
- package/build/internal/src/middleware/IRecordSettings.d.ts +3 -0
- package/build/internal/src/middleware/OrganizationV.d.ts +320 -22
- package/build/internal/src/middleware/{ResourceSettingsV.d.ts → RecordSettingsV.d.ts} +2 -2
- package/build/internal/src/middleware/additionalResource.d.ts +270 -27
- package/build/internal/src/middleware/billing.d.ts +31 -0
- package/build/internal/src/middleware/chat.d.ts +12933 -0
- package/build/internal/src/middleware/checklist.d.ts +589 -70
- package/build/internal/src/middleware/command.d.ts +5433 -677
- package/build/internal/src/middleware/detailPreview.d.ts +12 -1
- package/build/internal/src/middleware/endUser.d.ts +132 -0
- package/build/internal/src/middleware/entityChanges.d.ts +17 -0
- package/build/internal/src/middleware/experienceTemplate.d.ts +59 -0
- package/build/internal/src/middleware/experiencesSearch.d.ts +3579 -0
- package/build/internal/src/middleware/flags.d.ts +20 -0
- package/build/internal/src/middleware/generics.d.ts +12 -11
- package/build/internal/src/middleware/helpDocsIntegration.d.ts +63 -8
- package/build/internal/src/middleware/helpDocsSearch.d.ts +2540 -0
- package/build/internal/src/middleware/helpHub.d.ts +26 -0
- package/build/internal/src/middleware/helpers/actions.d.ts +174 -16
- package/build/internal/src/middleware/helpers/commandTemplate.d.ts +144 -2
- package/build/internal/src/middleware/helpers/copilotPersonality.d.ts +12 -0
- package/build/internal/src/middleware/helpers/goals.d.ts +4 -2
- package/build/internal/src/middleware/helpers/pushTrigger.d.ts +28 -0
- package/build/internal/src/middleware/helpers/rules.d.ts +318 -50
- package/build/internal/src/middleware/network.d.ts +27 -3
- package/build/internal/src/middleware/nudge.d.ts +2220 -91
- package/build/internal/src/middleware/organization.d.ts +2289 -152
- package/build/internal/src/middleware/organizationSettings.d.ts +435 -20
- package/build/internal/src/middleware/profile.d.ts +2 -0
- package/build/internal/src/middleware/recommendationSet.d.ts +489 -1007
- package/build/internal/src/middleware/releases.d.ts +1 -1
- package/build/internal/src/middleware/theme.d.ts +425 -0
- package/build/internal/src/middleware/types.d.ts +88 -34
- package/build/internal/src/middleware/user.d.ts +1 -0
- package/build/internal/src/util/dispatchCustomEvent.d.ts +5 -3
- package/build/internal/src/util/operatingSystem.d.ts +11 -0
- package/build/internal/src/util/sentry.d.ts +23 -0
- package/package.json +3 -3
- package/src/index.ts +2 -2
- package/src/init.ts +11 -6
- package/src/snippet.ts +2 -2
- package/build/internal/src/client/AnalyticsEventTypes.d.ts +0 -1
- package/build/internal/src/client/SentryReporter.d.ts +0 -63
- package/build/internal/src/middleware/IResourceSettings.d.ts +0 -3
- package/build/internal/src/middleware/chatAnalytics.d.ts +0 -2601
- package/build/internal/src/middleware/dashboardFlags.d.ts +0 -9
- package/build/internal/src/middleware/helpers/endUser.d.ts +0 -11
- package/build/internal/src/middleware/qaPair.d.ts +0 -676
- package/build/internal/src/util/integrations.d.ts +0 -1
@@ -0,0 +1,26 @@
|
|
1
|
+
import { DeviceType } from '../util/operatingSystem';
|
2
|
+
import * as t from 'io-ts';
|
3
|
+
import { IHelpHubLauncherSettingsType, IOrganizationType } from './types';
|
4
|
+
export declare const HelpHubLauncherPositionsV: t.UnionC<[t.LiteralC<"topRight">, t.LiteralC<"topLeft">, t.LiteralC<"bottomRight">, t.LiteralC<"bottomLeft">]>;
|
5
|
+
export declare const HelpHubLauncherTypesV: t.UnionC<[t.LiteralC<"bookOpen">, t.LiteralC<"graduationHat">, t.LiteralC<"bookClosed">, t.LiteralC<"bookmark">, t.LiteralC<"chatCircle">, t.LiteralC<"askAI">, t.LiteralC<"custom">, t.LiteralC<"none">]>;
|
6
|
+
export declare const HelpHubLauncherSettingsV: t.TypeC<{
|
7
|
+
helphub_launcher_offset_x: t.NumberC;
|
8
|
+
helphub_launcher_offset_y: t.NumberC;
|
9
|
+
helphub_launcher_anchor: t.StringC;
|
10
|
+
helphub_launcher_position: t.UnionC<[t.LiteralC<"topRight">, t.LiteralC<"topLeft">, t.LiteralC<"bottomRight">, t.LiteralC<"bottomLeft">]>;
|
11
|
+
helphub_launcher_type: t.UnionC<[t.LiteralC<"bookOpen">, t.LiteralC<"graduationHat">, t.LiteralC<"bookClosed">, t.LiteralC<"bookmark">, t.LiteralC<"chatCircle">, t.LiteralC<"askAI">, t.LiteralC<"custom">, t.LiteralC<"none">]>;
|
12
|
+
helphub_mobile_launcher_offset_x: t.NumberC;
|
13
|
+
helphub_mobile_launcher_offset_y: t.NumberC;
|
14
|
+
helphub_mobile_launcher_anchor: t.StringC;
|
15
|
+
helphub_mobile_launcher_position: t.UnionC<[t.LiteralC<"topRight">, t.LiteralC<"topLeft">, t.LiteralC<"bottomRight">, t.LiteralC<"bottomLeft">]>;
|
16
|
+
helphub_mobile_launcher_type: t.UnionC<[t.LiteralC<"bookOpen">, t.LiteralC<"graduationHat">, t.LiteralC<"bookClosed">, t.LiteralC<"bookmark">, t.LiteralC<"chatCircle">, t.LiteralC<"askAI">, t.LiteralC<"custom">, t.LiteralC<"none">]>;
|
17
|
+
}>;
|
18
|
+
export declare const getHelpHubLauncherSettingKeys: (deviceType: DeviceType) => Record<string, keyof IHelpHubLauncherSettingsType>;
|
19
|
+
export type HelpHubLauncherMergedSettings = {
|
20
|
+
type: IHelpHubLauncherSettingsType['helphub_launcher_type'] | IHelpHubLauncherSettingsType['helphub_mobile_launcher_type'];
|
21
|
+
anchor: IHelpHubLauncherSettingsType['helphub_launcher_anchor'] | IHelpHubLauncherSettingsType['helphub_mobile_launcher_anchor'];
|
22
|
+
position: IHelpHubLauncherSettingsType['helphub_launcher_position'] | IHelpHubLauncherSettingsType['helphub_mobile_launcher_position'];
|
23
|
+
offsetX: IHelpHubLauncherSettingsType['helphub_launcher_offset_x'] | IHelpHubLauncherSettingsType['helphub_mobile_launcher_offset_x'];
|
24
|
+
offsetY: IHelpHubLauncherSettingsType['helphub_launcher_offset_y'] | IHelpHubLauncherSettingsType['helphub_mobile_launcher_offset_y'];
|
25
|
+
};
|
26
|
+
export declare const getHelpHubLauncherSettings: (deviceType: DeviceType, organization: IOrganizationType) => HelpHubLauncherMergedSettings;
|
@@ -14,21 +14,34 @@ export declare const OpenBarAction: t.IntersectionC<[t.TypeC<{
|
|
14
14
|
value: t.StringC;
|
15
15
|
categoryFilter: t.NumberC;
|
16
16
|
}>]>;
|
17
|
+
export declare const OpenHelpHubAction: t.TypeC<{
|
18
|
+
type: t.LiteralC<"open_helphub">;
|
19
|
+
}>;
|
20
|
+
export declare const OpenCopilotAction: t.TypeC<{
|
21
|
+
type: t.LiteralC<"open_copilot">;
|
22
|
+
}>;
|
17
23
|
export declare const LinkAction: t.IntersectionC<[t.TypeC<{
|
18
24
|
type: t.LiteralC<"link">;
|
19
25
|
value: t.StringC;
|
20
26
|
}>, t.PartialC<{
|
21
27
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
22
28
|
}>]>;
|
23
|
-
export declare const
|
29
|
+
export declare const OpenChatActionTypeV: 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<"">]>;
|
30
|
+
export declare const OpenChatActionV: t.TypeC<{
|
24
31
|
type: t.LiteralC<"open_chat">;
|
25
32
|
meta: t.TypeC<{
|
26
|
-
type: t.
|
33
|
+
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<"">]>;
|
27
34
|
}>;
|
28
35
|
}>;
|
29
36
|
export declare const DismissAction: t.TypeC<{
|
30
37
|
type: t.LiteralC<"dismiss">;
|
31
38
|
}>;
|
39
|
+
export declare const StepBackAction: t.TypeC<{
|
40
|
+
type: t.LiteralC<"step_back">;
|
41
|
+
}>;
|
42
|
+
export declare const SnoozeAction: t.TypeC<{
|
43
|
+
type: t.LiteralC<"snooze">;
|
44
|
+
}>;
|
32
45
|
export declare const ClickAction: t.TypeC<{
|
33
46
|
type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
|
34
47
|
value: t.ArrayC<t.StringC>;
|
@@ -45,6 +58,10 @@ export declare const AppcuesAction: t.TypeC<{
|
|
45
58
|
type: t.LiteralC<"appcues">;
|
46
59
|
value: t.StringC;
|
47
60
|
}>;
|
61
|
+
export declare const PendoGuideAction: t.TypeC<{
|
62
|
+
type: t.LiteralC<"pendo_guide">;
|
63
|
+
value: t.StringC;
|
64
|
+
}>;
|
48
65
|
export declare const ScriptAction: t.TypeC<{
|
49
66
|
type: t.LiteralC<"script">;
|
50
67
|
value: t.StringC;
|
@@ -63,11 +80,14 @@ export declare const HelpDocAction: t.IntersectionC<[t.TypeC<{
|
|
63
80
|
date: t.StringC;
|
64
81
|
}>;
|
65
82
|
}>]>;
|
66
|
-
export declare const
|
83
|
+
export declare const CommandActionMetaTypeV: t.UnionC<[t.LiteralC<"action">, t.LiteralC<"link">, t.LiteralC<"helpdoc">, t.LiteralC<"video">]>;
|
84
|
+
export declare const CommandActionV: t.TypeC<{
|
67
85
|
type: t.LiteralC<"execute_command">;
|
68
|
-
meta: t.TypeC<{
|
86
|
+
meta: t.IntersectionC<[t.TypeC<{
|
69
87
|
command: t.StringC;
|
70
|
-
}
|
88
|
+
}>, t.PartialC<{
|
89
|
+
type: t.UnionC<[t.LiteralC<"action">, t.LiteralC<"link">, t.LiteralC<"helpdoc">, t.LiteralC<"video">]>;
|
90
|
+
}>]>;
|
71
91
|
}>;
|
72
92
|
export declare const NoAction: t.TypeC<{
|
73
93
|
type: t.LiteralC<"no_action">;
|
@@ -76,20 +96,33 @@ export declare const ClickActionNew: t.TypeC<{
|
|
76
96
|
type: t.LiteralC<"click">;
|
77
97
|
value: t.StringC;
|
78
98
|
}>;
|
79
|
-
export declare const
|
99
|
+
export declare const NudgeActionV: t.TypeC<{
|
80
100
|
type: t.LiteralC<"nudge">;
|
81
101
|
value: t.NumberC;
|
82
102
|
}>;
|
103
|
+
export declare const GoToNudgeStepActionV: t.TypeC<{
|
104
|
+
type: t.LiteralC<"go_to_step">;
|
105
|
+
value: t.NumberC;
|
106
|
+
}>;
|
107
|
+
export declare const QuestlistActionV: t.TypeC<{
|
108
|
+
type: t.LiteralC<"questlist">;
|
109
|
+
value: t.NumberC;
|
110
|
+
}>;
|
83
111
|
export declare const ActionV: t.UnionC<[t.TypeC<{
|
84
112
|
type: t.LiteralC<"execute_command">;
|
85
|
-
meta: t.TypeC<{
|
113
|
+
meta: t.IntersectionC<[t.TypeC<{
|
86
114
|
command: t.StringC;
|
87
|
-
}
|
115
|
+
}>, t.PartialC<{
|
116
|
+
type: t.UnionC<[t.LiteralC<"action">, t.LiteralC<"link">, t.LiteralC<"helpdoc">, t.LiteralC<"video">]>;
|
117
|
+
}>]>;
|
88
118
|
}>, t.TypeC<{
|
89
119
|
type: t.LiteralC<"no_action">;
|
90
120
|
}>, t.TypeC<{
|
91
121
|
type: t.LiteralC<"click">;
|
92
122
|
value: t.StringC;
|
123
|
+
}>, t.TypeC<{
|
124
|
+
type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
|
125
|
+
value: t.ArrayC<t.StringC>;
|
93
126
|
}>, t.IntersectionC<[t.TypeC<{
|
94
127
|
type: t.LiteralC<"link">;
|
95
128
|
value: t.StringC;
|
@@ -98,23 +131,50 @@ export declare const ActionV: t.UnionC<[t.TypeC<{
|
|
98
131
|
}>]>, t.TypeC<{
|
99
132
|
type: t.LiteralC<"open_chat">;
|
100
133
|
meta: t.TypeC<{
|
101
|
-
type: t.
|
134
|
+
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<"">]>;
|
102
135
|
}>;
|
103
136
|
}>, t.TypeC<{
|
104
137
|
type: t.LiteralC<"dismiss">;
|
138
|
+
}>, t.TypeC<{
|
139
|
+
type: t.LiteralC<"snooze">;
|
140
|
+
}>, t.TypeC<{
|
141
|
+
type: t.LiteralC<"questlist">;
|
142
|
+
value: t.NumberC;
|
143
|
+
}>, t.TypeC<{
|
144
|
+
type: t.LiteralC<"nudge">;
|
145
|
+
value: t.NumberC;
|
146
|
+
}>, t.TypeC<{
|
147
|
+
type: t.LiteralC<"go_to_step">;
|
148
|
+
value: t.NumberC;
|
149
|
+
}>, t.TypeC<{
|
150
|
+
type: t.LiteralC<"step_back">;
|
151
|
+
}>, t.IntersectionC<[t.TypeC<{
|
152
|
+
type: t.LiteralC<"open_bar">;
|
153
|
+
}>, t.PartialC<{
|
154
|
+
value: t.StringC;
|
155
|
+
categoryFilter: t.NumberC;
|
156
|
+
}>]>, t.TypeC<{
|
157
|
+
type: t.LiteralC<"open_helphub">;
|
158
|
+
}>, t.TypeC<{
|
159
|
+
type: t.LiteralC<"open_copilot">;
|
105
160
|
}>]>;
|
106
161
|
export declare const LabeledActionV: t.TypeC<{
|
107
162
|
cta: t.StringC;
|
108
163
|
action: t.UnionC<[t.TypeC<{
|
109
164
|
type: t.LiteralC<"execute_command">;
|
110
|
-
meta: t.TypeC<{
|
165
|
+
meta: t.IntersectionC<[t.TypeC<{
|
111
166
|
command: t.StringC;
|
112
|
-
}
|
167
|
+
}>, t.PartialC<{
|
168
|
+
type: t.UnionC<[t.LiteralC<"action">, t.LiteralC<"link">, t.LiteralC<"helpdoc">, t.LiteralC<"video">]>;
|
169
|
+
}>]>;
|
113
170
|
}>, t.TypeC<{
|
114
171
|
type: t.LiteralC<"no_action">;
|
115
172
|
}>, t.TypeC<{
|
116
173
|
type: t.LiteralC<"click">;
|
117
174
|
value: t.StringC;
|
175
|
+
}>, t.TypeC<{
|
176
|
+
type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
|
177
|
+
value: t.ArrayC<t.StringC>;
|
118
178
|
}>, t.IntersectionC<[t.TypeC<{
|
119
179
|
type: t.LiteralC<"link">;
|
120
180
|
value: t.StringC;
|
@@ -123,10 +183,32 @@ export declare const LabeledActionV: t.TypeC<{
|
|
123
183
|
}>]>, t.TypeC<{
|
124
184
|
type: t.LiteralC<"open_chat">;
|
125
185
|
meta: t.TypeC<{
|
126
|
-
type: t.
|
186
|
+
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<"">]>;
|
127
187
|
}>;
|
128
188
|
}>, t.TypeC<{
|
129
189
|
type: t.LiteralC<"dismiss">;
|
190
|
+
}>, t.TypeC<{
|
191
|
+
type: t.LiteralC<"snooze">;
|
192
|
+
}>, t.TypeC<{
|
193
|
+
type: t.LiteralC<"questlist">;
|
194
|
+
value: t.NumberC;
|
195
|
+
}>, t.TypeC<{
|
196
|
+
type: t.LiteralC<"nudge">;
|
197
|
+
value: t.NumberC;
|
198
|
+
}>, t.TypeC<{
|
199
|
+
type: t.LiteralC<"go_to_step">;
|
200
|
+
value: t.NumberC;
|
201
|
+
}>, t.TypeC<{
|
202
|
+
type: t.LiteralC<"step_back">;
|
203
|
+
}>, t.IntersectionC<[t.TypeC<{
|
204
|
+
type: t.LiteralC<"open_bar">;
|
205
|
+
}>, t.PartialC<{
|
206
|
+
value: t.StringC;
|
207
|
+
categoryFilter: t.NumberC;
|
208
|
+
}>]>, t.TypeC<{
|
209
|
+
type: t.LiteralC<"open_helphub">;
|
210
|
+
}>, t.TypeC<{
|
211
|
+
type: t.LiteralC<"open_copilot">;
|
130
212
|
}>]>;
|
131
213
|
}>;
|
132
214
|
export declare const isAction: (o: string | number | LabeledAction) => o is {
|
@@ -135,12 +217,15 @@ export declare const isAction: (o: string | number | LabeledAction) => o is {
|
|
135
217
|
type: "execute_command";
|
136
218
|
meta: {
|
137
219
|
command: string;
|
220
|
+
} & {
|
221
|
+
type?: "link" | "video" | "action" | "helpdoc" | undefined;
|
138
222
|
};
|
139
|
-
} | {
|
140
|
-
type: "no_action";
|
141
223
|
} | {
|
142
224
|
type: "click";
|
143
225
|
value: string;
|
226
|
+
} | {
|
227
|
+
type: "click" | "clickBySelector" | "clickByXpath";
|
228
|
+
value: string[];
|
144
229
|
} | ({
|
145
230
|
type: "link";
|
146
231
|
value: string;
|
@@ -149,10 +234,34 @@ export declare const isAction: (o: string | number | LabeledAction) => o is {
|
|
149
234
|
}) | {
|
150
235
|
type: "open_chat";
|
151
236
|
meta: {
|
152
|
-
type:
|
237
|
+
type: "" | "intercom" | "helpscout" | "freshdesk" | "crisp" | "zendesk" | "liveChat" | "gist" | "olark" | "hubspot" | "drift";
|
153
238
|
};
|
154
239
|
} | {
|
155
240
|
type: "dismiss";
|
241
|
+
} | {
|
242
|
+
type: "snooze";
|
243
|
+
} | {
|
244
|
+
type: "questlist";
|
245
|
+
value: number;
|
246
|
+
} | {
|
247
|
+
type: "step_back";
|
248
|
+
} | {
|
249
|
+
type: "nudge";
|
250
|
+
value: number;
|
251
|
+
} | {
|
252
|
+
type: "go_to_step";
|
253
|
+
value: number;
|
254
|
+
} | ({
|
255
|
+
type: "open_bar";
|
256
|
+
} & {
|
257
|
+
value?: string | undefined;
|
258
|
+
categoryFilter?: number | undefined;
|
259
|
+
}) | {
|
260
|
+
type: "open_helphub";
|
261
|
+
} | {
|
262
|
+
type: "open_copilot";
|
263
|
+
} | {
|
264
|
+
type: "no_action";
|
156
265
|
};
|
157
266
|
};
|
158
267
|
export declare const RequestV: t.IntersectionC<[t.TypeC<{
|
@@ -180,5 +289,54 @@ export declare const RequestAction: t.TypeC<{
|
|
180
289
|
}>;
|
181
290
|
export declare const TriggerAction: t.TypeC<{
|
182
291
|
type: t.LiteralC<"trigger">;
|
183
|
-
value: t.
|
292
|
+
value: t.UnionC<[t.TypeC<{
|
293
|
+
type: t.LiteralC<"execute_command">;
|
294
|
+
meta: t.IntersectionC<[t.TypeC<{
|
295
|
+
command: t.StringC;
|
296
|
+
}>, t.PartialC<{
|
297
|
+
type: t.UnionC<[t.LiteralC<"action">, t.LiteralC<"link">, t.LiteralC<"helpdoc">, t.LiteralC<"video">]>;
|
298
|
+
}>]>;
|
299
|
+
}>, t.TypeC<{
|
300
|
+
type: t.LiteralC<"no_action">;
|
301
|
+
}>, t.TypeC<{
|
302
|
+
type: t.LiteralC<"click">;
|
303
|
+
value: t.StringC;
|
304
|
+
}>, t.TypeC<{
|
305
|
+
type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
|
306
|
+
value: t.ArrayC<t.StringC>;
|
307
|
+
}>, t.IntersectionC<[t.TypeC<{
|
308
|
+
type: t.LiteralC<"link">;
|
309
|
+
value: t.StringC;
|
310
|
+
}>, t.PartialC<{
|
311
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
312
|
+
}>]>, t.TypeC<{
|
313
|
+
type: t.LiteralC<"open_chat">;
|
314
|
+
meta: t.TypeC<{
|
315
|
+
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<"">]>;
|
316
|
+
}>;
|
317
|
+
}>, t.TypeC<{
|
318
|
+
type: t.LiteralC<"dismiss">;
|
319
|
+
}>, t.TypeC<{
|
320
|
+
type: t.LiteralC<"snooze">;
|
321
|
+
}>, t.TypeC<{
|
322
|
+
type: t.LiteralC<"questlist">;
|
323
|
+
value: t.NumberC;
|
324
|
+
}>, t.TypeC<{
|
325
|
+
type: t.LiteralC<"nudge">;
|
326
|
+
value: t.NumberC;
|
327
|
+
}>, t.TypeC<{
|
328
|
+
type: t.LiteralC<"go_to_step">;
|
329
|
+
value: t.NumberC;
|
330
|
+
}>, t.TypeC<{
|
331
|
+
type: t.LiteralC<"step_back">;
|
332
|
+
}>, t.IntersectionC<[t.TypeC<{
|
333
|
+
type: t.LiteralC<"open_bar">;
|
334
|
+
}>, t.PartialC<{
|
335
|
+
value: t.StringC;
|
336
|
+
categoryFilter: t.NumberC;
|
337
|
+
}>]>, t.TypeC<{
|
338
|
+
type: t.LiteralC<"open_helphub">;
|
339
|
+
}>, t.TypeC<{
|
340
|
+
type: t.LiteralC<"open_copilot">;
|
341
|
+
}>]>;
|
184
342
|
}>;
|
@@ -6,6 +6,7 @@ export declare const TemplateOptionsV: t.IntersectionC<[t.TypeC<{}>, t.PartialC<
|
|
6
6
|
object: t.StringC;
|
7
7
|
hoverTooltip: t.BooleanC;
|
8
8
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
9
|
+
metadata: t.UnknownRecordC;
|
9
10
|
}>]>;
|
10
11
|
export declare const AdminTemplateV: t.IntersectionC<[t.TypeC<{
|
11
12
|
type: t.LiteralC<"admin">;
|
@@ -15,6 +16,7 @@ export declare const AdminTemplateV: t.IntersectionC<[t.TypeC<{
|
|
15
16
|
object: t.StringC;
|
16
17
|
hoverTooltip: t.BooleanC;
|
17
18
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
19
|
+
metadata: t.UnknownRecordC;
|
18
20
|
}>]>]>;
|
19
21
|
export declare const CallbackTemplateV: t.IntersectionC<[t.TypeC<{
|
20
22
|
type: t.LiteralC<"callback">;
|
@@ -24,6 +26,7 @@ export declare const CallbackTemplateV: t.IntersectionC<[t.TypeC<{
|
|
24
26
|
object: t.StringC;
|
25
27
|
hoverTooltip: t.BooleanC;
|
26
28
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
29
|
+
metadata: t.UnknownRecordC;
|
27
30
|
}>]>]>;
|
28
31
|
export declare const LinkTemplateV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
29
32
|
type: t.LiteralC<"link">;
|
@@ -35,6 +38,7 @@ export declare const LinkTemplateV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
35
38
|
object: t.StringC;
|
36
39
|
hoverTooltip: t.BooleanC;
|
37
40
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
41
|
+
metadata: t.UnknownRecordC;
|
38
42
|
}>]>]>;
|
39
43
|
export declare const ClickTemplateV: t.IntersectionC<[t.TypeC<{
|
40
44
|
type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
|
@@ -44,6 +48,7 @@ export declare const ClickTemplateV: t.IntersectionC<[t.TypeC<{
|
|
44
48
|
object: t.StringC;
|
45
49
|
hoverTooltip: t.BooleanC;
|
46
50
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
51
|
+
metadata: t.UnknownRecordC;
|
47
52
|
}>]>]>;
|
48
53
|
export declare const BuiltInTemplateV: t.IntersectionC<[t.TypeC<{
|
49
54
|
type: t.LiteralC<"builtin">;
|
@@ -53,6 +58,7 @@ export declare const BuiltInTemplateV: t.IntersectionC<[t.TypeC<{
|
|
53
58
|
object: t.StringC;
|
54
59
|
hoverTooltip: t.BooleanC;
|
55
60
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
61
|
+
metadata: t.UnknownRecordC;
|
56
62
|
}>]>]>;
|
57
63
|
export declare const WebhookTemplateV: t.IntersectionC<[t.TypeC<{
|
58
64
|
type: t.LiteralC<"webhook">;
|
@@ -62,6 +68,7 @@ export declare const WebhookTemplateV: t.IntersectionC<[t.TypeC<{
|
|
62
68
|
object: t.StringC;
|
63
69
|
hoverTooltip: t.BooleanC;
|
64
70
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
71
|
+
metadata: t.UnknownRecordC;
|
65
72
|
}>]>]>;
|
66
73
|
export declare const ScriptTemplateV: t.IntersectionC<[t.TypeC<{
|
67
74
|
type: t.LiteralC<"script">;
|
@@ -71,6 +78,7 @@ export declare const ScriptTemplateV: t.IntersectionC<[t.TypeC<{
|
|
71
78
|
object: t.StringC;
|
72
79
|
hoverTooltip: t.BooleanC;
|
73
80
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
81
|
+
metadata: t.UnknownRecordC;
|
74
82
|
}>]>]>;
|
75
83
|
export declare const RequestTemplateV: t.IntersectionC<[t.TypeC<{
|
76
84
|
type: t.LiteralC<"request">;
|
@@ -89,6 +97,7 @@ export declare const RequestTemplateV: t.IntersectionC<[t.TypeC<{
|
|
89
97
|
object: t.StringC;
|
90
98
|
hoverTooltip: t.BooleanC;
|
91
99
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
100
|
+
metadata: t.UnknownRecordC;
|
92
101
|
}>]>]>;
|
93
102
|
export declare const AppcuesTemplateV: t.IntersectionC<[t.TypeC<{
|
94
103
|
type: t.LiteralC<"appcues">;
|
@@ -98,6 +107,17 @@ export declare const AppcuesTemplateV: t.IntersectionC<[t.TypeC<{
|
|
98
107
|
object: t.StringC;
|
99
108
|
hoverTooltip: t.BooleanC;
|
100
109
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
110
|
+
metadata: t.UnknownRecordC;
|
111
|
+
}>]>]>;
|
112
|
+
export declare const PendoGuideTemplateV: t.IntersectionC<[t.TypeC<{
|
113
|
+
type: t.LiteralC<"pendo_guide">;
|
114
|
+
value: t.StringC;
|
115
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
116
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
117
|
+
object: t.StringC;
|
118
|
+
hoverTooltip: t.BooleanC;
|
119
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
120
|
+
metadata: t.UnknownRecordC;
|
101
121
|
}>]>]>;
|
102
122
|
export declare const VideoTemplateV: t.IntersectionC<[t.TypeC<{
|
103
123
|
type: t.LiteralC<"video">;
|
@@ -107,6 +127,7 @@ export declare const VideoTemplateV: t.IntersectionC<[t.TypeC<{
|
|
107
127
|
object: t.StringC;
|
108
128
|
hoverTooltip: t.BooleanC;
|
109
129
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
130
|
+
metadata: t.UnknownRecordC;
|
110
131
|
}>]>]>;
|
111
132
|
export declare const HelpDocTemplateV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
112
133
|
type: t.LiteralC<"helpdoc">;
|
@@ -124,15 +145,66 @@ export declare const HelpDocTemplateV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
124
145
|
object: t.StringC;
|
125
146
|
hoverTooltip: t.BooleanC;
|
126
147
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
148
|
+
metadata: t.UnknownRecordC;
|
127
149
|
}>]>]>;
|
128
150
|
export declare const TriggerTemplateV: t.IntersectionC<[t.TypeC<{
|
129
151
|
type: t.LiteralC<"trigger">;
|
130
|
-
value: t.
|
152
|
+
value: t.UnionC<[t.TypeC<{
|
153
|
+
type: t.LiteralC<"execute_command">;
|
154
|
+
meta: t.IntersectionC<[t.TypeC<{
|
155
|
+
command: t.StringC;
|
156
|
+
}>, t.PartialC<{
|
157
|
+
type: t.UnionC<[t.LiteralC<"action">, t.LiteralC<"link">, t.LiteralC<"helpdoc">, t.LiteralC<"video">]>;
|
158
|
+
}>]>;
|
159
|
+
}>, t.TypeC<{
|
160
|
+
type: t.LiteralC<"no_action">;
|
161
|
+
}>, t.TypeC<{
|
162
|
+
type: t.LiteralC<"click">;
|
163
|
+
value: t.StringC;
|
164
|
+
}>, t.TypeC<{
|
165
|
+
type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
|
166
|
+
value: t.ArrayC<t.StringC>;
|
167
|
+
}>, t.IntersectionC<[t.TypeC<{
|
168
|
+
type: t.LiteralC<"link">;
|
169
|
+
value: t.StringC;
|
170
|
+
}>, t.PartialC<{
|
171
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
172
|
+
}>]>, t.TypeC<{
|
173
|
+
type: t.LiteralC<"open_chat">;
|
174
|
+
meta: t.TypeC<{
|
175
|
+
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<"">]>;
|
176
|
+
}>;
|
177
|
+
}>, t.TypeC<{
|
178
|
+
type: t.LiteralC<"dismiss">;
|
179
|
+
}>, t.TypeC<{
|
180
|
+
type: t.LiteralC<"snooze">;
|
181
|
+
}>, t.TypeC<{
|
182
|
+
type: t.LiteralC<"questlist">;
|
183
|
+
value: t.NumberC;
|
184
|
+
}>, t.TypeC<{
|
185
|
+
type: t.LiteralC<"nudge">;
|
186
|
+
value: t.NumberC;
|
187
|
+
}>, t.TypeC<{
|
188
|
+
type: t.LiteralC<"go_to_step">;
|
189
|
+
value: t.NumberC;
|
190
|
+
}>, t.TypeC<{
|
191
|
+
type: t.LiteralC<"step_back">;
|
192
|
+
}>, t.IntersectionC<[t.TypeC<{
|
193
|
+
type: t.LiteralC<"open_bar">;
|
194
|
+
}>, t.PartialC<{
|
195
|
+
value: t.StringC;
|
196
|
+
categoryFilter: t.NumberC;
|
197
|
+
}>]>, t.TypeC<{
|
198
|
+
type: t.LiteralC<"open_helphub">;
|
199
|
+
}>, t.TypeC<{
|
200
|
+
type: t.LiteralC<"open_copilot">;
|
201
|
+
}>]>;
|
131
202
|
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
132
203
|
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
133
204
|
object: t.StringC;
|
134
205
|
hoverTooltip: t.BooleanC;
|
135
206
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
207
|
+
metadata: t.UnknownRecordC;
|
136
208
|
}>]>]>;
|
137
209
|
export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
138
210
|
type: t.LiteralC<"admin">;
|
@@ -142,6 +214,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
142
214
|
object: t.StringC;
|
143
215
|
hoverTooltip: t.BooleanC;
|
144
216
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
217
|
+
metadata: t.UnknownRecordC;
|
145
218
|
}>]>]>, t.IntersectionC<[t.TypeC<{
|
146
219
|
type: t.LiteralC<"callback">;
|
147
220
|
value: t.StringC;
|
@@ -150,6 +223,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
150
223
|
object: t.StringC;
|
151
224
|
hoverTooltip: t.BooleanC;
|
152
225
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
226
|
+
metadata: t.UnknownRecordC;
|
153
227
|
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
154
228
|
type: t.LiteralC<"link">;
|
155
229
|
value: t.StringC;
|
@@ -160,6 +234,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
160
234
|
object: t.StringC;
|
161
235
|
hoverTooltip: t.BooleanC;
|
162
236
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
237
|
+
metadata: t.UnknownRecordC;
|
163
238
|
}>]>]>, t.IntersectionC<[t.TypeC<{
|
164
239
|
type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
|
165
240
|
value: t.ArrayC<t.StringC>;
|
@@ -168,6 +243,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
168
243
|
object: t.StringC;
|
169
244
|
hoverTooltip: t.BooleanC;
|
170
245
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
246
|
+
metadata: t.UnknownRecordC;
|
171
247
|
}>]>]>, t.IntersectionC<[t.TypeC<{
|
172
248
|
type: t.LiteralC<"builtin">;
|
173
249
|
value: t.StringC;
|
@@ -176,6 +252,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
176
252
|
object: t.StringC;
|
177
253
|
hoverTooltip: t.BooleanC;
|
178
254
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
255
|
+
metadata: t.UnknownRecordC;
|
179
256
|
}>]>]>, t.IntersectionC<[t.TypeC<{
|
180
257
|
type: t.LiteralC<"webhook">;
|
181
258
|
value: t.StringC;
|
@@ -184,6 +261,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
184
261
|
object: t.StringC;
|
185
262
|
hoverTooltip: t.BooleanC;
|
186
263
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
264
|
+
metadata: t.UnknownRecordC;
|
187
265
|
}>]>]>, t.IntersectionC<[t.TypeC<{
|
188
266
|
type: t.LiteralC<"script">;
|
189
267
|
value: t.StringC;
|
@@ -192,6 +270,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
192
270
|
object: t.StringC;
|
193
271
|
hoverTooltip: t.BooleanC;
|
194
272
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
273
|
+
metadata: t.UnknownRecordC;
|
195
274
|
}>]>]>, t.IntersectionC<[t.TypeC<{
|
196
275
|
type: t.LiteralC<"request">;
|
197
276
|
value: t.IntersectionC<[t.TypeC<{
|
@@ -209,6 +288,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
209
288
|
object: t.StringC;
|
210
289
|
hoverTooltip: t.BooleanC;
|
211
290
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
291
|
+
metadata: t.UnknownRecordC;
|
212
292
|
}>]>]>, t.IntersectionC<[t.TypeC<{
|
213
293
|
type: t.LiteralC<"appcues">;
|
214
294
|
value: t.StringC;
|
@@ -217,6 +297,16 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
217
297
|
object: t.StringC;
|
218
298
|
hoverTooltip: t.BooleanC;
|
219
299
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
300
|
+
metadata: t.UnknownRecordC;
|
301
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
302
|
+
type: t.LiteralC<"pendo_guide">;
|
303
|
+
value: t.StringC;
|
304
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
305
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
306
|
+
object: t.StringC;
|
307
|
+
hoverTooltip: t.BooleanC;
|
308
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
309
|
+
metadata: t.UnknownRecordC;
|
220
310
|
}>]>]>, t.IntersectionC<[t.TypeC<{
|
221
311
|
type: t.LiteralC<"video">;
|
222
312
|
value: t.StringC;
|
@@ -225,6 +315,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
225
315
|
object: t.StringC;
|
226
316
|
hoverTooltip: t.BooleanC;
|
227
317
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
318
|
+
metadata: t.UnknownRecordC;
|
228
319
|
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
229
320
|
type: t.LiteralC<"helpdoc">;
|
230
321
|
value: t.StringC;
|
@@ -241,12 +332,63 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
241
332
|
object: t.StringC;
|
242
333
|
hoverTooltip: t.BooleanC;
|
243
334
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
335
|
+
metadata: t.UnknownRecordC;
|
244
336
|
}>]>]>, t.IntersectionC<[t.TypeC<{
|
245
337
|
type: t.LiteralC<"trigger">;
|
246
|
-
value: t.
|
338
|
+
value: t.UnionC<[t.TypeC<{
|
339
|
+
type: t.LiteralC<"execute_command">;
|
340
|
+
meta: t.IntersectionC<[t.TypeC<{
|
341
|
+
command: t.StringC;
|
342
|
+
}>, t.PartialC<{
|
343
|
+
type: t.UnionC<[t.LiteralC<"action">, t.LiteralC<"link">, t.LiteralC<"helpdoc">, t.LiteralC<"video">]>;
|
344
|
+
}>]>;
|
345
|
+
}>, t.TypeC<{
|
346
|
+
type: t.LiteralC<"no_action">;
|
347
|
+
}>, t.TypeC<{
|
348
|
+
type: t.LiteralC<"click">;
|
349
|
+
value: t.StringC;
|
350
|
+
}>, t.TypeC<{
|
351
|
+
type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
|
352
|
+
value: t.ArrayC<t.StringC>;
|
353
|
+
}>, t.IntersectionC<[t.TypeC<{
|
354
|
+
type: t.LiteralC<"link">;
|
355
|
+
value: t.StringC;
|
356
|
+
}>, t.PartialC<{
|
357
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
358
|
+
}>]>, t.TypeC<{
|
359
|
+
type: t.LiteralC<"open_chat">;
|
360
|
+
meta: t.TypeC<{
|
361
|
+
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<"">]>;
|
362
|
+
}>;
|
363
|
+
}>, t.TypeC<{
|
364
|
+
type: t.LiteralC<"dismiss">;
|
365
|
+
}>, t.TypeC<{
|
366
|
+
type: t.LiteralC<"snooze">;
|
367
|
+
}>, t.TypeC<{
|
368
|
+
type: t.LiteralC<"questlist">;
|
369
|
+
value: t.NumberC;
|
370
|
+
}>, t.TypeC<{
|
371
|
+
type: t.LiteralC<"nudge">;
|
372
|
+
value: t.NumberC;
|
373
|
+
}>, t.TypeC<{
|
374
|
+
type: t.LiteralC<"go_to_step">;
|
375
|
+
value: t.NumberC;
|
376
|
+
}>, t.TypeC<{
|
377
|
+
type: t.LiteralC<"step_back">;
|
378
|
+
}>, t.IntersectionC<[t.TypeC<{
|
379
|
+
type: t.LiteralC<"open_bar">;
|
380
|
+
}>, t.PartialC<{
|
381
|
+
value: t.StringC;
|
382
|
+
categoryFilter: t.NumberC;
|
383
|
+
}>]>, t.TypeC<{
|
384
|
+
type: t.LiteralC<"open_helphub">;
|
385
|
+
}>, t.TypeC<{
|
386
|
+
type: t.LiteralC<"open_copilot">;
|
387
|
+
}>]>;
|
247
388
|
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
248
389
|
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
249
390
|
object: t.StringC;
|
250
391
|
hoverTooltip: t.BooleanC;
|
251
392
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_hub">, t.LiteralC<"blank">, t.UndefinedC]>;
|
393
|
+
metadata: t.UnknownRecordC;
|
252
394
|
}>]>]>]>;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import * as t from 'io-ts';
|
2
|
+
export declare const CopilotPersonalityAdjectiveV: t.UnionC<[t.LiteralC<"abrasive">, t.LiteralC<"adventurous">, t.LiteralC<"affable">, t.LiteralC<"arrogant">, t.LiteralC<"assertive">, t.LiteralC<"assured">, t.LiteralC<"belligerent">, t.LiteralC<"brave">, t.LiteralC<"cheerful">, t.LiteralC<"compassionate">, t.LiteralC<"condescending">, t.LiteralC<"courteous">, t.LiteralC<"creative">, t.LiteralC<"cynical">, t.LiteralC<"decisive">, t.LiteralC<"detached">, t.LiteralC<"diligent">, t.LiteralC<"eloquent">, t.LiteralC<"empathetic">, t.LiteralC<"evasive">, t.LiteralC<"formal">, t.LiteralC<"frivolous">, t.LiteralC<"garrulous">, t.LiteralC<"generous">, t.LiteralC<"impulsive">, t.LiteralC<"innovative">, t.LiteralC<"intense">, t.LiteralC<"judgmental">, t.LiteralC<"jovial">, t.LiteralC<"manipulative">, t.LiteralC<"obstinate">, t.LiteralC<"optimistic">, t.LiteralC<"perceptive">, t.LiteralC<"pessimistic">, t.LiteralC<"quarrelsome">, t.LiteralC<"respectful">, t.LiteralC<"resourceful">, t.LiteralC<"sarcastic">, t.LiteralC<"sincere">, t.LiteralC<"sociable">, t.LiteralC<"solemn">, t.LiteralC<"supportive">, t.LiteralC<"tactful">, t.LiteralC<"thoughtful">, t.LiteralC<"understanding">, t.LiteralC<"unreliable">, t.LiteralC<"vain">, t.LiteralC<"vivacious">, t.LiteralC<"warm">, t.LiteralC<"withdrawn">, t.LiteralC<"witty">, t.LiteralC<"zealous">]>;
|
3
|
+
export declare const CopilotPersonalityResponseLengthV: t.UnionC<[t.LiteralC<"short">, t.LiteralC<"conversational">, t.LiteralC<"long">]>;
|
4
|
+
export declare const CopilotPersonalityResponseFormatV: t.UnionC<[t.LiteralC<"lists">, t.LiteralC<"paragraphs">, t.LiteralC<"mixed">]>;
|
5
|
+
export declare const CopilotPersonalityV: t.UnionC<[t.TypeC<{
|
6
|
+
template: t.UnionC<[t.LiteralC<"professional">, t.LiteralC<"friendly">, t.LiteralC<"confident">, t.LiteralC<"serious">, t.LiteralC<"empathetic">]>;
|
7
|
+
}>, t.TypeC<{
|
8
|
+
template: t.LiteralC<"custom">;
|
9
|
+
adjectives: t.ArrayC<t.UnionC<[t.LiteralC<"abrasive">, t.LiteralC<"adventurous">, t.LiteralC<"affable">, t.LiteralC<"arrogant">, t.LiteralC<"assertive">, t.LiteralC<"assured">, t.LiteralC<"belligerent">, t.LiteralC<"brave">, t.LiteralC<"cheerful">, t.LiteralC<"compassionate">, t.LiteralC<"condescending">, t.LiteralC<"courteous">, t.LiteralC<"creative">, t.LiteralC<"cynical">, t.LiteralC<"decisive">, t.LiteralC<"detached">, t.LiteralC<"diligent">, t.LiteralC<"eloquent">, t.LiteralC<"empathetic">, t.LiteralC<"evasive">, t.LiteralC<"formal">, t.LiteralC<"frivolous">, t.LiteralC<"garrulous">, t.LiteralC<"generous">, t.LiteralC<"impulsive">, t.LiteralC<"innovative">, t.LiteralC<"intense">, t.LiteralC<"judgmental">, t.LiteralC<"jovial">, t.LiteralC<"manipulative">, t.LiteralC<"obstinate">, t.LiteralC<"optimistic">, t.LiteralC<"perceptive">, t.LiteralC<"pessimistic">, t.LiteralC<"quarrelsome">, t.LiteralC<"respectful">, t.LiteralC<"resourceful">, t.LiteralC<"sarcastic">, t.LiteralC<"sincere">, t.LiteralC<"sociable">, t.LiteralC<"solemn">, t.LiteralC<"supportive">, t.LiteralC<"tactful">, t.LiteralC<"thoughtful">, t.LiteralC<"understanding">, t.LiteralC<"unreliable">, t.LiteralC<"vain">, t.LiteralC<"vivacious">, t.LiteralC<"warm">, t.LiteralC<"withdrawn">, t.LiteralC<"witty">, t.LiteralC<"zealous">]>>;
|
10
|
+
response_length: t.UnionC<[t.LiteralC<"short">, t.LiteralC<"conversational">, t.LiteralC<"long">]>;
|
11
|
+
response_format: t.UnionC<[t.LiteralC<"lists">, t.LiteralC<"paragraphs">, t.LiteralC<"mixed">]>;
|
12
|
+
}>]>;
|