pqb 0.31.2 → 0.31.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/dist/index.d.ts CHANGED
@@ -46,6 +46,7 @@ declare class TransactionAdapter implements Adapter {
46
46
  types: TypeParsers;
47
47
  pool: Pool;
48
48
  config: PoolConfig;
49
+ schema?: string;
49
50
  constructor(adapter: Adapter, client: PoolClient, types: TypeParsers);
50
51
  connect(): Promise<PoolClient>;
51
52
  query<T extends QueryResultRow = any>(query: QueryInput, types?: TypeParsers): Promise<QueryResult<T>>;
package/dist/index.js CHANGED
@@ -5362,6 +5362,7 @@ class TransactionAdapter {
5362
5362
  this.types = types2;
5363
5363
  this.pool = adapter.pool;
5364
5364
  this.config = adapter.config;
5365
+ this.schema = adapter.schema;
5365
5366
  }
5366
5367
  connect() {
5367
5368
  return Promise.resolve(this.client);