This commit is contained in:
2023-03-11 17:30:20 +00:00
commit b6c4e025bc
5124 changed files with 1153349 additions and 0 deletions
@@ -0,0 +1,49 @@
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var Bizgaze;
(function (Bizgaze) {
let Apps;
(function (Apps) {
let Transact;
(function (Transact) {
let Managers;
(function (Managers) {
let Forecast;
(function (Forecast) {
class ForecastManager extends Unibase.Platform.Core.BaseManager {
getMachinesDataforfilter(obj) {
throw new Error("Method not implemented.");
}
downloadData(obj) {
throw new Error("Method not implemented.");
}
executeforecastdata(wise, value) {
return __awaiter(this, void 0, void 0, function* () {
const url = '/apis/v4/bizgaze/integrations/forecast/executeforecastdata/wise/' + wise + '/value/' + value;
return yield this.dataHelper().postAsync(url, null).then(function (response) {
if (response.result != null) {
response.result = JSON.parse(response.result);
}
return response;
});
});
}
static Instance() {
if (this._instance === undefined)
this._instance = new ForecastManager();
return this._instance;
}
}
Forecast.ForecastManager = ForecastManager;
})(Forecast = Managers.Forecast || (Managers.Forecast = {}));
})(Managers = Transact.Managers || (Transact.Managers = {}));
})(Transact = Apps.Transact || (Apps.Transact = {}));
})(Apps = Bizgaze.Apps || (Bizgaze.Apps = {}));
})(Bizgaze || (Bizgaze = {}));