@petradb/engine 1.4.3 → 1.5.0

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.
Files changed (3) hide show
  1. package/index.d.ts +1 -0
  2. package/main.js +72355 -58869
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -166,6 +166,7 @@ export interface PreparedStatement {
166
166
  export class Session {
167
167
  constructor(options?: SessionOptions);
168
168
  execute(sql: string, options?: ExecuteOptions): Promise<ExecuteResult[]>;
169
+ executeAST(ast: any, options?: ExecuteOptions): Promise<ExecuteResult[]>;
169
170
  prepare(sql: string): PreparedStatement;
170
171
  close(): Promise<void>;
171
172
  }