@saptools/cf-inspector 0.4.5 → 0.4.6
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/cli.js +8 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -326,6 +326,7 @@ declare function streamLogpoint(session: InspectorSession, options: LogpointStre
|
|
|
326
326
|
|
|
327
327
|
interface TunnelTarget {
|
|
328
328
|
readonly region: string;
|
|
329
|
+
readonly apiEndpoint?: string;
|
|
329
330
|
readonly org: string;
|
|
330
331
|
readonly space: string;
|
|
331
332
|
readonly app: string;
|
package/dist/index.js
CHANGED
|
@@ -1861,6 +1861,7 @@ import { startDebugger } from "@saptools/cf-debugger";
|
|
|
1861
1861
|
async function openCfTunnel(target) {
|
|
1862
1862
|
const opts = {
|
|
1863
1863
|
region: target.region,
|
|
1864
|
+
...target.apiEndpoint === void 0 ? {} : { apiEndpoint: target.apiEndpoint },
|
|
1864
1865
|
org: target.org,
|
|
1865
1866
|
space: target.space,
|
|
1866
1867
|
app: target.app,
|