@shipfox/api-agent 4.0.0 → 5.0.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +18 -0
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +27 -61
- package/tsconfig.build.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/api-agent",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -13,62 +13,28 @@
|
|
|
13
13
|
"types": "dist/index.d.ts",
|
|
14
14
|
"imports": {
|
|
15
15
|
"#test/*": "./test/*",
|
|
16
|
-
"#*":
|
|
17
|
-
"workspace-source": "./src/*",
|
|
18
|
-
"development": "./src/*",
|
|
19
|
-
"default": "./dist/*"
|
|
20
|
-
}
|
|
16
|
+
"#*": "./dist/*"
|
|
21
17
|
},
|
|
22
18
|
"exports": {
|
|
23
19
|
".": {
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
"default": "./src/index.ts"
|
|
27
|
-
},
|
|
28
|
-
"default": {
|
|
29
|
-
"types": "./dist/index.d.ts",
|
|
30
|
-
"default": "./dist/index.js"
|
|
31
|
-
}
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"default": "./dist/index.js"
|
|
32
22
|
},
|
|
33
23
|
"./core/errors": {
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
"default": "./src/core/errors.ts"
|
|
37
|
-
},
|
|
38
|
-
"default": {
|
|
39
|
-
"types": "./dist/core/errors.d.ts",
|
|
40
|
-
"default": "./dist/core/errors.js"
|
|
41
|
-
}
|
|
24
|
+
"types": "./dist/core/errors.d.ts",
|
|
25
|
+
"default": "./dist/core/errors.js"
|
|
42
26
|
},
|
|
43
27
|
"./core/resolve-agent-config": {
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
"default": "./src/core/resolve-agent-config.ts"
|
|
47
|
-
},
|
|
48
|
-
"default": {
|
|
49
|
-
"types": "./dist/core/resolve-agent-config.d.ts",
|
|
50
|
-
"default": "./dist/core/resolve-agent-config.js"
|
|
51
|
-
}
|
|
28
|
+
"types": "./dist/core/resolve-agent-config.d.ts",
|
|
29
|
+
"default": "./dist/core/resolve-agent-config.js"
|
|
52
30
|
},
|
|
53
31
|
"./core/resolve-runtime-credentials": {
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
"default": "./src/core/resolve-runtime-credentials.ts"
|
|
57
|
-
},
|
|
58
|
-
"default": {
|
|
59
|
-
"types": "./dist/core/resolve-runtime-credentials.d.ts",
|
|
60
|
-
"default": "./dist/core/resolve-runtime-credentials.js"
|
|
61
|
-
}
|
|
32
|
+
"types": "./dist/core/resolve-runtime-credentials.d.ts",
|
|
33
|
+
"default": "./dist/core/resolve-runtime-credentials.js"
|
|
62
34
|
},
|
|
63
35
|
"./core/workspace-agent-defaults-resolver": {
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
"default": "./src/core/workspace-agent-defaults-resolver.ts"
|
|
67
|
-
},
|
|
68
|
-
"default": {
|
|
69
|
-
"types": "./dist/core/workspace-agent-defaults-resolver.d.ts",
|
|
70
|
-
"default": "./dist/core/workspace-agent-defaults-resolver.js"
|
|
71
|
-
}
|
|
36
|
+
"types": "./dist/core/workspace-agent-defaults-resolver.d.ts",
|
|
37
|
+
"default": "./dist/core/workspace-agent-defaults-resolver.js"
|
|
72
38
|
}
|
|
73
39
|
},
|
|
74
40
|
"dependencies": {
|
|
@@ -76,26 +42,26 @@
|
|
|
76
42
|
"@opentelemetry/api": "^1.9.1",
|
|
77
43
|
"drizzle-orm": "^0.45.2",
|
|
78
44
|
"zod": "^4.4.3",
|
|
79
|
-
"@shipfox/api-agent-dto": "
|
|
80
|
-
"@shipfox/api-auth-context": "
|
|
81
|
-
"@shipfox/api-secrets": "
|
|
82
|
-
"@shipfox/config": "1.2.
|
|
83
|
-
"@shipfox/node-drizzle": "0.3.
|
|
84
|
-
"@shipfox/node-egress-guard": "0.1.
|
|
85
|
-
"@shipfox/node-fastify": "0.2.
|
|
86
|
-
"@shipfox/node-module": "0.3.
|
|
87
|
-
"@shipfox/node-opentelemetry": "0.5.
|
|
88
|
-
"@shipfox/node-postgres": "0.4.
|
|
89
|
-
"@shipfox/redact": "0.2.
|
|
45
|
+
"@shipfox/api-agent-dto": "5.0.0",
|
|
46
|
+
"@shipfox/api-auth-context": "5.0.0",
|
|
47
|
+
"@shipfox/api-secrets": "5.0.0",
|
|
48
|
+
"@shipfox/config": "1.2.2",
|
|
49
|
+
"@shipfox/node-drizzle": "0.3.1",
|
|
50
|
+
"@shipfox/node-egress-guard": "0.1.1",
|
|
51
|
+
"@shipfox/node-fastify": "0.2.3",
|
|
52
|
+
"@shipfox/node-module": "0.3.2",
|
|
53
|
+
"@shipfox/node-opentelemetry": "0.5.2",
|
|
54
|
+
"@shipfox/node-postgres": "0.4.2",
|
|
55
|
+
"@shipfox/redact": "0.2.2"
|
|
90
56
|
},
|
|
91
57
|
"devDependencies": {
|
|
92
58
|
"@types/pg": "^8.15.5",
|
|
93
59
|
"drizzle-kit": "^0.31.10",
|
|
94
|
-
"@shipfox/biome": "1.8.
|
|
95
|
-
"@shipfox/swc": "1.2.
|
|
60
|
+
"@shipfox/biome": "1.8.2",
|
|
61
|
+
"@shipfox/swc": "1.2.6",
|
|
96
62
|
"@shipfox/ts-config": "1.3.8",
|
|
97
|
-
"@shipfox/typescript": "1.1.
|
|
98
|
-
"@shipfox/vitest": "1.2.
|
|
63
|
+
"@shipfox/typescript": "1.1.7",
|
|
64
|
+
"@shipfox/vitest": "1.2.3"
|
|
99
65
|
},
|
|
100
66
|
"scripts": {
|
|
101
67
|
"build": "shipfox-swc",
|