commandbar 1.3.1 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/commandbar-js/src/index.d.ts +10 -0
- package/build/commandbar-js/src/index.js +1 -0
- package/build/commandbar-js/src/init.d.ts +17 -0
- package/build/commandbar-js/src/snippet.d.ts +1 -0
- package/build/internal/src/client/AddContextOptions.d.ts +57 -0
- package/build/internal/src/client/CommandBarClientSDK.d.ts +182 -0
- package/build/internal/src/client/CommandBarProxySDK.d.ts +48 -0
- package/build/internal/src/client/CommandBarSDK.d.ts +42 -0
- package/build/internal/src/client/EventHandler.d.ts +54 -0
- package/build/internal/src/client/Reporting.d.ts +1 -0
- package/build/internal/src/client/SDKConfig.d.ts +7 -0
- package/build/internal/src/client/SentryReporter.d.ts +41 -0
- package/build/internal/src/client/proxy.d.ts +15 -0
- package/build/internal/src/client/symbols.d.ts +27 -0
- package/build/internal/src/middleware/CommandFromClientV.d.ts +128 -0
- package/build/internal/src/middleware/ICommandFromClientType.d.ts +3 -0
- package/build/internal/src/middleware/IResourceSettings.d.ts +3 -0
- package/build/internal/src/middleware/OrganizationV.d.ts +42 -0
- package/build/internal/src/middleware/ResourceSettingsV.d.ts +33 -0
- package/build/internal/src/middleware/helpers/argument.d.ts +404 -0
- package/build/internal/src/middleware/helpers/commandTemplate.d.ts +129 -0
- package/build/internal/src/util/Disposable.d.ts +17 -0
- package/package.json +12 -14
- package/scripts/minify-snippet.ts +36 -0
- package/scripts/watch.ts +5 -0
- package/src/index.ts +11 -2
- package/src/init.ts +29 -88
- package/src/snippet.ts +57 -45
- package/tsconfig.json +5 -3
- package/webpack.config.js +8 -13
- package/yarn-error.log +20216 -0
- package/build/commandbar.d.ts +0 -67
- package/build/commandbar.d.ts.map +0 -1
- package/build/commandbar.js +0 -3
- package/build/commandbar.js.map +0 -1
- package/build/index.d.ts +0 -3
- package/build/index.d.ts.map +0 -1
- package/build/index.js +0 -27
- package/build/index.js.map +0 -1
- package/build/init.d.ts +0 -17
- package/build/init.d.ts.map +0 -1
- package/build/init.js +0 -116
- package/build/init.js.map +0 -1
- package/build/snippet.d.ts +0 -2
- package/build/snippet.d.ts.map +0 -1
- package/build/snippet.js +0 -55
- package/build/snippet.js.map +0 -1
- package/src/commandbar.ts +0 -76
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import * as t from 'io-ts';
|
|
2
|
+
export declare const CommandFromClientV: t.IntersectionC<[t.TypeC<{
|
|
3
|
+
name: t.StringC;
|
|
4
|
+
template: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
5
|
+
type: t.LiteralC<"callback">;
|
|
6
|
+
value: t.StringC;
|
|
7
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
|
8
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
|
9
|
+
object: t.StringC;
|
|
10
|
+
hoverTooltip: t.BooleanC;
|
|
11
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
|
12
|
+
}>]>]>, t.IntersectionC<[t.TypeC<{
|
|
13
|
+
type: t.LiteralC<"link">;
|
|
14
|
+
value: t.StringC;
|
|
15
|
+
}>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
|
|
16
|
+
commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
|
|
17
|
+
object: t.StringC;
|
|
18
|
+
hoverTooltip: t.BooleanC;
|
|
19
|
+
operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
|
|
20
|
+
}>]>]>]>;
|
|
21
|
+
text: t.StringC;
|
|
22
|
+
}>, t.PartialC<{
|
|
23
|
+
shortcut_mac: t.ArrayC<t.StringC>;
|
|
24
|
+
shortcut_win: t.ArrayC<t.StringC>;
|
|
25
|
+
tags: t.ArrayC<t.StringC>;
|
|
26
|
+
explanation: t.StringC;
|
|
27
|
+
sort_key: t.UnionC<[t.NumberC, t.NullC]>;
|
|
28
|
+
arguments: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
29
|
+
type: t.LiteralC<"context">;
|
|
30
|
+
value: t.StringC;
|
|
31
|
+
order_key: t.NumberC;
|
|
32
|
+
}>, t.PartialC<{
|
|
33
|
+
label: t.StringC;
|
|
34
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
35
|
+
selected: t.ArrayC<t.AnyC>;
|
|
36
|
+
input_type: t.StringC;
|
|
37
|
+
preselected_key: t.StringC;
|
|
38
|
+
label_field: t.StringC;
|
|
39
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
40
|
+
field: t.StringC;
|
|
41
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
42
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
43
|
+
}>>;
|
|
44
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
45
|
+
allow_create: t.BooleanC;
|
|
46
|
+
allow_create_label: t.StringC;
|
|
47
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
48
|
+
type: t.LiteralC<"set">;
|
|
49
|
+
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>]>;
|
|
50
|
+
order_key: t.NumberC;
|
|
51
|
+
}>, t.PartialC<{
|
|
52
|
+
label: t.StringC;
|
|
53
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
54
|
+
selected: t.ArrayC<t.AnyC>;
|
|
55
|
+
input_type: t.StringC;
|
|
56
|
+
preselected_key: t.StringC;
|
|
57
|
+
label_field: t.StringC;
|
|
58
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
59
|
+
field: t.StringC;
|
|
60
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
61
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
62
|
+
}>>;
|
|
63
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
64
|
+
allow_create: t.BooleanC;
|
|
65
|
+
allow_create_label: t.StringC;
|
|
66
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
67
|
+
type: t.LiteralC<"provided">;
|
|
68
|
+
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
|
69
|
+
order_key: t.NumberC;
|
|
70
|
+
}>, t.PartialC<{
|
|
71
|
+
label: t.StringC;
|
|
72
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
73
|
+
selected: t.ArrayC<t.AnyC>;
|
|
74
|
+
input_type: t.StringC;
|
|
75
|
+
preselected_key: t.StringC;
|
|
76
|
+
label_field: t.StringC;
|
|
77
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
78
|
+
field: t.StringC;
|
|
79
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
80
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
81
|
+
}>>;
|
|
82
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
83
|
+
dateTimeArgumentTypeId: t.NumberC;
|
|
84
|
+
allow_create: t.BooleanC;
|
|
85
|
+
allow_create_label: t.StringC;
|
|
86
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
87
|
+
type: t.LiteralC<"dependent">;
|
|
88
|
+
value: t.StringC;
|
|
89
|
+
order_key: t.NumberC;
|
|
90
|
+
}>, t.PartialC<{
|
|
91
|
+
label: t.StringC;
|
|
92
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
93
|
+
selected: t.ArrayC<t.AnyC>;
|
|
94
|
+
input_type: t.StringC;
|
|
95
|
+
preselected_key: t.StringC;
|
|
96
|
+
label_field: t.StringC;
|
|
97
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
98
|
+
field: t.StringC;
|
|
99
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
100
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
101
|
+
}>>;
|
|
102
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
103
|
+
allow_create: t.BooleanC;
|
|
104
|
+
allow_create_label: t.StringC;
|
|
105
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
106
|
+
type: t.LiteralC<"function">;
|
|
107
|
+
value: t.StringC;
|
|
108
|
+
order_key: t.NumberC;
|
|
109
|
+
}>, t.PartialC<{
|
|
110
|
+
label: t.StringC;
|
|
111
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
112
|
+
selected: t.ArrayC<t.AnyC>;
|
|
113
|
+
input_type: t.StringC;
|
|
114
|
+
preselected_key: t.StringC;
|
|
115
|
+
label_field: t.StringC;
|
|
116
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
117
|
+
field: t.StringC;
|
|
118
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
119
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
120
|
+
}>>;
|
|
121
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
122
|
+
allow_create: t.BooleanC;
|
|
123
|
+
allow_create_label: t.StringC;
|
|
124
|
+
}>]>]>>;
|
|
125
|
+
category: t.UnionC<[t.NumberC, t.NullC]>;
|
|
126
|
+
icon: t.UnionC<[t.StringC, t.NullC]>;
|
|
127
|
+
celebrate: t.UnionC<[t.RecordC<t.StringC, t.AnyC>, t.NullC]>;
|
|
128
|
+
}>]>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as t from 'io-ts';
|
|
2
|
+
export declare const OrganizationV: t.IntersectionC<[t.TypeC<{
|
|
3
|
+
id: t.UnionC<[t.NumberC, t.StringC]>;
|
|
4
|
+
name: t.StringC;
|
|
5
|
+
created: t.StringC;
|
|
6
|
+
launcher_type: t.UnionC<[t.LiteralC<"minimal">, t.LiteralC<"alternate">, t.LiteralC<"prompt">, t.LiteralC<"none">]>;
|
|
7
|
+
launcher_position: t.UnionC<[t.LiteralC<"topRight">, t.LiteralC<"topLeft">, t.LiteralC<"bottomRight">, t.LiteralC<"bottomLeft">]>;
|
|
8
|
+
show_launcher_recommendations: t.BooleanC;
|
|
9
|
+
recommendations_type: t.UnionC<[t.LiteralC<"None">, t.LiteralC<"Custom">, t.LiteralC<"Algorithm">]>;
|
|
10
|
+
launcher_offset_x: t.NumberC;
|
|
11
|
+
launcher_offset_y: t.NumberC;
|
|
12
|
+
theme: t.ObjectC;
|
|
13
|
+
icon: t.StringC;
|
|
14
|
+
icon_suggest: t.StringC;
|
|
15
|
+
icon_tutorial: t.StringC;
|
|
16
|
+
resource_options: t.RecordC<t.StringC, t.PartialC<{
|
|
17
|
+
name: t.StringC;
|
|
18
|
+
search: t.BooleanC;
|
|
19
|
+
label_field: t.StringC;
|
|
20
|
+
useCategory: t.BooleanC;
|
|
21
|
+
showResources: t.BooleanC;
|
|
22
|
+
search_fields: t.ArrayC<t.StringC>;
|
|
23
|
+
auto_execute: t.BooleanC;
|
|
24
|
+
unfurl: t.BooleanC;
|
|
25
|
+
description_field: t.StringC;
|
|
26
|
+
icon: t.StringC;
|
|
27
|
+
sort_key: t.NumberC;
|
|
28
|
+
max_options_count: t.UnionC<[t.NumberC, t.NullC]>;
|
|
29
|
+
sortFunction: t.AnyC;
|
|
30
|
+
default_command_id: t.UnionC<[t.NumberC, t.UndefinedC]>;
|
|
31
|
+
}>>;
|
|
32
|
+
should_show_onboarding: t.BooleanC;
|
|
33
|
+
last_snippet_request: t.UnionC<[t.StringC, t.NullC]>;
|
|
34
|
+
last_snippet_request_in_production: t.UnionC<[t.StringC, t.NullC]>;
|
|
35
|
+
branding: t.StringC;
|
|
36
|
+
custom_call_to_action: t.StringC;
|
|
37
|
+
search_fuzzy_threshold: t.UnionC<[t.NumberC, t.NullC]>;
|
|
38
|
+
show_skin_editor: t.BooleanC;
|
|
39
|
+
allow_event_handlers: t.BooleanC;
|
|
40
|
+
in_bar_feedback: t.BooleanC;
|
|
41
|
+
}>, t.PartialC<{}>]>;
|
|
42
|
+
export declare type IOrganizationType = t.TypeOf<typeof OrganizationV>;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as t from 'io-ts';
|
|
2
|
+
export declare const ResourceSettingsV: t.PartialC<{
|
|
3
|
+
name: t.StringC;
|
|
4
|
+
search: t.BooleanC;
|
|
5
|
+
label_field: t.StringC;
|
|
6
|
+
useCategory: t.BooleanC;
|
|
7
|
+
showResources: t.BooleanC;
|
|
8
|
+
search_fields: t.ArrayC<t.StringC>;
|
|
9
|
+
auto_execute: t.BooleanC;
|
|
10
|
+
unfurl: t.BooleanC;
|
|
11
|
+
description_field: t.StringC;
|
|
12
|
+
icon: t.StringC;
|
|
13
|
+
sort_key: t.NumberC;
|
|
14
|
+
max_options_count: t.UnionC<[t.NumberC, t.NullC]>;
|
|
15
|
+
sortFunction: t.AnyC;
|
|
16
|
+
default_command_id: t.UnionC<[t.NumberC, t.UndefinedC]>;
|
|
17
|
+
}>;
|
|
18
|
+
export declare const ResourceSettingsByContextKeyV: t.RecordC<t.StringC, t.PartialC<{
|
|
19
|
+
name: t.StringC;
|
|
20
|
+
search: t.BooleanC;
|
|
21
|
+
label_field: t.StringC;
|
|
22
|
+
useCategory: t.BooleanC;
|
|
23
|
+
showResources: t.BooleanC;
|
|
24
|
+
search_fields: t.ArrayC<t.StringC>;
|
|
25
|
+
auto_execute: t.BooleanC;
|
|
26
|
+
unfurl: t.BooleanC;
|
|
27
|
+
description_field: t.StringC;
|
|
28
|
+
icon: t.StringC;
|
|
29
|
+
sort_key: t.NumberC;
|
|
30
|
+
max_options_count: t.UnionC<[t.NumberC, t.NullC]>;
|
|
31
|
+
sortFunction: t.AnyC;
|
|
32
|
+
default_command_id: t.UnionC<[t.NumberC, t.UndefinedC]>;
|
|
33
|
+
}>>;
|
|
@@ -0,0 +1,404 @@
|
|
|
1
|
+
/*******************************************************************************/
|
|
2
|
+
import * as t from 'io-ts';
|
|
3
|
+
/*******************************************************************************/
|
|
4
|
+
export declare const ConditionOperatorV: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
5
|
+
export declare const ConditionV: t.TypeC<{
|
|
6
|
+
field: t.StringC;
|
|
7
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
8
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
9
|
+
}>;
|
|
10
|
+
export declare const ContextArgumentV: t.IntersectionC<[t.TypeC<{
|
|
11
|
+
type: t.LiteralC<"context">;
|
|
12
|
+
value: t.StringC;
|
|
13
|
+
order_key: t.NumberC;
|
|
14
|
+
}>, t.PartialC<{
|
|
15
|
+
label: t.StringC;
|
|
16
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
17
|
+
selected: t.ArrayC<t.AnyC>;
|
|
18
|
+
input_type: t.StringC;
|
|
19
|
+
preselected_key: t.StringC;
|
|
20
|
+
label_field: t.StringC;
|
|
21
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
22
|
+
field: t.StringC;
|
|
23
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
24
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
25
|
+
}>>;
|
|
26
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
27
|
+
allow_create: t.BooleanC;
|
|
28
|
+
allow_create_label: t.StringC;
|
|
29
|
+
}>]>;
|
|
30
|
+
export declare const SetArgumentV: t.IntersectionC<[t.TypeC<{
|
|
31
|
+
type: t.LiteralC<"set">;
|
|
32
|
+
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>]>;
|
|
33
|
+
order_key: t.NumberC;
|
|
34
|
+
}>, t.PartialC<{
|
|
35
|
+
label: t.StringC;
|
|
36
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
37
|
+
selected: t.ArrayC<t.AnyC>;
|
|
38
|
+
input_type: t.StringC;
|
|
39
|
+
preselected_key: t.StringC;
|
|
40
|
+
label_field: t.StringC;
|
|
41
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
42
|
+
field: t.StringC;
|
|
43
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
44
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
45
|
+
}>>;
|
|
46
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
47
|
+
allow_create: t.BooleanC;
|
|
48
|
+
allow_create_label: t.StringC;
|
|
49
|
+
}>]>;
|
|
50
|
+
export declare const DynamicArgumentV: t.IntersectionC<[t.TypeC<{
|
|
51
|
+
type: t.LiteralC<"provided">;
|
|
52
|
+
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
|
53
|
+
order_key: t.NumberC;
|
|
54
|
+
}>, t.PartialC<{
|
|
55
|
+
label: t.StringC;
|
|
56
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
57
|
+
selected: t.ArrayC<t.AnyC>;
|
|
58
|
+
input_type: t.StringC;
|
|
59
|
+
preselected_key: t.StringC;
|
|
60
|
+
label_field: t.StringC;
|
|
61
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
62
|
+
field: t.StringC;
|
|
63
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
64
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
65
|
+
}>>;
|
|
66
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
67
|
+
dateTimeArgumentTypeId: t.NumberC;
|
|
68
|
+
allow_create: t.BooleanC;
|
|
69
|
+
allow_create_label: t.StringC;
|
|
70
|
+
}>]>;
|
|
71
|
+
export declare const DependentArgumentV: t.IntersectionC<[t.TypeC<{
|
|
72
|
+
type: t.LiteralC<"dependent">;
|
|
73
|
+
value: t.StringC;
|
|
74
|
+
order_key: t.NumberC;
|
|
75
|
+
}>, t.PartialC<{
|
|
76
|
+
label: t.StringC;
|
|
77
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
78
|
+
selected: t.ArrayC<t.AnyC>;
|
|
79
|
+
input_type: t.StringC;
|
|
80
|
+
preselected_key: t.StringC;
|
|
81
|
+
label_field: t.StringC;
|
|
82
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
83
|
+
field: t.StringC;
|
|
84
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
85
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
86
|
+
}>>;
|
|
87
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
88
|
+
allow_create: t.BooleanC;
|
|
89
|
+
allow_create_label: t.StringC;
|
|
90
|
+
}>]>;
|
|
91
|
+
export declare const FunctionArgumentV: t.IntersectionC<[t.TypeC<{
|
|
92
|
+
type: t.LiteralC<"function">;
|
|
93
|
+
value: t.StringC;
|
|
94
|
+
order_key: t.NumberC;
|
|
95
|
+
}>, t.PartialC<{
|
|
96
|
+
label: t.StringC;
|
|
97
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
98
|
+
selected: t.ArrayC<t.AnyC>;
|
|
99
|
+
input_type: t.StringC;
|
|
100
|
+
preselected_key: t.StringC;
|
|
101
|
+
label_field: t.StringC;
|
|
102
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
103
|
+
field: t.StringC;
|
|
104
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
105
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
106
|
+
}>>;
|
|
107
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
108
|
+
allow_create: t.BooleanC;
|
|
109
|
+
allow_create_label: t.StringC;
|
|
110
|
+
}>]>;
|
|
111
|
+
export declare const ArgumentTypeV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
112
|
+
type: t.LiteralC<"context">;
|
|
113
|
+
value: t.StringC;
|
|
114
|
+
order_key: t.NumberC;
|
|
115
|
+
}>, t.PartialC<{
|
|
116
|
+
label: t.StringC;
|
|
117
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
118
|
+
selected: t.ArrayC<t.AnyC>;
|
|
119
|
+
input_type: t.StringC;
|
|
120
|
+
preselected_key: t.StringC;
|
|
121
|
+
label_field: t.StringC;
|
|
122
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
123
|
+
field: t.StringC;
|
|
124
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
125
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
126
|
+
}>>;
|
|
127
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
128
|
+
allow_create: t.BooleanC;
|
|
129
|
+
allow_create_label: t.StringC;
|
|
130
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
131
|
+
type: t.LiteralC<"set">;
|
|
132
|
+
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>]>;
|
|
133
|
+
order_key: t.NumberC;
|
|
134
|
+
}>, t.PartialC<{
|
|
135
|
+
label: t.StringC;
|
|
136
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
137
|
+
selected: t.ArrayC<t.AnyC>;
|
|
138
|
+
input_type: t.StringC;
|
|
139
|
+
preselected_key: t.StringC;
|
|
140
|
+
label_field: t.StringC;
|
|
141
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
142
|
+
field: t.StringC;
|
|
143
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
144
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
145
|
+
}>>;
|
|
146
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
147
|
+
allow_create: t.BooleanC;
|
|
148
|
+
allow_create_label: t.StringC;
|
|
149
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
150
|
+
type: t.LiteralC<"provided">;
|
|
151
|
+
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
|
152
|
+
order_key: t.NumberC;
|
|
153
|
+
}>, t.PartialC<{
|
|
154
|
+
label: t.StringC;
|
|
155
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
156
|
+
selected: t.ArrayC<t.AnyC>;
|
|
157
|
+
input_type: t.StringC;
|
|
158
|
+
preselected_key: t.StringC;
|
|
159
|
+
label_field: t.StringC;
|
|
160
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
161
|
+
field: t.StringC;
|
|
162
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
163
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
164
|
+
}>>;
|
|
165
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
166
|
+
dateTimeArgumentTypeId: t.NumberC;
|
|
167
|
+
allow_create: t.BooleanC;
|
|
168
|
+
allow_create_label: t.StringC;
|
|
169
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
170
|
+
type: t.LiteralC<"dependent">;
|
|
171
|
+
value: t.StringC;
|
|
172
|
+
order_key: t.NumberC;
|
|
173
|
+
}>, t.PartialC<{
|
|
174
|
+
label: t.StringC;
|
|
175
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
176
|
+
selected: t.ArrayC<t.AnyC>;
|
|
177
|
+
input_type: t.StringC;
|
|
178
|
+
preselected_key: t.StringC;
|
|
179
|
+
label_field: t.StringC;
|
|
180
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
181
|
+
field: t.StringC;
|
|
182
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
183
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
184
|
+
}>>;
|
|
185
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
186
|
+
allow_create: t.BooleanC;
|
|
187
|
+
allow_create_label: t.StringC;
|
|
188
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
189
|
+
type: t.LiteralC<"function">;
|
|
190
|
+
value: t.StringC;
|
|
191
|
+
order_key: t.NumberC;
|
|
192
|
+
}>, t.PartialC<{
|
|
193
|
+
label: t.StringC;
|
|
194
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
195
|
+
selected: t.ArrayC<t.AnyC>;
|
|
196
|
+
input_type: t.StringC;
|
|
197
|
+
preselected_key: t.StringC;
|
|
198
|
+
label_field: t.StringC;
|
|
199
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
200
|
+
field: t.StringC;
|
|
201
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
202
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
203
|
+
}>>;
|
|
204
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
205
|
+
allow_create: t.BooleanC;
|
|
206
|
+
allow_create_label: t.StringC;
|
|
207
|
+
}>]>]>;
|
|
208
|
+
export declare const ArgumentMapV: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
209
|
+
type: t.LiteralC<"context">;
|
|
210
|
+
value: t.StringC;
|
|
211
|
+
order_key: t.NumberC;
|
|
212
|
+
}>, t.PartialC<{
|
|
213
|
+
label: t.StringC;
|
|
214
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
215
|
+
selected: t.ArrayC<t.AnyC>;
|
|
216
|
+
input_type: t.StringC;
|
|
217
|
+
preselected_key: t.StringC;
|
|
218
|
+
label_field: t.StringC;
|
|
219
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
220
|
+
field: t.StringC;
|
|
221
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
222
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
223
|
+
}>>;
|
|
224
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
225
|
+
allow_create: t.BooleanC;
|
|
226
|
+
allow_create_label: t.StringC;
|
|
227
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
228
|
+
type: t.LiteralC<"set">;
|
|
229
|
+
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>]>;
|
|
230
|
+
order_key: t.NumberC;
|
|
231
|
+
}>, t.PartialC<{
|
|
232
|
+
label: t.StringC;
|
|
233
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
234
|
+
selected: t.ArrayC<t.AnyC>;
|
|
235
|
+
input_type: t.StringC;
|
|
236
|
+
preselected_key: t.StringC;
|
|
237
|
+
label_field: t.StringC;
|
|
238
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
239
|
+
field: t.StringC;
|
|
240
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
241
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
242
|
+
}>>;
|
|
243
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
244
|
+
allow_create: t.BooleanC;
|
|
245
|
+
allow_create_label: t.StringC;
|
|
246
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
247
|
+
type: t.LiteralC<"provided">;
|
|
248
|
+
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
|
249
|
+
order_key: t.NumberC;
|
|
250
|
+
}>, t.PartialC<{
|
|
251
|
+
label: t.StringC;
|
|
252
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
253
|
+
selected: t.ArrayC<t.AnyC>;
|
|
254
|
+
input_type: t.StringC;
|
|
255
|
+
preselected_key: t.StringC;
|
|
256
|
+
label_field: t.StringC;
|
|
257
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
258
|
+
field: t.StringC;
|
|
259
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
260
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
261
|
+
}>>;
|
|
262
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
263
|
+
dateTimeArgumentTypeId: t.NumberC;
|
|
264
|
+
allow_create: t.BooleanC;
|
|
265
|
+
allow_create_label: t.StringC;
|
|
266
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
267
|
+
type: t.LiteralC<"dependent">;
|
|
268
|
+
value: t.StringC;
|
|
269
|
+
order_key: t.NumberC;
|
|
270
|
+
}>, t.PartialC<{
|
|
271
|
+
label: t.StringC;
|
|
272
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
273
|
+
selected: t.ArrayC<t.AnyC>;
|
|
274
|
+
input_type: t.StringC;
|
|
275
|
+
preselected_key: t.StringC;
|
|
276
|
+
label_field: t.StringC;
|
|
277
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
278
|
+
field: t.StringC;
|
|
279
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
280
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
281
|
+
}>>;
|
|
282
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
283
|
+
allow_create: t.BooleanC;
|
|
284
|
+
allow_create_label: t.StringC;
|
|
285
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
286
|
+
type: t.LiteralC<"function">;
|
|
287
|
+
value: t.StringC;
|
|
288
|
+
order_key: t.NumberC;
|
|
289
|
+
}>, t.PartialC<{
|
|
290
|
+
label: t.StringC;
|
|
291
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
292
|
+
selected: t.ArrayC<t.AnyC>;
|
|
293
|
+
input_type: t.StringC;
|
|
294
|
+
preselected_key: t.StringC;
|
|
295
|
+
label_field: t.StringC;
|
|
296
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
297
|
+
field: t.StringC;
|
|
298
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
299
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
300
|
+
}>>;
|
|
301
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
302
|
+
allow_create: t.BooleanC;
|
|
303
|
+
allow_create_label: t.StringC;
|
|
304
|
+
}>]>]>>;
|
|
305
|
+
export declare const StepArgumentTypeV: t.IntersectionC<[t.TypeC<{
|
|
306
|
+
userDefinedName: t.StringC;
|
|
307
|
+
userDefinedValue: t.StringC;
|
|
308
|
+
}>, t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
309
|
+
type: t.LiteralC<"context">;
|
|
310
|
+
value: t.StringC;
|
|
311
|
+
order_key: t.NumberC;
|
|
312
|
+
}>, t.PartialC<{
|
|
313
|
+
label: t.StringC;
|
|
314
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
315
|
+
selected: t.ArrayC<t.AnyC>;
|
|
316
|
+
input_type: t.StringC;
|
|
317
|
+
preselected_key: t.StringC;
|
|
318
|
+
label_field: t.StringC;
|
|
319
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
320
|
+
field: t.StringC;
|
|
321
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
322
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
323
|
+
}>>;
|
|
324
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
325
|
+
allow_create: t.BooleanC;
|
|
326
|
+
allow_create_label: t.StringC;
|
|
327
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
328
|
+
type: t.LiteralC<"set">;
|
|
329
|
+
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>]>;
|
|
330
|
+
order_key: t.NumberC;
|
|
331
|
+
}>, t.PartialC<{
|
|
332
|
+
label: t.StringC;
|
|
333
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
334
|
+
selected: t.ArrayC<t.AnyC>;
|
|
335
|
+
input_type: t.StringC;
|
|
336
|
+
preselected_key: t.StringC;
|
|
337
|
+
label_field: t.StringC;
|
|
338
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
339
|
+
field: t.StringC;
|
|
340
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
341
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
342
|
+
}>>;
|
|
343
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
344
|
+
allow_create: t.BooleanC;
|
|
345
|
+
allow_create_label: t.StringC;
|
|
346
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
347
|
+
type: t.LiteralC<"provided">;
|
|
348
|
+
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
|
349
|
+
order_key: t.NumberC;
|
|
350
|
+
}>, t.PartialC<{
|
|
351
|
+
label: t.StringC;
|
|
352
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
353
|
+
selected: t.ArrayC<t.AnyC>;
|
|
354
|
+
input_type: t.StringC;
|
|
355
|
+
preselected_key: t.StringC;
|
|
356
|
+
label_field: t.StringC;
|
|
357
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
358
|
+
field: t.StringC;
|
|
359
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
360
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
361
|
+
}>>;
|
|
362
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
363
|
+
dateTimeArgumentTypeId: t.NumberC;
|
|
364
|
+
allow_create: t.BooleanC;
|
|
365
|
+
allow_create_label: t.StringC;
|
|
366
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
367
|
+
type: t.LiteralC<"dependent">;
|
|
368
|
+
value: t.StringC;
|
|
369
|
+
order_key: t.NumberC;
|
|
370
|
+
}>, t.PartialC<{
|
|
371
|
+
label: t.StringC;
|
|
372
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
373
|
+
selected: t.ArrayC<t.AnyC>;
|
|
374
|
+
input_type: t.StringC;
|
|
375
|
+
preselected_key: t.StringC;
|
|
376
|
+
label_field: t.StringC;
|
|
377
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
378
|
+
field: t.StringC;
|
|
379
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
380
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
381
|
+
}>>;
|
|
382
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
383
|
+
allow_create: t.BooleanC;
|
|
384
|
+
allow_create_label: t.StringC;
|
|
385
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
386
|
+
type: t.LiteralC<"function">;
|
|
387
|
+
value: t.StringC;
|
|
388
|
+
order_key: t.NumberC;
|
|
389
|
+
}>, t.PartialC<{
|
|
390
|
+
label: t.StringC;
|
|
391
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
392
|
+
selected: t.ArrayC<t.AnyC>;
|
|
393
|
+
input_type: t.StringC;
|
|
394
|
+
preselected_key: t.StringC;
|
|
395
|
+
label_field: t.StringC;
|
|
396
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
397
|
+
field: t.StringC;
|
|
398
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">]>;
|
|
399
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
400
|
+
}>>;
|
|
401
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
402
|
+
allow_create: t.BooleanC;
|
|
403
|
+
allow_create_label: t.StringC;
|
|
404
|
+
}>]>]>]>;
|