ad2app-lib 1.11.0 → 1.14.0

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 DELETED
@@ -1,43 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to `ad2app-lib` are documented here. The analytics taxonomy
4
- is the single source of truth across all surfaces; the matching spec lives in
5
- `ad2appus/docs/posthog-implementation.md` (§3).
6
-
7
- ## 1.9.0
8
-
9
- ### Added
10
-
11
- - Free Tier analytics (epic AD2-887):
12
- - `EVENTS.FREE_SKILLS_REQUESTED` (`free_skills_requested`), shape `{ source: string }` — email submitted for the free skills (AD2-889).
13
- - `EVENTS.ACCOUNT_CONNECT_BLOCKED` (`account_connect_blocked`), shape `{ platform?: string }` — free user hits the connect wall (AD2-892).
14
- - `EVENTS.MCP_POST_BLOCKED_FREE_TIER` (`mcp_post_blocked_free_tier`), shape `{ target_count?: number }` — free user tries to post in the MCP (AD2-898).
15
- - `'free_skills'` added to the `LANDING_CTA_CLICKED` location union.
16
- - Email lifecycle events (Resend webhook -> PostHog, AD2-894):
17
- `EVENTS.EMAIL_DELIVERED` / `EMAIL_OPENED` / `EMAIL_CLICKED` / `EMAIL_BOUNCED` /
18
- `EMAIL_COMPLAINED`, all sharing `EmailEventProperties` (`{ email_id?, subject?, link? }`).
19
-
20
- ## 1.8.0
21
-
22
- ### Added
23
-
24
- - `EVENTS.CONNECT_ARTIFACT_COPIED` (`connect_artifact_copied`) with property
25
- shape `{ target: 'app' | 'ask' | 'terminal' | 'editor' }` — fired when the
26
- `/connect` install snippet is copied.
27
- - `'ai_connector'` added to the `LANDING_CTA_CLICKED` location union
28
- (`hero | pricing | final_cta | nav | ai_connector`).
29
-
30
- ### Removed
31
-
32
- - `EVENTS.TRIAL_STARTED` (`trial_started`) and its `EventProperties` shape.
33
- - `PERSON_PROPS.TRIAL_ENDS_AT` (`trial_ends_at`).
34
- - `'trial'` removed from the documented `PLAN` person-property values, which now
35
- match the canonical `SchedulingSubscriptionTier` (`free | starter | pro`).
36
-
37
- ad2app is a paid-only product with no trial, so these events never fired.
38
- Verified that no consumer (frontend, backend, landing, mcp) referenced them.
39
-
40
- > **Semver note:** removing exported symbols is technically breaking. It is
41
- > released as a minor because no consumer referenced the removed tokens and all
42
- > consumers pin `^1.7.x`, so they upgrade frictionlessly. If you prefer strict
43
- > semver, retag as `2.0.0` and bump the consumer ranges deliberately.