spine-framework-cortex 0.1.15 → 0.1.16
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 +3 -0
- package/package.json +1 -1
- package/seed/integrations.json +8 -10
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.1.16] — 2026-06-09
|
|
8
|
+
- Fixed `integrations.json` seed — removed non-existent `description` column, changed `display_name` to `name`, added required `slug`, `provider`, `status` fields
|
|
9
|
+
|
|
7
10
|
## [0.1.15] — 2026-06-09
|
|
8
11
|
- Fixed `integrations.json` handler config format for `funnel-signal-mar` and `funnel-signal-use` integrations
|
|
9
12
|
- Removed orphaned `on_funnel_signal_created` trigger from `triggers.json` — trigger engine requires `pipeline_id` and cannot directly invoke custom functions
|
package/package.json
CHANGED
package/seed/integrations.json
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
|
-
"name": "
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
3
|
+
"name": "Funnel Signal: Marketing",
|
|
4
|
+
"slug": "funnel-signal-mar",
|
|
5
|
+
"provider": "webhook",
|
|
6
|
+
"status": "active",
|
|
7
7
|
"is_active": true,
|
|
8
|
-
"is_configured": true,
|
|
9
8
|
"config": {
|
|
10
9
|
"handler": { "path": "funnel-signal" },
|
|
11
10
|
"description": "Marketing signal ingest via integration-routes"
|
|
12
11
|
}
|
|
13
12
|
},
|
|
14
13
|
{
|
|
15
|
-
"name": "
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
14
|
+
"name": "Funnel Signal: Usage",
|
|
15
|
+
"slug": "funnel-signal-use",
|
|
16
|
+
"provider": "webhook",
|
|
17
|
+
"status": "active",
|
|
19
18
|
"is_active": true,
|
|
20
|
-
"is_configured": true,
|
|
21
19
|
"config": {
|
|
22
20
|
"handler": { "path": "funnel-signal" },
|
|
23
21
|
"description": "Usage signal ingest via integration-routes"
|