posthog-node 2.3.0 → 2.3.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/lib/index.cjs.js +1 -1
- package/lib/index.d.ts +1 -3
- package/lib/index.esm.js +1 -1
- package/lib/posthog-node/src/types.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.ts +1 -1
package/lib/index.cjs.js
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { JsonType as JsonType$1 } from 'posthog-core/src';
|
|
3
|
-
|
|
4
2
|
declare type PosthogCoreOptions = {
|
|
5
3
|
host?: string;
|
|
6
4
|
flushAt?: number;
|
|
@@ -174,7 +172,7 @@ declare type PostHogNodeV1 = {
|
|
|
174
172
|
*/
|
|
175
173
|
getFeatureFlagPayload(key: string, distinctId: string, matchValue?: string | boolean, options?: {
|
|
176
174
|
onlyEvaluateLocally?: boolean;
|
|
177
|
-
}): Promise<JsonType
|
|
175
|
+
}): Promise<JsonType | undefined>;
|
|
178
176
|
/**
|
|
179
177
|
* @description Sets a groups properties, which allows asking questions like "Who are the most active companies"
|
|
180
178
|
* using my product in PostHog.
|
package/lib/index.esm.js
CHANGED
package/package.json
CHANGED
package/src/types.ts
CHANGED