posthog-js 1.136.2 → 1.136.3
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/es.js +1 -1
- package/dist/es.js.map +1 -1
- package/dist/lib/src/posthog-core.d.ts +1 -1
- package/dist/module.d.ts +1 -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 +1 -1
- package/lib/src/posthog-core.js +12 -11
- package/lib/src/posthog-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -135,7 +135,7 @@ export declare class PostHog {
|
|
|
135
135
|
*/
|
|
136
136
|
capture(event_name: string, properties?: Properties | null, options?: CaptureOptions): CaptureResult | void;
|
|
137
137
|
_addCaptureHook(callback: (eventName: string) => void): void;
|
|
138
|
-
_calculate_event_properties(event_name: string, event_properties: Properties): Properties;
|
|
138
|
+
_calculate_event_properties(event_name: string, event_properties: Properties, options?: CaptureOptions): Properties;
|
|
139
139
|
_calculate_set_once_properties(dataSetOnce?: Properties): Properties | undefined;
|
|
140
140
|
/**
|
|
141
141
|
* Register a set of super properties, which are included with all
|
package/dist/module.d.ts
CHANGED
|
@@ -1516,7 +1516,7 @@ declare class PostHog {
|
|
|
1516
1516
|
*/
|
|
1517
1517
|
capture(event_name: string, properties?: Properties | null, options?: CaptureOptions): CaptureResult | void;
|
|
1518
1518
|
_addCaptureHook(callback: (eventName: string) => void): void;
|
|
1519
|
-
_calculate_event_properties(event_name: string, event_properties: Properties): Properties;
|
|
1519
|
+
_calculate_event_properties(event_name: string, event_properties: Properties, options?: CaptureOptions): Properties;
|
|
1520
1520
|
_calculate_set_once_properties(dataSetOnce?: Properties): Properties | undefined;
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Register a set of super properties, which are included with all
|