@momentumcms/plugins-analytics 0.0.1
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 +19 -0
- package/LICENSE +21 -0
- package/index.cjs +2218 -0
- package/package.json +56 -0
- package/src/index.d.ts +21 -0
- package/src/lib/adapters/memory-adapter.d.ts +15 -0
- package/src/lib/adapters/postgres-adapter.d.ts +31 -0
- package/src/lib/analytics-auth.d.ts +17 -0
- package/src/lib/analytics-config.types.d.ts +75 -0
- package/src/lib/analytics-event.types.d.ts +89 -0
- package/src/lib/analytics-middleware.d.ts +40 -0
- package/src/lib/analytics-plugin.d.ts +39 -0
- package/src/lib/analytics-query-handler.d.ts +46 -0
- package/src/lib/client/block-tracker.d.ts +29 -0
- package/src/lib/client/rule-engine.d.ts +72 -0
- package/src/lib/client/tracker.d.ts +74 -0
- package/src/lib/collectors/api-collector.d.ts +18 -0
- package/src/lib/collectors/block-field-injector.d.ts +17 -0
- package/src/lib/collectors/collection-collector.d.ts +27 -0
- package/src/lib/content-performance/content-performance-handler.d.ts +15 -0
- package/src/lib/content-performance/content-performance.types.d.ts +38 -0
- package/src/lib/event-store.d.ts +57 -0
- package/src/lib/ingest-handler.d.ts +24 -0
- package/src/lib/tracking-rules/tracking-rule.types.d.ts +49 -0
- package/src/lib/tracking-rules/tracking-rules-collection.d.ts +11 -0
- package/src/lib/tracking-rules/tracking-rules-endpoint.d.ts +27 -0
- package/src/lib/utils/parse-user-agent.d.ts +21 -0
- package/src/lib/utils/selector-security.d.ts +16 -0
- package/src/lib/utils/type-guards.d.ts +9 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
## 0.1.1 (2026-02-16)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for plugins-analytics to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 0.1.0 (2026-02-16)
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
- add tracking rules, content performance, and block analytics ([#21](https://github.com/DonaldMurillo/momentum-cms/pull/21))
|
|
10
|
+
|
|
11
|
+
### 🩹 Fixes
|
|
12
|
+
|
|
13
|
+
- resolve CUD toast interceptor issues ([#17](https://github.com/DonaldMurillo/momentum-cms/pull/17), [#1](https://github.com/DonaldMurillo/momentum-cms/issues/1), [#2](https://github.com/DonaldMurillo/momentum-cms/issues/2), [#3](https://github.com/DonaldMurillo/momentum-cms/issues/3), [#4](https://github.com/DonaldMurillo/momentum-cms/issues/4))
|
|
14
|
+
|
|
15
|
+
### ❤️ Thank You
|
|
16
|
+
|
|
17
|
+
- Claude Haiku 4.5
|
|
18
|
+
- Claude Opus 4.6
|
|
19
|
+
- Donald Murillo @DonaldMurillo
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-present Momentum CMS Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|