commandbar 1.7.2 → 1.7.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. package/build/commandbar-js/src/index.js +1 -1
  2. package/build/commandbar-js/src/init.d.ts +1 -1
  3. package/build/internal/src/client/AddContextOptions.d.ts +6 -7
  4. package/build/internal/src/client/AnalyticsEventTypes.d.ts +1 -1
  5. package/build/internal/src/client/CommandBarClientSDK.d.ts +18 -29
  6. package/build/internal/src/client/CommandBarSDK.d.ts +16 -2
  7. package/build/internal/src/client/EventHandler.d.ts +81 -16
  8. package/build/internal/src/client/globals.d.ts +1 -0
  9. package/build/internal/src/client/symbols.d.ts +6 -0
  10. package/build/internal/src/middleware/CommandFromClientV.d.ts +30 -47
  11. package/build/internal/src/middleware/OrganizationV.d.ts +7 -0
  12. package/build/internal/src/middleware/ResourceSettingsV.d.ts +2 -0
  13. package/build/internal/src/middleware/checklist.d.ts +740 -0
  14. package/build/internal/src/middleware/command.d.ts +680 -977
  15. package/build/internal/src/middleware/dashboardFlags.d.ts +9 -0
  16. package/build/internal/src/middleware/detailPreview.d.ts +3 -0
  17. package/build/internal/src/middleware/helpers/actions.d.ts +84 -0
  18. package/build/internal/src/middleware/helpers/argument.d.ts +0 -120
  19. package/build/internal/src/middleware/helpers/commandTemplate.d.ts +60 -60
  20. package/build/internal/src/middleware/helpers/endUser.d.ts +1 -0
  21. package/build/internal/src/middleware/helpers/goals.d.ts +26 -0
  22. package/build/internal/src/middleware/helpers/rules.d.ts +48 -22
  23. package/build/internal/src/middleware/helpers/tags.d.ts +7 -0
  24. package/build/internal/src/middleware/historyEvent.d.ts +0 -19
  25. package/build/internal/src/middleware/nudge.d.ts +890 -94
  26. package/build/internal/src/middleware/organization.d.ts +88 -56
  27. package/build/internal/src/middleware/skin.d.ts +13 -2
  28. package/build/internal/src/middleware/types.d.ts +29 -11
  29. package/build/internal/src/middleware/user.d.ts +2 -1
  30. package/build/internal/src/util/LocalStorage.d.ts +1 -1
  31. package/package.json +2 -3
  32. package/src/init.ts +1 -1
@@ -0,0 +1,9 @@
1
+ import * as t from 'io-ts';
2
+ export declare const DashboardFlagsV: t.TypeC<{
3
+ show_onboarding: t.BooleanC;
4
+ show_appsumo_onboarding: t.BooleanC;
5
+ }>;
6
+ export declare const DashboardFlagsPartialV: t.PartialC<{
7
+ show_onboarding: t.BooleanC;
8
+ show_appsumo_onboarding: t.BooleanC;
9
+ }>;
@@ -1,5 +1,6 @@
1
1
  /*******************************************************************************/
2
2
  import * as t from 'io-ts';
