@posthog/convex 0.1.9 → 0.1.11

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/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "url": "https://github.com/PostHog/posthog-js/issues"
12
12
  },
13
13
  "author": "PostHog Inc.",
14
- "version": "0.1.9",
14
+ "version": "0.1.11",
15
15
  "license": "MIT",
16
16
  "keywords": [
17
17
  "convex",
@@ -48,8 +48,8 @@
48
48
  "types": "./dist/client/index.d.ts",
49
49
  "module": "./dist/client/index.js",
50
50
  "dependencies": {
51
- "@posthog/core": "1.23.3",
52
- "posthog-node": "5.28.1"
51
+ "@posthog/core": "1.23.4",
52
+ "posthog-node": "5.28.3"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@convex-dev/eslint-plugin": "^1.1.1",
@@ -155,7 +155,7 @@ describe('$-prefixed property serialization', () => {
155
155
  distinctId: 'user-1',
156
156
  event: '$ai_generation',
157
157
  properties: {
158
- $ai_model: 'gpt-4o-mini',
158
+ $ai_model: 'gpt-5-mini',
159
159
  $ai_provider: 'openai',
160
160
  $ai_input_tokens: 10,
161
161
  $ai_output_tokens: 20,
@@ -165,7 +165,7 @@ describe('$-prefixed property serialization', () => {
165
165
  const [, , args] = ctx.scheduler.runAfter.mock.calls[0]
166
166
  expect(typeof args.properties).toBe('string')
167
167
  expect(JSON.parse(args.properties)).toEqual({
168
- $ai_model: 'gpt-4o-mini',
168
+ $ai_model: 'gpt-5-mini',
169
169
  $ai_provider: 'openai',
170
170
  $ai_input_tokens: 10,
171
171
  $ai_output_tokens: 20,