@creator.co/analytics-kysely-types 1.0.22-alpha-ecfef27 → 1.0.23-alpha-6c97172

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.d.ts ADDED
@@ -0,0 +1,17 @@
1
+ export declare const TaskStatus: {
2
+ readonly Backfilling: "backfilling";
3
+ readonly Enabled: "enabled";
4
+ readonly Failed: "failed";
5
+ };
6
+ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
7
+ export declare const TaskSchedule: {
8
+ readonly Hourly: "hourly";
9
+ readonly Daily: "daily";
10
+ };
11
+ export type TaskSchedule = (typeof TaskSchedule)[keyof typeof TaskSchedule];
12
+ export declare const TaskType: {
13
+ readonly Views: "views";
14
+ readonly Conversions: "conversions";
15
+ readonly Traffic: "traffic";
16
+ };
17
+ export type TaskType = (typeof TaskType)[keyof typeof TaskType];
package/enums.js ADDED
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TaskType = exports.TaskSchedule = exports.TaskStatus = void 0;
4
+ exports.TaskStatus = {
5
+ Backfilling: "backfilling",
6
+ Enabled: "enabled",
7
+ Failed: "failed"
8
+ };
9
+ exports.TaskSchedule = {
10
+ Hourly: "hourly",
11
+ Daily: "daily"
12
+ };
13
+ exports.TaskType = {
14
+ Views: "views",
15
+ Conversions: "conversions",
16
+ Traffic: "traffic"
17
+ };
18
+ //# sourceMappingURL=enums.js.map
package/enums.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"enums.js","sourceRoot":"","sources":["../enums.ts"],"names":[],"mappings":";;;AAAa,QAAA,UAAU,GAAG;IACtB,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;CACV,CAAC;AAEE,QAAA,YAAY,GAAG;IACxB,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;CACR,CAAC;AAEE,QAAA,QAAQ,GAAG;IACpB,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;CACZ,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/analytics-kysely-types",
3
- "version": "1.0.22-alpha-ecfef27",
3
+ "version": "1.0.23-alpha-6c97172",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {