@adtrackify/at-tracking-event-types 2.0.52 → 2.0.54

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.
@@ -7,4 +7,5 @@ export * from './subscription';
7
7
  export * from './user';
8
8
  export * from './query';
9
9
  export * from './event-status';
10
- export * from './destination-health';
10
+ export * from './query-logs';
11
+ export * from './log-events';
@@ -23,5 +23,6 @@ __exportStar(require("./subscription"), exports);
23
23
  __exportStar(require("./user"), exports);
24
24
  __exportStar(require("./query"), exports);
25
25
  __exportStar(require("./event-status"), exports);
26
- __exportStar(require("./destination-health"), exports);
26
+ __exportStar(require("./query-logs"), exports);
27
+ __exportStar(require("./log-events"), exports);
27
28
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/api/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,8DAA4C;AAC5C,qEAAmD;AACnD,iFAA+D;AAC/D,wDAAsC;AACtC,iDAA+B;AAC/B,yCAAuB;AACvB,0CAAwB;AACxB,iDAA+B;AAC/B,uDAAqC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/api/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,8DAA4C;AAC5C,qEAAmD;AACnD,iFAA+D;AAC/D,wDAAsC;AACtC,iDAA+B;AAC/B,yCAAuB;AACvB,0CAAwB;AACxB,iDAA+B;AAC/B,+CAA6B;AAC7B,+CAA6B"}
@@ -0,0 +1,15 @@
1
+ import { LogEvent, LogLevel } from '../event';
2
+ export interface LogEventRecord {
3
+ eventId: string;
4
+ pixelId_logLevel: string;
5
+ eventName: string;
6
+ pixelId: string;
7
+ source: string;
8
+ service: string;
9
+ logLevel: LogLevel;
10
+ logMessage: string;
11
+ logEvent: LogEvent;
12
+ logGroup: string;
13
+ collectedAt?: string;
14
+ expiredAt: number;
15
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=log-events.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"log-events.js","sourceRoot":"","sources":["../../../../src/types/api/log-events.ts"],"names":[],"mappings":""}
@@ -1,6 +1,11 @@
1
1
  import { TRACKING_EVENT_NAME } from '../event';
2
2
  import { DESTINATION } from './destinations/destinations';
3
3
  import { MEASURE } from './query';
4
+ export interface QueryLogs {
5
+ measure: MEASURE;
6
+ destination?: DESTINATION;
7
+ destinationId?: string;
8
+ }
4
9
  export interface DestinationHealthEventsData {
5
10
  [TRACKING_EVENT_NAME.PAGE_VIEW]: {
6
11
  web: number;
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const event_1 = require("../event");
4
- //# sourceMappingURL=destination-health.js.map
4
+ //# sourceMappingURL=query-logs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"query-logs.js","sourceRoot":"","sources":["../../../../src/types/api/query-logs.ts"],"names":[],"mappings":";;AAAA,oCAA+C"}
@@ -7,4 +7,5 @@ export * from './subscription';
7
7
  export * from './user';
8
8
  export * from './query';
9
9
  export * from './event-status';
10
- export * from './destination-health';
10
+ export * from './query-logs';
11
+ export * from './log-events';
@@ -7,5 +7,6 @@ export * from './subscription';
7
7
  export * from './user';
8
8
  export * from './query';
9
9
  export * from './event-status';
10
- export * from './destination-health';
10
+ export * from './query-logs';
11
+ export * from './log-events';
11
12
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/api/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oCAAoC,CAAC;AACnD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uBAAuB,CAAC;AACtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/api/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oCAAoC,CAAC;AACnD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uBAAuB,CAAC;AACtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC"}
@@ -0,0 +1,15 @@
1
+ import { LogEvent, LogLevel } from '../event';
2
+ export interface LogEventRecord {
3
+ eventId: string;
4
+ pixelId_logLevel: string;
5
+ eventName: string;
6
+ pixelId: string;
7
+ source: string;
8
+ service: string;
9
+ logLevel: LogLevel;
10
+ logMessage: string;
11
+ logEvent: LogEvent;
12
+ logGroup: string;
13
+ collectedAt?: string;
14
+ expiredAt: number;
15
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=log-events.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"log-events.js","sourceRoot":"","sources":["../../../../src/types/api/log-events.ts"],"names":[],"mappings":""}
@@ -1,6 +1,11 @@
1
1
  import { TRACKING_EVENT_NAME } from '../event';
2
2
  import { DESTINATION } from './destinations/destinations';
3
3
  import { MEASURE } from './query';
4
+ export interface QueryLogs {
5
+ measure: MEASURE;
6
+ destination?: DESTINATION;
7
+ destinationId?: string;
8
+ }
4
9
  export interface DestinationHealthEventsData {
5
10
  [TRACKING_EVENT_NAME.PAGE_VIEW]: {
6
11
  web: number;
@@ -1,2 +1,2 @@
1
1
  import { TRACKING_EVENT_NAME } from '../event';
2
- //# sourceMappingURL=destination-health.js.map
2
+ //# sourceMappingURL=query-logs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"query-logs.js","sourceRoot":"","sources":["../../../../src/types/api/query-logs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adtrackify/at-tracking-event-types",
3
- "version": "2.0.52",
3
+ "version": "2.0.54",
4
4
  "description": "",
5
5
  "files": [
6
6
  "dist/*"
@@ -1 +0,0 @@
1
- {"version":3,"file":"destination-health.js","sourceRoot":"","sources":["../../../../src/types/api/destination-health.ts"],"names":[],"mappings":";;AAAA,oCAA+C"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"destination-health.js","sourceRoot":"","sources":["../../../../src/types/api/destination-health.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC"}