posthog-node 4.1.1 → 4.2.0
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/CHANGELOG.md +5 -0
- package/lib/index.cjs.js +6 -1
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +3 -0
- package/lib/index.esm.js +6 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/posthog-core/src/index.d.ts +1 -0
- package/lib/posthog-core/src/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -40,6 +40,8 @@ export declare type PostHogCoreOptions = {
|
|
|
40
40
|
/** Whether to post events to PostHog in JSON or compressed format. Defaults to 'form' */
|
|
41
41
|
captureMode?: 'json' | 'form';
|
|
42
42
|
disableGeoip?: boolean;
|
|
43
|
+
/** Special flag to indicate ingested data is for a historical migration. */
|
|
44
|
+
historicalMigration?: boolean;
|
|
43
45
|
};
|
|
44
46
|
export declare enum PostHogPersistedProperty {
|
|
45
47
|
AnonymousId = "anonymous_id",
|