@contractspec/lib.contracts 1.61.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 +22 -10
|
@@ -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: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.contracts",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.62.0",
|
|
4
4
|
"description": "Core contract specification definitions and runtime",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -27,22 +27,22 @@
|
|
|
27
27
|
"typecheck": "tsc --noEmit"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@contractspec/tool.typescript": "1.
|
|
30
|
+
"@contractspec/tool.typescript": "1.62.0",
|
|
31
31
|
"@types/express": "^5.0.3",
|
|
32
32
|
"@types/turndown": "^5.0.6",
|
|
33
33
|
"typescript": "^5.9.3",
|
|
34
34
|
"vitest": "^4.0.18",
|
|
35
|
-
"@contractspec/tool.bun": "1.
|
|
35
|
+
"@contractspec/tool.bun": "1.61.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
39
|
-
"@aws-sdk/client-sqs": "^3.
|
|
40
|
-
"@contractspec/lib.logger": "1.
|
|
41
|
-
"@contractspec/lib.schema": "1.
|
|
42
|
-
"@elevenlabs/elevenlabs-js": "^2.
|
|
38
|
+
"@aws-sdk/client-secrets-manager": "^3.988.0",
|
|
39
|
+
"@aws-sdk/client-sqs": "^3.988.0",
|
|
40
|
+
"@contractspec/lib.logger": "1.62.0",
|
|
41
|
+
"@contractspec/lib.schema": "1.62.0",
|
|
42
|
+
"@elevenlabs/elevenlabs-js": "^2.35.0",
|
|
43
43
|
"@google-cloud/secret-manager": "^6.1.1",
|
|
44
44
|
"@google-cloud/storage": "^7.19.0",
|
|
45
|
-
"@linear/sdk": "^
|
|
45
|
+
"@linear/sdk": "^75.0.0",
|
|
46
46
|
"@mistralai/mistralai": "^1.14.0",
|
|
47
47
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
48
48
|
"@notionhq/client": "^5.9.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"peerDependencies": {
|
|
68
68
|
"@pothos/core": "^4.9.1",
|
|
69
69
|
"@pothos/plugin-relay": "^4.7.0",
|
|
70
|
-
"elysia": "^1.4.
|
|
70
|
+
"elysia": "^1.4.24",
|
|
71
71
|
"express": "^5.2.1",
|
|
72
72
|
"graphql-scalars": "^1.24.2",
|
|
73
73
|
"next": "16.1.6",
|
|
@@ -1219,6 +1219,12 @@
|
|
|
1219
1219
|
"node": "./dist/node/integrations/providers/posthog.js",
|
|
1220
1220
|
"default": "./dist/integrations/providers/posthog.js"
|
|
1221
1221
|
},
|
|
1222
|
+
"./integrations/providers/posthog-llm-telemetry": {
|
|
1223
|
+
"types": "./dist/integrations/providers/posthog-llm-telemetry.d.ts",
|
|
1224
|
+
"bun": "./dist/integrations/providers/posthog-llm-telemetry.js",
|
|
1225
|
+
"node": "./dist/node/integrations/providers/posthog-llm-telemetry.js",
|
|
1226
|
+
"default": "./dist/integrations/providers/posthog-llm-telemetry.js"
|
|
1227
|
+
},
|
|
1222
1228
|
"./integrations/providers/postmark": {
|
|
1223
1229
|
"types": "./dist/integrations/providers/postmark.d.ts",
|
|
1224
1230
|
"bun": "./dist/integrations/providers/postmark.js",
|
|
@@ -3551,6 +3557,12 @@
|
|
|
3551
3557
|
"node": "./dist/node/integrations/providers/posthog.js",
|
|
3552
3558
|
"default": "./dist/integrations/providers/posthog.js"
|
|
3553
3559
|
},
|
|
3560
|
+
"./integrations/providers/posthog-llm-telemetry": {
|
|
3561
|
+
"types": "./dist/integrations/providers/posthog-llm-telemetry.d.ts",
|
|
3562
|
+
"bun": "./dist/integrations/providers/posthog-llm-telemetry.js",
|
|
3563
|
+
"node": "./dist/node/integrations/providers/posthog-llm-telemetry.js",
|
|
3564
|
+
"default": "./dist/integrations/providers/posthog-llm-telemetry.js"
|
|
3565
|
+
},
|
|
3554
3566
|
"./integrations/providers/postmark": {
|
|
3555
3567
|
"types": "./dist/integrations/providers/postmark.d.ts",
|
|
3556
3568
|
"bun": "./dist/integrations/providers/postmark.js",
|