@ats-cx/cx-cli 0.1.0
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/.env.example +8 -0
- package/README.md +119 -0
- package/bin/cx-cli.cjs +90 -0
- package/config/apm-provider.json +7 -0
- package/config/apm-provider.template.jsonc +48 -0
- package/config/diagnostic-rules.json +54 -0
- package/config/diagnostic-rules.template.jsonc +82 -0
- package/config/event-semantics.json +828 -0
- package/config/event-semantics.template.jsonc +13 -0
- package/config/toolkit.json +3 -0
- package/dist/apm-help.d.ts +5 -0
- package/dist/apm-help.js +108 -0
- package/dist/apm-output.d.ts +49 -0
- package/dist/apm-output.js +115 -0
- package/dist/budget.d.ts +14 -0
- package/dist/budget.js +16 -0
- package/dist/cli.d.ts +20 -0
- package/dist/cli.js +596 -0
- package/dist/context.d.ts +12 -0
- package/dist/context.js +20 -0
- package/dist/contract.d.ts +11 -0
- package/dist/contract.js +4 -0
- package/dist/errors.d.ts +4 -0
- package/dist/errors.js +8 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +8 -0
- package/dist/init.d.ts +17 -0
- package/dist/init.js +194 -0
- package/dist/output.d.ts +7 -0
- package/dist/output.js +7 -0
- package/dist/project-pull.d.ts +32 -0
- package/dist/project-pull.js +81 -0
- package/dist/report.d.ts +3 -0
- package/dist/report.js +42 -0
- package/dist/skills.d.ts +12 -0
- package/dist/skills.js +430 -0
- package/dist/tools/apm-tools.d.ts +115 -0
- package/dist/tools/apm-tools.js +329 -0
- package/dist/tools/conclusion-tools.d.ts +24 -0
- package/dist/tools/conclusion-tools.js +61 -0
- package/dist/tools/create-run.d.ts +61 -0
- package/dist/tools/create-run.js +273 -0
- package/dist/tools/log-tools.d.ts +68 -0
- package/dist/tools/log-tools.js +116 -0
- package/dist/tools/project-tools.d.ts +82 -0
- package/dist/tools/project-tools.js +139 -0
- package/dist/workspace.d.ts +51 -0
- package/dist/workspace.js +104 -0
- package/package.json +37 -0
- package/skills/apm-query/SKILL.md +304 -0
- package/skills/apm-query/agents/openai.yaml +10 -0
- package/skills/cx-cli-setup/SKILL.md +120 -0
- package/skills/cx-cli-setup/agents/openai.yaml +11 -0
- package/skills/editor-diagnostic/SKILL.md +255 -0
- package/skills/editor-diagnostic/agents/openai.yaml +13 -0
- package/skills/semantics-curation/SKILL.md +151 -0
- package/skills/semantics-curation/agents/openai.yaml +12 -0
|
@@ -0,0 +1,828 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openProject": {
|
|
3
|
+
"category": "lifecycle",
|
|
4
|
+
"action": "open_project",
|
|
5
|
+
"entityType": "project",
|
|
6
|
+
"lifecycleStage": "enter",
|
|
7
|
+
"stateChange": "none",
|
|
8
|
+
"tags": ["project_open"]
|
|
9
|
+
},
|
|
10
|
+
"enterPage": {
|
|
11
|
+
"category": "lifecycle",
|
|
12
|
+
"action": "enter_editor",
|
|
13
|
+
"entityType": "session",
|
|
14
|
+
"lifecycleStage": "enter",
|
|
15
|
+
"stateChange": "none",
|
|
16
|
+
"tags": ["editor_enter"]
|
|
17
|
+
},
|
|
18
|
+
"closeOrLeavePage": {
|
|
19
|
+
"category": "lifecycle",
|
|
20
|
+
"action": "leave_editor",
|
|
21
|
+
"entityType": "session",
|
|
22
|
+
"lifecycleStage": "leave",
|
|
23
|
+
"stateChange": "none",
|
|
24
|
+
"tags": ["editor_leave"]
|
|
25
|
+
},
|
|
26
|
+
"saveProject": {
|
|
27
|
+
"category": "persistence",
|
|
28
|
+
"action": "save_project",
|
|
29
|
+
"entityType": "project",
|
|
30
|
+
"persistenceStage": "save",
|
|
31
|
+
"stateChange": "commit",
|
|
32
|
+
"tags": ["project_persist"]
|
|
33
|
+
},
|
|
34
|
+
"transformElement": {
|
|
35
|
+
"category": "mutation",
|
|
36
|
+
"action": "transform_element",
|
|
37
|
+
"entityType": "element",
|
|
38
|
+
"stateChange": "definite",
|
|
39
|
+
"tags": ["geometry_change"]
|
|
40
|
+
},
|
|
41
|
+
"updateElement": {
|
|
42
|
+
"category": "mutation",
|
|
43
|
+
"action": "update_element",
|
|
44
|
+
"entityType": "element",
|
|
45
|
+
"stateChange": "definite",
|
|
46
|
+
"tags": ["element_update"]
|
|
47
|
+
},
|
|
48
|
+
"updateElements": {
|
|
49
|
+
"category": "mutation",
|
|
50
|
+
"action": "update_elements",
|
|
51
|
+
"entityType": "element",
|
|
52
|
+
"stateChange": "definite",
|
|
53
|
+
"tags": ["element_update"]
|
|
54
|
+
},
|
|
55
|
+
"replaceElement": {
|
|
56
|
+
"category": "mutation",
|
|
57
|
+
"action": "replace_element",
|
|
58
|
+
"entityType": "element",
|
|
59
|
+
"stateChange": "definite",
|
|
60
|
+
"tags": ["element_replace"]
|
|
61
|
+
},
|
|
62
|
+
"deleteElement": {
|
|
63
|
+
"category": "mutation",
|
|
64
|
+
"action": "delete_element",
|
|
65
|
+
"entityType": "element",
|
|
66
|
+
"stateChange": "definite",
|
|
67
|
+
"tags": ["element_delete"]
|
|
68
|
+
},
|
|
69
|
+
"addElement": {
|
|
70
|
+
"category": "mutation",
|
|
71
|
+
"action": "add_element",
|
|
72
|
+
"entityType": "element",
|
|
73
|
+
"stateChange": "definite",
|
|
74
|
+
"tags": ["element_add"]
|
|
75
|
+
},
|
|
76
|
+
"clickCropImage": {
|
|
77
|
+
"category": "workflow",
|
|
78
|
+
"action": "enter_crop_flow",
|
|
79
|
+
"entityType": "element",
|
|
80
|
+
"stateChange": "possible",
|
|
81
|
+
"tags": ["crop_flow", "image_edit"]
|
|
82
|
+
},
|
|
83
|
+
"switchSheet": {
|
|
84
|
+
"category": "navigation",
|
|
85
|
+
"action": "switch_sheet",
|
|
86
|
+
"entityType": "page",
|
|
87
|
+
"stateChange": "none",
|
|
88
|
+
"tags": ["page_navigation"]
|
|
89
|
+
},
|
|
90
|
+
"switchPage": {
|
|
91
|
+
"category": "navigation",
|
|
92
|
+
"action": "switch_page",
|
|
93
|
+
"entityType": "page",
|
|
94
|
+
"stateChange": "none",
|
|
95
|
+
"tags": ["page_navigation"]
|
|
96
|
+
},
|
|
97
|
+
"switchMainTab": {
|
|
98
|
+
"category": "navigation",
|
|
99
|
+
"action": "switch_main_tab",
|
|
100
|
+
"entityType": "page",
|
|
101
|
+
"stateChange": "none",
|
|
102
|
+
"tags": ["page_navigation", "main_tab_navigation"]
|
|
103
|
+
},
|
|
104
|
+
"SaveProject": {
|
|
105
|
+
"category": "persistence",
|
|
106
|
+
"action": "save_project",
|
|
107
|
+
"entityType": "project",
|
|
108
|
+
"persistenceStage": "save",
|
|
109
|
+
"stateChange": "commit",
|
|
110
|
+
"tags": ["project_persist"]
|
|
111
|
+
},
|
|
112
|
+
"T_INFRA_SAVE_PROJECT": {
|
|
113
|
+
"category": "persistence",
|
|
114
|
+
"action": "infra_save_project",
|
|
115
|
+
"entityType": "project",
|
|
116
|
+
"persistenceStage": "save",
|
|
117
|
+
"stateChange": "commit",
|
|
118
|
+
"tags": ["project_persist", "infra_save"]
|
|
119
|
+
},
|
|
120
|
+
"SaveSuccess": {
|
|
121
|
+
"category": "persistence",
|
|
122
|
+
"action": "save_success",
|
|
123
|
+
"entityType": "project",
|
|
124
|
+
"persistenceStage": "save",
|
|
125
|
+
"stateChange": "commit",
|
|
126
|
+
"tags": ["project_persist", "save_success"]
|
|
127
|
+
},
|
|
128
|
+
"Click_Save": {
|
|
129
|
+
"category": "workflow",
|
|
130
|
+
"action": "request_save",
|
|
131
|
+
"entityType": "project",
|
|
132
|
+
"stateChange": "none",
|
|
133
|
+
"tags": ["save_trigger"]
|
|
134
|
+
},
|
|
135
|
+
"ProductEditor_Click_Save": {
|
|
136
|
+
"category": "workflow",
|
|
137
|
+
"action": "request_save",
|
|
138
|
+
"entityType": "project",
|
|
139
|
+
"stateChange": "none",
|
|
140
|
+
"tags": ["save_trigger"]
|
|
141
|
+
},
|
|
142
|
+
"ClientEstoreEditor_Header_Click_Save": {
|
|
143
|
+
"category": "workflow",
|
|
144
|
+
"action": "request_save",
|
|
145
|
+
"entityType": "project",
|
|
146
|
+
"stateChange": "none",
|
|
147
|
+
"tags": ["save_trigger"]
|
|
148
|
+
},
|
|
149
|
+
"START_BEFORE_SAVE": {
|
|
150
|
+
"category": "workflow",
|
|
151
|
+
"action": "before_save_start",
|
|
152
|
+
"entityType": "project",
|
|
153
|
+
"stateChange": "none",
|
|
154
|
+
"tags": ["save_pipeline"]
|
|
155
|
+
},
|
|
156
|
+
"PASS_APP_BEFORE_SAVE": {
|
|
157
|
+
"category": "workflow",
|
|
158
|
+
"action": "before_save_app_pass",
|
|
159
|
+
"entityType": "project",
|
|
160
|
+
"stateChange": "none",
|
|
161
|
+
"tags": ["save_pipeline"]
|
|
162
|
+
},
|
|
163
|
+
"PASS_COMMON_BEFORE_SAVE": {
|
|
164
|
+
"category": "workflow",
|
|
165
|
+
"action": "before_save_common_pass",
|
|
166
|
+
"entityType": "project",
|
|
167
|
+
"stateChange": "none",
|
|
168
|
+
"tags": ["save_pipeline"]
|
|
169
|
+
},
|
|
170
|
+
"Click_SaveAllComments": {
|
|
171
|
+
"category": "workflow",
|
|
172
|
+
"action": "save_comments",
|
|
173
|
+
"entityType": "session",
|
|
174
|
+
"stateChange": "none",
|
|
175
|
+
"tags": ["comment_flow"]
|
|
176
|
+
},
|
|
177
|
+
"DesignerProofLink_Click_SaveAllComments": {
|
|
178
|
+
"category": "workflow",
|
|
179
|
+
"action": "save_comments",
|
|
180
|
+
"entityType": "session",
|
|
181
|
+
"stateChange": "none",
|
|
182
|
+
"tags": ["comment_flow"]
|
|
183
|
+
},
|
|
184
|
+
"Click_CloseSelectPhotosPopup": {
|
|
185
|
+
"category": "workflow",
|
|
186
|
+
"action": "close_asset_picker",
|
|
187
|
+
"entityType": "session",
|
|
188
|
+
"stateChange": "none",
|
|
189
|
+
"tags": ["modal_close", "asset_picker"]
|
|
190
|
+
},
|
|
191
|
+
"PFCPop_Click_Close": {
|
|
192
|
+
"category": "workflow",
|
|
193
|
+
"action": "close_pfc_modal",
|
|
194
|
+
"entityType": "session",
|
|
195
|
+
"stateChange": "none",
|
|
196
|
+
"tags": ["modal_close", "image_enhance"]
|
|
197
|
+
},
|
|
198
|
+
"DesignerPFCPop_Click_Close": {
|
|
199
|
+
"category": "workflow",
|
|
200
|
+
"action": "close_pfc_modal",
|
|
201
|
+
"entityType": "session",
|
|
202
|
+
"stateChange": "none",
|
|
203
|
+
"tags": ["modal_close", "image_enhance"]
|
|
204
|
+
},
|
|
205
|
+
"ClickCropImage": {
|
|
206
|
+
"category": "mutation",
|
|
207
|
+
"action": "crop_image",
|
|
208
|
+
"entityType": "element",
|
|
209
|
+
"stateChange": "definite",
|
|
210
|
+
"tags": ["crop_commit", "image_edit", "geometry_change"]
|
|
211
|
+
},
|
|
212
|
+
"cropImage": {
|
|
213
|
+
"category": "mutation",
|
|
214
|
+
"action": "crop_image",
|
|
215
|
+
"entityType": "element",
|
|
216
|
+
"stateChange": "definite",
|
|
217
|
+
"tags": ["crop_commit", "image_edit", "geometry_change"]
|
|
218
|
+
},
|
|
219
|
+
"resizeElement": {
|
|
220
|
+
"category": "mutation",
|
|
221
|
+
"action": "resize_element",
|
|
222
|
+
"entityType": "element",
|
|
223
|
+
"stateChange": "definite",
|
|
224
|
+
"tags": ["geometry_change"]
|
|
225
|
+
},
|
|
226
|
+
"rotateElement": {
|
|
227
|
+
"category": "mutation",
|
|
228
|
+
"action": "rotate_element",
|
|
229
|
+
"entityType": "element",
|
|
230
|
+
"stateChange": "definite",
|
|
231
|
+
"tags": ["geometry_change", "rotation_change"]
|
|
232
|
+
},
|
|
233
|
+
"clearElementImage": {
|
|
234
|
+
"category": "mutation",
|
|
235
|
+
"action": "clear_element_image",
|
|
236
|
+
"entityType": "element",
|
|
237
|
+
"stateChange": "definite",
|
|
238
|
+
"tags": ["element_update", "image_remove"]
|
|
239
|
+
},
|
|
240
|
+
"removeElement": {
|
|
241
|
+
"category": "mutation",
|
|
242
|
+
"action": "remove_element",
|
|
243
|
+
"entityType": "element",
|
|
244
|
+
"stateChange": "definite",
|
|
245
|
+
"tags": ["element_delete"]
|
|
246
|
+
},
|
|
247
|
+
"delElement": {
|
|
248
|
+
"category": "mutation",
|
|
249
|
+
"action": "delete_element",
|
|
250
|
+
"entityType": "element",
|
|
251
|
+
"stateChange": "definite",
|
|
252
|
+
"tags": ["element_delete"]
|
|
253
|
+
},
|
|
254
|
+
"changeEdgeColor": {
|
|
255
|
+
"category": "mutation",
|
|
256
|
+
"action": "change_edge_color",
|
|
257
|
+
"entityType": "page",
|
|
258
|
+
"stateChange": "definite",
|
|
259
|
+
"tags": ["edge_change", "background_change", "edge_color_change"]
|
|
260
|
+
},
|
|
261
|
+
"changeEdgePattern": {
|
|
262
|
+
"category": "mutation",
|
|
263
|
+
"action": "change_edge_pattern",
|
|
264
|
+
"entityType": "page",
|
|
265
|
+
"stateChange": "definite",
|
|
266
|
+
"tags": ["edge_change", "pattern_change"]
|
|
267
|
+
},
|
|
268
|
+
"undo": {
|
|
269
|
+
"category": "mutation",
|
|
270
|
+
"action": "undo_change",
|
|
271
|
+
"entityType": "project",
|
|
272
|
+
"stateChange": "definite",
|
|
273
|
+
"tags": ["history_change", "undo_redo"]
|
|
274
|
+
},
|
|
275
|
+
"redo": {
|
|
276
|
+
"category": "mutation",
|
|
277
|
+
"action": "redo_change",
|
|
278
|
+
"entityType": "project",
|
|
279
|
+
"stateChange": "definite",
|
|
280
|
+
"tags": ["history_change", "undo_redo"]
|
|
281
|
+
},
|
|
282
|
+
"SelectLayout": {
|
|
283
|
+
"category": "mutation",
|
|
284
|
+
"action": "select_layout",
|
|
285
|
+
"entityType": "page",
|
|
286
|
+
"stateChange": "possible",
|
|
287
|
+
"tags": ["layout_change"]
|
|
288
|
+
},
|
|
289
|
+
"ToggleAutoLayout": {
|
|
290
|
+
"category": "mutation",
|
|
291
|
+
"action": "toggle_auto_layout",
|
|
292
|
+
"entityType": "project",
|
|
293
|
+
"stateChange": "definite",
|
|
294
|
+
"tags": ["layout_setting_change"]
|
|
295
|
+
},
|
|
296
|
+
"startAutofill": {
|
|
297
|
+
"category": "workflow",
|
|
298
|
+
"action": "start_autofill",
|
|
299
|
+
"entityType": "project",
|
|
300
|
+
"stateChange": "possible",
|
|
301
|
+
"tags": ["autofill_flow", "layout_change"]
|
|
302
|
+
},
|
|
303
|
+
"applyTheme": {
|
|
304
|
+
"category": "mutation",
|
|
305
|
+
"action": "apply_theme",
|
|
306
|
+
"entityType": "project",
|
|
307
|
+
"stateChange": "possible",
|
|
308
|
+
"tags": ["theme_change"]
|
|
309
|
+
},
|
|
310
|
+
"applyThemePage": {
|
|
311
|
+
"category": "mutation",
|
|
312
|
+
"action": "apply_theme_page",
|
|
313
|
+
"entityType": "page",
|
|
314
|
+
"stateChange": "definite",
|
|
315
|
+
"tags": ["theme_change", "page_update"]
|
|
316
|
+
},
|
|
317
|
+
"dragAndDropIdeaPage": {
|
|
318
|
+
"category": "mutation",
|
|
319
|
+
"action": "apply_idea_page",
|
|
320
|
+
"entityType": "page",
|
|
321
|
+
"stateChange": "possible",
|
|
322
|
+
"tags": ["theme_change", "page_update"]
|
|
323
|
+
},
|
|
324
|
+
"addPageInArrangePhoto": {
|
|
325
|
+
"category": "mutation",
|
|
326
|
+
"action": "add_page",
|
|
327
|
+
"entityType": "page",
|
|
328
|
+
"stateChange": "possible",
|
|
329
|
+
"tags": ["page_add"]
|
|
330
|
+
},
|
|
331
|
+
"PFCPop_Click_Save": {
|
|
332
|
+
"category": "workflow",
|
|
333
|
+
"action": "request_pfc_apply",
|
|
334
|
+
"entityType": "element",
|
|
335
|
+
"stateChange": "possible",
|
|
336
|
+
"tags": ["image_enhance", "save_trigger"]
|
|
337
|
+
},
|
|
338
|
+
"DesignerPFCPop_Click_Save": {
|
|
339
|
+
"category": "mutation",
|
|
340
|
+
"action": "apply_pfc",
|
|
341
|
+
"entityType": "element",
|
|
342
|
+
"stateChange": "possible",
|
|
343
|
+
"tags": ["image_enhance"]
|
|
344
|
+
},
|
|
345
|
+
"ProductEditor_Click_Color": {
|
|
346
|
+
"category": "mutation",
|
|
347
|
+
"action": "change_cover_color",
|
|
348
|
+
"entityType": "project",
|
|
349
|
+
"stateChange": "definite",
|
|
350
|
+
"tags": ["color_change"]
|
|
351
|
+
},
|
|
352
|
+
"Click_Color": {
|
|
353
|
+
"category": "mutation",
|
|
354
|
+
"action": "change_cover_color",
|
|
355
|
+
"entityType": "project",
|
|
356
|
+
"stateChange": "definite",
|
|
357
|
+
"tags": ["color_change"]
|
|
358
|
+
},
|
|
359
|
+
"ChangeTab": {
|
|
360
|
+
"category": "navigation",
|
|
361
|
+
"action": "switch_editor_tab",
|
|
362
|
+
"entityType": "session",
|
|
363
|
+
"stateChange": "none",
|
|
364
|
+
"tags": ["panel_navigation"]
|
|
365
|
+
},
|
|
366
|
+
"Click_SelectTheme": {
|
|
367
|
+
"category": "workflow",
|
|
368
|
+
"action": "enter_theme_picker",
|
|
369
|
+
"entityType": "session",
|
|
370
|
+
"stateChange": "none",
|
|
371
|
+
"tags": ["theme_flow"]
|
|
372
|
+
},
|
|
373
|
+
"ProductEditor_Click_UseTheme": {
|
|
374
|
+
"category": "workflow",
|
|
375
|
+
"action": "request_apply_theme",
|
|
376
|
+
"entityType": "project",
|
|
377
|
+
"stateChange": "none",
|
|
378
|
+
"tags": ["theme_flow"]
|
|
379
|
+
},
|
|
380
|
+
"applyTemplate": {
|
|
381
|
+
"category": "mutation",
|
|
382
|
+
"action": "apply_template",
|
|
383
|
+
"entityType": "page",
|
|
384
|
+
"stateChange": "possible",
|
|
385
|
+
"tags": ["layout_change"]
|
|
386
|
+
},
|
|
387
|
+
"ClientEstoreAlbumEditor_EditPage_Click_AutoFill": {
|
|
388
|
+
"category": "workflow",
|
|
389
|
+
"action": "open_autofill_modal",
|
|
390
|
+
"entityType": "session",
|
|
391
|
+
"stateChange": "none",
|
|
392
|
+
"tags": ["autofill_flow"]
|
|
393
|
+
},
|
|
394
|
+
"ClientEstoreAlbumEditor_AlbumEditPage_Click_SmartLayout": {
|
|
395
|
+
"category": "workflow",
|
|
396
|
+
"action": "request_smart_layout",
|
|
397
|
+
"entityType": "session",
|
|
398
|
+
"stateChange": "none",
|
|
399
|
+
"tags": ["autofill_flow", "layout_change"]
|
|
400
|
+
},
|
|
401
|
+
"Click_ShuffleLayoutInArrangePhoto": {
|
|
402
|
+
"category": "workflow",
|
|
403
|
+
"action": "request_shuffle_layout",
|
|
404
|
+
"entityType": "session",
|
|
405
|
+
"stateChange": "none",
|
|
406
|
+
"tags": ["layout_change"]
|
|
407
|
+
},
|
|
408
|
+
"shufflePageInArrangePhoto": {
|
|
409
|
+
"category": "mutation",
|
|
410
|
+
"action": "shuffle_layout",
|
|
411
|
+
"entityType": "page",
|
|
412
|
+
"stateChange": "possible",
|
|
413
|
+
"tags": ["layout_change"]
|
|
414
|
+
},
|
|
415
|
+
"Click_AddPrint": {
|
|
416
|
+
"category": "mutation",
|
|
417
|
+
"action": "add_print_page",
|
|
418
|
+
"entityType": "page",
|
|
419
|
+
"stateChange": "possible",
|
|
420
|
+
"tags": ["page_add", "print_flow"]
|
|
421
|
+
},
|
|
422
|
+
"Click_RemovePrint": {
|
|
423
|
+
"category": "mutation",
|
|
424
|
+
"action": "remove_print_page",
|
|
425
|
+
"entityType": "page",
|
|
426
|
+
"stateChange": "possible",
|
|
427
|
+
"tags": ["page_delete", "print_flow"]
|
|
428
|
+
},
|
|
429
|
+
"StartUploadPhotos": {
|
|
430
|
+
"category": "workflow",
|
|
431
|
+
"action": "start_upload_batch",
|
|
432
|
+
"entityType": "session",
|
|
433
|
+
"stateChange": "none",
|
|
434
|
+
"tags": ["upload_flow"]
|
|
435
|
+
},
|
|
436
|
+
"Click_DetermineUpload": {
|
|
437
|
+
"category": "workflow",
|
|
438
|
+
"action": "confirm_upload_selection",
|
|
439
|
+
"entityType": "session",
|
|
440
|
+
"stateChange": "none",
|
|
441
|
+
"tags": ["upload_flow"]
|
|
442
|
+
},
|
|
443
|
+
"Click_FolderUpload": {
|
|
444
|
+
"category": "workflow",
|
|
445
|
+
"action": "select_upload_source",
|
|
446
|
+
"entityType": "session",
|
|
447
|
+
"stateChange": "none",
|
|
448
|
+
"tags": ["upload_flow", "upload_source"]
|
|
449
|
+
},
|
|
450
|
+
"Click_GalleryPhotosUpload": {
|
|
451
|
+
"category": "workflow",
|
|
452
|
+
"action": "select_upload_source",
|
|
453
|
+
"entityType": "session",
|
|
454
|
+
"stateChange": "none",
|
|
455
|
+
"tags": ["upload_flow", "upload_source"]
|
|
456
|
+
},
|
|
457
|
+
"Click_HistoricalPhotosUpload": {
|
|
458
|
+
"category": "workflow",
|
|
459
|
+
"action": "select_upload_source",
|
|
460
|
+
"entityType": "session",
|
|
461
|
+
"stateChange": "none",
|
|
462
|
+
"tags": ["upload_flow", "upload_source"]
|
|
463
|
+
},
|
|
464
|
+
"Click_LightRoomPhotosUpload": {
|
|
465
|
+
"category": "workflow",
|
|
466
|
+
"action": "select_upload_source",
|
|
467
|
+
"entityType": "session",
|
|
468
|
+
"stateChange": "none",
|
|
469
|
+
"tags": ["upload_flow", "upload_source"]
|
|
470
|
+
},
|
|
471
|
+
"Click_LocalUpload": {
|
|
472
|
+
"category": "workflow",
|
|
473
|
+
"action": "select_upload_source",
|
|
474
|
+
"entityType": "session",
|
|
475
|
+
"stateChange": "none",
|
|
476
|
+
"tags": ["upload_flow", "upload_source"]
|
|
477
|
+
},
|
|
478
|
+
"CancelAllFilesByXClicked": {
|
|
479
|
+
"category": "workflow",
|
|
480
|
+
"action": "cancel_upload_batch",
|
|
481
|
+
"entityType": "session",
|
|
482
|
+
"stateChange": "none",
|
|
483
|
+
"tags": ["upload_flow", "upload_cancel"]
|
|
484
|
+
},
|
|
485
|
+
"CancelSingleFile": {
|
|
486
|
+
"category": "workflow",
|
|
487
|
+
"action": "cancel_upload_file",
|
|
488
|
+
"entityType": "session",
|
|
489
|
+
"stateChange": "none",
|
|
490
|
+
"tags": ["upload_flow", "upload_cancel"]
|
|
491
|
+
},
|
|
492
|
+
"completeUploadFiles": {
|
|
493
|
+
"category": "workflow",
|
|
494
|
+
"action": "complete_upload_batch",
|
|
495
|
+
"entityType": "session",
|
|
496
|
+
"stateChange": "none",
|
|
497
|
+
"tags": ["upload_flow", "upload_complete"]
|
|
498
|
+
},
|
|
499
|
+
"SuccessUploadSingleFile": {
|
|
500
|
+
"category": "workflow",
|
|
501
|
+
"action": "upload_file_success",
|
|
502
|
+
"entityType": "session",
|
|
503
|
+
"stateChange": "none",
|
|
504
|
+
"tags": ["upload_flow", "upload_success"]
|
|
505
|
+
},
|
|
506
|
+
"addToCart": {
|
|
507
|
+
"category": "workflow",
|
|
508
|
+
"action": "add_to_cart",
|
|
509
|
+
"entityType": "session",
|
|
510
|
+
"stateChange": "none",
|
|
511
|
+
"tags": ["commerce"]
|
|
512
|
+
},
|
|
513
|
+
"DesignerProofLink_Click_AddComments": {
|
|
514
|
+
"category": "workflow",
|
|
515
|
+
"action": "add_comments",
|
|
516
|
+
"entityType": "session",
|
|
517
|
+
"stateChange": "none",
|
|
518
|
+
"tags": ["comment_flow"]
|
|
519
|
+
},
|
|
520
|
+
"DesignerProofLink_Click_Submit": {
|
|
521
|
+
"category": "workflow",
|
|
522
|
+
"action": "submit_proof",
|
|
523
|
+
"entityType": "session",
|
|
524
|
+
"stateChange": "none",
|
|
525
|
+
"tags": ["proofing_flow"]
|
|
526
|
+
},
|
|
527
|
+
"DesignerProofLink_Click_SendComments": {
|
|
528
|
+
"category": "workflow",
|
|
529
|
+
"action": "send_comments",
|
|
530
|
+
"entityType": "session",
|
|
531
|
+
"stateChange": "none",
|
|
532
|
+
"tags": ["comment_flow"]
|
|
533
|
+
},
|
|
534
|
+
"DesignerProofLink_Click_Approve": {
|
|
535
|
+
"category": "workflow",
|
|
536
|
+
"action": "approve_proof",
|
|
537
|
+
"entityType": "session",
|
|
538
|
+
"stateChange": "none",
|
|
539
|
+
"tags": ["proofing_flow"]
|
|
540
|
+
},
|
|
541
|
+
"DesignerProofLink_Click_Mark": {
|
|
542
|
+
"category": "workflow",
|
|
543
|
+
"action": "mark_proof_region",
|
|
544
|
+
"entityType": "session",
|
|
545
|
+
"stateChange": "none",
|
|
546
|
+
"tags": ["proofing_flow"]
|
|
547
|
+
},
|
|
548
|
+
"ClickRotateImage": {
|
|
549
|
+
"category": "mutation",
|
|
550
|
+
"action": "rotate_image",
|
|
551
|
+
"entityType": "element",
|
|
552
|
+
"stateChange": "definite",
|
|
553
|
+
"tags": ["rotation_change", "image_edit"]
|
|
554
|
+
},
|
|
555
|
+
"ClientEstoreWallArtEditor_Click_CropImage": {
|
|
556
|
+
"category": "workflow",
|
|
557
|
+
"action": "enter_crop_flow",
|
|
558
|
+
"entityType": "element",
|
|
559
|
+
"stateChange": "possible",
|
|
560
|
+
"tags": ["crop_flow", "image_edit"]
|
|
561
|
+
},
|
|
562
|
+
"ClientEstoreWallArtEditor_Click_DeleteImage": {
|
|
563
|
+
"category": "mutation",
|
|
564
|
+
"action": "delete_image",
|
|
565
|
+
"entityType": "element",
|
|
566
|
+
"stateChange": "definite",
|
|
567
|
+
"tags": ["image_remove"]
|
|
568
|
+
},
|
|
569
|
+
"ClientAlbumEditor_EditPage_Click_DeleteImage": {
|
|
570
|
+
"category": "mutation",
|
|
571
|
+
"action": "delete_image",
|
|
572
|
+
"entityType": "element",
|
|
573
|
+
"stateChange": "definite",
|
|
574
|
+
"tags": ["image_remove"]
|
|
575
|
+
},
|
|
576
|
+
"Click_DeleteElementInArrangePhoto": {
|
|
577
|
+
"category": "mutation",
|
|
578
|
+
"action": "delete_element_in_arrange",
|
|
579
|
+
"entityType": "element",
|
|
580
|
+
"stateChange": "definite",
|
|
581
|
+
"tags": ["element_delete", "arrange_photo"]
|
|
582
|
+
},
|
|
583
|
+
"Click_DragAndDropIdeaPageInArrangePhoto": {
|
|
584
|
+
"category": "mutation",
|
|
585
|
+
"action": "apply_idea_page_in_arrange",
|
|
586
|
+
"entityType": "page",
|
|
587
|
+
"stateChange": "possible",
|
|
588
|
+
"tags": ["theme_change", "arrange_photo"]
|
|
589
|
+
},
|
|
590
|
+
"ClientEstoreAlbumEditor_ArrangePages_Click_SwapImage": {
|
|
591
|
+
"category": "mutation",
|
|
592
|
+
"action": "swap_image",
|
|
593
|
+
"entityType": "element",
|
|
594
|
+
"stateChange": "definite",
|
|
595
|
+
"tags": ["image_swap", "arrange_photo"]
|
|
596
|
+
},
|
|
597
|
+
"ProductEditor_Click_AutoFillInArrangePhoto": {
|
|
598
|
+
"category": "workflow",
|
|
599
|
+
"action": "request_autofill_in_arrange",
|
|
600
|
+
"entityType": "session",
|
|
601
|
+
"stateChange": "none",
|
|
602
|
+
"tags": ["autofill_flow", "arrange_photo"]
|
|
603
|
+
},
|
|
604
|
+
"Click_AutoFillSettingInArrangePhoto": {
|
|
605
|
+
"category": "workflow",
|
|
606
|
+
"action": "open_autofill_setting",
|
|
607
|
+
"entityType": "session",
|
|
608
|
+
"stateChange": "none",
|
|
609
|
+
"tags": ["autofill_flow", "arrange_photo"]
|
|
610
|
+
},
|
|
611
|
+
"changeAutofillSetting": {
|
|
612
|
+
"category": "mutation",
|
|
613
|
+
"action": "change_autofill_setting",
|
|
614
|
+
"entityType": "project",
|
|
615
|
+
"stateChange": "definite",
|
|
616
|
+
"tags": ["autofill_setting_change"]
|
|
617
|
+
},
|
|
618
|
+
"Click_CoverLogo": {
|
|
619
|
+
"category": "mutation",
|
|
620
|
+
"action": "add_cover_logo",
|
|
621
|
+
"entityType": "element",
|
|
622
|
+
"stateChange": "definite",
|
|
623
|
+
"tags": ["cover_craft"]
|
|
624
|
+
},
|
|
625
|
+
"Click_CoverText": {
|
|
626
|
+
"category": "mutation",
|
|
627
|
+
"action": "add_cover_text",
|
|
628
|
+
"entityType": "element",
|
|
629
|
+
"stateChange": "definite",
|
|
630
|
+
"tags": ["cover_craft", "text_change"]
|
|
631
|
+
},
|
|
632
|
+
"Click_AddCoverLogo": {
|
|
633
|
+
"category": "mutation",
|
|
634
|
+
"action": "add_cover_logo",
|
|
635
|
+
"entityType": "element",
|
|
636
|
+
"stateChange": "possible",
|
|
637
|
+
"tags": ["cover_craft"]
|
|
638
|
+
},
|
|
639
|
+
"Click_AddCoverText": {
|
|
640
|
+
"category": "mutation",
|
|
641
|
+
"action": "add_cover_text",
|
|
642
|
+
"entityType": "element",
|
|
643
|
+
"stateChange": "possible",
|
|
644
|
+
"tags": ["cover_craft", "text_change"]
|
|
645
|
+
},
|
|
646
|
+
"addCoverLogo": {
|
|
647
|
+
"category": "mutation",
|
|
648
|
+
"action": "add_cover_logo",
|
|
649
|
+
"entityType": "element",
|
|
650
|
+
"stateChange": "possible",
|
|
651
|
+
"tags": ["cover_craft"]
|
|
652
|
+
},
|
|
653
|
+
"addCoverText": {
|
|
654
|
+
"category": "mutation",
|
|
655
|
+
"action": "add_cover_text",
|
|
656
|
+
"entityType": "element",
|
|
657
|
+
"stateChange": "possible",
|
|
658
|
+
"tags": ["cover_craft", "text_change"]
|
|
659
|
+
},
|
|
660
|
+
"Click_CustomLogoDebossing": {
|
|
661
|
+
"category": "workflow",
|
|
662
|
+
"action": "open_custom_logo_debossing",
|
|
663
|
+
"entityType": "session",
|
|
664
|
+
"stateChange": "none",
|
|
665
|
+
"tags": ["debossing_flow"]
|
|
666
|
+
},
|
|
667
|
+
"Click_CustomTextDebossing": {
|
|
668
|
+
"category": "workflow",
|
|
669
|
+
"action": "open_custom_text_debossing",
|
|
670
|
+
"entityType": "session",
|
|
671
|
+
"stateChange": "none",
|
|
672
|
+
"tags": ["debossing_flow"]
|
|
673
|
+
},
|
|
674
|
+
"Click_AddPicturCameo": {
|
|
675
|
+
"category": "mutation",
|
|
676
|
+
"action": "add_picture_cameo",
|
|
677
|
+
"entityType": "element",
|
|
678
|
+
"stateChange": "possible",
|
|
679
|
+
"tags": ["cameo_change"]
|
|
680
|
+
},
|
|
681
|
+
"Click_AddCameo": {
|
|
682
|
+
"category": "mutation",
|
|
683
|
+
"action": "add_cameo",
|
|
684
|
+
"entityType": "element",
|
|
685
|
+
"stateChange": "possible",
|
|
686
|
+
"tags": ["cameo_change"]
|
|
687
|
+
},
|
|
688
|
+
"addPictureCameo": {
|
|
689
|
+
"category": "mutation",
|
|
690
|
+
"action": "add_picture_cameo",
|
|
691
|
+
"entityType": "element",
|
|
692
|
+
"stateChange": "possible",
|
|
693
|
+
"tags": ["cameo_change"]
|
|
694
|
+
},
|
|
695
|
+
"addCameo": {
|
|
696
|
+
"category": "mutation",
|
|
697
|
+
"action": "add_cameo",
|
|
698
|
+
"entityType": "element",
|
|
699
|
+
"stateChange": "possible",
|
|
700
|
+
"tags": ["cameo_change"]
|
|
701
|
+
},
|
|
702
|
+
"Click_AddRaisedFoilLogo": {
|
|
703
|
+
"category": "mutation",
|
|
704
|
+
"action": "add_raised_foil_logo",
|
|
705
|
+
"entityType": "element",
|
|
706
|
+
"stateChange": "possible",
|
|
707
|
+
"tags": ["foil_change"]
|
|
708
|
+
},
|
|
709
|
+
"Click_AddRaisedFoilText": {
|
|
710
|
+
"category": "mutation",
|
|
711
|
+
"action": "add_raised_foil_text",
|
|
712
|
+
"entityType": "element",
|
|
713
|
+
"stateChange": "possible",
|
|
714
|
+
"tags": ["foil_change", "text_change"]
|
|
715
|
+
},
|
|
716
|
+
"Click_AddRaisedFoilSpine": {
|
|
717
|
+
"category": "mutation",
|
|
718
|
+
"action": "add_raised_foil_spine_text",
|
|
719
|
+
"entityType": "element",
|
|
720
|
+
"stateChange": "possible",
|
|
721
|
+
"tags": ["foil_change", "text_change"]
|
|
722
|
+
},
|
|
723
|
+
"addRaisedFoilLogo": {
|
|
724
|
+
"category": "mutation",
|
|
725
|
+
"action": "add_raised_foil_logo",
|
|
726
|
+
"entityType": "element",
|
|
727
|
+
"stateChange": "possible",
|
|
728
|
+
"tags": ["foil_change"]
|
|
729
|
+
},
|
|
730
|
+
"addRaisedFoilText": {
|
|
731
|
+
"category": "mutation",
|
|
732
|
+
"action": "add_raised_foil_text",
|
|
733
|
+
"entityType": "element",
|
|
734
|
+
"stateChange": "possible",
|
|
735
|
+
"tags": ["foil_change", "text_change"]
|
|
736
|
+
},
|
|
737
|
+
"addSpineRaisedFoilText": {
|
|
738
|
+
"category": "mutation",
|
|
739
|
+
"action": "add_raised_foil_spine_text",
|
|
740
|
+
"entityType": "element",
|
|
741
|
+
"stateChange": "possible",
|
|
742
|
+
"tags": ["foil_change", "text_change"]
|
|
743
|
+
},
|
|
744
|
+
"Click_AddVarnishingLogo": {
|
|
745
|
+
"category": "mutation",
|
|
746
|
+
"action": "add_varnishing_logo",
|
|
747
|
+
"entityType": "element",
|
|
748
|
+
"stateChange": "possible",
|
|
749
|
+
"tags": ["varnishing_change"]
|
|
750
|
+
},
|
|
751
|
+
"Click_AddVarnishingText": {
|
|
752
|
+
"category": "mutation",
|
|
753
|
+
"action": "add_varnishing_text",
|
|
754
|
+
"entityType": "element",
|
|
755
|
+
"stateChange": "possible",
|
|
756
|
+
"tags": ["varnishing_change", "text_change"]
|
|
757
|
+
},
|
|
758
|
+
"Click_AddVarnishingSpine": {
|
|
759
|
+
"category": "mutation",
|
|
760
|
+
"action": "add_varnishing_spine_text",
|
|
761
|
+
"entityType": "element",
|
|
762
|
+
"stateChange": "possible",
|
|
763
|
+
"tags": ["varnishing_change", "text_change"]
|
|
764
|
+
},
|
|
765
|
+
"addVarnishingLogo": {
|
|
766
|
+
"category": "mutation",
|
|
767
|
+
"action": "add_varnishing_logo",
|
|
768
|
+
"entityType": "element",
|
|
769
|
+
"stateChange": "possible",
|
|
770
|
+
"tags": ["varnishing_change"]
|
|
771
|
+
},
|
|
772
|
+
"addVarnishingText": {
|
|
773
|
+
"category": "mutation",
|
|
774
|
+
"action": "add_varnishing_text",
|
|
775
|
+
"entityType": "element",
|
|
776
|
+
"stateChange": "possible",
|
|
777
|
+
"tags": ["varnishing_change", "text_change"]
|
|
778
|
+
},
|
|
779
|
+
"addVarnishingText ": {
|
|
780
|
+
"category": "mutation",
|
|
781
|
+
"action": "add_varnishing_text",
|
|
782
|
+
"entityType": "element",
|
|
783
|
+
"stateChange": "possible",
|
|
784
|
+
"tags": ["varnishing_change", "text_change"]
|
|
785
|
+
},
|
|
786
|
+
"addSpineVarnishingText ": {
|
|
787
|
+
"category": "mutation",
|
|
788
|
+
"action": "add_varnishing_spine_text",
|
|
789
|
+
"entityType": "element",
|
|
790
|
+
"stateChange": "possible",
|
|
791
|
+
"tags": ["varnishing_change", "text_change"]
|
|
792
|
+
},
|
|
793
|
+
"Click_RecolorSticker": {
|
|
794
|
+
"category": "workflow",
|
|
795
|
+
"action": "open_sticker_recolor",
|
|
796
|
+
"entityType": "session",
|
|
797
|
+
"stateChange": "none",
|
|
798
|
+
"tags": ["sticker_flow"]
|
|
799
|
+
},
|
|
800
|
+
"Click_LogoWithUVPrint": {
|
|
801
|
+
"category": "workflow",
|
|
802
|
+
"action": "toggle_logo_uv_print",
|
|
803
|
+
"entityType": "session",
|
|
804
|
+
"stateChange": "none",
|
|
805
|
+
"tags": ["varnishing_flow"]
|
|
806
|
+
},
|
|
807
|
+
"Click_TextWithUVPrint": {
|
|
808
|
+
"category": "mutation",
|
|
809
|
+
"action": "toggle_text_uv_print",
|
|
810
|
+
"entityType": "element",
|
|
811
|
+
"stateChange": "possible",
|
|
812
|
+
"tags": ["varnishing_change", "text_change"]
|
|
813
|
+
},
|
|
814
|
+
"Click_BackgroundColor": {
|
|
815
|
+
"category": "workflow",
|
|
816
|
+
"action": "open_background_setting",
|
|
817
|
+
"entityType": "session",
|
|
818
|
+
"stateChange": "none",
|
|
819
|
+
"tags": ["background_flow"]
|
|
820
|
+
},
|
|
821
|
+
"clickChangeBgColor": {
|
|
822
|
+
"category": "workflow",
|
|
823
|
+
"action": "open_background_setting",
|
|
824
|
+
"entityType": "session",
|
|
825
|
+
"stateChange": "none",
|
|
826
|
+
"tags": ["background_flow"]
|
|
827
|
+
}
|
|
828
|
+
}
|