@adtrackify/at-tracking-event-types 4.17.8 → 4.17.9
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.
|
@@ -67,12 +67,18 @@ export declare enum COST_SYNC_ACTION {
|
|
|
67
67
|
UPSERT = "UPSERT",
|
|
68
68
|
DELETE = "DELETE"
|
|
69
69
|
}
|
|
70
|
+
export interface CostSyncMessageMetadata {
|
|
71
|
+
firstSeen: string;
|
|
72
|
+
lastSeen: string;
|
|
73
|
+
numSeen: number;
|
|
74
|
+
}
|
|
70
75
|
export interface CostSyncMessage {
|
|
71
76
|
action: COST_SYNC_ACTION;
|
|
72
77
|
pixelId: string;
|
|
73
78
|
env: string;
|
|
74
79
|
pk: string;
|
|
75
80
|
record?: CostRecord;
|
|
81
|
+
messageMetadata?: CostSyncMessageMetadata;
|
|
76
82
|
}
|
|
77
83
|
export interface CostHistoryPeriod {
|
|
78
84
|
effectiveStartDate: string;
|
|
@@ -85,6 +91,7 @@ export interface OrdersCostRecalcMessage {
|
|
|
85
91
|
variantId: string;
|
|
86
92
|
productId: string;
|
|
87
93
|
costHistory: CostHistoryPeriod[];
|
|
94
|
+
messageMetadata?: CostSyncMessageMetadata;
|
|
88
95
|
}
|
|
89
96
|
export interface GenericCostRecord {
|
|
90
97
|
pk: string;
|
|
@@ -67,12 +67,18 @@ export declare enum COST_SYNC_ACTION {
|
|
|
67
67
|
UPSERT = "UPSERT",
|
|
68
68
|
DELETE = "DELETE"
|
|
69
69
|
}
|
|
70
|
+
export interface CostSyncMessageMetadata {
|
|
71
|
+
firstSeen: string;
|
|
72
|
+
lastSeen: string;
|
|
73
|
+
numSeen: number;
|
|
74
|
+
}
|
|
70
75
|
export interface CostSyncMessage {
|
|
71
76
|
action: COST_SYNC_ACTION;
|
|
72
77
|
pixelId: string;
|
|
73
78
|
env: string;
|
|
74
79
|
pk: string;
|
|
75
80
|
record?: CostRecord;
|
|
81
|
+
messageMetadata?: CostSyncMessageMetadata;
|
|
76
82
|
}
|
|
77
83
|
export interface CostHistoryPeriod {
|
|
78
84
|
effectiveStartDate: string;
|
|
@@ -85,6 +91,7 @@ export interface OrdersCostRecalcMessage {
|
|
|
85
91
|
variantId: string;
|
|
86
92
|
productId: string;
|
|
87
93
|
costHistory: CostHistoryPeriod[];
|
|
94
|
+
messageMetadata?: CostSyncMessageMetadata;
|
|
88
95
|
}
|
|
89
96
|
export interface GenericCostRecord {
|
|
90
97
|
pk: string;
|