@exulu/backend 0.3.12 → 1.2.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/package.json CHANGED
@@ -1,90 +1,100 @@
1
1
  {
2
- "name": "@exulu/backend",
3
- "author": "Qventu Bv.",
4
- "version": "0.3.12",
5
- "main": "./dist/index.js",
6
- "private": false,
7
- "publishConfig": {
8
- "access": "restricted"
9
- },
10
- "module": "./dist/index.mjs",
11
- "types": "./dist/index.d.ts",
12
- "homepage": "https://exulu.com",
13
- "engines": {
14
- "node": "20.10.0"
15
- },
16
- "repository": {
17
- "type": "git",
18
- "url": "https://github.com/Qventu/exulu-backend"
19
- },
20
- "scripts": {
21
- "build": "tsup",
22
- "dev": "npm link && tsup --watch"
23
- },
24
- "keywords": [
25
- "exulu"
26
- ],
27
- "type": "module",
28
- "devDependencies": {
29
- "@types/bun": "latest",
30
- "@types/node": "^22.14.0",
31
- "@types/pg": "^8.15.1",
32
- "tsup": "^8.5.0",
33
- "tsx": "^4.19.3"
34
- },
35
- "peerDependencies": {
36
- "typescript": "^5.8.3"
37
- },
38
- "dependencies": {
39
- "@ai-sdk/anthropic": "^1.2.12",
40
- "@anthropic-ai/sdk": "^0.56.0",
41
- "@as-integrations/express5": "^1.0.0",
42
- "@aws-sdk/client-s3": "^3.338.0",
43
- "@aws-sdk/client-sts": "^3.338.0",
44
- "@aws-sdk/s3-request-presigner": "^3.338.0",
45
- "@inkjs/ui": "^2.0.0",
46
- "@modelcontextprotocol/sdk": "^1.14.0",
47
- "@panva/hkdf": "^1.2.1",
48
- "@types/bcrypt": "^5.0.2",
49
- "@types/cors": "^2.8.18",
50
- "@types/express": "^5.0.1",
51
- "@types/graphql-type-json": "^0.3.5",
52
- "@types/multer": "^1.4.12",
53
- "ai": "^4.3.9",
54
- "apollo-server": "^3.13.0",
55
- "bcryptjs": "^3.0.2",
56
- "body-parser": "^2.2.0",
57
- "bullmq": "^5.48.1",
58
- "class-validator": "^0.14.2",
59
- "cors": "^2.8.5",
60
- "csv-parse": "^5.6.0",
61
- "dotenv": "^16.5.0",
62
- "express": "^5.1.0",
63
- "fullscreen-ink": "^0.0.2",
64
- "graphql": "^16.11.0",
65
- "graphql-tools": "^9.0.18",
66
- "graphql-type-json": "^0.3.2",
67
- "http-proxy-middleware": "^3.0.5",
68
- "ink": "^6.0.0",
69
- "ink-big-text": "^2.0.0",
70
- "ink-gradient": "^3.0.0",
71
- "ink-select-input": "^6.2.0",
72
- "ink-table": "^3.1.0",
73
- "jose": "^6.0.10",
74
- "jsonwebtoken": "^9.0.2",
75
- "knex": "^3.1.0",
76
- "multer": "^1.4.5-lts.2",
77
- "openai": "^4.94.0",
78
- "papaparse": "^5.5.2",
79
- "pg": "^8.16.3",
80
- "pgvector": "^0.2.0",
81
- "redis": "^4.7.0",
82
- "reflect-metadata": "^0.2.2",
83
- "tiktoken": "^1.0.21",
84
- "type-graphql": "^2.0.0-rc.2",
85
- "uninstall": "^0.0.0",
86
- "uuid": "^11.1.0",
87
- "zod": "^3.24.2",
88
- "zodex": "^0.18.2"
89
- }
2
+ "name": "@exulu/backend",
3
+ "author": "Qventu Bv.",
4
+ "version": "1.2.0",
5
+ "main": "./dist/index.js",
6
+ "private": false,
7
+ "publishConfig": {
8
+ "access": "restricted"
9
+ },
10
+ "module": "./dist/index.mjs",
11
+ "types": "./dist/index.d.ts",
12
+ "homepage": "https://exulu.com",
13
+ "engines": {
14
+ "node": "20.10.0"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/Qventu/exulu-backend"
19
+ },
20
+ "scripts": {
21
+ "build": "tsup",
22
+ "dev": "npm link && tsup --watch",
23
+ "prepare": "husky",
24
+ "semantic-release": "semantic-release"
25
+ },
26
+ "keywords": [
27
+ "exulu"
28
+ ],
29
+ "type": "module",
30
+ "devDependencies": {
31
+ "@commitlint/cli": "^19.8.1",
32
+ "@commitlint/config-conventional": "^19.8.1",
33
+ "@semantic-release/changelog": "^6.0.3",
34
+ "semantic-release": "^24.2.7",
35
+ "@types/bun": "latest",
36
+ "@types/node": "^22.14.0",
37
+ "@types/pg": "^8.15.1",
38
+ "conventional-changelog-atom": "^5.0.0",
39
+ "husky": "^9.1.7",
40
+ "tsup": "^8.5.0",
41
+ "tsx": "^4.19.3"
42
+ },
43
+ "peerDependencies": {
44
+ "typescript": "^5.8.3"
45
+ },
46
+ "dependencies": {
47
+ "@ai-sdk/anthropic": "^1.2.12",
48
+ "@anthropic-ai/sdk": "^0.56.0",
49
+ "@as-integrations/express5": "^1.0.0",
50
+ "@aws-sdk/client-s3": "^3.338.0",
51
+ "@aws-sdk/client-sts": "^3.338.0",
52
+ "@aws-sdk/s3-request-presigner": "^3.338.0",
53
+ "@browserbasehq/sdk": "^2.6.0",
54
+ "@browserbasehq/stagehand": "^2.4.1",
55
+ "@inkjs/ui": "^2.0.0",
56
+ "@modelcontextprotocol/sdk": "^1.14.0",
57
+ "@types/bcrypt": "^5.0.2",
58
+ "@types/cors": "^2.8.18",
59
+ "@types/express": "^5.0.1",
60
+ "@types/graphql-type-json": "^0.3.5",
61
+ "@types/multer": "^1.4.12",
62
+ "ai": "^4.3.9",
63
+ "apollo-server": "^3.13.0",
64
+ "bcryptjs": "^3.0.2",
65
+ "body-parser": "^2.2.0",
66
+ "bullmq": "^5.48.1",
67
+ "class-validator": "^0.14.2",
68
+ "cors": "^2.8.5",
69
+ "crypto-js": "^4.2.0",
70
+ "csv-parse": "^5.6.0",
71
+ "dotenv": "^16.5.0",
72
+ "express": "^5.1.0",
73
+ "fullscreen-ink": "^0.0.2",
74
+ "graphql": "^16.11.0",
75
+ "graphql-tools": "^9.0.18",
76
+ "graphql-type-json": "^0.3.2",
77
+ "http-proxy-middleware": "^3.0.5",
78
+ "ink": "^6.0.0",
79
+ "ink-big-text": "^2.0.0",
80
+ "ink-gradient": "^3.0.0",
81
+ "ink-select-input": "^6.2.0",
82
+ "ink-table": "^3.1.0",
83
+ "jose": "^6.0.10",
84
+ "jsonwebtoken": "^9.0.2",
85
+ "knex": "^3.1.0",
86
+ "multer": "^1.4.5-lts.2",
87
+ "openai": "^4.94.0",
88
+ "papaparse": "^5.5.2",
89
+ "pg": "^8.16.3",
90
+ "pgvector": "^0.2.0",
91
+ "redis": "^4.7.0",
92
+ "reflect-metadata": "^0.2.2",
93
+ "tiktoken": "^1.0.21",
94
+ "type-graphql": "^2.0.0-rc.2",
95
+ "uninstall": "^0.0.0",
96
+ "uuid": "^11.1.0",
97
+ "zod": "^3.24.2",
98
+ "zodex": "^0.18.2"
99
+ }
90
100
  }
