@creator.co/analytics-kysely-types 1.0.28 → 1.0.33-alpha-dde3fcf

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 CHANGED
@@ -13,5 +13,6 @@ export declare const TaskType: {
13
13
  readonly Views: "views";
14
14
  readonly Conversions: "conversions";
15
15
  readonly Traffic: "traffic";
16
+ readonly Events: "events";
16
17
  };
17
18
  export type TaskType = (typeof TaskType)[keyof typeof TaskType];
package/enums.js CHANGED
@@ -13,6 +13,7 @@ exports.TaskSchedule = {
13
13
  exports.TaskType = {
14
14
  Views: "views",
15
15
  Conversions: "conversions",
16
- Traffic: "traffic"
16
+ Traffic: "traffic",
17
+ Events: "events"
17
18
  };
18
19
  //# sourceMappingURL=enums.js.map
package/enums.js.map CHANGED
@@ -1 +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"}
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;IAClB,MAAM,EAAE,QAAQ;CACV,CAAC"}
package/index.d.ts CHANGED
@@ -43,6 +43,14 @@ export type IntegrationGA4Conversions = {
43
43
  value: number;
44
44
  createdAt: Generated<Timestamp>;
45
45
  };
46
+ export type IntegrationGA4Events = {
47
+ integrationId: number;
48
+ taskId: number;
49
+ dateHour: string;
50
+ event: string;
51
+ value: number;
52
+ createdAt: Generated<Timestamp>;
53
+ };
46
54
  export type IntegrationGA4Pageviews = {
47
55
  integrationId: number;
48
56
  taskId: number;
@@ -70,6 +78,7 @@ export type IntegrationTaskSchedule = {
70
78
  };
71
79
  export type DB = {
72
80
  "analyticsData.integrationGa4Conversions": IntegrationGA4Conversions;
81
+ "analyticsData.integrationGa4Events": IntegrationGA4Events;
73
82
  "analyticsData.integrationGa4Pageviews": IntegrationGA4Pageviews;
74
83
  "analyticsData.integrationGa4Traffic": IntegrationGA4Traffic;
75
84
  "analyticsMetadata.analyticsView": AnalyticsView;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/analytics-kysely-types",
3
- "version": "1.0.28",
3
+ "version": "1.0.33-alpha-dde3fcf",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {