We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e29cfca commit 529a256Copy full SHA for 529a256
packages/connectors/datalayer/src/types/index.ts
@@ -16,8 +16,13 @@ export interface Config {
16
processedEvents: Set<string>;
17
}
18
19
+export type SupportedMapping<CustomEvent = unknown> = Omit<
20
+ WalkerOSMapping.Event<CustomEvent>,
21
+ 'batch' | 'batchFn' | 'batched' | 'consent'
22
+>;
23
+
24
export interface Mapping {
- [event: string]: WalkerOSMapping.Event<Custom>;
25
+ [event: string]: SupportedMapping<Custom>;
26
27
28
export type Custom = EventMappingValues & EventMappingObjectValues;
0 commit comments