@forge/llm 0.6.8-next.0-experimental-44b7a12 → 1.0.0-next.1
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/CHANGELOG.md +7 -4
- package/package.json +12 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
# @forge/llm
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 1.0.0-next.1
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 78fcb7f: Adds support for TypeScript 5
|
|
4
8
|
|
|
5
9
|
### Patch Changes
|
|
6
10
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
- @forge/api@8.0.0-next.1-experimental-44b7a12
|
|
11
|
+
- Updated dependencies [78fcb7f]
|
|
12
|
+
- @forge/api@8.0.0-next.2
|
|
10
13
|
|
|
11
14
|
## 0.6.8-next.0
|
|
12
15
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/llm",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-next.1",
|
|
4
4
|
"description": "Forge LLM SDK",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"types": "out/index.d.ts",
|
|
7
7
|
"author": "Atlassian",
|
|
8
8
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@forge/api": "^8.0.0-next.
|
|
10
|
+
"@forge/api": "^8.0.0-next.2"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@types/node": "20.19.1",
|
|
14
14
|
"expect-type": "^0.17.3",
|
|
15
|
-
"jest-when": "^3.6.0"
|
|
15
|
+
"jest-when": "^3.6.0",
|
|
16
|
+
"typescript": "5.9.2"
|
|
16
17
|
},
|
|
17
18
|
"scripts": {
|
|
18
19
|
"build": "yarn run clean && yarn run compile",
|
|
@@ -21,5 +22,13 @@
|
|
|
21
22
|
},
|
|
22
23
|
"publishConfig": {
|
|
23
24
|
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"typescript": ">=5.0.0"
|
|
28
|
+
},
|
|
29
|
+
"peerDependenciesMeta": {
|
|
30
|
+
"typescript": {
|
|
31
|
+
"optional": true
|
|
32
|
+
}
|
|
24
33
|
}
|
|
25
34
|
}
|