Compare commits
2 Commits
b6e0830209
...
93e5c35d86
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
93e5c35d86 | ||
|
|
90a2063ad3 |
@@ -3,12 +3,12 @@
|
|||||||
import { dev } from '$app/environment';
|
import { dev } from '$app/environment';
|
||||||
import log from 'loglevel';
|
import log from 'loglevel';
|
||||||
|
|
||||||
export type * from './types/conversion.d.ts';
|
|
||||||
export type * as fbq from './types/fbq.d.ts';
|
export type * as fbq from './types/fbq.d.ts';
|
||||||
export * from './metapixel/index.ts';
|
export * from './metapixel/index.ts';
|
||||||
export * from './tracking.svelte.ts';
|
export * from './tracking.svelte.ts';
|
||||||
export { default as Umami } from './Umami.svelte';
|
export { default as Umami } from './Umami.svelte';
|
||||||
export * from './conversion/index.ts';
|
export * from './capi/index.ts';
|
||||||
|
export * from './util/ip.ts';
|
||||||
|
|
||||||
// set log level to debug if we're in dev mode
|
// set log level to debug if we're in dev mode
|
||||||
if (dev) {
|
if (dev) {
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ import { loadMetaPixel } from '../util/meta-pixel-loader.ts';
|
|||||||
import { resolveGetter, type MaybeGetter } from '../util/getter.ts';
|
import { resolveGetter, type MaybeGetter } from '../util/getter.ts';
|
||||||
import log from 'loglevel';
|
import log from 'loglevel';
|
||||||
import { dev } from '$app/environment';
|
import { dev } from '$app/environment';
|
||||||
import { CAPIClient } from '../conversion/client.ts';
|
import { CAPIClient } from '../capi/client.ts';
|
||||||
import { ActionSource, CAPIEvent, type CAPIStandardParams } from '../conversion/event.ts';
|
import { ActionSource, CAPIEvent, type CAPIStandardParams } from '../capi/event.ts';
|
||||||
|
|
||||||
const pixelParamsToCustomData = (params: CommonParams & CustomParams): CAPIStandardParams => {
|
const pixelParamsToCustomData = (params: CommonParams & CustomParams): CAPIStandardParams => {
|
||||||
const customData: CAPIStandardParams = {};
|
const customData: CAPIStandardParams = {};
|
||||||
|
|||||||
Reference in New Issue
Block a user