@sap/bas-sdk
Advanced tools
Comparing version 3.7.11 to 3.8.1
13
api.d.ts
@@ -50,2 +50,15 @@ import { URL } from "url"; | ||
export function isInternalAccount(): boolean; | ||
/** | ||
* The function returns the URI for opening VSCode via SSH to the remote landscape URL and the development space workspace ID within a specific folder path. | ||
* | ||
* @param landscapeUrl | ||
* @param wsId - The ID of the dev space | ||
* @param folderPath - the project's folder path | ||
*/ | ||
export function getOpenProjectInVSCodeURI( | ||
landscapeUrl: string, | ||
wsId: string, | ||
folderPath: string, | ||
): string; | ||
} | ||
@@ -52,0 +65,0 @@ |
@@ -36,2 +36,3 @@ "use strict"; | ||
const getCFEndpoint = __importStar(require("./apis/get-cf-endpoint")); | ||
const get_open_project_in_vscode_uri_1 = require("./apis/get-open-project-in-vscode-uri"); | ||
const core_utils_1 = require("./utils/core-utils"); | ||
@@ -42,3 +43,3 @@ const get_devspace_1 = require("./apis/get-devspace"); | ||
const isInternalAccount = __importStar(require("./apis/is-internal-account")); | ||
exports.core = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, isAppStudio), headersHelper), runCommand), getEnvValue), { getExtLoginPath: core_utils_1.getExtLoginPath }), isInternalAccount); | ||
exports.core = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, isAppStudio), headersHelper), runCommand), getEnvValue), { getExtLoginPath: core_utils_1.getExtLoginPath }), isInternalAccount), { getOpenProjectInVSCodeURI: get_open_project_in_vscode_uri_1.getOpenProjectInVSCodeURI }); | ||
exports.devspaceApi = Object.assign({}, devspaceApiFactory); | ||
@@ -45,0 +46,0 @@ exports.destinations = Object.assign(Object.assign({}, getDestinations), createDestination); |
{ | ||
"name": "@sap/bas-sdk", | ||
"version": "3.7.11", | ||
"version": "3.8.1", | ||
"description": "SDK for SAP Business Application Studio", | ||
@@ -31,3 +31,3 @@ "license": "SAP", | ||
"devDependencies": { | ||
"@sap/bas-sdk-sinon-helper": "^3.7.11", | ||
"@sap/bas-sdk-sinon-helper": "^3.8.1", | ||
"@types/cross-spawn": "^6.0.2", | ||
@@ -34,0 +34,0 @@ "@types/fs-extra": "^11.0.1", |
@@ -10,2 +10,3 @@ import * as isAppStudio from "./apis/is-app-studio"; | ||
import * as getCFEndpoint from "./apis/get-cf-endpoint"; | ||
import { getOpenProjectInVSCodeURI } from "./apis/get-open-project-in-vscode-uri"; | ||
import { getExtLoginPath } from "./utils/core-utils"; | ||
@@ -32,2 +33,3 @@ import { | ||
...isInternalAccount, | ||
getOpenProjectInVSCodeURI, | ||
}; | ||
@@ -34,0 +36,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
387441
127
5942