@auto-engineer/ai-gateway 0.8.3 → 0.8.4

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @auto-engineer/ai-gateway@0.8.3 build /home/runner/work/auto-engineer/auto-engineer/packages/ai-gateway
2
+ > @auto-engineer/ai-gateway@0.8.4 build /home/runner/work/auto-engineer/auto-engineer/packages/ai-gateway
3
3
  > tsc && tsx ../../scripts/fix-esm-imports.ts
4
4
 
5
5
  Fixed ESM imports in dist/
@@ -1,17 +1,17 @@
1
1
 
2
- > @auto-engineer/ai-gateway@0.8.3 test /home/runner/work/auto-engineer/auto-engineer/packages/ai-gateway
2
+ > @auto-engineer/ai-gateway@0.8.4 test /home/runner/work/auto-engineer/auto-engineer/packages/ai-gateway
3
3
  > vitest run --reporter=dot
4
4
 
5
5
 
6
6
   RUN  v3.2.4 /home/runner/work/auto-engineer/auto-engineer/packages/ai-gateway
7
7
 
8
- ························stdout | cleanup (/home/runner/work/auto-engineer/auto-engineer/packages/ai-gateway/src/mcp-server.ts:58:11)
8
+ ·······························stdout | cleanup (/home/runner/work/auto-engineer/auto-engineer/packages/ai-gateway/src/mcp-server.ts:58:11)
9
9
  Cleaning up...
10
10
 
11
- ···················
11
+ ············
12
12
 
13
13
   Test Files  4 passed (4)
14
14
   Tests  43 passed (43)
15
-  Start at  12:13:16
16
-  Duration  3.83s (transform 1.50s, setup 0ms, collect 4.42s, tests 358ms, environment 1ms, prepare 1.97s)
15
+  Start at  13:01:26
16
+  Duration  4.22s (transform 1.91s, setup 0ms, collect 6.03s, tests 368ms, environment 1ms, prepare 2.25s)
17
17
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @auto-engineer/ai-gateway@0.8.3 type-check /home/runner/work/auto-engineer/auto-engineer/packages/ai-gateway
2
+ > @auto-engineer/ai-gateway@0.8.4 type-check /home/runner/work/auto-engineer/auto-engineer/packages/ai-gateway
3
3
  > tsc --noEmit
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @auto-engineer/ai-gateway
2
2
 
3
+ ## 0.8.4
4
+
5
+ ### Patch Changes
6
+
7
+ - bump version up
8
+
3
9
  ## 0.8.3
4
10
 
5
11
  ## 0.8.2
package/LICENSE ADDED
@@ -0,0 +1,10 @@
1
+ Elastic License 2.0
2
+
3
+ Copyright 2024 Sam Hatoum
4
+
5
+ This software and associated documentation files (the "Software") are licensed under the Elastic License 2.0 (the "License"). You may not use this file except in compliance with the License.
6
+
7
+ You may obtain a copy of the License at:
8
+ https://www.elastic.co/licensing/elastic-license
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
package/package.json CHANGED
@@ -3,19 +3,6 @@
3
3
  "type": "module",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
- "scripts": {
7
- "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
8
- "dev": "tsc --watch",
9
- "test": "vitest run --reporter=dot",
10
- "lint": "eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts",
11
- "lint:fix": "eslint 'src/**/*.ts' --fix --config ../../eslint.config.ts",
12
- "type-check": "tsc --noEmit",
13
- "format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
14
- "format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
15
- "link:dev": "pnpm build && pnpm link --global",
16
- "unlink:dev": "pnpm unlink --global",
17
- "prepublishOnly": "npm run build"
18
- },
19
6
  "dependencies": {
20
7
  "@ai-sdk/anthropic": "^1.2.12",
21
8
  "@ai-sdk/google": "^1.2.19",
@@ -30,5 +17,17 @@
30
17
  "publishConfig": {
31
18
  "access": "public"
32
19
  },
33
- "version": "0.8.3"
34
- }
20
+ "version": "0.8.4",
21
+ "scripts": {
22
+ "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
23
+ "dev": "tsc --watch",
24
+ "test": "vitest run --reporter=dot",
25
+ "lint": "eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts",
26
+ "lint:fix": "eslint 'src/**/*.ts' --fix --config ../../eslint.config.ts",
27
+ "type-check": "tsc --noEmit",
28
+ "format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
29
+ "format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
30
+ "link:dev": "pnpm build && pnpm link --global",
31
+ "unlink:dev": "pnpm unlink --global"
32
+ }
33
+ }