commandbar 1.6.6 → 1.6.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. package/package.json +1 -1
  2. package/build/commandbar-js/src/index.d.ts +0 -10
  3. package/build/commandbar-js/src/index.js +0 -1
  4. package/build/commandbar-js/src/init.d.ts +0 -21
  5. package/build/commandbar-js/src/snippet.d.ts +0 -1
  6. package/build/internal/src/client/AddContextOptions.d.ts +0 -57
  7. package/build/internal/src/client/AnalyticsEventTypes.d.ts +0 -1
  8. package/build/internal/src/client/CommandBarClientSDK.d.ts +0 -254
  9. package/build/internal/src/client/CommandBarProxySDK.d.ts +0 -48
  10. package/build/internal/src/client/CommandBarSDK.d.ts +0 -43
  11. package/build/internal/src/client/EventHandler.d.ts +0 -89
  12. package/build/internal/src/client/SDKConfig.d.ts +0 -13
  13. package/build/internal/src/client/SentryReporter.d.ts +0 -41
  14. package/build/internal/src/client/globals.d.ts +0 -18
  15. package/build/internal/src/client/proxy.d.ts +0 -15
  16. package/build/internal/src/client/symbols.d.ts +0 -30
  17. package/build/internal/src/middleware/CommandFromClientV.d.ts +0 -205
  18. package/build/internal/src/middleware/ICommandFromClientType.d.ts +0 -3
  19. package/build/internal/src/middleware/IResourceSettings.d.ts +0 -3
  20. package/build/internal/src/middleware/OrganizationV.d.ts +0 -102
  21. package/build/internal/src/middleware/ResourceSettingsV.d.ts +0 -43
  22. package/build/internal/src/middleware/command.d.ts +0 -2852
  23. package/build/internal/src/middleware/commandCategory.d.ts +0 -87
  24. package/build/internal/src/middleware/context.d.ts +0 -40
  25. package/build/internal/src/middleware/environment.d.ts +0 -11
  26. package/build/internal/src/middleware/generics.d.ts +0 -32
  27. package/build/internal/src/middleware/guide.d.ts +0 -37
  28. package/build/internal/src/middleware/helpers/argument.d.ts +0 -404
  29. package/build/internal/src/middleware/helpers/commandTemplate.d.ts +0 -129
  30. package/build/internal/src/middleware/helpers/endUser.d.ts +0 -10
  31. package/build/internal/src/middleware/helpers/rules.d.ts +0 -231
  32. package/build/internal/src/middleware/historyEvent.d.ts +0 -40
  33. package/build/internal/src/middleware/network.d.ts +0 -4
  34. package/build/internal/src/middleware/organization.d.ts +0 -589
  35. package/build/internal/src/middleware/placeholder.d.ts +0 -47
  36. package/build/internal/src/middleware/profile.d.ts +0 -11
  37. package/build/internal/src/middleware/releases.d.ts +0 -261
  38. package/build/internal/src/middleware/skin.d.ts +0 -66
  39. package/build/internal/src/middleware/types.d.ts +0 -359
  40. package/build/internal/src/middleware/user.d.ts +0 -12
  41. package/build/internal/src/util/Disposable.d.ts +0 -17
  42. package/build/internal/src/util/LocalStorage.d.ts +0 -6
  43. package/build/internal/src/util/Logger.d.ts +0 -18
  44. package/build/internal/src/util/dispatchCustomEvent.d.ts +0 -2
