@langchain/google-vertexai-web 1.0.0 → 1.0.2
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 +14 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @langchain/google-vertexai-web
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies []:
|
|
8
|
+
- @langchain/google-webauth@1.0.2
|
|
9
|
+
|
|
10
|
+
## 1.0.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies []:
|
|
15
|
+
- @langchain/google-webauth@1.0.1
|
|
16
|
+
|
|
3
17
|
## 1.0.0
|
|
4
18
|
|
|
5
19
|
This release updates the package for compatibility with LangChain v1.0. See the v1.0 [release notes](https://docs.langchain.com/oss/javascript/releases/langchain-v1) for details on what's new.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/google-vertexai-web",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "LangChain.js support for Google Vertex AI Web",
|
|
5
5
|
"author": "LangChain",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-google-vertexai-web/",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@langchain/google-webauth": "^1.0.
|
|
17
|
+
"@langchain/google-webauth": "^1.0.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@jest/globals": "^29.5.0",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"ts-jest": "^29.1.0",
|
|
32
32
|
"typescript": "~5.8.3",
|
|
33
33
|
"zod": "^3.25.76",
|
|
34
|
-
"@langchain/google-common": "1.0.
|
|
34
|
+
"@langchain/google-common": "1.0.2",
|
|
35
35
|
"@langchain/eslint": "0.1.0",
|
|
36
|
-
"@langchain/standard-tests": "0.0.
|
|
36
|
+
"@langchain/standard-tests": "0.0.2"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
@@ -83,7 +83,8 @@
|
|
|
83
83
|
"LICENSE"
|
|
84
84
|
],
|
|
85
85
|
"scripts": {
|
|
86
|
-
"build": "
|
|
86
|
+
"build": "turbo build:compile --filter @langchain/google-vertexai-web",
|
|
87
|
+
"build:compile": "pnpm --filter @langchain/build compile @langchain/google-vertexai-web",
|
|
87
88
|
"lint:eslint": "eslint --cache src/",
|
|
88
89
|
"lint:dpdm": "dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
|
|
89
90
|
"lint": "pnpm lint:eslint && pnpm lint:dpdm",
|