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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spine-framework-cortex",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Cortex — AI-powered support, CRM, and knowledge base app for Spine Framework",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -1,23 +1,21 @@
1
1
  [
2
2
  {
3
- "name": "funnel-signal-mar",
4
- "display_name": "Funnel Signal: Marketing",
5
- "description": "Marketing-source funnel signal ingest — anonymous and identified visitors from the marketing site",
6
- "integration_type": "webhook",
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": "funnel-signal-use",
16
- "display_name": "Funnel Signal: Usage",
17
- "description": "Usage-source funnel signal ingest — installed app instances reporting in-product signals",
18
- "integration_type": "webhook",
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"