@jitsu/protocols 1.9.14 → 1.9.17
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/functions.d.ts +10 -0
- package/package.json +1 -1
package/functions.d.ts
CHANGED
|
@@ -165,9 +165,19 @@ export type EventContext = {
|
|
|
165
165
|
mode?: string;
|
|
166
166
|
options?: any;
|
|
167
167
|
};
|
|
168
|
+
// available in Profile Builder transformations
|
|
169
|
+
allConnections?: {
|
|
170
|
+
id: string;
|
|
171
|
+
destinationId: string;
|
|
172
|
+
destinationName: string;
|
|
173
|
+
type: string;
|
|
174
|
+
mode: string;
|
|
175
|
+
}[];
|
|
168
176
|
workspace: {
|
|
169
177
|
id: string;
|
|
170
178
|
};
|
|
179
|
+
// original receivedAt as it stamped by the ingest service;
|
|
180
|
+
receivedAt: Date;
|
|
171
181
|
// number of retries attempted
|
|
172
182
|
retries?: number;
|
|
173
183
|
};
|