sitepong 0.2.0 → 0.2.1
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/dist/cdn/sitepong.min.js +5 -5
- package/dist/cdn/sitepong.min.js.map +1 -1
- package/dist/entries/node.d.mts +2 -2
- package/dist/entries/node.d.ts +2 -2
- package/dist/entries/rn.js +62 -6
- package/dist/entries/rn.js.map +1 -1
- package/dist/entries/web.d.mts +1 -1
- package/dist/entries/web.d.ts +1 -1
- package/dist/entries/web.js +72 -16
- package/dist/entries/web.js.map +1 -1
- package/dist/entries/web.mjs +72 -16
- package/dist/entries/web.mjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +69 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +69 -13
- package/dist/index.mjs.map +1 -1
- package/dist/nextjs/index.d.mts +2 -2
- package/dist/nextjs/index.d.ts +2 -2
- package/dist/react/index.d.mts +3 -3
- package/dist/react/index.d.ts +3 -3
- package/dist/react/index.js +69 -13
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +69 -13
- package/dist/react/index.mjs.map +1 -1
- package/dist/server/index.d.mts +3 -3
- package/dist/server/index.d.ts +3 -3
- package/dist/{types-DQSv7JAE.d.ts → types-BTA43eyz.d.ts} +1 -1
- package/dist/{types-Cms9VXx9.d.mts → types-CphqOTfm.d.mts} +1 -1
- package/dist/{types-BEqbz0tw.d.mts → types-DPINdOQW.d.mts} +2 -0
- package/dist/{types-BEqbz0tw.d.ts → types-DPINdOQW.d.ts} +2 -0
- package/package.json +1 -1
package/dist/server/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { B as Breadcrumb, S as SitePongConfig, C as CaptureContext, L as LogLevel } from '../types-
|
|
2
|
-
export { E as ErrorEvent } from '../types-
|
|
3
|
-
import '../types-
|
|
1
|
+
import { B as Breadcrumb, S as SitePongConfig, C as CaptureContext, L as LogLevel } from '../types-CphqOTfm.mjs';
|
|
2
|
+
export { E as ErrorEvent } from '../types-CphqOTfm.mjs';
|
|
3
|
+
import '../types-DPINdOQW.mjs';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Add a breadcrumb to the trail
|
package/dist/server/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { B as Breadcrumb, S as SitePongConfig, C as CaptureContext, L as LogLevel } from '../types-
|
|
2
|
-
export { E as ErrorEvent } from '../types-
|
|
3
|
-
import '../types-
|
|
1
|
+
import { B as Breadcrumb, S as SitePongConfig, C as CaptureContext, L as LogLevel } from '../types-BTA43eyz.js';
|
|
2
|
+
export { E as ErrorEvent } from '../types-BTA43eyz.js';
|
|
3
|
+
import '../types-DPINdOQW.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Add a breadcrumb to the trail
|
|
@@ -26,6 +26,8 @@ interface AnalyticsConfig {
|
|
|
26
26
|
flushInterval?: number;
|
|
27
27
|
eventsEndpoint?: string;
|
|
28
28
|
debug?: boolean;
|
|
29
|
+
/** Application version stamped on every event for funnels/segmentation */
|
|
30
|
+
appVersion?: string;
|
|
29
31
|
}
|
|
30
32
|
interface TrackProperties {
|
|
31
33
|
[key: string]: unknown;
|
|
@@ -26,6 +26,8 @@ interface AnalyticsConfig {
|
|
|
26
26
|
flushInterval?: number;
|
|
27
27
|
eventsEndpoint?: string;
|
|
28
28
|
debug?: boolean;
|
|
29
|
+
/** Application version stamped on every event for funnels/segmentation */
|
|
30
|
+
appVersion?: string;
|
|
29
31
|
}
|
|
30
32
|
interface TrackProperties {
|
|
31
33
|
[key: string]: unknown;
|