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

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,19 @@
1
1
  # @langchain/google-cloud-sql-pg
2
2
 
3
+ ## 1.0.4
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
+
10
+ ## 1.0.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`833f578`](https://github.com/langchain-ai/langchainjs/commit/833f57834dc3aa64e4cfdd7499f865b2ab41462a)]:
15
+ - @langchain/core@1.1.2
16
+
3
17
  ## 1.0.2
4
18
 
5
19
  ### Patch Changes
package/dist/engine.d.cts CHANGED
@@ -130,7 +130,6 @@ 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
134
133
  testConnection(): knex.Knex.Raw<any>;
135
134
  }
136
135
  //#endregion
package/dist/engine.d.ts CHANGED
@@ -130,7 +130,6 @@ 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
134
133
  testConnection(): knex.Knex.Raw<any>;
135
134
  }
136
135
  //#endregion
package/dist/loader.d.cts CHANGED
@@ -6,7 +6,6 @@ import { BaseDocumentLoader } from "@langchain/core/document_loaders/base";
6
6
  type Row = {
7
7
  [key: string]: string;
8
8
  };
9
- // Options for PostgresLoader
10
9
  interface PostgresLoaderOptions {
11
10
  tableName?: string;
12
11
  schemaName?: string;
package/dist/loader.d.ts CHANGED
@@ -6,7 +6,6 @@ import { BaseDocumentLoader } from "@langchain/core/document_loaders/base";
6
6
  type Row = {
7
7
  [key: string]: string;
8
8
  };
9
- // Options for PostgresLoader
10
9
  interface PostgresLoaderOptions {
11
10
  tableName?: string;
12
11
  schemaName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-cloud-sql-pg",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
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.1"
21
+ "@langchain/core": "1.1.3"
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.1",
41
+ "@langchain/core": "1.1.3",
42
42
  "@langchain/eslint": "0.1.1"
43
43
  },
44
44
  "publishConfig": {