@langchain/google-webauth 2.0.2 → 2.0.3

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @langchain/google-webauth
2
2
 
3
+ ## 2.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`bd2c46e`](https://github.com/langchain-ai/langchainjs/commit/bd2c46e09e661d9ac766c09e71bc6687d6fc811c), [`487378b`](https://github.com/langchain-ai/langchainjs/commit/487378bf14277659c8ca0ef06ea0f9836b818ff4), [`138e7fb`](https://github.com/langchain-ai/langchainjs/commit/138e7fb6280705457079863bedb238b16b322032)]:
8
+ - @langchain/core@1.1.3
9
+ - @langchain/google-common@2.0.3
10
+
3
11
  ## 2.0.2
4
12
 
5
13
  ### Patch Changes
@@ -11,7 +11,6 @@ interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}
11
11
  * Integration with a chat model.
12
12
  */
13
13
  declare class ChatGoogle extends ChatGoogleBase<WebGoogleAuthOptions> implements ChatGoogleInput {
14
- // Used for tracing, replace with the same name as your class
15
14
  static lc_name(): string;
16
15
  constructor(fields?: ChatGoogleInput);
17
16
  buildAbstractedClient(fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined): GoogleAbstractedClient;
@@ -11,7 +11,6 @@ interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}
11
11
  * Integration with a chat model.
12
12
  */
13
13
  declare class ChatGoogle extends ChatGoogleBase<WebGoogleAuthOptions> implements ChatGoogleInput {
14
- // Used for tracing, replace with the same name as your class
15
14
  static lc_name(): string;
16
15
  constructor(fields?: ChatGoogleInput);
17
16
  buildAbstractedClient(fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined): GoogleAbstractedClient;
@@ -11,7 +11,6 @@ interface GoogleEmbeddingsInput extends BaseGoogleEmbeddingsParams<WebGoogleAuth
11
11
  * Integration with an LLM.
12
12
  */
13
13
  declare class GoogleEmbeddings extends BaseGoogleEmbeddings<WebGoogleAuthOptions> implements GoogleEmbeddingsInput {
14
- // Used for tracing, replace with the same name as your class
15
14
  static lc_name(): string;
16
15
  lc_serializable: boolean;
17
16
  constructor(fields: GoogleEmbeddingsInput);
@@ -11,7 +11,6 @@ interface GoogleEmbeddingsInput extends BaseGoogleEmbeddingsParams<WebGoogleAuth
11
11
  * Integration with an LLM.
12
12
  */
13
13
  declare class GoogleEmbeddings extends BaseGoogleEmbeddings<WebGoogleAuthOptions> implements GoogleEmbeddingsInput {
14
- // Used for tracing, replace with the same name as your class
15
14
  static lc_name(): string;
16
15
  lc_serializable: boolean;
17
16
  constructor(fields: GoogleEmbeddingsInput);
package/dist/llms.d.cts CHANGED
@@ -11,7 +11,6 @@ interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}
11
11
  * Integration with an LLM.
12
12
  */
13
13
  declare class GoogleLLM extends GoogleBaseLLM<WebGoogleAuthOptions> implements GoogleLLMInput {
14
- // Used for tracing, replace with the same name as your class
15
14
  static lc_name(): string;
16
15
  lc_serializable: boolean;
17
16
  constructor(fields?: GoogleLLMInput);
package/dist/llms.d.ts CHANGED
@@ -11,7 +11,6 @@ interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}
11
11
  * Integration with an LLM.
12
12
  */
13
13
  declare class GoogleLLM extends GoogleBaseLLM<WebGoogleAuthOptions> implements GoogleLLMInput {
14
- // Used for tracing, replace with the same name as your class
15
14
  static lc_name(): string;
16
15
  lc_serializable: boolean;
17
16
  constructor(fields?: GoogleLLMInput);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-webauth",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Web-based authentication support for Google services",
5
5
  "author": "LangChain",
6
6
  "license": "MIT",
@@ -15,10 +15,10 @@
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.0.2"
18
+ "@langchain/google-common": "2.0.3"
19
19
  },
20
20
  "peerDependencies": {
21
- "@langchain/core": "1.1.2"
21
+ "@langchain/core": "1.1.3"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@jest/globals": "^29.5.0",
@@ -35,7 +35,7 @@
35
35
  "ts-jest": "^29.1.0",
36
36
  "typescript": "~5.8.3",
37
37
  "zod": "^3.25.76",
38
- "@langchain/core": "1.1.2",
38
+ "@langchain/core": "1.1.3",
39
39
  "@langchain/eslint": "0.1.1"
40
40
  },
41
41
  "publishConfig": {