Skip to content

Commit e92a61c

Browse files
Merge branch 'langfuse:main' into main
2 parents 245f861 + 199bbcd commit e92a61c

File tree

16 files changed

+251
-99
lines changed

16 files changed

+251
-99
lines changed

fern/apis/server/definition/api.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
name: langfuse
2+
docs: |
3+
## Authentication
4+
Authenticate with the API using Basic Auth, get API keys in the project settings:
5+
6+
- username: Langfuse Public Key
7+
- password: Langfuse Secret Key
28
error-discrimination:
39
strategy: status-code
410
auth: basic

generated/openapi-server/openapi.yml

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ openapi: 3.0.1
22
info:
33
title: langfuse
44
version: ''
5+
description: >
6+
## Authentication
7+
8+
Authenticate with the API using Basic Auth, get API keys in the project
9+
settings:
10+
11+
12+
- username: Langfuse Public Key
13+
14+
- password: Langfuse Secret Key
515
paths:
616
/api/public/dataset-items:
717
post:

generated/postman/collection.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"info": {
33
"name": "Langfuse",
44
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
5-
"description": null
5+
"description": "## Authentication\nAuthenticate with the API using Basic Auth, get API keys in the project settings:\n\n- username: Langfuse Public Key\n- password: Langfuse Secret Key\n"
66
},
77
"variable": [
88
{

package-lock.json

+96-85
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "langfuse-core",
3-
"version": "1.23.0",
3+
"version": "1.24.1",
44
"private": true,
55
"scripts": {
66
"prebuild": "cp generated/openapi-client/openapi.yml public/openapi-client.yml && cp generated/openapi-server/openapi.yml public/openapi-server.yml",
@@ -54,7 +54,7 @@
5454
"@radix-ui/react-tooltip": "^1.0.7",
5555
"@react-email/components": "^0.0.12",
5656
"@react-email/render": "^0.0.10",
57-
"@sentry/nextjs": "^7.90.0",
57+
"@sentry/nextjs": "^7.91.0",
5858
"@sentry/profiling-node": "^1.3.2",
5959
"@sentry/types": "^7.88.0",
6060
"@t3-oss/env-nextjs": "^0.7.1",
@@ -73,13 +73,14 @@
7373
"class-variance-authority": "^0.7.0",
7474
"clsx": "^2.0.0",
7575
"cmdk": "^0.2.0",
76+
"core-js": "^3.34.0",
7677
"cors": "^2.8.5",
7778
"date-fns": "^2.30.0",
7879
"decimal.js": "^10.4.3",
7980
"exponential-backoff": "^3.1.1",
8081
"js-yaml": "^4.1.0",
8182
"lodash": "^4.17.21",
82-
"lucide-react": "^0.299.0",
83+
"lucide-react": "^0.300.0",
8384
"next": "^14.0.4",
8485
"next-auth": "^4.24.5",
8586
"next-query-params": "^5.0.0",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-- AlterTable
2+
ALTER TABLE "projects" ADD COLUMN "cloud_config" JSONB;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-- AlterTable
2+
ALTER TABLE "Account" ADD COLUMN "expires_in" INTEGER,
3+
ADD COLUMN "ext_expires_in" INTEGER;

0 commit comments

Comments
 (0)