commandbar 1.6.7 → 1.6.8
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 +21 -0
- package/build/commandbar-js/src/snippet.d.ts +1 -0
- package/build/internal/src/client/AddContextOptions.d.ts +94 -0
- package/build/internal/src/client/AnalyticsEventTypes.d.ts +1 -0
- package/build/internal/src/client/CommandBarClientSDK.d.ts +293 -0
- package/build/internal/src/client/CommandBarProxySDK.d.ts +48 -0
- package/build/internal/src/client/CommandBarSDK.d.ts +50 -0
- package/build/internal/src/client/EventHandler.d.ts +89 -0
- package/build/internal/src/client/SDKConfig.d.ts +13 -0
- package/build/internal/src/client/SentryReporter.d.ts +41 -0
- package/build/internal/src/client/globals.d.ts +18 -0
- package/build/internal/src/client/proxy.d.ts +15 -0
- package/build/internal/src/client/symbols.d.ts +32 -0
- package/build/internal/src/middleware/CommandFromClientV.d.ts +220 -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 +102 -0
- package/build/internal/src/middleware/ResourceSettingsV.d.ts +43 -0
- package/build/internal/src/middleware/command.d.ts +3608 -0
- package/build/internal/src/middleware/commandCategory.d.ts +87 -0
- package/build/internal/src/middleware/confetti.d.ts +16 -0
- package/build/internal/src/middleware/context.d.ts +40 -0
- package/build/internal/src/middleware/environment.d.ts +11 -0
- package/build/internal/src/middleware/generics.d.ts +32 -0
- package/build/internal/src/middleware/guide.d.ts +37 -0
- package/build/internal/src/middleware/helpers/argument.d.ts +412 -0
- package/build/internal/src/middleware/helpers/commandTemplate.d.ts +129 -0
- package/build/internal/src/middleware/helpers/endUser.d.ts +10 -0
- package/build/internal/src/middleware/helpers/rules.d.ts +231 -0
- package/build/internal/src/middleware/historyEvent.d.ts +40 -0
- package/build/internal/src/middleware/network.d.ts +4 -0
- package/build/internal/src/middleware/organization.d.ts +604 -0
- package/build/internal/src/middleware/placeholder.d.ts +47 -0
- package/build/internal/src/middleware/profile.d.ts +11 -0
- package/build/internal/src/middleware/releases.d.ts +261 -0
- package/build/internal/src/middleware/skin.d.ts +66 -0
- package/build/internal/src/middleware/types.d.ts +378 -0
- package/build/internal/src/middleware/user.d.ts +12 -0
- package/build/internal/src/util/Disposable.d.ts +17 -0
- package/build/internal/src/util/LocalStorage.d.ts +6 -0
- package/build/internal/src/util/Logger.d.ts +18 -0
- package/build/internal/src/util/dispatchCustomEvent.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,87 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as t from 'io-ts';
|
|
2
|
+
export declare const ConfettiConfigV: t.PartialC<{
|
|
3
|
+
angle: t.NumberC;
|
|
4
|
+
spread: t.NumberC;
|
|
5
|
+
width: t.StringC;
|
|
6
|
+
height: t.StringC;
|
|
7
|
+
duration: t.NumberC;
|
|
8
|
+
dragFriction: t.NumberC;
|
|
9
|
+
stagger: t.NumberC;
|
|
10
|
+
startVelocity: t.NumberC;
|
|
11
|
+
elementCount: t.NumberC;
|
|
12
|
+
decay: t.NumberC;
|
|
13
|
+
colors: t.ArrayC<t.StringC>;
|
|
14
|
+
random: t.AnyC;
|
|
15
|
+
}>;
|
|
16
|
+
export declare type IConfettiConfig = t.TypeOf<typeof ConfettiConfigV>;
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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, };
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,412 @@
|
|
|
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
|
+
show_in_record_action_list: t.BooleanC;
|
|
30
|
+
show_in_default_list: t.BooleanC;
|
|
31
|
+
}>]>;
|
|
32
|
+
export declare const SetArgumentV: t.IntersectionC<[t.TypeC<{
|
|
33
|
+
type: t.LiteralC<"set">;
|
|
34
|
+
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
|
35
|
+
order_key: t.NumberC;
|
|
36
|
+
}>, t.PartialC<{
|
|
37
|
+
label: t.StringC;
|
|
38
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
39
|
+
selected: t.ArrayC<t.AnyC>;
|
|
40
|
+
input_type: t.StringC;
|
|
41
|
+
preselected_key: t.StringC;
|
|
42
|
+
label_field: t.StringC;
|
|
43
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
44
|
+
field: t.StringC;
|
|
45
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
46
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
47
|
+
}>>;
|
|
48
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
49
|
+
allow_create: t.BooleanC;
|
|
50
|
+
allow_create_label: t.StringC;
|
|
51
|
+
}>]>;
|
|
52
|
+
export declare const DynamicArgumentV: t.IntersectionC<[t.TypeC<{
|
|
53
|
+
type: t.LiteralC<"provided">;
|
|
54
|
+
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
|
55
|
+
order_key: t.NumberC;
|
|
56
|
+
}>, t.PartialC<{
|
|
57
|
+
label: t.StringC;
|
|
58
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
59
|
+
selected: t.ArrayC<t.AnyC>;
|
|
60
|
+
input_type: t.StringC;
|
|
61
|
+
preselected_key: t.StringC;
|
|
62
|
+
label_field: t.StringC;
|
|
63
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
64
|
+
field: t.StringC;
|
|
65
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
66
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
67
|
+
}>>;
|
|
68
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
69
|
+
dateTimeArgumentTypeId: t.NumberC;
|
|
70
|
+
allow_create: t.BooleanC;
|
|
71
|
+
allow_create_label: t.StringC;
|
|
72
|
+
}>]>;
|
|
73
|
+
export declare const DependentArgumentV: t.IntersectionC<[t.TypeC<{
|
|
74
|
+
type: t.LiteralC<"dependent">;
|
|
75
|
+
value: t.StringC;
|
|
76
|
+
order_key: t.NumberC;
|
|
77
|
+
}>, t.PartialC<{
|
|
78
|
+
label: t.StringC;
|
|
79
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
80
|
+
selected: t.ArrayC<t.AnyC>;
|
|
81
|
+
input_type: t.StringC;
|
|
82
|
+
preselected_key: t.StringC;
|
|
83
|
+
label_field: t.StringC;
|
|
84
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
85
|
+
field: t.StringC;
|
|
86
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
87
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
88
|
+
}>>;
|
|
89
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
90
|
+
allow_create: t.BooleanC;
|
|
91
|
+
allow_create_label: t.StringC;
|
|
92
|
+
}>]>;
|
|
93
|
+
export declare const FunctionArgumentV: t.IntersectionC<[t.TypeC<{
|
|
94
|
+
type: t.LiteralC<"function">;
|
|
95
|
+
value: t.StringC;
|
|
96
|
+
order_key: t.NumberC;
|
|
97
|
+
}>, t.PartialC<{
|
|
98
|
+
label: t.StringC;
|
|
99
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
100
|
+
selected: t.ArrayC<t.AnyC>;
|
|
101
|
+
input_type: t.StringC;
|
|
102
|
+
preselected_key: t.StringC;
|
|
103
|
+
label_field: t.StringC;
|
|
104
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
105
|
+
field: t.StringC;
|
|
106
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
107
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
108
|
+
}>>;
|
|
109
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
110
|
+
allow_create: t.BooleanC;
|
|
111
|
+
allow_create_label: t.StringC;
|
|
112
|
+
}>]>;
|
|
113
|
+
export declare const ArgumentTypeV: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
114
|
+
type: t.LiteralC<"context">;
|
|
115
|
+
value: t.StringC;
|
|
116
|
+
order_key: t.NumberC;
|
|
117
|
+
}>, t.PartialC<{
|
|
118
|
+
label: t.StringC;
|
|
119
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
120
|
+
selected: t.ArrayC<t.AnyC>;
|
|
121
|
+
input_type: t.StringC;
|
|
122
|
+
preselected_key: t.StringC;
|
|
123
|
+
label_field: t.StringC;
|
|
124
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
125
|
+
field: t.StringC;
|
|
126
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
127
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
128
|
+
}>>;
|
|
129
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
130
|
+
allow_create: t.BooleanC;
|
|
131
|
+
allow_create_label: t.StringC;
|
|
132
|
+
show_in_record_action_list: t.BooleanC;
|
|
133
|
+
show_in_default_list: t.BooleanC;
|
|
134
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
135
|
+
type: t.LiteralC<"set">;
|
|
136
|
+
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
|
137
|
+
order_key: t.NumberC;
|
|
138
|
+
}>, t.PartialC<{
|
|
139
|
+
label: t.StringC;
|
|
140
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
141
|
+
selected: t.ArrayC<t.AnyC>;
|
|
142
|
+
input_type: t.StringC;
|
|
143
|
+
preselected_key: t.StringC;
|
|
144
|
+
label_field: t.StringC;
|
|
145
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
146
|
+
field: t.StringC;
|
|
147
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
148
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
149
|
+
}>>;
|
|
150
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
151
|
+
allow_create: t.BooleanC;
|
|
152
|
+
allow_create_label: t.StringC;
|
|
153
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
154
|
+
type: t.LiteralC<"provided">;
|
|
155
|
+
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
|
156
|
+
order_key: t.NumberC;
|
|
157
|
+
}>, t.PartialC<{
|
|
158
|
+
label: t.StringC;
|
|
159
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
160
|
+
selected: t.ArrayC<t.AnyC>;
|
|
161
|
+
input_type: t.StringC;
|
|
162
|
+
preselected_key: t.StringC;
|
|
163
|
+
label_field: t.StringC;
|
|
164
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
165
|
+
field: t.StringC;
|
|
166
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
167
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
168
|
+
}>>;
|
|
169
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
170
|
+
dateTimeArgumentTypeId: t.NumberC;
|
|
171
|
+
allow_create: t.BooleanC;
|
|
172
|
+
allow_create_label: t.StringC;
|
|
173
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
174
|
+
type: t.LiteralC<"dependent">;
|
|
175
|
+
value: t.StringC;
|
|
176
|
+
order_key: t.NumberC;
|
|
177
|
+
}>, t.PartialC<{
|
|
178
|
+
label: t.StringC;
|
|
179
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
180
|
+
selected: t.ArrayC<t.AnyC>;
|
|
181
|
+
input_type: t.StringC;
|
|
182
|
+
preselected_key: t.StringC;
|
|
183
|
+
label_field: t.StringC;
|
|
184
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
185
|
+
field: t.StringC;
|
|
186
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
187
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
188
|
+
}>>;
|
|
189
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
190
|
+
allow_create: t.BooleanC;
|
|
191
|
+
allow_create_label: t.StringC;
|
|
192
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
193
|
+
type: t.LiteralC<"function">;
|
|
194
|
+
value: t.StringC;
|
|
195
|
+
order_key: t.NumberC;
|
|
196
|
+
}>, t.PartialC<{
|
|
197
|
+
label: t.StringC;
|
|
198
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
199
|
+
selected: t.ArrayC<t.AnyC>;
|
|
200
|
+
input_type: t.StringC;
|
|
201
|
+
preselected_key: t.StringC;
|
|
202
|
+
label_field: t.StringC;
|
|
203
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
204
|
+
field: t.StringC;
|
|
205
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
206
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
207
|
+
}>>;
|
|
208
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
209
|
+
allow_create: t.BooleanC;
|
|
210
|
+
allow_create_label: t.StringC;
|
|
211
|
+
}>]>]>;
|
|
212
|
+
export declare const ArgumentMapV: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
213
|
+
type: t.LiteralC<"context">;
|
|
214
|
+
value: t.StringC;
|
|
215
|
+
order_key: t.NumberC;
|
|
216
|
+
}>, t.PartialC<{
|
|
217
|
+
label: t.StringC;
|
|
218
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
219
|
+
selected: t.ArrayC<t.AnyC>;
|
|
220
|
+
input_type: t.StringC;
|
|
221
|
+
preselected_key: t.StringC;
|
|
222
|
+
label_field: t.StringC;
|
|
223
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
224
|
+
field: t.StringC;
|
|
225
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
226
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
227
|
+
}>>;
|
|
228
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
229
|
+
allow_create: t.BooleanC;
|
|
230
|
+
allow_create_label: t.StringC;
|
|
231
|
+
show_in_record_action_list: t.BooleanC;
|
|
232
|
+
show_in_default_list: t.BooleanC;
|
|
233
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
234
|
+
type: t.LiteralC<"set">;
|
|
235
|
+
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
|
236
|
+
order_key: t.NumberC;
|
|
237
|
+
}>, t.PartialC<{
|
|
238
|
+
label: t.StringC;
|
|
239
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
240
|
+
selected: t.ArrayC<t.AnyC>;
|
|
241
|
+
input_type: t.StringC;
|
|
242
|
+
preselected_key: t.StringC;
|
|
243
|
+
label_field: t.StringC;
|
|
244
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
245
|
+
field: t.StringC;
|
|
246
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
247
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
248
|
+
}>>;
|
|
249
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
250
|
+
allow_create: t.BooleanC;
|
|
251
|
+
allow_create_label: t.StringC;
|
|
252
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
253
|
+
type: t.LiteralC<"provided">;
|
|
254
|
+
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
|
255
|
+
order_key: t.NumberC;
|
|
256
|
+
}>, t.PartialC<{
|
|
257
|
+
label: t.StringC;
|
|
258
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
259
|
+
selected: t.ArrayC<t.AnyC>;
|
|
260
|
+
input_type: t.StringC;
|
|
261
|
+
preselected_key: t.StringC;
|
|
262
|
+
label_field: t.StringC;
|
|
263
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
264
|
+
field: t.StringC;
|
|
265
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
266
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
267
|
+
}>>;
|
|
268
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
269
|
+
dateTimeArgumentTypeId: t.NumberC;
|
|
270
|
+
allow_create: t.BooleanC;
|
|
271
|
+
allow_create_label: t.StringC;
|
|
272
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
273
|
+
type: t.LiteralC<"dependent">;
|
|
274
|
+
value: t.StringC;
|
|
275
|
+
order_key: t.NumberC;
|
|
276
|
+
}>, t.PartialC<{
|
|
277
|
+
label: t.StringC;
|
|
278
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
279
|
+
selected: t.ArrayC<t.AnyC>;
|
|
280
|
+
input_type: t.StringC;
|
|
281
|
+
preselected_key: t.StringC;
|
|
282
|
+
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
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
289
|
+
allow_create: t.BooleanC;
|
|
290
|
+
allow_create_label: t.StringC;
|
|
291
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
292
|
+
type: t.LiteralC<"function">;
|
|
293
|
+
value: t.StringC;
|
|
294
|
+
order_key: t.NumberC;
|
|
295
|
+
}>, t.PartialC<{
|
|
296
|
+
label: t.StringC;
|
|
297
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
298
|
+
selected: t.ArrayC<t.AnyC>;
|
|
299
|
+
input_type: t.StringC;
|
|
300
|
+
preselected_key: t.StringC;
|
|
301
|
+
label_field: t.StringC;
|
|
302
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
303
|
+
field: t.StringC;
|
|
304
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
305
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
306
|
+
}>>;
|
|
307
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
308
|
+
allow_create: t.BooleanC;
|
|
309
|
+
allow_create_label: t.StringC;
|
|
310
|
+
}>]>]>>;
|
|
311
|
+
export declare const StepArgumentTypeV: t.IntersectionC<[t.TypeC<{
|
|
312
|
+
userDefinedName: t.StringC;
|
|
313
|
+
userDefinedValue: t.StringC;
|
|
314
|
+
}>, t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
315
|
+
type: t.LiteralC<"context">;
|
|
316
|
+
value: t.StringC;
|
|
317
|
+
order_key: t.NumberC;
|
|
318
|
+
}>, t.PartialC<{
|
|
319
|
+
label: t.StringC;
|
|
320
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
321
|
+
selected: t.ArrayC<t.AnyC>;
|
|
322
|
+
input_type: t.StringC;
|
|
323
|
+
preselected_key: t.StringC;
|
|
324
|
+
label_field: t.StringC;
|
|
325
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
326
|
+
field: t.StringC;
|
|
327
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
328
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
329
|
+
}>>;
|
|
330
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
331
|
+
allow_create: t.BooleanC;
|
|
332
|
+
allow_create_label: t.StringC;
|
|
333
|
+
show_in_record_action_list: t.BooleanC;
|
|
334
|
+
show_in_default_list: t.BooleanC;
|
|
335
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
336
|
+
type: t.LiteralC<"set">;
|
|
337
|
+
value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
|
|
338
|
+
order_key: t.NumberC;
|
|
339
|
+
}>, t.PartialC<{
|
|
340
|
+
label: t.StringC;
|
|
341
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
342
|
+
selected: t.ArrayC<t.AnyC>;
|
|
343
|
+
input_type: t.StringC;
|
|
344
|
+
preselected_key: t.StringC;
|
|
345
|
+
label_field: t.StringC;
|
|
346
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
347
|
+
field: t.StringC;
|
|
348
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
349
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
350
|
+
}>>;
|
|
351
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
352
|
+
allow_create: t.BooleanC;
|
|
353
|
+
allow_create_label: t.StringC;
|
|
354
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
355
|
+
type: t.LiteralC<"provided">;
|
|
356
|
+
value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
|
|
357
|
+
order_key: t.NumberC;
|
|
358
|
+
}>, t.PartialC<{
|
|
359
|
+
label: t.StringC;
|
|
360
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
361
|
+
selected: t.ArrayC<t.AnyC>;
|
|
362
|
+
input_type: t.StringC;
|
|
363
|
+
preselected_key: t.StringC;
|
|
364
|
+
label_field: t.StringC;
|
|
365
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
366
|
+
field: t.StringC;
|
|
367
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
368
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
369
|
+
}>>;
|
|
370
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
371
|
+
dateTimeArgumentTypeId: t.NumberC;
|
|
372
|
+
allow_create: t.BooleanC;
|
|
373
|
+
allow_create_label: t.StringC;
|
|
374
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
375
|
+
type: t.LiteralC<"dependent">;
|
|
376
|
+
value: t.StringC;
|
|
377
|
+
order_key: t.NumberC;
|
|
378
|
+
}>, t.PartialC<{
|
|
379
|
+
label: t.StringC;
|
|
380
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
381
|
+
selected: t.ArrayC<t.AnyC>;
|
|
382
|
+
input_type: t.StringC;
|
|
383
|
+
preselected_key: t.StringC;
|
|
384
|
+
label_field: t.StringC;
|
|
385
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
386
|
+
field: t.StringC;
|
|
387
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
388
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
389
|
+
}>>;
|
|
390
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
391
|
+
allow_create: t.BooleanC;
|
|
392
|
+
allow_create_label: t.StringC;
|
|
393
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
394
|
+
type: t.LiteralC<"function">;
|
|
395
|
+
value: t.StringC;
|
|
396
|
+
order_key: t.NumberC;
|
|
397
|
+
}>, t.PartialC<{
|
|
398
|
+
label: t.StringC;
|
|
399
|
+
chosen: t.UnionC<[t.StringC, t.NumberC]>;
|
|
400
|
+
selected: t.ArrayC<t.AnyC>;
|
|
401
|
+
input_type: t.StringC;
|
|
402
|
+
preselected_key: t.StringC;
|
|
403
|
+
label_field: t.StringC;
|
|
404
|
+
availability_condition: t.ArrayC<t.TypeC<{
|
|
405
|
+
field: t.StringC;
|
|
406
|
+
operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
|
|
407
|
+
value: t.UnionC<[t.StringC, t.UndefinedC]>;
|
|
408
|
+
}>>;
|
|
409
|
+
loaded: t.ArrayC<t.AnyC>;
|
|
410
|
+
allow_create: t.BooleanC;
|
|
411
|
+
allow_create_label: t.StringC;
|
|
412
|
+
}>]>]>]>;
|