@langchain/google-webauth 2.1.22 → 2.1.23
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 -0
- package/dist/chat_models.cjs +1 -1
- package/dist/chat_models.js +1 -1
- package/dist/llms.cjs +1 -1
- package/dist/llms.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @langchain/google-webauth
|
|
2
2
|
|
|
3
|
+
## 2.1.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`d43194b`](https://github.com/langchain-ai/langchainjs/commit/d43194b625f19acf79cbe958300dadb7b0a6a89d)]:
|
|
8
|
+
- @langchain/google-common@2.1.23
|
|
9
|
+
|
|
3
10
|
## 2.1.22
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/chat_models.cjs
CHANGED
|
@@ -15,7 +15,7 @@ var ChatGoogle = class extends _langchain_google_common.ChatGoogleBase {
|
|
|
15
15
|
model: modelOrFields
|
|
16
16
|
} : modelOrFields ?? {};
|
|
17
17
|
super(fields);
|
|
18
|
-
this._addVersion("@langchain/google-webauth", "2.1.
|
|
18
|
+
this._addVersion("@langchain/google-webauth", "2.1.23");
|
|
19
19
|
}
|
|
20
20
|
buildAbstractedClient(fields) {
|
|
21
21
|
return new require_auth.WebGoogleAuth(fields);
|
package/dist/chat_models.js
CHANGED
|
@@ -15,7 +15,7 @@ var ChatGoogle = class extends ChatGoogleBase {
|
|
|
15
15
|
model: modelOrFields
|
|
16
16
|
} : modelOrFields ?? {};
|
|
17
17
|
super(fields);
|
|
18
|
-
this._addVersion("@langchain/google-webauth", "2.1.
|
|
18
|
+
this._addVersion("@langchain/google-webauth", "2.1.23");
|
|
19
19
|
}
|
|
20
20
|
buildAbstractedClient(fields) {
|
|
21
21
|
return new WebGoogleAuth(fields);
|
package/dist/llms.cjs
CHANGED
|
@@ -12,7 +12,7 @@ var GoogleLLM = class extends _langchain_google_common.GoogleBaseLLM {
|
|
|
12
12
|
lc_serializable = true;
|
|
13
13
|
constructor(fields) {
|
|
14
14
|
super(fields);
|
|
15
|
-
this._addVersion("@langchain/google-webauth", "2.1.
|
|
15
|
+
this._addVersion("@langchain/google-webauth", "2.1.23");
|
|
16
16
|
}
|
|
17
17
|
buildAbstractedClient(fields) {
|
|
18
18
|
return new require_auth.WebGoogleAuth(fields);
|
package/dist/llms.js
CHANGED
|
@@ -12,7 +12,7 @@ var GoogleLLM = class extends GoogleBaseLLM {
|
|
|
12
12
|
lc_serializable = true;
|
|
13
13
|
constructor(fields) {
|
|
14
14
|
super(fields);
|
|
15
|
-
this._addVersion("@langchain/google-webauth", "2.1.
|
|
15
|
+
this._addVersion("@langchain/google-webauth", "2.1.23");
|
|
16
16
|
}
|
|
17
17
|
buildAbstractedClient(fields) {
|
|
18
18
|
return new WebGoogleAuth(fields);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/google-webauth",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.23",
|
|
4
4
|
"description": "Web-based authentication support for Google services",
|
|
5
5
|
"author": "LangChain",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-google-webauth/",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"web-auth-library": "^1.0.3",
|
|
18
|
-
"@langchain/google-common": "2.1.
|
|
18
|
+
"@langchain/google-common": "2.1.23"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"@langchain/core": "^1.1.29"
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
|
|
106
106
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
|
|
107
107
|
"test:single": "NODE_OPTIONS=--experimental-vm-modules pnpm run jest --config jest.config.cjs --testTimeout 100000",
|
|
108
|
-
"test:int": "NODE_OPTIONS=--experimental-vm-modules jest --
|
|
108
|
+
"test:int": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPatterns=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
|
|
109
109
|
"format": "prettier --write \"src\"",
|
|
110
110
|
"format:check": "prettier --check \"src\""
|
|
111
111
|
}
|