@@ -0,0 +1,9 @@
1
+ module.exports = {
2
+ branches: ['main', { name: 'next', prerelease: true }],
3
+ plugins: [
4
+ '@semantic-release/commit-analyzer',
5
+ '@semantic-release/release-notes-generator',
6
+ '@semantic-release/changelog',
7
+ '@semantic-release/npm'
8
+ ],
9
+ }
@@ -3,6 +3,7 @@ export type User = {
3
3
  email: string;
4
4
  emailVerified?: string;
5
5
  type?: "api" | "user"
6
+ anthropic_token?: string;
6
7
  roles?: {
7
8
  id: string;
8
9
  role: string;
@@ -1,43 +0,0 @@
1
- ---
2
- convention:
3
- commitTypes:
4
- - feat
5
- - fix
6
- - perf
7
- - refactor
8
- - style
9
- - test
10
- - build
11
- - ops
12
- - docs
13
- - chore
14
- - merge
15
- - revert
16
- commitScopes: []
17
- releaseTagGlobPattern: v[0-9]*.[0-9]*.[0-9]*
18
- changelog:
19
- commitTypes:
20
- - feat
21
- - fix
22
- - perf
23
- - merge
24
- includeInvalidCommits: true
25
- commitIgnoreRegexPattern: "^WIP "
26
- headlines:
27
- feat: Features
28
- fix: Bug Fixes
29
- perf: Performance Improvements
30
- merge: Merges
31
- breakingChange: BREAKING CHANGES
32
-
33
- ## GitHub
34
- # commitUrl: https://github.com/ACCOUNT/REPOSITORY/commit/%commit%
35
- # commitRangeUrl: https://github.com/ACCOUNT/REPOSITORY/compare/%from%...%to%?diff=split
36
-
37
- ## GitHub Issues
38
- # issueRegexPattern: "#[0-9]+"
39
- # issueUrl: https://github.com/ACCOUNT/REPOSITORY/issues/%issue%
40
-
41
- ## Jira Issues
42
- # issueRegexPattern: "[A-Z][A-Z0-9]+-[0-9]+"
43
- # issueUrl: https://WORKSPACE.atlassian.net/browse/%issue%
@@ -1,15 +0,0 @@
1
-
2
- // Represents an embedder backend
3
- // which is created and run in
4
- // the agents service. Embedders
5
- // registered in Exulu must have
6
- // a connected backend that
7
- // does the actual work.
8
-
9
- export interface EmbedderBackend {
10
- id: string
11
- name: string
12
- slug: string
13
- supported: string
14
- description: string
15
- }