@livechat/platform-workflows 0.1.3 → 0.1.5
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/dist/chunk-BW4GCPXP.mjs +20 -0
- package/dist/chunk-EACC5D4G.mjs +113 -0
- package/dist/{config/index.mjs → chunk-I4E63NIC.mjs} +5 -15
- package/dist/{chunk-I7LVNCZF.mjs → chunk-PWFJOGII.mjs} +1 -62
- package/dist/{chunk-Q53XLSIX.mjs → chunk-UQO6HYDU.mjs} +1 -53
- package/dist/chunk-V3FK4SUN.mjs +1606 -0
- package/dist/chunk-WFVTCU6F.mjs +24 -0
- package/dist/chunk-WNNR3KXF.mjs +1607 -0
- package/dist/chunk-WS4FFM4M.mjs +111 -0
- package/dist/chunk-XIPVJOPR.mjs +1621 -0
- package/dist/chunk-YS3C7NY2.mjs +1623 -0
- package/dist/{config/index.d.ts → config.d.mts} +5 -2
- package/dist/{config/index.d.mts → config.d.ts} +5 -2
- package/dist/{config/index.js → config.js} +0 -2
- package/dist/config.mjs +11 -0
- package/dist/constants.d.mts +1037 -0
- package/dist/constants.d.ts +1037 -0
- package/dist/constants.js +10845 -0
- package/dist/constants.mjs +10779 -0
- package/dist/index-B3GBo8sA.d.mts +98 -0
- package/dist/index-B3GBo8sA.d.ts +98 -0
- package/dist/index.d.mts +108 -2
- package/dist/index.d.ts +108 -2
- package/dist/index.js +203 -205
- package/dist/index.mjs +182 -11
- package/dist/tests.js +0 -1
- package/dist/tests.mjs +109 -4
- package/package.json +20 -7
- package/dist/.DS_Store +0 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { JSONSchema7 } from 'json-schema';
|
|
2
|
+
import { WorkflowDefinitionTaskType, WorkflowDefinitionHttpTask, WorkflowDefinitionForkJoinTask, WorkflowDefinitionJoinTask, WorkflowDefinitionSwitchTask, WorkflowDefinitionTerminateTask, DeepPartial, WorkflowTriggerDto } from '@livechat/developer-studio-api';
|
|
3
|
+
|
|
4
|
+
interface WorkflowItemCustomization {
|
|
5
|
+
provider: string;
|
|
6
|
+
providerDisplay: string;
|
|
7
|
+
displayName: string;
|
|
8
|
+
description: string;
|
|
9
|
+
shortDescription: string;
|
|
10
|
+
}
|
|
11
|
+
interface WorkflowItemConfigBase {
|
|
12
|
+
key: string;
|
|
13
|
+
isEditable: boolean;
|
|
14
|
+
customization: WorkflowItemCustomization;
|
|
15
|
+
}
|
|
16
|
+
type WorkflowTaskConfig = WorkflowItemConfigBase & (({
|
|
17
|
+
type: 'other';
|
|
18
|
+
specification: {
|
|
19
|
+
input?: JSONSchema7;
|
|
20
|
+
output?: JSONSchema7;
|
|
21
|
+
};
|
|
22
|
+
} & ({
|
|
23
|
+
key: typeof WorkflowDefinitionTaskType.http;
|
|
24
|
+
template: WorkflowDefinitionHttpTask;
|
|
25
|
+
} | {
|
|
26
|
+
key: typeof WorkflowDefinitionTaskType.forkJoin;
|
|
27
|
+
template: WorkflowDefinitionForkJoinTask;
|
|
28
|
+
} | {
|
|
29
|
+
key: typeof WorkflowDefinitionTaskType.join;
|
|
30
|
+
template: WorkflowDefinitionJoinTask;
|
|
31
|
+
} | {
|
|
32
|
+
key: typeof WorkflowDefinitionTaskType.switch;
|
|
33
|
+
template: WorkflowDefinitionSwitchTask;
|
|
34
|
+
} | {
|
|
35
|
+
key: typeof WorkflowDefinitionTaskType.terminate;
|
|
36
|
+
template: WorkflowDefinitionTerminateTask;
|
|
37
|
+
})) | {
|
|
38
|
+
type: typeof WorkflowDefinitionTaskType.http;
|
|
39
|
+
url: string;
|
|
40
|
+
specification: {
|
|
41
|
+
input?: JSONSchema7;
|
|
42
|
+
output?: JSONSchema7;
|
|
43
|
+
};
|
|
44
|
+
template: WorkflowDefinitionHttpTask;
|
|
45
|
+
});
|
|
46
|
+
type WorkflowTriggerConfig = (WorkflowItemConfigBase & {
|
|
47
|
+
type: 'webhook';
|
|
48
|
+
name: string;
|
|
49
|
+
specification: {
|
|
50
|
+
input?: JSONSchema7;
|
|
51
|
+
output: JSONSchema7;
|
|
52
|
+
};
|
|
53
|
+
template: DeepPartial<Extract<WorkflowTriggerDto, {
|
|
54
|
+
type: 'webhook';
|
|
55
|
+
}>>;
|
|
56
|
+
}) | (WorkflowItemConfigBase & {
|
|
57
|
+
type: 'system';
|
|
58
|
+
specification: {
|
|
59
|
+
input?: JSONSchema7;
|
|
60
|
+
output?: JSONSchema7;
|
|
61
|
+
};
|
|
62
|
+
template: Partial<Extract<WorkflowTriggerDto, {
|
|
63
|
+
type?: 'manual_only' | 'recurring' | 'one_time';
|
|
64
|
+
}>>;
|
|
65
|
+
});
|
|
66
|
+
type WorkflowItemConfig = ({
|
|
67
|
+
kind: 'task';
|
|
68
|
+
} & WorkflowTaskConfig) | ({
|
|
69
|
+
kind: 'trigger';
|
|
70
|
+
} & WorkflowTriggerConfig);
|
|
71
|
+
|
|
72
|
+
declare enum BigCommerceTaskNames {
|
|
73
|
+
CreateBlogPost = "BIGCOMMERCE_CREATE_BLOG_POST",
|
|
74
|
+
CreateCustomer = "BIGCOMMERCE_CREATE_CUSTOMER",
|
|
75
|
+
UpdateCustomer = "BIGCOMMERCE_UPDATE_CUSTOMER",
|
|
76
|
+
CreateProduct = "BIGCOMMERCE_CREATE_PRODUCT",
|
|
77
|
+
CreateCustomerAddress = "BIGCOMMERCE_CREATE_CUSTOMER_ADDRESS",
|
|
78
|
+
GetCustomer = "BIGCOMMERCE_GET_CUSTOMER",
|
|
79
|
+
GetCustomerAddresses = "BIGCOMMERCE_GET_CUSTOMER_ADDRESSES",
|
|
80
|
+
GetProducts = "BIGCOMMERCE_GET_PRODUCTS"
|
|
81
|
+
}
|
|
82
|
+
declare const bigCommerceTaskConfigs: () => Record<BigCommerceTaskNames, Extract<WorkflowItemConfig, {
|
|
83
|
+
kind: 'task';
|
|
84
|
+
}>>;
|
|
85
|
+
declare const BigCommerceTriggerNames: {
|
|
86
|
+
readonly CartCreated: "bigcommerce-cart_created";
|
|
87
|
+
readonly CartUpdated: "bigcommerce-cart_updated";
|
|
88
|
+
readonly OrderCreated: "bigcommerce-order_created";
|
|
89
|
+
readonly OrderUpdated: "bigcommerce-order_updated";
|
|
90
|
+
readonly ProductCreated: "bigcommerce-product_created";
|
|
91
|
+
readonly ProductUpdated: "bigcommerce-product_updated";
|
|
92
|
+
};
|
|
93
|
+
declare const bigcommerceTriggerConfigs: () => Record<(typeof BigCommerceTriggerNames)[keyof typeof BigCommerceTriggerNames], Extract<WorkflowItemConfig, {
|
|
94
|
+
kind: 'trigger';
|
|
95
|
+
type: 'webhook';
|
|
96
|
+
}>>;
|
|
97
|
+
|
|
98
|
+
export { BigCommerceTaskNames as B, type WorkflowItemConfig as W, type WorkflowItemConfigBase as a, bigCommerceTaskConfigs as b, BigCommerceTriggerNames as c, bigcommerceTriggerConfigs as d, type WorkflowItemCustomization as e };
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { JSONSchema7 } from 'json-schema';
|
|
2
|
+
import { WorkflowDefinitionTaskType, WorkflowDefinitionHttpTask, WorkflowDefinitionForkJoinTask, WorkflowDefinitionJoinTask, WorkflowDefinitionSwitchTask, WorkflowDefinitionTerminateTask, DeepPartial, WorkflowTriggerDto } from '@livechat/developer-studio-api';
|
|
3
|
+
|
|
4
|
+
interface WorkflowItemCustomization {
|
|
5
|
+
provider: string;
|
|
6
|
+
providerDisplay: string;
|
|
7
|
+
displayName: string;
|
|
8
|
+
description: string;
|
|
9
|
+
shortDescription: string;
|
|
10
|
+
}
|
|
11
|
+
interface WorkflowItemConfigBase {
|
|
12
|
+
key: string;
|
|
13
|
+
isEditable: boolean;
|
|
14
|
+
customization: WorkflowItemCustomization;
|
|
15
|
+
}
|
|
16
|
+
type WorkflowTaskConfig = WorkflowItemConfigBase & (({
|
|
17
|
+
type: 'other';
|
|
18
|
+
specification: {
|
|
19
|
+
input?: JSONSchema7;
|
|
20
|
+
output?: JSONSchema7;
|
|
21
|
+
};
|
|
22
|
+
} & ({
|
|
23
|
+
key: typeof WorkflowDefinitionTaskType.http;
|
|
24
|
+
template: WorkflowDefinitionHttpTask;
|
|
25
|
+
} | {
|
|
26
|
+
key: typeof WorkflowDefinitionTaskType.forkJoin;
|
|
27
|
+
template: WorkflowDefinitionForkJoinTask;
|
|
28
|
+
} | {
|
|
29
|
+
key: typeof WorkflowDefinitionTaskType.join;
|
|
30
|
+
template: WorkflowDefinitionJoinTask;
|
|
31
|
+
} | {
|
|
32
|
+
key: typeof WorkflowDefinitionTaskType.switch;
|
|
33
|
+
template: WorkflowDefinitionSwitchTask;
|
|
34
|
+
} | {
|
|
35
|
+
key: typeof WorkflowDefinitionTaskType.terminate;
|
|
36
|
+
template: WorkflowDefinitionTerminateTask;
|
|
37
|
+
})) | {
|
|
38
|
+
type: typeof WorkflowDefinitionTaskType.http;
|
|
39
|
+
url: string;
|
|
40
|
+
specification: {
|
|
41
|
+
input?: JSONSchema7;
|
|
42
|
+
output?: JSONSchema7;
|
|
43
|
+
};
|
|
44
|
+
template: WorkflowDefinitionHttpTask;
|
|
45
|
+
});
|
|
46
|
+
type WorkflowTriggerConfig = (WorkflowItemConfigBase & {
|
|
47
|
+
type: 'webhook';
|
|
48
|
+
name: string;
|
|
49
|
+
specification: {
|
|
50
|
+
input?: JSONSchema7;
|
|
51
|
+
output: JSONSchema7;
|
|
52
|
+
};
|
|
53
|
+
template: DeepPartial<Extract<WorkflowTriggerDto, {
|
|
54
|
+
type: 'webhook';
|
|
55
|
+
}>>;
|
|
56
|
+
}) | (WorkflowItemConfigBase & {
|
|
57
|
+
type: 'system';
|
|
58
|
+
specification: {
|
|
59
|
+
input?: JSONSchema7;
|
|
60
|
+
output?: JSONSchema7;
|
|
61
|
+
};
|
|
62
|
+
template: Partial<Extract<WorkflowTriggerDto, {
|
|
63
|
+
type?: 'manual_only' | 'recurring' | 'one_time';
|
|
64
|
+
}>>;
|
|
65
|
+
});
|
|
66
|
+
type WorkflowItemConfig = ({
|
|
67
|
+
kind: 'task';
|
|
68
|
+
} & WorkflowTaskConfig) | ({
|
|
69
|
+
kind: 'trigger';
|
|
70
|
+
} & WorkflowTriggerConfig);
|
|
71
|
+
|
|
72
|
+
declare enum BigCommerceTaskNames {
|
|
73
|
+
CreateBlogPost = "BIGCOMMERCE_CREATE_BLOG_POST",
|
|
74
|
+
CreateCustomer = "BIGCOMMERCE_CREATE_CUSTOMER",
|
|
75
|
+
UpdateCustomer = "BIGCOMMERCE_UPDATE_CUSTOMER",
|
|
76
|
+
CreateProduct = "BIGCOMMERCE_CREATE_PRODUCT",
|
|
77
|
+
CreateCustomerAddress = "BIGCOMMERCE_CREATE_CUSTOMER_ADDRESS",
|
|
78
|
+
GetCustomer = "BIGCOMMERCE_GET_CUSTOMER",
|
|
79
|
+
GetCustomerAddresses = "BIGCOMMERCE_GET_CUSTOMER_ADDRESSES",
|
|
80
|
+
GetProducts = "BIGCOMMERCE_GET_PRODUCTS"
|
|
81
|
+
}
|
|
82
|
+
declare const bigCommerceTaskConfigs: () => Record<BigCommerceTaskNames, Extract<WorkflowItemConfig, {
|
|
83
|
+
kind: 'task';
|
|
84
|
+
}>>;
|
|
85
|
+
declare const BigCommerceTriggerNames: {
|
|
86
|
+
readonly CartCreated: "bigcommerce-cart_created";
|
|
87
|
+
readonly CartUpdated: "bigcommerce-cart_updated";
|
|
88
|
+
readonly OrderCreated: "bigcommerce-order_created";
|
|
89
|
+
readonly OrderUpdated: "bigcommerce-order_updated";
|
|
90
|
+
readonly ProductCreated: "bigcommerce-product_created";
|
|
91
|
+
readonly ProductUpdated: "bigcommerce-product_updated";
|
|
92
|
+
};
|
|
93
|
+
declare const bigcommerceTriggerConfigs: () => Record<(typeof BigCommerceTriggerNames)[keyof typeof BigCommerceTriggerNames], Extract<WorkflowItemConfig, {
|
|
94
|
+
kind: 'trigger';
|
|
95
|
+
type: 'webhook';
|
|
96
|
+
}>>;
|
|
97
|
+
|
|
98
|
+
export { BigCommerceTaskNames as B, type WorkflowItemConfig as W, type WorkflowItemConfigBase as a, bigCommerceTaskConfigs as b, BigCommerceTriggerNames as c, bigcommerceTriggerConfigs as d, type WorkflowItemCustomization as e };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Config } from '@livechat/developer-studio-ui-react';
|
|
2
|
-
export { WORKFLOWS_TEST_SELECTORS } from './tests.mjs';
|
|
3
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
3
|
import React$1 from 'react';
|
|
5
4
|
|
|
@@ -20,6 +19,113 @@ declare const config: {
|
|
|
20
19
|
declare function setWorkflowsConfig(newConfig: Partial<WorkflowsConfig>): void;
|
|
21
20
|
declare const getWorkflowsEnv: <T extends keyof WorkflowsConfig>(key: T) => WorkflowsConfig[T];
|
|
22
21
|
|
|
22
|
+
declare const WORKFLOWS_TEST_SELECTORS: {
|
|
23
|
+
views: {
|
|
24
|
+
workflows: {
|
|
25
|
+
creator: {
|
|
26
|
+
navbar: {
|
|
27
|
+
activateSwitch: string;
|
|
28
|
+
publishButton: string;
|
|
29
|
+
editButton: string;
|
|
30
|
+
};
|
|
31
|
+
builder: {
|
|
32
|
+
nodes: {
|
|
33
|
+
add: {
|
|
34
|
+
task: {
|
|
35
|
+
button: string;
|
|
36
|
+
};
|
|
37
|
+
trigger: {
|
|
38
|
+
button: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
forms: {
|
|
43
|
+
integrations: {
|
|
44
|
+
text: {
|
|
45
|
+
info: string;
|
|
46
|
+
button: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
modals: {
|
|
52
|
+
addTask: {
|
|
53
|
+
wrapper: string;
|
|
54
|
+
taskCard: (key: string) => string;
|
|
55
|
+
taskCategoryButton: (key: string) => string;
|
|
56
|
+
saveButton: string;
|
|
57
|
+
};
|
|
58
|
+
addTrigger: {
|
|
59
|
+
wrapper: string;
|
|
60
|
+
saveButton: string;
|
|
61
|
+
triggerCard: (key: string) => string;
|
|
62
|
+
triggerCategoryButton: (key: string) => string;
|
|
63
|
+
};
|
|
64
|
+
publish: {
|
|
65
|
+
wrapper: string;
|
|
66
|
+
saveButton: string;
|
|
67
|
+
cancelButton: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
panels: {
|
|
71
|
+
element: {
|
|
72
|
+
wrapper: string;
|
|
73
|
+
};
|
|
74
|
+
details: {
|
|
75
|
+
executions: {
|
|
76
|
+
list: {
|
|
77
|
+
row: string;
|
|
78
|
+
status: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
panel: {
|
|
82
|
+
historyTab: string;
|
|
83
|
+
};
|
|
84
|
+
info: {
|
|
85
|
+
dateCreated: string;
|
|
86
|
+
dateUpdated: string;
|
|
87
|
+
completedCycles: string;
|
|
88
|
+
failedCycles: string;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
list: {
|
|
94
|
+
grid: {
|
|
95
|
+
table: {
|
|
96
|
+
wrapper: string;
|
|
97
|
+
body: string;
|
|
98
|
+
menuTrigger: string;
|
|
99
|
+
activateSwitch: string;
|
|
100
|
+
infoButton: string;
|
|
101
|
+
workflowItem: (id: string) => string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
view: {
|
|
105
|
+
createButton: string;
|
|
106
|
+
emptyInfo: string;
|
|
107
|
+
};
|
|
108
|
+
modals: {
|
|
109
|
+
create: {
|
|
110
|
+
wrapper: string;
|
|
111
|
+
};
|
|
112
|
+
previewTemplate: {
|
|
113
|
+
wrapper: string;
|
|
114
|
+
useButton: string;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
home: {
|
|
118
|
+
cards: {
|
|
119
|
+
template: {
|
|
120
|
+
wrapper: string;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
|
|
23
129
|
interface LoginErrorPageProps {
|
|
24
130
|
errorImage: React.ReactNode;
|
|
25
131
|
welcomeImage: React.ReactNode;
|
|
@@ -32,4 +138,4 @@ interface WorkflowsModuleProps {
|
|
|
32
138
|
}
|
|
33
139
|
declare function WorkflowsModule({ waitlistImage }: WorkflowsModuleProps): react_jsx_runtime.JSX.Element;
|
|
34
140
|
|
|
35
|
-
export { LoginErrorPage as LoginError, type WorkflowsConfig, WorkflowsModule, config, getWorkflowsEnv, setWorkflowsConfig };
|
|
141
|
+
export { LoginErrorPage as LoginError, WORKFLOWS_TEST_SELECTORS, type WorkflowsConfig, WorkflowsModule, config, getWorkflowsEnv, setWorkflowsConfig };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Config } from '@livechat/developer-studio-ui-react';
|
|
2
|
-
export { WORKFLOWS_TEST_SELECTORS } from './tests.js';
|
|
3
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
3
|
import React$1 from 'react';
|
|
5
4
|
|
|
@@ -20,6 +19,113 @@ declare const config: {
|
|
|
20
19
|
declare function setWorkflowsConfig(newConfig: Partial<WorkflowsConfig>): void;
|
|
21
20
|
declare const getWorkflowsEnv: <T extends keyof WorkflowsConfig>(key: T) => WorkflowsConfig[T];
|
|
22
21
|
|
|
22
|
+
declare const WORKFLOWS_TEST_SELECTORS: {
|
|
23
|
+
views: {
|
|
24
|
+
workflows: {
|
|
25
|
+
creator: {
|
|
26
|
+
navbar: {
|
|
27
|
+
activateSwitch: string;
|
|
28
|
+
publishButton: string;
|
|
29
|
+
editButton: string;
|
|
30
|
+
};
|
|
31
|
+
builder: {
|
|
32
|
+
nodes: {
|
|
33
|
+
add: {
|
|
34
|
+
task: {
|
|
35
|
+
button: string;
|
|
36
|
+
};
|
|
37
|
+
trigger: {
|
|
38
|
+
button: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
forms: {
|
|
43
|
+
integrations: {
|
|
44
|
+
text: {
|
|
45
|
+
info: string;
|
|
46
|
+
button: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
modals: {
|
|
52
|
+
addTask: {
|
|
53
|
+
wrapper: string;
|
|
54
|
+
taskCard: (key: string) => string;
|
|
55
|
+
taskCategoryButton: (key: string) => string;
|
|
56
|
+
saveButton: string;
|
|
57
|
+
};
|
|
58
|
+
addTrigger: {
|
|
59
|
+
wrapper: string;
|
|
60
|
+
saveButton: string;
|
|
61
|
+
triggerCard: (key: string) => string;
|
|
62
|
+
triggerCategoryButton: (key: string) => string;
|
|
63
|
+
};
|
|
64
|
+
publish: {
|
|
65
|
+
wrapper: string;
|
|
66
|
+
saveButton: string;
|
|
67
|
+
cancelButton: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
panels: {
|
|
71
|
+
element: {
|
|
72
|
+
wrapper: string;
|
|
73
|
+
};
|
|
74
|
+
details: {
|
|
75
|
+
executions: {
|
|
76
|
+
list: {
|
|
77
|
+
row: string;
|
|
78
|
+
status: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
panel: {
|
|
82
|
+
historyTab: string;
|
|
83
|
+
};
|
|
84
|
+
info: {
|
|
85
|
+
dateCreated: string;
|
|
86
|
+
dateUpdated: string;
|
|
87
|
+
completedCycles: string;
|
|
88
|
+
failedCycles: string;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
list: {
|
|
94
|
+
grid: {
|
|
95
|
+
table: {
|
|
96
|
+
wrapper: string;
|
|
97
|
+
body: string;
|
|
98
|
+
menuTrigger: string;
|
|
99
|
+
activateSwitch: string;
|
|
100
|
+
infoButton: string;
|
|
101
|
+
workflowItem: (id: string) => string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
view: {
|
|
105
|
+
createButton: string;
|
|
106
|
+
emptyInfo: string;
|
|
107
|
+
};
|
|
108
|
+
modals: {
|
|
109
|
+
create: {
|
|
110
|
+
wrapper: string;
|
|
111
|
+
};
|
|
112
|
+
previewTemplate: {
|
|
113
|
+
wrapper: string;
|
|
114
|
+
useButton: string;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
home: {
|
|
118
|
+
cards: {
|
|
119
|
+
template: {
|
|
120
|
+
wrapper: string;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
|
|
23
129
|
interface LoginErrorPageProps {
|
|
24
130
|
errorImage: React.ReactNode;
|
|
25
131
|
welcomeImage: React.ReactNode;
|
|
@@ -32,4 +138,4 @@ interface WorkflowsModuleProps {
|
|
|
32
138
|
}
|
|
33
139
|
declare function WorkflowsModule({ waitlistImage }: WorkflowsModuleProps): react_jsx_runtime.JSX.Element;
|
|
34
140
|
|
|
35
|
-
export { LoginErrorPage as LoginError, type WorkflowsConfig, WorkflowsModule, config, getWorkflowsEnv, setWorkflowsConfig };
|
|
141
|
+
export { LoginErrorPage as LoginError, WORKFLOWS_TEST_SELECTORS, type WorkflowsConfig, WorkflowsModule, config, getWorkflowsEnv, setWorkflowsConfig };
|