@malloydata/db-trino 0.0.151-dev240714142136 → 0.0.151
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 +1 -0
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -22,9 +22,11 @@
|
|
|
22
22
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.TrinoExecutor = exports.TrinoConnection = void 0;
|
|
25
|
+
exports.TrinoExecutor = exports.PrestoConnection = exports.TrinoConnection = void 0;
|
|
26
26
|
var trino_connection_1 = require("./trino_connection");
|
|
27
27
|
Object.defineProperty(exports, "TrinoConnection", { enumerable: true, get: function () { return trino_connection_1.TrinoConnection; } });
|
|
28
|
+
var trino_connection_2 = require("./trino_connection");
|
|
29
|
+
Object.defineProperty(exports, "PrestoConnection", { enumerable: true, get: function () { return trino_connection_2.PrestoConnection; } });
|
|
28
30
|
var trino_executor_1 = require("./trino_executor");
|
|
29
31
|
Object.defineProperty(exports, "TrinoExecutor", { enumerable: true, get: function () { return trino_executor_1.TrinoExecutor; } });
|
|
30
32
|
//# sourceMappingURL=index.js.map
|