commandbar 1.7.1 → 1.7.3

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.
Files changed (35) hide show
  1. package/build/commandbar-js/src/index.js +1 -1
  2. package/build/commandbar-js/src/init.d.ts +2 -8
  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 +33 -31
  6. package/build/internal/src/client/CommandBarSDK.d.ts +20 -4
  7. package/build/internal/src/client/EventHandler.d.ts +92 -3
  8. package/build/internal/src/client/globals.d.ts +2 -0
  9. package/build/internal/src/client/symbols.d.ts +7 -0
  10. package/build/internal/src/middleware/CommandFromClientV.d.ts +32 -47
  11. package/build/internal/src/middleware/OrganizationV.d.ts +15 -2
  12. package/build/internal/src/middleware/ResourceSettingsV.d.ts +6 -0
  13. package/build/internal/src/middleware/checklist.d.ts +740 -0
  14. package/build/internal/src/middleware/command.d.ts +718 -977
  15. package/build/internal/src/middleware/commandCategory.d.ts +32 -0
  16. package/build/internal/src/middleware/dashboardFlags.d.ts +9 -0
  17. package/build/internal/src/middleware/detailPreview.d.ts +4 -0
  18. package/build/internal/src/middleware/helpers/actions.d.ts +84 -0
  19. package/build/internal/src/middleware/helpers/argument.d.ts +0 -120
  20. package/build/internal/src/middleware/helpers/commandTemplate.d.ts +60 -60
  21. package/build/internal/src/middleware/helpers/endUser.d.ts +1 -0
  22. package/build/internal/src/middleware/helpers/goals.d.ts +26 -0
  23. package/build/internal/src/middleware/helpers/rules.d.ts +48 -22
  24. package/build/internal/src/middleware/helpers/tags.d.ts +7 -0
  25. package/build/internal/src/middleware/historyEvent.d.ts +0 -19
  26. package/build/internal/src/middleware/nudge.d.ts +925 -81
  27. package/build/internal/src/middleware/organization.d.ts +110 -60
  28. package/build/internal/src/middleware/skin.d.ts +13 -2
  29. package/build/internal/src/middleware/types.d.ts +38 -6
  30. package/build/internal/src/middleware/user.d.ts +2 -1
  31. package/build/internal/src/util/LocalStorage.d.ts +1 -1
  32. package/package.json +3 -4
  33. package/src/init.ts +2 -9
  34. package/src/snippet.ts +2 -2
  35. package/webpack.config.js +5 -0
