spine-framework-cortex 0.1.15 → 0.1.17

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,12 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.1.17] — 2026-06-10
8
+ - Fixed `custom_funnel-signal.ts` — moved `anonymous_id` from nested `data.identity.anonymous_id` to root `data.anonymous_id` to match `anonymous_session` type schema (required field)
9
+
10
+ ## [0.1.16] — 2026-06-09
11
+ - Fixed `integrations.json` seed — removed non-existent `description` column, changed `display_name` to `name`, added required `slug`, `provider`, `status` fields
12
+
7
13
  ## [0.1.15] — 2026-06-09
8
14
  - Fixed `integrations.json` handler config format for `funnel-signal-mar` and `funnel-signal-use` integrations
9
15
  - Removed orphaned `on_funnel_signal_created` trigger from `triggers.json` — trigger engine requires `pipeline_id` and cannot directly invoke custom functions
@@ -323,7 +323,7 @@ async function upsertAnonymousSession(
323
323
  type_id: sessionTypeId,
324
324
  title: `Anonymous: ${payload.anonymous_id!.slice(0, 8)}`,
325
325
  data: {
326
- identity: { anonymous_id: payload.anonymous_id },
326
+ anonymous_id: payload.anonymous_id,
327
327
  temperature: ratingToTemperature(scoring.rating),
328
328
  current_stage: 'anonymous',
329
329
  scoring_rating: scoring.rating,
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.17",
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"