@heroku/heroku-cli-util 9.1.3-beta.0 → 9.1.3-beta.1
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
|
@@ -14,6 +14,7 @@ import { wait } from './ux/wait';
|
|
|
14
14
|
export type { AddOnWithRelatedData, ExtendedAddonAttachment, Link, } from './types/pg/data-api';
|
|
15
15
|
export type { ConnectionDetails, ConnectionDetailsWithAttachment, TunnelConfig, } from './types/pg/tunnel';
|
|
16
16
|
export { default as DatabaseResolver } from './utils/pg/databases';
|
|
17
|
+
export { default as getHost } from './utils/pg/host';
|
|
17
18
|
export { default as PsqlService } from './utils/pg/psql';
|
|
18
19
|
/** @deprecated Use direct type imports instead */
|
|
19
20
|
export declare const types: {
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.hux = exports.utils = exports.types = exports.PsqlService = exports.DatabaseResolver = void 0;
|
|
3
|
+
exports.hux = exports.utils = exports.types = exports.PsqlService = exports.getHost = exports.DatabaseResolver = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const ambiguous_1 = require("./errors/ambiguous");
|
|
6
6
|
const not_found_1 = require("./errors/not-found");
|
|
@@ -17,6 +17,8 @@ const wait_1 = require("./ux/wait");
|
|
|
17
17
|
// Export PG classes for direct import
|
|
18
18
|
var databases_2 = require("./utils/pg/databases");
|
|
19
19
|
Object.defineProperty(exports, "DatabaseResolver", { enumerable: true, get: function () { return tslib_1.__importDefault(databases_2).default; } });
|
|
20
|
+
var host_2 = require("./utils/pg/host");
|
|
21
|
+
Object.defineProperty(exports, "getHost", { enumerable: true, get: function () { return tslib_1.__importDefault(host_2).default; } });
|
|
20
22
|
var psql_2 = require("./utils/pg/psql");
|
|
21
23
|
Object.defineProperty(exports, "PsqlService", { enumerable: true, get: function () { return tslib_1.__importDefault(psql_2).default; } });
|
|
22
24
|
// Keep const types for backward compatibility (deprecated)
|