@langchain/google-cloud-sql-pg 1.0.4 → 1.0.5

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,12 @@
1
1
  # @langchain/google-cloud-sql-pg
2
2
 
3
+ ## 1.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`0bade90`](https://github.com/langchain-ai/langchainjs/commit/0bade90ed47c7988ed86f1e695a28273c7b3df50), [`6c40d00`](https://github.com/langchain-ai/langchainjs/commit/6c40d00e926f377d249c2919549381522eac8ed1)]:
8
+ - @langchain/core@1.1.4
9
+
3
10
  ## 1.0.4
4
11
 
5
12
  ### Patch Changes
package/dist/engine.d.cts CHANGED
@@ -130,6 +130,7 @@ declare class PostgresEngine {
130
130
  * Dispose of connection pool
131
131
  */
132
132
  closeConnection(): Promise<void>;
133
+ // Just to test the connection to the database
133
134
  testConnection(): knex.Knex.Raw<any>;
134
135
  }
135
136
  //#endregion
package/dist/engine.d.ts CHANGED
@@ -130,6 +130,7 @@ declare class PostgresEngine {
130
130
  * Dispose of connection pool
131
131
  */
132
132
  closeConnection(): Promise<void>;
133
+ // Just to test the connection to the database
133
134
  testConnection(): knex.Knex.Raw<any>;
134
135
  }
135
136
  //#endregion
package/dist/loader.d.cts CHANGED
@@ -6,6 +6,7 @@ import { BaseDocumentLoader } from "@langchain/core/document_loaders/base";
6
6
  type Row = {
7
7
  [key: string]: string;
8
8
  };
9
+ // Options for PostgresLoader
9
10
  interface PostgresLoaderOptions {
10
11
  tableName?: string;
11
12
  schemaName?: string;
package/dist/loader.d.ts CHANGED
@@ -6,6 +6,7 @@ import { BaseDocumentLoader } from "@langchain/core/document_loaders/base";
6
6
  type Row = {
7
7
  [key: string]: string;
8
8
  };
9
+ // Options for PostgresLoader
9
10
  interface PostgresLoaderOptions {
10
11
  tableName?: string;
11
12
  schemaName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-cloud-sql-pg",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "LangChain.js integrations for Google Cloud SQL for PostgreSQL",
5
5
  "author": "Google LLC",
6
6
  "license": "MIT",
@@ -18,7 +18,7 @@
18
18
  "google-auth-library": "^9.15.0",
19
19
  "knex": "^3.1.0",
20
20
  "uuid": "^11.0.5",
21
- "@langchain/core": "1.1.3"
21
+ "@langchain/core": "1.1.4"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@jest/globals": "^29.5.0",
@@ -38,7 +38,7 @@
38
38
  "testcontainers": "^10.23.0",
39
39
  "ts-jest": "^29.1.0",
40
40
  "typescript": "~5.8.3",
41
- "@langchain/core": "1.1.3",
41
+ "@langchain/core": "1.1.4",
42
42
  "@langchain/eslint": "0.1.1"
43
43
  },
44
44
  "publishConfig": {