@langchain/google-webauth 2.1.20 → 2.1.21
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 +10 -0
- package/dist/chat_models.cjs +1 -0
- package/dist/chat_models.cjs.map +1 -1
- package/dist/chat_models.d.cts.map +1 -1
- package/dist/chat_models.d.ts.map +1 -1
- package/dist/chat_models.js +1 -0
- package/dist/chat_models.js.map +1 -1
- package/dist/llms.cjs +1 -0
- package/dist/llms.cjs.map +1 -1
- package/dist/llms.d.cts.map +1 -1
- package/dist/llms.d.ts.map +1 -1
- package/dist/llms.js +1 -0
- package/dist/llms.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @langchain/google-webauth
|
|
2
2
|
|
|
3
|
+
## 2.1.21
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#10106](https://github.com/langchain-ai/langchainjs/pull/10106) [`9f30267`](https://github.com/langchain-ai/langchainjs/commit/9f30267e95a2a42fac71f1d3674b84c5a190dbbc) Thanks [@hntrl](https://github.com/hntrl)! - Add package version metadata to runnable traces. Each package now stamps its version in `this.metadata.versions` at construction time, making version info available in LangSmith trace metadata.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`9f30267`](https://github.com/langchain-ai/langchainjs/commit/9f30267e95a2a42fac71f1d3674b84c5a190dbbc), [`403a99f`](https://github.com/langchain-ai/langchainjs/commit/403a99fd826383f30300809ae077e1c967023520), [`e0e5a02`](https://github.com/langchain-ai/langchainjs/commit/e0e5a02ea1b855ad7b8d562d1c7770f984100a5d), [`3b1fd54`](https://github.com/langchain-ai/langchainjs/commit/3b1fd5458a4aa29c398122829f383f21b5ac39da), [`77bd982`](https://github.com/langchain-ai/langchainjs/commit/77bd98274a885e947d76f7a9c6dd0b3763453218)]:
|
|
10
|
+
- @langchain/core@1.1.29
|
|
11
|
+
- @langchain/google-common@2.1.21
|
|
12
|
+
|
|
3
13
|
## 2.1.20
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/chat_models.cjs
CHANGED
|
@@ -15,6 +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.21");
|
|
18
19
|
}
|
|
19
20
|
buildAbstractedClient(fields) {
|
|
20
21
|
return new require_auth.WebGoogleAuth(fields);
|
package/dist/chat_models.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat_models.cjs","names":["ChatGoogleBase","WebGoogleAuth"],"sources":["../src/chat_models.ts"],"sourcesContent":["import {\n ChatGoogleBase,\n ChatGoogleBaseInput,\n GoogleAbstractedClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to chat model class.\n */\nexport interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with a chat model.\n */\nexport class ChatGoogle\n extends ChatGoogleBase<WebGoogleAuthOptions>\n implements ChatGoogleInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"ChatGoogle\";\n }\n\n constructor(model: string, fields?: Omit<ChatGoogleInput, \"model\">);\n constructor(fields?: ChatGoogleInput);\n constructor(\n modelOrFields?: string | ChatGoogleInput,\n fieldsArg?: Omit<ChatGoogleInput, \"model\">\n ) {\n const fields =\n typeof modelOrFields === \"string\"\n ? { ...(fieldsArg ?? {}), model: modelOrFields }\n : (modelOrFields ?? {});\n super(fields);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;;AAgBA,IAAa,aAAb,cACUA,wCAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAKT,YACE,eACA,WACA;EACA,MAAM,SACJ,OAAO,kBAAkB,WACrB;GAAE,GAAI,aAAa,EAAE;GAAG,OAAO;GAAe,GAC7C,iBAAiB,EAAE;AAC1B,QAAM,OAAO;;
|
|
1
|
+
{"version":3,"file":"chat_models.cjs","names":["ChatGoogleBase","WebGoogleAuth"],"sources":["../src/chat_models.ts"],"sourcesContent":["import {\n ChatGoogleBase,\n ChatGoogleBaseInput,\n GoogleAbstractedClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to chat model class.\n */\nexport interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with a chat model.\n */\nexport class ChatGoogle\n extends ChatGoogleBase<WebGoogleAuthOptions>\n implements ChatGoogleInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"ChatGoogle\";\n }\n\n constructor(model: string, fields?: Omit<ChatGoogleInput, \"model\">);\n constructor(fields?: ChatGoogleInput);\n constructor(\n modelOrFields?: string | ChatGoogleInput,\n fieldsArg?: Omit<ChatGoogleInput, \"model\">\n ) {\n const fields =\n typeof modelOrFields === \"string\"\n ? { ...(fieldsArg ?? {}), model: modelOrFields }\n : (modelOrFields ?? {});\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;;AAgBA,IAAa,aAAb,cACUA,wCAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAKT,YACE,eACA,WACA;EACA,MAAM,SACJ,OAAO,kBAAkB,WACrB;GAAE,GAAI,aAAa,EAAE;GAAG,OAAO;GAAe,GAC7C,iBAAiB,EAAE;AAC1B,QAAM,OAAO;AACb,OAAK,YAAY,sCAA6C;;CAGhE,sBACE,QACwB;AACxB,SAAO,IAAIC,2BAAc,OAAO"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat_models.d.cts","names":[],"sources":["../src/chat_models.ts"],"mappings":";;;;;;AAWA;UAAiB,eAAA,SAAwB,mBAAA,CAAoB,oBAAA;;;AAK7D;cAAa,UAAA,SACH,cAAA,CAAe,oBAAA,aACZ,eAAA;EAAA,OAGJ,OAAA,CAAA;EAIP,WAAA,CAAY,KAAA,UAAe,MAAA,GAAS,IAAA,CAAK,eAAA;EACzC,WAAA,CAAY,MAAA,GAAS,eAAA;
|
|
1
|
+
{"version":3,"file":"chat_models.d.cts","names":[],"sources":["../src/chat_models.ts"],"mappings":";;;;;;AAWA;UAAiB,eAAA,SAAwB,mBAAA,CAAoB,oBAAA;;;AAK7D;cAAa,UAAA,SACH,cAAA,CAAe,oBAAA,aACZ,eAAA;EAAA,OAGJ,OAAA,CAAA;EAIP,WAAA,CAAY,KAAA,UAAe,MAAA,GAAS,IAAA,CAAK,eAAA;EACzC,WAAA,CAAY,MAAA,GAAS,eAAA;EAarB,qBAAA,CACE,MAAA,EAAQ,kBAAA,CAAmB,oBAAA,gBAC1B,sBAAA;AAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat_models.d.ts","names":[],"sources":["../src/chat_models.ts"],"mappings":";;;;;;AAWA;UAAiB,eAAA,SAAwB,mBAAA,CAAoB,oBAAA;;;AAK7D;cAAa,UAAA,SACH,cAAA,CAAe,oBAAA,aACZ,eAAA;EAAA,OAGJ,OAAA,CAAA;EAIP,WAAA,CAAY,KAAA,UAAe,MAAA,GAAS,IAAA,CAAK,eAAA;EACzC,WAAA,CAAY,MAAA,GAAS,eAAA;
|
|
1
|
+
{"version":3,"file":"chat_models.d.ts","names":[],"sources":["../src/chat_models.ts"],"mappings":";;;;;;AAWA;UAAiB,eAAA,SAAwB,mBAAA,CAAoB,oBAAA;;;AAK7D;cAAa,UAAA,SACH,cAAA,CAAe,oBAAA,aACZ,eAAA;EAAA,OAGJ,OAAA,CAAA;EAIP,WAAA,CAAY,KAAA,UAAe,MAAA,GAAS,IAAA,CAAK,eAAA;EACzC,WAAA,CAAY,MAAA,GAAS,eAAA;EAarB,qBAAA,CACE,MAAA,EAAQ,kBAAA,CAAmB,oBAAA,gBAC1B,sBAAA;AAAA"}
|
package/dist/chat_models.js
CHANGED
package/dist/chat_models.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat_models.js","names":[],"sources":["../src/chat_models.ts"],"sourcesContent":["import {\n ChatGoogleBase,\n ChatGoogleBaseInput,\n GoogleAbstractedClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to chat model class.\n */\nexport interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with a chat model.\n */\nexport class ChatGoogle\n extends ChatGoogleBase<WebGoogleAuthOptions>\n implements ChatGoogleInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"ChatGoogle\";\n }\n\n constructor(model: string, fields?: Omit<ChatGoogleInput, \"model\">);\n constructor(fields?: ChatGoogleInput);\n constructor(\n modelOrFields?: string | ChatGoogleInput,\n fieldsArg?: Omit<ChatGoogleInput, \"model\">\n ) {\n const fields =\n typeof modelOrFields === \"string\"\n ? { ...(fieldsArg ?? {}), model: modelOrFields }\n : (modelOrFields ?? {});\n super(fields);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;;AAgBA,IAAa,aAAb,cACU,eAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAKT,YACE,eACA,WACA;EACA,MAAM,SACJ,OAAO,kBAAkB,WACrB;GAAE,GAAI,aAAa,EAAE;GAAG,OAAO;GAAe,GAC7C,iBAAiB,EAAE;AAC1B,QAAM,OAAO;;
|
|
1
|
+
{"version":3,"file":"chat_models.js","names":[],"sources":["../src/chat_models.ts"],"sourcesContent":["import {\n ChatGoogleBase,\n ChatGoogleBaseInput,\n GoogleAbstractedClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to chat model class.\n */\nexport interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with a chat model.\n */\nexport class ChatGoogle\n extends ChatGoogleBase<WebGoogleAuthOptions>\n implements ChatGoogleInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"ChatGoogle\";\n }\n\n constructor(model: string, fields?: Omit<ChatGoogleInput, \"model\">);\n constructor(fields?: ChatGoogleInput);\n constructor(\n modelOrFields?: string | ChatGoogleInput,\n fieldsArg?: Omit<ChatGoogleInput, \"model\">\n ) {\n const fields =\n typeof modelOrFields === \"string\"\n ? { ...(fieldsArg ?? {}), model: modelOrFields }\n : (modelOrFields ?? {});\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;;AAgBA,IAAa,aAAb,cACU,eAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAKT,YACE,eACA,WACA;EACA,MAAM,SACJ,OAAO,kBAAkB,WACrB;GAAE,GAAI,aAAa,EAAE;GAAG,OAAO;GAAe,GAC7C,iBAAiB,EAAE;AAC1B,QAAM,OAAO;AACb,OAAK,YAAY,sCAA6C;;CAGhE,sBACE,QACwB;AACxB,SAAO,IAAI,cAAc,OAAO"}
|
package/dist/llms.cjs
CHANGED
|
@@ -12,6 +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.21");
|
|
15
16
|
}
|
|
16
17
|
buildAbstractedClient(fields) {
|
|
17
18
|
return new require_auth.WebGoogleAuth(fields);
|
package/dist/llms.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llms.cjs","names":["GoogleBaseLLM","WebGoogleAuth"],"sources":["../src/llms.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleBaseLLM,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleLLM\n extends GoogleBaseLLM<WebGoogleAuthOptions>\n implements GoogleLLMInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleLLM\";\n }\n\n lc_serializable = true;\n\n constructor(fields?: GoogleLLMInput) {\n super(fields);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;;AAeA,IAAa,YAAb,cACUA,uCAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAGT,kBAAkB;CAElB,YAAY,QAAyB;AACnC,QAAM,OAAO;;
|
|
1
|
+
{"version":3,"file":"llms.cjs","names":["GoogleBaseLLM","WebGoogleAuth"],"sources":["../src/llms.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleBaseLLM,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleLLM\n extends GoogleBaseLLM<WebGoogleAuthOptions>\n implements GoogleLLMInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleLLM\";\n }\n\n lc_serializable = true;\n\n constructor(fields?: GoogleLLMInput) {\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;;AAeA,IAAa,YAAb,cACUA,uCAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAGT,kBAAkB;CAElB,YAAY,QAAyB;AACnC,QAAM,OAAO;AACb,OAAK,YAAY,sCAA6C;;CAGhE,sBACE,QACwB;AACxB,SAAO,IAAIC,2BAAc,OAAO"}
|
package/dist/llms.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llms.d.cts","names":[],"sources":["../src/llms.ts"],"mappings":";;;;;;AAUA;UAAiB,cAAA,SAAuB,kBAAA,CAAmB,oBAAA;;;AAK3D;cAAa,SAAA,SACH,aAAA,CAAc,oBAAA,aACX,cAAA;EAAA,OAGJ,OAAA,CAAA;EAIP,eAAA;EAEA,WAAA,CAAY,MAAA,GAAS,cAAA;
|
|
1
|
+
{"version":3,"file":"llms.d.cts","names":[],"sources":["../src/llms.ts"],"mappings":";;;;;;AAUA;UAAiB,cAAA,SAAuB,kBAAA,CAAmB,oBAAA;;;AAK3D;cAAa,SAAA,SACH,aAAA,CAAc,oBAAA,aACX,cAAA;EAAA,OAGJ,OAAA,CAAA;EAIP,eAAA;EAEA,WAAA,CAAY,MAAA,GAAS,cAAA;EAKrB,qBAAA,CACE,MAAA,EAAQ,kBAAA,CAAmB,oBAAA,gBAC1B,sBAAA;AAAA"}
|
package/dist/llms.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llms.d.ts","names":[],"sources":["../src/llms.ts"],"mappings":";;;;;;AAUA;UAAiB,cAAA,SAAuB,kBAAA,CAAmB,oBAAA;;;AAK3D;cAAa,SAAA,SACH,aAAA,CAAc,oBAAA,aACX,cAAA;EAAA,OAGJ,OAAA,CAAA;EAIP,eAAA;EAEA,WAAA,CAAY,MAAA,GAAS,cAAA;
|
|
1
|
+
{"version":3,"file":"llms.d.ts","names":[],"sources":["../src/llms.ts"],"mappings":";;;;;;AAUA;UAAiB,cAAA,SAAuB,kBAAA,CAAmB,oBAAA;;;AAK3D;cAAa,SAAA,SACH,aAAA,CAAc,oBAAA,aACX,cAAA;EAAA,OAGJ,OAAA,CAAA;EAIP,eAAA;EAEA,WAAA,CAAY,MAAA,GAAS,cAAA;EAKrB,qBAAA,CACE,MAAA,EAAQ,kBAAA,CAAmB,oBAAA,gBAC1B,sBAAA;AAAA"}
|
package/dist/llms.js
CHANGED
package/dist/llms.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llms.js","names":[],"sources":["../src/llms.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleBaseLLM,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleLLM\n extends GoogleBaseLLM<WebGoogleAuthOptions>\n implements GoogleLLMInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleLLM\";\n }\n\n lc_serializable = true;\n\n constructor(fields?: GoogleLLMInput) {\n super(fields);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;;AAeA,IAAa,YAAb,cACU,cAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAGT,kBAAkB;CAElB,YAAY,QAAyB;AACnC,QAAM,OAAO;;
|
|
1
|
+
{"version":3,"file":"llms.js","names":[],"sources":["../src/llms.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleBaseLLM,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleLLM\n extends GoogleBaseLLM<WebGoogleAuthOptions>\n implements GoogleLLMInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleLLM\";\n }\n\n lc_serializable = true;\n\n constructor(fields?: GoogleLLMInput) {\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;;AAeA,IAAa,YAAb,cACU,cAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAGT,kBAAkB;CAElB,YAAY,QAAyB;AACnC,QAAM,OAAO;AACb,OAAK,YAAY,sCAA6C;;CAGhE,sBACE,QACwB;AACxB,SAAO,IAAI,cAAc,OAAO"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/google-webauth",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.21",
|
|
4
4
|
"description": "Web-based authentication support for Google services",
|
|
5
5
|
"author": "LangChain",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,14 +15,14 @@
|
|
|
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.21"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@langchain/core": "^1.1.
|
|
21
|
+
"@langchain/core": "^1.1.29"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@jest/globals": "^30.2.0",
|
|
25
|
-
"@swc/core": "^1.15.
|
|
25
|
+
"@swc/core": "^1.15.13",
|
|
26
26
|
"@swc/jest": "^0.2.29",
|
|
27
27
|
"@tsconfig/recommended": "^1.0.3",
|
|
28
28
|
"dotenv": "^16.3.1",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"ts-jest": "^29.4.6",
|
|
35
35
|
"typescript": "~5.8.3",
|
|
36
36
|
"zod": "^3.25.76",
|
|
37
|
-
"@langchain/core": "^1.1.
|
|
38
|
-
"@langchain/
|
|
39
|
-
"@langchain/
|
|
37
|
+
"@langchain/core": "^1.1.29",
|
|
38
|
+
"@langchain/tsconfig": "0.0.1",
|
|
39
|
+
"@langchain/eslint": "0.1.1"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|