@langchain/google-gauth 2.1.21 → 2.1.22
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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @langchain/google-gauth
|
|
2
2
|
|
|
3
|
+
## 2.1.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`3590ee3`](https://github.com/langchain-ai/langchainjs/commit/3590ee3229a9a55b0c818c1e396f6445b2368103)]:
|
|
8
|
+
- @langchain/google-common@2.1.22
|
|
9
|
+
|
|
3
10
|
## 2.1.21
|
|
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-gauth", "2.1.
|
|
18
|
+
this._addVersion("@langchain/google-gauth", "2.1.22");
|
|
19
19
|
}
|
|
20
20
|
buildAbstractedClient(fields) {
|
|
21
21
|
return new require_auth.GAuthClient(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-gauth", "2.1.
|
|
18
|
+
this._addVersion("@langchain/google-gauth", "2.1.22");
|
|
19
19
|
}
|
|
20
20
|
buildAbstractedClient(fields) {
|
|
21
21
|
return new GAuthClient(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-gauth", "2.1.
|
|
15
|
+
this._addVersion("@langchain/google-gauth", "2.1.22");
|
|
16
16
|
}
|
|
17
17
|
buildAbstractedClient(fields) {
|
|
18
18
|
return new require_auth.GAuthClient(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-gauth", "2.1.
|
|
15
|
+
this._addVersion("@langchain/google-gauth", "2.1.22");
|
|
16
16
|
}
|
|
17
17
|
buildAbstractedClient(fields) {
|
|
18
18
|
return new GAuthClient(fields);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/google-gauth",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.22",
|
|
4
4
|
"description": "Google auth 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-gauth/",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"google-auth-library": "^10.1.0",
|
|
18
|
-
"@langchain/google-common": "2.1.
|
|
18
|
+
"@langchain/google-common": "2.1.22"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@jest/globals": "^30.2.0",
|