posthog-node 4.2.1 → 4.2.2
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 +4 -0
- package/lib/index.cjs.js +38 -23
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.esm.js +38 -23
- package/lib/index.esm.js.map +1 -1
- package/lib/posthog-core/src/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -17,7 +17,7 @@ export declare abstract class PostHogCoreStateless {
|
|
|
17
17
|
private removeDebugCallback?;
|
|
18
18
|
private disableGeoip;
|
|
19
19
|
private historicalMigration;
|
|
20
|
-
disabled: boolean;
|
|
20
|
+
protected disabled: boolean;
|
|
21
21
|
private defaultOptIn;
|
|
22
22
|
private pendingPromises;
|
|
23
23
|
protected _events: SimpleEventEmitter;
|
|
@@ -41,6 +41,7 @@ export declare abstract class PostHogCoreStateless {
|
|
|
41
41
|
on(event: string, cb: (...args: any[]) => void): () => void;
|
|
42
42
|
debug(enabled?: boolean): void;
|
|
43
43
|
get isDebug(): boolean;
|
|
44
|
+
get isDisabled(): boolean;
|
|
44
45
|
private buildPayload;
|
|
45
46
|
protected addPendingPromise<T>(promise: Promise<T>): Promise<T>;
|
|
46
47
|
/***
|