posthog-js 1.155.2 → 1.155.4
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/array.full.js +1 -1
- package/dist/array.full.js.map +1 -1
- package/dist/array.js +1 -1
- package/dist/array.js.map +1 -1
- package/dist/lib/src/posthog-core.d.ts +2 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/module.d.ts +2 -1
- package/dist/module.js +1 -1
- package/dist/module.js.map +1 -1
- package/lib/package.json +1 -1
- package/lib/src/posthog-core.d.ts +2 -1
- package/lib/src/posthog-core.js +3 -1
- package/lib/src/posthog-core.js.map +1 -1
- package/package.json +1 -1
package/dist/module.d.ts
CHANGED
|
@@ -1729,6 +1729,7 @@ declare class PostHog {
|
|
|
1729
1729
|
__request_queue: QueuedRequestOptions[];
|
|
1730
1730
|
decideEndpointWasHit: boolean;
|
|
1731
1731
|
analyticsDefaultEndpoint: string;
|
|
1732
|
+
version: string;
|
|
1732
1733
|
SentryIntegration: typeof SentryIntegration;
|
|
1733
1734
|
sentryIntegration: (options?: SentryIntegrationOptions) => ReturnType<typeof sentryIntegration>;
|
|
1734
1735
|
private _internalEventEmitter;
|
|
@@ -1810,7 +1811,7 @@ declare class PostHog {
|
|
|
1810
1811
|
*/
|
|
1811
1812
|
capture(event_name: string, properties?: Properties | null, options?: CaptureOptions): CaptureResult | void;
|
|
1812
1813
|
_addCaptureHook(callback: (eventName: string, eventPayload?: CaptureResult) => void): void;
|
|
1813
|
-
_calculate_event_properties(event_name: string, event_properties: Properties, timestamp
|
|
1814
|
+
_calculate_event_properties(event_name: string, event_properties: Properties, timestamp?: Date): Properties;
|
|
1814
1815
|
_calculate_set_once_properties(dataSetOnce?: Properties): Properties | undefined;
|
|
1815
1816
|
/**
|
|
1816
1817
|
* Register a set of super properties, which are included with all
|