@agentforge/tools 0.16.12 → 0.16.14

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/dist/index.d.cts CHANGED
@@ -5052,25 +5052,6 @@ declare class ConnectionManager extends EventEmitter implements DatabaseConnecti
5052
5052
  * @private
5053
5053
  */
5054
5054
  private scheduleReconnection;
5055
- /**
5056
- * Initialize PostgreSQL connection using Drizzle ORM with node-postgres
5057
- *
5058
- * Applies pool configuration options to pg.Pool for connection management.
5059
- */
5060
- private initializePostgreSQL;
5061
- /**
5062
- * Initialize MySQL connection using Drizzle ORM with mysql2
5063
- *
5064
- * Applies pool configuration options to mysql2.createPool for connection management.
5065
- */
5066
- private initializeMySQL;
5067
- /**
5068
- * Initialize SQLite connection using Drizzle ORM with better-sqlite3
5069
- *
5070
- * Note: SQLite uses a single connection. Pool configuration is logged but not applied
5071
- * as SQLite handles concurrent access through its internal locking mechanism.
5072
- */
5073
- private initializeSQLite;
5074
5055
  /**
5075
5056
  * Determine whether an error thrown by drizzle-orm's better-sqlite3 adapter
5076
5057
  * `.all()` indicates the statement does not return data (i.e. it is DML/DDL,
package/dist/index.d.ts CHANGED
@@ -5052,25 +5052,6 @@ declare class ConnectionManager extends EventEmitter implements DatabaseConnecti
5052
5052
  * @private
5053
5053
  */
5054
5054
  private scheduleReconnection;
5055
- /**
5056
- * Initialize PostgreSQL connection using Drizzle ORM with node-postgres
5057
- *
5058
- * Applies pool configuration options to pg.Pool for connection management.
5059
- */
5060
- private initializePostgreSQL;
5061
- /**
5062
- * Initialize MySQL connection using Drizzle ORM with mysql2
5063
- *
5064
- * Applies pool configuration options to mysql2.createPool for connection management.
5065
- */
5066
- private initializeMySQL;
5067
- /**
5068
- * Initialize SQLite connection using Drizzle ORM with better-sqlite3
5069
- *
5070
- * Note: SQLite uses a single connection. Pool configuration is logged but not applied
5071
- * as SQLite handles concurrent access through its internal locking mechanism.
5072
- */
5073
- private initializeSQLite;
5074
5055
  /**
5075
5056
  * Determine whether an error thrown by drizzle-orm's better-sqlite3 adapter
5076
5057
  * `.all()` indicates the statement does not return data (i.e. it is DML/DDL,