spine-framework-cortex 0.1.12 → 0.1.14
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/CHANGELOG.md +13 -0
- package/LICENSE.md +216 -6
- package/components/CortexSidebar.tsx +27 -0
- package/functions/custom_funnel-signal.ts +25 -8
- package/index.tsx +10 -0
- package/package.json +1 -1
- package/pages/crm/AccountDetailPage.tsx +192 -146
- package/pages/ops/AuditFunnelPage.tsx +191 -0
- package/pages/ops/CommandCenterPage.tsx +377 -0
- package/pages/ops/InstallFunnelPage.tsx +226 -0
- package/seed/pipelines.json +34 -5
- package/seed/triggers.json +44 -4
package/seed/triggers.json
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"description": "Automatically triggers case analysis when support tickets are resolved",
|
|
5
5
|
"trigger_type": "event",
|
|
6
6
|
"event_type": "item_updated",
|
|
7
|
+
"pipeline_slug": "case-analysis",
|
|
7
8
|
"config": {
|
|
8
9
|
"scope": "account",
|
|
9
10
|
"filters": [
|
|
@@ -20,15 +21,54 @@
|
|
|
20
21
|
"is_active": true
|
|
21
22
|
},
|
|
22
23
|
{
|
|
23
|
-
"name": "Funnel Signal
|
|
24
|
-
"description": "
|
|
24
|
+
"name": "Funnel: General Signal Routing",
|
|
25
|
+
"description": "Fires the general funnel pipeline for signals with no specific pipeline_slug",
|
|
25
26
|
"trigger_type": "event",
|
|
26
27
|
"event_type": "item_created",
|
|
28
|
+
"pipeline_slug": "funnel-general",
|
|
27
29
|
"config": {
|
|
28
30
|
"scope": "account",
|
|
29
|
-
"filters": {},
|
|
30
31
|
"type_slug": "funnel_signal",
|
|
31
|
-
"entity_type": "item"
|
|
32
|
+
"entity_type": "item",
|
|
33
|
+
"filters": {
|
|
34
|
+
"data.classification.pipeline_slug": { "$exists": false }
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"ownership": "tenant",
|
|
38
|
+
"is_system": false,
|
|
39
|
+
"is_active": true
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "Funnel: AI Audit Routing",
|
|
43
|
+
"description": "Fires the AI Audit pipeline when a signal arrives tagged with pipeline_slug='funnel-ai-audit'",
|
|
44
|
+
"trigger_type": "event",
|
|
45
|
+
"event_type": "item_created",
|
|
46
|
+
"pipeline_slug": "funnel-ai-audit",
|
|
47
|
+
"config": {
|
|
48
|
+
"scope": "account",
|
|
49
|
+
"type_slug": "funnel_signal",
|
|
50
|
+
"entity_type": "item",
|
|
51
|
+
"filters": {
|
|
52
|
+
"data.classification.pipeline_slug": "funnel-ai-audit"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"ownership": "tenant",
|
|
56
|
+
"is_system": false,
|
|
57
|
+
"is_active": true
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "Funnel: Implementation Routing",
|
|
61
|
+
"description": "Fires the Implementation pipeline when a signal arrives tagged with pipeline_slug='funnel-implementation'",
|
|
62
|
+
"trigger_type": "event",
|
|
63
|
+
"event_type": "item_created",
|
|
64
|
+
"pipeline_slug": "funnel-implementation",
|
|
65
|
+
"config": {
|
|
66
|
+
"scope": "account",
|
|
67
|
+
"type_slug": "funnel_signal",
|
|
68
|
+
"entity_type": "item",
|
|
69
|
+
"filters": {
|
|
70
|
+
"data.classification.pipeline_slug": "funnel-implementation"
|
|
71
|
+
}
|
|
32
72
|
},
|
|
33
73
|
"ownership": "tenant",
|
|
34
74
|
"is_system": false,
|