@contractspec/lib.contracts 1.60.0 → 1.62.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/dist/index.js +179 -4
- package/dist/integrations/index.js +179 -4
- package/dist/integrations/providers/index.d.ts +1 -0
- package/dist/integrations/providers/index.d.ts.map +1 -1
- package/dist/integrations/providers/index.js +180 -5
- package/dist/integrations/providers/posthog-llm-telemetry.d.ts +52 -0
- package/dist/integrations/providers/posthog-llm-telemetry.d.ts.map +1 -0
- package/dist/integrations/providers/posthog-llm-telemetry.js +241 -0
- package/dist/integrations/providers/posthog.d.ts.map +1 -1
- package/dist/integrations/providers/posthog.js +6 -4
- package/dist/integrations/providers/registry.js +6 -4
- package/dist/node/index.js +179 -4
- package/dist/node/integrations/index.js +179 -4
- package/dist/node/integrations/providers/index.js +180 -5
- package/dist/node/integrations/providers/posthog-llm-telemetry.js +241 -0
- package/dist/node/integrations/providers/posthog.js +6 -4
- package/dist/node/integrations/providers/registry.js +6 -4
- package/package.json +798 -786
|
@@ -266,13 +266,13 @@ var defineIntegration = (spec) => spec;
|
|
|
266
266
|
var posthogIntegrationSpec = defineIntegration({
|
|
267
267
|
meta: {
|
|
268
268
|
key: "analytics.posthog",
|
|
269
|
-
version: "1.
|
|
269
|
+
version: "1.1.0",
|
|
270
270
|
category: "analytics",
|
|
271
271
|
title: "PostHog",
|
|
272
|
-
description: "PostHog integration for product analytics, feature flags, and
|
|
272
|
+
description: "PostHog integration for product analytics, feature flags, HogQL queries, and LLM analytics with evaluations.",
|
|
273
273
|
domain: "analytics",
|
|
274
274
|
owners: ["@platform.integrations"],
|
|
275
|
-
tags: ["analytics", "posthog"],
|
|
275
|
+
tags: ["analytics", "posthog", "llm", "ai"],
|
|
276
276
|
stability: StabilityEnum.Beta
|
|
277
277
|
},
|
|
278
278
|
supportedModes: ["managed", "byok"],
|
|
@@ -285,7 +285,9 @@ var posthogIntegrationSpec = defineIntegration({
|
|
|
285
285
|
{ key: "analytics.persons", version: "1.0.0" },
|
|
286
286
|
{ key: "analytics.insights", version: "1.0.0" },
|
|
287
287
|
{ key: "analytics.cohorts", version: "1.0.0" },
|
|
288
|
-
{ key: "analytics.annotations", version: "1.0.0" }
|
|
288
|
+
{ key: "analytics.annotations", version: "1.0.0" },
|
|
289
|
+
{ key: "analytics.llm-tracing", version: "1.0.0" },
|
|
290
|
+
{ key: "analytics.llm-evaluations", version: "1.0.0" }
|
|
289
291
|
]
|
|
290
292
|
},
|
|
291
293
|
configSchema: {
|
|
@@ -1371,13 +1371,13 @@ function registerPowensIntegration(registry) {
|
|
|
1371
1371
|
var posthogIntegrationSpec = defineIntegration({
|
|
1372
1372
|
meta: {
|
|
1373
1373
|
key: "analytics.posthog",
|
|
1374
|
-
version: "1.
|
|
1374
|
+
version: "1.1.0",
|
|
1375
1375
|
category: "analytics",
|
|
1376
1376
|
title: "PostHog",
|
|
1377
|
-
description: "PostHog integration for product analytics, feature flags, and
|
|
1377
|
+
description: "PostHog integration for product analytics, feature flags, HogQL queries, and LLM analytics with evaluations.",
|
|
1378
1378
|
domain: "analytics",
|
|
1379
1379
|
owners: ["@platform.integrations"],
|
|
1380
|
-
tags: ["analytics", "posthog"],
|
|
1380
|
+
tags: ["analytics", "posthog", "llm", "ai"],
|
|
1381
1381
|
stability: StabilityEnum.Beta
|
|
1382
1382
|
},
|
|
1383
1383
|
supportedModes: ["managed", "byok"],
|
|
@@ -1390,7 +1390,9 @@ var posthogIntegrationSpec = defineIntegration({
|
|
|
1390
1390
|
{ key: "analytics.persons", version: "1.0.0" },
|
|
1391
1391
|
{ key: "analytics.insights", version: "1.0.0" },
|
|
1392
1392
|
{ key: "analytics.cohorts", version: "1.0.0" },
|
|
1393
|
-
{ key: "analytics.annotations", version: "1.0.0" }
|
|
1393
|
+
{ key: "analytics.annotations", version: "1.0.0" },
|
|
1394
|
+
{ key: "analytics.llm-tracing", version: "1.0.0" },
|
|
1395
|
+
{ key: "analytics.llm-evaluations", version: "1.0.0" }
|
|
1394
1396
|
]
|
|
1395
1397
|
},
|
|
1396
1398
|
configSchema: {
|