@@ -1,87 +0,0 @@
1
- /*******************************************************************************/
2
- import * as t from 'io-ts';
3
- export declare const CommandCategoryV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
4
- id: t.NumberC;
5
- organization: t.UnionC<[t.NumberC, t.StringC]>;
6
- name: t.StringC;
7
- }>, t.PartialC<{}>]>, t.TypeC<{
8
- sort_key: t.UnionC<[t.NumberC, t.NullC]>;
9
- icon: t.UnionC<[t.StringC, t.NullC]>;
10
- setting_hide_before_search: t.BooleanC;
11
- setting_max_options_count: t.UnionC<[t.NumberC, t.NullC]>;
12
- setting_pin_to_bottom: t.BooleanC;
13
- search_tab_enabled: t.BooleanC;
14
- search_tab_name: t.StringC;
15
- search_tab_instruction: t.StringC;
16
- }>]>;
17
- export declare class CommandCategory {
18
- static create: (object: {
19
- id: number;
20
- organization: string | number;
21
- name: string;
22
- } & {} & {
23
- sort_key: number | null;
24
- icon: string | null;
25
- setting_hide_before_search: boolean;
26
- setting_max_options_count: number | null;
27
- setting_pin_to_bottom: boolean;
28
- search_tab_enabled: boolean;
29
- search_tab_name: string;
30
- search_tab_instruction: string;
31
- }, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
32
- id: number;
33
- organization: string | number;
34
- name: string;
35
- } & {} & {
36
- sort_key: number | null;
37
- icon: string | null;
38
- setting_hide_before_search: boolean;
39
- setting_max_options_count: number | null;
40
- setting_pin_to_bottom: boolean;
41
- search_tab_enabled: boolean;
42
- search_tab_name: string;
43
- search_tab_instruction: string;
44
- }>;
45
- static update: (object: {
46
- id: number;
47
- organization: string | number;
48
- name: string;
49
- } & {} & {
50
- sort_key: number | null;
51
- icon: string | null;
52
- setting_hide_before_search: boolean;
53
- setting_max_options_count: number | null;
54
- setting_pin_to_bottom: boolean;
55
- search_tab_enabled: boolean;
56
- search_tab_name: string;
57
- search_tab_instruction: string;
58
- }, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
59
- id: number;
60
- organization: string | number;
61
- name: string;
62
- } & {} & {
63
- sort_key: number | null;
64
- icon: string | null;
65
- setting_hide_before_search: boolean;
66
- setting_max_options_count: number | null;
67
- setting_pin_to_bottom: boolean;
68
- search_tab_enabled: boolean;
69
- search_tab_name: string;
70
- search_tab_instruction: string;
71
- }>;
72
- static delete: (id: string | number, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<void>;
73
- static decode: (data: any) => {
74
- id: number;
75
- organization: string | number;
76
- name: string;
77
- } & {} & {
78
- sort_key: number | null;
79
- icon: string | null;
80
- setting_hide_before_search: boolean;
81
- setting_max_options_count: number | null;
82
- setting_pin_to_bottom: boolean;
83
- search_tab_enabled: boolean;
84
- search_tab_name: string;
85
- search_tab_instruction: string;
86
- };
87
- }
@@ -1,40 +0,0 @@
1
- import * as t from 'io-ts';
2
- export declare const ContextV: t.IntersectionC<[t.TypeC<{
3
- id: t.NumberC;
4
- name: t.StringC;
5
- organization: t.StringC;
6
- value: t.RecordC<t.StringC, t.AnyC>;
7
- }>, t.PartialC<{}>]>;
8
- export declare class Context {
9
- static create: (object: {
10
- id: number;
11
- name: string;
12
- organization: string;
13
- value: {
14
- [x: string]: any;
15
- };
16
- } & {}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
17
- id: number;
18
- name: string;
19
- organization: string;
20
- value: {
21
- [x: string]: any;
22
- };
23
- } & {}>;
24
- static update: (object: {
25
- id: number;
26
- name: string;
27
- organization: string;
28
- value: {
29
- [x: string]: any;
30
- };
31
- } & {}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
32
- id: number;
33
- name: string;
34
- organization: string;
35
- value: {
36
- [x: string]: any;
37
- };
38
- } & {}>;
39
- static delete: (id: string | number, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<void>;
40
- }
@@ -1,11 +0,0 @@
1
- import * as t from 'io-ts';
2
- export declare const EnvironmentV: t.TypeC<{
3
- env: t.StringC;
4
- version: t.UnionC<[t.NumberC, t.StringC, t.NullC, t.UndefinedC]>;
5
- }>;
6
- export declare class Environment {
7
- static decode: (data: any) => {
8
- env: string;
9
- version: string | number | null | undefined;
10
- };
11
- }
@@ -1,32 +0,0 @@
1
- import * as t from 'io-ts';
2
- declare function decodeToPromise<T, O, I>(validator: t.Type<T, O, I>, input: I): Promise<T>;
3
- declare function decodeThrowing<T, O, I>(validator: t.Type<T, O, I>, input: I): T;
4
- declare const GenericObject: t.TypeC<{
5
- id: t.UnionC<[t.NumberC, t.StringC]>;
6
- }>;
7
- export declare type GenericObjectType = t.TypeOf<typeof GenericObject>;
8
- declare function createObject<T, Q, O, I>(output: t.Type<T, O, I>, input: t.Type<Q, O, I>, url: string, params?: Record<string, string>): (object: Q, onSuccess?: () => void, onError?: (err: string) => void) => Promise<T>;
9
- declare function readObject<T, O, I>(arg: t.Type<T, O, I>, url: string): (arg0: string, params?: Record<string, string>, callbacks?: {
10
- onSuccess?: () => void;
11
- onError?: (err: string) => void;
12
- }) => Promise<T>;
13
- declare function listObject<T, O, I>(arg: t.Type<T, O, I>, obj: string): (onSuccess?: () => void, onError?: (err: string) => void) => Promise<T[]>;
14
- declare function updateObject<T, O, I, Q extends GenericObjectType>(output: t.Type<T, O, I>, input: t.Type<Q, O, I>, url: string, params?: Record<string, string>): (object: Q, onSuccess?: () => void, onError?: (err: string) => void) => Promise<T>;
15
- declare function deleteObject<T, O, I>(arg: t.Type<T, O, I>, url: string, params?: Record<string, string>): (id: number | string, onSuccess?: () => void, onError?: (err: string) => void) => Promise<void>;
16
- declare function readObjectDetail<T, O, I>(arg: t.Type<T, O, I>, url: string, detail: string): (arg0: string, urlArgs?: {
17
- [arg: string]: string;
18
- }, onSuccess?: () => void, onError?: (err: string) => void) => Promise<T>;
19
- declare function updateObjectDetail<T, O, I, J, K, Q extends GenericObjectType>(output: t.Type<T, O, I>, input: t.Type<Q, K, J>, url: string, detail: string): (object: Q, urlArgs?: {
20
- [arg: string]: string;
21
- }, onSuccess?: () => void, onError?: (err: string) => void) => Promise<T>;
22
- declare function createObjectDetail<T, O, I, J, K, Q extends GenericObjectType>(output: t.Type<T, O, I>, input: t.Type<Q, K, J>, url: string, detail: string): (object: Q, onSuccess?: () => void, onError?: (err: string) => void, urlArgs?: {
23
- [arg: string]: string;
24
- }) => Promise<T>;
25
- declare function loadIDList(ids: number[], klass: any, method?: string, urlArgs?: {
26
- [arg: string]: string;
27
- }): Promise<any[]>;
28
- declare function read<T, O, I>(arg: t.Type<T, O, I>, url: string): (params?: Record<string, string>, callbacks?: {
29
- onSuccess?: () => void;
30
- onError?: (err: string) => void;
31
- }) => Promise<T>;
32
- export { createObject, createObjectDetail, read, readObject, listObject, updateObject, deleteObject, GenericObject, readObjectDetail, updateObjectDetail, loadIDList, decodeToPromise, decodeThrowing, };
@@ -1,37 +0,0 @@
1
- import * as t from 'io-ts';
2
- export declare const GuideV: t.IntersectionC<[t.TypeC<{
3
- id: t.NumberC;
4
- organization: t.StringC;
5
- event: t.StringC;
6
- nudge: t.StringC;
7
- guidance: t.StringC;
8
- }>, t.PartialC<{}>]>;
9
- export declare class Guide {
10
- static create: (object: {
11
- id: number;
12
- organization: string;
13
- event: string;
14
- nudge: string;
15
- guidance: string;
16
- } & {}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
17
- id: number;
18
- organization: string;
19
- event: string;
20
- nudge: string;
21
- guidance: string;
22
- } & {}>;
23
- static update: (object: {
24
- id: number;
25
- organization: string;
26
- event: string;
27
- nudge: string;
28
- guidance: string;
29
- } & {}, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<{
30
- id: number;
31
- organization: string;
32
- event: string;
33
- nudge: string;
34
- guidance: string;
35
- } & {}>;
36
- static delete: (id: string | number, onSuccess?: (() => void) | undefined, onError?: ((err: string) => void) | undefined) => Promise<void>;
37
- }
@@ -1,404 +0,0 @@
1
- /*******************************************************************************/
2
- import * as t from 'io-ts';
3
- /*******************************************************************************/
4
- export declare const ConditionOperatorV: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
5
- export declare const ConditionV: t.TypeC<{
6
- field: t.StringC;
7
- operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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>, t.ArrayC<t.UnknownRecordC>]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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>, t.ArrayC<t.UnknownRecordC>]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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>, t.ArrayC<t.UnknownRecordC>]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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>, t.ArrayC<t.UnknownRecordC>]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
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
- }>]>]>]>;