relq 1.0.118 → 1.0.120

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.
@@ -15,6 +15,8 @@ class TransactionClient {
15
15
  const internal = this.relq[methods_1.INTERNAL];
16
16
  this.schema = internal.getSchema?.() ?? this.relq.schema;
17
17
  }
18
+ get dialect() { return this.relq.dialect; }
19
+ get capabilities() { return this.relq.capabilities; }
18
20
  get table() {
19
21
  return (0, table_accessor_1.createTableAccessor)(this, this.schema);
20
22
  }
@@ -11,6 +11,8 @@ export class TransactionClient {
11
11
  const internal = this.relq[INTERNAL];
12
12
  this.schema = internal.getSchema?.() ?? this.relq.schema;
13
13
  }
14
+ get dialect() { return this.relq.dialect; }
15
+ get capabilities() { return this.relq.capabilities; }
14
16
  get table() {
15
17
  return createTableAccessor(this, this.schema);
16
18
  }