3
+ import { IEditorCommandType } from './types';
3
4
  export declare const DetailPreviewObjectV: t.IntersectionC<[t.TypeC<{
4
5
  type: t.UnionC<[t.LiteralC<"plaintext">, t.LiteralC<"markdown">, t.LiteralC<"html">, t.LiteralC<"react">, t.LiteralC<"video">, t.LiteralC<"component">]>;
5
6
  value: t.StringC;
@@ -19,3 +20,5 @@ export declare type DataRowMetadata = {
19
20
  export declare const DEFAULT_DETAIL_PREVIEW_TYPE: DetailPreviewObjectType['type'];
20
21
  export declare const standardize: (item: undefined | null | DetailPreviewType) => null | DetailPreviewObjectType[];
21
22
  export declare const getFirstDetail: (detail?: DetailPreviewType | null | undefined) => DetailPreviewObjectType | null;
23
+ /** `true` iff the help document's body should also be used as the 'preview' for this command */
24
+ export declare const shouldUseHelpDoc: (command: IEditorCommandType) => boolean;
@@ -0,0 +1,84 @@
1
+ import * as t from 'io-ts';
2
+ export declare const AdminAction: t.TypeC<{
3
+ type: t.LiteralC<"admin">;
4
+ value: t.StringC;
5
+ }>;
6
+ export declare const CallbackAction: t.TypeC<{
7
+ type: t.LiteralC<"callback">;
8
+ value: t.StringC;
9
+ }>;
10
+ export declare const OpenBarAction: t.IntersectionC<[t.TypeC<{
11
+ type: t.LiteralC<"open_bar">;
12
+ }>, t.PartialC<{
13
+ value: t.StringC;
14
+ categoryFilter: t.NumberC;
15
+ }>]>;
16
+ export declare const LinkAction: t.IntersectionC<[t.TypeC<{
17
+ type: t.LiteralC<"link">;
18
+ value: t.StringC;
19
+ }>, t.PartialC<{
20
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
21
+ }>]>;
22
+ export declare const ClickAction: t.TypeC<{
23
+ type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
24
+ value: t.ArrayC<t.StringC>;
25
+ }>;
26
+ export declare const BuiltInAction: t.TypeC<{
27
+ type: t.LiteralC<"builtin">;
28
+ value: t.StringC;
29
+ }>;
30
+ export declare const WebhookAction: t.TypeC<{
31
+ type: t.LiteralC<"webhook">;
32
+ value: t.StringC;
33
+ }>;
34
+ export declare const AppcuesAction: t.TypeC<{
35
+ type: t.LiteralC<"appcues">;
36
+ value: t.StringC;
37
+ }>;
38
+ export declare const ScriptAction: t.TypeC<{
39
+ type: t.LiteralC<"script">;
40
+ value: t.StringC;
41
+ }>;
42
+ export declare const VideoAction: t.TypeC<{
43
+ type: t.LiteralC<"video">;
44
+ value: t.StringC;
45
+ }>;
46
+ export declare const HelpDocAction: t.IntersectionC<[t.TypeC<{
47
+ type: t.LiteralC<"helpdoc">;
48
+ value: t.StringC;
49
+ }>, t.PartialC<{
50
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.LiteralC<"help_explorer">, t.UndefinedC]>;
51
+ }>]>;
52
+ export declare const CommandAction: t.TypeC<{
53
+ type: t.LiteralC<"execute_command">;
54
+ meta: t.TypeC<{
55
+ command: t.StringC;
56
+ }>;
57
+ }>;
58
+ export declare const NudgeAction: t.TypeC<{
59
+ type: t.LiteralC<"nudge">;
60
+ value: t.NumberC;
61
+ }>;
62
+ export declare const RequestV: t.IntersectionC<[t.TypeC<{
63
+ method: t.UnionC<[t.LiteralC<"get">, t.LiteralC<"delete">, t.LiteralC<"head">, t.LiteralC<"options">, t.LiteralC<"post">, t.LiteralC<"put">, t.LiteralC<"patch">]>;
64
+ url: t.StringC;
65
+ }>, t.PartialC<{
66
+ headers: t.UnknownRecordC;
67
+ body: t.UnknownRecordC;
68
+ onSend: t.StringC;
69
+ onSuccess: t.StringC;
70
+ onError: t.StringC;
71
+ }>]>;
72
+ export declare const RequestAction: t.TypeC<{
73
+ type: t.LiteralC<"request">;
74
+ value: t.IntersectionC<[t.TypeC<{
75
+ method: t.UnionC<[t.LiteralC<"get">, t.LiteralC<"delete">, t.LiteralC<"head">, t.LiteralC<"options">, t.LiteralC<"post">, t.LiteralC<"put">, t.LiteralC<"patch">]>;
76
+ url: t.StringC;
77
+ }>, t.PartialC<{
78
+ headers: t.UnknownRecordC;
79
+ body: t.UnknownRecordC;
80
+ onSend: t.StringC;
81
+ onSuccess: t.StringC;
82
+ onError: t.StringC;
83
+ }>]>;
84
+ }>;
@@ -18,11 +18,6 @@ export declare const ContextArgumentV: t.IntersectionC<[t.TypeC<{
18
18
  input_type: t.StringC;
19
19
  preselected_key: t.StringC;
20
20
  label_field: t.StringC;
21
- availability_condition: t.ArrayC<t.TypeC<{
22
- field: t.StringC;
23
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
24
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
25
- }>>;
26
21
  loaded: t.ArrayC<t.AnyC>;
27
22
  allow_create: t.BooleanC;
28
23
  allow_create_label: t.StringC;
@@ -42,11 +37,6 @@ export declare const SetArgumentV: t.IntersectionC<[t.TypeC<{
42
37
  input_type: t.StringC;
43
38
  preselected_key: t.StringC;
44
39
  label_field: t.StringC;
45
- availability_condition: t.ArrayC<t.TypeC<{
46
- field: t.StringC;
47
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
48
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
49
- }>>;
50
40
  loaded: t.ArrayC<t.AnyC>;
51
41
  allow_create: t.BooleanC;
52
42
  allow_create_label: t.StringC;
@@ -77,11 +67,6 @@ export declare const DashboardArgumentV: t.IntersectionC<[t.TypeC<{
77
67
  input_type: t.StringC;
78
68
  preselected_key: t.StringC;
79
69
  label_field: t.StringC;
80
- availability_condition: t.ArrayC<t.TypeC<{
81
- field: t.StringC;
82
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
83
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
84
- }>>;
85
70
  loaded: t.ArrayC<t.AnyC>;
86
71
  allow_create: t.BooleanC;
87
72
  allow_create_label: t.StringC;
@@ -99,11 +84,6 @@ export declare const DynamicArgumentV: t.IntersectionC<[t.TypeC<{
99
84
  input_type: t.StringC;
100
85
  preselected_key: t.StringC;
101
86
  label_field: t.StringC;
102
- availability_condition: t.ArrayC<t.TypeC<{
103
- field: t.StringC;
104
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
105
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
106
- }>>;
107
87
  loaded: t.ArrayC<t.AnyC>;
108
88
  dateTimeArgumentTypeId: t.NumberC;
109
89
  allow_create: t.BooleanC;
@@ -122,11 +102,6 @@ export declare const DependentArgumentV: t.IntersectionC<[t.TypeC<{
122
102
  input_type: t.StringC;
123
103
  preselected_key: t.StringC;
124
104
  label_field: t.StringC;
125
- availability_condition: t.ArrayC<t.TypeC<{
126
- field: t.StringC;
127
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
128
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
129
- }>>;
130
105
  loaded: t.ArrayC<t.AnyC>;
131
106
  allow_create: t.BooleanC;
132
107
  allow_create_label: t.StringC;
@@ -144,11 +119,6 @@ export declare const FunctionArgumentV: t.IntersectionC<[t.TypeC<{
144
119
  input_type: t.StringC;
145
120
  preselected_key: t.StringC;
146
121
  label_field: t.StringC;
147
- availability_condition: t.ArrayC<t.TypeC<{
148
- field: t.StringC;
149
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
150
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
151
- }>>;
152
122
  loaded: t.ArrayC<t.AnyC>;
153
123
  allow_create: t.BooleanC;
154
124
  allow_create_label: t.StringC;
@@ -166,11 +136,6 @@ export declare const ArgumentTypeV: t.UnionC<[t.IntersectionC<[t.TypeC<{
166
136
  input_type: t.StringC;
167
137
  preselected_key: t.StringC;
168
138
  label_field: t.StringC;
169
- availability_condition: t.ArrayC<t.TypeC<{
170
- field: t.StringC;
171
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
172
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
173
- }>>;
174
139
  loaded: t.ArrayC<t.AnyC>;
175
140
  allow_create: t.BooleanC;
176
141
  allow_create_label: t.StringC;
@@ -189,11 +154,6 @@ export declare const ArgumentTypeV: t.UnionC<[t.IntersectionC<[t.TypeC<{
189
154
  input_type: t.StringC;
190
155
  preselected_key: t.StringC;
191
156
  label_field: t.StringC;
192
- availability_condition: t.ArrayC<t.TypeC<{
193
- field: t.StringC;
194
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
195
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
196
- }>>;
197
157
  loaded: t.ArrayC<t.AnyC>;
198
158
  allow_create: t.BooleanC;
199
159
  allow_create_label: t.StringC;
@@ -210,11 +170,6 @@ export declare const ArgumentTypeV: t.UnionC<[t.IntersectionC<[t.TypeC<{
210
170
  input_type: t.StringC;
211
171
  preselected_key: t.StringC;
212
172
  label_field: t.StringC;
213
- availability_condition: t.ArrayC<t.TypeC<{
214
- field: t.StringC;
215
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
216
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
217
- }>>;
218
173
  loaded: t.ArrayC<t.AnyC>;
219
174
  dateTimeArgumentTypeId: t.NumberC;
220
175
  allow_create: t.BooleanC;
@@ -232,11 +187,6 @@ export declare const ArgumentTypeV: t.UnionC<[t.IntersectionC<[t.TypeC<{
232
187
  input_type: t.StringC;
233
188
  preselected_key: t.StringC;
234
189
  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
190
  loaded: t.ArrayC<t.AnyC>;
241
191
  allow_create: t.BooleanC;
242
192
  allow_create_label: t.StringC;
@@ -253,11 +203,6 @@ export declare const ArgumentTypeV: t.UnionC<[t.IntersectionC<[t.TypeC<{
253
203
  input_type: t.StringC;
254
204
  preselected_key: t.StringC;
255
205
  label_field: t.StringC;
256
- availability_condition: t.ArrayC<t.TypeC<{
257
- field: t.StringC;
258
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
259
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
260
- }>>;
261
206
  loaded: t.ArrayC<t.AnyC>;
262
207
  allow_create: t.BooleanC;
263
208
  allow_create_label: t.StringC;
@@ -280,11 +225,6 @@ export declare const ArgumentTypeV: t.UnionC<[t.IntersectionC<[t.TypeC<{
280
225
  input_type: t.StringC;
281
226
  preselected_key: t.StringC;
282
227
  label_field: t.StringC;
283
- availability_condition: t.ArrayC<t.TypeC<{
284
- field: t.StringC;
285
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
286
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
287
- }>>;
288
228
  loaded: t.ArrayC<t.AnyC>;
289
229
  allow_create: t.BooleanC;
290
230
  allow_create_label: t.StringC;
@@ -302,11 +242,6 @@ export declare const ArgumentMapV: t.RecordC<t.StringC, t.UnionC<[t.Intersection
302
242
  input_type: t.StringC;
303
243
  preselected_key: t.StringC;
304
244
  label_field: t.StringC;
305
- availability_condition: t.ArrayC<t.TypeC<{
306
- field: t.StringC;
307
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
308
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
309
- }>>;
310
245
  loaded: t.ArrayC<t.AnyC>;
311
246
  allow_create: t.BooleanC;
312
247
  allow_create_label: t.StringC;
@@ -325,11 +260,6 @@ export declare const ArgumentMapV: t.RecordC<t.StringC, t.UnionC<[t.Intersection
325
260
  input_type: t.StringC;
326
261
  preselected_key: t.StringC;
327
262
  label_field: t.StringC;
328
- availability_condition: t.ArrayC<t.TypeC<{
329
- field: t.StringC;
330
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
331
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
332
- }>>;
333
263
  loaded: t.ArrayC<t.AnyC>;
334
264
  allow_create: t.BooleanC;
335
265
  allow_create_label: t.StringC;
@@ -346,11 +276,6 @@ export declare const ArgumentMapV: t.RecordC<t.StringC, t.UnionC<[t.Intersection
346
276
  input_type: t.StringC;
347
277
  preselected_key: t.StringC;
348
278
  label_field: t.StringC;
349
- availability_condition: t.ArrayC<t.TypeC<{
350
- field: t.StringC;
351
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
352
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
353
- }>>;
354
279
  loaded: t.ArrayC<t.AnyC>;
355
280
  dateTimeArgumentTypeId: t.NumberC;
356
281
  allow_create: t.BooleanC;
@@ -368,11 +293,6 @@ export declare const ArgumentMapV: t.RecordC<t.StringC, t.UnionC<[t.Intersection
368
293
  input_type: t.StringC;
369
294
  preselected_key: t.StringC;
370
295
  label_field: t.StringC;
371
- availability_condition: t.ArrayC<t.TypeC<{
372
- field: t.StringC;
373
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
374
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
375
- }>>;
376
296
  loaded: t.ArrayC<t.AnyC>;
377
297
  allow_create: t.BooleanC;
378
298
  allow_create_label: t.StringC;
@@ -389,11 +309,6 @@ export declare const ArgumentMapV: t.RecordC<t.StringC, t.UnionC<[t.Intersection
389
309
  input_type: t.StringC;
390
310
  preselected_key: t.StringC;
391
311
  label_field: t.StringC;
392
- availability_condition: t.ArrayC<t.TypeC<{
393
- field: t.StringC;
394
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
395
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
396
- }>>;
397
312
  loaded: t.ArrayC<t.AnyC>;
398
313
  allow_create: t.BooleanC;
399
314
  allow_create_label: t.StringC;
@@ -416,11 +331,6 @@ export declare const ArgumentMapV: t.RecordC<t.StringC, t.UnionC<[t.Intersection
416
331
  input_type: t.StringC;
417
332
  preselected_key: t.StringC;
418
333
  label_field: t.StringC;
419
- availability_condition: t.ArrayC<t.TypeC<{
420
- field: t.StringC;
421
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
422
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
423
- }>>;
424
334
  loaded: t.ArrayC<t.AnyC>;
425
335
  allow_create: t.BooleanC;
426
336
  allow_create_label: t.StringC;
@@ -441,11 +351,6 @@ export declare const StepArgumentTypeV: t.IntersectionC<[t.TypeC<{
441
351
  input_type: t.StringC;
442
352
  preselected_key: t.StringC;
443
353
  label_field: t.StringC;
444
- availability_condition: t.ArrayC<t.TypeC<{
445
- field: t.StringC;
446
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
447
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
448
- }>>;
449
354
  loaded: t.ArrayC<t.AnyC>;
450
355
  allow_create: t.BooleanC;
451
356
  allow_create_label: t.StringC;
@@ -464,11 +369,6 @@ export declare const StepArgumentTypeV: t.IntersectionC<[t.TypeC<{
464
369
  input_type: t.StringC;
465
370
  preselected_key: t.StringC;
466
371
  label_field: t.StringC;
467
- availability_condition: t.ArrayC<t.TypeC<{
468
- field: t.StringC;
469
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
470
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
471
- }>>;
472
372
  loaded: t.ArrayC<t.AnyC>;
473
373
  allow_create: t.BooleanC;
474
374
  allow_create_label: t.StringC;
@@ -485,11 +385,6 @@ export declare const StepArgumentTypeV: t.IntersectionC<[t.TypeC<{
485
385
  input_type: t.StringC;
486
386
  preselected_key: t.StringC;
487
387
  label_field: t.StringC;
488
- availability_condition: t.ArrayC<t.TypeC<{
489
- field: t.StringC;
490
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
491
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
492
- }>>;
493
388
  loaded: t.ArrayC<t.AnyC>;
494
389
  dateTimeArgumentTypeId: t.NumberC;
495
390
  allow_create: t.BooleanC;
@@ -507,11 +402,6 @@ export declare const StepArgumentTypeV: t.IntersectionC<[t.TypeC<{
507
402
  input_type: t.StringC;
508
403
  preselected_key: t.StringC;
509
404
  label_field: t.StringC;
510
- availability_condition: t.ArrayC<t.TypeC<{
511
- field: t.StringC;
512
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
513
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
514
- }>>;
515
405
  loaded: t.ArrayC<t.AnyC>;
516
406
  allow_create: t.BooleanC;
517
407
  allow_create_label: t.StringC;
@@ -528,11 +418,6 @@ export declare const StepArgumentTypeV: t.IntersectionC<[t.TypeC<{
528
418
  input_type: t.StringC;
529
419
  preselected_key: t.StringC;
530
420
  label_field: t.StringC;
531
- availability_condition: t.ArrayC<t.TypeC<{
532
- field: t.StringC;
533
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
534
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
535
- }>>;
536
421
  loaded: t.ArrayC<t.AnyC>;
537
422
  allow_create: t.BooleanC;
538
423
  allow_create_label: t.StringC;
@@ -555,11 +440,6 @@ export declare const StepArgumentTypeV: t.IntersectionC<[t.TypeC<{
555
440
  input_type: t.StringC;
556
441
  preselected_key: t.StringC;
557
442
  label_field: t.StringC;
558
- availability_condition: t.ArrayC<t.TypeC<{
559
- field: t.StringC;
560
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
561
- value: t.UnionC<[t.StringC, t.UndefinedC]>;
562
- }>>;
563
443
  loaded: t.ArrayC<t.AnyC>;
564
444
  allow_create: t.BooleanC;
565
445
  allow_create_label: t.StringC;
@@ -5,16 +5,17 @@ export declare const TemplateOptionsV: t.IntersectionC<[t.TypeC<{}>, t.PartialC<
5
5
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
6
6
  object: t.StringC;
7
7
  hoverTooltip: t.BooleanC;
8
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
8
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
9
9
  }>]>;
10
10
  export declare const AdminTemplateV: t.IntersectionC<[t.TypeC<{
11
11
  type: t.LiteralC<"admin">;
12
+ /*******************************************************************************/
12
13
  value: t.StringC;
13
14
  }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
14
15
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
15
16
  object: t.StringC;
16
17
  hoverTooltip: t.BooleanC;
17
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
18
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
18
19
  }>]>]>;
19
20
  export declare const CallbackTemplateV: t.IntersectionC<[t.TypeC<{
20
21
  type: t.LiteralC<"callback">;
@@ -23,16 +24,18 @@ export declare const CallbackTemplateV: t.IntersectionC<[t.TypeC<{
23
24
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
24
25
  object: t.StringC;
25
26
  hoverTooltip: t.BooleanC;
26
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
27
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
27
28
  }>]>]>;
28
- export declare const LinkTemplateV: t.IntersectionC<[t.TypeC<{
29
+ export declare const LinkTemplateV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
29
30
  type: t.LiteralC<"link">;
30
31
  value: t.StringC;
31
- }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
32
+ }>, t.PartialC<{
33
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
34
+ }>]>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
32
35
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
33
36
  object: t.StringC;
34
37
  hoverTooltip: t.BooleanC;
35
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
38
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
36
39
  }>]>]>;
37
40
  export declare const ClickTemplateV: t.IntersectionC<[t.TypeC<{
38
41
  type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
@@ -41,7 +44,7 @@ export declare const ClickTemplateV: t.IntersectionC<[t.TypeC<{
41
44
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
42
45
  object: t.StringC;
43
46
  hoverTooltip: t.BooleanC;
44
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
47
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
45
48
  }>]>]>;
46
49
  export declare const BuiltInTemplateV: t.IntersectionC<[t.TypeC<{
47
50
  type: t.LiteralC<"builtin">;
@@ -50,7 +53,7 @@ export declare const BuiltInTemplateV: t.IntersectionC<[t.TypeC<{
50
53
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
51
54
  object: t.StringC;
52
55
  hoverTooltip: t.BooleanC;
53
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
56
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
54
57
  }>]>]>;
55
58
  export declare const WebhookTemplateV: t.IntersectionC<[t.TypeC<{
56
59
  type: t.LiteralC<"webhook">;
@@ -59,80 +62,73 @@ export declare const WebhookTemplateV: t.IntersectionC<[t.TypeC<{
59
62
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
60
63
  object: t.StringC;
61
64
  hoverTooltip: t.BooleanC;
62
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
65
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
63
66
  }>]>]>;
64
- export declare const AppCuesTemplateV: t.IntersectionC<[t.TypeC<{
65
- type: t.LiteralC<"appcues">;
67
+ export declare const ScriptTemplateV: t.IntersectionC<[t.TypeC<{
68
+ type: t.LiteralC<"script">;
66
69
  value: t.StringC;
67
70
  }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
68
71
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
69
72
  object: t.StringC;
70
73
  hoverTooltip: t.BooleanC;
71
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
74
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
72
75
  }>]>]>;
73
- export declare const ScriptTemplateV: t.IntersectionC<[t.TypeC<{
74
- type: t.LiteralC<"script">;
75
- value: t.StringC;
76
+ export declare const RequestTemplateV: t.IntersectionC<[t.TypeC<{
77
+ type: t.LiteralC<"request">;
78
+ value: t.IntersectionC<[t.TypeC<{
79
+ method: t.UnionC<[t.LiteralC<"get">, t.LiteralC<"delete">, t.LiteralC<"head">, t.LiteralC<"options">, t.LiteralC<"post">, t.LiteralC<"put">, t.LiteralC<"patch">]>;
80
+ url: t.StringC;
81
+ }>, t.PartialC<{
82
+ headers: t.UnknownRecordC;
83
+ body: t.UnknownRecordC;
84
+ onSend: t.StringC;
85
+ onSuccess: t.StringC;
86
+ onError: t.StringC;
87
+ }>]>;
76
88
  }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
77
89
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
78
90
  object: t.StringC;
79
91
  hoverTooltip: t.BooleanC;
80
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
92
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
81
93
  }>]>]>;
82
- export declare const VideoTemplateV: t.IntersectionC<[t.TypeC<{
83
- type: t.LiteralC<"video">;
94
+ export declare const AppcuesTemplateV: t.IntersectionC<[t.TypeC<{
95
+ type: t.LiteralC<"appcues">;
84
96
  value: t.StringC;
85
97
  }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
86
98
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
87
99
  object: t.StringC;
88
100
  hoverTooltip: t.BooleanC;
89
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
101
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
90
102
  }>]>]>;
91
- export declare const HelpDocTemplateV: t.IntersectionC<[t.TypeC<{
92
- type: t.LiteralC<"helpdoc">;
103
+ export declare const VideoTemplateV: t.IntersectionC<[t.TypeC<{
104
+ type: t.LiteralC<"video">;
93
105
  value: t.StringC;
94
106
  }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
95
107
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
96
108
  object: t.StringC;
97
109
  hoverTooltip: t.BooleanC;
98
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
110
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
99
111
  }>]>]>;
100
- export declare const RequestV: t.IntersectionC<[t.TypeC<{
101
- method: t.UnionC<[t.LiteralC<"get">, t.LiteralC<"delete">, t.LiteralC<"head">, t.LiteralC<"options">, t.LiteralC<"post">, t.LiteralC<"put">, t.LiteralC<"patch">]>;
102
- url: t.StringC;
112
+ export declare const HelpDocTemplateV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
113
+ type: t.LiteralC<"helpdoc">;
114
+ value: t.StringC;
103
115
  }>, t.PartialC<{
104
- headers: t.UnknownRecordC;
105
- body: t.UnknownRecordC;
106
- onSend: t.StringC;
107
- onSuccess: t.StringC;
108
- onError: t.StringC;
109
- }>]>;
110
- export declare const RequestTemplateV: t.IntersectionC<[t.TypeC<{
111
- type: t.LiteralC<"request">;
112
- value: t.IntersectionC<[t.TypeC<{
113
- method: t.UnionC<[t.LiteralC<"get">, t.LiteralC<"delete">, t.LiteralC<"head">, t.LiteralC<"options">, t.LiteralC<"post">, t.LiteralC<"put">, t.LiteralC<"patch">]>;
114
- url: t.StringC;
115
- }>, t.PartialC<{
116
- headers: t.UnknownRecordC;
117
- body: t.UnknownRecordC;
118
- onSend: t.StringC;
119
- onSuccess: t.StringC;
120
- onError: t.StringC;
121
- }>]>;
122
- }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
116
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.LiteralC<"help_explorer">, t.UndefinedC]>;
117
+ }>]>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
123
118
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
124
119
  object: t.StringC;
125
120
  hoverTooltip: t.BooleanC;
126
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
121
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
127
122
  }>]>]>;
128
123
  export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
129
124
  type: t.LiteralC<"admin">;
125
+ /*******************************************************************************/
130
126
  value: t.StringC;
131
127
  }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
132
128
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
133
129
  object: t.StringC;
134
130
  hoverTooltip: t.BooleanC;
135
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
131
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
136
132
  }>]>]>, t.IntersectionC<[t.TypeC<{
137
133
  type: t.LiteralC<"callback">;
138
134
  value: t.StringC;
@@ -140,15 +136,17 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
140
136
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
141
137
  object: t.StringC;
142
138
  hoverTooltip: t.BooleanC;
143
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
144
- }>]>]>, t.IntersectionC<[t.TypeC<{
139
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
140
+ }>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
145
141
  type: t.LiteralC<"link">;
146
142
  value: t.StringC;
147
- }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
143
+ }>, t.PartialC<{
144
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
145
+ }>]>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
148
146
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
149
147
  object: t.StringC;
150
148
  hoverTooltip: t.BooleanC;
151
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
149
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
152
150
  }>]>]>, t.IntersectionC<[t.TypeC<{
153
151
  type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
154
152
  value: t.ArrayC<t.StringC>;
@@ -156,7 +154,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
156
154
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
157
155
  object: t.StringC;
158
156
  hoverTooltip: t.BooleanC;
159
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
157
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
160
158
  }>]>]>, t.IntersectionC<[t.TypeC<{
161
159
  type: t.LiteralC<"builtin">;
162
160
  value: t.StringC;
@@ -164,7 +162,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
164
162
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
165
163
  object: t.StringC;
166
164
  hoverTooltip: t.BooleanC;
167
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
165
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
168
166
  }>]>]>, t.IntersectionC<[t.TypeC<{
169
167
  type: t.LiteralC<"webhook">;
170
168
  value: t.StringC;
@@ -172,7 +170,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
172
170
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
173
171
  object: t.StringC;
174
172
  hoverTooltip: t.BooleanC;
175
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
173
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
176
174
  }>]>]>, t.IntersectionC<[t.TypeC<{
177
175
  type: t.LiteralC<"script">;
178
176
  value: t.StringC;
@@ -180,7 +178,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
180
178
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
181
179
  object: t.StringC;
182
180
  hoverTooltip: t.BooleanC;
183
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
181
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
184
182
  }>]>]>, t.IntersectionC<[t.TypeC<{
185
183
  type: t.LiteralC<"request">;
186
184
  value: t.IntersectionC<[t.TypeC<{
@@ -197,7 +195,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
197
195
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
198
196
  object: t.StringC;
199
197
  hoverTooltip: t.BooleanC;
200
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
198
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
201
199
  }>]>]>, t.IntersectionC<[t.TypeC<{
202
200
  type: t.LiteralC<"appcues">;
203
201
  value: t.StringC;
@@ -205,7 +203,7 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
205
203
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
206
204
  object: t.StringC;
207
205
  hoverTooltip: t.BooleanC;
208
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
206
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
209
207
  }>]>]>, t.IntersectionC<[t.TypeC<{
210
208
  type: t.LiteralC<"video">;
211
209
  value: t.StringC;
@@ -213,13 +211,15 @@ export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
213
211
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
214
212
  object: t.StringC;
215
213
  hoverTooltip: t.BooleanC;
216
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
217
- }>]>]>, t.IntersectionC<[t.TypeC<{
214
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
215
+ }>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
218
216
  type: t.LiteralC<"helpdoc">;
219
217
  value: t.StringC;
220
- }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
218
+ }>, t.PartialC<{
219
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.LiteralC<"help_explorer">, t.UndefinedC]>;
220
+ }>]>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
221
221
  commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
222
222
  object: t.StringC;
223
223
  hoverTooltip: t.BooleanC;
224
- operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
224
+ operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
225
225
  }>]>]>]>;