@tolinax/ayoune-interfaces 2024.36.0 → 2024.38.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/interfaces/IView.d.ts +7 -0
- package/package.json +1 -1
package/interfaces/IView.d.ts
CHANGED
|
@@ -70,6 +70,8 @@ export interface IView extends IDefaultFields {
|
|
|
70
70
|
maxPixels: string;
|
|
71
71
|
start: Date;
|
|
72
72
|
end: Date;
|
|
73
|
+
width: number;
|
|
74
|
+
height: number;
|
|
73
75
|
duration: string;
|
|
74
76
|
activetime: string;
|
|
75
77
|
idletime: string;
|
|
@@ -104,5 +106,10 @@ export interface IView extends IDefaultFields {
|
|
|
104
106
|
ayoune_mail_link_id: string;
|
|
105
107
|
forms: IForms[];
|
|
106
108
|
rawforms: any[];
|
|
109
|
+
traffictype: string;
|
|
110
|
+
network: string;
|
|
111
|
+
mailclient: string;
|
|
112
|
+
searchengine: string;
|
|
113
|
+
site: string;
|
|
107
114
|
}
|
|
108
115
|
export {};
|