spine-framework-cortex 0.1.16 → 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,9 @@ 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
|
+
|
|
7
10
|
## [0.1.16] — 2026-06-09
|
|
8
11
|
- Fixed `integrations.json` seed — removed non-existent `description` column, changed `display_name` to `name`, added required `slug`, `provider`, `status` fields
|
|
9
12
|
|
|
@@ -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
|
-
|
|
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