@creator.co/analytics-kysely-types 1.0.22-alpha-c781f9f → 1.0.22-alpha-333ebec
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 +7 -7
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/enums.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export const IntegrationStatus = {
|
|
2
|
-
Enabled: "
|
|
3
|
-
Failed: "
|
|
2
|
+
Enabled: "enabled",
|
|
3
|
+
Failed: "failed"
|
|
4
4
|
} as const;
|
|
5
5
|
export type IntegrationStatus = (typeof IntegrationStatus)[keyof typeof IntegrationStatus];
|
|
6
6
|
export const TaskSchedule = {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
Hourly: "hourly",
|
|
8
|
+
Daily: "daily"
|
|
9
9
|
} as const;
|
|
10
10
|
export type TaskSchedule = (typeof TaskSchedule)[keyof typeof TaskSchedule];
|
|
11
11
|
export const TaskType = {
|
|
12
|
-
Views: "
|
|
13
|
-
Conversions: "
|
|
14
|
-
Clicks: "
|
|
12
|
+
Views: "views",
|
|
13
|
+
Conversions: "conversetions",
|
|
14
|
+
Clicks: "clicks"
|
|
15
15
|
} as const;
|
|
16
16
|
export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|
package/index.d.ts
CHANGED
|
@@ -33,7 +33,8 @@ export type IntegrationGA4 = {
|
|
|
33
33
|
status: IntegrationStatus;
|
|
34
34
|
backfillData: Json;
|
|
35
35
|
backfillDate: Timestamp | null;
|
|
36
|
-
credentials:
|
|
36
|
+
credentials: string;
|
|
37
|
+
propertyId: string;
|
|
37
38
|
createdAt: Generated<Timestamp>;
|
|
38
39
|
updatedAt: Timestamp | null;
|
|
39
40
|
};
|