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/dist/legal/meta.d.ts +1 -1
- package/dist/legal/meta.js +1 -1
- package/dist/legal/privacy.js +64 -50
- package/dist/legal/terms.js +37 -49
- package/dist/publish-limits/index.d.ts +34 -0
- package/dist/publish-limits/index.js +116 -0
- package/dist/publish-limits/types.d.ts +26 -0
- package/dist/publish-limits/types.js +11 -0
- package/dist/types/scheduling/I_SchedulingAnalytics.d.ts +36 -1
- package/dist/types/scheduling/I_SchedulingAnalytics.js +23 -1
- package/dist/types/scheduling/I_SchedulingInbox.d.ts +8 -0
- package/dist/types/scheduling/I_SchedulingInbox.js +4 -0
- package/dist/types/scheduling/I_SchedulingPost.d.ts +56 -0
- package/dist/types/scheduling/I_SchedulingPost.js +47 -1
- package/package.json +5 -1
- package/src/legal/meta.ts +1 -1
- package/src/legal/privacy.ts +64 -50
- package/src/legal/terms.ts +40 -52
- package/src/publish-limits/index.test.ts +116 -0
- package/src/publish-limits/index.ts +122 -0
- package/src/publish-limits/types.ts +38 -0
- package/src/types/scheduling/I_SchedulingAnalytics.test.ts +52 -0
- package/src/types/scheduling/I_SchedulingAnalytics.ts +26 -0
- package/src/types/scheduling/I_SchedulingInbox.test.ts +55 -0
- package/src/types/scheduling/I_SchedulingInbox.ts +12 -0
- package/src/types/scheduling/I_SchedulingPost.test.ts +92 -0
- package/src/types/scheduling/I_SchedulingPost.ts +81 -0
- package/CHANGELOG.md +0 -43
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.
|