1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- /**
- * Licensed Materials - Property of IBM
- * IBM Business Analytics (C) Copyright IBM Corp. 2018, 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class SmartRecommenderAPI
- * @hideconstructor
- *
- * @classdesc
- */
- define([], function () {
- var DeprecatedSmartsRecommenderAPI = function () {
- function DeprecatedSmartsRecommenderAPI() {
- _classCallCheck(this, DeprecatedSmartsRecommenderAPI);
- }
- /**
- * @function DeprecatedSmartsRecommenderAPI#recommendAlternateVisualizationsAsWidgetSpecs
- * @param {String} dataSource
- * @param {String[]} columnIds
- *
- * @deprecated
- *
- */
- DeprecatedSmartsRecommenderAPI.prototype.recommendAlternateVisualizationsAsWidgetSpecs = function recommendAlternateVisualizationsAsWidgetSpecs() {};
- /**
- * @function DeprecatedSmartsRecommenderAPI#recommendRelatedVisualizationsAsWidgetSpecs
- * @param {String} dataSource
- * @param {String[]} columnIds
- * @param {Boolean} includeBestVisForTargetFields
- *
- * @deprecated
- *
- */
- DeprecatedSmartsRecommenderAPI.prototype.recommendRelatedVisualizationsAsWidgetSpecs = function recommendRelatedVisualizationsAsWidgetSpecs() {};
- /**
- * @function DeprecatedSmartsRecommenderAPI#transformRecommendationsToLiveWidgetSpec
- * @param {Object[]} recommendations
- * @param {Object} options
- * @deprecated
- *
- */
- DeprecatedSmartsRecommenderAPI.prototype.transformRecommendationsToLiveWidgetSpecs = function transformRecommendationsToLiveWidgetSpecs() {};
- return DeprecatedSmartsRecommenderAPI;
- }();
- return DeprecatedSmartsRecommenderAPI;
- });
- //# sourceMappingURL=DeprecatedSmartsRecommenderAPI.js.map
|