commandbar 1.6.10 → 1.6.13
Sign up to get free protection for your applications and to get access to all the features.
- package/build/commandbar-js/src/index.js +1 -1
- package/build/internal/src/client/AddContextOptions.d.ts +5 -0
- package/build/internal/src/client/CommandBarClientSDK.d.ts +36 -5
- package/build/internal/src/client/CommandBarProxySDK.d.ts +4 -4
- package/build/internal/src/client/CommandBarSDK.d.ts +2 -6
- package/build/internal/src/client/EventHandler.d.ts +2 -2
- package/build/internal/src/client/OrgConfig.d.ts +5 -0
- package/build/internal/src/client/SentryReporter.d.ts +24 -3
- package/build/internal/src/middleware/CommandFromClientV.d.ts +44 -3
- package/build/internal/src/middleware/OrganizationV.d.ts +16 -0
- package/build/internal/src/middleware/ResourceSettingsV.d.ts +4 -0
- package/build/internal/src/middleware/command.d.ts +1043 -84
- package/build/internal/src/middleware/commandCategory.d.ts +16 -0
- package/build/internal/src/middleware/detailPreview.d.ts +4 -2
- package/build/internal/src/middleware/generics.d.ts +10 -10
- package/build/internal/src/middleware/helpers/argument.d.ts +151 -0
- package/build/internal/src/middleware/helpers/commandTemplate.d.ts +17 -0
- package/build/internal/src/middleware/organization.d.ts +114 -3
- package/build/internal/src/middleware/releases.d.ts +1 -1
- package/build/internal/src/middleware/types.d.ts +58 -3
- package/build/internal/src/middleware/user.d.ts +3 -1
- package/package.json +2 -4
- package/src/init.ts +6 -2
@@ -1,10 +1,10 @@
|
|
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 HelpSyncCommandAdditionalV: t.
|
6
|
-
third_party_source: t.StringC
|
7
|
-
third_party_id: t.StringC
|
5
|
+
declare const HelpSyncCommandAdditionalV: t.PartialC<{
|
6
|
+
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
7
|
+
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
8
8
|
}>;
|
9
9
|
export declare const helpSyncDefaults: t.TypeOf<typeof HelpSyncCommandAdditionalV>;
|
10
10
|
export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
@@ -92,6 +92,14 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
92
92
|
object: t.StringC;
|
93
93
|
hoverTooltip: t.BooleanC;
|
94
94
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
95
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
96
|
+
type: t.LiteralC<"video">;
|
97
|
+
value: t.StringC;
|
98
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
99
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
100
|
+
object: t.StringC;
|
101
|
+
hoverTooltip: t.BooleanC;
|
102
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
95
103
|
}>]>]>]>;
|
96
104
|
}>, t.PartialC<{
|
97
105
|
disabledReason: t.StringC;
|
@@ -121,6 +129,8 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
121
129
|
allow_create_label: t.StringC;
|
122
130
|
show_in_record_action_list: t.BooleanC;
|
123
131
|
show_in_default_list: t.BooleanC;
|
132
|
+
auto_choose: t.BooleanC;
|
133
|
+
is_private: t.BooleanC;
|
124
134
|
}>]>, t.IntersectionC<[t.TypeC<{
|
125
135
|
type: t.LiteralC<"set">;
|
126
136
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -140,6 +150,8 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
140
150
|
loaded: t.ArrayC<t.AnyC>;
|
141
151
|
allow_create: t.BooleanC;
|
142
152
|
allow_create_label: t.StringC;
|
153
|
+
auto_choose: t.BooleanC;
|
154
|
+
is_private: t.BooleanC;
|
143
155
|
}>]>, t.IntersectionC<[t.TypeC<{
|
144
156
|
type: t.LiteralC<"provided">;
|
145
157
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -160,6 +172,8 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
160
172
|
dateTimeArgumentTypeId: t.NumberC;
|
161
173
|
allow_create: t.BooleanC;
|
162
174
|
allow_create_label: t.StringC;
|
175
|
+
auto_choose: t.BooleanC;
|
176
|
+
is_private: t.BooleanC;
|
163
177
|
}>]>, t.IntersectionC<[t.TypeC<{
|
164
178
|
type: t.LiteralC<"dependent">;
|
165
179
|
value: t.StringC;
|
@@ -179,6 +193,8 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
179
193
|
loaded: t.ArrayC<t.AnyC>;
|
180
194
|
allow_create: t.BooleanC;
|
181
195
|
allow_create_label: t.StringC;
|
196
|
+
auto_choose: t.BooleanC;
|
197
|
+
is_private: t.BooleanC;
|
182
198
|
}>]>, t.IntersectionC<[t.TypeC<{
|
183
199
|
type: t.LiteralC<"function">;
|
184
200
|
value: t.StringC;
|
@@ -198,6 +214,34 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
198
214
|
loaded: t.ArrayC<t.AnyC>;
|
199
215
|
allow_create: t.BooleanC;
|
200
216
|
allow_create_label: t.StringC;
|
217
|
+
auto_choose: t.BooleanC;
|
218
|
+
is_private: t.BooleanC;
|
219
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
220
|
+
type: t.LiteralC<"video">;
|
221
|
+
value: t.IntersectionC<[t.TypeC<{
|
222
|
+
source: t.StringC;
|
223
|
+
}>, t.PartialC<{
|
224
|
+
title: t.StringC;
|
225
|
+
description: t.StringC;
|
226
|
+
}>]>;
|
227
|
+
order_key: t.NumberC;
|
228
|
+
}>, t.PartialC<{
|
229
|
+
label: t.StringC;
|
230
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
231
|
+
selected: t.ArrayC<t.AnyC>;
|
232
|
+
input_type: t.StringC;
|
233
|
+
preselected_key: t.StringC;
|
234
|
+
label_field: t.StringC;
|
235
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
236
|
+
field: t.StringC;
|
237
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
238
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
239
|
+
}>>;
|
240
|
+
loaded: t.ArrayC<t.AnyC>;
|
241
|
+
allow_create: t.BooleanC;
|
242
|
+
allow_create_label: t.StringC;
|
243
|
+
is_private: t.BooleanC;
|
244
|
+
auto_choose: t.BooleanC;
|
201
245
|
}>]>]>>;
|
202
246
|
tags: t.ArrayC<t.StringC>;
|
203
247
|
availability_rules: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
@@ -262,6 +306,7 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
262
306
|
confirm: t.StringC;
|
263
307
|
shortcut: t.ArrayC<t.StringC>;
|
264
308
|
explanation: t.StringC;
|
309
|
+
heading: t.StringC;
|
265
310
|
is_live: t.BooleanC;
|
266
311
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
267
312
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
@@ -285,13 +330,17 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
285
330
|
shortcut_win: t.ArrayC<t.StringC>;
|
286
331
|
hotkey_mac: t.StringC;
|
287
332
|
hotkey_win: t.StringC;
|
288
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
333
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
289
334
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
290
335
|
value: t.StringC;
|
291
|
-
}>, t.
|
336
|
+
}>, t.PartialC<{
|
337
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
338
|
+
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
292
339
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
293
340
|
value: t.StringC;
|
294
|
-
}
|
341
|
+
}>, t.PartialC<{
|
342
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
343
|
+
}>]>]>>]>;
|
295
344
|
}>]>;
|
296
345
|
export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
297
346
|
id: t.NumberC;
|
@@ -378,6 +427,14 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
378
427
|
object: t.StringC;
|
379
428
|
hoverTooltip: t.BooleanC;
|
380
429
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
430
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
431
|
+
type: t.LiteralC<"video">;
|
432
|
+
value: t.StringC;
|
433
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
434
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
435
|
+
object: t.StringC;
|
436
|
+
hoverTooltip: t.BooleanC;
|
437
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
381
438
|
}>]>]>]>;
|
382
439
|
}>, t.PartialC<{
|
383
440
|
disabledReason: t.StringC;
|
@@ -407,6 +464,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
407
464
|
allow_create_label: t.StringC;
|
408
465
|
show_in_record_action_list: t.BooleanC;
|
409
466
|
show_in_default_list: t.BooleanC;
|
467
|
+
auto_choose: t.BooleanC;
|
468
|
+
is_private: t.BooleanC;
|
410
469
|
}>]>, t.IntersectionC<[t.TypeC<{
|
411
470
|
type: t.LiteralC<"set">;
|
412
471
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -426,6 +485,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
426
485
|
loaded: t.ArrayC<t.AnyC>;
|
427
486
|
allow_create: t.BooleanC;
|
428
487
|
allow_create_label: t.StringC;
|
488
|
+
auto_choose: t.BooleanC;
|
489
|
+
is_private: t.BooleanC;
|
429
490
|
}>]>, t.IntersectionC<[t.TypeC<{
|
430
491
|
type: t.LiteralC<"provided">;
|
431
492
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -446,6 +507,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
446
507
|
dateTimeArgumentTypeId: t.NumberC;
|
447
508
|
allow_create: t.BooleanC;
|
448
509
|
allow_create_label: t.StringC;
|
510
|
+
auto_choose: t.BooleanC;
|
511
|
+
is_private: t.BooleanC;
|
449
512
|
}>]>, t.IntersectionC<[t.TypeC<{
|
450
513
|
type: t.LiteralC<"dependent">;
|
451
514
|
value: t.StringC;
|
@@ -465,6 +528,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
465
528
|
loaded: t.ArrayC<t.AnyC>;
|
466
529
|
allow_create: t.BooleanC;
|
467
530
|
allow_create_label: t.StringC;
|
531
|
+
auto_choose: t.BooleanC;
|
532
|
+
is_private: t.BooleanC;
|
468
533
|
}>]>, t.IntersectionC<[t.TypeC<{
|
469
534
|
type: t.LiteralC<"function">;
|
470
535
|
value: t.StringC;
|
@@ -484,6 +549,34 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
484
549
|
loaded: t.ArrayC<t.AnyC>;
|
485
550
|
allow_create: t.BooleanC;
|
486
551
|
allow_create_label: t.StringC;
|
552
|
+
auto_choose: t.BooleanC;
|
553
|
+
is_private: t.BooleanC;
|
554
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
555
|
+
type: t.LiteralC<"video">;
|
556
|
+
value: t.IntersectionC<[t.TypeC<{
|
557
|
+
source: t.StringC;
|
558
|
+
}>, t.PartialC<{
|
559
|
+
title: t.StringC;
|
560
|
+
description: t.StringC;
|
561
|
+
}>]>;
|
562
|
+
order_key: t.NumberC;
|
563
|
+
}>, t.PartialC<{
|
564
|
+
label: t.StringC;
|
565
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
566
|
+
selected: t.ArrayC<t.AnyC>;
|
567
|
+
input_type: t.StringC;
|
568
|
+
preselected_key: t.StringC;
|
569
|
+
label_field: t.StringC;
|
570
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
571
|
+
field: t.StringC;
|
572
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
573
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
574
|
+
}>>;
|
575
|
+
loaded: t.ArrayC<t.AnyC>;
|
576
|
+
allow_create: t.BooleanC;
|
577
|
+
allow_create_label: t.StringC;
|
578
|
+
is_private: t.BooleanC;
|
579
|
+
auto_choose: t.BooleanC;
|
487
580
|
}>]>]>>;
|
488
581
|
tags: t.ArrayC<t.StringC>;
|
489
582
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
@@ -615,6 +708,7 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
615
708
|
confirm: t.StringC;
|
616
709
|
shortcut: t.ArrayC<t.StringC>;
|
617
710
|
explanation: t.StringC;
|
711
|
+
heading: t.StringC;
|
618
712
|
is_live: t.BooleanC;
|
619
713
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
620
714
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
@@ -638,13 +732,20 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
638
732
|
shortcut_win: t.ArrayC<t.StringC>;
|
639
733
|
hotkey_mac: t.StringC;
|
640
734
|
hotkey_win: t.StringC;
|
641
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
735
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
642
736
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
643
737
|
value: t.StringC;
|
644
|
-
}>, t.
|
738
|
+
}>, t.PartialC<{
|
739
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
740
|
+
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
645
741
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
646
742
|
value: t.StringC;
|
647
|
-
}
|
743
|
+
}>, t.PartialC<{
|
744
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
745
|
+
}>]>]>>]>;
|
746
|
+
}>, t.PartialC<{
|
747
|
+
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
748
|
+
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
648
749
|
}>]>;
|
649
750
|
export declare const BatchOperationV: t.UnionC<[t.TypeC<{
|
650
751
|
op: t.LiteralC<"update">;
|
@@ -743,6 +844,14 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
743
844
|
object: t.StringC;
|
744
845
|
hoverTooltip: t.BooleanC;
|
745
846
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
847
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
848
|
+
type: t.LiteralC<"video">;
|
849
|
+
value: t.StringC;
|
850
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
851
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
852
|
+
object: t.StringC;
|
853
|
+
hoverTooltip: t.BooleanC;
|
854
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
746
855
|
}>]>]>]>;
|
747
856
|
}>, t.PartialC<{
|
748
857
|
disabledReason: t.StringC;
|
@@ -772,6 +881,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
772
881
|
allow_create_label: t.StringC;
|
773
882
|
show_in_record_action_list: t.BooleanC;
|
774
883
|
show_in_default_list: t.BooleanC;
|
884
|
+
auto_choose: t.BooleanC;
|
885
|
+
is_private: t.BooleanC;
|
775
886
|
}>]>, t.IntersectionC<[t.TypeC<{
|
776
887
|
type: t.LiteralC<"set">;
|
777
888
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -791,6 +902,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
791
902
|
loaded: t.ArrayC<t.AnyC>;
|
792
903
|
allow_create: t.BooleanC;
|
793
904
|
allow_create_label: t.StringC;
|
905
|
+
auto_choose: t.BooleanC;
|
906
|
+
is_private: t.BooleanC;
|
794
907
|
}>]>, t.IntersectionC<[t.TypeC<{
|
795
908
|
type: t.LiteralC<"provided">;
|
796
909
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -811,6 +924,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
811
924
|
dateTimeArgumentTypeId: t.NumberC;
|
812
925
|
allow_create: t.BooleanC;
|
813
926
|
allow_create_label: t.StringC;
|
927
|
+
auto_choose: t.BooleanC;
|
928
|
+
is_private: t.BooleanC;
|
814
929
|
}>]>, t.IntersectionC<[t.TypeC<{
|
815
930
|
type: t.LiteralC<"dependent">;
|
816
931
|
value: t.StringC;
|
@@ -830,6 +945,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
830
945
|
loaded: t.ArrayC<t.AnyC>;
|
831
946
|
allow_create: t.BooleanC;
|
832
947
|
allow_create_label: t.StringC;
|
948
|
+
auto_choose: t.BooleanC;
|
949
|
+
is_private: t.BooleanC;
|
833
950
|
}>]>, t.IntersectionC<[t.TypeC<{
|
834
951
|
type: t.LiteralC<"function">;
|
835
952
|
value: t.StringC;
|
@@ -849,6 +966,34 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
849
966
|
loaded: t.ArrayC<t.AnyC>;
|
850
967
|
allow_create: t.BooleanC;
|
851
968
|
allow_create_label: t.StringC;
|
969
|
+
auto_choose: t.BooleanC;
|
970
|
+
is_private: t.BooleanC;
|
971
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
972
|
+
type: t.LiteralC<"video">;
|
973
|
+
value: t.IntersectionC<[t.TypeC<{
|
974
|
+
source: t.StringC;
|
975
|
+
}>, t.PartialC<{
|
976
|
+
title: t.StringC;
|
977
|
+
description: t.StringC;
|
978
|
+
}>]>;
|
979
|
+
order_key: t.NumberC;
|
980
|
+
}>, t.PartialC<{
|
981
|
+
label: t.StringC;
|
982
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
983
|
+
selected: t.ArrayC<t.AnyC>;
|
984
|
+
input_type: t.StringC;
|
985
|
+
preselected_key: t.StringC;
|
986
|
+
label_field: t.StringC;
|
987
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
988
|
+
field: t.StringC;
|
989
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
990
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
991
|
+
}>>;
|
992
|
+
loaded: t.ArrayC<t.AnyC>;
|
993
|
+
allow_create: t.BooleanC;
|
994
|
+
allow_create_label: t.StringC;
|
995
|
+
is_private: t.BooleanC;
|
996
|
+
auto_choose: t.BooleanC;
|
852
997
|
}>]>]>>;
|
853
998
|
tags: t.ArrayC<t.StringC>;
|
854
999
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
@@ -980,6 +1125,7 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
980
1125
|
confirm: t.StringC;
|
981
1126
|
shortcut: t.ArrayC<t.StringC>;
|
982
1127
|
explanation: t.StringC;
|
1128
|
+
heading: t.StringC;
|
983
1129
|
is_live: t.BooleanC;
|
984
1130
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
985
1131
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
@@ -1003,13 +1149,20 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1003
1149
|
shortcut_win: t.ArrayC<t.StringC>;
|
1004
1150
|
hotkey_mac: t.StringC;
|
1005
1151
|
hotkey_win: t.StringC;
|
1006
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
1152
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
1007
1153
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
1008
1154
|
value: t.StringC;
|
1009
|
-
}>, t.
|
1155
|
+
}>, t.PartialC<{
|
1156
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
1157
|
+
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
1010
1158
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
1011
1159
|
value: t.StringC;
|
1012
|
-
}
|
1160
|
+
}>, t.PartialC<{
|
1161
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
1162
|
+
}>]>]>>]>;
|
1163
|
+
}>, t.PartialC<{
|
1164
|
+
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
1165
|
+
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
1013
1166
|
}>]>>;
|
1014
1167
|
}>;
|
1015
1168
|
export declare class Command {
|
@@ -1102,6 +1255,14 @@ export declare class Command {
|
|
1102
1255
|
object?: string | undefined;
|
1103
1256
|
hoverTooltip?: boolean | undefined;
|
1104
1257
|
operation?: "self" | "router" | "blank" | undefined;
|
1258
|
+
}) | ({
|
1259
|
+
type: "video";
|
1260
|
+
value: string;
|
1261
|
+
} & {} & {
|
1262
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
1263
|
+
object?: string | undefined;
|
1264
|
+
hoverTooltip?: boolean | undefined;
|
1265
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1105
1266
|
});
|
1106
1267
|
} & {
|
1107
1268
|
disabledReason?: string | undefined;
|
@@ -1132,6 +1293,8 @@ export declare class Command {
|
|
1132
1293
|
allow_create_label?: string | undefined;
|
1133
1294
|
show_in_record_action_list?: boolean | undefined;
|
1134
1295
|
show_in_default_list?: boolean | undefined;
|
1296
|
+
auto_choose?: boolean | undefined;
|
1297
|
+
is_private?: boolean | undefined;
|
1135
1298
|
}) | ({
|
1136
1299
|
type: "set";
|
1137
1300
|
value: string[] | number[] | {
|
@@ -1153,6 +1316,8 @@ export declare class Command {
|
|
1153
1316
|
loaded?: any[] | undefined;
|
1154
1317
|
allow_create?: boolean | undefined;
|
1155
1318
|
allow_create_label?: string | undefined;
|
1319
|
+
auto_choose?: boolean | undefined;
|
1320
|
+
is_private?: boolean | undefined;
|
1156
1321
|
}) | ({
|
1157
1322
|
type: "provided";
|
1158
1323
|
value: "time" | "text";
|
@@ -1173,6 +1338,8 @@ export declare class Command {
|
|
1173
1338
|
dateTimeArgumentTypeId?: number | undefined;
|
1174
1339
|
allow_create?: boolean | undefined;
|
1175
1340
|
allow_create_label?: string | undefined;
|
1341
|
+
auto_choose?: boolean | undefined;
|
1342
|
+
is_private?: boolean | undefined;
|
1176
1343
|
}) | ({
|
1177
1344
|
type: "dependent";
|
1178
1345
|
value: string;
|
@@ -1192,6 +1359,8 @@ export declare class Command {
|
|
1192
1359
|
loaded?: any[] | undefined;
|
1193
1360
|
allow_create?: boolean | undefined;
|
1194
1361
|
allow_create_label?: string | undefined;
|
1362
|
+
auto_choose?: boolean | undefined;
|
1363
|
+
is_private?: boolean | undefined;
|
1195
1364
|
}) | ({
|
1196
1365
|
type: "function";
|
1197
1366
|
value: string;
|
@@ -1211,6 +1380,34 @@ export declare class Command {
|
|
1211
1380
|
loaded?: any[] | undefined;
|
1212
1381
|
allow_create?: boolean | undefined;
|
1213
1382
|
allow_create_label?: string | undefined;
|
1383
|
+
auto_choose?: boolean | undefined;
|
1384
|
+
is_private?: boolean | undefined;
|
1385
|
+
}) | ({
|
1386
|
+
type: "video";
|
1387
|
+
value: {
|
1388
|
+
source: string;
|
1389
|
+
} & {
|
1390
|
+
title?: string | undefined;
|
1391
|
+
description?: string | undefined;
|
1392
|
+
};
|
1393
|
+
order_key: number;
|
1394
|
+
} & {
|
1395
|
+
label?: string | undefined;
|
1396
|
+
chosen?: string | number | undefined;
|
1397
|
+
selected?: any[] | undefined;
|
1398
|
+
input_type?: string | undefined;
|
1399
|
+
preselected_key?: string | undefined;
|
1400
|
+
label_field?: string | undefined;
|
1401
|
+
availability_condition?: {
|
1402
|
+
field: string;
|
1403
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
1404
|
+
value: string | undefined;
|
1405
|
+
}[] | undefined;
|
1406
|
+
loaded?: any[] | undefined;
|
1407
|
+
allow_create?: boolean | undefined;
|
1408
|
+
allow_create_label?: string | undefined;
|
1409
|
+
is_private?: boolean | undefined;
|
1410
|
+
auto_choose?: boolean | undefined;
|
1214
1411
|
});
|
1215
1412
|
};
|
1216
1413
|
tags: string[];
|
@@ -1271,6 +1468,7 @@ export declare class Command {
|
|
1271
1468
|
confirm: string;
|
1272
1469
|
shortcut: string[];
|
1273
1470
|
explanation: string;
|
1471
|
+
heading: string;
|
1274
1472
|
is_live: boolean;
|
1275
1473
|
category: number | null;
|
1276
1474
|
sort_key: number | null;
|
@@ -1294,13 +1492,20 @@ export declare class Command {
|
|
1294
1492
|
shortcut_win: string[];
|
1295
1493
|
hotkey_mac: string;
|
1296
1494
|
hotkey_win: string;
|
1297
|
-
detail: string | {
|
1495
|
+
detail: string | ({
|
1298
1496
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1299
1497
|
value: string;
|
1300
|
-
}
|
1498
|
+
} & {
|
1499
|
+
position?: "inline" | "popover" | undefined;
|
1500
|
+
}) | (string | ({
|
1301
1501
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1302
1502
|
value: string;
|
1303
|
-
}
|
1503
|
+
} & {
|
1504
|
+
position?: "inline" | "popover" | undefined;
|
1505
|
+
}))[] | null;
|
1506
|
+
} & {
|
1507
|
+
third_party_source?: string | null | undefined;
|
1508
|
+
third_party_id?: string | null | undefined;
|
1304
1509
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
1305
1510
|
id: number;
|
1306
1511
|
organization: string | number;
|
@@ -1390,6 +1595,14 @@ export declare class Command {
|
|
1390
1595
|
object?: string | undefined;
|
1391
1596
|
hoverTooltip?: boolean | undefined;
|
1392
1597
|
operation?: "self" | "router" | "blank" | undefined;
|
1598
|
+
}) | ({
|
1599
|
+
type: "video";
|
1600
|
+
value: string;
|
1601
|
+
} & {} & {
|
1602
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
1603
|
+
object?: string | undefined;
|
1604
|
+
hoverTooltip?: boolean | undefined;
|
1605
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1393
1606
|
});
|
1394
1607
|
} & {
|
1395
1608
|
disabledReason?: string | undefined;
|
@@ -1420,6 +1633,8 @@ export declare class Command {
|
|
1420
1633
|
allow_create_label?: string | undefined;
|
1421
1634
|
show_in_record_action_list?: boolean | undefined;
|
1422
1635
|
show_in_default_list?: boolean | undefined;
|
1636
|
+
auto_choose?: boolean | undefined;
|
1637
|
+
is_private?: boolean | undefined;
|
1423
1638
|
}) | ({
|
1424
1639
|
type: "set";
|
1425
1640
|
value: string[] | number[] | {
|
@@ -1441,6 +1656,8 @@ export declare class Command {
|
|
1441
1656
|
loaded?: any[] | undefined;
|
1442
1657
|
allow_create?: boolean | undefined;
|
1443
1658
|
allow_create_label?: string | undefined;
|
1659
|
+
auto_choose?: boolean | undefined;
|
1660
|
+
is_private?: boolean | undefined;
|
1444
1661
|
}) | ({
|
1445
1662
|
type: "provided";
|
1446
1663
|
value: "time" | "text";
|
@@ -1461,6 +1678,8 @@ export declare class Command {
|
|
1461
1678
|
dateTimeArgumentTypeId?: number | undefined;
|
1462
1679
|
allow_create?: boolean | undefined;
|
1463
1680
|
allow_create_label?: string | undefined;
|
1681
|
+
auto_choose?: boolean | undefined;
|
1682
|
+
is_private?: boolean | undefined;
|
1464
1683
|
}) | ({
|
1465
1684
|
type: "dependent";
|
1466
1685
|
value: string;
|
@@ -1480,6 +1699,8 @@ export declare class Command {
|
|
1480
1699
|
loaded?: any[] | undefined;
|
1481
1700
|
allow_create?: boolean | undefined;
|
1482
1701
|
allow_create_label?: string | undefined;
|
1702
|
+
auto_choose?: boolean | undefined;
|
1703
|
+
is_private?: boolean | undefined;
|
1483
1704
|
}) | ({
|
1484
1705
|
type: "function";
|
1485
1706
|
value: string;
|
@@ -1499,6 +1720,34 @@ export declare class Command {
|
|
1499
1720
|
loaded?: any[] | undefined;
|
1500
1721
|
allow_create?: boolean | undefined;
|
1501
1722
|
allow_create_label?: string | undefined;
|
1723
|
+
auto_choose?: boolean | undefined;
|
1724
|
+
is_private?: boolean | undefined;
|
1725
|
+
}) | ({
|
1726
|
+
type: "video";
|
1727
|
+
value: {
|
1728
|
+
source: string;
|
1729
|
+
} & {
|
1730
|
+
title?: string | undefined;
|
1731
|
+
description?: string | undefined;
|
1732
|
+
};
|
1733
|
+
order_key: number;
|
1734
|
+
} & {
|
1735
|
+
label?: string | undefined;
|
1736
|
+
chosen?: string | number | undefined;
|
1737
|
+
selected?: any[] | undefined;
|
1738
|
+
input_type?: string | undefined;
|
1739
|
+
preselected_key?: string | undefined;
|
1740
|
+
label_field?: string | undefined;
|
1741
|
+
availability_condition?: {
|
1742
|
+
field: string;
|
1743
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
1744
|
+
value: string | undefined;
|
1745
|
+
}[] | undefined;
|
1746
|
+
loaded?: any[] | undefined;
|
1747
|
+
allow_create?: boolean | undefined;
|
1748
|
+
allow_create_label?: string | undefined;
|
1749
|
+
is_private?: boolean | undefined;
|
1750
|
+
auto_choose?: boolean | undefined;
|
1502
1751
|
});
|
1503
1752
|
};
|
1504
1753
|
tags: string[];
|
@@ -1559,6 +1808,7 @@ export declare class Command {
|
|
1559
1808
|
confirm: string;
|
1560
1809
|
shortcut: string[];
|
1561
1810
|
explanation: string;
|
1811
|
+
heading: string;
|
1562
1812
|
is_live: boolean;
|
1563
1813
|
category: number | null;
|
1564
1814
|
sort_key: number | null;
|
@@ -1582,13 +1832,20 @@ export declare class Command {
|
|
1582
1832
|
shortcut_win: string[];
|
1583
1833
|
hotkey_mac: string;
|
1584
1834
|
hotkey_win: string;
|
1585
|
-
detail: string | {
|
1835
|
+
detail: string | ({
|
1586
1836
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1587
1837
|
value: string;
|
1588
|
-
}
|
1838
|
+
} & {
|
1839
|
+
position?: "inline" | "popover" | undefined;
|
1840
|
+
}) | (string | ({
|
1589
1841
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1590
1842
|
value: string;
|
1591
|
-
}
|
1843
|
+
} & {
|
1844
|
+
position?: "inline" | "popover" | undefined;
|
1845
|
+
}))[] | null;
|
1846
|
+
} & {
|
1847
|
+
third_party_source?: string | null | undefined;
|
1848
|
+
third_party_id?: string | null | undefined;
|
1592
1849
|
}>;
|
1593
1850
|
static update: (object: {
|
1594
1851
|
id: number;
|
@@ -1679,6 +1936,14 @@ export declare class Command {
|
|
1679
1936
|
object?: string | undefined;
|
1680
1937
|
hoverTooltip?: boolean | undefined;
|
1681
1938
|
operation?: "self" | "router" | "blank" | undefined;
|
1939
|
+
}) | ({
|
1940
|
+
type: "video";
|
1941
|
+
value: string;
|
1942
|
+
} & {} & {
|
1943
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
1944
|
+
object?: string | undefined;
|
1945
|
+
hoverTooltip?: boolean | undefined;
|
1946
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1682
1947
|
});
|
1683
1948
|
} & {
|
1684
1949
|
disabledReason?: string | undefined;
|
@@ -1709,6 +1974,8 @@ export declare class Command {
|
|
1709
1974
|
allow_create_label?: string | undefined;
|
1710
1975
|
show_in_record_action_list?: boolean | undefined;
|
1711
1976
|
show_in_default_list?: boolean | undefined;
|
1977
|
+
auto_choose?: boolean | undefined;
|
1978
|
+
is_private?: boolean | undefined;
|
1712
1979
|
}) | ({
|
1713
1980
|
type: "set";
|
1714
1981
|
value: string[] | number[] | {
|
@@ -1730,6 +1997,8 @@ export declare class Command {
|
|
1730
1997
|
loaded?: any[] | undefined;
|
1731
1998
|
allow_create?: boolean | undefined;
|
1732
1999
|
allow_create_label?: string | undefined;
|
2000
|
+
auto_choose?: boolean | undefined;
|
2001
|
+
is_private?: boolean | undefined;
|
1733
2002
|
}) | ({
|
1734
2003
|
type: "provided";
|
1735
2004
|
value: "time" | "text";
|
@@ -1750,6 +2019,8 @@ export declare class Command {
|
|
1750
2019
|
dateTimeArgumentTypeId?: number | undefined;
|
1751
2020
|
allow_create?: boolean | undefined;
|
1752
2021
|
allow_create_label?: string | undefined;
|
2022
|
+
auto_choose?: boolean | undefined;
|
2023
|
+
is_private?: boolean | undefined;
|
1753
2024
|
}) | ({
|
1754
2025
|
type: "dependent";
|
1755
2026
|
value: string;
|
@@ -1769,6 +2040,8 @@ export declare class Command {
|
|
1769
2040
|
loaded?: any[] | undefined;
|
1770
2041
|
allow_create?: boolean | undefined;
|
1771
2042
|
allow_create_label?: string | undefined;
|
2043
|
+
auto_choose?: boolean | undefined;
|
2044
|
+
is_private?: boolean | undefined;
|
1772
2045
|
}) | ({
|
1773
2046
|
type: "function";
|
1774
2047
|
value: string;
|
@@ -1788,6 +2061,34 @@ export declare class Command {
|
|
1788
2061
|
loaded?: any[] | undefined;
|
1789
2062
|
allow_create?: boolean | undefined;
|
1790
2063
|
allow_create_label?: string | undefined;
|
2064
|
+
auto_choose?: boolean | undefined;
|
2065
|
+
is_private?: boolean | undefined;
|
2066
|
+
}) | ({
|
2067
|
+
type: "video";
|
2068
|
+
value: {
|
2069
|
+
source: string;
|
2070
|
+
} & {
|
2071
|
+
title?: string | undefined;
|
2072
|
+
description?: string | undefined;
|
2073
|
+
};
|
2074
|
+
order_key: number;
|
2075
|
+
} & {
|
2076
|
+
label?: string | undefined;
|
2077
|
+
chosen?: string | number | undefined;
|
2078
|
+
selected?: any[] | undefined;
|
2079
|
+
input_type?: string | undefined;
|
2080
|
+
preselected_key?: string | undefined;
|
2081
|
+
label_field?: string | undefined;
|
2082
|
+
availability_condition?: {
|
2083
|
+
field: string;
|
2084
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
2085
|
+
value: string | undefined;
|
2086
|
+
}[] | undefined;
|
2087
|
+
loaded?: any[] | undefined;
|
2088
|
+
allow_create?: boolean | undefined;
|
2089
|
+
allow_create_label?: string | undefined;
|
2090
|
+
is_private?: boolean | undefined;
|
2091
|
+
auto_choose?: boolean | undefined;
|
1791
2092
|
});
|
1792
2093
|
};
|
1793
2094
|
tags: string[];
|
@@ -1848,6 +2149,7 @@ export declare class Command {
|
|
1848
2149
|
confirm: string;
|
1849
2150
|
shortcut: string[];
|
1850
2151
|
explanation: string;
|
2152
|
+
heading: string;
|
1851
2153
|
is_live: boolean;
|
1852
2154
|
category: number | null;
|
1853
2155
|
sort_key: number | null;
|
@@ -1871,13 +2173,20 @@ export declare class Command {
|
|
1871
2173
|
shortcut_win: string[];
|
1872
2174
|
hotkey_mac: string;
|
1873
2175
|
hotkey_win: string;
|
1874
|
-
detail: string | {
|
2176
|
+
detail: string | ({
|
1875
2177
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1876
2178
|
value: string;
|
1877
|
-
}
|
2179
|
+
} & {
|
2180
|
+
position?: "inline" | "popover" | undefined;
|
2181
|
+
}) | (string | ({
|
1878
2182
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1879
2183
|
value: string;
|
1880
|
-
}
|
2184
|
+
} & {
|
2185
|
+
position?: "inline" | "popover" | undefined;
|
2186
|
+
}))[] | null;
|
2187
|
+
} & {
|
2188
|
+
third_party_source?: string | null | undefined;
|
2189
|
+
third_party_id?: string | null | undefined;
|
1881
2190
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
1882
2191
|
id: number;
|
1883
2192
|
organization: string | number;
|
@@ -1967,6 +2276,14 @@ export declare class Command {
|
|
1967
2276
|
object?: string | undefined;
|
1968
2277
|
hoverTooltip?: boolean | undefined;
|
1969
2278
|
operation?: "self" | "router" | "blank" | undefined;
|
2279
|
+
}) | ({
|
2280
|
+
type: "video";
|
2281
|
+
value: string;
|
2282
|
+
} & {} & {
|
2283
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
2284
|
+
object?: string | undefined;
|
2285
|
+
hoverTooltip?: boolean | undefined;
|
2286
|
+
operation?: "self" | "router" | "blank" | undefined;
|
1970
2287
|
});
|
1971
2288
|
} & {
|
1972
2289
|
disabledReason?: string | undefined;
|
@@ -1997,6 +2314,8 @@ export declare class Command {
|
|
1997
2314
|
allow_create_label?: string | undefined;
|
1998
2315
|
show_in_record_action_list?: boolean | undefined;
|
1999
2316
|
show_in_default_list?: boolean | undefined;
|
2317
|
+
auto_choose?: boolean | undefined;
|
2318
|
+
is_private?: boolean | undefined;
|
2000
2319
|
}) | ({
|
2001
2320
|
type: "set";
|
2002
2321
|
value: string[] | number[] | {
|
@@ -2018,6 +2337,8 @@ export declare class Command {
|
|
2018
2337
|
loaded?: any[] | undefined;
|
2019
2338
|
allow_create?: boolean | undefined;
|
2020
2339
|
allow_create_label?: string | undefined;
|
2340
|
+
auto_choose?: boolean | undefined;
|
2341
|
+
is_private?: boolean | undefined;
|
2021
2342
|
}) | ({
|
2022
2343
|
type: "provided";
|
2023
2344
|
value: "time" | "text";
|
@@ -2038,6 +2359,8 @@ export declare class Command {
|
|
2038
2359
|
dateTimeArgumentTypeId?: number | undefined;
|
2039
2360
|
allow_create?: boolean | undefined;
|
2040
2361
|
allow_create_label?: string | undefined;
|
2362
|
+
auto_choose?: boolean | undefined;
|
2363
|
+
is_private?: boolean | undefined;
|
2041
2364
|
}) | ({
|
2042
2365
|
type: "dependent";
|
2043
2366
|
value: string;
|
@@ -2057,6 +2380,8 @@ export declare class Command {
|
|
2057
2380
|
loaded?: any[] | undefined;
|
2058
2381
|
allow_create?: boolean | undefined;
|
2059
2382
|
allow_create_label?: string | undefined;
|
2383
|
+
auto_choose?: boolean | undefined;
|
2384
|
+
is_private?: boolean | undefined;
|
2060
2385
|
}) | ({
|
2061
2386
|
type: "function";
|
2062
2387
|
value: string;
|
@@ -2076,6 +2401,34 @@ export declare class Command {
|
|
2076
2401
|
loaded?: any[] | undefined;
|
2077
2402
|
allow_create?: boolean | undefined;
|
2078
2403
|
allow_create_label?: string | undefined;
|
2404
|
+
auto_choose?: boolean | undefined;
|
2405
|
+
is_private?: boolean | undefined;
|
2406
|
+
}) | ({
|
2407
|
+
type: "video";
|
2408
|
+
value: {
|
2409
|
+
source: string;
|
2410
|
+
} & {
|
2411
|
+
title?: string | undefined;
|
2412
|
+
description?: string | undefined;
|
2413
|
+
};
|
2414
|
+
order_key: number;
|
2415
|
+
} & {
|
2416
|
+
label?: string | undefined;
|
2417
|
+
chosen?: string | number | undefined;
|
2418
|
+
selected?: any[] | undefined;
|
2419
|
+
input_type?: string | undefined;
|
2420
|
+
preselected_key?: string | undefined;
|
2421
|
+
label_field?: string | undefined;
|
2422
|
+
availability_condition?: {
|
2423
|
+
field: string;
|
2424
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
2425
|
+
value: string | undefined;
|
2426
|
+
}[] | undefined;
|
2427
|
+
loaded?: any[] | undefined;
|
2428
|
+
allow_create?: boolean | undefined;
|
2429
|
+
allow_create_label?: string | undefined;
|
2430
|
+
is_private?: boolean | undefined;
|
2431
|
+
auto_choose?: boolean | undefined;
|
2079
2432
|
});
|
2080
2433
|
};
|
2081
2434
|
tags: string[];
|
@@ -2136,6 +2489,7 @@ export declare class Command {
|
|
2136
2489
|
confirm: string;
|
2137
2490
|
shortcut: string[];
|
2138
2491
|
explanation: string;
|
2492
|
+
heading: string;
|
2139
2493
|
is_live: boolean;
|
2140
2494
|
category: number | null;
|
2141
2495
|
sort_key: number | null;
|
@@ -2159,13 +2513,20 @@ export declare class Command {
|
|
2159
2513
|
shortcut_win: string[];
|
2160
2514
|
hotkey_mac: string;
|
2161
2515
|
hotkey_win: string;
|
2162
|
-
detail: string | {
|
2516
|
+
detail: string | ({
|
2163
2517
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2164
2518
|
value: string;
|
2165
|
-
}
|
2519
|
+
} & {
|
2520
|
+
position?: "inline" | "popover" | undefined;
|
2521
|
+
}) | (string | ({
|
2166
2522
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2167
2523
|
value: string;
|
2168
|
-
}
|
2524
|
+
} & {
|
2525
|
+
position?: "inline" | "popover" | undefined;
|
2526
|
+
}))[] | null;
|
2527
|
+
} & {
|
2528
|
+
third_party_source?: string | null | undefined;
|
2529
|
+
third_party_id?: string | null | undefined;
|
2169
2530
|
}>;
|
2170
2531
|
static delete: (id: string | number, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<void>;
|
2171
2532
|
static batch: (request: t.TypeOf<typeof GenericBatchRequest>) => Promise<{
|
@@ -2258,6 +2619,14 @@ export declare class Command {
|
|
2258
2619
|
object?: string | undefined;
|
2259
2620
|
hoverTooltip?: boolean | undefined;
|
2260
2621
|
operation?: "self" | "router" | "blank" | undefined;
|
2622
|
+
}) | ({
|
2623
|
+
type: "video";
|
2624
|
+
value: string;
|
2625
|
+
} & {} & {
|
2626
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
2627
|
+
object?: string | undefined;
|
2628
|
+
hoverTooltip?: boolean | undefined;
|
2629
|
+
operation?: "self" | "router" | "blank" | undefined;
|
2261
2630
|
});
|
2262
2631
|
} & {
|
2263
2632
|
disabledReason?: string | undefined;
|
@@ -2288,6 +2657,8 @@ export declare class Command {
|
|
2288
2657
|
allow_create_label?: string | undefined;
|
2289
2658
|
show_in_record_action_list?: boolean | undefined;
|
2290
2659
|
show_in_default_list?: boolean | undefined;
|
2660
|
+
auto_choose?: boolean | undefined;
|
2661
|
+
is_private?: boolean | undefined;
|
2291
2662
|
}) | ({
|
2292
2663
|
type: "set";
|
2293
2664
|
value: string[] | number[] | {
|
@@ -2309,6 +2680,8 @@ export declare class Command {
|
|
2309
2680
|
loaded?: any[] | undefined;
|
2310
2681
|
allow_create?: boolean | undefined;
|
2311
2682
|
allow_create_label?: string | undefined;
|
2683
|
+
auto_choose?: boolean | undefined;
|
2684
|
+
is_private?: boolean | undefined;
|
2312
2685
|
}) | ({
|
2313
2686
|
type: "provided";
|
2314
2687
|
value: "time" | "text";
|
@@ -2329,6 +2702,8 @@ export declare class Command {
|
|
2329
2702
|
dateTimeArgumentTypeId?: number | undefined;
|
2330
2703
|
allow_create?: boolean | undefined;
|
2331
2704
|
allow_create_label?: string | undefined;
|
2705
|
+
auto_choose?: boolean | undefined;
|
2706
|
+
is_private?: boolean | undefined;
|
2332
2707
|
}) | ({
|
2333
2708
|
type: "dependent";
|
2334
2709
|
value: string;
|
@@ -2348,6 +2723,8 @@ export declare class Command {
|
|
2348
2723
|
loaded?: any[] | undefined;
|
2349
2724
|
allow_create?: boolean | undefined;
|
2350
2725
|
allow_create_label?: string | undefined;
|
2726
|
+
auto_choose?: boolean | undefined;
|
2727
|
+
is_private?: boolean | undefined;
|
2351
2728
|
}) | ({
|
2352
2729
|
type: "function";
|
2353
2730
|
value: string;
|
@@ -2367,6 +2744,34 @@ export declare class Command {
|
|
2367
2744
|
loaded?: any[] | undefined;
|
2368
2745
|
allow_create?: boolean | undefined;
|
2369
2746
|
allow_create_label?: string | undefined;
|
2747
|
+
auto_choose?: boolean | undefined;
|
2748
|
+
is_private?: boolean | undefined;
|
2749
|
+
}) | ({
|
2750
|
+
type: "video";
|
2751
|
+
value: {
|
2752
|
+
source: string;
|
2753
|
+
} & {
|
2754
|
+
title?: string | undefined;
|
2755
|
+
description?: string | undefined;
|
2756
|
+
};
|
2757
|
+
order_key: number;
|
2758
|
+
} & {
|
2759
|
+
label?: string | undefined;
|
2760
|
+
chosen?: string | number | undefined;
|
2761
|
+
selected?: any[] | undefined;
|
2762
|
+
input_type?: string | undefined;
|
2763
|
+
preselected_key?: string | undefined;
|
2764
|
+
label_field?: string | undefined;
|
2765
|
+
availability_condition?: {
|
2766
|
+
field: string;
|
2767
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
2768
|
+
value: string | undefined;
|
2769
|
+
}[] | undefined;
|
2770
|
+
loaded?: any[] | undefined;
|
2771
|
+
allow_create?: boolean | undefined;
|
2772
|
+
allow_create_label?: string | undefined;
|
2773
|
+
is_private?: boolean | undefined;
|
2774
|
+
auto_choose?: boolean | undefined;
|
2370
2775
|
});
|
2371
2776
|
};
|
2372
2777
|
tags: string[];
|
@@ -2427,6 +2832,7 @@ export declare class Command {
|
|
2427
2832
|
confirm: string;
|
2428
2833
|
shortcut: string[];
|
2429
2834
|
explanation: string;
|
2835
|
+
heading: string;
|
2430
2836
|
is_live: boolean;
|
2431
2837
|
category: number | null;
|
2432
2838
|
sort_key: number | null;
|
@@ -2450,13 +2856,20 @@ export declare class Command {
|
|
2450
2856
|
shortcut_win: string[];
|
2451
2857
|
hotkey_mac: string;
|
2452
2858
|
hotkey_win: string;
|
2453
|
-
detail: string | {
|
2859
|
+
detail: string | ({
|
2454
2860
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2455
2861
|
value: string;
|
2456
|
-
}
|
2862
|
+
} & {
|
2863
|
+
position?: "inline" | "popover" | undefined;
|
2864
|
+
}) | (string | ({
|
2457
2865
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2458
2866
|
value: string;
|
2459
|
-
}
|
2867
|
+
} & {
|
2868
|
+
position?: "inline" | "popover" | undefined;
|
2869
|
+
}))[] | null;
|
2870
|
+
} & {
|
2871
|
+
third_party_source?: string | null | undefined;
|
2872
|
+
third_party_id?: string | null | undefined;
|
2460
2873
|
})[];
|
2461
2874
|
}>;
|
2462
2875
|
static validateFromClient: (data: any) => Promise<{
|
@@ -2531,6 +2944,7 @@ export declare class Command {
|
|
2531
2944
|
hotkey_win?: string | undefined;
|
2532
2945
|
tags?: string[] | undefined;
|
2533
2946
|
explanation?: string | undefined;
|
2947
|
+
heading?: string | undefined;
|
2534
2948
|
sort_key?: number | null | undefined;
|
2535
2949
|
arguments?: {
|
2536
2950
|
[x: string]: ({
|
@@ -2554,6 +2968,8 @@ export declare class Command {
|
|
2554
2968
|
allow_create_label?: string | undefined;
|
2555
2969
|
show_in_record_action_list?: boolean | undefined;
|
2556
2970
|
show_in_default_list?: boolean | undefined;
|
2971
|
+
auto_choose?: boolean | undefined;
|
2972
|
+
is_private?: boolean | undefined;
|
2557
2973
|
}) | ({
|
2558
2974
|
type: "set";
|
2559
2975
|
value: string[] | number[] | {
|
@@ -2575,6 +2991,8 @@ export declare class Command {
|
|
2575
2991
|
loaded?: any[] | undefined;
|
2576
2992
|
allow_create?: boolean | undefined;
|
2577
2993
|
allow_create_label?: string | undefined;
|
2994
|
+
auto_choose?: boolean | undefined;
|
2995
|
+
is_private?: boolean | undefined;
|
2578
2996
|
}) | ({
|
2579
2997
|
type: "provided";
|
2580
2998
|
value: "time" | "text";
|
@@ -2595,6 +3013,8 @@ export declare class Command {
|
|
2595
3013
|
dateTimeArgumentTypeId?: number | undefined;
|
2596
3014
|
allow_create?: boolean | undefined;
|
2597
3015
|
allow_create_label?: string | undefined;
|
3016
|
+
auto_choose?: boolean | undefined;
|
3017
|
+
is_private?: boolean | undefined;
|
2598
3018
|
}) | ({
|
2599
3019
|
type: "dependent";
|
2600
3020
|
value: string;
|
@@ -2614,6 +3034,8 @@ export declare class Command {
|
|
2614
3034
|
loaded?: any[] | undefined;
|
2615
3035
|
allow_create?: boolean | undefined;
|
2616
3036
|
allow_create_label?: string | undefined;
|
3037
|
+
auto_choose?: boolean | undefined;
|
3038
|
+
is_private?: boolean | undefined;
|
2617
3039
|
}) | ({
|
2618
3040
|
type: "function";
|
2619
3041
|
value: string;
|
@@ -2633,20 +3055,48 @@ export declare class Command {
|
|
2633
3055
|
loaded?: any[] | undefined;
|
2634
3056
|
allow_create?: boolean | undefined;
|
2635
3057
|
allow_create_label?: string | undefined;
|
2636
|
-
|
2637
|
-
|
2638
|
-
|
2639
|
-
|
2640
|
-
|
2641
|
-
|
2642
|
-
|
2643
|
-
|
2644
|
-
|
2645
|
-
|
2646
|
-
|
2647
|
-
|
2648
|
-
|
2649
|
-
|
3058
|
+
auto_choose?: boolean | undefined;
|
3059
|
+
is_private?: boolean | undefined;
|
3060
|
+
}) | ({
|
3061
|
+
type: "video";
|
3062
|
+
value: {
|
3063
|
+
source: string;
|
3064
|
+
} & {
|
3065
|
+
title?: string | undefined;
|
3066
|
+
description?: string | undefined;
|
3067
|
+
};
|
3068
|
+
order_key: number;
|
3069
|
+
} & {
|
3070
|
+
label?: string | undefined;
|
3071
|
+
chosen?: string | number | undefined;
|
3072
|
+
selected?: any[] | undefined;
|
3073
|
+
input_type?: string | undefined;
|
3074
|
+
preselected_key?: string | undefined;
|
3075
|
+
label_field?: string | undefined;
|
3076
|
+
availability_condition?: {
|
3077
|
+
field: string;
|
3078
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
3079
|
+
value: string | undefined;
|
3080
|
+
}[] | undefined;
|
3081
|
+
loaded?: any[] | undefined;
|
3082
|
+
allow_create?: boolean | undefined;
|
3083
|
+
allow_create_label?: string | undefined;
|
3084
|
+
is_private?: boolean | undefined;
|
3085
|
+
auto_choose?: boolean | undefined;
|
3086
|
+
});
|
3087
|
+
} | undefined;
|
3088
|
+
category?: string | number | null | undefined;
|
3089
|
+
icon?: string | null | undefined;
|
3090
|
+
celebrate?: boolean | {
|
3091
|
+
angle?: number | undefined;
|
3092
|
+
spread?: number | undefined;
|
3093
|
+
width?: string | undefined;
|
3094
|
+
height?: string | undefined;
|
3095
|
+
duration?: number | undefined;
|
3096
|
+
dragFriction?: number | undefined;
|
3097
|
+
stagger?: number | undefined;
|
3098
|
+
startVelocity?: number | undefined;
|
3099
|
+
elementCount?: number | undefined;
|
2650
3100
|
decay?: number | undefined;
|
2651
3101
|
colors?: string[] | undefined;
|
2652
3102
|
random?: any;
|
@@ -2674,13 +3124,17 @@ export declare class Command {
|
|
2674
3124
|
value?: string | undefined;
|
2675
3125
|
reason?: string | undefined;
|
2676
3126
|
}))[] | undefined;
|
2677
|
-
detail?: string | {
|
3127
|
+
detail?: string | ({
|
2678
3128
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2679
3129
|
value: string;
|
2680
|
-
}
|
3130
|
+
} & {
|
3131
|
+
position?: "inline" | "popover" | undefined;
|
3132
|
+
}) | ({
|
2681
3133
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2682
3134
|
value: string;
|
2683
|
-
}
|
3135
|
+
} & {
|
3136
|
+
position?: "inline" | "popover" | undefined;
|
3137
|
+
})[] | undefined;
|
2684
3138
|
}>;
|
2685
3139
|
static decode: (data: any) => {
|
2686
3140
|
id: number;
|
@@ -2771,6 +3225,14 @@ export declare class Command {
|
|
2771
3225
|
object?: string | undefined;
|
2772
3226
|
hoverTooltip?: boolean | undefined;
|
2773
3227
|
operation?: "self" | "router" | "blank" | undefined;
|
3228
|
+
}) | ({
|
3229
|
+
type: "video";
|
3230
|
+
value: string;
|
3231
|
+
} & {} & {
|
3232
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3233
|
+
object?: string | undefined;
|
3234
|
+
hoverTooltip?: boolean | undefined;
|
3235
|
+
operation?: "self" | "router" | "blank" | undefined;
|
2774
3236
|
});
|
2775
3237
|
} & {
|
2776
3238
|
disabledReason?: string | undefined;
|
@@ -2801,6 +3263,8 @@ export declare class Command {
|
|
2801
3263
|
allow_create_label?: string | undefined;
|
2802
3264
|
show_in_record_action_list?: boolean | undefined;
|
2803
3265
|
show_in_default_list?: boolean | undefined;
|
3266
|
+
auto_choose?: boolean | undefined;
|
3267
|
+
is_private?: boolean | undefined;
|
2804
3268
|
}) | ({
|
2805
3269
|
type: "set";
|
2806
3270
|
value: string[] | number[] | {
|
@@ -2822,6 +3286,8 @@ export declare class Command {
|
|
2822
3286
|
loaded?: any[] | undefined;
|
2823
3287
|
allow_create?: boolean | undefined;
|
2824
3288
|
allow_create_label?: string | undefined;
|
3289
|
+
auto_choose?: boolean | undefined;
|
3290
|
+
is_private?: boolean | undefined;
|
2825
3291
|
}) | ({
|
2826
3292
|
type: "provided";
|
2827
3293
|
value: "time" | "text";
|
@@ -2842,6 +3308,8 @@ export declare class Command {
|
|
2842
3308
|
dateTimeArgumentTypeId?: number | undefined;
|
2843
3309
|
allow_create?: boolean | undefined;
|
2844
3310
|
allow_create_label?: string | undefined;
|
3311
|
+
auto_choose?: boolean | undefined;
|
3312
|
+
is_private?: boolean | undefined;
|
2845
3313
|
}) | ({
|
2846
3314
|
type: "dependent";
|
2847
3315
|
value: string;
|
@@ -2861,6 +3329,8 @@ export declare class Command {
|
|
2861
3329
|
loaded?: any[] | undefined;
|
2862
3330
|
allow_create?: boolean | undefined;
|
2863
3331
|
allow_create_label?: string | undefined;
|
3332
|
+
auto_choose?: boolean | undefined;
|
3333
|
+
is_private?: boolean | undefined;
|
2864
3334
|
}) | ({
|
2865
3335
|
type: "function";
|
2866
3336
|
value: string;
|
@@ -2880,6 +3350,34 @@ export declare class Command {
|
|
2880
3350
|
loaded?: any[] | undefined;
|
2881
3351
|
allow_create?: boolean | undefined;
|
2882
3352
|
allow_create_label?: string | undefined;
|
3353
|
+
auto_choose?: boolean | undefined;
|
3354
|
+
is_private?: boolean | undefined;
|
3355
|
+
}) | ({
|
3356
|
+
type: "video";
|
3357
|
+
value: {
|
3358
|
+
source: string;
|
3359
|
+
} & {
|
3360
|
+
title?: string | undefined;
|
3361
|
+
description?: string | undefined;
|
3362
|
+
};
|
3363
|
+
order_key: number;
|
3364
|
+
} & {
|
3365
|
+
label?: string | undefined;
|
3366
|
+
chosen?: string | number | undefined;
|
3367
|
+
selected?: any[] | undefined;
|
3368
|
+
input_type?: string | undefined;
|
3369
|
+
preselected_key?: string | undefined;
|
3370
|
+
label_field?: string | undefined;
|
3371
|
+
availability_condition?: {
|
3372
|
+
field: string;
|
3373
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
3374
|
+
value: string | undefined;
|
3375
|
+
}[] | undefined;
|
3376
|
+
loaded?: any[] | undefined;
|
3377
|
+
allow_create?: boolean | undefined;
|
3378
|
+
allow_create_label?: string | undefined;
|
3379
|
+
is_private?: boolean | undefined;
|
3380
|
+
auto_choose?: boolean | undefined;
|
2883
3381
|
});
|
2884
3382
|
};
|
2885
3383
|
tags: string[];
|
@@ -2909,6 +3407,7 @@ export declare class Command {
|
|
2909
3407
|
confirm: string;
|
2910
3408
|
shortcut: string[];
|
2911
3409
|
explanation: string;
|
3410
|
+
heading: string;
|
2912
3411
|
is_live: boolean;
|
2913
3412
|
category: number | null;
|
2914
3413
|
sort_key: number | null;
|
@@ -2932,13 +3431,17 @@ export declare class Command {
|
|
2932
3431
|
shortcut_win: string[];
|
2933
3432
|
hotkey_mac: string;
|
2934
3433
|
hotkey_win: string;
|
2935
|
-
detail: string | {
|
3434
|
+
detail: string | ({
|
2936
3435
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2937
3436
|
value: string;
|
2938
|
-
}
|
3437
|
+
} & {
|
3438
|
+
position?: "inline" | "popover" | undefined;
|
3439
|
+
}) | (string | ({
|
2939
3440
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2940
3441
|
value: string;
|
2941
|
-
}
|
3442
|
+
} & {
|
3443
|
+
position?: "inline" | "popover" | undefined;
|
3444
|
+
}))[] | null;
|
2942
3445
|
};
|
2943
3446
|
static decodeEditorCommand: (data: any) => {
|
2944
3447
|
id: number;
|
@@ -3029,6 +3532,14 @@ export declare class Command {
|
|
3029
3532
|
object?: string | undefined;
|
3030
3533
|
hoverTooltip?: boolean | undefined;
|
3031
3534
|
operation?: "self" | "router" | "blank" | undefined;
|
3535
|
+
}) | ({
|
3536
|
+
type: "video";
|
3537
|
+
value: string;
|
3538
|
+
} & {} & {
|
3539
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3540
|
+
object?: string | undefined;
|
3541
|
+
hoverTooltip?: boolean | undefined;
|
3542
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3032
3543
|
});
|
3033
3544
|
} & {
|
3034
3545
|
disabledReason?: string | undefined;
|
@@ -3059,6 +3570,8 @@ export declare class Command {
|
|
3059
3570
|
allow_create_label?: string | undefined;
|
3060
3571
|
show_in_record_action_list?: boolean | undefined;
|
3061
3572
|
show_in_default_list?: boolean | undefined;
|
3573
|
+
auto_choose?: boolean | undefined;
|
3574
|
+
is_private?: boolean | undefined;
|
3062
3575
|
}) | ({
|
3063
3576
|
type: "set";
|
3064
3577
|
value: string[] | number[] | {
|
@@ -3080,6 +3593,8 @@ export declare class Command {
|
|
3080
3593
|
loaded?: any[] | undefined;
|
3081
3594
|
allow_create?: boolean | undefined;
|
3082
3595
|
allow_create_label?: string | undefined;
|
3596
|
+
auto_choose?: boolean | undefined;
|
3597
|
+
is_private?: boolean | undefined;
|
3083
3598
|
}) | ({
|
3084
3599
|
type: "provided";
|
3085
3600
|
value: "time" | "text";
|
@@ -3100,6 +3615,8 @@ export declare class Command {
|
|
3100
3615
|
dateTimeArgumentTypeId?: number | undefined;
|
3101
3616
|
allow_create?: boolean | undefined;
|
3102
3617
|
allow_create_label?: string | undefined;
|
3618
|
+
auto_choose?: boolean | undefined;
|
3619
|
+
is_private?: boolean | undefined;
|
3103
3620
|
}) | ({
|
3104
3621
|
type: "dependent";
|
3105
3622
|
value: string;
|
@@ -3119,6 +3636,8 @@ export declare class Command {
|
|
3119
3636
|
loaded?: any[] | undefined;
|
3120
3637
|
allow_create?: boolean | undefined;
|
3121
3638
|
allow_create_label?: string | undefined;
|
3639
|
+
auto_choose?: boolean | undefined;
|
3640
|
+
is_private?: boolean | undefined;
|
3122
3641
|
}) | ({
|
3123
3642
|
type: "function";
|
3124
3643
|
value: string;
|
@@ -3138,6 +3657,34 @@ export declare class Command {
|
|
3138
3657
|
loaded?: any[] | undefined;
|
3139
3658
|
allow_create?: boolean | undefined;
|
3140
3659
|
allow_create_label?: string | undefined;
|
3660
|
+
auto_choose?: boolean | undefined;
|
3661
|
+
is_private?: boolean | undefined;
|
3662
|
+
}) | ({
|
3663
|
+
type: "video";
|
3664
|
+
value: {
|
3665
|
+
source: string;
|
3666
|
+
} & {
|
3667
|
+
title?: string | undefined;
|
3668
|
+
description?: string | undefined;
|
3669
|
+
};
|
3670
|
+
order_key: number;
|
3671
|
+
} & {
|
3672
|
+
label?: string | undefined;
|
3673
|
+
chosen?: string | number | undefined;
|
3674
|
+
selected?: any[] | undefined;
|
3675
|
+
input_type?: string | undefined;
|
3676
|
+
preselected_key?: string | undefined;
|
3677
|
+
label_field?: string | undefined;
|
3678
|
+
availability_condition?: {
|
3679
|
+
field: string;
|
3680
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
3681
|
+
value: string | undefined;
|
3682
|
+
}[] | undefined;
|
3683
|
+
loaded?: any[] | undefined;
|
3684
|
+
allow_create?: boolean | undefined;
|
3685
|
+
allow_create_label?: string | undefined;
|
3686
|
+
is_private?: boolean | undefined;
|
3687
|
+
auto_choose?: boolean | undefined;
|
3141
3688
|
});
|
3142
3689
|
};
|
3143
3690
|
tags: string[];
|
@@ -3198,6 +3745,7 @@ export declare class Command {
|
|
3198
3745
|
confirm: string;
|
3199
3746
|
shortcut: string[];
|
3200
3747
|
explanation: string;
|
3748
|
+
heading: string;
|
3201
3749
|
is_live: boolean;
|
3202
3750
|
category: number | null;
|
3203
3751
|
sort_key: number | null;
|
@@ -3221,13 +3769,20 @@ export declare class Command {
|
|
3221
3769
|
shortcut_win: string[];
|
3222
3770
|
hotkey_mac: string;
|
3223
3771
|
hotkey_win: string;
|
3224
|
-
detail: string | {
|
3772
|
+
detail: string | ({
|
3225
3773
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3226
3774
|
value: string;
|
3227
|
-
}
|
3775
|
+
} & {
|
3776
|
+
position?: "inline" | "popover" | undefined;
|
3777
|
+
}) | (string | ({
|
3228
3778
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3229
3779
|
value: string;
|
3230
|
-
}
|
3780
|
+
} & {
|
3781
|
+
position?: "inline" | "popover" | undefined;
|
3782
|
+
}))[] | null;
|
3783
|
+
} & {
|
3784
|
+
third_party_source?: string | null | undefined;
|
3785
|
+
third_party_id?: string | null | undefined;
|
3231
3786
|
};
|
3232
3787
|
static createWithoutThrottle: (object: {
|
3233
3788
|
id: number;
|
@@ -3318,6 +3873,14 @@ export declare class Command {
|
|
3318
3873
|
object?: string | undefined;
|
3319
3874
|
hoverTooltip?: boolean | undefined;
|
3320
3875
|
operation?: "self" | "router" | "blank" | undefined;
|
3876
|
+
}) | ({
|
3877
|
+
type: "video";
|
3878
|
+
value: string;
|
3879
|
+
} & {} & {
|
3880
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
3881
|
+
object?: string | undefined;
|
3882
|
+
hoverTooltip?: boolean | undefined;
|
3883
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3321
3884
|
});
|
3322
3885
|
} & {
|
3323
3886
|
disabledReason?: string | undefined;
|
@@ -3348,6 +3911,8 @@ export declare class Command {
|
|
3348
3911
|
allow_create_label?: string | undefined;
|
3349
3912
|
show_in_record_action_list?: boolean | undefined;
|
3350
3913
|
show_in_default_list?: boolean | undefined;
|
3914
|
+
auto_choose?: boolean | undefined;
|
3915
|
+
is_private?: boolean | undefined;
|
3351
3916
|
}) | ({
|
3352
3917
|
type: "set";
|
3353
3918
|
value: string[] | number[] | {
|
@@ -3369,6 +3934,8 @@ export declare class Command {
|
|
3369
3934
|
loaded?: any[] | undefined;
|
3370
3935
|
allow_create?: boolean | undefined;
|
3371
3936
|
allow_create_label?: string | undefined;
|
3937
|
+
auto_choose?: boolean | undefined;
|
3938
|
+
is_private?: boolean | undefined;
|
3372
3939
|
}) | ({
|
3373
3940
|
type: "provided";
|
3374
3941
|
value: "time" | "text";
|
@@ -3389,6 +3956,8 @@ export declare class Command {
|
|
3389
3956
|
dateTimeArgumentTypeId?: number | undefined;
|
3390
3957
|
allow_create?: boolean | undefined;
|
3391
3958
|
allow_create_label?: string | undefined;
|
3959
|
+
auto_choose?: boolean | undefined;
|
3960
|
+
is_private?: boolean | undefined;
|
3392
3961
|
}) | ({
|
3393
3962
|
type: "dependent";
|
3394
3963
|
value: string;
|
@@ -3408,6 +3977,8 @@ export declare class Command {
|
|
3408
3977
|
loaded?: any[] | undefined;
|
3409
3978
|
allow_create?: boolean | undefined;
|
3410
3979
|
allow_create_label?: string | undefined;
|
3980
|
+
auto_choose?: boolean | undefined;
|
3981
|
+
is_private?: boolean | undefined;
|
3411
3982
|
}) | ({
|
3412
3983
|
type: "function";
|
3413
3984
|
value: string;
|
@@ -3427,6 +3998,34 @@ export declare class Command {
|
|
3427
3998
|
loaded?: any[] | undefined;
|
3428
3999
|
allow_create?: boolean | undefined;
|
3429
4000
|
allow_create_label?: string | undefined;
|
4001
|
+
auto_choose?: boolean | undefined;
|
4002
|
+
is_private?: boolean | undefined;
|
4003
|
+
}) | ({
|
4004
|
+
type: "video";
|
4005
|
+
value: {
|
4006
|
+
source: string;
|
4007
|
+
} & {
|
4008
|
+
title?: string | undefined;
|
4009
|
+
description?: string | undefined;
|
4010
|
+
};
|
4011
|
+
order_key: number;
|
4012
|
+
} & {
|
4013
|
+
label?: string | undefined;
|
4014
|
+
chosen?: string | number | undefined;
|
4015
|
+
selected?: any[] | undefined;
|
4016
|
+
input_type?: string | undefined;
|
4017
|
+
preselected_key?: string | undefined;
|
4018
|
+
label_field?: string | undefined;
|
4019
|
+
availability_condition?: {
|
4020
|
+
field: string;
|
4021
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
4022
|
+
value: string | undefined;
|
4023
|
+
}[] | undefined;
|
4024
|
+
loaded?: any[] | undefined;
|
4025
|
+
allow_create?: boolean | undefined;
|
4026
|
+
allow_create_label?: string | undefined;
|
4027
|
+
is_private?: boolean | undefined;
|
4028
|
+
auto_choose?: boolean | undefined;
|
3430
4029
|
});
|
3431
4030
|
};
|
3432
4031
|
tags: string[];
|
@@ -3487,6 +4086,7 @@ export declare class Command {
|
|
3487
4086
|
confirm: string;
|
3488
4087
|
shortcut: string[];
|
3489
4088
|
explanation: string;
|
4089
|
+
heading: string;
|
3490
4090
|
is_live: boolean;
|
3491
4091
|
category: number | null;
|
3492
4092
|
sort_key: number | null;
|
@@ -3510,13 +4110,20 @@ export declare class Command {
|
|
3510
4110
|
shortcut_win: string[];
|
3511
4111
|
hotkey_mac: string;
|
3512
4112
|
hotkey_win: string;
|
3513
|
-
detail: string | {
|
4113
|
+
detail: string | ({
|
3514
4114
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3515
4115
|
value: string;
|
3516
|
-
}
|
4116
|
+
} & {
|
4117
|
+
position?: "inline" | "popover" | undefined;
|
4118
|
+
}) | (string | ({
|
3517
4119
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3518
4120
|
value: string;
|
3519
|
-
}
|
4121
|
+
} & {
|
4122
|
+
position?: "inline" | "popover" | undefined;
|
4123
|
+
}))[] | null;
|
4124
|
+
} & {
|
4125
|
+
third_party_source?: string | null | undefined;
|
4126
|
+
third_party_id?: string | null | undefined;
|
3520
4127
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
3521
4128
|
id: number;
|
3522
4129
|
organization: string | number;
|
@@ -3606,6 +4213,14 @@ export declare class Command {
|
|
3606
4213
|
object?: string | undefined;
|
3607
4214
|
hoverTooltip?: boolean | undefined;
|
3608
4215
|
operation?: "self" | "router" | "blank" | undefined;
|
4216
|
+
}) | ({
|
4217
|
+
type: "video";
|
4218
|
+
value: string;
|
4219
|
+
} & {} & {
|
4220
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
4221
|
+
object?: string | undefined;
|
4222
|
+
hoverTooltip?: boolean | undefined;
|
4223
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3609
4224
|
});
|
3610
4225
|
} & {
|
3611
4226
|
disabledReason?: string | undefined;
|
@@ -3636,6 +4251,8 @@ export declare class Command {
|
|
3636
4251
|
allow_create_label?: string | undefined;
|
3637
4252
|
show_in_record_action_list?: boolean | undefined;
|
3638
4253
|
show_in_default_list?: boolean | undefined;
|
4254
|
+
auto_choose?: boolean | undefined;
|
4255
|
+
is_private?: boolean | undefined;
|
3639
4256
|
}) | ({
|
3640
4257
|
type: "set";
|
3641
4258
|
value: string[] | number[] | {
|
@@ -3657,6 +4274,8 @@ export declare class Command {
|
|
3657
4274
|
loaded?: any[] | undefined;
|
3658
4275
|
allow_create?: boolean | undefined;
|
3659
4276
|
allow_create_label?: string | undefined;
|
4277
|
+
auto_choose?: boolean | undefined;
|
4278
|
+
is_private?: boolean | undefined;
|
3660
4279
|
}) | ({
|
3661
4280
|
type: "provided";
|
3662
4281
|
value: "time" | "text";
|
@@ -3677,6 +4296,8 @@ export declare class Command {
|
|
3677
4296
|
dateTimeArgumentTypeId?: number | undefined;
|
3678
4297
|
allow_create?: boolean | undefined;
|
3679
4298
|
allow_create_label?: string | undefined;
|
4299
|
+
auto_choose?: boolean | undefined;
|
4300
|
+
is_private?: boolean | undefined;
|
3680
4301
|
}) | ({
|
3681
4302
|
type: "dependent";
|
3682
4303
|
value: string;
|
@@ -3696,6 +4317,8 @@ export declare class Command {
|
|
3696
4317
|
loaded?: any[] | undefined;
|
3697
4318
|
allow_create?: boolean | undefined;
|
3698
4319
|
allow_create_label?: string | undefined;
|
4320
|
+
auto_choose?: boolean | undefined;
|
4321
|
+
is_private?: boolean | undefined;
|
3699
4322
|
}) | ({
|
3700
4323
|
type: "function";
|
3701
4324
|
value: string;
|
@@ -3715,6 +4338,34 @@ export declare class Command {
|
|
3715
4338
|
loaded?: any[] | undefined;
|
3716
4339
|
allow_create?: boolean | undefined;
|
3717
4340
|
allow_create_label?: string | undefined;
|
4341
|
+
auto_choose?: boolean | undefined;
|
4342
|
+
is_private?: boolean | undefined;
|
4343
|
+
}) | ({
|
4344
|
+
type: "video";
|
4345
|
+
value: {
|
4346
|
+
source: string;
|
4347
|
+
} & {
|
4348
|
+
title?: string | undefined;
|
4349
|
+
description?: string | undefined;
|
4350
|
+
};
|
4351
|
+
order_key: number;
|
4352
|
+
} & {
|
4353
|
+
label?: string | undefined;
|
4354
|
+
chosen?: string | number | undefined;
|
4355
|
+
selected?: any[] | undefined;
|
4356
|
+
input_type?: string | undefined;
|
4357
|
+
preselected_key?: string | undefined;
|
4358
|
+
label_field?: string | undefined;
|
4359
|
+
availability_condition?: {
|
4360
|
+
field: string;
|
4361
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
4362
|
+
value: string | undefined;
|
4363
|
+
}[] | undefined;
|
4364
|
+
loaded?: any[] | undefined;
|
4365
|
+
allow_create?: boolean | undefined;
|
4366
|
+
allow_create_label?: string | undefined;
|
4367
|
+
is_private?: boolean | undefined;
|
4368
|
+
auto_choose?: boolean | undefined;
|
3718
4369
|
});
|
3719
4370
|
};
|
3720
4371
|
tags: string[];
|
@@ -3775,6 +4426,7 @@ export declare class Command {
|
|
3775
4426
|
confirm: string;
|
3776
4427
|
shortcut: string[];
|
3777
4428
|
explanation: string;
|
4429
|
+
heading: string;
|
3778
4430
|
is_live: boolean;
|
3779
4431
|
category: number | null;
|
3780
4432
|
sort_key: number | null;
|
@@ -3798,13 +4450,20 @@ export declare class Command {
|
|
3798
4450
|
shortcut_win: string[];
|
3799
4451
|
hotkey_mac: string;
|
3800
4452
|
hotkey_win: string;
|
3801
|
-
detail: string | {
|
4453
|
+
detail: string | ({
|
3802
4454
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3803
4455
|
value: string;
|
3804
|
-
}
|
4456
|
+
} & {
|
4457
|
+
position?: "inline" | "popover" | undefined;
|
4458
|
+
}) | (string | ({
|
3805
4459
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3806
4460
|
value: string;
|
3807
|
-
}
|
4461
|
+
} & {
|
4462
|
+
position?: "inline" | "popover" | undefined;
|
4463
|
+
}))[] | null;
|
4464
|
+
} & {
|
4465
|
+
third_party_source?: string | null | undefined;
|
4466
|
+
third_party_id?: string | null | undefined;
|
3808
4467
|
}>;
|
3809
4468
|
static updateWithoutThrottle: (object: {
|
3810
4469
|
id: number;
|
@@ -3895,6 +4554,14 @@ export declare class Command {
|
|
3895
4554
|
object?: string | undefined;
|
3896
4555
|
hoverTooltip?: boolean | undefined;
|
3897
4556
|
operation?: "self" | "router" | "blank" | undefined;
|
4557
|
+
}) | ({
|
4558
|
+
type: "video";
|
4559
|
+
value: string;
|
4560
|
+
} & {} & {
|
4561
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
4562
|
+
object?: string | undefined;
|
4563
|
+
hoverTooltip?: boolean | undefined;
|
4564
|
+
operation?: "self" | "router" | "blank" | undefined;
|
3898
4565
|
});
|
3899
4566
|
} & {
|
3900
4567
|
disabledReason?: string | undefined;
|
@@ -3925,6 +4592,8 @@ export declare class Command {
|
|
3925
4592
|
allow_create_label?: string | undefined;
|
3926
4593
|
show_in_record_action_list?: boolean | undefined;
|
3927
4594
|
show_in_default_list?: boolean | undefined;
|
4595
|
+
auto_choose?: boolean | undefined;
|
4596
|
+
is_private?: boolean | undefined;
|
3928
4597
|
}) | ({
|
3929
4598
|
type: "set";
|
3930
4599
|
value: string[] | number[] | {
|
@@ -3946,6 +4615,8 @@ export declare class Command {
|
|
3946
4615
|
loaded?: any[] | undefined;
|
3947
4616
|
allow_create?: boolean | undefined;
|
3948
4617
|
allow_create_label?: string | undefined;
|
4618
|
+
auto_choose?: boolean | undefined;
|
4619
|
+
is_private?: boolean | undefined;
|
3949
4620
|
}) | ({
|
3950
4621
|
type: "provided";
|
3951
4622
|
value: "time" | "text";
|
@@ -3966,6 +4637,8 @@ export declare class Command {
|
|
3966
4637
|
dateTimeArgumentTypeId?: number | undefined;
|
3967
4638
|
allow_create?: boolean | undefined;
|
3968
4639
|
allow_create_label?: string | undefined;
|
4640
|
+
auto_choose?: boolean | undefined;
|
4641
|
+
is_private?: boolean | undefined;
|
3969
4642
|
}) | ({
|
3970
4643
|
type: "dependent";
|
3971
4644
|
value: string;
|
@@ -3985,6 +4658,8 @@ export declare class Command {
|
|
3985
4658
|
loaded?: any[] | undefined;
|
3986
4659
|
allow_create?: boolean | undefined;
|
3987
4660
|
allow_create_label?: string | undefined;
|
4661
|
+
auto_choose?: boolean | undefined;
|
4662
|
+
is_private?: boolean | undefined;
|
3988
4663
|
}) | ({
|
3989
4664
|
type: "function";
|
3990
4665
|
value: string;
|
@@ -4004,6 +4679,34 @@ export declare class Command {
|
|
4004
4679
|
loaded?: any[] | undefined;
|
4005
4680
|
allow_create?: boolean | undefined;
|
4006
4681
|
allow_create_label?: string | undefined;
|
4682
|
+
auto_choose?: boolean | undefined;
|
4683
|
+
is_private?: boolean | undefined;
|
4684
|
+
}) | ({
|
4685
|
+
type: "video";
|
4686
|
+
value: {
|
4687
|
+
source: string;
|
4688
|
+
} & {
|
4689
|
+
title?: string | undefined;
|
4690
|
+
description?: string | undefined;
|
4691
|
+
};
|
4692
|
+
order_key: number;
|
4693
|
+
} & {
|
4694
|
+
label?: string | undefined;
|
4695
|
+
chosen?: string | number | undefined;
|
4696
|
+
selected?: any[] | undefined;
|
4697
|
+
input_type?: string | undefined;
|
4698
|
+
preselected_key?: string | undefined;
|
4699
|
+
label_field?: string | undefined;
|
4700
|
+
availability_condition?: {
|
4701
|
+
field: string;
|
4702
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
4703
|
+
value: string | undefined;
|
4704
|
+
}[] | undefined;
|
4705
|
+
loaded?: any[] | undefined;
|
4706
|
+
allow_create?: boolean | undefined;
|
4707
|
+
allow_create_label?: string | undefined;
|
4708
|
+
is_private?: boolean | undefined;
|
4709
|
+
auto_choose?: boolean | undefined;
|
4007
4710
|
});
|
4008
4711
|
};
|
4009
4712
|
tags: string[];
|
@@ -4064,6 +4767,7 @@ export declare class Command {
|
|
4064
4767
|
confirm: string;
|
4065
4768
|
shortcut: string[];
|
4066
4769
|
explanation: string;
|
4770
|
+
heading: string;
|
4067
4771
|
is_live: boolean;
|
4068
4772
|
category: number | null;
|
4069
4773
|
sort_key: number | null;
|
@@ -4087,13 +4791,20 @@ export declare class Command {
|
|
4087
4791
|
shortcut_win: string[];
|
4088
4792
|
hotkey_mac: string;
|
4089
4793
|
hotkey_win: string;
|
4090
|
-
detail: string | {
|
4794
|
+
detail: string | ({
|
4091
4795
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4092
4796
|
value: string;
|
4093
|
-
}
|
4797
|
+
} & {
|
4798
|
+
position?: "inline" | "popover" | undefined;
|
4799
|
+
}) | (string | ({
|
4094
4800
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4095
4801
|
value: string;
|
4096
|
-
}
|
4802
|
+
} & {
|
4803
|
+
position?: "inline" | "popover" | undefined;
|
4804
|
+
}))[] | null;
|
4805
|
+
} & {
|
4806
|
+
third_party_source?: string | null | undefined;
|
4807
|
+
third_party_id?: string | null | undefined;
|
4097
4808
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
4098
4809
|
id: number;
|
4099
4810
|
organization: string | number;
|
@@ -4183,6 +4894,14 @@ export declare class Command {
|
|
4183
4894
|
object?: string | undefined;
|
4184
4895
|
hoverTooltip?: boolean | undefined;
|
4185
4896
|
operation?: "self" | "router" | "blank" | undefined;
|
4897
|
+
}) | ({
|
4898
|
+
type: "video";
|
4899
|
+
value: string;
|
4900
|
+
} & {} & {
|
4901
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
4902
|
+
object?: string | undefined;
|
4903
|
+
hoverTooltip?: boolean | undefined;
|
4904
|
+
operation?: "self" | "router" | "blank" | undefined;
|
4186
4905
|
});
|
4187
4906
|
} & {
|
4188
4907
|
disabledReason?: string | undefined;
|
@@ -4213,6 +4932,8 @@ export declare class Command {
|
|
4213
4932
|
allow_create_label?: string | undefined;
|
4214
4933
|
show_in_record_action_list?: boolean | undefined;
|
4215
4934
|
show_in_default_list?: boolean | undefined;
|
4935
|
+
auto_choose?: boolean | undefined;
|
4936
|
+
is_private?: boolean | undefined;
|
4216
4937
|
}) | ({
|
4217
4938
|
type: "set";
|
4218
4939
|
value: string[] | number[] | {
|
@@ -4234,6 +4955,8 @@ export declare class Command {
|
|
4234
4955
|
loaded?: any[] | undefined;
|
4235
4956
|
allow_create?: boolean | undefined;
|
4236
4957
|
allow_create_label?: string | undefined;
|
4958
|
+
auto_choose?: boolean | undefined;
|
4959
|
+
is_private?: boolean | undefined;
|
4237
4960
|
}) | ({
|
4238
4961
|
type: "provided";
|
4239
4962
|
value: "time" | "text";
|
@@ -4254,6 +4977,8 @@ export declare class Command {
|
|
4254
4977
|
dateTimeArgumentTypeId?: number | undefined;
|
4255
4978
|
allow_create?: boolean | undefined;
|
4256
4979
|
allow_create_label?: string | undefined;
|
4980
|
+
auto_choose?: boolean | undefined;
|
4981
|
+
is_private?: boolean | undefined;
|
4257
4982
|
}) | ({
|
4258
4983
|
type: "dependent";
|
4259
4984
|
value: string;
|
@@ -4273,6 +4998,8 @@ export declare class Command {
|
|
4273
4998
|
loaded?: any[] | undefined;
|
4274
4999
|
allow_create?: boolean | undefined;
|
4275
5000
|
allow_create_label?: string | undefined;
|
5001
|
+
auto_choose?: boolean | undefined;
|
5002
|
+
is_private?: boolean | undefined;
|
4276
5003
|
}) | ({
|
4277
5004
|
type: "function";
|
4278
5005
|
value: string;
|
@@ -4292,6 +5019,34 @@ export declare class Command {
|
|
4292
5019
|
loaded?: any[] | undefined;
|
4293
5020
|
allow_create?: boolean | undefined;
|
4294
5021
|
allow_create_label?: string | undefined;
|
5022
|
+
auto_choose?: boolean | undefined;
|
5023
|
+
is_private?: boolean | undefined;
|
5024
|
+
}) | ({
|
5025
|
+
type: "video";
|
5026
|
+
value: {
|
5027
|
+
source: string;
|
5028
|
+
} & {
|
5029
|
+
title?: string | undefined;
|
5030
|
+
description?: string | undefined;
|
5031
|
+
};
|
5032
|
+
order_key: number;
|
5033
|
+
} & {
|
5034
|
+
label?: string | undefined;
|
5035
|
+
chosen?: string | number | undefined;
|
5036
|
+
selected?: any[] | undefined;
|
5037
|
+
input_type?: string | undefined;
|
5038
|
+
preselected_key?: string | undefined;
|
5039
|
+
label_field?: string | undefined;
|
5040
|
+
availability_condition?: {
|
5041
|
+
field: string;
|
5042
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
5043
|
+
value: string | undefined;
|
5044
|
+
}[] | undefined;
|
5045
|
+
loaded?: any[] | undefined;
|
5046
|
+
allow_create?: boolean | undefined;
|
5047
|
+
allow_create_label?: string | undefined;
|
5048
|
+
is_private?: boolean | undefined;
|
5049
|
+
auto_choose?: boolean | undefined;
|
4295
5050
|
});
|
4296
5051
|
};
|
4297
5052
|
tags: string[];
|
@@ -4352,6 +5107,7 @@ export declare class Command {
|
|
4352
5107
|
confirm: string;
|
4353
5108
|
shortcut: string[];
|
4354
5109
|
explanation: string;
|
5110
|
+
heading: string;
|
4355
5111
|
is_live: boolean;
|
4356
5112
|
category: number | null;
|
4357
5113
|
sort_key: number | null;
|
@@ -4375,13 +5131,20 @@ export declare class Command {
|
|
4375
5131
|
shortcut_win: string[];
|
4376
5132
|
hotkey_mac: string;
|
4377
5133
|
hotkey_win: string;
|
4378
|
-
detail: string | {
|
5134
|
+
detail: string | ({
|
4379
5135
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4380
5136
|
value: string;
|
4381
|
-
}
|
5137
|
+
} & {
|
5138
|
+
position?: "inline" | "popover" | undefined;
|
5139
|
+
}) | (string | ({
|
4382
5140
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4383
5141
|
value: string;
|
4384
|
-
}
|
5142
|
+
} & {
|
5143
|
+
position?: "inline" | "popover" | undefined;
|
5144
|
+
}))[] | null;
|
5145
|
+
} & {
|
5146
|
+
third_party_source?: string | null | undefined;
|
5147
|
+
third_party_id?: string | null | undefined;
|
4385
5148
|
}>;
|
4386
5149
|
static deleteWithoutThrottle: (id: string | number, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<void>;
|
4387
5150
|
static commandUID: (cmd: t.TypeOf<typeof CommandV> | t.TypeOf<typeof EditorCommandV>) => string;
|
@@ -4474,6 +5237,14 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4474
5237
|
object: t.StringC;
|
4475
5238
|
hoverTooltip: t.BooleanC;
|
4476
5239
|
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
5240
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
5241
|
+
type: t.LiteralC<"video">;
|
5242
|
+
value: t.StringC;
|
5243
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
5244
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
5245
|
+
object: t.StringC;
|
5246
|
+
hoverTooltip: t.BooleanC;
|
5247
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
4477
5248
|
}>]>]>]>;
|
4478
5249
|
}>, t.PartialC<{
|
4479
5250
|
disabledReason: t.StringC;
|
@@ -4503,6 +5274,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4503
5274
|
allow_create_label: t.StringC;
|
4504
5275
|
show_in_record_action_list: t.BooleanC;
|
4505
5276
|
show_in_default_list: t.BooleanC;
|
5277
|
+
auto_choose: t.BooleanC;
|
5278
|
+
is_private: t.BooleanC;
|
4506
5279
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4507
5280
|
type: t.LiteralC<"set">;
|
4508
5281
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -4522,6 +5295,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4522
5295
|
loaded: t.ArrayC<t.AnyC>;
|
4523
5296
|
allow_create: t.BooleanC;
|
4524
5297
|
allow_create_label: t.StringC;
|
5298
|
+
auto_choose: t.BooleanC;
|
5299
|
+
is_private: t.BooleanC;
|
4525
5300
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4526
5301
|
type: t.LiteralC<"provided">;
|
4527
5302
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -4542,6 +5317,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4542
5317
|
dateTimeArgumentTypeId: t.NumberC;
|
4543
5318
|
allow_create: t.BooleanC;
|
4544
5319
|
allow_create_label: t.StringC;
|
5320
|
+
auto_choose: t.BooleanC;
|
5321
|
+
is_private: t.BooleanC;
|
4545
5322
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4546
5323
|
type: t.LiteralC<"dependent">;
|
4547
5324
|
value: t.StringC;
|
@@ -4561,6 +5338,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4561
5338
|
loaded: t.ArrayC<t.AnyC>;
|
4562
5339
|
allow_create: t.BooleanC;
|
4563
5340
|
allow_create_label: t.StringC;
|
5341
|
+
auto_choose: t.BooleanC;
|
5342
|
+
is_private: t.BooleanC;
|
4564
5343
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4565
5344
|
type: t.LiteralC<"function">;
|
4566
5345
|
value: t.StringC;
|
@@ -4580,6 +5359,34 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4580
5359
|
loaded: t.ArrayC<t.AnyC>;
|
4581
5360
|
allow_create: t.BooleanC;
|
4582
5361
|
allow_create_label: t.StringC;
|
5362
|
+
auto_choose: t.BooleanC;
|
5363
|
+
is_private: t.BooleanC;
|
5364
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
5365
|
+
type: t.LiteralC<"video">;
|
5366
|
+
value: t.IntersectionC<[t.TypeC<{
|
5367
|
+
source: t.StringC;
|
5368
|
+
}>, t.PartialC<{
|
5369
|
+
title: t.StringC;
|
5370
|
+
description: t.StringC;
|
5371
|
+
}>]>;
|
5372
|
+
order_key: t.NumberC;
|
5373
|
+
}>, t.PartialC<{
|
5374
|
+
label: t.StringC;
|
5375
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
5376
|
+
selected: t.ArrayC<t.AnyC>;
|
5377
|
+
input_type: t.StringC;
|
5378
|
+
preselected_key: t.StringC;
|
5379
|
+
label_field: t.StringC;
|
5380
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
5381
|
+
field: t.StringC;
|
5382
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
5383
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
5384
|
+
}>>;
|
5385
|
+
loaded: t.ArrayC<t.AnyC>;
|
5386
|
+
allow_create: t.BooleanC;
|
5387
|
+
allow_create_label: t.StringC;
|
5388
|
+
is_private: t.BooleanC;
|
5389
|
+
auto_choose: t.BooleanC;
|
4583
5390
|
}>]>]>>;
|
4584
5391
|
tags: t.ArrayC<t.StringC>;
|
4585
5392
|
availability_rules: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
@@ -4644,6 +5451,7 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4644
5451
|
confirm: t.StringC;
|
4645
5452
|
shortcut: t.ArrayC<t.StringC>;
|
4646
5453
|
explanation: t.StringC;
|
5454
|
+
heading: t.StringC;
|
4647
5455
|
is_live: t.BooleanC;
|
4648
5456
|
category: t.UnionC<[t.NumberC, t.NullC]>;
|
4649
5457
|
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
@@ -4667,16 +5475,20 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4667
5475
|
shortcut_win: t.ArrayC<t.StringC>;
|
4668
5476
|
hotkey_mac: t.StringC;
|
4669
5477
|
hotkey_win: t.StringC;
|
4670
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
5478
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
4671
5479
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
4672
5480
|
value: t.StringC;
|
4673
|
-
}>, t.
|
5481
|
+
}>, t.PartialC<{
|
5482
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
5483
|
+
}>]>, t.ArrayC<t.UnionC<[t.StringC, t.IntersectionC<[t.TypeC<{
|
4674
5484
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
4675
5485
|
value: t.StringC;
|
4676
|
-
}
|
4677
|
-
|
4678
|
-
|
4679
|
-
|
5486
|
+
}>, t.PartialC<{
|
5487
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
5488
|
+
}>]>]>>]>;
|
5489
|
+
}>, t.PartialC<{
|
5490
|
+
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
5491
|
+
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
4680
5492
|
}>]>;
|
4681
5493
|
export declare class HelpSyncCommand {
|
4682
5494
|
static listHelpCenter: (onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<({
|
@@ -4768,6 +5580,14 @@ export declare class HelpSyncCommand {
|
|
4768
5580
|
object?: string | undefined;
|
4769
5581
|
hoverTooltip?: boolean | undefined;
|
4770
5582
|
operation?: "self" | "router" | "blank" | undefined;
|
5583
|
+
}) | ({
|
5584
|
+
type: "video";
|
5585
|
+
value: string;
|
5586
|
+
} & {} & {
|
5587
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
5588
|
+
object?: string | undefined;
|
5589
|
+
hoverTooltip?: boolean | undefined;
|
5590
|
+
operation?: "self" | "router" | "blank" | undefined;
|
4771
5591
|
});
|
4772
5592
|
} & {
|
4773
5593
|
disabledReason?: string | undefined;
|
@@ -4798,6 +5618,8 @@ export declare class HelpSyncCommand {
|
|
4798
5618
|
allow_create_label?: string | undefined;
|
4799
5619
|
show_in_record_action_list?: boolean | undefined;
|
4800
5620
|
show_in_default_list?: boolean | undefined;
|
5621
|
+
auto_choose?: boolean | undefined;
|
5622
|
+
is_private?: boolean | undefined;
|
4801
5623
|
}) | ({
|
4802
5624
|
type: "set";
|
4803
5625
|
value: string[] | number[] | {
|
@@ -4819,6 +5641,8 @@ export declare class HelpSyncCommand {
|
|
4819
5641
|
loaded?: any[] | undefined;
|
4820
5642
|
allow_create?: boolean | undefined;
|
4821
5643
|
allow_create_label?: string | undefined;
|
5644
|
+
auto_choose?: boolean | undefined;
|
5645
|
+
is_private?: boolean | undefined;
|
4822
5646
|
}) | ({
|
4823
5647
|
type: "provided";
|
4824
5648
|
value: "time" | "text";
|
@@ -4839,6 +5663,8 @@ export declare class HelpSyncCommand {
|
|
4839
5663
|
dateTimeArgumentTypeId?: number | undefined;
|
4840
5664
|
allow_create?: boolean | undefined;
|
4841
5665
|
allow_create_label?: string | undefined;
|
5666
|
+
auto_choose?: boolean | undefined;
|
5667
|
+
is_private?: boolean | undefined;
|
4842
5668
|
}) | ({
|
4843
5669
|
type: "dependent";
|
4844
5670
|
value: string;
|
@@ -4858,6 +5684,8 @@ export declare class HelpSyncCommand {
|
|
4858
5684
|
loaded?: any[] | undefined;
|
4859
5685
|
allow_create?: boolean | undefined;
|
4860
5686
|
allow_create_label?: string | undefined;
|
5687
|
+
auto_choose?: boolean | undefined;
|
5688
|
+
is_private?: boolean | undefined;
|
4861
5689
|
}) | ({
|
4862
5690
|
type: "function";
|
4863
5691
|
value: string;
|
@@ -4877,6 +5705,34 @@ export declare class HelpSyncCommand {
|
|
4877
5705
|
loaded?: any[] | undefined;
|
4878
5706
|
allow_create?: boolean | undefined;
|
4879
5707
|
allow_create_label?: string | undefined;
|
5708
|
+
auto_choose?: boolean | undefined;
|
5709
|
+
is_private?: boolean | undefined;
|
5710
|
+
}) | ({
|
5711
|
+
type: "video";
|
5712
|
+
value: {
|
5713
|
+
source: string;
|
5714
|
+
} & {
|
5715
|
+
title?: string | undefined;
|
5716
|
+
description?: string | undefined;
|
5717
|
+
};
|
5718
|
+
order_key: number;
|
5719
|
+
} & {
|
5720
|
+
label?: string | undefined;
|
5721
|
+
chosen?: string | number | undefined;
|
5722
|
+
selected?: any[] | undefined;
|
5723
|
+
input_type?: string | undefined;
|
5724
|
+
preselected_key?: string | undefined;
|
5725
|
+
label_field?: string | undefined;
|
5726
|
+
availability_condition?: {
|
5727
|
+
field: string;
|
5728
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
5729
|
+
value: string | undefined;
|
5730
|
+
}[] | undefined;
|
5731
|
+
loaded?: any[] | undefined;
|
5732
|
+
allow_create?: boolean | undefined;
|
5733
|
+
allow_create_label?: string | undefined;
|
5734
|
+
is_private?: boolean | undefined;
|
5735
|
+
auto_choose?: boolean | undefined;
|
4880
5736
|
});
|
4881
5737
|
};
|
4882
5738
|
tags: string[];
|
@@ -4906,6 +5762,7 @@ export declare class HelpSyncCommand {
|
|
4906
5762
|
confirm: string;
|
4907
5763
|
shortcut: string[];
|
4908
5764
|
explanation: string;
|
5765
|
+
heading: string;
|
4909
5766
|
is_live: boolean;
|
4910
5767
|
category: number | null;
|
4911
5768
|
sort_key: number | null;
|
@@ -4929,16 +5786,20 @@ export declare class HelpSyncCommand {
|
|
4929
5786
|
shortcut_win: string[];
|
4930
5787
|
hotkey_mac: string;
|
4931
5788
|
hotkey_win: string;
|
4932
|
-
detail: string | {
|
5789
|
+
detail: string | ({
|
4933
5790
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4934
5791
|
value: string;
|
4935
|
-
}
|
5792
|
+
} & {
|
5793
|
+
position?: "inline" | "popover" | undefined;
|
5794
|
+
}) | (string | ({
|
4936
5795
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4937
5796
|
value: string;
|
4938
|
-
}
|
5797
|
+
} & {
|
5798
|
+
position?: "inline" | "popover" | undefined;
|
5799
|
+
}))[] | null;
|
4939
5800
|
} & {
|
4940
|
-
third_party_source
|
4941
|
-
third_party_id
|
5801
|
+
third_party_source?: string | null | undefined;
|
5802
|
+
third_party_id?: string | null | undefined;
|
4942
5803
|
})[]>;
|
4943
5804
|
static updateWithoutThrottle: (object: {
|
4944
5805
|
id: number;
|
@@ -5029,6 +5890,14 @@ export declare class HelpSyncCommand {
|
|
5029
5890
|
object?: string | undefined;
|
5030
5891
|
hoverTooltip?: boolean | undefined;
|
5031
5892
|
operation?: "self" | "router" | "blank" | undefined;
|
5893
|
+
}) | ({
|
5894
|
+
type: "video";
|
5895
|
+
value: string;
|
5896
|
+
} & {} & {
|
5897
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
5898
|
+
object?: string | undefined;
|
5899
|
+
hoverTooltip?: boolean | undefined;
|
5900
|
+
operation?: "self" | "router" | "blank" | undefined;
|
5032
5901
|
});
|
5033
5902
|
} & {
|
5034
5903
|
disabledReason?: string | undefined;
|
@@ -5059,6 +5928,8 @@ export declare class HelpSyncCommand {
|
|
5059
5928
|
allow_create_label?: string | undefined;
|
5060
5929
|
show_in_record_action_list?: boolean | undefined;
|
5061
5930
|
show_in_default_list?: boolean | undefined;
|
5931
|
+
auto_choose?: boolean | undefined;
|
5932
|
+
is_private?: boolean | undefined;
|
5062
5933
|
}) | ({
|
5063
5934
|
type: "set";
|
5064
5935
|
value: string[] | number[] | {
|
@@ -5080,6 +5951,8 @@ export declare class HelpSyncCommand {
|
|
5080
5951
|
loaded?: any[] | undefined;
|
5081
5952
|
allow_create?: boolean | undefined;
|
5082
5953
|
allow_create_label?: string | undefined;
|
5954
|
+
auto_choose?: boolean | undefined;
|
5955
|
+
is_private?: boolean | undefined;
|
5083
5956
|
}) | ({
|
5084
5957
|
type: "provided";
|
5085
5958
|
value: "time" | "text";
|
@@ -5100,6 +5973,8 @@ export declare class HelpSyncCommand {
|
|
5100
5973
|
dateTimeArgumentTypeId?: number | undefined;
|
5101
5974
|
allow_create?: boolean | undefined;
|
5102
5975
|
allow_create_label?: string | undefined;
|
5976
|
+
auto_choose?: boolean | undefined;
|
5977
|
+
is_private?: boolean | undefined;
|
5103
5978
|
}) | ({
|
5104
5979
|
type: "dependent";
|
5105
5980
|
value: string;
|
@@ -5119,6 +5994,8 @@ export declare class HelpSyncCommand {
|
|
5119
5994
|
loaded?: any[] | undefined;
|
5120
5995
|
allow_create?: boolean | undefined;
|
5121
5996
|
allow_create_label?: string | undefined;
|
5997
|
+
auto_choose?: boolean | undefined;
|
5998
|
+
is_private?: boolean | undefined;
|
5122
5999
|
}) | ({
|
5123
6000
|
type: "function";
|
5124
6001
|
value: string;
|
@@ -5138,6 +6015,34 @@ export declare class HelpSyncCommand {
|
|
5138
6015
|
loaded?: any[] | undefined;
|
5139
6016
|
allow_create?: boolean | undefined;
|
5140
6017
|
allow_create_label?: string | undefined;
|
6018
|
+
auto_choose?: boolean | undefined;
|
6019
|
+
is_private?: boolean | undefined;
|
6020
|
+
}) | ({
|
6021
|
+
type: "video";
|
6022
|
+
value: {
|
6023
|
+
source: string;
|
6024
|
+
} & {
|
6025
|
+
title?: string | undefined;
|
6026
|
+
description?: string | undefined;
|
6027
|
+
};
|
6028
|
+
order_key: number;
|
6029
|
+
} & {
|
6030
|
+
label?: string | undefined;
|
6031
|
+
chosen?: string | number | undefined;
|
6032
|
+
selected?: any[] | undefined;
|
6033
|
+
input_type?: string | undefined;
|
6034
|
+
preselected_key?: string | undefined;
|
6035
|
+
label_field?: string | undefined;
|
6036
|
+
availability_condition?: {
|
6037
|
+
field: string;
|
6038
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
6039
|
+
value: string | undefined;
|
6040
|
+
}[] | undefined;
|
6041
|
+
loaded?: any[] | undefined;
|
6042
|
+
allow_create?: boolean | undefined;
|
6043
|
+
allow_create_label?: string | undefined;
|
6044
|
+
is_private?: boolean | undefined;
|
6045
|
+
auto_choose?: boolean | undefined;
|
5141
6046
|
});
|
5142
6047
|
};
|
5143
6048
|
tags: string[];
|
@@ -5167,6 +6072,7 @@ export declare class HelpSyncCommand {
|
|
5167
6072
|
confirm: string;
|
5168
6073
|
shortcut: string[];
|
5169
6074
|
explanation: string;
|
6075
|
+
heading: string;
|
5170
6076
|
is_live: boolean;
|
5171
6077
|
category: number | null;
|
5172
6078
|
sort_key: number | null;
|
@@ -5190,16 +6096,20 @@ export declare class HelpSyncCommand {
|
|
5190
6096
|
shortcut_win: string[];
|
5191
6097
|
hotkey_mac: string;
|
5192
6098
|
hotkey_win: string;
|
5193
|
-
detail: string | {
|
6099
|
+
detail: string | ({
|
5194
6100
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5195
6101
|
value: string;
|
5196
|
-
}
|
6102
|
+
} & {
|
6103
|
+
position?: "inline" | "popover" | undefined;
|
6104
|
+
}) | (string | ({
|
5197
6105
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5198
6106
|
value: string;
|
5199
|
-
}
|
6107
|
+
} & {
|
6108
|
+
position?: "inline" | "popover" | undefined;
|
6109
|
+
}))[] | null;
|
5200
6110
|
} & {
|
5201
|
-
third_party_source
|
5202
|
-
third_party_id
|
6111
|
+
third_party_source?: string | null | undefined;
|
6112
|
+
third_party_id?: string | null | undefined;
|
5203
6113
|
}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
|
5204
6114
|
id: number;
|
5205
6115
|
organization: string | number;
|
@@ -5289,6 +6199,14 @@ export declare class HelpSyncCommand {
|
|
5289
6199
|
object?: string | undefined;
|
5290
6200
|
hoverTooltip?: boolean | undefined;
|
5291
6201
|
operation?: "self" | "router" | "blank" | undefined;
|
6202
|
+
}) | ({
|
6203
|
+
type: "video";
|
6204
|
+
value: string;
|
6205
|
+
} & {} & {
|
6206
|
+
commandType?: "object" | "independent" | "help" | undefined;
|
6207
|
+
object?: string | undefined;
|
6208
|
+
hoverTooltip?: boolean | undefined;
|
6209
|
+
operation?: "self" | "router" | "blank" | undefined;
|
5292
6210
|
});
|
5293
6211
|
} & {
|
5294
6212
|
disabledReason?: string | undefined;
|
@@ -5319,6 +6237,8 @@ export declare class HelpSyncCommand {
|
|
5319
6237
|
allow_create_label?: string | undefined;
|
5320
6238
|
show_in_record_action_list?: boolean | undefined;
|
5321
6239
|
show_in_default_list?: boolean | undefined;
|
6240
|
+
auto_choose?: boolean | undefined;
|
6241
|
+
is_private?: boolean | undefined;
|
5322
6242
|
}) | ({
|
5323
6243
|
type: "set";
|
5324
6244
|
value: string[] | number[] | {
|
@@ -5340,6 +6260,8 @@ export declare class HelpSyncCommand {
|
|
5340
6260
|
loaded?: any[] | undefined;
|
5341
6261
|
allow_create?: boolean | undefined;
|
5342
6262
|
allow_create_label?: string | undefined;
|
6263
|
+
auto_choose?: boolean | undefined;
|
6264
|
+
is_private?: boolean | undefined;
|
5343
6265
|
}) | ({
|
5344
6266
|
type: "provided";
|
5345
6267
|
value: "time" | "text";
|
@@ -5360,6 +6282,8 @@ export declare class HelpSyncCommand {
|
|
5360
6282
|
dateTimeArgumentTypeId?: number | undefined;
|
5361
6283
|
allow_create?: boolean | undefined;
|
5362
6284
|
allow_create_label?: string | undefined;
|
6285
|
+
auto_choose?: boolean | undefined;
|
6286
|
+
is_private?: boolean | undefined;
|
5363
6287
|
}) | ({
|
5364
6288
|
type: "dependent";
|
5365
6289
|
value: string;
|
@@ -5379,6 +6303,8 @@ export declare class HelpSyncCommand {
|
|
5379
6303
|
loaded?: any[] | undefined;
|
5380
6304
|
allow_create?: boolean | undefined;
|
5381
6305
|
allow_create_label?: string | undefined;
|
6306
|
+
auto_choose?: boolean | undefined;
|
6307
|
+
is_private?: boolean | undefined;
|
5382
6308
|
}) | ({
|
5383
6309
|
type: "function";
|
5384
6310
|
value: string;
|
@@ -5398,6 +6324,34 @@ export declare class HelpSyncCommand {
|
|
5398
6324
|
loaded?: any[] | undefined;
|
5399
6325
|
allow_create?: boolean | undefined;
|
5400
6326
|
allow_create_label?: string | undefined;
|
6327
|
+
auto_choose?: boolean | undefined;
|
6328
|
+
is_private?: boolean | undefined;
|
6329
|
+
}) | ({
|
6330
|
+
type: "video";
|
6331
|
+
value: {
|
6332
|
+
source: string;
|
6333
|
+
} & {
|
6334
|
+
title?: string | undefined;
|
6335
|
+
description?: string | undefined;
|
6336
|
+
};
|
6337
|
+
order_key: number;
|
6338
|
+
} & {
|
6339
|
+
label?: string | undefined;
|
6340
|
+
chosen?: string | number | undefined;
|
6341
|
+
selected?: any[] | undefined;
|
6342
|
+
input_type?: string | undefined;
|
6343
|
+
preselected_key?: string | undefined;
|
6344
|
+
label_field?: string | undefined;
|
6345
|
+
availability_condition?: {
|
6346
|
+
field: string;
|
6347
|
+
operator: "==" | "!=" | "isTruthy" | "isFalsy";
|
6348
|
+
value: string | undefined;
|
6349
|
+
}[] | undefined;
|
6350
|
+
loaded?: any[] | undefined;
|
6351
|
+
allow_create?: boolean | undefined;
|
6352
|
+
allow_create_label?: string | undefined;
|
6353
|
+
is_private?: boolean | undefined;
|
6354
|
+
auto_choose?: boolean | undefined;
|
5401
6355
|
});
|
5402
6356
|
};
|
5403
6357
|
tags: string[];
|
@@ -5427,6 +6381,7 @@ export declare class HelpSyncCommand {
|
|
5427
6381
|
confirm: string;
|
5428
6382
|
shortcut: string[];
|
5429
6383
|
explanation: string;
|
6384
|
+
heading: string;
|
5430
6385
|
is_live: boolean;
|
5431
6386
|
category: number | null;
|
5432
6387
|
sort_key: number | null;
|
@@ -5450,15 +6405,19 @@ export declare class HelpSyncCommand {
|
|
5450
6405
|
shortcut_win: string[];
|
5451
6406
|
hotkey_mac: string;
|
5452
6407
|
hotkey_win: string;
|
5453
|
-
detail: string | {
|
6408
|
+
detail: string | ({
|
5454
6409
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5455
6410
|
value: string;
|
5456
|
-
}
|
6411
|
+
} & {
|
6412
|
+
position?: "inline" | "popover" | undefined;
|
6413
|
+
}) | (string | ({
|
5457
6414
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5458
6415
|
value: string;
|
5459
|
-
}
|
6416
|
+
} & {
|
6417
|
+
position?: "inline" | "popover" | undefined;
|
6418
|
+
}))[] | null;
|
5460
6419
|
} & {
|
5461
|
-
third_party_source
|
5462
|
-
third_party_id
|
6420
|
+
third_party_source?: string | null | undefined;
|
6421
|
+
third_party_id?: string | null | undefined;
|
5463
6422
|
}>;
|
5464
6423
|
}
|