@creator.co/analytics-kysely-types 1.0.22-alpha-4fc5676 → 1.0.22-alpha-0163da4
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/enums.ts +0 -1
- package/index.d.ts +0 -8
- package/package.json +1 -1
package/enums.ts
CHANGED
|
@@ -12,7 +12,6 @@ export type TaskSchedule = (typeof TaskSchedule)[keyof typeof TaskSchedule];
|
|
|
12
12
|
export const TaskType = {
|
|
13
13
|
Views: "views",
|
|
14
14
|
Conversions: "conversetions",
|
|
15
|
-
Clicks: "clicks",
|
|
16
15
|
Traffic: "traffic"
|
|
17
16
|
} as const;
|
|
18
17
|
export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|
package/index.d.ts
CHANGED
|
@@ -35,13 +35,6 @@ export type IntegrationGA4 = {
|
|
|
35
35
|
createdAt: Generated<Timestamp>;
|
|
36
36
|
updatedAt: Timestamp | null;
|
|
37
37
|
};
|
|
38
|
-
export type IntegrationGA4Clicks = {
|
|
39
|
-
integrationId: number;
|
|
40
|
-
taskId: number;
|
|
41
|
-
dateHour: string;
|
|
42
|
-
value: number;
|
|
43
|
-
createdAt: Generated<Timestamp>;
|
|
44
|
-
};
|
|
45
38
|
export type IntegrationGA4Conversions = {
|
|
46
39
|
integrationId: number;
|
|
47
40
|
taskId: number;
|
|
@@ -76,7 +69,6 @@ export type IntegrationTaskSchedule = {
|
|
|
76
69
|
updatedAt: Timestamp | null;
|
|
77
70
|
};
|
|
78
71
|
export type DB = {
|
|
79
|
-
"analyticsData.IntegrationGa4Clicks": IntegrationGA4Clicks;
|
|
80
72
|
"analyticsData.IntegrationGa4Conversions": IntegrationGA4Conversions;
|
|
81
73
|
"analyticsData.IntegrationGa4Pageviews": IntegrationGA4Pageviews;
|
|
82
74
|
"analyticsData.IntegrationGa4Traffic": IntegrationGA4Traffic;
|