@forge/bridge
6.3.16.4.0-next.0
out/fetch/index.js~
out/fetch/index.jsModified+6−1
Index: package/out/fetch/index.js
===================================================================
--- package/out/fetch/index.js
+++ package/out/fetch/index.js
@@ -1,8 +1,13 @@
"use strict";
var _a;
Object.defineProperty(exports, "__esModule", { value: true });
-exports.requestRemote = exports.requestBitbucket = exports.requestJira = exports.requestConfluence = void 0;
+exports.fetchUserRecommendations = exports.requestRemote = exports.requestBitbucket = exports.requestJira = exports.requestConfluence = void 0;
const bridge_1 = require("../bridge");
const fetch_1 = require("./fetch");
_a = (0, fetch_1.productFetchApi)((0, bridge_1.getCallBridge)()), exports.requestConfluence = _a.requestConfluence, exports.requestJira = _a.requestJira, exports.requestBitbucket = _a.requestBitbucket;
exports.requestRemote = (0, fetch_1.remoteFetchApi)((0, bridge_1.getCallBridge)()).requestRemote;
+const fetchUserRecommendations = async (input) => {
+ const callBridge = (0, bridge_1.getCallBridge)();
+ return await callBridge('fetchUserRecommendations', input);
+};
+exports.fetchUserRecommendations = fetchUserRecommendations;