@osdk/aip-core 0.2.0 → 0.5.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/CHANGELOG.md +35 -0
- package/package.json +21 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @osdk/aip-core
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 86f6b19: Widen the `@osdk/language-models` peer dependency range to `>=0.6.0 <1.0.0` so that minor (0.x) bumps of `@osdk/language-models` no longer force a major version bump on `@osdk/aip-core`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [57cbc6d]
|
|
12
|
+
- @osdk/client@2.31.0
|
|
13
|
+
|
|
14
|
+
## 0.4.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 56c5630: Drop redundant `--config $(find-up dprint.json)` from `lint`, `fix-lint`, and `format` scripts. dprint already auto-discovers `dprint.json` by walking up from cwd; the substitution was a no-op anyway since `find-up` is an npm package, not a CLI. Also fix the `uploadMediaOntologyEdits` documentation example so its `// @ts-ignore` survives dprint reformatting (the broken `format` step had been masking this).
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [56c5630]
|
|
23
|
+
- Updated dependencies [17d7ba2]
|
|
24
|
+
- @osdk/client@2.16.0
|
|
25
|
+
- @osdk/language-models@0.6.0
|
|
26
|
+
|
|
27
|
+
## 0.3.0
|
|
28
|
+
|
|
29
|
+
### Minor Changes
|
|
30
|
+
|
|
31
|
+
- 72fcb52: mark `@osdk/aip-core` as private to unblock the release pipeline; the package isn't ready to ship to npm yet
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies [203331e]
|
|
36
|
+
- @osdk/client@2.15.0
|
|
37
|
+
|
|
3
38
|
## 0.2.0
|
|
4
39
|
|
|
5
40
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/aip-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Core building blocks for the AIP SDK: streaming chat completions, tool calling, and chat transports backed by the Foundry Language Model Service",
|
|
5
5
|
"access": "public",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,23 +37,10 @@
|
|
|
37
37
|
"default": "./build/browser/public/*.js"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"check-attw": "attw --pack .",
|
|
42
|
-
"check-spelling": "cspell --quiet .",
|
|
43
|
-
"clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
|
|
44
|
-
"fix-lint": "eslint . --fix && dprint fmt --config $(find-up dprint.json)",
|
|
45
|
-
"lint": "eslint . && dprint check --config $(find-up dprint.json)",
|
|
46
|
-
"test": "vitest run --pool=forks",
|
|
47
|
-
"transpileBrowser": "monorepo.tool.transpile -f esm -m normal -t browser",
|
|
48
|
-
"transpileCjs": "monorepo.tool.transpile -f cjs -m bundle -t node",
|
|
49
|
-
"transpileEsm": "monorepo.tool.transpile -f esm -m normal -t node",
|
|
50
|
-
"transpileTypes": "monorepo.tool.transpile -f esm -m types -t node",
|
|
51
|
-
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
|
|
52
|
-
},
|
|
53
40
|
"peerDependencies": {
|
|
54
41
|
"@ai-sdk/provider": "^3.0.0",
|
|
55
|
-
"@osdk/
|
|
56
|
-
"@osdk/
|
|
42
|
+
"@osdk/language-models": ">=0.6.0 <1.0.0",
|
|
43
|
+
"@osdk/client": "^2.40.0"
|
|
57
44
|
},
|
|
58
45
|
"peerDependenciesMeta": {
|
|
59
46
|
"@ai-sdk/provider": {
|
|
@@ -62,10 +49,10 @@
|
|
|
62
49
|
},
|
|
63
50
|
"devDependencies": {
|
|
64
51
|
"@ai-sdk/provider": "^3.0.8",
|
|
65
|
-
"@osdk/monorepo.api-extractor": "workspace:~",
|
|
66
|
-
"@osdk/monorepo.tsconfig": "workspace:~",
|
|
67
52
|
"@types/node": "^18.19.0",
|
|
68
|
-
"typescript": "~5.5.4"
|
|
53
|
+
"typescript": "~5.5.4",
|
|
54
|
+
"@osdk/monorepo.api-extractor": "~0.7.0",
|
|
55
|
+
"@osdk/monorepo.tsconfig": "~0.7.0"
|
|
69
56
|
},
|
|
70
57
|
"publishConfig": {
|
|
71
58
|
"access": "public"
|
|
@@ -83,5 +70,18 @@
|
|
|
83
70
|
"main": "./build/cjs/index.cjs",
|
|
84
71
|
"module": "./build/esm/index.js",
|
|
85
72
|
"types": "./build/cjs/index.d.cts",
|
|
86
|
-
"type": "module"
|
|
87
|
-
|
|
73
|
+
"type": "module",
|
|
74
|
+
"scripts": {
|
|
75
|
+
"check-attw": "attw --pack .",
|
|
76
|
+
"check-spelling": "cspell --quiet .",
|
|
77
|
+
"clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
|
|
78
|
+
"fix-lint": "eslint . --fix && dprint fmt",
|
|
79
|
+
"lint": "eslint . && dprint check",
|
|
80
|
+
"test": "vitest run --pool=forks",
|
|
81
|
+
"transpileBrowser": "monorepo.tool.transpile -f esm -m normal -t browser",
|
|
82
|
+
"transpileCjs": "monorepo.tool.transpile -f cjs -m bundle -t node",
|
|
83
|
+
"transpileEsm": "monorepo.tool.transpile -f esm -m normal -t node",
|
|
84
|
+
"transpileTypes": "monorepo.tool.transpile -f esm -m types -t node",
|
|
85
|
+
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
|
|
86
|
+
}
|
|
87
|
+
}
|