@levo-so/core 0.1.109 → 0.1.111
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/index.d.ts +1 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1154,9 +1154,6 @@ export declare namespace ILevoAudience {
|
|
|
1154
1154
|
resource: string;
|
|
1155
1155
|
identifier: string;
|
|
1156
1156
|
};
|
|
1157
|
-
export interface BlockProperties {
|
|
1158
|
-
id: string;
|
|
1159
|
-
}
|
|
1160
1157
|
export interface ActivityProperties {
|
|
1161
1158
|
seconds_idle?: number;
|
|
1162
1159
|
seconds_active?: number;
|
|
@@ -1164,7 +1161,7 @@ export declare namespace ILevoAudience {
|
|
|
1164
1161
|
export interface ScrollProperties {
|
|
1165
1162
|
percent: number;
|
|
1166
1163
|
}
|
|
1167
|
-
export type Properties = Partial<BaseProperties &
|
|
1164
|
+
export type Properties = Partial<BaseProperties & ActivityProperties & ScrollProperties> & Partial<Omit<BaseInput, "workspace_id" | "tab_count" | "tab_id">> & Record<string, any>;
|
|
1168
1165
|
export type EventProperties = {
|
|
1169
1166
|
properties: Properties;
|
|
1170
1167
|
traits: Traits;
|