commandbar 1.6.12 → 1.6.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/internal/src/client/AddContextOptions.d.ts +5 -0
- package/build/internal/src/client/CommandBarClientSDK.d.ts +8 -1
- package/build/internal/src/client/EventHandler.d.ts +1 -1
- package/build/internal/src/client/SentryReporter.d.ts +24 -3
- package/build/internal/src/middleware/CommandFromClientV.d.ts +43 -3
- package/build/internal/src/middleware/command.d.ts +963 -59
- package/build/internal/src/middleware/detailPreview.d.ts +4 -2
- 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 +51 -3
- package/build/internal/src/middleware/types.d.ts +57 -3
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
/********************************************************************************/
|
2
2
|
import * as t from 'io-ts';
|
3
3
|
import { GenericBatchRequest } from './generics';
|
4
4
|
export { CommandFromClientV } from './CommandFromClientV';
|
@@ -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<{
|
@@ -286,13 +330,17 @@ export declare const CommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
286
330
|
shortcut_win: t.ArrayC<t.StringC>;
|
287
331
|
hotkey_mac: t.StringC;
|
288
332
|
hotkey_win: t.StringC;
|
289
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
333
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
290
334
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
291
335
|
value: t.StringC;
|
292
|
-
}>, 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<{
|
293
339
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
294
340
|
value: t.StringC;
|
295
|
-
}
|
341
|
+
}>, t.PartialC<{
|
342
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
343
|
+
}>]>]>>]>;
|
296
344
|
}>]>;
|
297
345
|
export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
298
346
|
id: t.NumberC;
|
@@ -379,6 +427,14 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
379
427
|
object: t.StringC;
|
380
428
|
hoverTooltip: t.BooleanC;
|
381
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]>;
|
382
438
|
}>]>]>]>;
|
383
439
|
}>, t.PartialC<{
|
384
440
|
disabledReason: t.StringC;
|
@@ -408,6 +464,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
408
464
|
allow_create_label: t.StringC;
|
409
465
|
show_in_record_action_list: t.BooleanC;
|
410
466
|
show_in_default_list: t.BooleanC;
|
467
|
+
auto_choose: t.BooleanC;
|
468
|
+
is_private: t.BooleanC;
|
411
469
|
}>]>, t.IntersectionC<[t.TypeC<{
|
412
470
|
type: t.LiteralC<"set">;
|
413
471
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -427,6 +485,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
427
485
|
loaded: t.ArrayC<t.AnyC>;
|
428
486
|
allow_create: t.BooleanC;
|
429
487
|
allow_create_label: t.StringC;
|
488
|
+
auto_choose: t.BooleanC;
|
489
|
+
is_private: t.BooleanC;
|
430
490
|
}>]>, t.IntersectionC<[t.TypeC<{
|
431
491
|
type: t.LiteralC<"provided">;
|
432
492
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -447,6 +507,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
447
507
|
dateTimeArgumentTypeId: t.NumberC;
|
448
508
|
allow_create: t.BooleanC;
|
449
509
|
allow_create_label: t.StringC;
|
510
|
+
auto_choose: t.BooleanC;
|
511
|
+
is_private: t.BooleanC;
|
450
512
|
}>]>, t.IntersectionC<[t.TypeC<{
|
451
513
|
type: t.LiteralC<"dependent">;
|
452
514
|
value: t.StringC;
|
@@ -466,6 +528,8 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
466
528
|
loaded: t.ArrayC<t.AnyC>;
|
467
529
|
allow_create: t.BooleanC;
|
468
530
|
allow_create_label: t.StringC;
|
531
|
+
auto_choose: t.BooleanC;
|
532
|
+
is_private: t.BooleanC;
|
469
533
|
}>]>, t.IntersectionC<[t.TypeC<{
|
470
534
|
type: t.LiteralC<"function">;
|
471
535
|
value: t.StringC;
|
@@ -485,6 +549,34 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
485
549
|
loaded: t.ArrayC<t.AnyC>;
|
486
550
|
allow_create: t.BooleanC;
|
487
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;
|
488
580
|
}>]>]>>;
|
489
581
|
tags: t.ArrayC<t.StringC>;
|
490
582
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
@@ -640,13 +732,17 @@ export declare const EditorCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
640
732
|
shortcut_win: t.ArrayC<t.StringC>;
|
641
733
|
hotkey_mac: t.StringC;
|
642
734
|
hotkey_win: t.StringC;
|
643
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
735
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
644
736
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
645
737
|
value: t.StringC;
|
646
|
-
}>, 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<{
|
647
741
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
648
742
|
value: t.StringC;
|
649
|
-
}
|
743
|
+
}>, t.PartialC<{
|
744
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
745
|
+
}>]>]>>]>;
|
650
746
|
}>, t.PartialC<{
|
651
747
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
652
748
|
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -748,6 +844,14 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
748
844
|
object: t.StringC;
|
749
845
|
hoverTooltip: t.BooleanC;
|
750
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]>;
|
751
855
|
}>]>]>]>;
|
752
856
|
}>, t.PartialC<{
|
753
857
|
disabledReason: t.StringC;
|
@@ -777,6 +881,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
777
881
|
allow_create_label: t.StringC;
|
778
882
|
show_in_record_action_list: t.BooleanC;
|
779
883
|
show_in_default_list: t.BooleanC;
|
884
|
+
auto_choose: t.BooleanC;
|
885
|
+
is_private: t.BooleanC;
|
780
886
|
}>]>, t.IntersectionC<[t.TypeC<{
|
781
887
|
type: t.LiteralC<"set">;
|
782
888
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -796,6 +902,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
796
902
|
loaded: t.ArrayC<t.AnyC>;
|
797
903
|
allow_create: t.BooleanC;
|
798
904
|
allow_create_label: t.StringC;
|
905
|
+
auto_choose: t.BooleanC;
|
906
|
+
is_private: t.BooleanC;
|
799
907
|
}>]>, t.IntersectionC<[t.TypeC<{
|
800
908
|
type: t.LiteralC<"provided">;
|
801
909
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -816,6 +924,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
816
924
|
dateTimeArgumentTypeId: t.NumberC;
|
817
925
|
allow_create: t.BooleanC;
|
818
926
|
allow_create_label: t.StringC;
|
927
|
+
auto_choose: t.BooleanC;
|
928
|
+
is_private: t.BooleanC;
|
819
929
|
}>]>, t.IntersectionC<[t.TypeC<{
|
820
930
|
type: t.LiteralC<"dependent">;
|
821
931
|
value: t.StringC;
|
@@ -835,6 +945,8 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
835
945
|
loaded: t.ArrayC<t.AnyC>;
|
836
946
|
allow_create: t.BooleanC;
|
837
947
|
allow_create_label: t.StringC;
|
948
|
+
auto_choose: t.BooleanC;
|
949
|
+
is_private: t.BooleanC;
|
838
950
|
}>]>, t.IntersectionC<[t.TypeC<{
|
839
951
|
type: t.LiteralC<"function">;
|
840
952
|
value: t.StringC;
|
@@ -854,6 +966,34 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
854
966
|
loaded: t.ArrayC<t.AnyC>;
|
855
967
|
allow_create: t.BooleanC;
|
856
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;
|
857
997
|
}>]>]>>;
|
858
998
|
tags: t.ArrayC<t.StringC>;
|
859
999
|
availability_rules: t.UnionC<[t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
@@ -1009,13 +1149,17 @@ export declare const BatchEditorCommandResponseV: t.TypeC<{
|
|
1009
1149
|
shortcut_win: t.ArrayC<t.StringC>;
|
1010
1150
|
hotkey_mac: t.StringC;
|
1011
1151
|
hotkey_win: t.StringC;
|
1012
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
1152
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
1013
1153
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
1014
1154
|
value: t.StringC;
|
1015
|
-
}>, 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<{
|
1016
1158
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
1017
1159
|
value: t.StringC;
|
1018
|
-
}
|
1160
|
+
}>, t.PartialC<{
|
1161
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
1162
|
+
}>]>]>>]>;
|
1019
1163
|
}>, t.PartialC<{
|
1020
1164
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
1021
1165
|
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -1111,6 +1255,14 @@ export declare class Command {
|
|
1111
1255
|
object?: string | undefined;
|
1112
1256
|
hoverTooltip?: boolean | undefined;
|
1113
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;
|
1114
1266
|
});
|
1115
1267
|
} & {
|
1116
1268
|
disabledReason?: string | undefined;
|
@@ -1141,6 +1293,8 @@ export declare class Command {
|
|
1141
1293
|
allow_create_label?: string | undefined;
|
1142
1294
|
show_in_record_action_list?: boolean | undefined;
|
1143
1295
|
show_in_default_list?: boolean | undefined;
|
1296
|
+
auto_choose?: boolean | undefined;
|
1297
|
+
is_private?: boolean | undefined;
|
1144
1298
|
}) | ({
|
1145
1299
|
type: "set";
|
1146
1300
|
value: string[] | number[] | {
|
@@ -1162,6 +1316,8 @@ export declare class Command {
|
|
1162
1316
|
loaded?: any[] | undefined;
|
1163
1317
|
allow_create?: boolean | undefined;
|
1164
1318
|
allow_create_label?: string | undefined;
|
1319
|
+
auto_choose?: boolean | undefined;
|
1320
|
+
is_private?: boolean | undefined;
|
1165
1321
|
}) | ({
|
1166
1322
|
type: "provided";
|
1167
1323
|
value: "time" | "text";
|
@@ -1182,6 +1338,8 @@ export declare class Command {
|
|
1182
1338
|
dateTimeArgumentTypeId?: number | undefined;
|
1183
1339
|
allow_create?: boolean | undefined;
|
1184
1340
|
allow_create_label?: string | undefined;
|
1341
|
+
auto_choose?: boolean | undefined;
|
1342
|
+
is_private?: boolean | undefined;
|
1185
1343
|
}) | ({
|
1186
1344
|
type: "dependent";
|
1187
1345
|
value: string;
|
@@ -1201,6 +1359,8 @@ export declare class Command {
|
|
1201
1359
|
loaded?: any[] | undefined;
|
1202
1360
|
allow_create?: boolean | undefined;
|
1203
1361
|
allow_create_label?: string | undefined;
|
1362
|
+
auto_choose?: boolean | undefined;
|
1363
|
+
is_private?: boolean | undefined;
|
1204
1364
|
}) | ({
|
1205
1365
|
type: "function";
|
1206
1366
|
value: string;
|
@@ -1220,6 +1380,34 @@ export declare class Command {
|
|
1220
1380
|
loaded?: any[] | undefined;
|
1221
1381
|
allow_create?: boolean | undefined;
|
1222
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;
|
1223
1411
|
});
|
1224
1412
|
};
|
1225
1413
|
tags: string[];
|
@@ -1304,13 +1492,17 @@ export declare class Command {
|
|
1304
1492
|
shortcut_win: string[];
|
1305
1493
|
hotkey_mac: string;
|
1306
1494
|
hotkey_win: string;
|
1307
|
-
detail: string | {
|
1495
|
+
detail: string | ({
|
1308
1496
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1309
1497
|
value: string;
|
1310
|
-
}
|
1498
|
+
} & {
|
1499
|
+
position?: "inline" | "popover" | undefined;
|
1500
|
+
}) | (string | ({
|
1311
1501
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1312
1502
|
value: string;
|
1313
|
-
}
|
1503
|
+
} & {
|
1504
|
+
position?: "inline" | "popover" | undefined;
|
1505
|
+
}))[] | null;
|
1314
1506
|
} & {
|
1315
1507
|
third_party_source?: string | null | undefined;
|
1316
1508
|
third_party_id?: string | null | undefined;
|
@@ -1403,6 +1595,14 @@ export declare class Command {
|
|
1403
1595
|
object?: string | undefined;
|
1404
1596
|
hoverTooltip?: boolean | undefined;
|
1405
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;
|
1406
1606
|
});
|
1407
1607
|
} & {
|
1408
1608
|
disabledReason?: string | undefined;
|
@@ -1433,6 +1633,8 @@ export declare class Command {
|
|
1433
1633
|
allow_create_label?: string | undefined;
|
1434
1634
|
show_in_record_action_list?: boolean | undefined;
|
1435
1635
|
show_in_default_list?: boolean | undefined;
|
1636
|
+
auto_choose?: boolean | undefined;
|
1637
|
+
is_private?: boolean | undefined;
|
1436
1638
|
}) | ({
|
1437
1639
|
type: "set";
|
1438
1640
|
value: string[] | number[] | {
|
@@ -1454,6 +1656,8 @@ export declare class Command {
|
|
1454
1656
|
loaded?: any[] | undefined;
|
1455
1657
|
allow_create?: boolean | undefined;
|
1456
1658
|
allow_create_label?: string | undefined;
|
1659
|
+
auto_choose?: boolean | undefined;
|
1660
|
+
is_private?: boolean | undefined;
|
1457
1661
|
}) | ({
|
1458
1662
|
type: "provided";
|
1459
1663
|
value: "time" | "text";
|
@@ -1474,6 +1678,8 @@ export declare class Command {
|
|
1474
1678
|
dateTimeArgumentTypeId?: number | undefined;
|
1475
1679
|
allow_create?: boolean | undefined;
|
1476
1680
|
allow_create_label?: string | undefined;
|
1681
|
+
auto_choose?: boolean | undefined;
|
1682
|
+
is_private?: boolean | undefined;
|
1477
1683
|
}) | ({
|
1478
1684
|
type: "dependent";
|
1479
1685
|
value: string;
|
@@ -1493,6 +1699,8 @@ export declare class Command {
|
|
1493
1699
|
loaded?: any[] | undefined;
|
1494
1700
|
allow_create?: boolean | undefined;
|
1495
1701
|
allow_create_label?: string | undefined;
|
1702
|
+
auto_choose?: boolean | undefined;
|
1703
|
+
is_private?: boolean | undefined;
|
1496
1704
|
}) | ({
|
1497
1705
|
type: "function";
|
1498
1706
|
value: string;
|
@@ -1512,6 +1720,34 @@ export declare class Command {
|
|
1512
1720
|
loaded?: any[] | undefined;
|
1513
1721
|
allow_create?: boolean | undefined;
|
1514
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;
|
1515
1751
|
});
|
1516
1752
|
};
|
1517
1753
|
tags: string[];
|
@@ -1596,13 +1832,17 @@ export declare class Command {
|
|
1596
1832
|
shortcut_win: string[];
|
1597
1833
|
hotkey_mac: string;
|
1598
1834
|
hotkey_win: string;
|
1599
|
-
detail: string | {
|
1835
|
+
detail: string | ({
|
1600
1836
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1601
1837
|
value: string;
|
1602
|
-
}
|
1838
|
+
} & {
|
1839
|
+
position?: "inline" | "popover" | undefined;
|
1840
|
+
}) | (string | ({
|
1603
1841
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1604
1842
|
value: string;
|
1605
|
-
}
|
1843
|
+
} & {
|
1844
|
+
position?: "inline" | "popover" | undefined;
|
1845
|
+
}))[] | null;
|
1606
1846
|
} & {
|
1607
1847
|
third_party_source?: string | null | undefined;
|
1608
1848
|
third_party_id?: string | null | undefined;
|
@@ -1696,6 +1936,14 @@ export declare class Command {
|
|
1696
1936
|
object?: string | undefined;
|
1697
1937
|
hoverTooltip?: boolean | undefined;
|
1698
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;
|
1699
1947
|
});
|
1700
1948
|
} & {
|
1701
1949
|
disabledReason?: string | undefined;
|
@@ -1726,6 +1974,8 @@ export declare class Command {
|
|
1726
1974
|
allow_create_label?: string | undefined;
|
1727
1975
|
show_in_record_action_list?: boolean | undefined;
|
1728
1976
|
show_in_default_list?: boolean | undefined;
|
1977
|
+
auto_choose?: boolean | undefined;
|
1978
|
+
is_private?: boolean | undefined;
|
1729
1979
|
}) | ({
|
1730
1980
|
type: "set";
|
1731
1981
|
value: string[] | number[] | {
|
@@ -1747,6 +1997,8 @@ export declare class Command {
|
|
1747
1997
|
loaded?: any[] | undefined;
|
1748
1998
|
allow_create?: boolean | undefined;
|
1749
1999
|
allow_create_label?: string | undefined;
|
2000
|
+
auto_choose?: boolean | undefined;
|
2001
|
+
is_private?: boolean | undefined;
|
1750
2002
|
}) | ({
|
1751
2003
|
type: "provided";
|
1752
2004
|
value: "time" | "text";
|
@@ -1767,6 +2019,8 @@ export declare class Command {
|
|
1767
2019
|
dateTimeArgumentTypeId?: number | undefined;
|
1768
2020
|
allow_create?: boolean | undefined;
|
1769
2021
|
allow_create_label?: string | undefined;
|
2022
|
+
auto_choose?: boolean | undefined;
|
2023
|
+
is_private?: boolean | undefined;
|
1770
2024
|
}) | ({
|
1771
2025
|
type: "dependent";
|
1772
2026
|
value: string;
|
@@ -1786,6 +2040,8 @@ export declare class Command {
|
|
1786
2040
|
loaded?: any[] | undefined;
|
1787
2041
|
allow_create?: boolean | undefined;
|
1788
2042
|
allow_create_label?: string | undefined;
|
2043
|
+
auto_choose?: boolean | undefined;
|
2044
|
+
is_private?: boolean | undefined;
|
1789
2045
|
}) | ({
|
1790
2046
|
type: "function";
|
1791
2047
|
value: string;
|
@@ -1805,6 +2061,34 @@ export declare class Command {
|
|
1805
2061
|
loaded?: any[] | undefined;
|
1806
2062
|
allow_create?: boolean | undefined;
|
1807
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;
|
1808
2092
|
});
|
1809
2093
|
};
|
1810
2094
|
tags: string[];
|
@@ -1889,13 +2173,17 @@ export declare class Command {
|
|
1889
2173
|
shortcut_win: string[];
|
1890
2174
|
hotkey_mac: string;
|
1891
2175
|
hotkey_win: string;
|
1892
|
-
detail: string | {
|
2176
|
+
detail: string | ({
|
1893
2177
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1894
2178
|
value: string;
|
1895
|
-
}
|
2179
|
+
} & {
|
2180
|
+
position?: "inline" | "popover" | undefined;
|
2181
|
+
}) | (string | ({
|
1896
2182
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
1897
2183
|
value: string;
|
1898
|
-
}
|
2184
|
+
} & {
|
2185
|
+
position?: "inline" | "popover" | undefined;
|
2186
|
+
}))[] | null;
|
1899
2187
|
} & {
|
1900
2188
|
third_party_source?: string | null | undefined;
|
1901
2189
|
third_party_id?: string | null | undefined;
|
@@ -1988,6 +2276,14 @@ export declare class Command {
|
|
1988
2276
|
object?: string | undefined;
|
1989
2277
|
hoverTooltip?: boolean | undefined;
|
1990
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;
|
1991
2287
|
});
|
1992
2288
|
} & {
|
1993
2289
|
disabledReason?: string | undefined;
|
@@ -2018,6 +2314,8 @@ export declare class Command {
|
|
2018
2314
|
allow_create_label?: string | undefined;
|
2019
2315
|
show_in_record_action_list?: boolean | undefined;
|
2020
2316
|
show_in_default_list?: boolean | undefined;
|
2317
|
+
auto_choose?: boolean | undefined;
|
2318
|
+
is_private?: boolean | undefined;
|
2021
2319
|
}) | ({
|
2022
2320
|
type: "set";
|
2023
2321
|
value: string[] | number[] | {
|
@@ -2039,6 +2337,8 @@ export declare class Command {
|
|
2039
2337
|
loaded?: any[] | undefined;
|
2040
2338
|
allow_create?: boolean | undefined;
|
2041
2339
|
allow_create_label?: string | undefined;
|
2340
|
+
auto_choose?: boolean | undefined;
|
2341
|
+
is_private?: boolean | undefined;
|
2042
2342
|
}) | ({
|
2043
2343
|
type: "provided";
|
2044
2344
|
value: "time" | "text";
|
@@ -2059,6 +2359,8 @@ export declare class Command {
|
|
2059
2359
|
dateTimeArgumentTypeId?: number | undefined;
|
2060
2360
|
allow_create?: boolean | undefined;
|
2061
2361
|
allow_create_label?: string | undefined;
|
2362
|
+
auto_choose?: boolean | undefined;
|
2363
|
+
is_private?: boolean | undefined;
|
2062
2364
|
}) | ({
|
2063
2365
|
type: "dependent";
|
2064
2366
|
value: string;
|
@@ -2078,6 +2380,8 @@ export declare class Command {
|
|
2078
2380
|
loaded?: any[] | undefined;
|
2079
2381
|
allow_create?: boolean | undefined;
|
2080
2382
|
allow_create_label?: string | undefined;
|
2383
|
+
auto_choose?: boolean | undefined;
|
2384
|
+
is_private?: boolean | undefined;
|
2081
2385
|
}) | ({
|
2082
2386
|
type: "function";
|
2083
2387
|
value: string;
|
@@ -2097,6 +2401,34 @@ export declare class Command {
|
|
2097
2401
|
loaded?: any[] | undefined;
|
2098
2402
|
allow_create?: boolean | undefined;
|
2099
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;
|
2100
2432
|
});
|
2101
2433
|
};
|
2102
2434
|
tags: string[];
|
@@ -2181,13 +2513,17 @@ export declare class Command {
|
|
2181
2513
|
shortcut_win: string[];
|
2182
2514
|
hotkey_mac: string;
|
2183
2515
|
hotkey_win: string;
|
2184
|
-
detail: string | {
|
2516
|
+
detail: string | ({
|
2185
2517
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2186
2518
|
value: string;
|
2187
|
-
}
|
2519
|
+
} & {
|
2520
|
+
position?: "inline" | "popover" | undefined;
|
2521
|
+
}) | (string | ({
|
2188
2522
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2189
2523
|
value: string;
|
2190
|
-
}
|
2524
|
+
} & {
|
2525
|
+
position?: "inline" | "popover" | undefined;
|
2526
|
+
}))[] | null;
|
2191
2527
|
} & {
|
2192
2528
|
third_party_source?: string | null | undefined;
|
2193
2529
|
third_party_id?: string | null | undefined;
|
@@ -2283,6 +2619,14 @@ export declare class Command {
|
|
2283
2619
|
object?: string | undefined;
|
2284
2620
|
hoverTooltip?: boolean | undefined;
|
2285
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;
|
2286
2630
|
});
|
2287
2631
|
} & {
|
2288
2632
|
disabledReason?: string | undefined;
|
@@ -2313,6 +2657,8 @@ export declare class Command {
|
|
2313
2657
|
allow_create_label?: string | undefined;
|
2314
2658
|
show_in_record_action_list?: boolean | undefined;
|
2315
2659
|
show_in_default_list?: boolean | undefined;
|
2660
|
+
auto_choose?: boolean | undefined;
|
2661
|
+
is_private?: boolean | undefined;
|
2316
2662
|
}) | ({
|
2317
2663
|
type: "set";
|
2318
2664
|
value: string[] | number[] | {
|
@@ -2334,6 +2680,8 @@ export declare class Command {
|
|
2334
2680
|
loaded?: any[] | undefined;
|
2335
2681
|
allow_create?: boolean | undefined;
|
2336
2682
|
allow_create_label?: string | undefined;
|
2683
|
+
auto_choose?: boolean | undefined;
|
2684
|
+
is_private?: boolean | undefined;
|
2337
2685
|
}) | ({
|
2338
2686
|
type: "provided";
|
2339
2687
|
value: "time" | "text";
|
@@ -2354,6 +2702,8 @@ export declare class Command {
|
|
2354
2702
|
dateTimeArgumentTypeId?: number | undefined;
|
2355
2703
|
allow_create?: boolean | undefined;
|
2356
2704
|
allow_create_label?: string | undefined;
|
2705
|
+
auto_choose?: boolean | undefined;
|
2706
|
+
is_private?: boolean | undefined;
|
2357
2707
|
}) | ({
|
2358
2708
|
type: "dependent";
|
2359
2709
|
value: string;
|
@@ -2373,6 +2723,8 @@ export declare class Command {
|
|
2373
2723
|
loaded?: any[] | undefined;
|
2374
2724
|
allow_create?: boolean | undefined;
|
2375
2725
|
allow_create_label?: string | undefined;
|
2726
|
+
auto_choose?: boolean | undefined;
|
2727
|
+
is_private?: boolean | undefined;
|
2376
2728
|
}) | ({
|
2377
2729
|
type: "function";
|
2378
2730
|
value: string;
|
@@ -2392,6 +2744,34 @@ export declare class Command {
|
|
2392
2744
|
loaded?: any[] | undefined;
|
2393
2745
|
allow_create?: boolean | undefined;
|
2394
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;
|
2395
2775
|
});
|
2396
2776
|
};
|
2397
2777
|
tags: string[];
|
@@ -2476,13 +2856,17 @@ export declare class Command {
|
|
2476
2856
|
shortcut_win: string[];
|
2477
2857
|
hotkey_mac: string;
|
2478
2858
|
hotkey_win: string;
|
2479
|
-
detail: string | {
|
2859
|
+
detail: string | ({
|
2480
2860
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2481
2861
|
value: string;
|
2482
|
-
}
|
2862
|
+
} & {
|
2863
|
+
position?: "inline" | "popover" | undefined;
|
2864
|
+
}) | (string | ({
|
2483
2865
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2484
2866
|
value: string;
|
2485
|
-
}
|
2867
|
+
} & {
|
2868
|
+
position?: "inline" | "popover" | undefined;
|
2869
|
+
}))[] | null;
|
2486
2870
|
} & {
|
2487
2871
|
third_party_source?: string | null | undefined;
|
2488
2872
|
third_party_id?: string | null | undefined;
|
@@ -2584,6 +2968,8 @@ export declare class Command {
|
|
2584
2968
|
allow_create_label?: string | undefined;
|
2585
2969
|
show_in_record_action_list?: boolean | undefined;
|
2586
2970
|
show_in_default_list?: boolean | undefined;
|
2971
|
+
auto_choose?: boolean | undefined;
|
2972
|
+
is_private?: boolean | undefined;
|
2587
2973
|
}) | ({
|
2588
2974
|
type: "set";
|
2589
2975
|
value: string[] | number[] | {
|
@@ -2605,6 +2991,8 @@ export declare class Command {
|
|
2605
2991
|
loaded?: any[] | undefined;
|
2606
2992
|
allow_create?: boolean | undefined;
|
2607
2993
|
allow_create_label?: string | undefined;
|
2994
|
+
auto_choose?: boolean | undefined;
|
2995
|
+
is_private?: boolean | undefined;
|
2608
2996
|
}) | ({
|
2609
2997
|
type: "provided";
|
2610
2998
|
value: "time" | "text";
|
@@ -2625,6 +3013,8 @@ export declare class Command {
|
|
2625
3013
|
dateTimeArgumentTypeId?: number | undefined;
|
2626
3014
|
allow_create?: boolean | undefined;
|
2627
3015
|
allow_create_label?: string | undefined;
|
3016
|
+
auto_choose?: boolean | undefined;
|
3017
|
+
is_private?: boolean | undefined;
|
2628
3018
|
}) | ({
|
2629
3019
|
type: "dependent";
|
2630
3020
|
value: string;
|
@@ -2644,6 +3034,8 @@ export declare class Command {
|
|
2644
3034
|
loaded?: any[] | undefined;
|
2645
3035
|
allow_create?: boolean | undefined;
|
2646
3036
|
allow_create_label?: string | undefined;
|
3037
|
+
auto_choose?: boolean | undefined;
|
3038
|
+
is_private?: boolean | undefined;
|
2647
3039
|
}) | ({
|
2648
3040
|
type: "function";
|
2649
3041
|
value: string;
|
@@ -2663,6 +3055,34 @@ export declare class Command {
|
|
2663
3055
|
loaded?: any[] | undefined;
|
2664
3056
|
allow_create?: boolean | undefined;
|
2665
3057
|
allow_create_label?: string | undefined;
|
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;
|
2666
3086
|
});
|
2667
3087
|
} | undefined;
|
2668
3088
|
category?: string | number | null | undefined;
|
@@ -2704,13 +3124,17 @@ export declare class Command {
|
|
2704
3124
|
value?: string | undefined;
|
2705
3125
|
reason?: string | undefined;
|
2706
3126
|
}))[] | undefined;
|
2707
|
-
detail?: string | {
|
3127
|
+
detail?: string | ({
|
2708
3128
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2709
3129
|
value: string;
|
2710
|
-
}
|
2711
|
-
|
3130
|
+
} & {
|
3131
|
+
position?: "inline" | "popover" | undefined;
|
3132
|
+
}) | ({
|
3133
|
+
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2712
3134
|
value: string;
|
2713
|
-
}
|
3135
|
+
} & {
|
3136
|
+
position?: "inline" | "popover" | undefined;
|
3137
|
+
})[] | undefined;
|
2714
3138
|
}>;
|
2715
3139
|
static decode: (data: any) => {
|
2716
3140
|
id: number;
|
@@ -2801,6 +3225,14 @@ export declare class Command {
|
|
2801
3225
|
object?: string | undefined;
|
2802
3226
|
hoverTooltip?: boolean | undefined;
|
2803
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;
|
2804
3236
|
});
|
2805
3237
|
} & {
|
2806
3238
|
disabledReason?: string | undefined;
|
@@ -2831,6 +3263,8 @@ export declare class Command {
|
|
2831
3263
|
allow_create_label?: string | undefined;
|
2832
3264
|
show_in_record_action_list?: boolean | undefined;
|
2833
3265
|
show_in_default_list?: boolean | undefined;
|
3266
|
+
auto_choose?: boolean | undefined;
|
3267
|
+
is_private?: boolean | undefined;
|
2834
3268
|
}) | ({
|
2835
3269
|
type: "set";
|
2836
3270
|
value: string[] | number[] | {
|
@@ -2852,6 +3286,8 @@ export declare class Command {
|
|
2852
3286
|
loaded?: any[] | undefined;
|
2853
3287
|
allow_create?: boolean | undefined;
|
2854
3288
|
allow_create_label?: string | undefined;
|
3289
|
+
auto_choose?: boolean | undefined;
|
3290
|
+
is_private?: boolean | undefined;
|
2855
3291
|
}) | ({
|
2856
3292
|
type: "provided";
|
2857
3293
|
value: "time" | "text";
|
@@ -2872,6 +3308,8 @@ export declare class Command {
|
|
2872
3308
|
dateTimeArgumentTypeId?: number | undefined;
|
2873
3309
|
allow_create?: boolean | undefined;
|
2874
3310
|
allow_create_label?: string | undefined;
|
3311
|
+
auto_choose?: boolean | undefined;
|
3312
|
+
is_private?: boolean | undefined;
|
2875
3313
|
}) | ({
|
2876
3314
|
type: "dependent";
|
2877
3315
|
value: string;
|
@@ -2891,6 +3329,8 @@ export declare class Command {
|
|
2891
3329
|
loaded?: any[] | undefined;
|
2892
3330
|
allow_create?: boolean | undefined;
|
2893
3331
|
allow_create_label?: string | undefined;
|
3332
|
+
auto_choose?: boolean | undefined;
|
3333
|
+
is_private?: boolean | undefined;
|
2894
3334
|
}) | ({
|
2895
3335
|
type: "function";
|
2896
3336
|
value: string;
|
@@ -2910,6 +3350,34 @@ export declare class Command {
|
|
2910
3350
|
loaded?: any[] | undefined;
|
2911
3351
|
allow_create?: boolean | undefined;
|
2912
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;
|
2913
3381
|
});
|
2914
3382
|
};
|
2915
3383
|
tags: string[];
|
@@ -2963,13 +3431,17 @@ export declare class Command {
|
|
2963
3431
|
shortcut_win: string[];
|
2964
3432
|
hotkey_mac: string;
|
2965
3433
|
hotkey_win: string;
|
2966
|
-
detail: string | {
|
3434
|
+
detail: string | ({
|
2967
3435
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2968
3436
|
value: string;
|
2969
|
-
}
|
3437
|
+
} & {
|
3438
|
+
position?: "inline" | "popover" | undefined;
|
3439
|
+
}) | (string | ({
|
2970
3440
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
2971
3441
|
value: string;
|
2972
|
-
}
|
3442
|
+
} & {
|
3443
|
+
position?: "inline" | "popover" | undefined;
|
3444
|
+
}))[] | null;
|
2973
3445
|
};
|
2974
3446
|
static decodeEditorCommand: (data: any) => {
|
2975
3447
|
id: number;
|
@@ -3060,6 +3532,14 @@ export declare class Command {
|
|
3060
3532
|
object?: string | undefined;
|
3061
3533
|
hoverTooltip?: boolean | undefined;
|
3062
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;
|
3063
3543
|
});
|
3064
3544
|
} & {
|
3065
3545
|
disabledReason?: string | undefined;
|
@@ -3090,6 +3570,8 @@ export declare class Command {
|
|
3090
3570
|
allow_create_label?: string | undefined;
|
3091
3571
|
show_in_record_action_list?: boolean | undefined;
|
3092
3572
|
show_in_default_list?: boolean | undefined;
|
3573
|
+
auto_choose?: boolean | undefined;
|
3574
|
+
is_private?: boolean | undefined;
|
3093
3575
|
}) | ({
|
3094
3576
|
type: "set";
|
3095
3577
|
value: string[] | number[] | {
|
@@ -3111,6 +3593,8 @@ export declare class Command {
|
|
3111
3593
|
loaded?: any[] | undefined;
|
3112
3594
|
allow_create?: boolean | undefined;
|
3113
3595
|
allow_create_label?: string | undefined;
|
3596
|
+
auto_choose?: boolean | undefined;
|
3597
|
+
is_private?: boolean | undefined;
|
3114
3598
|
}) | ({
|
3115
3599
|
type: "provided";
|
3116
3600
|
value: "time" | "text";
|
@@ -3131,6 +3615,8 @@ export declare class Command {
|
|
3131
3615
|
dateTimeArgumentTypeId?: number | undefined;
|
3132
3616
|
allow_create?: boolean | undefined;
|
3133
3617
|
allow_create_label?: string | undefined;
|
3618
|
+
auto_choose?: boolean | undefined;
|
3619
|
+
is_private?: boolean | undefined;
|
3134
3620
|
}) | ({
|
3135
3621
|
type: "dependent";
|
3136
3622
|
value: string;
|
@@ -3150,6 +3636,8 @@ export declare class Command {
|
|
3150
3636
|
loaded?: any[] | undefined;
|
3151
3637
|
allow_create?: boolean | undefined;
|
3152
3638
|
allow_create_label?: string | undefined;
|
3639
|
+
auto_choose?: boolean | undefined;
|
3640
|
+
is_private?: boolean | undefined;
|
3153
3641
|
}) | ({
|
3154
3642
|
type: "function";
|
3155
3643
|
value: string;
|
@@ -3169,6 +3657,34 @@ export declare class Command {
|
|
3169
3657
|
loaded?: any[] | undefined;
|
3170
3658
|
allow_create?: boolean | undefined;
|
3171
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;
|
3172
3688
|
});
|
3173
3689
|
};
|
3174
3690
|
tags: string[];
|
@@ -3253,13 +3769,17 @@ export declare class Command {
|
|
3253
3769
|
shortcut_win: string[];
|
3254
3770
|
hotkey_mac: string;
|
3255
3771
|
hotkey_win: string;
|
3256
|
-
detail: string | {
|
3772
|
+
detail: string | ({
|
3257
3773
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3258
3774
|
value: string;
|
3259
|
-
}
|
3775
|
+
} & {
|
3776
|
+
position?: "inline" | "popover" | undefined;
|
3777
|
+
}) | (string | ({
|
3260
3778
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3261
3779
|
value: string;
|
3262
|
-
}
|
3780
|
+
} & {
|
3781
|
+
position?: "inline" | "popover" | undefined;
|
3782
|
+
}))[] | null;
|
3263
3783
|
} & {
|
3264
3784
|
third_party_source?: string | null | undefined;
|
3265
3785
|
third_party_id?: string | null | undefined;
|
@@ -3353,6 +3873,14 @@ export declare class Command {
|
|
3353
3873
|
object?: string | undefined;
|
3354
3874
|
hoverTooltip?: boolean | undefined;
|
3355
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;
|
3356
3884
|
});
|
3357
3885
|
} & {
|
3358
3886
|
disabledReason?: string | undefined;
|
@@ -3383,6 +3911,8 @@ export declare class Command {
|
|
3383
3911
|
allow_create_label?: string | undefined;
|
3384
3912
|
show_in_record_action_list?: boolean | undefined;
|
3385
3913
|
show_in_default_list?: boolean | undefined;
|
3914
|
+
auto_choose?: boolean | undefined;
|
3915
|
+
is_private?: boolean | undefined;
|
3386
3916
|
}) | ({
|
3387
3917
|
type: "set";
|
3388
3918
|
value: string[] | number[] | {
|
@@ -3404,6 +3934,8 @@ export declare class Command {
|
|
3404
3934
|
loaded?: any[] | undefined;
|
3405
3935
|
allow_create?: boolean | undefined;
|
3406
3936
|
allow_create_label?: string | undefined;
|
3937
|
+
auto_choose?: boolean | undefined;
|
3938
|
+
is_private?: boolean | undefined;
|
3407
3939
|
}) | ({
|
3408
3940
|
type: "provided";
|
3409
3941
|
value: "time" | "text";
|
@@ -3424,6 +3956,8 @@ export declare class Command {
|
|
3424
3956
|
dateTimeArgumentTypeId?: number | undefined;
|
3425
3957
|
allow_create?: boolean | undefined;
|
3426
3958
|
allow_create_label?: string | undefined;
|
3959
|
+
auto_choose?: boolean | undefined;
|
3960
|
+
is_private?: boolean | undefined;
|
3427
3961
|
}) | ({
|
3428
3962
|
type: "dependent";
|
3429
3963
|
value: string;
|
@@ -3443,6 +3977,8 @@ export declare class Command {
|
|
3443
3977
|
loaded?: any[] | undefined;
|
3444
3978
|
allow_create?: boolean | undefined;
|
3445
3979
|
allow_create_label?: string | undefined;
|
3980
|
+
auto_choose?: boolean | undefined;
|
3981
|
+
is_private?: boolean | undefined;
|
3446
3982
|
}) | ({
|
3447
3983
|
type: "function";
|
3448
3984
|
value: string;
|
@@ -3462,6 +3998,34 @@ export declare class Command {
|
|
3462
3998
|
loaded?: any[] | undefined;
|
3463
3999
|
allow_create?: boolean | undefined;
|
3464
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;
|
3465
4029
|
});
|
3466
4030
|
};
|
3467
4031
|
tags: string[];
|
@@ -3546,13 +4110,17 @@ export declare class Command {
|
|
3546
4110
|
shortcut_win: string[];
|
3547
4111
|
hotkey_mac: string;
|
3548
4112
|
hotkey_win: string;
|
3549
|
-
detail: string | {
|
4113
|
+
detail: string | ({
|
3550
4114
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3551
4115
|
value: string;
|
3552
|
-
}
|
4116
|
+
} & {
|
4117
|
+
position?: "inline" | "popover" | undefined;
|
4118
|
+
}) | (string | ({
|
3553
4119
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3554
4120
|
value: string;
|
3555
|
-
}
|
4121
|
+
} & {
|
4122
|
+
position?: "inline" | "popover" | undefined;
|
4123
|
+
}))[] | null;
|
3556
4124
|
} & {
|
3557
4125
|
third_party_source?: string | null | undefined;
|
3558
4126
|
third_party_id?: string | null | undefined;
|
@@ -3645,6 +4213,14 @@ export declare class Command {
|
|
3645
4213
|
object?: string | undefined;
|
3646
4214
|
hoverTooltip?: boolean | undefined;
|
3647
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;
|
3648
4224
|
});
|
3649
4225
|
} & {
|
3650
4226
|
disabledReason?: string | undefined;
|
@@ -3675,6 +4251,8 @@ export declare class Command {
|
|
3675
4251
|
allow_create_label?: string | undefined;
|
3676
4252
|
show_in_record_action_list?: boolean | undefined;
|
3677
4253
|
show_in_default_list?: boolean | undefined;
|
4254
|
+
auto_choose?: boolean | undefined;
|
4255
|
+
is_private?: boolean | undefined;
|
3678
4256
|
}) | ({
|
3679
4257
|
type: "set";
|
3680
4258
|
value: string[] | number[] | {
|
@@ -3696,6 +4274,8 @@ export declare class Command {
|
|
3696
4274
|
loaded?: any[] | undefined;
|
3697
4275
|
allow_create?: boolean | undefined;
|
3698
4276
|
allow_create_label?: string | undefined;
|
4277
|
+
auto_choose?: boolean | undefined;
|
4278
|
+
is_private?: boolean | undefined;
|
3699
4279
|
}) | ({
|
3700
4280
|
type: "provided";
|
3701
4281
|
value: "time" | "text";
|
@@ -3716,6 +4296,8 @@ export declare class Command {
|
|
3716
4296
|
dateTimeArgumentTypeId?: number | undefined;
|
3717
4297
|
allow_create?: boolean | undefined;
|
3718
4298
|
allow_create_label?: string | undefined;
|
4299
|
+
auto_choose?: boolean | undefined;
|
4300
|
+
is_private?: boolean | undefined;
|
3719
4301
|
}) | ({
|
3720
4302
|
type: "dependent";
|
3721
4303
|
value: string;
|
@@ -3735,6 +4317,8 @@ export declare class Command {
|
|
3735
4317
|
loaded?: any[] | undefined;
|
3736
4318
|
allow_create?: boolean | undefined;
|
3737
4319
|
allow_create_label?: string | undefined;
|
4320
|
+
auto_choose?: boolean | undefined;
|
4321
|
+
is_private?: boolean | undefined;
|
3738
4322
|
}) | ({
|
3739
4323
|
type: "function";
|
3740
4324
|
value: string;
|
@@ -3754,6 +4338,34 @@ export declare class Command {
|
|
3754
4338
|
loaded?: any[] | undefined;
|
3755
4339
|
allow_create?: boolean | undefined;
|
3756
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;
|
3757
4369
|
});
|
3758
4370
|
};
|
3759
4371
|
tags: string[];
|
@@ -3838,13 +4450,17 @@ export declare class Command {
|
|
3838
4450
|
shortcut_win: string[];
|
3839
4451
|
hotkey_mac: string;
|
3840
4452
|
hotkey_win: string;
|
3841
|
-
detail: string | {
|
4453
|
+
detail: string | ({
|
3842
4454
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3843
4455
|
value: string;
|
3844
|
-
}
|
4456
|
+
} & {
|
4457
|
+
position?: "inline" | "popover" | undefined;
|
4458
|
+
}) | (string | ({
|
3845
4459
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
3846
4460
|
value: string;
|
3847
|
-
}
|
4461
|
+
} & {
|
4462
|
+
position?: "inline" | "popover" | undefined;
|
4463
|
+
}))[] | null;
|
3848
4464
|
} & {
|
3849
4465
|
third_party_source?: string | null | undefined;
|
3850
4466
|
third_party_id?: string | null | undefined;
|
@@ -3938,6 +4554,14 @@ export declare class Command {
|
|
3938
4554
|
object?: string | undefined;
|
3939
4555
|
hoverTooltip?: boolean | undefined;
|
3940
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;
|
3941
4565
|
});
|
3942
4566
|
} & {
|
3943
4567
|
disabledReason?: string | undefined;
|
@@ -3968,6 +4592,8 @@ export declare class Command {
|
|
3968
4592
|
allow_create_label?: string | undefined;
|
3969
4593
|
show_in_record_action_list?: boolean | undefined;
|
3970
4594
|
show_in_default_list?: boolean | undefined;
|
4595
|
+
auto_choose?: boolean | undefined;
|
4596
|
+
is_private?: boolean | undefined;
|
3971
4597
|
}) | ({
|
3972
4598
|
type: "set";
|
3973
4599
|
value: string[] | number[] | {
|
@@ -3989,6 +4615,8 @@ export declare class Command {
|
|
3989
4615
|
loaded?: any[] | undefined;
|
3990
4616
|
allow_create?: boolean | undefined;
|
3991
4617
|
allow_create_label?: string | undefined;
|
4618
|
+
auto_choose?: boolean | undefined;
|
4619
|
+
is_private?: boolean | undefined;
|
3992
4620
|
}) | ({
|
3993
4621
|
type: "provided";
|
3994
4622
|
value: "time" | "text";
|
@@ -4009,6 +4637,8 @@ export declare class Command {
|
|
4009
4637
|
dateTimeArgumentTypeId?: number | undefined;
|
4010
4638
|
allow_create?: boolean | undefined;
|
4011
4639
|
allow_create_label?: string | undefined;
|
4640
|
+
auto_choose?: boolean | undefined;
|
4641
|
+
is_private?: boolean | undefined;
|
4012
4642
|
}) | ({
|
4013
4643
|
type: "dependent";
|
4014
4644
|
value: string;
|
@@ -4028,6 +4658,8 @@ export declare class Command {
|
|
4028
4658
|
loaded?: any[] | undefined;
|
4029
4659
|
allow_create?: boolean | undefined;
|
4030
4660
|
allow_create_label?: string | undefined;
|
4661
|
+
auto_choose?: boolean | undefined;
|
4662
|
+
is_private?: boolean | undefined;
|
4031
4663
|
}) | ({
|
4032
4664
|
type: "function";
|
4033
4665
|
value: string;
|
@@ -4047,6 +4679,34 @@ export declare class Command {
|
|
4047
4679
|
loaded?: any[] | undefined;
|
4048
4680
|
allow_create?: boolean | undefined;
|
4049
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;
|
4050
4710
|
});
|
4051
4711
|
};
|
4052
4712
|
tags: string[];
|
@@ -4131,13 +4791,17 @@ export declare class Command {
|
|
4131
4791
|
shortcut_win: string[];
|
4132
4792
|
hotkey_mac: string;
|
4133
4793
|
hotkey_win: string;
|
4134
|
-
detail: string | {
|
4794
|
+
detail: string | ({
|
4135
4795
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4136
4796
|
value: string;
|
4137
|
-
}
|
4797
|
+
} & {
|
4798
|
+
position?: "inline" | "popover" | undefined;
|
4799
|
+
}) | (string | ({
|
4138
4800
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4139
4801
|
value: string;
|
4140
|
-
}
|
4802
|
+
} & {
|
4803
|
+
position?: "inline" | "popover" | undefined;
|
4804
|
+
}))[] | null;
|
4141
4805
|
} & {
|
4142
4806
|
third_party_source?: string | null | undefined;
|
4143
4807
|
third_party_id?: string | null | undefined;
|
@@ -4230,6 +4894,14 @@ export declare class Command {
|
|
4230
4894
|
object?: string | undefined;
|
4231
4895
|
hoverTooltip?: boolean | undefined;
|
4232
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;
|
4233
4905
|
});
|
4234
4906
|
} & {
|
4235
4907
|
disabledReason?: string | undefined;
|
@@ -4260,6 +4932,8 @@ export declare class Command {
|
|
4260
4932
|
allow_create_label?: string | undefined;
|
4261
4933
|
show_in_record_action_list?: boolean | undefined;
|
4262
4934
|
show_in_default_list?: boolean | undefined;
|
4935
|
+
auto_choose?: boolean | undefined;
|
4936
|
+
is_private?: boolean | undefined;
|
4263
4937
|
}) | ({
|
4264
4938
|
type: "set";
|
4265
4939
|
value: string[] | number[] | {
|
@@ -4281,6 +4955,8 @@ export declare class Command {
|
|
4281
4955
|
loaded?: any[] | undefined;
|
4282
4956
|
allow_create?: boolean | undefined;
|
4283
4957
|
allow_create_label?: string | undefined;
|
4958
|
+
auto_choose?: boolean | undefined;
|
4959
|
+
is_private?: boolean | undefined;
|
4284
4960
|
}) | ({
|
4285
4961
|
type: "provided";
|
4286
4962
|
value: "time" | "text";
|
@@ -4301,6 +4977,8 @@ export declare class Command {
|
|
4301
4977
|
dateTimeArgumentTypeId?: number | undefined;
|
4302
4978
|
allow_create?: boolean | undefined;
|
4303
4979
|
allow_create_label?: string | undefined;
|
4980
|
+
auto_choose?: boolean | undefined;
|
4981
|
+
is_private?: boolean | undefined;
|
4304
4982
|
}) | ({
|
4305
4983
|
type: "dependent";
|
4306
4984
|
value: string;
|
@@ -4320,6 +4998,8 @@ export declare class Command {
|
|
4320
4998
|
loaded?: any[] | undefined;
|
4321
4999
|
allow_create?: boolean | undefined;
|
4322
5000
|
allow_create_label?: string | undefined;
|
5001
|
+
auto_choose?: boolean | undefined;
|
5002
|
+
is_private?: boolean | undefined;
|
4323
5003
|
}) | ({
|
4324
5004
|
type: "function";
|
4325
5005
|
value: string;
|
@@ -4339,6 +5019,34 @@ export declare class Command {
|
|
4339
5019
|
loaded?: any[] | undefined;
|
4340
5020
|
allow_create?: boolean | undefined;
|
4341
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;
|
4342
5050
|
});
|
4343
5051
|
};
|
4344
5052
|
tags: string[];
|
@@ -4423,13 +5131,17 @@ export declare class Command {
|
|
4423
5131
|
shortcut_win: string[];
|
4424
5132
|
hotkey_mac: string;
|
4425
5133
|
hotkey_win: string;
|
4426
|
-
detail: string | {
|
5134
|
+
detail: string | ({
|
4427
5135
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4428
5136
|
value: string;
|
4429
|
-
}
|
5137
|
+
} & {
|
5138
|
+
position?: "inline" | "popover" | undefined;
|
5139
|
+
}) | (string | ({
|
4430
5140
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4431
5141
|
value: string;
|
4432
|
-
}
|
5142
|
+
} & {
|
5143
|
+
position?: "inline" | "popover" | undefined;
|
5144
|
+
}))[] | null;
|
4433
5145
|
} & {
|
4434
5146
|
third_party_source?: string | null | undefined;
|
4435
5147
|
third_party_id?: string | null | undefined;
|
@@ -4525,6 +5237,14 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4525
5237
|
object: t.StringC;
|
4526
5238
|
hoverTooltip: t.BooleanC;
|
4527
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]>;
|
4528
5248
|
}>]>]>]>;
|
4529
5249
|
}>, t.PartialC<{
|
4530
5250
|
disabledReason: t.StringC;
|
@@ -4554,6 +5274,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4554
5274
|
allow_create_label: t.StringC;
|
4555
5275
|
show_in_record_action_list: t.BooleanC;
|
4556
5276
|
show_in_default_list: t.BooleanC;
|
5277
|
+
auto_choose: t.BooleanC;
|
5278
|
+
is_private: t.BooleanC;
|
4557
5279
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4558
5280
|
type: t.LiteralC<"set">;
|
4559
5281
|
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
@@ -4573,6 +5295,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4573
5295
|
loaded: t.ArrayC<t.AnyC>;
|
4574
5296
|
allow_create: t.BooleanC;
|
4575
5297
|
allow_create_label: t.StringC;
|
5298
|
+
auto_choose: t.BooleanC;
|
5299
|
+
is_private: t.BooleanC;
|
4576
5300
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4577
5301
|
type: t.LiteralC<"provided">;
|
4578
5302
|
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
@@ -4593,6 +5317,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4593
5317
|
dateTimeArgumentTypeId: t.NumberC;
|
4594
5318
|
allow_create: t.BooleanC;
|
4595
5319
|
allow_create_label: t.StringC;
|
5320
|
+
auto_choose: t.BooleanC;
|
5321
|
+
is_private: t.BooleanC;
|
4596
5322
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4597
5323
|
type: t.LiteralC<"dependent">;
|
4598
5324
|
value: t.StringC;
|
@@ -4612,6 +5338,8 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4612
5338
|
loaded: t.ArrayC<t.AnyC>;
|
4613
5339
|
allow_create: t.BooleanC;
|
4614
5340
|
allow_create_label: t.StringC;
|
5341
|
+
auto_choose: t.BooleanC;
|
5342
|
+
is_private: t.BooleanC;
|
4615
5343
|
}>]>, t.IntersectionC<[t.TypeC<{
|
4616
5344
|
type: t.LiteralC<"function">;
|
4617
5345
|
value: t.StringC;
|
@@ -4631,6 +5359,34 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4631
5359
|
loaded: t.ArrayC<t.AnyC>;
|
4632
5360
|
allow_create: t.BooleanC;
|
4633
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;
|
4634
5390
|
}>]>]>>;
|
4635
5391
|
tags: t.ArrayC<t.StringC>;
|
4636
5392
|
availability_rules: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
@@ -4719,13 +5475,17 @@ export declare const HelpSyncCommandV: t.IntersectionC<[t.IntersectionC<[t.TypeC
|
|
4719
5475
|
shortcut_win: t.ArrayC<t.StringC>;
|
4720
5476
|
hotkey_mac: t.StringC;
|
4721
5477
|
hotkey_win: t.StringC;
|
4722
|
-
detail: t.UnionC<[t.NullC, t.StringC, t.TypeC<{
|
5478
|
+
detail: t.UnionC<[t.NullC, t.StringC, t.IntersectionC<[t.TypeC<{
|
4723
5479
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
4724
5480
|
value: t.StringC;
|
4725
|
-
}>, 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<{
|
4726
5484
|
type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.NullC]>;
|
4727
5485
|
value: t.StringC;
|
4728
|
-
}
|
5486
|
+
}>, t.PartialC<{
|
5487
|
+
position: t.UnionC<[t.LiteralC<"inline">, t.LiteralC<"popover">]>;
|
5488
|
+
}>]>]>>]>;
|
4729
5489
|
}>, t.PartialC<{
|
4730
5490
|
third_party_source: t.UnionC<[t.StringC, t.NullC]>;
|
4731
5491
|
third_party_id: t.UnionC<[t.StringC, t.NullC]>;
|
@@ -4820,6 +5580,14 @@ export declare class HelpSyncCommand {
|
|
4820
5580
|
object?: string | undefined;
|
4821
5581
|
hoverTooltip?: boolean | undefined;
|
4822
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;
|
4823
5591
|
});
|
4824
5592
|
} & {
|
4825
5593
|
disabledReason?: string | undefined;
|
@@ -4850,6 +5618,8 @@ export declare class HelpSyncCommand {
|
|
4850
5618
|
allow_create_label?: string | undefined;
|
4851
5619
|
show_in_record_action_list?: boolean | undefined;
|
4852
5620
|
show_in_default_list?: boolean | undefined;
|
5621
|
+
auto_choose?: boolean | undefined;
|
5622
|
+
is_private?: boolean | undefined;
|
4853
5623
|
}) | ({
|
4854
5624
|
type: "set";
|
4855
5625
|
value: string[] | number[] | {
|
@@ -4871,6 +5641,8 @@ export declare class HelpSyncCommand {
|
|
4871
5641
|
loaded?: any[] | undefined;
|
4872
5642
|
allow_create?: boolean | undefined;
|
4873
5643
|
allow_create_label?: string | undefined;
|
5644
|
+
auto_choose?: boolean | undefined;
|
5645
|
+
is_private?: boolean | undefined;
|
4874
5646
|
}) | ({
|
4875
5647
|
type: "provided";
|
4876
5648
|
value: "time" | "text";
|
@@ -4891,6 +5663,8 @@ export declare class HelpSyncCommand {
|
|
4891
5663
|
dateTimeArgumentTypeId?: number | undefined;
|
4892
5664
|
allow_create?: boolean | undefined;
|
4893
5665
|
allow_create_label?: string | undefined;
|
5666
|
+
auto_choose?: boolean | undefined;
|
5667
|
+
is_private?: boolean | undefined;
|
4894
5668
|
}) | ({
|
4895
5669
|
type: "dependent";
|
4896
5670
|
value: string;
|
@@ -4910,6 +5684,8 @@ export declare class HelpSyncCommand {
|
|
4910
5684
|
loaded?: any[] | undefined;
|
4911
5685
|
allow_create?: boolean | undefined;
|
4912
5686
|
allow_create_label?: string | undefined;
|
5687
|
+
auto_choose?: boolean | undefined;
|
5688
|
+
is_private?: boolean | undefined;
|
4913
5689
|
}) | ({
|
4914
5690
|
type: "function";
|
4915
5691
|
value: string;
|
@@ -4929,6 +5705,34 @@ export declare class HelpSyncCommand {
|
|
4929
5705
|
loaded?: any[] | undefined;
|
4930
5706
|
allow_create?: boolean | undefined;
|
4931
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;
|
4932
5736
|
});
|
4933
5737
|
};
|
4934
5738
|
tags: string[];
|
@@ -4982,13 +5786,17 @@ export declare class HelpSyncCommand {
|
|
4982
5786
|
shortcut_win: string[];
|
4983
5787
|
hotkey_mac: string;
|
4984
5788
|
hotkey_win: string;
|
4985
|
-
detail: string | {
|
5789
|
+
detail: string | ({
|
4986
5790
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4987
5791
|
value: string;
|
4988
|
-
}
|
5792
|
+
} & {
|
5793
|
+
position?: "inline" | "popover" | undefined;
|
5794
|
+
}) | (string | ({
|
4989
5795
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
4990
5796
|
value: string;
|
4991
|
-
}
|
5797
|
+
} & {
|
5798
|
+
position?: "inline" | "popover" | undefined;
|
5799
|
+
}))[] | null;
|
4992
5800
|
} & {
|
4993
5801
|
third_party_source?: string | null | undefined;
|
4994
5802
|
third_party_id?: string | null | undefined;
|
@@ -5082,6 +5890,14 @@ export declare class HelpSyncCommand {
|
|
5082
5890
|
object?: string | undefined;
|
5083
5891
|
hoverTooltip?: boolean | undefined;
|
5084
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;
|
5085
5901
|
});
|
5086
5902
|
} & {
|
5087
5903
|
disabledReason?: string | undefined;
|
@@ -5112,6 +5928,8 @@ export declare class HelpSyncCommand {
|
|
5112
5928
|
allow_create_label?: string | undefined;
|
5113
5929
|
show_in_record_action_list?: boolean | undefined;
|
5114
5930
|
show_in_default_list?: boolean | undefined;
|
5931
|
+
auto_choose?: boolean | undefined;
|
5932
|
+
is_private?: boolean | undefined;
|
5115
5933
|
}) | ({
|
5116
5934
|
type: "set";
|
5117
5935
|
value: string[] | number[] | {
|
@@ -5133,6 +5951,8 @@ export declare class HelpSyncCommand {
|
|
5133
5951
|
loaded?: any[] | undefined;
|
5134
5952
|
allow_create?: boolean | undefined;
|
5135
5953
|
allow_create_label?: string | undefined;
|
5954
|
+
auto_choose?: boolean | undefined;
|
5955
|
+
is_private?: boolean | undefined;
|
5136
5956
|
}) | ({
|
5137
5957
|
type: "provided";
|
5138
5958
|
value: "time" | "text";
|
@@ -5153,6 +5973,8 @@ export declare class HelpSyncCommand {
|
|
5153
5973
|
dateTimeArgumentTypeId?: number | undefined;
|
5154
5974
|
allow_create?: boolean | undefined;
|
5155
5975
|
allow_create_label?: string | undefined;
|
5976
|
+
auto_choose?: boolean | undefined;
|
5977
|
+
is_private?: boolean | undefined;
|
5156
5978
|
}) | ({
|
5157
5979
|
type: "dependent";
|
5158
5980
|
value: string;
|
@@ -5172,6 +5994,8 @@ export declare class HelpSyncCommand {
|
|
5172
5994
|
loaded?: any[] | undefined;
|
5173
5995
|
allow_create?: boolean | undefined;
|
5174
5996
|
allow_create_label?: string | undefined;
|
5997
|
+
auto_choose?: boolean | undefined;
|
5998
|
+
is_private?: boolean | undefined;
|
5175
5999
|
}) | ({
|
5176
6000
|
type: "function";
|
5177
6001
|
value: string;
|
@@ -5191,6 +6015,34 @@ export declare class HelpSyncCommand {
|
|
5191
6015
|
loaded?: any[] | undefined;
|
5192
6016
|
allow_create?: boolean | undefined;
|
5193
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;
|
5194
6046
|
});
|
5195
6047
|
};
|
5196
6048
|
tags: string[];
|
@@ -5244,13 +6096,17 @@ export declare class HelpSyncCommand {
|
|
5244
6096
|
shortcut_win: string[];
|
5245
6097
|
hotkey_mac: string;
|
5246
6098
|
hotkey_win: string;
|
5247
|
-
detail: string | {
|
6099
|
+
detail: string | ({
|
5248
6100
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5249
6101
|
value: string;
|
5250
|
-
}
|
6102
|
+
} & {
|
6103
|
+
position?: "inline" | "popover" | undefined;
|
6104
|
+
}) | (string | ({
|
5251
6105
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5252
6106
|
value: string;
|
5253
|
-
}
|
6107
|
+
} & {
|
6108
|
+
position?: "inline" | "popover" | undefined;
|
6109
|
+
}))[] | null;
|
5254
6110
|
} & {
|
5255
6111
|
third_party_source?: string | null | undefined;
|
5256
6112
|
third_party_id?: string | null | undefined;
|
@@ -5343,6 +6199,14 @@ export declare class HelpSyncCommand {
|
|
5343
6199
|
object?: string | undefined;
|
5344
6200
|
hoverTooltip?: boolean | undefined;
|
5345
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;
|
5346
6210
|
});
|
5347
6211
|
} & {
|
5348
6212
|
disabledReason?: string | undefined;
|
@@ -5373,6 +6237,8 @@ export declare class HelpSyncCommand {
|
|
5373
6237
|
allow_create_label?: string | undefined;
|
5374
6238
|
show_in_record_action_list?: boolean | undefined;
|
5375
6239
|
show_in_default_list?: boolean | undefined;
|
6240
|
+
auto_choose?: boolean | undefined;
|
6241
|
+
is_private?: boolean | undefined;
|
5376
6242
|
}) | ({
|
5377
6243
|
type: "set";
|
5378
6244
|
value: string[] | number[] | {
|
@@ -5394,6 +6260,8 @@ export declare class HelpSyncCommand {
|
|
5394
6260
|
loaded?: any[] | undefined;
|
5395
6261
|
allow_create?: boolean | undefined;
|
5396
6262
|
allow_create_label?: string | undefined;
|
6263
|
+
auto_choose?: boolean | undefined;
|
6264
|
+
is_private?: boolean | undefined;
|
5397
6265
|
}) | ({
|
5398
6266
|
type: "provided";
|
5399
6267
|
value: "time" | "text";
|
@@ -5414,6 +6282,8 @@ export declare class HelpSyncCommand {
|
|
5414
6282
|
dateTimeArgumentTypeId?: number | undefined;
|
5415
6283
|
allow_create?: boolean | undefined;
|
5416
6284
|
allow_create_label?: string | undefined;
|
6285
|
+
auto_choose?: boolean | undefined;
|
6286
|
+
is_private?: boolean | undefined;
|
5417
6287
|
}) | ({
|
5418
6288
|
type: "dependent";
|
5419
6289
|
value: string;
|
@@ -5433,6 +6303,8 @@ export declare class HelpSyncCommand {
|
|
5433
6303
|
loaded?: any[] | undefined;
|
5434
6304
|
allow_create?: boolean | undefined;
|
5435
6305
|
allow_create_label?: string | undefined;
|
6306
|
+
auto_choose?: boolean | undefined;
|
6307
|
+
is_private?: boolean | undefined;
|
5436
6308
|
}) | ({
|
5437
6309
|
type: "function";
|
5438
6310
|
value: string;
|
@@ -5452,6 +6324,34 @@ export declare class HelpSyncCommand {
|
|
5452
6324
|
loaded?: any[] | undefined;
|
5453
6325
|
allow_create?: boolean | undefined;
|
5454
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;
|
5455
6355
|
});
|
5456
6356
|
};
|
5457
6357
|
tags: string[];
|
@@ -5505,13 +6405,17 @@ export declare class HelpSyncCommand {
|
|
5505
6405
|
shortcut_win: string[];
|
5506
6406
|
hotkey_mac: string;
|
5507
6407
|
hotkey_win: string;
|
5508
|
-
detail: string | {
|
6408
|
+
detail: string | ({
|
5509
6409
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5510
6410
|
value: string;
|
5511
|
-
}
|
6411
|
+
} & {
|
6412
|
+
position?: "inline" | "popover" | undefined;
|
6413
|
+
}) | (string | ({
|
5512
6414
|
type: "html" | "video" | "plaintext" | "markdown" | "react" | null;
|
5513
6415
|
value: string;
|
5514
|
-
}
|
6416
|
+
} & {
|
6417
|
+
position?: "inline" | "popover" | undefined;
|
6418
|
+
}))[] | null;
|
5515
6419
|
} & {
|
5516
6420
|
third_party_source?: string | null | undefined;
|
5517
6421
|
third_party_id?: string | null | undefined;
|