@creator.co/analytics-kysely-types 1.0.22-alpha-f7bb6e5 → 1.0.22-alpha-15b27e5
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/package.json +1 -1
- package/enums.ts +0 -17
package/package.json
CHANGED
package/enums.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export const TaskStatus = {
|
|
2
|
-
Backfilling: "backfilling",
|
|
3
|
-
Enabled: "enabled",
|
|
4
|
-
Failed: "failed"
|
|
5
|
-
} as const;
|
|
6
|
-
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
7
|
-
export const TaskSchedule = {
|
|
8
|
-
Hourly: "hourly",
|
|
9
|
-
Daily: "daily"
|
|
10
|
-
} as const;
|
|
11
|
-
export type TaskSchedule = (typeof TaskSchedule)[keyof typeof TaskSchedule];
|
|
12
|
-
export const TaskType = {
|
|
13
|
-
Views: "views",
|
|
14
|
-
Conversions: "conversetions",
|
|
15
|
-
Traffic: "traffic"
|
|
16
|
-
} as const;
|
|
17
|
-
export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|