@tolinax/ayoune-interfaces 2025.16.0 → 2025.16.2

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.
@@ -90,6 +90,8 @@ export interface IaYOUneKeyword extends IDefaultFields {
90
90
  lab?: boolean;
91
91
  environment?: Environment;
92
92
  keyword: string;
93
+ keywordLength?: number;
94
+ keywordType?: "longtail" | "shorttail";
93
95
  niceName?: string;
94
96
  locale: string;
95
97
  last_checks?: LastChecks;
@@ -1,3 +1,9 @@
1
+ export interface IaYOUneEvent {
2
+ category?: string;
3
+ action?: string;
4
+ label?: string;
5
+ value?: string;
6
+ }
1
7
  export interface IaYOUneTrackingParams {
2
8
  ayoune_ac?: string;
3
9
  ayoune_ucd?: string;
@@ -30,7 +36,7 @@ export interface IaYOUneTrackingParams {
30
36
  ayoune_feedback?: string;
31
37
  ayoune_rating?: string;
32
38
  ayoune_mail_link_id?: string;
33
- ayoune_event?: string;
39
+ ayoune_event?: string | IaYOUneEvent;
34
40
  ayoune_agency?: string;
35
41
  ayoune_partner?: string;
36
42
  ayoune_aff?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2025.16.0",
3
+ "version": "2025.16.2",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",