commandbar 1.6.12 → 1.6.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/commandbar-js/src/index.js +1 -1
- package/build/internal/src/client/AddContextOptions.d.ts +7 -0
- package/build/internal/src/client/CommandBarClientSDK.d.ts +27 -1
- package/build/internal/src/client/CommandBarSDK.d.ts +2 -1
- package/build/internal/src/client/EventHandler.d.ts +4 -2
- package/build/internal/src/client/SentryReporter.d.ts +24 -3
- package/build/internal/src/client/symbols.d.ts +1 -0
- package/build/internal/src/middleware/CommandFromClientV.d.ts +46 -3
- package/build/internal/src/middleware/command.d.ts +1589 -205
- package/build/internal/src/middleware/detailPreview.d.ts +4 -2
- package/build/internal/src/middleware/helpers/argument.d.ts +156 -0
- package/build/internal/src/middleware/helpers/commandTemplate.d.ts +34 -0
- package/build/internal/src/middleware/helpers/rules.d.ts +29 -26
- package/build/internal/src/middleware/nudge.d.ts +189 -0
- package/build/internal/src/middleware/organization.d.ts +102 -13
- package/build/internal/src/middleware/skin.d.ts +18 -1
- package/build/internal/src/middleware/types.d.ts +90 -10
- package/package.json +1 -1
@@ -1,7 +1,117 @@
|
|
1
|
-
|
1
|
+
/********************************************************************************/
|
2
2
|
import * as t from 'io-ts';
|
3
3
|
import { GenericBatchRequest } from './generics';
|
4
4
|
export { CommandFromClientV } from './CommandFromClientV';
|
5
|
+
declare const CommandBaseV: t.IntersectionC<[t.TypeC<{
|
6
|
+
id: t.NumberC;
|
7
|
+
organization: t.UnionC<[t.NumberC, t.StringC]>;
|
8
|
+
text: t.StringC;
|
9
|
+
template: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
10
|
+
type: t.LiteralC<"admin">;
|
11
|
+
value: t.StringC;
|
12
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
13
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
14
|
+
object: t.StringC;
|
15
|
+
hoverTooltip: t.BooleanC;
|
16
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
17
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
18
|
+
type: t.LiteralC<"callback">;
|
19
|
+
value: t.StringC;
|
20
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
21
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
22
|
+
object: t.StringC;
|
23
|
+
hoverTooltip: t.BooleanC;
|
24
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
25
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
26
|
+
type: t.LiteralC<"link">;
|
27
|
+
value: t.StringC;
|
28
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
29
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
30
|
+
object: t.StringC;
|
31
|
+
hoverTooltip: t.BooleanC;
|
32
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
33
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
34
|
+
type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
|
35
|
+
value: t.ArrayC<t.StringC>;
|
36
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
37
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
38
|
+
object: t.StringC;
|
39
|
+
hoverTooltip: t.BooleanC;
|
40
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
41
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
42
|
+
type: t.LiteralC<"builtin">;
|
43
|
+
value: t.StringC;
|
44
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
45
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
46
|
+
object: t.StringC;
|
47
|
+
hoverTooltip: t.BooleanC;
|
48
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
49
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
50
|
+
type: t.LiteralC<"webhook">;
|
51
|
+
value: t.StringC;
|
52
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
53
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
54
|
+
object: t.StringC;
|
55
|
+
hoverTooltip: t.BooleanC;
|
56
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
57
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
58
|
+
type: t.LiteralC<"script">;
|
59
|
+
value: t.StringC;
|
60
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
61
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
62
|
+
object: t.StringC;
|
63
|
+
hoverTooltip: t.BooleanC;
|
64
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
65
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
66
|
+
type: t.LiteralC<"request">;
|
67
|
+
value: t.IntersectionC<[t.TypeC<{
|
68
|
+
method: t.UnionC<[t.LiteralC<"get">, t.LiteralC<"delete">, t.LiteralC<"head">, t.LiteralC<"options">, t.LiteralC<"post">, t.LiteralC<"put">, t.LiteralC<"patch">]>;
|
69
|
+
url: t.StringC;
|
70
|
+
}>, t.PartialC<{
|
71
|
+
headers: t.UnknownRecordC;
|
72
|
+
body: t.UnknownRecordC;
|
73
|
+
onSend: t.StringC;
|
74
|
+
onSuccess: t.StringC;
|
75
|
+
onError: t.StringC;
|
76
|
+
}>]>;
|
77
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
78
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
79
|
+
object: t.StringC;
|
80
|
+
hoverTooltip: t.BooleanC;
|
81
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
82
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
83
|
+
type: t.LiteralC<"appcues">;
|
84
|
+
value: t.StringC;
|
85
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
86
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
87
|
+
object: t.StringC;
|
88
|
+
hoverTooltip: t.BooleanC;
|
89
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
90
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
91
|
+
type: t.LiteralC<"video">;
|
92
|
+
value: t.StringC;
|
93
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
94
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
95
|
+
object: t.StringC;
|
96
|
+
hoverTooltip: t.BooleanC;
|
97
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
98
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
99
|
+
type: t.LiteralC<"helpdoc">;
|
100
|
+
value: t.StringC;
|
101
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
102
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
103
|
+
object: t.StringC;
|
104
|
+
hoverTooltip: t.BooleanC;
|
105
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
106
|
+
}>]>]>]>;
|
107
|
+
}>, t.PartialC<{
|
108
|
+
disabledReason: t.StringC;
|
109
|
+
source: t.StringC;
|
110
|
+
name: t.StringC;
|
111
|
+
last_available: t.UnionC<[t.StringC, t.NullC]>;
|
112
|
+
modified: t.StringC;
|
113
|
+
isAsync: t.BooleanC;
|
114
|
+
}>]>;
|
5
115
|
declare const HelpSyncCommandAdditionalV: t.PartialC<{
|
6
116
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
7
117
|
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -92,6 +202,22 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
92
202
|
object: t.StringC;
|
93
203
|
hoverTooltip: t.BooleanC;
|
94
204
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
205
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
206
|
+
type: t.LiteralC<"video">;
|
207
|
+
value: t.StringC;
|
208
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
209
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
210
|
+
object: t.StringC;
|
211
|
+
hoverTooltip: t.BooleanC;
|
212
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
213
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
214
|
+
type: t.LiteralC<"helpdoc">;
|
215
|
+
value: t.StringC;
|
216
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
217
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
218
|
+
object: t.StringC;
|
219
|
+
hoverTooltip: t.BooleanC;
|
220
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
95
221
|
}>]>]>]>;
|
96
222
|
}>, t.PartialC<{
|
97
223
|
disabledReason: t.StringC;
|
@@ -99,6 +225,7 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
99
225
|
name: t.StringC;
|
100
226
|
last_available: t.UnionC<[t.StringC, t.NullC]>;
|
101
227
|
modified: t.StringC;
|
228
|
+
isAsync: t.BooleanC;
|
102
229
|
}>]>, t.TypeC<{
|
103
230
|
arguments: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
|
104
231
|
type: t.LiteralC<"context">;
|
@@ -121,6 +248,8 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
121
248
|
allow_create_label: t.StringC;
|
122
249
|
show_in_record_action_list: t.BooleanC;
|
123
250
|
show_in_default_list: t.BooleanC;
|
251
|
+
auto_choose: t.BooleanC;
|
252
|
+
is_private: t.BooleanC;
|
124
253
|
}>]>, t.IntersectionC<[t.TypeC<{
|
125
254
|
type: t.LiteralC<"set">;
|
126
255
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -140,6 +269,8 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
140
269
|
loaded: t.ArrayC<t.AnyC>;
|
141
270
|
allow_create: t.BooleanC;
|
142
271
|
allow_create_label: t.StringC;
|
272
|
+
auto_choose: t.BooleanC;
|
273
|
+
is_private: t.BooleanC;
|
143
274
|
}>]>, t.IntersectionC<[t.TypeC<{
|
144
275
|
type: t.LiteralC<"provided">;
|
145
276
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -160,6 +291,8 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
160
291
|
dateTimeArgumentTypeId: t.NumberC;
|
161
292
|
allow_create: t.BooleanC;
|
162
293
|
allow_create_label: t.StringC;
|
294
|
+
auto_choose: t.BooleanC;
|
295
|
+
is_private: t.BooleanC;
|
163
296
|
}>]>, t.IntersectionC<[t.TypeC<{
|
164
297
|
type: t.LiteralC<"dependent">;
|
165
298
|
value: t.StringC;
|
@@ -179,6 +312,8 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
179
312
|
loaded: t.ArrayC<t.AnyC>;
|
180
313
|
allow_create: t.BooleanC;
|
181
314
|
allow_create_label: t.StringC;
|
315
|
+
auto_choose: t.BooleanC;
|
316
|
+
is_private: t.BooleanC;
|
182
317
|
}>]>, t.IntersectionC<[t.TypeC<{
|
183
318
|
type: t.LiteralC<"function">;
|
184
319
|
value: t.StringC;
|
@@ -198,6 +333,35 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
198
333
|
loaded: t.ArrayC<t.AnyC>;
|
199
334
|
allow_create: t.BooleanC;
|
200
335
|
allow_create_label: t.StringC;
|
336
|
+
auto_choose: t.BooleanC;
|
337
|
+
is_private: t.BooleanC;
|
338
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
339
|
+
type: t.UnionC<[t.LiteralC<"video">, t.LiteralC<"html">]>;
|
340
|
+
value: t.IntersectionC<[t.TypeC<{
|
341
|
+
source: t.StringC;
|
342
|
+
}>, t.PartialC<{
|
343
|
+
title: t.StringC;
|
344
|
+
description: t.StringC;
|
345
|
+
url: t.StringC;
|
346
|
+
}>]>;
|
347
|
+
order_key: t.NumberC;
|
348
|
+
}>, t.PartialC<{
|
349
|
+
label: t.StringC;
|
350
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
351
|
+
selected: t.ArrayC<t.AnyC>;
|
352
|
+
input_type: t.StringC;
|
353
|
+
preselected_key: t.StringC;
|
354
|
+
label_field: t.StringC;
|
355
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
356
|
+
field: t.StringC;
|
357
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
358
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
359
|
+
}>>;
|
360
|
+
loaded: t.ArrayC<t.AnyC>;
|
361
|
+
allow_create: t.BooleanC;
|
362
|
+
allow_create_label: t.StringC;
|
363
|
+
is_private: t.BooleanC;
|
364
|
+
auto_choose: t.BooleanC;
|
201
365
|
}>]>]>>;
|
202
366
|
tags: t.ArrayC<t.StringC>;
|
203
367
|
availability_rules: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
@@ -259,6 +423,9 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
259
423
|
value: t.StringC;
|
260
424
|
reason: t.StringC;
|
261
425
|
}>]>]>>;
|
426
|
+
availability_expression: t.UnionC<[t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>, t.NullC]>;
|
427
|
+
recommend_expression: t.UnionC<[t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>, t.NullC]>;
|
428
|
+
always_recommend: t.BooleanC;
|
262
429
|
confirm: t.StringC;
|
263
430
|
shortcut: t.ArrayC<t.StringC>;
|
264
431
|
explanation: t.StringC;
|
@@ -286,13 +453,18 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
286
453
|
shortcut_win: t.ArrayC<t.StringC>;
|
287
454
|
hotkey_mac: t.StringC;
|
288
455
|
hotkey_win: t.StringC;
|
289
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
456
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
290
457
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
291
458
|
value: t.StringC;
|
292
|
-
}>, t.
|
459
|
+
}>, t.PartialC<{
|
460
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
461
|
+
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
293
462
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
294
463
|
value: t.StringC;
|
295
|
-
}
|
464
|
+
}>, t.PartialC<{
|
465
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
466
|
+
}>]>]>>]>;
|
467
|
+
next_steps: t.ArrayC<t.UnionC<[t.StringC, t.NumberC]>>;
|
296
468
|
}>]>;
|
297
469
|
export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
298
470
|
id: t.NumberC;
|
@@ -379,6 +551,22 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
379
551
|
object: t.StringC;
|
380
552
|
hoverTooltip: t.BooleanC;
|
381
553
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
554
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
555
|
+
type: t.LiteralC<"video">;
|
556
|
+
value: t.StringC;
|
557
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
558
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
559
|
+
object: t.StringC;
|
560
|
+
hoverTooltip: t.BooleanC;
|
561
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
562
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
563
|
+
type: t.LiteralC<"helpdoc">;
|
564
|
+
value: t.StringC;
|
565
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
566
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
567
|
+
object: t.StringC;
|
568
|
+
hoverTooltip: t.BooleanC;
|
569
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
382
570
|
}>]>]>]>;
|
383
571
|
}>, t.PartialC<{
|
384
572
|
disabledReason: t.StringC;
|
@@ -386,6 +574,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
386
574
|
name: t.StringC;
|
387
575
|
last_available: t.UnionC<[t.StringC, t.NullC]>;
|
388
576
|
modified: t.StringC;
|
577
|
+
isAsync: t.BooleanC;
|
389
578
|
}>]>, t.TypeC<{
|
390
579
|
arguments: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
|
391
580
|
type: t.LiteralC<"context">;
|
@@ -408,6 +597,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
408
597
|
allow_create_label: t.StringC;
|
409
598
|
show_in_record_action_list: t.BooleanC;
|
410
599
|
show_in_default_list: t.BooleanC;
|
600
|
+
auto_choose: t.BooleanC;
|
601
|
+
is_private: t.BooleanC;
|
411
602
|
}>]>, t.IntersectionC<[t.TypeC<{
|
412
603
|
type: t.LiteralC<"set">;
|
413
604
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -427,6 +618,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
427
618
|
loaded: t.ArrayC<t.AnyC>;
|
428
619
|
allow_create: t.BooleanC;
|
429
620
|
allow_create_label: t.StringC;
|
621
|
+
auto_choose: t.BooleanC;
|
622
|
+
is_private: t.BooleanC;
|
430
623
|
}>]>, t.IntersectionC<[t.TypeC<{
|
431
624
|
type: t.LiteralC<"provided">;
|
432
625
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -447,6 +640,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
447
640
|
dateTimeArgumentTypeId: t.NumberC;
|
448
641
|
allow_create: t.BooleanC;
|
449
642
|
allow_create_label: t.StringC;
|
643
|
+
auto_choose: t.BooleanC;
|
644
|
+
is_private: t.BooleanC;
|
450
645
|
}>]>, t.IntersectionC<[t.TypeC<{
|
451
646
|
type: t.LiteralC<"dependent">;
|
452
647
|
value: t.StringC;
|
@@ -466,6 +661,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
466
661
|
loaded: t.ArrayC<t.AnyC>;
|
467
662
|
allow_create: t.BooleanC;
|
468
663
|
allow_create_label: t.StringC;
|
664
|
+
auto_choose: t.BooleanC;
|
665
|
+
is_private: t.BooleanC;
|
469
666
|
}>]>, t.IntersectionC<[t.TypeC<{
|
470
667
|
type: t.LiteralC<"function">;
|
471
668
|
value: t.StringC;
|
@@ -485,6 +682,35 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
485
682
|
loaded: t.ArrayC<t.AnyC>;
|
486
683
|
allow_create: t.BooleanC;
|
487
684
|
allow_create_label: t.StringC;
|
685
|
+
auto_choose: t.BooleanC;
|
686
|
+
is_private: t.BooleanC;
|
687
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
688
|
+
type: t.UnionC<[t.LiteralC<"video">, t.LiteralC<"html">]>;
|
689
|
+
value: t.IntersectionC<[t.TypeC<{
|
690
|
+
source: t.StringC;
|
691
|
+
}>, t.PartialC<{
|
692
|
+
title: t.StringC;
|
693
|
+
description: t.StringC;
|
694
|
+
url: t.StringC;
|
695
|
+
}>]>;
|
696
|
+
order_key: t.NumberC;
|
697
|
+
}>, t.PartialC<{
|
698
|
+
label: t.StringC;
|
699
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
700
|
+
selected: t.ArrayC<t.AnyC>;
|
701
|
+
input_type: t.StringC;
|
702
|
+
preselected_key: t.StringC;
|
703
|
+
label_field: t.StringC;
|
704
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
705
|
+
field: t.StringC;
|
706
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
707
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
708
|
+
}>>;
|
709
|
+
loaded: t.ArrayC<t.AnyC>;
|
710
|
+
allow_create: t.BooleanC;
|
711
|
+
allow_create_label: t.StringC;
|
712
|
+
is_private: t.BooleanC;
|
713
|
+
auto_choose: t.BooleanC;
|
488
714
|
}>]>]>>;
|
489
715
|
tags: t.ArrayC<t.StringC>;
|
490
716
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
@@ -613,6 +839,9 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
613
839
|
value: t.StringC;
|
614
840
|
reason: t.StringC;
|
615
841
|
}>]>]>>]>;
|
842
|
+
availability_expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
843
|
+
recommend_expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
844
|
+
always_recommend: t.BooleanC;
|
616
845
|
confirm: t.StringC;
|
617
846
|
shortcut: t.ArrayC<t.StringC>;
|
618
847
|
explanation: t.StringC;
|
@@ -640,13 +869,18 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
640
869
|
shortcut_win: t.ArrayC<t.StringC>;
|
641
870
|
hotkey_mac: t.StringC;
|
642
871
|
hotkey_win: t.StringC;
|
643
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
872
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
644
873
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
645
874
|
value: t.StringC;
|
646
|
-
}>, t.
|
875
|
+
}>, t.PartialC<{
|
876
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
877
|
+
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
647
878
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
648
879
|
value: t.StringC;
|
649
|
-
}
|
880
|
+
}>, t.PartialC<{
|
881
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
882
|
+
}>]>]>>]>;
|
883
|
+
next_steps: t.ArrayC<t.UnionC<[t.StringC, t.NumberC]>>;
|
650
884
|
}>, t.PartialC<{
|
651
885
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
652
886
|
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -748,6 +982,22 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
748
982
|
object: t.StringC;
|
749
983
|
hoverTooltip: t.BooleanC;
|
750
984
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
985
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
986
|
+
type: t.LiteralC<"video">;
|
987
|
+
value: t.StringC;
|
988
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
989
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
990
|
+
object: t.StringC;
|
991
|
+
hoverTooltip: t.BooleanC;
|
992
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
993
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
994
|
+
type: t.LiteralC<"helpdoc">;
|
995
|
+
value: t.StringC;
|
996
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
997
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
998
|
+
object: t.StringC;
|
999
|
+
hoverTooltip: t.BooleanC;
|
1000
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
751
1001
|
}>]>]>]>;
|
752
1002
|
}>, t.PartialC<{
|
753
1003
|
disabledReason: t.StringC;
|
@@ -755,6 +1005,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
755
1005
|
name: t.StringC;
|
756
1006
|
last_available: t.UnionC<[t.StringC, t.NullC]>;
|
757
1007
|
modified: t.StringC;
|
1008
|
+
isAsync: t.BooleanC;
|
758
1009
|
}>]>, t.TypeC<{
|
759
1010
|
arguments: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
|
760
1011
|
type: t.LiteralC<"context">;
|
@@ -777,6 +1028,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
777
1028
|
allow_create_label: t.StringC;
|
778
1029
|
show_in_record_action_list: t.BooleanC;
|
779
1030
|
show_in_default_list: t.BooleanC;
|
1031
|
+
auto_choose: t.BooleanC;
|
1032
|
+
is_private: t.BooleanC;
|
780
1033
|
}>]>, t.IntersectionC<[t.TypeC<{
|
781
1034
|
type: t.LiteralC<"set">;
|
782
1035
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -796,6 +1049,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
796
1049
|
loaded: t.ArrayC<t.AnyC>;
|
797
1050
|
allow_create: t.BooleanC;
|
798
1051
|
allow_create_label: t.StringC;
|
1052
|
+
auto_choose: t.BooleanC;
|
1053
|
+
is_private: t.BooleanC;
|
799
1054
|
}>]>, t.IntersectionC<[t.TypeC<{
|
800
1055
|
type: t.LiteralC<"provided">;
|
801
1056
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -816,6 +1071,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
816
1071
|
dateTimeArgumentTypeId: t.NumberC;
|
817
1072
|
allow_create: t.BooleanC;
|
818
1073
|
allow_create_label: t.StringC;
|
1074
|
+
auto_choose: t.BooleanC;
|
1075
|
+
is_private: t.BooleanC;
|
819
1076
|
}>]>, t.IntersectionC<[t.TypeC<{
|
820
1077
|
type: t.LiteralC<"dependent">;
|
821
1078
|
value: t.StringC;
|
@@ -835,6 +1092,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
835
1092
|
loaded: t.ArrayC<t.AnyC>;
|
836
1093
|
allow_create: t.BooleanC;
|
837
1094
|
allow_create_label: t.StringC;
|
1095
|
+
auto_choose: t.BooleanC;
|
1096
|
+
is_private: t.BooleanC;
|
838
1097
|
}>]>, t.IntersectionC<[t.TypeC<{
|
839
1098
|
type: t.LiteralC<"function">;
|
840
1099
|
value: t.StringC;
|
@@ -854,6 +1113,35 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
854
1113
|
loaded: t.ArrayC<t.AnyC>;
|
855
1114
|
allow_create: t.BooleanC;
|
856
1115
|
allow_create_label: t.StringC;
|
1116
|
+
auto_choose: t.BooleanC;
|
1117
|
+
is_private: t.BooleanC;
|
1118
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
1119
|
+
type: t.UnionC<[t.LiteralC<"video">, t.LiteralC<"html">]>;
|
1120
|
+
value: t.IntersectionC<[t.TypeC<{
|
1121
|
+
source: t.StringC;
|
1122
|
+
}>, t.PartialC<{
|
1123
|
+
title: t.StringC;
|
1124
|
+
description: t.StringC;
|
1125
|
+
url: t.StringC;
|
1126
|
+
}>]>;
|
1127
|
+
order_key: t.NumberC;
|
1128
|
+
}>, t.PartialC<{
|
1129
|
+
label: t.StringC;
|
1130
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
1131
|
+
selected: t.ArrayC<t.AnyC>;
|
1132
|
+
input_type: t.StringC;
|
1133
|
+
preselected_key: t.StringC;
|
1134
|
+
label_field: t.StringC;
|
1135
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
1136
|
+
field: t.StringC;
|
1137
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
1138
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
1139
|
+
}>>;
|
1140
|
+
loaded: t.ArrayC<t.AnyC>;
|
1141
|
+
allow_create: t.BooleanC;
|
1142
|
+
allow_create_label: t.StringC;
|
1143
|
+
is_private: t.BooleanC;
|
1144
|
+
auto_choose: t.BooleanC;
|
857
1145
|
}>]>]>>;
|
858
1146
|
tags: t.ArrayC<t.StringC>;
|
859
1147
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
@@ -982,6 +1270,9 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
982
1270
|
value: t.StringC;
|
983
1271
|
reason: t.StringC;
|
984
1272
|
}>]>]>>]>;
|
1273
|
+
availability_expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
1274
|
+
recommend_expression: t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>;
|
1275
|
+
always_recommend: t.BooleanC;
|
985
1276
|
confirm: t.StringC;
|
986
1277
|
shortcut: t.ArrayC<t.StringC>;
|
987
1278
|
explanation: t.StringC;
|
@@ -1009,13 +1300,18 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1009
1300
|
shortcut_win: t.ArrayC<t.StringC>;
|
1010
1301
|
hotkey_mac: t.StringC;
|
1011
1302
|
hotkey_win: t.StringC;
|
1012
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
1303
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
1013
1304
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
1014
1305
|
value: t.StringC;
|
1015
|
-
}>, t.
|
1306
|
+
}>, t.PartialC<{
|
1307
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
1308
|
+
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
1016
1309
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
1017
1310
|
value: t.StringC;
|
1018
|
-
}
|
1311
|
+
}>, t.PartialC<{
|
1312
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
1313
|
+
}>]>]>>]>;
|
1314
|
+
next_steps: t.ArrayC<t.UnionC<[t.StringC, t.NumberC]>>;
|
1019
1315
|
}>, t.PartialC<{
|
1020
1316
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
1021
1317
|
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -1111,6 +1407,22 @@ export declare class Command {
|
|
1111
1407
|
object?: string | undefined;
|
1112
1408
|
hoverTooltip?: boolean | undefined;
|
1113
1409
|
operation?: "self" | "router" | "blank" | undefined;
|
1410
|
+
}) | ({
|
1411
|
+
type: "video";
|
1412
|
+
value: string;
|
1413
|
+
} & {} & {
|
1414
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
1415
|
+
object?: string | undefined;
|
1416
|
+
hoverTooltip?: boolean | undefined;
|
1417
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1418
|
+
}) | ({
|
1419
|
+
type: "helpdoc";
|
1420
|
+
value: string;
|
1421
|
+
} & {} & {
|
1422
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
1423
|
+
object?: string | undefined;
|
1424
|
+
hoverTooltip?: boolean | undefined;
|
1425
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1114
1426
|
});
|
1115
1427
|
} & {
|
1116
1428
|
disabledReason?: string | undefined;
|
@@ -1118,6 +1430,7 @@ export declare class Command {
|
|
1118
1430
|
name?: string | undefined;
|
1119
1431
|
last_available?: string | null | undefined;
|
1120
1432
|
modified?: string | undefined;
|
1433
|
+
isAsync?: boolean | undefined;
|
1121
1434
|
} & {
|
1122
1435
|
arguments: {
|
1123
1436
|
[x: string]: ({
|
@@ -1141,6 +1454,8 @@ export declare class Command {
|
|
1141
1454
|
allow_create_label?: string | undefined;
|
1142
1455
|
show_in_record_action_list?: boolean | undefined;
|
1143
1456
|
show_in_default_list?: boolean | undefined;
|
1457
|
+
auto_choose?: boolean | undefined;
|
1458
|
+
is_private?: boolean | undefined;
|
1144
1459
|
}) | ({
|
1145
1460
|
type: "set";
|
1146
1461
|
value: string[] | number[] | {
|
@@ -1162,6 +1477,8 @@ export declare class Command {
|
|
1162
1477
|
loaded?: any[] | undefined;
|
1163
1478
|
allow_create?: boolean | undefined;
|
1164
1479
|
allow_create_label?: string | undefined;
|
1480
|
+
auto_choose?: boolean | undefined;
|
1481
|
+
is_private?: boolean | undefined;
|
1165
1482
|
}) | ({
|
1166
1483
|
type: "provided";
|
1167
1484
|
value: "time" | "text";
|
@@ -1182,6 +1499,8 @@ export declare class Command {
|
|
1182
1499
|
dateTimeArgumentTypeId?: number | undefined;
|
1183
1500
|
allow_create?: boolean | undefined;
|
1184
1501
|
allow_create_label?: string | undefined;
|
1502
|
+
auto_choose?: boolean | undefined;
|
1503
|
+
is_private?: boolean | undefined;
|
1185
1504
|
}) | ({
|
1186
1505
|
type: "dependent";
|
1187
1506
|
value: string;
|
@@ -1201,6 +1520,8 @@ export declare class Command {
|
|
1201
1520
|
loaded?: any[] | undefined;
|
1202
1521
|
allow_create?: boolean | undefined;
|
1203
1522
|
allow_create_label?: string | undefined;
|
1523
|
+
auto_choose?: boolean | undefined;
|
1524
|
+
is_private?: boolean | undefined;
|
1204
1525
|
}) | ({
|
1205
1526
|
type: "function";
|
1206
1527
|
value: string;
|
@@ -1220,51 +1541,73 @@ export declare class Command {
|
|
1220
1541
|
loaded?: any[] | undefined;
|
1221
1542
|
allow_create?: boolean | undefined;
|
1222
1543
|
allow_create_label?: string | undefined;
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1544
|
+
auto_choose?: boolean | undefined;
|
1545
|
+
is_private?: boolean | undefined;
|
1546
|
+
}) | ({
|
1547
|
+
type: "html" | "video";
|
1548
|
+
value: {
|
1549
|
+
source: string;
|
1550
|
+
} & {
|
1551
|
+
title?: string | undefined;
|
1552
|
+
description?: string | undefined;
|
1553
|
+
url?: string | undefined;
|
1554
|
+
};
|
1555
|
+
order_key: number;
|
1556
|
+
} & {
|
1557
|
+
label?: string | undefined;
|
1558
|
+
chosen?: string | number | undefined;
|
1559
|
+
selected?: any[] | undefined;
|
1560
|
+
input_type?: string | undefined;
|
1561
|
+
preselected_key?: string | undefined;
|
1562
|
+
label_field?: string | undefined;
|
1563
|
+
availability_condition?: {
|
1564
|
+
field: string;
|
1565
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
1566
|
+
value: string | undefined;
|
1567
|
+
}[] | undefined;
|
1568
|
+
loaded?: any[] | undefined;
|
1569
|
+
allow_create?: boolean | undefined;
|
1570
|
+
allow_create_label?: string | undefined;
|
1571
|
+
is_private?: boolean | undefined;
|
1572
|
+
auto_choose?: boolean | undefined;
|
1573
|
+
});
|
1574
|
+
};
|
1575
|
+
tags: string[];
|
1576
|
+
availability_rules: ({
|
1577
|
+
type: "url" | "context" | "element";
|
1578
|
+
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1579
|
+
} & {
|
1580
|
+
field?: string | undefined;
|
1581
|
+
value?: string | undefined;
|
1582
|
+
reason?: string | undefined;
|
1583
|
+
})[] | (({
|
1584
|
+
type: "url" | "context" | "element";
|
1585
|
+
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1586
|
+
} & {
|
1587
|
+
field?: string | undefined;
|
1588
|
+
value?: string | undefined;
|
1589
|
+
reason?: string | undefined;
|
1590
|
+
}) | ({
|
1591
|
+
type: "named_rule";
|
1242
1592
|
rule_id: number;
|
1243
1593
|
} & {
|
1244
1594
|
reason?: string | undefined;
|
1245
1595
|
}))[];
|
1246
1596
|
recommend_rules: (({
|
1247
|
-
type: "always";
|
1248
|
-
} & {
|
1249
|
-
operator?: null | undefined;
|
1250
|
-
field?: null | undefined;
|
1251
|
-
value?: null | undefined;
|
1252
|
-
reason?: null | undefined;
|
1253
|
-
}) | ({
|
1254
1597
|
type: "url" | "context" | "element";
|
1255
1598
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1256
1599
|
} & {
|
1257
1600
|
field?: string | undefined;
|
1258
1601
|
value?: string | undefined;
|
1259
1602
|
reason?: string | undefined;
|
1260
|
-
})
|
1603
|
+
}) | ({
|
1261
1604
|
type: "always";
|
1262
1605
|
} & {
|
1263
1606
|
operator?: null | undefined;
|
1264
1607
|
field?: null | undefined;
|
1265
1608
|
value?: null | undefined;
|
1266
1609
|
reason?: null | undefined;
|
1267
|
-
}) | ({
|
1610
|
+
}))[] | (({
|
1268
1611
|
type: "url" | "context" | "element";
|
1269
1612
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1270
1613
|
} & {
|
@@ -1276,7 +1619,17 @@ export declare class Command {
|
|
1276
1619
|
rule_id: number;
|
1277
1620
|
} & {
|
1278
1621
|
reason?: string | undefined;
|
1622
|
+
}) | ({
|
1623
|
+
type: "always";
|
1624
|
+
} & {
|
1625
|
+
operator?: null | undefined;
|
1626
|
+
field?: null | undefined;
|
1627
|
+
value?: null | undefined;
|
1628
|
+
reason?: null | undefined;
|
1279
1629
|
}))[];
|
1630
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
1631
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
1632
|
+
always_recommend: boolean;
|
1280
1633
|
confirm: string;
|
1281
1634
|
shortcut: string[];
|
1282
1635
|
explanation: string;
|
@@ -1304,13 +1657,18 @@ export declare class Command {
|
|
1304
1657
|
shortcut_win: string[];
|
1305
1658
|
hotkey_mac: string;
|
1306
1659
|
hotkey_win: string;
|
1307
|
-
detail: string | {
|
1660
|
+
detail: string | ({
|
1308
1661
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1309
1662
|
value: string;
|
1310
|
-
}
|
1663
|
+
} & {
|
1664
|
+
position?: "inline" | "popover" | undefined;
|
1665
|
+
}) | (string | ({
|
1311
1666
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1312
1667
|
value: string;
|
1313
|
-
}
|
1668
|
+
} & {
|
1669
|
+
position?: "inline" | "popover" | undefined;
|
1670
|
+
}))[] | null;
|
1671
|
+
next_steps: (string | number)[];
|
1314
1672
|
} & {
|
1315
1673
|
third_party_source?: string | null | undefined;
|
1316
1674
|
third_party_id?: string | null | undefined;
|
@@ -1403,6 +1761,22 @@ export declare class Command {
|
|
1403
1761
|
object?: string | undefined;
|
1404
1762
|
hoverTooltip?: boolean | undefined;
|
1405
1763
|
operation?: "self" | "router" | "blank" | undefined;
|
1764
|
+
}) | ({
|
1765
|
+
type: "video";
|
1766
|
+
value: string;
|
1767
|
+
} & {} & {
|
1768
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
1769
|
+
object?: string | undefined;
|
1770
|
+
hoverTooltip?: boolean | undefined;
|
1771
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1772
|
+
}) | ({
|
1773
|
+
type: "helpdoc";
|
1774
|
+
value: string;
|
1775
|
+
} & {} & {
|
1776
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
1777
|
+
object?: string | undefined;
|
1778
|
+
hoverTooltip?: boolean | undefined;
|
1779
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1406
1780
|
});
|
1407
1781
|
} & {
|
1408
1782
|
disabledReason?: string | undefined;
|
@@ -1410,6 +1784,7 @@ export declare class Command {
|
|
1410
1784
|
name?: string | undefined;
|
1411
1785
|
last_available?: string | null | undefined;
|
1412
1786
|
modified?: string | undefined;
|
1787
|
+
isAsync?: boolean | undefined;
|
1413
1788
|
} & {
|
1414
1789
|
arguments: {
|
1415
1790
|
[x: string]: ({
|
@@ -1433,6 +1808,8 @@ export declare class Command {
|
|
1433
1808
|
allow_create_label?: string | undefined;
|
1434
1809
|
show_in_record_action_list?: boolean | undefined;
|
1435
1810
|
show_in_default_list?: boolean | undefined;
|
1811
|
+
auto_choose?: boolean | undefined;
|
1812
|
+
is_private?: boolean | undefined;
|
1436
1813
|
}) | ({
|
1437
1814
|
type: "set";
|
1438
1815
|
value: string[] | number[] | {
|
@@ -1454,6 +1831,8 @@ export declare class Command {
|
|
1454
1831
|
loaded?: any[] | undefined;
|
1455
1832
|
allow_create?: boolean | undefined;
|
1456
1833
|
allow_create_label?: string | undefined;
|
1834
|
+
auto_choose?: boolean | undefined;
|
1835
|
+
is_private?: boolean | undefined;
|
1457
1836
|
}) | ({
|
1458
1837
|
type: "provided";
|
1459
1838
|
value: "time" | "text";
|
@@ -1474,6 +1853,8 @@ export declare class Command {
|
|
1474
1853
|
dateTimeArgumentTypeId?: number | undefined;
|
1475
1854
|
allow_create?: boolean | undefined;
|
1476
1855
|
allow_create_label?: string | undefined;
|
1856
|
+
auto_choose?: boolean | undefined;
|
1857
|
+
is_private?: boolean | undefined;
|
1477
1858
|
}) | ({
|
1478
1859
|
type: "dependent";
|
1479
1860
|
value: string;
|
@@ -1493,6 +1874,8 @@ export declare class Command {
|
|
1493
1874
|
loaded?: any[] | undefined;
|
1494
1875
|
allow_create?: boolean | undefined;
|
1495
1876
|
allow_create_label?: string | undefined;
|
1877
|
+
auto_choose?: boolean | undefined;
|
1878
|
+
is_private?: boolean | undefined;
|
1496
1879
|
}) | ({
|
1497
1880
|
type: "function";
|
1498
1881
|
value: string;
|
@@ -1512,6 +1895,35 @@ export declare class Command {
|
|
1512
1895
|
loaded?: any[] | undefined;
|
1513
1896
|
allow_create?: boolean | undefined;
|
1514
1897
|
allow_create_label?: string | undefined;
|
1898
|
+
auto_choose?: boolean | undefined;
|
1899
|
+
is_private?: boolean | undefined;
|
1900
|
+
}) | ({
|
1901
|
+
type: "html" | "video";
|
1902
|
+
value: {
|
1903
|
+
source: string;
|
1904
|
+
} & {
|
1905
|
+
title?: string | undefined;
|
1906
|
+
description?: string | undefined;
|
1907
|
+
url?: string | undefined;
|
1908
|
+
};
|
1909
|
+
order_key: number;
|
1910
|
+
} & {
|
1911
|
+
label?: string | undefined;
|
1912
|
+
chosen?: string | number | undefined;
|
1913
|
+
selected?: any[] | undefined;
|
1914
|
+
input_type?: string | undefined;
|
1915
|
+
preselected_key?: string | undefined;
|
1916
|
+
label_field?: string | undefined;
|
1917
|
+
availability_condition?: {
|
1918
|
+
field: string;
|
1919
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
1920
|
+
value: string | undefined;
|
1921
|
+
}[] | undefined;
|
1922
|
+
loaded?: any[] | undefined;
|
1923
|
+
allow_create?: boolean | undefined;
|
1924
|
+
allow_create_label?: string | undefined;
|
1925
|
+
is_private?: boolean | undefined;
|
1926
|
+
auto_choose?: boolean | undefined;
|
1515
1927
|
});
|
1516
1928
|
};
|
1517
1929
|
tags: string[];
|
@@ -1536,27 +1948,20 @@ export declare class Command {
|
|
1536
1948
|
reason?: string | undefined;
|
1537
1949
|
}))[];
|
1538
1950
|
recommend_rules: (({
|
1539
|
-
type: "always";
|
1540
|
-
} & {
|
1541
|
-
operator?: null | undefined;
|
1542
|
-
field?: null | undefined;
|
1543
|
-
value?: null | undefined;
|
1544
|
-
reason?: null | undefined;
|
1545
|
-
}) | ({
|
1546
1951
|
type: "url" | "context" | "element";
|
1547
1952
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1548
1953
|
} & {
|
1549
1954
|
field?: string | undefined;
|
1550
1955
|
value?: string | undefined;
|
1551
1956
|
reason?: string | undefined;
|
1552
|
-
})
|
1957
|
+
}) | ({
|
1553
1958
|
type: "always";
|
1554
1959
|
} & {
|
1555
1960
|
operator?: null | undefined;
|
1556
1961
|
field?: null | undefined;
|
1557
1962
|
value?: null | undefined;
|
1558
1963
|
reason?: null | undefined;
|
1559
|
-
}) | ({
|
1964
|
+
}))[] | (({
|
1560
1965
|
type: "url" | "context" | "element";
|
1561
1966
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1562
1967
|
} & {
|
@@ -1568,7 +1973,17 @@ export declare class Command {
|
|
1568
1973
|
rule_id: number;
|
1569
1974
|
} & {
|
1570
1975
|
reason?: string | undefined;
|
1976
|
+
}) | ({
|
1977
|
+
type: "always";
|
1978
|
+
} & {
|
1979
|
+
operator?: null | undefined;
|
1980
|
+
field?: null | undefined;
|
1981
|
+
value?: null | undefined;
|
1982
|
+
reason?: null | undefined;
|
1571
1983
|
}))[];
|
1984
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
1985
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
1986
|
+
always_recommend: boolean;
|
1572
1987
|
confirm: string;
|
1573
1988
|
shortcut: string[];
|
1574
1989
|
explanation: string;
|
@@ -1596,13 +2011,18 @@ export declare class Command {
|
|
1596
2011
|
shortcut_win: string[];
|
1597
2012
|
hotkey_mac: string;
|
1598
2013
|
hotkey_win: string;
|
1599
|
-
detail: string | {
|
2014
|
+
detail: string | ({
|
1600
2015
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1601
2016
|
value: string;
|
1602
|
-
}
|
2017
|
+
} & {
|
2018
|
+
position?: "inline" | "popover" | undefined;
|
2019
|
+
}) | (string | ({
|
1603
2020
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1604
2021
|
value: string;
|
1605
|
-
}
|
2022
|
+
} & {
|
2023
|
+
position?: "inline" | "popover" | undefined;
|
2024
|
+
}))[] | null;
|
2025
|
+
next_steps: (string | number)[];
|
1606
2026
|
} & {
|
1607
2027
|
third_party_source?: string | null | undefined;
|
1608
2028
|
third_party_id?: string | null | undefined;
|
@@ -1696,6 +2116,22 @@ export declare class Command {
|
|
1696
2116
|
object?: string | undefined;
|
1697
2117
|
hoverTooltip?: boolean | undefined;
|
1698
2118
|
operation?: "self" | "router" | "blank" | undefined;
|
2119
|
+
}) | ({
|
2120
|
+
type: "video";
|
2121
|
+
value: string;
|
2122
|
+
} & {} & {
|
2123
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
2124
|
+
object?: string | undefined;
|
2125
|
+
hoverTooltip?: boolean | undefined;
|
2126
|
+
operation?: "self" | "router" | "blank" | undefined;
|
2127
|
+
}) | ({
|
2128
|
+
type: "helpdoc";
|
2129
|
+
value: string;
|
2130
|
+
} & {} & {
|
2131
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
2132
|
+
object?: string | undefined;
|
2133
|
+
hoverTooltip?: boolean | undefined;
|
2134
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1699
2135
|
});
|
1700
2136
|
} & {
|
1701
2137
|
disabledReason?: string | undefined;
|
@@ -1703,6 +2139,7 @@ export declare class Command {
|
|
1703
2139
|
name?: string | undefined;
|
1704
2140
|
last_available?: string | null | undefined;
|
1705
2141
|
modified?: string | undefined;
|
2142
|
+
isAsync?: boolean | undefined;
|
1706
2143
|
} & {
|
1707
2144
|
arguments: {
|
1708
2145
|
[x: string]: ({
|
@@ -1726,6 +2163,8 @@ export declare class Command {
|
|
1726
2163
|
allow_create_label?: string | undefined;
|
1727
2164
|
show_in_record_action_list?: boolean | undefined;
|
1728
2165
|
show_in_default_list?: boolean | undefined;
|
2166
|
+
auto_choose?: boolean | undefined;
|
2167
|
+
is_private?: boolean | undefined;
|
1729
2168
|
}) | ({
|
1730
2169
|
type: "set";
|
1731
2170
|
value: string[] | number[] | {
|
@@ -1747,6 +2186,8 @@ export declare class Command {
|
|
1747
2186
|
loaded?: any[] | undefined;
|
1748
2187
|
allow_create?: boolean | undefined;
|
1749
2188
|
allow_create_label?: string | undefined;
|
2189
|
+
auto_choose?: boolean | undefined;
|
2190
|
+
is_private?: boolean | undefined;
|
1750
2191
|
}) | ({
|
1751
2192
|
type: "provided";
|
1752
2193
|
value: "time" | "text";
|
@@ -1767,6 +2208,8 @@ export declare class Command {
|
|
1767
2208
|
dateTimeArgumentTypeId?: number | undefined;
|
1768
2209
|
allow_create?: boolean | undefined;
|
1769
2210
|
allow_create_label?: string | undefined;
|
2211
|
+
auto_choose?: boolean | undefined;
|
2212
|
+
is_private?: boolean | undefined;
|
1770
2213
|
}) | ({
|
1771
2214
|
type: "dependent";
|
1772
2215
|
value: string;
|
@@ -1786,6 +2229,8 @@ export declare class Command {
|
|
1786
2229
|
loaded?: any[] | undefined;
|
1787
2230
|
allow_create?: boolean | undefined;
|
1788
2231
|
allow_create_label?: string | undefined;
|
2232
|
+
auto_choose?: boolean | undefined;
|
2233
|
+
is_private?: boolean | undefined;
|
1789
2234
|
}) | ({
|
1790
2235
|
type: "function";
|
1791
2236
|
value: string;
|
@@ -1805,6 +2250,35 @@ export declare class Command {
|
|
1805
2250
|
loaded?: any[] | undefined;
|
1806
2251
|
allow_create?: boolean | undefined;
|
1807
2252
|
allow_create_label?: string | undefined;
|
2253
|
+
auto_choose?: boolean | undefined;
|
2254
|
+
is_private?: boolean | undefined;
|
2255
|
+
}) | ({
|
2256
|
+
type: "html" | "video";
|
2257
|
+
value: {
|
2258
|
+
source: string;
|
2259
|
+
} & {
|
2260
|
+
title?: string | undefined;
|
2261
|
+
description?: string | undefined;
|
2262
|
+
url?: string | undefined;
|
2263
|
+
};
|
2264
|
+
order_key: number;
|
2265
|
+
} & {
|
2266
|
+
label?: string | undefined;
|
2267
|
+
chosen?: string | number | undefined;
|
2268
|
+
selected?: any[] | undefined;
|
2269
|
+
input_type?: string | undefined;
|
2270
|
+
preselected_key?: string | undefined;
|
2271
|
+
label_field?: string | undefined;
|
2272
|
+
availability_condition?: {
|
2273
|
+
field: string;
|
2274
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
2275
|
+
value: string | undefined;
|
2276
|
+
}[] | undefined;
|
2277
|
+
loaded?: any[] | undefined;
|
2278
|
+
allow_create?: boolean | undefined;
|
2279
|
+
allow_create_label?: string | undefined;
|
2280
|
+
is_private?: boolean | undefined;
|
2281
|
+
auto_choose?: boolean | undefined;
|
1808
2282
|
});
|
1809
2283
|
};
|
1810
2284
|
tags: string[];
|
@@ -1829,27 +2303,20 @@ export declare class Command {
|
|
1829
2303
|
reason?: string | undefined;
|
1830
2304
|
}))[];
|
1831
2305
|
recommend_rules: (({
|
1832
|
-
type: "always";
|
1833
|
-
} & {
|
1834
|
-
operator?: null | undefined;
|
1835
|
-
field?: null | undefined;
|
1836
|
-
value?: null | undefined;
|
1837
|
-
reason?: null | undefined;
|
1838
|
-
}) | ({
|
1839
2306
|
type: "url" | "context" | "element";
|
1840
2307
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1841
2308
|
} & {
|
1842
2309
|
field?: string | undefined;
|
1843
2310
|
value?: string | undefined;
|
1844
2311
|
reason?: string | undefined;
|
1845
|
-
})
|
2312
|
+
}) | ({
|
1846
2313
|
type: "always";
|
1847
2314
|
} & {
|
1848
2315
|
operator?: null | undefined;
|
1849
2316
|
field?: null | undefined;
|
1850
2317
|
value?: null | undefined;
|
1851
2318
|
reason?: null | undefined;
|
1852
|
-
}) | ({
|
2319
|
+
}))[] | (({
|
1853
2320
|
type: "url" | "context" | "element";
|
1854
2321
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
1855
2322
|
} & {
|
@@ -1861,7 +2328,17 @@ export declare class Command {
|
|
1861
2328
|
rule_id: number;
|
1862
2329
|
} & {
|
1863
2330
|
reason?: string | undefined;
|
2331
|
+
}) | ({
|
2332
|
+
type: "always";
|
2333
|
+
} & {
|
2334
|
+
operator?: null | undefined;
|
2335
|
+
field?: null | undefined;
|
2336
|
+
value?: null | undefined;
|
2337
|
+
reason?: null | undefined;
|
1864
2338
|
}))[];
|
2339
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
2340
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
2341
|
+
always_recommend: boolean;
|
1865
2342
|
confirm: string;
|
1866
2343
|
shortcut: string[];
|
1867
2344
|
explanation: string;
|
@@ -1889,13 +2366,18 @@ export declare class Command {
|
|
1889
2366
|
shortcut_win: string[];
|
1890
2367
|
hotkey_mac: string;
|
1891
2368
|
hotkey_win: string;
|
1892
|
-
detail: string | {
|
2369
|
+
detail: string | ({
|
1893
2370
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1894
2371
|
value: string;
|
1895
|
-
}
|
2372
|
+
} & {
|
2373
|
+
position?: "inline" | "popover" | undefined;
|
2374
|
+
}) | (string | ({
|
1896
2375
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1897
2376
|
value: string;
|
1898
|
-
}
|
2377
|
+
} & {
|
2378
|
+
position?: "inline" | "popover" | undefined;
|
2379
|
+
}))[] | null;
|
2380
|
+
next_steps: (string | number)[];
|
1899
2381
|
} & {
|
1900
2382
|
third_party_source?: string | null | undefined;
|
1901
2383
|
third_party_id?: string | null | undefined;
|
@@ -1988,6 +2470,22 @@ export declare class Command {
|
|
1988
2470
|
object?: string | undefined;
|
1989
2471
|
hoverTooltip?: boolean | undefined;
|
1990
2472
|
operation?: "self" | "router" | "blank" | undefined;
|
2473
|
+
}) | ({
|
2474
|
+
type: "video";
|
2475
|
+
value: string;
|
2476
|
+
} & {} & {
|
2477
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
2478
|
+
object?: string | undefined;
|
2479
|
+
hoverTooltip?: boolean | undefined;
|
2480
|
+
operation?: "self" | "router" | "blank" | undefined;
|
2481
|
+
}) | ({
|
2482
|
+
type: "helpdoc";
|
2483
|
+
value: string;
|
2484
|
+
} & {} & {
|
2485
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
2486
|
+
object?: string | undefined;
|
2487
|
+
hoverTooltip?: boolean | undefined;
|
2488
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1991
2489
|
});
|
1992
2490
|
} & {
|
1993
2491
|
disabledReason?: string | undefined;
|
@@ -1995,6 +2493,7 @@ export declare class Command {
|
|
1995
2493
|
name?: string | undefined;
|
1996
2494
|
last_available?: string | null | undefined;
|
1997
2495
|
modified?: string | undefined;
|
2496
|
+
isAsync?: boolean | undefined;
|
1998
2497
|
} & {
|
1999
2498
|
arguments: {
|
2000
2499
|
[x: string]: ({
|
@@ -2018,6 +2517,8 @@ export declare class Command {
|
|
2018
2517
|
allow_create_label?: string | undefined;
|
2019
2518
|
show_in_record_action_list?: boolean | undefined;
|
2020
2519
|
show_in_default_list?: boolean | undefined;
|
2520
|
+
auto_choose?: boolean | undefined;
|
2521
|
+
is_private?: boolean | undefined;
|
2021
2522
|
}) | ({
|
2022
2523
|
type: "set";
|
2023
2524
|
value: string[] | number[] | {
|
@@ -2039,6 +2540,8 @@ export declare class Command {
|
|
2039
2540
|
loaded?: any[] | undefined;
|
2040
2541
|
allow_create?: boolean | undefined;
|
2041
2542
|
allow_create_label?: string | undefined;
|
2543
|
+
auto_choose?: boolean | undefined;
|
2544
|
+
is_private?: boolean | undefined;
|
2042
2545
|
}) | ({
|
2043
2546
|
type: "provided";
|
2044
2547
|
value: "time" | "text";
|
@@ -2059,6 +2562,8 @@ export declare class Command {
|
|
2059
2562
|
dateTimeArgumentTypeId?: number | undefined;
|
2060
2563
|
allow_create?: boolean | undefined;
|
2061
2564
|
allow_create_label?: string | undefined;
|
2565
|
+
auto_choose?: boolean | undefined;
|
2566
|
+
is_private?: boolean | undefined;
|
2062
2567
|
}) | ({
|
2063
2568
|
type: "dependent";
|
2064
2569
|
value: string;
|
@@ -2078,6 +2583,8 @@ export declare class Command {
|
|
2078
2583
|
loaded?: any[] | undefined;
|
2079
2584
|
allow_create?: boolean | undefined;
|
2080
2585
|
allow_create_label?: string | undefined;
|
2586
|
+
auto_choose?: boolean | undefined;
|
2587
|
+
is_private?: boolean | undefined;
|
2081
2588
|
}) | ({
|
2082
2589
|
type: "function";
|
2083
2590
|
value: string;
|
@@ -2097,6 +2604,35 @@ export declare class Command {
|
|
2097
2604
|
loaded?: any[] | undefined;
|
2098
2605
|
allow_create?: boolean | undefined;
|
2099
2606
|
allow_create_label?: string | undefined;
|
2607
|
+
auto_choose?: boolean | undefined;
|
2608
|
+
is_private?: boolean | undefined;
|
2609
|
+
}) | ({
|
2610
|
+
type: "html" | "video";
|
2611
|
+
value: {
|
2612
|
+
source: string;
|
2613
|
+
} & {
|
2614
|
+
title?: string | undefined;
|
2615
|
+
description?: string | undefined;
|
2616
|
+
url?: string | undefined;
|
2617
|
+
};
|
2618
|
+
order_key: number;
|
2619
|
+
} & {
|
2620
|
+
label?: string | undefined;
|
2621
|
+
chosen?: string | number | undefined;
|
2622
|
+
selected?: any[] | undefined;
|
2623
|
+
input_type?: string | undefined;
|
2624
|
+
preselected_key?: string | undefined;
|
2625
|
+
label_field?: string | undefined;
|
2626
|
+
availability_condition?: {
|
2627
|
+
field: string;
|
2628
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
2629
|
+
value: string | undefined;
|
2630
|
+
}[] | undefined;
|
2631
|
+
loaded?: any[] | undefined;
|
2632
|
+
allow_create?: boolean | undefined;
|
2633
|
+
allow_create_label?: string | undefined;
|
2634
|
+
is_private?: boolean | undefined;
|
2635
|
+
auto_choose?: boolean | undefined;
|
2100
2636
|
});
|
2101
2637
|
};
|
2102
2638
|
tags: string[];
|
@@ -2121,27 +2657,20 @@ export declare class Command {
|
|
2121
2657
|
reason?: string | undefined;
|
2122
2658
|
}))[];
|
2123
2659
|
recommend_rules: (({
|
2124
|
-
type: "always";
|
2125
|
-
} & {
|
2126
|
-
operator?: null | undefined;
|
2127
|
-
field?: null | undefined;
|
2128
|
-
value?: null | undefined;
|
2129
|
-
reason?: null | undefined;
|
2130
|
-
}) | ({
|
2131
2660
|
type: "url" | "context" | "element";
|
2132
2661
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2133
2662
|
} & {
|
2134
2663
|
field?: string | undefined;
|
2135
2664
|
value?: string | undefined;
|
2136
2665
|
reason?: string | undefined;
|
2137
|
-
})
|
2666
|
+
}) | ({
|
2138
2667
|
type: "always";
|
2139
2668
|
} & {
|
2140
2669
|
operator?: null | undefined;
|
2141
2670
|
field?: null | undefined;
|
2142
2671
|
value?: null | undefined;
|
2143
2672
|
reason?: null | undefined;
|
2144
|
-
}) | ({
|
2673
|
+
}))[] | (({
|
2145
2674
|
type: "url" | "context" | "element";
|
2146
2675
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2147
2676
|
} & {
|
@@ -2153,7 +2682,17 @@ export declare class Command {
|
|
2153
2682
|
rule_id: number;
|
2154
2683
|
} & {
|
2155
2684
|
reason?: string | undefined;
|
2685
|
+
}) | ({
|
2686
|
+
type: "always";
|
2687
|
+
} & {
|
2688
|
+
operator?: null | undefined;
|
2689
|
+
field?: null | undefined;
|
2690
|
+
value?: null | undefined;
|
2691
|
+
reason?: null | undefined;
|
2156
2692
|
}))[];
|
2693
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
2694
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
2695
|
+
always_recommend: boolean;
|
2157
2696
|
confirm: string;
|
2158
2697
|
shortcut: string[];
|
2159
2698
|
explanation: string;
|
@@ -2181,13 +2720,18 @@ export declare class Command {
|
|
2181
2720
|
shortcut_win: string[];
|
2182
2721
|
hotkey_mac: string;
|
2183
2722
|
hotkey_win: string;
|
2184
|
-
detail: string | {
|
2723
|
+
detail: string | ({
|
2185
2724
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2186
2725
|
value: string;
|
2187
|
-
}
|
2726
|
+
} & {
|
2727
|
+
position?: "inline" | "popover" | undefined;
|
2728
|
+
}) | (string | ({
|
2188
2729
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2189
2730
|
value: string;
|
2190
|
-
}
|
2731
|
+
} & {
|
2732
|
+
position?: "inline" | "popover" | undefined;
|
2733
|
+
}))[] | null;
|
2734
|
+
next_steps: (string | number)[];
|
2191
2735
|
} & {
|
2192
2736
|
third_party_source?: string | null | undefined;
|
2193
2737
|
third_party_id?: string | null | undefined;
|
@@ -2283,6 +2827,22 @@ export declare class Command {
|
|
2283
2827
|
object?: string | undefined;
|
2284
2828
|
hoverTooltip?: boolean | undefined;
|
2285
2829
|
operation?: "self" | "router" | "blank" | undefined;
|
2830
|
+
}) | ({
|
2831
|
+
type: "video";
|
2832
|
+
value: string;
|
2833
|
+
} & {} & {
|
2834
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
2835
|
+
object?: string | undefined;
|
2836
|
+
hoverTooltip?: boolean | undefined;
|
2837
|
+
operation?: "self" | "router" | "blank" | undefined;
|
2838
|
+
}) | ({
|
2839
|
+
type: "helpdoc";
|
2840
|
+
value: string;
|
2841
|
+
} & {} & {
|
2842
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
2843
|
+
object?: string | undefined;
|
2844
|
+
hoverTooltip?: boolean | undefined;
|
2845
|
+
operation?: "self" | "router" | "blank" | undefined;
|
2286
2846
|
});
|
2287
2847
|
} & {
|
2288
2848
|
disabledReason?: string | undefined;
|
@@ -2290,6 +2850,7 @@ export declare class Command {
|
|
2290
2850
|
name?: string | undefined;
|
2291
2851
|
last_available?: string | null | undefined;
|
2292
2852
|
modified?: string | undefined;
|
2853
|
+
isAsync?: boolean | undefined;
|
2293
2854
|
} & {
|
2294
2855
|
arguments: {
|
2295
2856
|
[x: string]: ({
|
@@ -2313,6 +2874,8 @@ export declare class Command {
|
|
2313
2874
|
allow_create_label?: string | undefined;
|
2314
2875
|
show_in_record_action_list?: boolean | undefined;
|
2315
2876
|
show_in_default_list?: boolean | undefined;
|
2877
|
+
auto_choose?: boolean | undefined;
|
2878
|
+
is_private?: boolean | undefined;
|
2316
2879
|
}) | ({
|
2317
2880
|
type: "set";
|
2318
2881
|
value: string[] | number[] | {
|
@@ -2334,6 +2897,8 @@ export declare class Command {
|
|
2334
2897
|
loaded?: any[] | undefined;
|
2335
2898
|
allow_create?: boolean | undefined;
|
2336
2899
|
allow_create_label?: string | undefined;
|
2900
|
+
auto_choose?: boolean | undefined;
|
2901
|
+
is_private?: boolean | undefined;
|
2337
2902
|
}) | ({
|
2338
2903
|
type: "provided";
|
2339
2904
|
value: "time" | "text";
|
@@ -2354,6 +2919,8 @@ export declare class Command {
|
|
2354
2919
|
dateTimeArgumentTypeId?: number | undefined;
|
2355
2920
|
allow_create?: boolean | undefined;
|
2356
2921
|
allow_create_label?: string | undefined;
|
2922
|
+
auto_choose?: boolean | undefined;
|
2923
|
+
is_private?: boolean | undefined;
|
2357
2924
|
}) | ({
|
2358
2925
|
type: "dependent";
|
2359
2926
|
value: string;
|
@@ -2373,6 +2940,8 @@ export declare class Command {
|
|
2373
2940
|
loaded?: any[] | undefined;
|
2374
2941
|
allow_create?: boolean | undefined;
|
2375
2942
|
allow_create_label?: string | undefined;
|
2943
|
+
auto_choose?: boolean | undefined;
|
2944
|
+
is_private?: boolean | undefined;
|
2376
2945
|
}) | ({
|
2377
2946
|
type: "function";
|
2378
2947
|
value: string;
|
@@ -2392,6 +2961,35 @@ export declare class Command {
|
|
2392
2961
|
loaded?: any[] | undefined;
|
2393
2962
|
allow_create?: boolean | undefined;
|
2394
2963
|
allow_create_label?: string | undefined;
|
2964
|
+
auto_choose?: boolean | undefined;
|
2965
|
+
is_private?: boolean | undefined;
|
2966
|
+
}) | ({
|
2967
|
+
type: "html" | "video";
|
2968
|
+
value: {
|
2969
|
+
source: string;
|
2970
|
+
} & {
|
2971
|
+
title?: string | undefined;
|
2972
|
+
description?: string | undefined;
|
2973
|
+
url?: string | undefined;
|
2974
|
+
};
|
2975
|
+
order_key: number;
|
2976
|
+
} & {
|
2977
|
+
label?: string | undefined;
|
2978
|
+
chosen?: string | number | undefined;
|
2979
|
+
selected?: any[] | undefined;
|
2980
|
+
input_type?: string | undefined;
|
2981
|
+
preselected_key?: string | undefined;
|
2982
|
+
label_field?: string | undefined;
|
2983
|
+
availability_condition?: {
|
2984
|
+
field: string;
|
2985
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
2986
|
+
value: string | undefined;
|
2987
|
+
}[] | undefined;
|
2988
|
+
loaded?: any[] | undefined;
|
2989
|
+
allow_create?: boolean | undefined;
|
2990
|
+
allow_create_label?: string | undefined;
|
2991
|
+
is_private?: boolean | undefined;
|
2992
|
+
auto_choose?: boolean | undefined;
|
2395
2993
|
});
|
2396
2994
|
};
|
2397
2995
|
tags: string[];
|
@@ -2416,27 +3014,20 @@ export declare class Command {
|
|
2416
3014
|
reason?: string | undefined;
|
2417
3015
|
}))[];
|
2418
3016
|
recommend_rules: (({
|
2419
|
-
type: "
|
2420
|
-
|
2421
|
-
operator?: null | undefined;
|
2422
|
-
field?: null | undefined;
|
2423
|
-
value?: null | undefined;
|
2424
|
-
reason?: null | undefined;
|
2425
|
-
}) | ({
|
2426
|
-
type: "url" | "context" | "element";
|
2427
|
-
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3017
|
+
type: "url" | "context" | "element";
|
3018
|
+
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2428
3019
|
} & {
|
2429
3020
|
field?: string | undefined;
|
2430
3021
|
value?: string | undefined;
|
2431
3022
|
reason?: string | undefined;
|
2432
|
-
})
|
3023
|
+
}) | ({
|
2433
3024
|
type: "always";
|
2434
3025
|
} & {
|
2435
3026
|
operator?: null | undefined;
|
2436
3027
|
field?: null | undefined;
|
2437
3028
|
value?: null | undefined;
|
2438
3029
|
reason?: null | undefined;
|
2439
|
-
}) | ({
|
3030
|
+
}))[] | (({
|
2440
3031
|
type: "url" | "context" | "element";
|
2441
3032
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2442
3033
|
} & {
|
@@ -2448,7 +3039,17 @@ export declare class Command {
|
|
2448
3039
|
rule_id: number;
|
2449
3040
|
} & {
|
2450
3041
|
reason?: string | undefined;
|
3042
|
+
}) | ({
|
3043
|
+
type: "always";
|
3044
|
+
} & {
|
3045
|
+
operator?: null | undefined;
|
3046
|
+
field?: null | undefined;
|
3047
|
+
value?: null | undefined;
|
3048
|
+
reason?: null | undefined;
|
2451
3049
|
}))[];
|
3050
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
3051
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
3052
|
+
always_recommend: boolean;
|
2452
3053
|
confirm: string;
|
2453
3054
|
shortcut: string[];
|
2454
3055
|
explanation: string;
|
@@ -2476,13 +3077,18 @@ export declare class Command {
|
|
2476
3077
|
shortcut_win: string[];
|
2477
3078
|
hotkey_mac: string;
|
2478
3079
|
hotkey_win: string;
|
2479
|
-
detail: string | {
|
3080
|
+
detail: string | ({
|
2480
3081
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2481
3082
|
value: string;
|
2482
|
-
}
|
3083
|
+
} & {
|
3084
|
+
position?: "inline" | "popover" | undefined;
|
3085
|
+
}) | (string | ({
|
2483
3086
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2484
3087
|
value: string;
|
2485
|
-
}
|
3088
|
+
} & {
|
3089
|
+
position?: "inline" | "popover" | undefined;
|
3090
|
+
}))[] | null;
|
3091
|
+
next_steps: (string | number)[];
|
2486
3092
|
} & {
|
2487
3093
|
third_party_source?: string | null | undefined;
|
2488
3094
|
third_party_id?: string | null | undefined;
|
@@ -2584,6 +3190,8 @@ export declare class Command {
|
|
2584
3190
|
allow_create_label?: string | undefined;
|
2585
3191
|
show_in_record_action_list?: boolean | undefined;
|
2586
3192
|
show_in_default_list?: boolean | undefined;
|
3193
|
+
auto_choose?: boolean | undefined;
|
3194
|
+
is_private?: boolean | undefined;
|
2587
3195
|
}) | ({
|
2588
3196
|
type: "set";
|
2589
3197
|
value: string[] | number[] | {
|
@@ -2605,6 +3213,8 @@ export declare class Command {
|
|
2605
3213
|
loaded?: any[] | undefined;
|
2606
3214
|
allow_create?: boolean | undefined;
|
2607
3215
|
allow_create_label?: string | undefined;
|
3216
|
+
auto_choose?: boolean | undefined;
|
3217
|
+
is_private?: boolean | undefined;
|
2608
3218
|
}) | ({
|
2609
3219
|
type: "provided";
|
2610
3220
|
value: "time" | "text";
|
@@ -2625,6 +3235,8 @@ export declare class Command {
|
|
2625
3235
|
dateTimeArgumentTypeId?: number | undefined;
|
2626
3236
|
allow_create?: boolean | undefined;
|
2627
3237
|
allow_create_label?: string | undefined;
|
3238
|
+
auto_choose?: boolean | undefined;
|
3239
|
+
is_private?: boolean | undefined;
|
2628
3240
|
}) | ({
|
2629
3241
|
type: "dependent";
|
2630
3242
|
value: string;
|
@@ -2644,6 +3256,8 @@ export declare class Command {
|
|
2644
3256
|
loaded?: any[] | undefined;
|
2645
3257
|
allow_create?: boolean | undefined;
|
2646
3258
|
allow_create_label?: string | undefined;
|
3259
|
+
auto_choose?: boolean | undefined;
|
3260
|
+
is_private?: boolean | undefined;
|
2647
3261
|
}) | ({
|
2648
3262
|
type: "function";
|
2649
3263
|
value: string;
|
@@ -2663,6 +3277,35 @@ export declare class Command {
|
|
2663
3277
|
loaded?: any[] | undefined;
|
2664
3278
|
allow_create?: boolean | undefined;
|
2665
3279
|
allow_create_label?: string | undefined;
|
3280
|
+
auto_choose?: boolean | undefined;
|
3281
|
+
is_private?: boolean | undefined;
|
3282
|
+
}) | ({
|
3283
|
+
type: "html" | "video";
|
3284
|
+
value: {
|
3285
|
+
source: string;
|
3286
|
+
} & {
|
3287
|
+
title?: string | undefined;
|
3288
|
+
description?: string | undefined;
|
3289
|
+
url?: string | undefined;
|
3290
|
+
};
|
3291
|
+
order_key: number;
|
3292
|
+
} & {
|
3293
|
+
label?: string | undefined;
|
3294
|
+
chosen?: string | number | undefined;
|
3295
|
+
selected?: any[] | undefined;
|
3296
|
+
input_type?: string | undefined;
|
3297
|
+
preselected_key?: string | undefined;
|
3298
|
+
label_field?: string | undefined;
|
3299
|
+
availability_condition?: {
|
3300
|
+
field: string;
|
3301
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
3302
|
+
value: string | undefined;
|
3303
|
+
}[] | undefined;
|
3304
|
+
loaded?: any[] | undefined;
|
3305
|
+
allow_create?: boolean | undefined;
|
3306
|
+
allow_create_label?: string | undefined;
|
3307
|
+
is_private?: boolean | undefined;
|
3308
|
+
auto_choose?: boolean | undefined;
|
2666
3309
|
});
|
2667
3310
|
} | undefined;
|
2668
3311
|
category?: string | number | null | undefined;
|
@@ -2690,27 +3333,33 @@ export declare class Command {
|
|
2690
3333
|
reason?: string | undefined;
|
2691
3334
|
})[] | undefined;
|
2692
3335
|
recommend_rules?: (({
|
2693
|
-
type: "always";
|
2694
|
-
} & {
|
2695
|
-
operator?: null | undefined;
|
2696
|
-
field?: null | undefined;
|
2697
|
-
value?: null | undefined;
|
2698
|
-
reason?: null | undefined;
|
2699
|
-
}) | ({
|
2700
3336
|
type: "url" | "context" | "element";
|
2701
3337
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2702
3338
|
} & {
|
2703
3339
|
field?: string | undefined;
|
2704
3340
|
value?: string | undefined;
|
2705
3341
|
reason?: string | undefined;
|
3342
|
+
}) | ({
|
3343
|
+
type: "always";
|
3344
|
+
} & {
|
3345
|
+
operator?: null | undefined;
|
3346
|
+
field?: null | undefined;
|
3347
|
+
value?: null | undefined;
|
3348
|
+
reason?: null | undefined;
|
2706
3349
|
}))[] | undefined;
|
2707
|
-
|
3350
|
+
availability_expression?: import("./helpers/rules").RuleExpression[] | undefined;
|
3351
|
+
recommend_expression?: import("./helpers/rules").RuleExpression[] | undefined;
|
3352
|
+
detail?: string | ({
|
2708
3353
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2709
3354
|
value: string;
|
2710
|
-
}
|
3355
|
+
} & {
|
3356
|
+
position?: "inline" | "popover" | undefined;
|
3357
|
+
}) | ({
|
2711
3358
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2712
3359
|
value: string;
|
2713
|
-
}
|
3360
|
+
} & {
|
3361
|
+
position?: "inline" | "popover" | undefined;
|
3362
|
+
})[] | undefined;
|
2714
3363
|
}>;
|
2715
3364
|
static decode: (data: any) => {
|
2716
3365
|
id: number;
|
@@ -2801,6 +3450,22 @@ export declare class Command {
|
|
2801
3450
|
object?: string | undefined;
|
2802
3451
|
hoverTooltip?: boolean | undefined;
|
2803
3452
|
operation?: "self" | "router" | "blank" | undefined;
|
3453
|
+
}) | ({
|
3454
|
+
type: "video";
|
3455
|
+
value: string;
|
3456
|
+
} & {} & {
|
3457
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3458
|
+
object?: string | undefined;
|
3459
|
+
hoverTooltip?: boolean | undefined;
|
3460
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3461
|
+
}) | ({
|
3462
|
+
type: "helpdoc";
|
3463
|
+
value: string;
|
3464
|
+
} & {} & {
|
3465
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3466
|
+
object?: string | undefined;
|
3467
|
+
hoverTooltip?: boolean | undefined;
|
3468
|
+
operation?: "self" | "router" | "blank" | undefined;
|
2804
3469
|
});
|
2805
3470
|
} & {
|
2806
3471
|
disabledReason?: string | undefined;
|
@@ -2808,6 +3473,7 @@ export declare class Command {
|
|
2808
3473
|
name?: string | undefined;
|
2809
3474
|
last_available?: string | null | undefined;
|
2810
3475
|
modified?: string | undefined;
|
3476
|
+
isAsync?: boolean | undefined;
|
2811
3477
|
} & {
|
2812
3478
|
arguments: {
|
2813
3479
|
[x: string]: ({
|
@@ -2831,6 +3497,8 @@ export declare class Command {
|
|
2831
3497
|
allow_create_label?: string | undefined;
|
2832
3498
|
show_in_record_action_list?: boolean | undefined;
|
2833
3499
|
show_in_default_list?: boolean | undefined;
|
3500
|
+
auto_choose?: boolean | undefined;
|
3501
|
+
is_private?: boolean | undefined;
|
2834
3502
|
}) | ({
|
2835
3503
|
type: "set";
|
2836
3504
|
value: string[] | number[] | {
|
@@ -2852,6 +3520,8 @@ export declare class Command {
|
|
2852
3520
|
loaded?: any[] | undefined;
|
2853
3521
|
allow_create?: boolean | undefined;
|
2854
3522
|
allow_create_label?: string | undefined;
|
3523
|
+
auto_choose?: boolean | undefined;
|
3524
|
+
is_private?: boolean | undefined;
|
2855
3525
|
}) | ({
|
2856
3526
|
type: "provided";
|
2857
3527
|
value: "time" | "text";
|
@@ -2872,6 +3542,8 @@ export declare class Command {
|
|
2872
3542
|
dateTimeArgumentTypeId?: number | undefined;
|
2873
3543
|
allow_create?: boolean | undefined;
|
2874
3544
|
allow_create_label?: string | undefined;
|
3545
|
+
auto_choose?: boolean | undefined;
|
3546
|
+
is_private?: boolean | undefined;
|
2875
3547
|
}) | ({
|
2876
3548
|
type: "dependent";
|
2877
3549
|
value: string;
|
@@ -2891,6 +3563,8 @@ export declare class Command {
|
|
2891
3563
|
loaded?: any[] | undefined;
|
2892
3564
|
allow_create?: boolean | undefined;
|
2893
3565
|
allow_create_label?: string | undefined;
|
3566
|
+
auto_choose?: boolean | undefined;
|
3567
|
+
is_private?: boolean | undefined;
|
2894
3568
|
}) | ({
|
2895
3569
|
type: "function";
|
2896
3570
|
value: string;
|
@@ -2910,6 +3584,35 @@ export declare class Command {
|
|
2910
3584
|
loaded?: any[] | undefined;
|
2911
3585
|
allow_create?: boolean | undefined;
|
2912
3586
|
allow_create_label?: string | undefined;
|
3587
|
+
auto_choose?: boolean | undefined;
|
3588
|
+
is_private?: boolean | undefined;
|
3589
|
+
}) | ({
|
3590
|
+
type: "html" | "video";
|
3591
|
+
value: {
|
3592
|
+
source: string;
|
3593
|
+
} & {
|
3594
|
+
title?: string | undefined;
|
3595
|
+
description?: string | undefined;
|
3596
|
+
url?: string | undefined;
|
3597
|
+
};
|
3598
|
+
order_key: number;
|
3599
|
+
} & {
|
3600
|
+
label?: string | undefined;
|
3601
|
+
chosen?: string | number | undefined;
|
3602
|
+
selected?: any[] | undefined;
|
3603
|
+
input_type?: string | undefined;
|
3604
|
+
preselected_key?: string | undefined;
|
3605
|
+
label_field?: string | undefined;
|
3606
|
+
availability_condition?: {
|
3607
|
+
field: string;
|
3608
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
3609
|
+
value: string | undefined;
|
3610
|
+
}[] | undefined;
|
3611
|
+
loaded?: any[] | undefined;
|
3612
|
+
allow_create?: boolean | undefined;
|
3613
|
+
allow_create_label?: string | undefined;
|
3614
|
+
is_private?: boolean | undefined;
|
3615
|
+
auto_choose?: boolean | undefined;
|
2913
3616
|
});
|
2914
3617
|
};
|
2915
3618
|
tags: string[];
|
@@ -2922,20 +3625,23 @@ export declare class Command {
|
|
2922
3625
|
reason?: string | undefined;
|
2923
3626
|
})[];
|
2924
3627
|
recommend_rules: (({
|
2925
|
-
type: "always";
|
2926
|
-
} & {
|
2927
|
-
operator?: null | undefined;
|
2928
|
-
field?: null | undefined;
|
2929
|
-
value?: null | undefined;
|
2930
|
-
reason?: null | undefined;
|
2931
|
-
}) | ({
|
2932
3628
|
type: "url" | "context" | "element";
|
2933
3629
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
2934
3630
|
} & {
|
2935
3631
|
field?: string | undefined;
|
2936
3632
|
value?: string | undefined;
|
2937
3633
|
reason?: string | undefined;
|
3634
|
+
}) | ({
|
3635
|
+
type: "always";
|
3636
|
+
} & {
|
3637
|
+
operator?: null | undefined;
|
3638
|
+
field?: null | undefined;
|
3639
|
+
value?: null | undefined;
|
3640
|
+
reason?: null | undefined;
|
2938
3641
|
}))[];
|
3642
|
+
availability_expression: import("./helpers/rules").RuleExpression | null;
|
3643
|
+
recommend_expression: import("./helpers/rules").RuleExpression | null;
|
3644
|
+
always_recommend: boolean;
|
2939
3645
|
confirm: string;
|
2940
3646
|
shortcut: string[];
|
2941
3647
|
explanation: string;
|
@@ -2963,15 +3669,20 @@ export declare class Command {
|
|
2963
3669
|
shortcut_win: string[];
|
2964
3670
|
hotkey_mac: string;
|
2965
3671
|
hotkey_win: string;
|
2966
|
-
detail: string | {
|
3672
|
+
detail: string | ({
|
2967
3673
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2968
3674
|
value: string;
|
2969
|
-
}
|
3675
|
+
} & {
|
3676
|
+
position?: "inline" | "popover" | undefined;
|
3677
|
+
}) | (string | ({
|
2970
3678
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2971
3679
|
value: string;
|
2972
|
-
}
|
3680
|
+
} & {
|
3681
|
+
position?: "inline" | "popover" | undefined;
|
3682
|
+
}))[] | null;
|
3683
|
+
next_steps: (string | number)[];
|
2973
3684
|
};
|
2974
|
-
static decodeEditorCommand: (data:
|
3685
|
+
static decodeEditorCommand: (data: {
|
2975
3686
|
id: number;
|
2976
3687
|
organization: string | number;
|
2977
3688
|
text: string;
|
@@ -3060,6 +3771,22 @@ export declare class Command {
|
|
3060
3771
|
object?: string | undefined;
|
3061
3772
|
hoverTooltip?: boolean | undefined;
|
3062
3773
|
operation?: "self" | "router" | "blank" | undefined;
|
3774
|
+
}) | ({
|
3775
|
+
type: "video";
|
3776
|
+
value: string;
|
3777
|
+
} & {} & {
|
3778
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3779
|
+
object?: string | undefined;
|
3780
|
+
hoverTooltip?: boolean | undefined;
|
3781
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3782
|
+
}) | ({
|
3783
|
+
type: "helpdoc";
|
3784
|
+
value: string;
|
3785
|
+
} & {} & {
|
3786
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3787
|
+
object?: string | undefined;
|
3788
|
+
hoverTooltip?: boolean | undefined;
|
3789
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3063
3790
|
});
|
3064
3791
|
} & {
|
3065
3792
|
disabledReason?: string | undefined;
|
@@ -3067,6 +3794,122 @@ export declare class Command {
|
|
3067
3794
|
name?: string | undefined;
|
3068
3795
|
last_available?: string | null | undefined;
|
3069
3796
|
modified?: string | undefined;
|
3797
|
+
isAsync?: boolean | undefined;
|
3798
|
+
} & {
|
3799
|
+
[key: string]: any;
|
3800
|
+
}) => {
|
3801
|
+
id: number;
|
3802
|
+
organization: string | number;
|
3803
|
+
text: string;
|
3804
|
+
template: ({
|
3805
|
+
type: "admin";
|
3806
|
+
value: string;
|
3807
|
+
} & {} & {
|
3808
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3809
|
+
object?: string | undefined;
|
3810
|
+
hoverTooltip?: boolean | undefined;
|
3811
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3812
|
+
}) | ({
|
3813
|
+
type: "callback";
|
3814
|
+
value: string;
|
3815
|
+
} & {} & {
|
3816
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3817
|
+
object?: string | undefined;
|
3818
|
+
hoverTooltip?: boolean | undefined;
|
3819
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3820
|
+
}) | ({
|
3821
|
+
type: "link";
|
3822
|
+
value: string;
|
3823
|
+
} & {} & {
|
3824
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3825
|
+
object?: string | undefined;
|
3826
|
+
hoverTooltip?: boolean | undefined;
|
3827
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3828
|
+
}) | ({
|
3829
|
+
type: "click" | "clickByXpath" | "clickBySelector";
|
3830
|
+
value: string[];
|
3831
|
+
} & {} & {
|
3832
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3833
|
+
object?: string | undefined;
|
3834
|
+
hoverTooltip?: boolean | undefined;
|
3835
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3836
|
+
}) | ({
|
3837
|
+
type: "builtin";
|
3838
|
+
value: string;
|
3839
|
+
} & {} & {
|
3840
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3841
|
+
object?: string | undefined;
|
3842
|
+
hoverTooltip?: boolean | undefined;
|
3843
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3844
|
+
}) | ({
|
3845
|
+
type: "webhook";
|
3846
|
+
value: string;
|
3847
|
+
} & {} & {
|
3848
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3849
|
+
object?: string | undefined;
|
3850
|
+
hoverTooltip?: boolean | undefined;
|
3851
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3852
|
+
}) | ({
|
3853
|
+
type: "script";
|
3854
|
+
value: string;
|
3855
|
+
} & {} & {
|
3856
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3857
|
+
object?: string | undefined;
|
3858
|
+
hoverTooltip?: boolean | undefined;
|
3859
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3860
|
+
}) | ({
|
3861
|
+
type: "request";
|
3862
|
+
value: {
|
3863
|
+
method: "head" | "options" | "get" | "delete" | "post" | "put" | "patch";
|
3864
|
+
url: string;
|
3865
|
+
} & {
|
3866
|
+
headers?: {
|
3867
|
+
[key: string]: unknown;
|
3868
|
+
} | undefined;
|
3869
|
+
body?: {
|
3870
|
+
[key: string]: unknown;
|
3871
|
+
} | undefined;
|
3872
|
+
onSend?: string | undefined;
|
3873
|
+
onSuccess?: string | undefined;
|
3874
|
+
onError?: string | undefined;
|
3875
|
+
};
|
3876
|
+
} & {} & {
|
3877
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3878
|
+
object?: string | undefined;
|
3879
|
+
hoverTooltip?: boolean | undefined;
|
3880
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3881
|
+
}) | ({
|
3882
|
+
type: "appcues";
|
3883
|
+
value: string;
|
3884
|
+
} & {} & {
|
3885
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3886
|
+
object?: string | undefined;
|
3887
|
+
hoverTooltip?: boolean | undefined;
|
3888
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3889
|
+
}) | ({
|
3890
|
+
type: "video";
|
3891
|
+
value: string;
|
3892
|
+
} & {} & {
|
3893
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3894
|
+
object?: string | undefined;
|
3895
|
+
hoverTooltip?: boolean | undefined;
|
3896
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3897
|
+
}) | ({
|
3898
|
+
type: "helpdoc";
|
3899
|
+
value: string;
|
3900
|
+
} & {} & {
|
3901
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3902
|
+
object?: string | undefined;
|
3903
|
+
hoverTooltip?: boolean | undefined;
|
3904
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3905
|
+
});
|
3906
|
+
} & {
|
3907
|
+
disabledReason?: string | undefined;
|
3908
|
+
source?: string | undefined;
|
3909
|
+
name?: string | undefined;
|
3910
|
+
last_available?: string | null | undefined;
|
3911
|
+
modified?: string | undefined;
|
3912
|
+
isAsync?: boolean | undefined;
|
3070
3913
|
} & {
|
3071
3914
|
arguments: {
|
3072
3915
|
[x: string]: ({
|
@@ -3090,6 +3933,8 @@ export declare class Command {
|
|
3090
3933
|
allow_create_label?: string | undefined;
|
3091
3934
|
show_in_record_action_list?: boolean | undefined;
|
3092
3935
|
show_in_default_list?: boolean | undefined;
|
3936
|
+
auto_choose?: boolean | undefined;
|
3937
|
+
is_private?: boolean | undefined;
|
3093
3938
|
}) | ({
|
3094
3939
|
type: "set";
|
3095
3940
|
value: string[] | number[] | {
|
@@ -3111,6 +3956,8 @@ export declare class Command {
|
|
3111
3956
|
loaded?: any[] | undefined;
|
3112
3957
|
allow_create?: boolean | undefined;
|
3113
3958
|
allow_create_label?: string | undefined;
|
3959
|
+
auto_choose?: boolean | undefined;
|
3960
|
+
is_private?: boolean | undefined;
|
3114
3961
|
}) | ({
|
3115
3962
|
type: "provided";
|
3116
3963
|
value: "time" | "text";
|
@@ -3131,6 +3978,8 @@ export declare class Command {
|
|
3131
3978
|
dateTimeArgumentTypeId?: number | undefined;
|
3132
3979
|
allow_create?: boolean | undefined;
|
3133
3980
|
allow_create_label?: string | undefined;
|
3981
|
+
auto_choose?: boolean | undefined;
|
3982
|
+
is_private?: boolean | undefined;
|
3134
3983
|
}) | ({
|
3135
3984
|
type: "dependent";
|
3136
3985
|
value: string;
|
@@ -3150,6 +3999,8 @@ export declare class Command {
|
|
3150
3999
|
loaded?: any[] | undefined;
|
3151
4000
|
allow_create?: boolean | undefined;
|
3152
4001
|
allow_create_label?: string | undefined;
|
4002
|
+
auto_choose?: boolean | undefined;
|
4003
|
+
is_private?: boolean | undefined;
|
3153
4004
|
}) | ({
|
3154
4005
|
type: "function";
|
3155
4006
|
value: string;
|
@@ -3169,6 +4020,35 @@ export declare class Command {
|
|
3169
4020
|
loaded?: any[] | undefined;
|
3170
4021
|
allow_create?: boolean | undefined;
|
3171
4022
|
allow_create_label?: string | undefined;
|
4023
|
+
auto_choose?: boolean | undefined;
|
4024
|
+
is_private?: boolean | undefined;
|
4025
|
+
}) | ({
|
4026
|
+
type: "html" | "video";
|
4027
|
+
value: {
|
4028
|
+
source: string;
|
4029
|
+
} & {
|
4030
|
+
title?: string | undefined;
|
4031
|
+
description?: string | undefined;
|
4032
|
+
url?: string | undefined;
|
4033
|
+
};
|
4034
|
+
order_key: number;
|
4035
|
+
} & {
|
4036
|
+
label?: string | undefined;
|
4037
|
+
chosen?: string | number | undefined;
|
4038
|
+
selected?: any[] | undefined;
|
4039
|
+
input_type?: string | undefined;
|
4040
|
+
preselected_key?: string | undefined;
|
4041
|
+
label_field?: string | undefined;
|
4042
|
+
availability_condition?: {
|
4043
|
+
field: string;
|
4044
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
4045
|
+
value: string | undefined;
|
4046
|
+
}[] | undefined;
|
4047
|
+
loaded?: any[] | undefined;
|
4048
|
+
allow_create?: boolean | undefined;
|
4049
|
+
allow_create_label?: string | undefined;
|
4050
|
+
is_private?: boolean | undefined;
|
4051
|
+
auto_choose?: boolean | undefined;
|
3172
4052
|
});
|
3173
4053
|
};
|
3174
4054
|
tags: string[];
|
@@ -3193,27 +4073,20 @@ export declare class Command {
|
|
3193
4073
|
reason?: string | undefined;
|
3194
4074
|
}))[];
|
3195
4075
|
recommend_rules: (({
|
3196
|
-
type: "always";
|
3197
|
-
} & {
|
3198
|
-
operator?: null | undefined;
|
3199
|
-
field?: null | undefined;
|
3200
|
-
value?: null | undefined;
|
3201
|
-
reason?: null | undefined;
|
3202
|
-
}) | ({
|
3203
4076
|
type: "url" | "context" | "element";
|
3204
4077
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3205
4078
|
} & {
|
3206
4079
|
field?: string | undefined;
|
3207
4080
|
value?: string | undefined;
|
3208
4081
|
reason?: string | undefined;
|
3209
|
-
})
|
4082
|
+
}) | ({
|
3210
4083
|
type: "always";
|
3211
4084
|
} & {
|
3212
4085
|
operator?: null | undefined;
|
3213
4086
|
field?: null | undefined;
|
3214
4087
|
value?: null | undefined;
|
3215
4088
|
reason?: null | undefined;
|
3216
|
-
}) | ({
|
4089
|
+
}))[] | (({
|
3217
4090
|
type: "url" | "context" | "element";
|
3218
4091
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3219
4092
|
} & {
|
@@ -3225,7 +4098,17 @@ export declare class Command {
|
|
3225
4098
|
rule_id: number;
|
3226
4099
|
} & {
|
3227
4100
|
reason?: string | undefined;
|
4101
|
+
}) | ({
|
4102
|
+
type: "always";
|
4103
|
+
} & {
|
4104
|
+
operator?: null | undefined;
|
4105
|
+
field?: null | undefined;
|
4106
|
+
value?: null | undefined;
|
4107
|
+
reason?: null | undefined;
|
3228
4108
|
}))[];
|
4109
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
4110
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
4111
|
+
always_recommend: boolean;
|
3229
4112
|
confirm: string;
|
3230
4113
|
shortcut: string[];
|
3231
4114
|
explanation: string;
|
@@ -3253,13 +4136,18 @@ export declare class Command {
|
|
3253
4136
|
shortcut_win: string[];
|
3254
4137
|
hotkey_mac: string;
|
3255
4138
|
hotkey_win: string;
|
3256
|
-
detail: string | {
|
4139
|
+
detail: string | ({
|
3257
4140
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3258
4141
|
value: string;
|
3259
|
-
}
|
4142
|
+
} & {
|
4143
|
+
position?: "inline" | "popover" | undefined;
|
4144
|
+
}) | (string | ({
|
3260
4145
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3261
4146
|
value: string;
|
3262
|
-
}
|
4147
|
+
} & {
|
4148
|
+
position?: "inline" | "popover" | undefined;
|
4149
|
+
}))[] | null;
|
4150
|
+
next_steps: (string | number)[];
|
3263
4151
|
} & {
|
3264
4152
|
third_party_source?: string | null | undefined;
|
3265
4153
|
third_party_id?: string | null | undefined;
|
@@ -3353,6 +4241,22 @@ export declare class Command {
|
|
3353
4241
|
object?: string | undefined;
|
3354
4242
|
hoverTooltip?: boolean | undefined;
|
3355
4243
|
operation?: "self" | "router" | "blank" | undefined;
|
4244
|
+
}) | ({
|
4245
|
+
type: "video";
|
4246
|
+
value: string;
|
4247
|
+
} & {} & {
|
4248
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
4249
|
+
object?: string | undefined;
|
4250
|
+
hoverTooltip?: boolean | undefined;
|
4251
|
+
operation?: "self" | "router" | "blank" | undefined;
|
4252
|
+
}) | ({
|
4253
|
+
type: "helpdoc";
|
4254
|
+
value: string;
|
4255
|
+
} & {} & {
|
4256
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
4257
|
+
object?: string | undefined;
|
4258
|
+
hoverTooltip?: boolean | undefined;
|
4259
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3356
4260
|
});
|
3357
4261
|
} & {
|
3358
4262
|
disabledReason?: string | undefined;
|
@@ -3360,6 +4264,7 @@ export declare class Command {
|
|
3360
4264
|
name?: string | undefined;
|
3361
4265
|
last_available?: string | null | undefined;
|
3362
4266
|
modified?: string | undefined;
|
4267
|
+
isAsync?: boolean | undefined;
|
3363
4268
|
} & {
|
3364
4269
|
arguments: {
|
3365
4270
|
[x: string]: ({
|
@@ -3383,6 +4288,8 @@ export declare class Command {
|
|
3383
4288
|
allow_create_label?: string | undefined;
|
3384
4289
|
show_in_record_action_list?: boolean | undefined;
|
3385
4290
|
show_in_default_list?: boolean | undefined;
|
4291
|
+
auto_choose?: boolean | undefined;
|
4292
|
+
is_private?: boolean | undefined;
|
3386
4293
|
}) | ({
|
3387
4294
|
type: "set";
|
3388
4295
|
value: string[] | number[] | {
|
@@ -3404,6 +4311,8 @@ export declare class Command {
|
|
3404
4311
|
loaded?: any[] | undefined;
|
3405
4312
|
allow_create?: boolean | undefined;
|
3406
4313
|
allow_create_label?: string | undefined;
|
4314
|
+
auto_choose?: boolean | undefined;
|
4315
|
+
is_private?: boolean | undefined;
|
3407
4316
|
}) | ({
|
3408
4317
|
type: "provided";
|
3409
4318
|
value: "time" | "text";
|
@@ -3424,6 +4333,8 @@ export declare class Command {
|
|
3424
4333
|
dateTimeArgumentTypeId?: number | undefined;
|
3425
4334
|
allow_create?: boolean | undefined;
|
3426
4335
|
allow_create_label?: string | undefined;
|
4336
|
+
auto_choose?: boolean | undefined;
|
4337
|
+
is_private?: boolean | undefined;
|
3427
4338
|
}) | ({
|
3428
4339
|
type: "dependent";
|
3429
4340
|
value: string;
|
@@ -3443,6 +4354,8 @@ export declare class Command {
|
|
3443
4354
|
loaded?: any[] | undefined;
|
3444
4355
|
allow_create?: boolean | undefined;
|
3445
4356
|
allow_create_label?: string | undefined;
|
4357
|
+
auto_choose?: boolean | undefined;
|
4358
|
+
is_private?: boolean | undefined;
|
3446
4359
|
}) | ({
|
3447
4360
|
type: "function";
|
3448
4361
|
value: string;
|
@@ -3462,6 +4375,35 @@ export declare class Command {
|
|
3462
4375
|
loaded?: any[] | undefined;
|
3463
4376
|
allow_create?: boolean | undefined;
|
3464
4377
|
allow_create_label?: string | undefined;
|
4378
|
+
auto_choose?: boolean | undefined;
|
4379
|
+
is_private?: boolean | undefined;
|
4380
|
+
}) | ({
|
4381
|
+
type: "html" | "video";
|
4382
|
+
value: {
|
4383
|
+
source: string;
|
4384
|
+
} & {
|
4385
|
+
title?: string | undefined;
|
4386
|
+
description?: string | undefined;
|
4387
|
+
url?: string | undefined;
|
4388
|
+
};
|
4389
|
+
order_key: number;
|
4390
|
+
} & {
|
4391
|
+
label?: string | undefined;
|
4392
|
+
chosen?: string | number | undefined;
|
4393
|
+
selected?: any[] | undefined;
|
4394
|
+
input_type?: string | undefined;
|
4395
|
+
preselected_key?: string | undefined;
|
4396
|
+
label_field?: string | undefined;
|
4397
|
+
availability_condition?: {
|
4398
|
+
field: string;
|
4399
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
4400
|
+
value: string | undefined;
|
4401
|
+
}[] | undefined;
|
4402
|
+
loaded?: any[] | undefined;
|
4403
|
+
allow_create?: boolean | undefined;
|
4404
|
+
allow_create_label?: string | undefined;
|
4405
|
+
is_private?: boolean | undefined;
|
4406
|
+
auto_choose?: boolean | undefined;
|
3465
4407
|
});
|
3466
4408
|
};
|
3467
4409
|
tags: string[];
|
@@ -3486,27 +4428,20 @@ export declare class Command {
|
|
3486
4428
|
reason?: string | undefined;
|
3487
4429
|
}))[];
|
3488
4430
|
recommend_rules: (({
|
3489
|
-
type: "always";
|
3490
|
-
} & {
|
3491
|
-
operator?: null | undefined;
|
3492
|
-
field?: null | undefined;
|
3493
|
-
value?: null | undefined;
|
3494
|
-
reason?: null | undefined;
|
3495
|
-
}) | ({
|
3496
4431
|
type: "url" | "context" | "element";
|
3497
4432
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3498
4433
|
} & {
|
3499
4434
|
field?: string | undefined;
|
3500
4435
|
value?: string | undefined;
|
3501
4436
|
reason?: string | undefined;
|
3502
|
-
})
|
4437
|
+
}) | ({
|
3503
4438
|
type: "always";
|
3504
4439
|
} & {
|
3505
4440
|
operator?: null | undefined;
|
3506
4441
|
field?: null | undefined;
|
3507
4442
|
value?: null | undefined;
|
3508
4443
|
reason?: null | undefined;
|
3509
|
-
}) | ({
|
4444
|
+
}))[] | (({
|
3510
4445
|
type: "url" | "context" | "element";
|
3511
4446
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3512
4447
|
} & {
|
@@ -3518,7 +4453,17 @@ export declare class Command {
|
|
3518
4453
|
rule_id: number;
|
3519
4454
|
} & {
|
3520
4455
|
reason?: string | undefined;
|
4456
|
+
}) | ({
|
4457
|
+
type: "always";
|
4458
|
+
} & {
|
4459
|
+
operator?: null | undefined;
|
4460
|
+
field?: null | undefined;
|
4461
|
+
value?: null | undefined;
|
4462
|
+
reason?: null | undefined;
|
3521
4463
|
}))[];
|
4464
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
4465
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
4466
|
+
always_recommend: boolean;
|
3522
4467
|
confirm: string;
|
3523
4468
|
shortcut: string[];
|
3524
4469
|
explanation: string;
|
@@ -3546,13 +4491,18 @@ export declare class Command {
|
|
3546
4491
|
shortcut_win: string[];
|
3547
4492
|
hotkey_mac: string;
|
3548
4493
|
hotkey_win: string;
|
3549
|
-
detail: string | {
|
4494
|
+
detail: string | ({
|
3550
4495
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3551
4496
|
value: string;
|
3552
|
-
}
|
4497
|
+
} & {
|
4498
|
+
position?: "inline" | "popover" | undefined;
|
4499
|
+
}) | (string | ({
|
3553
4500
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3554
4501
|
value: string;
|
3555
|
-
}
|
4502
|
+
} & {
|
4503
|
+
position?: "inline" | "popover" | undefined;
|
4504
|
+
}))[] | null;
|
4505
|
+
next_steps: (string | number)[];
|
3556
4506
|
} & {
|
3557
4507
|
third_party_source?: string | null | undefined;
|
3558
4508
|
third_party_id?: string | null | undefined;
|
@@ -3645,6 +4595,22 @@ export declare class Command {
|
|
3645
4595
|
object?: string | undefined;
|
3646
4596
|
hoverTooltip?: boolean | undefined;
|
3647
4597
|
operation?: "self" | "router" | "blank" | undefined;
|
4598
|
+
}) | ({
|
4599
|
+
type: "video";
|
4600
|
+
value: string;
|
4601
|
+
} & {} & {
|
4602
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
4603
|
+
object?: string | undefined;
|
4604
|
+
hoverTooltip?: boolean | undefined;
|
4605
|
+
operation?: "self" | "router" | "blank" | undefined;
|
4606
|
+
}) | ({
|
4607
|
+
type: "helpdoc";
|
4608
|
+
value: string;
|
4609
|
+
} & {} & {
|
4610
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
4611
|
+
object?: string | undefined;
|
4612
|
+
hoverTooltip?: boolean | undefined;
|
4613
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3648
4614
|
});
|
3649
4615
|
} & {
|
3650
4616
|
disabledReason?: string | undefined;
|
@@ -3652,6 +4618,7 @@ export declare class Command {
|
|
3652
4618
|
name?: string | undefined;
|
3653
4619
|
last_available?: string | null | undefined;
|
3654
4620
|
modified?: string | undefined;
|
4621
|
+
isAsync?: boolean | undefined;
|
3655
4622
|
} & {
|
3656
4623
|
arguments: {
|
3657
4624
|
[x: string]: ({
|
@@ -3675,6 +4642,8 @@ export declare class Command {
|
|
3675
4642
|
allow_create_label?: string | undefined;
|
3676
4643
|
show_in_record_action_list?: boolean | undefined;
|
3677
4644
|
show_in_default_list?: boolean | undefined;
|
4645
|
+
auto_choose?: boolean | undefined;
|
4646
|
+
is_private?: boolean | undefined;
|
3678
4647
|
}) | ({
|
3679
4648
|
type: "set";
|
3680
4649
|
value: string[] | number[] | {
|
@@ -3696,6 +4665,8 @@ export declare class Command {
|
|
3696
4665
|
loaded?: any[] | undefined;
|
3697
4666
|
allow_create?: boolean | undefined;
|
3698
4667
|
allow_create_label?: string | undefined;
|
4668
|
+
auto_choose?: boolean | undefined;
|
4669
|
+
is_private?: boolean | undefined;
|
3699
4670
|
}) | ({
|
3700
4671
|
type: "provided";
|
3701
4672
|
value: "time" | "text";
|
@@ -3716,6 +4687,8 @@ export declare class Command {
|
|
3716
4687
|
dateTimeArgumentTypeId?: number | undefined;
|
3717
4688
|
allow_create?: boolean | undefined;
|
3718
4689
|
allow_create_label?: string | undefined;
|
4690
|
+
auto_choose?: boolean | undefined;
|
4691
|
+
is_private?: boolean | undefined;
|
3719
4692
|
}) | ({
|
3720
4693
|
type: "dependent";
|
3721
4694
|
value: string;
|
@@ -3735,6 +4708,8 @@ export declare class Command {
|
|
3735
4708
|
loaded?: any[] | undefined;
|
3736
4709
|
allow_create?: boolean | undefined;
|
3737
4710
|
allow_create_label?: string | undefined;
|
4711
|
+
auto_choose?: boolean | undefined;
|
4712
|
+
is_private?: boolean | undefined;
|
3738
4713
|
}) | ({
|
3739
4714
|
type: "function";
|
3740
4715
|
value: string;
|
@@ -3754,6 +4729,35 @@ export declare class Command {
|
|
3754
4729
|
loaded?: any[] | undefined;
|
3755
4730
|
allow_create?: boolean | undefined;
|
3756
4731
|
allow_create_label?: string | undefined;
|
4732
|
+
auto_choose?: boolean | undefined;
|
4733
|
+
is_private?: boolean | undefined;
|
4734
|
+
}) | ({
|
4735
|
+
type: "html" | "video";
|
4736
|
+
value: {
|
4737
|
+
source: string;
|
4738
|
+
} & {
|
4739
|
+
title?: string | undefined;
|
4740
|
+
description?: string | undefined;
|
4741
|
+
url?: string | undefined;
|
4742
|
+
};
|
4743
|
+
order_key: number;
|
4744
|
+
} & {
|
4745
|
+
label?: string | undefined;
|
4746
|
+
chosen?: string | number | undefined;
|
4747
|
+
selected?: any[] | undefined;
|
4748
|
+
input_type?: string | undefined;
|
4749
|
+
preselected_key?: string | undefined;
|
4750
|
+
label_field?: string | undefined;
|
4751
|
+
availability_condition?: {
|
4752
|
+
field: string;
|
4753
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
4754
|
+
value: string | undefined;
|
4755
|
+
}[] | undefined;
|
4756
|
+
loaded?: any[] | undefined;
|
4757
|
+
allow_create?: boolean | undefined;
|
4758
|
+
allow_create_label?: string | undefined;
|
4759
|
+
is_private?: boolean | undefined;
|
4760
|
+
auto_choose?: boolean | undefined;
|
3757
4761
|
});
|
3758
4762
|
};
|
3759
4763
|
tags: string[];
|
@@ -3778,27 +4782,20 @@ export declare class Command {
|
|
3778
4782
|
reason?: string | undefined;
|
3779
4783
|
}))[];
|
3780
4784
|
recommend_rules: (({
|
3781
|
-
type: "always";
|
3782
|
-
} & {
|
3783
|
-
operator?: null | undefined;
|
3784
|
-
field?: null | undefined;
|
3785
|
-
value?: null | undefined;
|
3786
|
-
reason?: null | undefined;
|
3787
|
-
}) | ({
|
3788
4785
|
type: "url" | "context" | "element";
|
3789
4786
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3790
4787
|
} & {
|
3791
4788
|
field?: string | undefined;
|
3792
4789
|
value?: string | undefined;
|
3793
4790
|
reason?: string | undefined;
|
3794
|
-
})
|
4791
|
+
}) | ({
|
3795
4792
|
type: "always";
|
3796
4793
|
} & {
|
3797
4794
|
operator?: null | undefined;
|
3798
4795
|
field?: null | undefined;
|
3799
4796
|
value?: null | undefined;
|
3800
4797
|
reason?: null | undefined;
|
3801
|
-
}) | ({
|
4798
|
+
}))[] | (({
|
3802
4799
|
type: "url" | "context" | "element";
|
3803
4800
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
3804
4801
|
} & {
|
@@ -3810,7 +4807,17 @@ export declare class Command {
|
|
3810
4807
|
rule_id: number;
|
3811
4808
|
} & {
|
3812
4809
|
reason?: string | undefined;
|
4810
|
+
}) | ({
|
4811
|
+
type: "always";
|
4812
|
+
} & {
|
4813
|
+
operator?: null | undefined;
|
4814
|
+
field?: null | undefined;
|
4815
|
+
value?: null | undefined;
|
4816
|
+
reason?: null | undefined;
|
3813
4817
|
}))[];
|
4818
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
4819
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
4820
|
+
always_recommend: boolean;
|
3814
4821
|
confirm: string;
|
3815
4822
|
shortcut: string[];
|
3816
4823
|
explanation: string;
|
@@ -3838,13 +4845,18 @@ export declare class Command {
|
|
3838
4845
|
shortcut_win: string[];
|
3839
4846
|
hotkey_mac: string;
|
3840
4847
|
hotkey_win: string;
|
3841
|
-
detail: string | {
|
4848
|
+
detail: string | ({
|
3842
4849
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3843
4850
|
value: string;
|
3844
|
-
}
|
4851
|
+
} & {
|
4852
|
+
position?: "inline" | "popover" | undefined;
|
4853
|
+
}) | (string | ({
|
3845
4854
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3846
4855
|
value: string;
|
3847
|
-
}
|
4856
|
+
} & {
|
4857
|
+
position?: "inline" | "popover" | undefined;
|
4858
|
+
}))[] | null;
|
4859
|
+
next_steps: (string | number)[];
|
3848
4860
|
} & {
|
3849
4861
|
third_party_source?: string | null | undefined;
|
3850
4862
|
third_party_id?: string | null | undefined;
|
@@ -3938,6 +4950,22 @@ export declare class Command {
|
|
3938
4950
|
object?: string | undefined;
|
3939
4951
|
hoverTooltip?: boolean | undefined;
|
3940
4952
|
operation?: "self" | "router" | "blank" | undefined;
|
4953
|
+
}) | ({
|
4954
|
+
type: "video";
|
4955
|
+
value: string;
|
4956
|
+
} & {} & {
|
4957
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
4958
|
+
object?: string | undefined;
|
4959
|
+
hoverTooltip?: boolean | undefined;
|
4960
|
+
operation?: "self" | "router" | "blank" | undefined;
|
4961
|
+
}) | ({
|
4962
|
+
type: "helpdoc";
|
4963
|
+
value: string;
|
4964
|
+
} & {} & {
|
4965
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
4966
|
+
object?: string | undefined;
|
4967
|
+
hoverTooltip?: boolean | undefined;
|
4968
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3941
4969
|
});
|
3942
4970
|
} & {
|
3943
4971
|
disabledReason?: string | undefined;
|
@@ -3945,6 +4973,7 @@ export declare class Command {
|
|
3945
4973
|
name?: string | undefined;
|
3946
4974
|
last_available?: string | null | undefined;
|
3947
4975
|
modified?: string | undefined;
|
4976
|
+
isAsync?: boolean | undefined;
|
3948
4977
|
} & {
|
3949
4978
|
arguments: {
|
3950
4979
|
[x: string]: ({
|
@@ -3968,6 +4997,8 @@ export declare class Command {
|
|
3968
4997
|
allow_create_label?: string | undefined;
|
3969
4998
|
show_in_record_action_list?: boolean | undefined;
|
3970
4999
|
show_in_default_list?: boolean | undefined;
|
5000
|
+
auto_choose?: boolean | undefined;
|
5001
|
+
is_private?: boolean | undefined;
|
3971
5002
|
}) | ({
|
3972
5003
|
type: "set";
|
3973
5004
|
value: string[] | number[] | {
|
@@ -3989,6 +5020,8 @@ export declare class Command {
|
|
3989
5020
|
loaded?: any[] | undefined;
|
3990
5021
|
allow_create?: boolean | undefined;
|
3991
5022
|
allow_create_label?: string | undefined;
|
5023
|
+
auto_choose?: boolean | undefined;
|
5024
|
+
is_private?: boolean | undefined;
|
3992
5025
|
}) | ({
|
3993
5026
|
type: "provided";
|
3994
5027
|
value: "time" | "text";
|
@@ -4009,6 +5042,8 @@ export declare class Command {
|
|
4009
5042
|
dateTimeArgumentTypeId?: number | undefined;
|
4010
5043
|
allow_create?: boolean | undefined;
|
4011
5044
|
allow_create_label?: string | undefined;
|
5045
|
+
auto_choose?: boolean | undefined;
|
5046
|
+
is_private?: boolean | undefined;
|
4012
5047
|
}) | ({
|
4013
5048
|
type: "dependent";
|
4014
5049
|
value: string;
|
@@ -4028,6 +5063,8 @@ export declare class Command {
|
|
4028
5063
|
loaded?: any[] | undefined;
|
4029
5064
|
allow_create?: boolean | undefined;
|
4030
5065
|
allow_create_label?: string | undefined;
|
5066
|
+
auto_choose?: boolean | undefined;
|
5067
|
+
is_private?: boolean | undefined;
|
4031
5068
|
}) | ({
|
4032
5069
|
type: "function";
|
4033
5070
|
value: string;
|
@@ -4047,6 +5084,35 @@ export declare class Command {
|
|
4047
5084
|
loaded?: any[] | undefined;
|
4048
5085
|
allow_create?: boolean | undefined;
|
4049
5086
|
allow_create_label?: string | undefined;
|
5087
|
+
auto_choose?: boolean | undefined;
|
5088
|
+
is_private?: boolean | undefined;
|
5089
|
+
}) | ({
|
5090
|
+
type: "html" | "video";
|
5091
|
+
value: {
|
5092
|
+
source: string;
|
5093
|
+
} & {
|
5094
|
+
title?: string | undefined;
|
5095
|
+
description?: string | undefined;
|
5096
|
+
url?: string | undefined;
|
5097
|
+
};
|
5098
|
+
order_key: number;
|
5099
|
+
} & {
|
5100
|
+
label?: string | undefined;
|
5101
|
+
chosen?: string | number | undefined;
|
5102
|
+
selected?: any[] | undefined;
|
5103
|
+
input_type?: string | undefined;
|
5104
|
+
preselected_key?: string | undefined;
|
5105
|
+
label_field?: string | undefined;
|
5106
|
+
availability_condition?: {
|
5107
|
+
field: string;
|
5108
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
5109
|
+
value: string | undefined;
|
5110
|
+
}[] | undefined;
|
5111
|
+
loaded?: any[] | undefined;
|
5112
|
+
allow_create?: boolean | undefined;
|
5113
|
+
allow_create_label?: string | undefined;
|
5114
|
+
is_private?: boolean | undefined;
|
5115
|
+
auto_choose?: boolean | undefined;
|
4050
5116
|
});
|
4051
5117
|
};
|
4052
5118
|
tags: string[];
|
@@ -4071,27 +5137,20 @@ export declare class Command {
|
|
4071
5137
|
reason?: string | undefined;
|
4072
5138
|
}))[];
|
4073
5139
|
recommend_rules: (({
|
4074
|
-
type: "always";
|
4075
|
-
} & {
|
4076
|
-
operator?: null | undefined;
|
4077
|
-
field?: null | undefined;
|
4078
|
-
value?: null | undefined;
|
4079
|
-
reason?: null | undefined;
|
4080
|
-
}) | ({
|
4081
5140
|
type: "url" | "context" | "element";
|
4082
5141
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4083
5142
|
} & {
|
4084
5143
|
field?: string | undefined;
|
4085
5144
|
value?: string | undefined;
|
4086
5145
|
reason?: string | undefined;
|
4087
|
-
})
|
5146
|
+
}) | ({
|
4088
5147
|
type: "always";
|
4089
5148
|
} & {
|
4090
5149
|
operator?: null | undefined;
|
4091
5150
|
field?: null | undefined;
|
4092
5151
|
value?: null | undefined;
|
4093
5152
|
reason?: null | undefined;
|
4094
|
-
}) | ({
|
5153
|
+
}))[] | (({
|
4095
5154
|
type: "url" | "context" | "element";
|
4096
5155
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4097
5156
|
} & {
|
@@ -4103,7 +5162,17 @@ export declare class Command {
|
|
4103
5162
|
rule_id: number;
|
4104
5163
|
} & {
|
4105
5164
|
reason?: string | undefined;
|
5165
|
+
}) | ({
|
5166
|
+
type: "always";
|
5167
|
+
} & {
|
5168
|
+
operator?: null | undefined;
|
5169
|
+
field?: null | undefined;
|
5170
|
+
value?: null | undefined;
|
5171
|
+
reason?: null | undefined;
|
4106
5172
|
}))[];
|
5173
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
5174
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
5175
|
+
always_recommend: boolean;
|
4107
5176
|
confirm: string;
|
4108
5177
|
shortcut: string[];
|
4109
5178
|
explanation: string;
|
@@ -4131,13 +5200,18 @@ export declare class Command {
|
|
4131
5200
|
shortcut_win: string[];
|
4132
5201
|
hotkey_mac: string;
|
4133
5202
|
hotkey_win: string;
|
4134
|
-
detail: string | {
|
5203
|
+
detail: string | ({
|
4135
5204
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4136
5205
|
value: string;
|
4137
|
-
}
|
5206
|
+
} & {
|
5207
|
+
position?: "inline" | "popover" | undefined;
|
5208
|
+
}) | (string | ({
|
4138
5209
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4139
5210
|
value: string;
|
4140
|
-
}
|
5211
|
+
} & {
|
5212
|
+
position?: "inline" | "popover" | undefined;
|
5213
|
+
}))[] | null;
|
5214
|
+
next_steps: (string | number)[];
|
4141
5215
|
} & {
|
4142
5216
|
third_party_source?: string | null | undefined;
|
4143
5217
|
third_party_id?: string | null | undefined;
|
@@ -4230,6 +5304,22 @@ export declare class Command {
|
|
4230
5304
|
object?: string | undefined;
|
4231
5305
|
hoverTooltip?: boolean | undefined;
|
4232
5306
|
operation?: "self" | "router" | "blank" | undefined;
|
5307
|
+
}) | ({
|
5308
|
+
type: "video";
|
5309
|
+
value: string;
|
5310
|
+
} & {} & {
|
5311
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
5312
|
+
object?: string | undefined;
|
5313
|
+
hoverTooltip?: boolean | undefined;
|
5314
|
+
operation?: "self" | "router" | "blank" | undefined;
|
5315
|
+
}) | ({
|
5316
|
+
type: "helpdoc";
|
5317
|
+
value: string;
|
5318
|
+
} & {} & {
|
5319
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
5320
|
+
object?: string | undefined;
|
5321
|
+
hoverTooltip?: boolean | undefined;
|
5322
|
+
operation?: "self" | "router" | "blank" | undefined;
|
4233
5323
|
});
|
4234
5324
|
} & {
|
4235
5325
|
disabledReason?: string | undefined;
|
@@ -4237,6 +5327,7 @@ export declare class Command {
|
|
4237
5327
|
name?: string | undefined;
|
4238
5328
|
last_available?: string | null | undefined;
|
4239
5329
|
modified?: string | undefined;
|
5330
|
+
isAsync?: boolean | undefined;
|
4240
5331
|
} & {
|
4241
5332
|
arguments: {
|
4242
5333
|
[x: string]: ({
|
@@ -4260,6 +5351,8 @@ export declare class Command {
|
|
4260
5351
|
allow_create_label?: string | undefined;
|
4261
5352
|
show_in_record_action_list?: boolean | undefined;
|
4262
5353
|
show_in_default_list?: boolean | undefined;
|
5354
|
+
auto_choose?: boolean | undefined;
|
5355
|
+
is_private?: boolean | undefined;
|
4263
5356
|
}) | ({
|
4264
5357
|
type: "set";
|
4265
5358
|
value: string[] | number[] | {
|
@@ -4281,6 +5374,8 @@ export declare class Command {
|
|
4281
5374
|
loaded?: any[] | undefined;
|
4282
5375
|
allow_create?: boolean | undefined;
|
4283
5376
|
allow_create_label?: string | undefined;
|
5377
|
+
auto_choose?: boolean | undefined;
|
5378
|
+
is_private?: boolean | undefined;
|
4284
5379
|
}) | ({
|
4285
5380
|
type: "provided";
|
4286
5381
|
value: "time" | "text";
|
@@ -4301,6 +5396,8 @@ export declare class Command {
|
|
4301
5396
|
dateTimeArgumentTypeId?: number | undefined;
|
4302
5397
|
allow_create?: boolean | undefined;
|
4303
5398
|
allow_create_label?: string | undefined;
|
5399
|
+
auto_choose?: boolean | undefined;
|
5400
|
+
is_private?: boolean | undefined;
|
4304
5401
|
}) | ({
|
4305
5402
|
type: "dependent";
|
4306
5403
|
value: string;
|
@@ -4320,6 +5417,8 @@ export declare class Command {
|
|
4320
5417
|
loaded?: any[] | undefined;
|
4321
5418
|
allow_create?: boolean | undefined;
|
4322
5419
|
allow_create_label?: string | undefined;
|
5420
|
+
auto_choose?: boolean | undefined;
|
5421
|
+
is_private?: boolean | undefined;
|
4323
5422
|
}) | ({
|
4324
5423
|
type: "function";
|
4325
5424
|
value: string;
|
@@ -4339,6 +5438,35 @@ export declare class Command {
|
|
4339
5438
|
loaded?: any[] | undefined;
|
4340
5439
|
allow_create?: boolean | undefined;
|
4341
5440
|
allow_create_label?: string | undefined;
|
5441
|
+
auto_choose?: boolean | undefined;
|
5442
|
+
is_private?: boolean | undefined;
|
5443
|
+
}) | ({
|
5444
|
+
type: "html" | "video";
|
5445
|
+
value: {
|
5446
|
+
source: string;
|
5447
|
+
} & {
|
5448
|
+
title?: string | undefined;
|
5449
|
+
description?: string | undefined;
|
5450
|
+
url?: string | undefined;
|
5451
|
+
};
|
5452
|
+
order_key: number;
|
5453
|
+
} & {
|
5454
|
+
label?: string | undefined;
|
5455
|
+
chosen?: string | number | undefined;
|
5456
|
+
selected?: any[] | undefined;
|
5457
|
+
input_type?: string | undefined;
|
5458
|
+
preselected_key?: string | undefined;
|
5459
|
+
label_field?: string | undefined;
|
5460
|
+
availability_condition?: {
|
5461
|
+
field: string;
|
5462
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
5463
|
+
value: string | undefined;
|
5464
|
+
}[] | undefined;
|
5465
|
+
loaded?: any[] | undefined;
|
5466
|
+
allow_create?: boolean | undefined;
|
5467
|
+
allow_create_label?: string | undefined;
|
5468
|
+
is_private?: boolean | undefined;
|
5469
|
+
auto_choose?: boolean | undefined;
|
4342
5470
|
});
|
4343
5471
|
};
|
4344
5472
|
tags: string[];
|
@@ -4363,27 +5491,20 @@ export declare class Command {
|
|
4363
5491
|
reason?: string | undefined;
|
4364
5492
|
}))[];
|
4365
5493
|
recommend_rules: (({
|
4366
|
-
type: "always";
|
4367
|
-
} & {
|
4368
|
-
operator?: null | undefined;
|
4369
|
-
field?: null | undefined;
|
4370
|
-
value?: null | undefined;
|
4371
|
-
reason?: null | undefined;
|
4372
|
-
}) | ({
|
4373
5494
|
type: "url" | "context" | "element";
|
4374
5495
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4375
5496
|
} & {
|
4376
5497
|
field?: string | undefined;
|
4377
5498
|
value?: string | undefined;
|
4378
5499
|
reason?: string | undefined;
|
4379
|
-
})
|
5500
|
+
}) | ({
|
4380
5501
|
type: "always";
|
4381
5502
|
} & {
|
4382
5503
|
operator?: null | undefined;
|
4383
5504
|
field?: null | undefined;
|
4384
5505
|
value?: null | undefined;
|
4385
5506
|
reason?: null | undefined;
|
4386
|
-
}) | ({
|
5507
|
+
}))[] | (({
|
4387
5508
|
type: "url" | "context" | "element";
|
4388
5509
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4389
5510
|
} & {
|
@@ -4395,7 +5516,17 @@ export declare class Command {
|
|
4395
5516
|
rule_id: number;
|
4396
5517
|
} & {
|
4397
5518
|
reason?: string | undefined;
|
5519
|
+
}) | ({
|
5520
|
+
type: "always";
|
5521
|
+
} & {
|
5522
|
+
operator?: null | undefined;
|
5523
|
+
field?: null | undefined;
|
5524
|
+
value?: null | undefined;
|
5525
|
+
reason?: null | undefined;
|
4398
5526
|
}))[];
|
5527
|
+
availability_expression: import("./helpers/rules").RuleExpression;
|
5528
|
+
recommend_expression: import("./helpers/rules").RuleExpression;
|
5529
|
+
always_recommend: boolean;
|
4399
5530
|
confirm: string;
|
4400
5531
|
shortcut: string[];
|
4401
5532
|
explanation: string;
|
@@ -4423,13 +5554,18 @@ export declare class Command {
|
|
4423
5554
|
shortcut_win: string[];
|
4424
5555
|
hotkey_mac: string;
|
4425
5556
|
hotkey_win: string;
|
4426
|
-
detail: string | {
|
5557
|
+
detail: string | ({
|
4427
5558
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4428
5559
|
value: string;
|
4429
|
-
}
|
5560
|
+
} & {
|
5561
|
+
position?: "inline" | "popover" | undefined;
|
5562
|
+
}) | (string | ({
|
4430
5563
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4431
5564
|
value: string;
|
4432
|
-
}
|
5565
|
+
} & {
|
5566
|
+
position?: "inline" | "popover" | undefined;
|
5567
|
+
}))[] | null;
|
5568
|
+
next_steps: (string | number)[];
|
4433
5569
|
} & {
|
4434
5570
|
third_party_source?: string | null | undefined;
|
4435
5571
|
third_party_id?: string | null | undefined;
|
@@ -4525,6 +5661,22 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4525
5661
|
object: t.StringC;
|
4526
5662
|
hoverTooltip: t.BooleanC;
|
4527
5663
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
5664
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
5665
|
+
type: t.LiteralC<"video">;
|
5666
|
+
value: t.StringC;
|
5667
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
5668
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
5669
|
+
object: t.StringC;
|
5670
|
+
hoverTooltip: t.BooleanC;
|
5671
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
5672
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
5673
|
+
type: t.LiteralC<"helpdoc">;
|
5674
|
+
value: t.StringC;
|
5675
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
5676
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
5677
|
+
object: t.StringC;
|
5678
|
+
hoverTooltip: t.BooleanC;
|
5679
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
4528
5680
|
}>]>]>]>;
|
4529
5681
|
}>, t.PartialC<{
|
4530
5682
|
disabledReason: t.StringC;
|
@@ -4532,6 +5684,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4532
5684
|
name: t.StringC;
|
4533
5685
|
last_available: t.UnionC<[t.StringC, t.NullC]>;
|
4534
5686
|
modified: t.StringC;
|
5687
|
+
isAsync: t.BooleanC;
|
4535
5688
|
}>]>, t.TypeC<{
|
4536
5689
|
arguments: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
|
4537
5690
|
type: t.LiteralC<"context">;
|
@@ -4554,6 +5707,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4554
5707
|
allow_create_label: t.StringC;
|
4555
5708
|
show_in_record_action_list: t.BooleanC;
|
4556
5709
|
show_in_default_list: t.BooleanC;
|
5710
|
+
auto_choose: t.BooleanC;
|
5711
|
+
is_private: t.BooleanC;
|
4557
5712
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4558
5713
|
type: t.LiteralC<"set">;
|
4559
5714
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -4573,6 +5728,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4573
5728
|
loaded: t.ArrayC<t.AnyC>;
|
4574
5729
|
allow_create: t.BooleanC;
|
4575
5730
|
allow_create_label: t.StringC;
|
5731
|
+
auto_choose: t.BooleanC;
|
5732
|
+
is_private: t.BooleanC;
|
4576
5733
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4577
5734
|
type: t.LiteralC<"provided">;
|
4578
5735
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -4593,6 +5750,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4593
5750
|
dateTimeArgumentTypeId: t.NumberC;
|
4594
5751
|
allow_create: t.BooleanC;
|
4595
5752
|
allow_create_label: t.StringC;
|
5753
|
+
auto_choose: t.BooleanC;
|
5754
|
+
is_private: t.BooleanC;
|
4596
5755
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4597
5756
|
type: t.LiteralC<"dependent">;
|
4598
5757
|
value: t.StringC;
|
@@ -4612,6 +5771,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4612
5771
|
loaded: t.ArrayC<t.AnyC>;
|
4613
5772
|
allow_create: t.BooleanC;
|
4614
5773
|
allow_create_label: t.StringC;
|
5774
|
+
auto_choose: t.BooleanC;
|
5775
|
+
is_private: t.BooleanC;
|
4615
5776
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4616
5777
|
type: t.LiteralC<"function">;
|
4617
5778
|
value: t.StringC;
|
@@ -4631,6 +5792,35 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4631
5792
|
loaded: t.ArrayC<t.AnyC>;
|
4632
5793
|
allow_create: t.BooleanC;
|
4633
5794
|
allow_create_label: t.StringC;
|
5795
|
+
auto_choose: t.BooleanC;
|
5796
|
+
is_private: t.BooleanC;
|
5797
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
5798
|
+
type: t.UnionC<[t.LiteralC<"video">, t.LiteralC<"html">]>;
|
5799
|
+
value: t.IntersectionC<[t.TypeC<{
|
5800
|
+
source: t.StringC;
|
5801
|
+
}>, t.PartialC<{
|
5802
|
+
title: t.StringC;
|
5803
|
+
description: t.StringC;
|
5804
|
+
url: t.StringC;
|
5805
|
+
}>]>;
|
5806
|
+
order_key: t.NumberC;
|
5807
|
+
}>, t.PartialC<{
|
5808
|
+
label: t.StringC;
|
5809
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
5810
|
+
selected: t.ArrayC<t.AnyC>;
|
5811
|
+
input_type: t.StringC;
|
5812
|
+
preselected_key: t.StringC;
|
5813
|
+
label_field: t.StringC;
|
5814
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
5815
|
+
field: t.StringC;
|
5816
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
5817
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
5818
|
+
}>>;
|
5819
|
+
loaded: t.ArrayC<t.AnyC>;
|
5820
|
+
allow_create: t.BooleanC;
|
5821
|
+
allow_create_label: t.StringC;
|
5822
|
+
is_private: t.BooleanC;
|
5823
|
+
auto_choose: t.BooleanC;
|
4634
5824
|
}>]>]>>;
|
4635
5825
|
tags: t.ArrayC<t.StringC>;
|
4636
5826
|
availability_rules: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
@@ -4692,6 +5882,9 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4692
5882
|
value: t.StringC;
|
4693
5883
|
reason: t.StringC;
|
4694
5884
|
}>]>]>>;
|
5885
|
+
availability_expression: t.UnionC<[t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>, t.NullC]>;
|
5886
|
+
recommend_expression: t.UnionC<[t.Type<import("./helpers/rules").RuleExpression, import("./helpers/rules").RuleExpression, unknown>, t.NullC]>;
|
5887
|
+
always_recommend: t.BooleanC;
|
4695
5888
|
confirm: t.StringC;
|
4696
5889
|
shortcut: t.ArrayC<t.StringC>;
|
4697
5890
|
explanation: t.StringC;
|
@@ -4719,13 +5912,18 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4719
5912
|
shortcut_win: t.ArrayC<t.StringC>;
|
4720
5913
|
hotkey_mac: t.StringC;
|
4721
5914
|
hotkey_win: t.StringC;
|
4722
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
5915
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
4723
5916
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
4724
5917
|
value: t.StringC;
|
4725
|
-
}>, t.
|
5918
|
+
}>, t.PartialC<{
|
5919
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
5920
|
+
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
4726
5921
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
4727
5922
|
value: t.StringC;
|
4728
|
-
}
|
5923
|
+
}>, t.PartialC<{
|
5924
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
5925
|
+
}>]>]>>]>;
|
5926
|
+
next_steps: t.ArrayC<t.UnionC<[t.StringC, t.NumberC]>>;
|
4729
5927
|
}>, t.PartialC<{
|
4730
5928
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
4731
5929
|
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -4820,6 +6018,22 @@ export declare class HelpSyncCommand {
|
|
4820
6018
|
object?: string | undefined;
|
4821
6019
|
hoverTooltip?: boolean | undefined;
|
4822
6020
|
operation?: "self" | "router" | "blank" | undefined;
|
6021
|
+
}) | ({
|
6022
|
+
type: "video";
|
6023
|
+
value: string;
|
6024
|
+
} & {} & {
|
6025
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
6026
|
+
object?: string | undefined;
|
6027
|
+
hoverTooltip?: boolean | undefined;
|
6028
|
+
operation?: "self" | "router" | "blank" | undefined;
|
6029
|
+
}) | ({
|
6030
|
+
type: "helpdoc";
|
6031
|
+
value: string;
|
6032
|
+
} & {} & {
|
6033
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
6034
|
+
object?: string | undefined;
|
6035
|
+
hoverTooltip?: boolean | undefined;
|
6036
|
+
operation?: "self" | "router" | "blank" | undefined;
|
4823
6037
|
});
|
4824
6038
|
} & {
|
4825
6039
|
disabledReason?: string | undefined;
|
@@ -4827,6 +6041,7 @@ export declare class HelpSyncCommand {
|
|
4827
6041
|
name?: string | undefined;
|
4828
6042
|
last_available?: string | null | undefined;
|
4829
6043
|
modified?: string | undefined;
|
6044
|
+
isAsync?: boolean | undefined;
|
4830
6045
|
} & {
|
4831
6046
|
arguments: {
|
4832
6047
|
[x: string]: ({
|
@@ -4850,6 +6065,8 @@ export declare class HelpSyncCommand {
|
|
4850
6065
|
allow_create_label?: string | undefined;
|
4851
6066
|
show_in_record_action_list?: boolean | undefined;
|
4852
6067
|
show_in_default_list?: boolean | undefined;
|
6068
|
+
auto_choose?: boolean | undefined;
|
6069
|
+
is_private?: boolean | undefined;
|
4853
6070
|
}) | ({
|
4854
6071
|
type: "set";
|
4855
6072
|
value: string[] | number[] | {
|
@@ -4871,6 +6088,8 @@ export declare class HelpSyncCommand {
|
|
4871
6088
|
loaded?: any[] | undefined;
|
4872
6089
|
allow_create?: boolean | undefined;
|
4873
6090
|
allow_create_label?: string | undefined;
|
6091
|
+
auto_choose?: boolean | undefined;
|
6092
|
+
is_private?: boolean | undefined;
|
4874
6093
|
}) | ({
|
4875
6094
|
type: "provided";
|
4876
6095
|
value: "time" | "text";
|
@@ -4891,6 +6110,8 @@ export declare class HelpSyncCommand {
|
|
4891
6110
|
dateTimeArgumentTypeId?: number | undefined;
|
4892
6111
|
allow_create?: boolean | undefined;
|
4893
6112
|
allow_create_label?: string | undefined;
|
6113
|
+
auto_choose?: boolean | undefined;
|
6114
|
+
is_private?: boolean | undefined;
|
4894
6115
|
}) | ({
|
4895
6116
|
type: "dependent";
|
4896
6117
|
value: string;
|
@@ -4910,6 +6131,8 @@ export declare class HelpSyncCommand {
|
|
4910
6131
|
loaded?: any[] | undefined;
|
4911
6132
|
allow_create?: boolean | undefined;
|
4912
6133
|
allow_create_label?: string | undefined;
|
6134
|
+
auto_choose?: boolean | undefined;
|
6135
|
+
is_private?: boolean | undefined;
|
4913
6136
|
}) | ({
|
4914
6137
|
type: "function";
|
4915
6138
|
value: string;
|
@@ -4929,6 +6152,35 @@ export declare class HelpSyncCommand {
|
|
4929
6152
|
loaded?: any[] | undefined;
|
4930
6153
|
allow_create?: boolean | undefined;
|
4931
6154
|
allow_create_label?: string | undefined;
|
6155
|
+
auto_choose?: boolean | undefined;
|
6156
|
+
is_private?: boolean | undefined;
|
6157
|
+
}) | ({
|
6158
|
+
type: "html" | "video";
|
6159
|
+
value: {
|
6160
|
+
source: string;
|
6161
|
+
} & {
|
6162
|
+
title?: string | undefined;
|
6163
|
+
description?: string | undefined;
|
6164
|
+
url?: string | undefined;
|
6165
|
+
};
|
6166
|
+
order_key: number;
|
6167
|
+
} & {
|
6168
|
+
label?: string | undefined;
|
6169
|
+
chosen?: string | number | undefined;
|
6170
|
+
selected?: any[] | undefined;
|
6171
|
+
input_type?: string | undefined;
|
6172
|
+
preselected_key?: string | undefined;
|
6173
|
+
label_field?: string | undefined;
|
6174
|
+
availability_condition?: {
|
6175
|
+
field: string;
|
6176
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
6177
|
+
value: string | undefined;
|
6178
|
+
}[] | undefined;
|
6179
|
+
loaded?: any[] | undefined;
|
6180
|
+
allow_create?: boolean | undefined;
|
6181
|
+
allow_create_label?: string | undefined;
|
6182
|
+
is_private?: boolean | undefined;
|
6183
|
+
auto_choose?: boolean | undefined;
|
4932
6184
|
});
|
4933
6185
|
};
|
4934
6186
|
tags: string[];
|
@@ -4941,20 +6193,23 @@ export declare class HelpSyncCommand {
|
|
4941
6193
|
reason?: string | undefined;
|
4942
6194
|
})[];
|
4943
6195
|
recommend_rules: (({
|
4944
|
-
type: "always";
|
4945
|
-
} & {
|
4946
|
-
operator?: null | undefined;
|
4947
|
-
field?: null | undefined;
|
4948
|
-
value?: null | undefined;
|
4949
|
-
reason?: null | undefined;
|
4950
|
-
}) | ({
|
4951
6196
|
type: "url" | "context" | "element";
|
4952
6197
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
4953
6198
|
} & {
|
4954
6199
|
field?: string | undefined;
|
4955
6200
|
value?: string | undefined;
|
4956
6201
|
reason?: string | undefined;
|
6202
|
+
}) | ({
|
6203
|
+
type: "always";
|
6204
|
+
} & {
|
6205
|
+
operator?: null | undefined;
|
6206
|
+
field?: null | undefined;
|
6207
|
+
value?: null | undefined;
|
6208
|
+
reason?: null | undefined;
|
4957
6209
|
}))[];
|
6210
|
+
availability_expression: import("./helpers/rules").RuleExpression | null;
|
6211
|
+
recommend_expression: import("./helpers/rules").RuleExpression | null;
|
6212
|
+
always_recommend: boolean;
|
4958
6213
|
confirm: string;
|
4959
6214
|
shortcut: string[];
|
4960
6215
|
explanation: string;
|
@@ -4982,13 +6237,18 @@ export declare class HelpSyncCommand {
|
|
4982
6237
|
shortcut_win: string[];
|
4983
6238
|
hotkey_mac: string;
|
4984
6239
|
hotkey_win: string;
|
4985
|
-
detail: string | {
|
6240
|
+
detail: string | ({
|
4986
6241
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4987
6242
|
value: string;
|
4988
|
-
}
|
6243
|
+
} & {
|
6244
|
+
position?: "inline" | "popover" | undefined;
|
6245
|
+
}) | (string | ({
|
4989
6246
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4990
6247
|
value: string;
|
4991
|
-
}
|
6248
|
+
} & {
|
6249
|
+
position?: "inline" | "popover" | undefined;
|
6250
|
+
}))[] | null;
|
6251
|
+
next_steps: (string | number)[];
|
4992
6252
|
} & {
|
4993
6253
|
third_party_source?: string | null | undefined;
|
4994
6254
|
third_party_id?: string | null | undefined;
|
@@ -5082,6 +6342,22 @@ export declare class HelpSyncCommand {
|
|
5082
6342
|
object?: string | undefined;
|
5083
6343
|
hoverTooltip?: boolean | undefined;
|
5084
6344
|
operation?: "self" | "router" | "blank" | undefined;
|
6345
|
+
}) | ({
|
6346
|
+
type: "video";
|
6347
|
+
value: string;
|
6348
|
+
} & {} & {
|
6349
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
6350
|
+
object?: string | undefined;
|
6351
|
+
hoverTooltip?: boolean | undefined;
|
6352
|
+
operation?: "self" | "router" | "blank" | undefined;
|
6353
|
+
}) | ({
|
6354
|
+
type: "helpdoc";
|
6355
|
+
value: string;
|
6356
|
+
} & {} & {
|
6357
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
6358
|
+
object?: string | undefined;
|
6359
|
+
hoverTooltip?: boolean | undefined;
|
6360
|
+
operation?: "self" | "router" | "blank" | undefined;
|
5085
6361
|
});
|
5086
6362
|
} & {
|
5087
6363
|
disabledReason?: string | undefined;
|
@@ -5089,6 +6365,7 @@ export declare class HelpSyncCommand {
|
|
5089
6365
|
name?: string | undefined;
|
5090
6366
|
last_available?: string | null | undefined;
|
5091
6367
|
modified?: string | undefined;
|
6368
|
+
isAsync?: boolean | undefined;
|
5092
6369
|
} & {
|
5093
6370
|
arguments: {
|
5094
6371
|
[x: string]: ({
|
@@ -5112,6 +6389,8 @@ export declare class HelpSyncCommand {
|
|
5112
6389
|
allow_create_label?: string | undefined;
|
5113
6390
|
show_in_record_action_list?: boolean | undefined;
|
5114
6391
|
show_in_default_list?: boolean | undefined;
|
6392
|
+
auto_choose?: boolean | undefined;
|
6393
|
+
is_private?: boolean | undefined;
|
5115
6394
|
}) | ({
|
5116
6395
|
type: "set";
|
5117
6396
|
value: string[] | number[] | {
|
@@ -5133,6 +6412,8 @@ export declare class HelpSyncCommand {
|
|
5133
6412
|
loaded?: any[] | undefined;
|
5134
6413
|
allow_create?: boolean | undefined;
|
5135
6414
|
allow_create_label?: string | undefined;
|
6415
|
+
auto_choose?: boolean | undefined;
|
6416
|
+
is_private?: boolean | undefined;
|
5136
6417
|
}) | ({
|
5137
6418
|
type: "provided";
|
5138
6419
|
value: "time" | "text";
|
@@ -5153,6 +6434,8 @@ export declare class HelpSyncCommand {
|
|
5153
6434
|
dateTimeArgumentTypeId?: number | undefined;
|
5154
6435
|
allow_create?: boolean | undefined;
|
5155
6436
|
allow_create_label?: string | undefined;
|
6437
|
+
auto_choose?: boolean | undefined;
|
6438
|
+
is_private?: boolean | undefined;
|
5156
6439
|
}) | ({
|
5157
6440
|
type: "dependent";
|
5158
6441
|
value: string;
|
@@ -5172,6 +6455,8 @@ export declare class HelpSyncCommand {
|
|
5172
6455
|
loaded?: any[] | undefined;
|
5173
6456
|
allow_create?: boolean | undefined;
|
5174
6457
|
allow_create_label?: string | undefined;
|
6458
|
+
auto_choose?: boolean | undefined;
|
6459
|
+
is_private?: boolean | undefined;
|
5175
6460
|
}) | ({
|
5176
6461
|
type: "function";
|
5177
6462
|
value: string;
|
@@ -5191,6 +6476,35 @@ export declare class HelpSyncCommand {
|
|
5191
6476
|
loaded?: any[] | undefined;
|
5192
6477
|
allow_create?: boolean | undefined;
|
5193
6478
|
allow_create_label?: string | undefined;
|
6479
|
+
auto_choose?: boolean | undefined;
|
6480
|
+
is_private?: boolean | undefined;
|
6481
|
+
}) | ({
|
6482
|
+
type: "html" | "video";
|
6483
|
+
value: {
|
6484
|
+
source: string;
|
6485
|
+
} & {
|
6486
|
+
title?: string | undefined;
|
6487
|
+
description?: string | undefined;
|
6488
|
+
url?: string | undefined;
|
6489
|
+
};
|
6490
|
+
order_key: number;
|
6491
|
+
} & {
|
6492
|
+
label?: string | undefined;
|
6493
|
+
chosen?: string | number | undefined;
|
6494
|
+
selected?: any[] | undefined;
|
6495
|
+
input_type?: string | undefined;
|
6496
|
+
preselected_key?: string | undefined;
|
6497
|
+
label_field?: string | undefined;
|
6498
|
+
availability_condition?: {
|
6499
|
+
field: string;
|
6500
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
6501
|
+
value: string | undefined;
|
6502
|
+
}[] | undefined;
|
6503
|
+
loaded?: any[] | undefined;
|
6504
|
+
allow_create?: boolean | undefined;
|
6505
|
+
allow_create_label?: string | undefined;
|
6506
|
+
is_private?: boolean | undefined;
|
6507
|
+
auto_choose?: boolean | undefined;
|
5194
6508
|
});
|
5195
6509
|
};
|
5196
6510
|
tags: string[];
|
@@ -5203,20 +6517,23 @@ export declare class HelpSyncCommand {
|
|
5203
6517
|
reason?: string | undefined;
|
5204
6518
|
})[];
|
5205
6519
|
recommend_rules: (({
|
5206
|
-
type: "always";
|
5207
|
-
} & {
|
5208
|
-
operator?: null | undefined;
|
5209
|
-
field?: null | undefined;
|
5210
|
-
value?: null | undefined;
|
5211
|
-
reason?: null | undefined;
|
5212
|
-
}) | ({
|
5213
6520
|
type: "url" | "context" | "element";
|
5214
6521
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5215
6522
|
} & {
|
5216
6523
|
field?: string | undefined;
|
5217
6524
|
value?: string | undefined;
|
5218
6525
|
reason?: string | undefined;
|
6526
|
+
}) | ({
|
6527
|
+
type: "always";
|
6528
|
+
} & {
|
6529
|
+
operator?: null | undefined;
|
6530
|
+
field?: null | undefined;
|
6531
|
+
value?: null | undefined;
|
6532
|
+
reason?: null | undefined;
|
5219
6533
|
}))[];
|
6534
|
+
availability_expression: import("./helpers/rules").RuleExpression | null;
|
6535
|
+
recommend_expression: import("./helpers/rules").RuleExpression | null;
|
6536
|
+
always_recommend: boolean;
|
5220
6537
|
confirm: string;
|
5221
6538
|
shortcut: string[];
|
5222
6539
|
explanation: string;
|
@@ -5244,13 +6561,18 @@ export declare class HelpSyncCommand {
|
|
5244
6561
|
shortcut_win: string[];
|
5245
6562
|
hotkey_mac: string;
|
5246
6563
|
hotkey_win: string;
|
5247
|
-
detail: string | {
|
6564
|
+
detail: string | ({
|
5248
6565
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5249
6566
|
value: string;
|
5250
|
-
}
|
6567
|
+
} & {
|
6568
|
+
position?: "inline" | "popover" | undefined;
|
6569
|
+
}) | (string | ({
|
5251
6570
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5252
6571
|
value: string;
|
5253
|
-
}
|
6572
|
+
} & {
|
6573
|
+
position?: "inline" | "popover" | undefined;
|
6574
|
+
}))[] | null;
|
6575
|
+
next_steps: (string | number)[];
|
5254
6576
|
} & {
|
5255
6577
|
third_party_source?: string | null | undefined;
|
5256
6578
|
third_party_id?: string | null | undefined;
|
@@ -5343,6 +6665,22 @@ export declare class HelpSyncCommand {
|
|
5343
6665
|
object?: string | undefined;
|
5344
6666
|
hoverTooltip?: boolean | undefined;
|
5345
6667
|
operation?: "self" | "router" | "blank" | undefined;
|
6668
|
+
}) | ({
|
6669
|
+
type: "video";
|
6670
|
+
value: string;
|
6671
|
+
} & {} & {
|
6672
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
6673
|
+
object?: string | undefined;
|
6674
|
+
hoverTooltip?: boolean | undefined;
|
6675
|
+
operation?: "self" | "router" | "blank" | undefined;
|
6676
|
+
}) | ({
|
6677
|
+
type: "helpdoc";
|
6678
|
+
value: string;
|
6679
|
+
} & {} & {
|
6680
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
6681
|
+
object?: string | undefined;
|
6682
|
+
hoverTooltip?: boolean | undefined;
|
6683
|
+
operation?: "self" | "router" | "blank" | undefined;
|
5346
6684
|
});
|
5347
6685
|
} & {
|
5348
6686
|
disabledReason?: string | undefined;
|
@@ -5350,6 +6688,7 @@ export declare class HelpSyncCommand {
|
|
5350
6688
|
name?: string | undefined;
|
5351
6689
|
last_available?: string | null | undefined;
|
5352
6690
|
modified?: string | undefined;
|
6691
|
+
isAsync?: boolean | undefined;
|
5353
6692
|
} & {
|
5354
6693
|
arguments: {
|
5355
6694
|
[x: string]: ({
|
@@ -5373,6 +6712,8 @@ export declare class HelpSyncCommand {
|
|
5373
6712
|
allow_create_label?: string | undefined;
|
5374
6713
|
show_in_record_action_list?: boolean | undefined;
|
5375
6714
|
show_in_default_list?: boolean | undefined;
|
6715
|
+
auto_choose?: boolean | undefined;
|
6716
|
+
is_private?: boolean | undefined;
|
5376
6717
|
}) | ({
|
5377
6718
|
type: "set";
|
5378
6719
|
value: string[] | number[] | {
|
@@ -5394,6 +6735,8 @@ export declare class HelpSyncCommand {
|
|
5394
6735
|
loaded?: any[] | undefined;
|
5395
6736
|
allow_create?: boolean | undefined;
|
5396
6737
|
allow_create_label?: string | undefined;
|
6738
|
+
auto_choose?: boolean | undefined;
|
6739
|
+
is_private?: boolean | undefined;
|
5397
6740
|
}) | ({
|
5398
6741
|
type: "provided";
|
5399
6742
|
value: "time" | "text";
|
@@ -5414,6 +6757,8 @@ export declare class HelpSyncCommand {
|
|
5414
6757
|
dateTimeArgumentTypeId?: number | undefined;
|
5415
6758
|
allow_create?: boolean | undefined;
|
5416
6759
|
allow_create_label?: string | undefined;
|
6760
|
+
auto_choose?: boolean | undefined;
|
6761
|
+
is_private?: boolean | undefined;
|
5417
6762
|
}) | ({
|
5418
6763
|
type: "dependent";
|
5419
6764
|
value: string;
|
@@ -5433,6 +6778,8 @@ export declare class HelpSyncCommand {
|
|
5433
6778
|
loaded?: any[] | undefined;
|
5434
6779
|
allow_create?: boolean | undefined;
|
5435
6780
|
allow_create_label?: string | undefined;
|
6781
|
+
auto_choose?: boolean | undefined;
|
6782
|
+
is_private?: boolean | undefined;
|
5436
6783
|
}) | ({
|
5437
6784
|
type: "function";
|
5438
6785
|
value: string;
|
@@ -5452,6 +6799,35 @@ export declare class HelpSyncCommand {
|
|
5452
6799
|
loaded?: any[] | undefined;
|
5453
6800
|
allow_create?: boolean | undefined;
|
5454
6801
|
allow_create_label?: string | undefined;
|
6802
|
+
auto_choose?: boolean | undefined;
|
6803
|
+
is_private?: boolean | undefined;
|
6804
|
+
}) | ({
|
6805
|
+
type: "html" | "video";
|
6806
|
+
value: {
|
6807
|
+
source: string;
|
6808
|
+
} & {
|
6809
|
+
title?: string | undefined;
|
6810
|
+
description?: string | undefined;
|
6811
|
+
url?: string | undefined;
|
6812
|
+
};
|
6813
|
+
order_key: number;
|
6814
|
+
} & {
|
6815
|
+
label?: string | undefined;
|
6816
|
+
chosen?: string | number | undefined;
|
6817
|
+
selected?: any[] | undefined;
|
6818
|
+
input_type?: string | undefined;
|
6819
|
+
preselected_key?: string | undefined;
|
6820
|
+
label_field?: string | undefined;
|
6821
|
+
availability_condition?: {
|
6822
|
+
field: string;
|
6823
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
6824
|
+
value: string | undefined;
|
6825
|
+
}[] | undefined;
|
6826
|
+
loaded?: any[] | undefined;
|
6827
|
+
allow_create?: boolean | undefined;
|
6828
|
+
allow_create_label?: string | undefined;
|
6829
|
+
is_private?: boolean | undefined;
|
6830
|
+
auto_choose?: boolean | undefined;
|
5455
6831
|
});
|
5456
6832
|
};
|
5457
6833
|
tags: string[];
|
@@ -5464,20 +6840,23 @@ export declare class HelpSyncCommand {
|
|
5464
6840
|
reason?: string | undefined;
|
5465
6841
|
})[];
|
5466
6842
|
recommend_rules: (({
|
5467
|
-
type: "always";
|
5468
|
-
} & {
|
5469
|
-
operator?: null | undefined;
|
5470
|
-
field?: null | undefined;
|
5471
|
-
value?: null | undefined;
|
5472
|
-
reason?: null | undefined;
|
5473
|
-
}) | ({
|
5474
6843
|
type: "url" | "context" | "element";
|
5475
6844
|
operator: "includes" | "endsWith" | "startsWith" | "is" | "isTruthy" | "isFalsy" | "isNot" | "isTrue" | "isFalse" | "doesNotInclude" | "matchesRegex" | "isGreaterThan" | "isLessThan" | "isDefined" | "isNotDefined" | "classnameOnPage" | "idOnPage";
|
5476
6845
|
} & {
|
5477
6846
|
field?: string | undefined;
|
5478
6847
|
value?: string | undefined;
|
5479
6848
|
reason?: string | undefined;
|
6849
|
+
}) | ({
|
6850
|
+
type: "always";
|
6851
|
+
} & {
|
6852
|
+
operator?: null | undefined;
|
6853
|
+
field?: null | undefined;
|
6854
|
+
value?: null | undefined;
|
6855
|
+
reason?: null | undefined;
|
5480
6856
|
}))[];
|
6857
|
+
availability_expression: import("./helpers/rules").RuleExpression | null;
|
6858
|
+
recommend_expression: import("./helpers/rules").RuleExpression | null;
|
6859
|
+
always_recommend: boolean;
|
5481
6860
|
confirm: string;
|
5482
6861
|
shortcut: string[];
|
5483
6862
|
explanation: string;
|
@@ -5505,13 +6884,18 @@ export declare class HelpSyncCommand {
|
|
5505
6884
|
shortcut_win: string[];
|
5506
6885
|
hotkey_mac: string;
|
5507
6886
|
hotkey_win: string;
|
5508
|
-
detail: string | {
|
6887
|
+
detail: string | ({
|
5509
6888
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5510
6889
|
value: string;
|
5511
|
-
}
|
6890
|
+
} & {
|
6891
|
+
position?: "inline" | "popover" | undefined;
|
6892
|
+
}) | (string | ({
|
5512
6893
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5513
6894
|
value: string;
|
5514
|
-
}
|
6895
|
+
} & {
|
6896
|
+
position?: "inline" | "popover" | undefined;
|
6897
|
+
}))[] | null;
|
6898
|
+
next_steps: (string | number)[];
|
5515
6899
|
} & {
|
5516
6900
|
third_party_source?: string | null | undefined;
|
5517
6901
|
third_party_id?: string | null | undefined;
|