You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1007 B
26 lines
1007 B
|
2 weeks ago
|
export * from './extensions/sentry-integration'
|
||
|
|
export * from './extensions/express'
|
||
|
|
export * from './types'
|
||
|
|
|
||
|
|
export { FeatureFlagEvaluations } from './feature-flag-evaluations'
|
||
|
|
export type { FlagDefinitionCacheData, FlagDefinitionCacheProvider } from './extensions/feature-flags/cache'
|
||
|
|
|
||
|
|
// Re-export FeatureFlagError from core for backwards compatibility.
|
||
|
|
// These were originally defined in posthog-node and moved to core for reuse across SDKs.
|
||
|
|
export { FeatureFlagError } from '@posthog/core'
|
||
|
|
export type { FeatureFlagErrorType } from '@posthog/core'
|
||
|
|
|
||
|
|
// Identity helpers re-exported from core for posthog-node consumers managing
|
||
|
|
// distinct_id outside the browser SDK (e.g. Lambda functions handing out
|
||
|
|
// `download-app` redirects). Closes #2143.
|
||
|
|
export {
|
||
|
|
cookieStateToProperties,
|
||
|
|
cookieStoreFromHeader,
|
||
|
|
getPostHogCookieName,
|
||
|
|
parsePostHogCookie,
|
||
|
|
readPostHogCookie,
|
||
|
|
serializePostHogCookie,
|
||
|
|
uuidv7,
|
||
|
|
} from '@posthog/core'
|
||
|
|
export type { CookieStore, PostHogCookieState } from '@posthog/core'
|