@adtrackify/at-tracking-event-types 4.6.6 → 4.6.8

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.
@@ -123,6 +123,15 @@ export interface EmqDiagnosticSummary {
123
123
  }
124
124
  export interface EmqDataPoint {
125
125
  collectedAt: string;
126
+ error?: {
127
+ errorCode: number;
128
+ errorType: string;
129
+ errorMessage: string;
130
+ };
131
+ qualityData: EmqQualityData[];
132
+ matchKeyData: EmqMatchKeyData[];
133
+ diagnostics: EmqDiagnostic[];
134
+ dedupeKeyData: EmqDedupeKeyData[];
126
135
  overallScore: number | null;
127
136
  eventScores: Record<string, number>;
128
137
  eventCoverage: number | null;
@@ -138,6 +147,7 @@ export interface EmqDataPoint {
138
147
  } | null;
139
148
  dataFreshness: DATA_FRESHNESS_UPLOAD_FREQUENCY | null;
140
149
  }
150
+ export declare type EmqRawData = Pick<EmqDataPoint, 'qualityData' | 'matchKeyData' | 'diagnostics' | 'dedupeKeyData'>;
141
151
  export interface EmqQueryInput {
142
152
  pixelId: string;
143
153
  dateRange: {
@@ -123,6 +123,15 @@ export interface EmqDiagnosticSummary {
123
123
  }
124
124
  export interface EmqDataPoint {
125
125
  collectedAt: string;
126
+ error?: {
127
+ errorCode: number;
128
+ errorType: string;
129
+ errorMessage: string;
130
+ };
131
+ qualityData: EmqQualityData[];
132
+ matchKeyData: EmqMatchKeyData[];
133
+ diagnostics: EmqDiagnostic[];
134
+ dedupeKeyData: EmqDedupeKeyData[];
126
135
  overallScore: number | null;
127
136
  eventScores: Record<string, number>;
128
137
  eventCoverage: number | null;
@@ -138,6 +147,7 @@ export interface EmqDataPoint {
138
147
  } | null;
139
148
  dataFreshness: DATA_FRESHNESS_UPLOAD_FREQUENCY | null;
140
149
  }
150
+ export declare type EmqRawData = Pick<EmqDataPoint, 'qualityData' | 'matchKeyData' | 'diagnostics' | 'dedupeKeyData'>;
141
151
  export interface EmqQueryInput {
142
152
  pixelId: string;
143
153
  dateRange: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adtrackify/at-tracking-event-types",
3
- "version": "4.6.6",
3
+ "version": "4.6.8",
4
4
  "description": "",
5
5
  "files": [
6
6
  "dist/*"