@@ -8,6 +8,8 @@ export declare const CommandCategoryV: t.IntersectionC<[t.IntersectionC<[t.TypeC
8
8
  }>, t.PartialC<{}>]>, t.TypeC<{
9
9
  sort_key: t.UnionC<[t.NumberC, t.NullC]>;
10
10
  icon: t.UnionC<[t.StringC, t.NullC]>;
11
+ icon_color: t.UnionC<[t.StringC, t.NullC]>;
12
+ image_color: t.UnionC<[t.StringC, t.NullC]>;
11
13
  image: t.UnionC<[t.StringC, t.NullC]>;
12
14
  render_as: t.UnionC<[t.LiteralC<"list">, t.LiteralC<"grid">]>;
13
15
  setting_hide_before_search: t.BooleanC;
@@ -19,6 +21,8 @@ export declare const CommandCategoryV: t.IntersectionC<[t.IntersectionC<[t.TypeC
19
21
  slash_filter_keyword: t.UnionC<[t.StringC, t.NullC]>;
20
22
  search_tab_instruction: t.StringC;
21
23
  track_recents: t.BooleanC;
24
+ }>, t.PartialC<{
25
+ contains_hotloaded_commands: t.BooleanC;
22
26
  }>]>;
23
27
  export declare const BatchEditorCategoryResponseV: t.TypeC<{
24
28
  batch: t.ArrayC<t.IntersectionC<[t.IntersectionC<[t.TypeC<{
@@ -28,6 +32,8 @@ export declare const BatchEditorCategoryResponseV: t.TypeC<{
28
32
  }>, t.PartialC<{}>]>, t.TypeC<{
29
33
  sort_key: t.UnionC<[t.NumberC, t.NullC]>;
30
34
  icon: t.UnionC<[t.StringC, t.NullC]>;
35
+ icon_color: t.UnionC<[t.StringC, t.NullC]>;
36
+ image_color: t.UnionC<[t.StringC, t.NullC]>;
31
37
  image: t.UnionC<[t.StringC, t.NullC]>;
32
38
  render_as: t.UnionC<[t.LiteralC<"list">, t.LiteralC<"grid">]>;
33
39
  setting_hide_before_search: t.BooleanC;
@@ -39,6 +45,8 @@ export declare const BatchEditorCategoryResponseV: t.TypeC<{
39
45
  slash_filter_keyword: t.UnionC<[t.StringC, t.NullC]>;
40
46
  search_tab_instruction: t.StringC;
41
47
  track_recents: t.BooleanC;
48
+ }>, t.PartialC<{
49
+ contains_hotloaded_commands: t.BooleanC;
42
50
  }>]>>;
43
51
  }>;
44
52
  export declare class CommandCategory {
@@ -49,6 +57,8 @@ export declare class CommandCategory {
49
57
  } & {} & {
50
58
  sort_key: number | null;
51
59
  icon: string | null;
60
+ icon_color: string | null;
61
+ image_color: string | null;
52
62
  image: string | null;
53
63
  render_as: "grid" | "list";
54
64
  setting_hide_before_search: boolean;
@@ -60,6 +70,8 @@ export declare class CommandCategory {
60
70
  slash_filter_keyword: string | null;
61
71
  search_tab_instruction: string;
62
72
  track_recents: boolean;
73
+ } & {
74
+ contains_hotloaded_commands?: boolean | undefined;
63
75
  }, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
64
76
  id: number;
65
77
  organization: string | number;
@@ -67,6 +79,8 @@ export declare class CommandCategory {
67
79
  } & {} & {
68
80
  sort_key: number | null;
69
81
  icon: string | null;
82
+ icon_color: string | null;
83
+ image_color: string | null;
70
84
  image: string | null;
71
85
  render_as: "grid" | "list";
72
86
  setting_hide_before_search: boolean;
@@ -78,6 +92,8 @@ export declare class CommandCategory {
78
92
  slash_filter_keyword: string | null;
79
93
  search_tab_instruction: string;
80
94
  track_recents: boolean;
95
+ } & {
96
+ contains_hotloaded_commands?: boolean | undefined;
81
97
  }>;
82
98
  static update: (object: {
83
99
  id: number;
@@ -86,6 +102,8 @@ export declare class CommandCategory {
86
102
  } & {} & {
87
103
  sort_key: number | null;
88
104
  icon: string | null;
105
+ icon_color: string | null;
106
+ image_color: string | null;
89
107
  image: string | null;
90
108
  render_as: "grid" | "list";
91
109
  setting_hide_before_search: boolean;
@@ -97,6 +115,8 @@ export declare class CommandCategory {
97
115
  slash_filter_keyword: string | null;
98
116
  search_tab_instruction: string;
99
117
  track_recents: boolean;
118
+ } & {
119
+ contains_hotloaded_commands?: boolean | undefined;
100
120
  }, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
101
121
  id: number;
102
122
  organization: string | number;
@@ -104,6 +124,8 @@ export declare class CommandCategory {
104
124
  } & {} & {
105
125
  sort_key: number | null;
106
126
  icon: string | null;
127
+ icon_color: string | null;
128
+ image_color: string | null;
107
129
  image: string | null;
108
130
  render_as: "grid" | "list";
109
131
  setting_hide_before_search: boolean;
@@ -115,6 +137,8 @@ export declare class CommandCategory {
115
137
  slash_filter_keyword: string | null;
116
138
  search_tab_instruction: string;
117
139
  track_recents: boolean;
140
+ } & {
141
+ contains_hotloaded_commands?: boolean | undefined;
118
142
  }>;
119
143
  static delete: (id: string | number, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<void>;
120
144
  static decode: (data: any) => {
@@ -124,6 +148,8 @@ export declare class CommandCategory {
124
148
  } & {} & {
125
149
  sort_key: number | null;
126
150
  icon: string | null;
151
+ icon_color: string | null;
152
+ image_color: string | null;
127
153
  image: string | null;
128
154
  render_as: "grid" | "list";
129
155
  setting_hide_before_search: boolean;
@@ -135,6 +161,8 @@ export declare class CommandCategory {
135
161
  slash_filter_keyword: string | null;
136
162
  search_tab_instruction: string;
137
163
  track_recents: boolean;
164
+ } & {
165
+ contains_hotloaded_commands?: boolean | undefined;
138
166
  };
139
167
  static batch: (request: t.TypeOf<typeof GenericBatchRequest>) => Promise<{
140
168
  batch: ({
@@ -144,6 +172,8 @@ export declare class CommandCategory {
144
172
  } & {} & {
145
173
  sort_key: number | null;
146
174
  icon: string | null;
175
+ icon_color: string | null;
176
+ image_color: string | null;
147
177
  image: string | null;
148
178
  render_as: "grid" | "list";
149
179
  setting_hide_before_search: boolean;
@@ -155,6 +185,8 @@ export declare class CommandCategory {
155
185
  slash_filter_keyword: string | null;
156
186
  search_tab_instruction: string;
157
187
  track_recents: boolean;
188
+ } & {
189
+ contains_hotloaded_commands?: boolean | undefined;
158
190
  })[];
159
191
  }>;
160
192
  }
@@ -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;
@@ -14,7 +15,10 @@ export declare type DataRowMetadata = {
14
15
  value: any;
15
16
  contextKey?: string;
16
17
  uid?: string;
18
+ inputText?: string;
17
19
  };
18
20
  export declare const DEFAULT_DETAIL_PREVIEW_TYPE: DetailPreviewObjectType['type'];
19
21
  export declare const standardize: (item: undefined | null | DetailPreviewType) => null | DetailPreviewObjectType[];
20
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;