mftsccs-browser 2.0.16-beta → 2.0.18-beta
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/main.bundle.js +748 -218
- package/dist/main.bundle.js.map +1 -1
- package/dist/serviceWorker.bundle.js +739 -217
- package/dist/serviceWorker.bundle.js.map +1 -1
- package/dist/types/DataStructures/BaseUrl.d.ts +2 -0
- package/dist/types/Services/Upload.d.ts +26 -0
- package/dist/types/Widgets/RenderWidgetService.d.ts +3 -0
- package/dist/types/Widgets/StatefulWidget.d.ts +18 -0
- package/dist/types/app.d.ts +2 -0
- package/package.json +1 -1
package/dist/main.bundle.js
CHANGED
|
@@ -4276,6 +4276,16 @@ class BaseUrl {
|
|
|
4276
4276
|
static FreeschemaQueryUrl() {
|
|
4277
4277
|
return this.BASE_URL + '/api/freeschema-query';
|
|
4278
4278
|
}
|
|
4279
|
+
//////////////////////////////////////////////////////////////////////
|
|
4280
|
+
//////////////////////API FOR IMAGE UPLOAD //////////////////////
|
|
4281
|
+
static uploadImageUrl() {
|
|
4282
|
+
return this.BASE_URL + '/api/Image/UploadImage';
|
|
4283
|
+
}
|
|
4284
|
+
//////////////////////////////////////////////////////////////////////
|
|
4285
|
+
//////////////////////API FOR FILE UPLOAD //////////////////////
|
|
4286
|
+
static uploadFileUrl() {
|
|
4287
|
+
return this.BASE_URL + '/api/Image/UploadFile';
|
|
4288
|
+
}
|
|
4279
4289
|
}
|
|
4280
4290
|
BaseUrl.BASE_URL = "https://localhost:7053/";
|
|
4281
4291
|
BaseUrl.AI_URL = "https://ai.freeschema.com";
|
|
@@ -20397,6 +20407,151 @@ function UpdateComposition(patcherStructure) {
|
|
|
20397
20407
|
}
|
|
20398
20408
|
|
|
20399
20409
|
|
|
20410
|
+
/***/ }),
|
|
20411
|
+
|
|
20412
|
+
/***/ "./src/Services/Upload.ts":
|
|
20413
|
+
/*!********************************!*\
|
|
20414
|
+
!*** ./src/Services/Upload.ts ***!
|
|
20415
|
+
\********************************/
|
|
20416
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
20417
|
+
|
|
20418
|
+
__webpack_require__.r(__webpack_exports__);
|
|
20419
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20420
|
+
/* harmony export */ uploadAttachment: () => (/* binding */ uploadAttachment),
|
|
20421
|
+
/* harmony export */ uploadFile: () => (/* binding */ uploadFile),
|
|
20422
|
+
/* harmony export */ uploadImage: () => (/* binding */ uploadImage),
|
|
20423
|
+
/* harmony export */ validDocumentFormats: () => (/* binding */ validDocumentFormats),
|
|
20424
|
+
/* harmony export */ validImageFormats: () => (/* binding */ validImageFormats)
|
|
20425
|
+
/* harmony export */ });
|
|
20426
|
+
/* harmony import */ var _app__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../app */ "./src/app.ts");
|
|
20427
|
+
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
20428
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
20429
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
20430
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
20431
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
20432
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
20433
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
20434
|
+
});
|
|
20435
|
+
};
|
|
20436
|
+
|
|
20437
|
+
const validImageFormats = [
|
|
20438
|
+
"image/jpeg",
|
|
20439
|
+
"image/jpg",
|
|
20440
|
+
"image/png",
|
|
20441
|
+
"image/webp",
|
|
20442
|
+
];
|
|
20443
|
+
const validDocumentFormats = [
|
|
20444
|
+
"application/msword",
|
|
20445
|
+
"application/vnd.ms-excel",
|
|
20446
|
+
"application/vnd.ms-powerpoint",
|
|
20447
|
+
"text/plain",
|
|
20448
|
+
"application/pdf",
|
|
20449
|
+
];
|
|
20450
|
+
/**
|
|
20451
|
+
* Generic method to upload file or image
|
|
20452
|
+
* @param file File
|
|
20453
|
+
* @returns Promise<{message: string, success: boolean, url?: string}>
|
|
20454
|
+
*/
|
|
20455
|
+
function uploadAttachment(file, token) {
|
|
20456
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
20457
|
+
try {
|
|
20458
|
+
console.log("File Type", file.type);
|
|
20459
|
+
const formData = new FormData();
|
|
20460
|
+
let response;
|
|
20461
|
+
if (validDocumentFormats.includes(file.type)) {
|
|
20462
|
+
// File
|
|
20463
|
+
formData.append("file", file, file.name);
|
|
20464
|
+
response = yield uploadFile(formData, token);
|
|
20465
|
+
}
|
|
20466
|
+
else if (validImageFormats.includes(file.type)) {
|
|
20467
|
+
// Image
|
|
20468
|
+
formData.append("image", file, file.name);
|
|
20469
|
+
response = yield uploadImage(formData, token);
|
|
20470
|
+
}
|
|
20471
|
+
else {
|
|
20472
|
+
return { message: "Invalid File Format", success: false };
|
|
20473
|
+
}
|
|
20474
|
+
if (!(response === null || response === void 0 ? void 0 : response.data)) {
|
|
20475
|
+
return { message: "File Upload Failed", success: false };
|
|
20476
|
+
}
|
|
20477
|
+
return { message: "Upload Success", success: true, url: response.data };
|
|
20478
|
+
}
|
|
20479
|
+
catch (err) {
|
|
20480
|
+
console.error(err);
|
|
20481
|
+
throw err;
|
|
20482
|
+
}
|
|
20483
|
+
});
|
|
20484
|
+
}
|
|
20485
|
+
/**
|
|
20486
|
+
* Method to upload image to server
|
|
20487
|
+
* @param body FormData
|
|
20488
|
+
* @param token string?
|
|
20489
|
+
* @returns JSON | string | null
|
|
20490
|
+
*/
|
|
20491
|
+
function uploadImage(body_1) {
|
|
20492
|
+
return __awaiter(this, arguments, void 0, function* (body, token = "") {
|
|
20493
|
+
try {
|
|
20494
|
+
const response = yield fetch(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.uploadImageUrl(), {
|
|
20495
|
+
method: "POST",
|
|
20496
|
+
body,
|
|
20497
|
+
headers: {
|
|
20498
|
+
Authorization: `Bearer ${token}`,
|
|
20499
|
+
},
|
|
20500
|
+
});
|
|
20501
|
+
if (!response.ok) {
|
|
20502
|
+
// Check content type before parsing
|
|
20503
|
+
const contentType = response.headers.get("content-type");
|
|
20504
|
+
if (contentType && contentType.includes("text/plain")) {
|
|
20505
|
+
console.info(response === null || response === void 0 ? void 0 : response.text());
|
|
20506
|
+
}
|
|
20507
|
+
const errorData = yield (response === null || response === void 0 ? void 0 : response.text());
|
|
20508
|
+
console.error(`${response.status} ${errorData}`); // Log error response data
|
|
20509
|
+
return null;
|
|
20510
|
+
}
|
|
20511
|
+
return yield response.json();
|
|
20512
|
+
}
|
|
20513
|
+
catch (err) {
|
|
20514
|
+
console.error(err);
|
|
20515
|
+
return null;
|
|
20516
|
+
}
|
|
20517
|
+
});
|
|
20518
|
+
}
|
|
20519
|
+
/**
|
|
20520
|
+
* Method to upload file to server
|
|
20521
|
+
* @param body FormData
|
|
20522
|
+
* @param token string?
|
|
20523
|
+
* @returns JSON | string | null
|
|
20524
|
+
*/
|
|
20525
|
+
function uploadFile(body_1) {
|
|
20526
|
+
return __awaiter(this, arguments, void 0, function* (body, token = "") {
|
|
20527
|
+
try {
|
|
20528
|
+
const response = yield fetch(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.uploadFileUrl(), {
|
|
20529
|
+
method: "POST",
|
|
20530
|
+
body,
|
|
20531
|
+
headers: {
|
|
20532
|
+
Authorization: `Bearer ${token}`,
|
|
20533
|
+
},
|
|
20534
|
+
});
|
|
20535
|
+
if (!response.ok) {
|
|
20536
|
+
// Check content type before parsing
|
|
20537
|
+
const contentType = response.headers.get("content-type");
|
|
20538
|
+
if (contentType && contentType.includes("text/plain")) {
|
|
20539
|
+
console.info(response.text());
|
|
20540
|
+
}
|
|
20541
|
+
const errorData = yield response.text();
|
|
20542
|
+
console.error(`${response.status} ${errorData}`); // Log error response data
|
|
20543
|
+
return null;
|
|
20544
|
+
}
|
|
20545
|
+
return yield response.json();
|
|
20546
|
+
}
|
|
20547
|
+
catch (err) {
|
|
20548
|
+
console.error(err);
|
|
20549
|
+
return null;
|
|
20550
|
+
}
|
|
20551
|
+
});
|
|
20552
|
+
}
|
|
20553
|
+
|
|
20554
|
+
|
|
20400
20555
|
/***/ }),
|
|
20401
20556
|
|
|
20402
20557
|
/***/ "./src/Services/User/UserTranslation.ts":
|
|
@@ -21268,6 +21423,320 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
|
|
|
21268
21423
|
}
|
|
21269
21424
|
|
|
21270
21425
|
|
|
21426
|
+
/***/ }),
|
|
21427
|
+
|
|
21428
|
+
/***/ "./src/Widgets/RenderWidgetService.ts":
|
|
21429
|
+
/*!********************************************!*\
|
|
21430
|
+
!*** ./src/Widgets/RenderWidgetService.ts ***!
|
|
21431
|
+
\********************************************/
|
|
21432
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
21433
|
+
|
|
21434
|
+
__webpack_require__.r(__webpack_exports__);
|
|
21435
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21436
|
+
/* harmony export */ renderLatestWidget: () => (/* binding */ renderLatestWidget),
|
|
21437
|
+
/* harmony export */ renderPage: () => (/* binding */ renderPage),
|
|
21438
|
+
/* harmony export */ renderWidget: () => (/* binding */ renderWidget)
|
|
21439
|
+
/* harmony export */ });
|
|
21440
|
+
/* harmony import */ var _app__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../app */ "./src/app.ts");
|
|
21441
|
+
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
21442
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
21443
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
21444
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
21445
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
21446
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
21447
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
21448
|
+
});
|
|
21449
|
+
};
|
|
21450
|
+
|
|
21451
|
+
function renderPage(pageId, attachNode, props) {
|
|
21452
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
21453
|
+
var _a;
|
|
21454
|
+
const widgets = yield (0,_app__WEBPACK_IMPORTED_MODULE_0__.GetRelation)(pageId, "the_page_body");
|
|
21455
|
+
if ((_a = widgets === null || widgets === void 0 ? void 0 : widgets[0]) === null || _a === void 0 ? void 0 : _a.id)
|
|
21456
|
+
yield renderWidget(widgets[0].id, attachNode, props);
|
|
21457
|
+
});
|
|
21458
|
+
}
|
|
21459
|
+
function renderLatestWidget(widgetId, attachNode, props) {
|
|
21460
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
21461
|
+
var _a;
|
|
21462
|
+
const widgets = yield (0,_app__WEBPACK_IMPORTED_MODULE_0__.GetRelation)(widgetId, "the_widget_latest");
|
|
21463
|
+
if ((widgets === null || widgets === void 0 ? void 0 : widgets.length) == 0)
|
|
21464
|
+
yield renderWidget(widgetId, attachNode, props);
|
|
21465
|
+
else {
|
|
21466
|
+
const latestWidgetId = (_a = widgets === null || widgets === void 0 ? void 0 : widgets[0]) === null || _a === void 0 ? void 0 : _a.id;
|
|
21467
|
+
if (latestWidgetId)
|
|
21468
|
+
yield renderWidget(latestWidgetId, attachNode, props);
|
|
21469
|
+
}
|
|
21470
|
+
});
|
|
21471
|
+
}
|
|
21472
|
+
function renderWidget(widgetId, attachNode, props) {
|
|
21473
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
21474
|
+
try {
|
|
21475
|
+
const widgetTree = yield getWidgetFromId(widgetId);
|
|
21476
|
+
const appElement = attachNode;
|
|
21477
|
+
// const newWidget = await convertWidgetTreeToWidget(
|
|
21478
|
+
yield convertWidgetTreeToWidget(widgetTree, appElement, undefined, props);
|
|
21479
|
+
// add newWidget css to the page
|
|
21480
|
+
const style = document.createElement("style");
|
|
21481
|
+
style.innerHTML = widgetTree.css;
|
|
21482
|
+
appElement.appendChild(style);
|
|
21483
|
+
// add newWidget js to the page
|
|
21484
|
+
const script = document.createElement("script");
|
|
21485
|
+
script.innerHTML = widgetTree.js;
|
|
21486
|
+
appElement.appendChild(script);
|
|
21487
|
+
// remove class wb-initial-empty from all elements that have it from fspagePreview
|
|
21488
|
+
const wbInitialEmpty = appElement.querySelectorAll(".wb-initial-empty");
|
|
21489
|
+
wbInitialEmpty.forEach((el) => {
|
|
21490
|
+
el.classList.remove("wb-initial-empty");
|
|
21491
|
+
}); // add the css for the class fspage-preview
|
|
21492
|
+
document
|
|
21493
|
+
.querySelectorAll('[onclick="widgetSelected(event)"]')
|
|
21494
|
+
.forEach((element) => {
|
|
21495
|
+
element.removeAttribute("onclick");
|
|
21496
|
+
}); // remove the onclick event from the widget container
|
|
21497
|
+
}
|
|
21498
|
+
catch (error) {
|
|
21499
|
+
console.error("Error Caught Rendering Widget");
|
|
21500
|
+
}
|
|
21501
|
+
});
|
|
21502
|
+
}
|
|
21503
|
+
/**
|
|
21504
|
+
* This function builds a widget tree. This tree is built fully along with its children
|
|
21505
|
+
* This tree can then be used to build the whole dom for the widget.
|
|
21506
|
+
* This has recursive property so that the recursion can be used to build this tree.
|
|
21507
|
+
* @param widgetId the id of the widget
|
|
21508
|
+
* @returns WidgetTree.
|
|
21509
|
+
*/
|
|
21510
|
+
function getWidgetFromId(widgetId_1) {
|
|
21511
|
+
return __awaiter(this, arguments, void 0, function* (widgetId, visitedWidgets = [], token = "") {
|
|
21512
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36;
|
|
21513
|
+
try {
|
|
21514
|
+
const widgetNode = new _app__WEBPACK_IMPORTED_MODULE_0__.WidgetTree();
|
|
21515
|
+
const output = yield getWidgetCodeFromId(widgetId, token);
|
|
21516
|
+
visitedWidgets.push(widgetId);
|
|
21517
|
+
const widgetInfo = (_a = output === null || output === void 0 ? void 0 : output.data) === null || _a === void 0 ? void 0 : _a.the_widget;
|
|
21518
|
+
widgetNode.name = (_d = (_c = (_b = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_name) === null || _b === void 0 ? void 0 : _b[0]) === null || _c === void 0 ? void 0 : _c.data) === null || _d === void 0 ? void 0 : _d.the_name;
|
|
21519
|
+
widgetNode.html = (_g = (_f = (_e = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_html) === null || _e === void 0 ? void 0 : _e[0]) === null || _f === void 0 ? void 0 : _f.data) === null || _g === void 0 ? void 0 : _g.the_html;
|
|
21520
|
+
widgetNode.css = (_k = (_j = (_h = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_css) === null || _h === void 0 ? void 0 : _h[0]) === null || _j === void 0 ? void 0 : _j.data) === null || _k === void 0 ? void 0 : _k.the_css;
|
|
21521
|
+
widgetNode.js = (_o = (_m = (_l = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_js) === null || _l === void 0 ? void 0 : _l[0]) === null || _m === void 0 ? void 0 : _m.data) === null || _o === void 0 ? void 0 : _o.the_js;
|
|
21522
|
+
widgetNode.origin = Number((_r = (_q = (_p = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_origin) === null || _p === void 0 ? void 0 : _p[0]) === null || _q === void 0 ? void 0 : _q.data) === null || _r === void 0 ? void 0 : _r.the_originid);
|
|
21523
|
+
widgetNode.version =
|
|
21524
|
+
(_u = (_t = (_s = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_version) === null || _s === void 0 ? void 0 : _s[0]) === null || _t === void 0 ? void 0 : _t.data) === null || _u === void 0 ? void 0 : _u.the_version;
|
|
21525
|
+
widgetNode.clean = (_x = (_w = (_v = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_clean) === null || _v === void 0 ? void 0 : _v[0]) === null || _w === void 0 ? void 0 : _w.data) === null || _x === void 0 ? void 0 : _x.the_clean;
|
|
21526
|
+
widgetNode.timestamp =
|
|
21527
|
+
(_0 = (_z = (_y = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_timestamp) === null || _y === void 0 ? void 0 : _y[0]) === null || _z === void 0 ? void 0 : _z.data) === null || _0 === void 0 ? void 0 : _0.the_timestamp;
|
|
21528
|
+
widgetNode.id = output.id;
|
|
21529
|
+
const widgetTypeValue = (_3 = (_2 = (_1 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_type) === null || _1 === void 0 ? void 0 : _1[0]) === null || _2 === void 0 ? void 0 : _2.data) === null || _3 === void 0 ? void 0 : _3.the_type;
|
|
21530
|
+
if (widgetTypeValue == "null" || widgetTypeValue == null) {
|
|
21531
|
+
widgetNode.type = "the_element_name";
|
|
21532
|
+
}
|
|
21533
|
+
else {
|
|
21534
|
+
widgetNode.type = widgetTypeValue;
|
|
21535
|
+
}
|
|
21536
|
+
widgetNode.after_render =
|
|
21537
|
+
(_6 = (_5 = (_4 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_after_render) === null || _4 === void 0 ? void 0 : _4[0]) === null || _5 === void 0 ? void 0 : _5.data) === null || _6 === void 0 ? void 0 : _6.the_after_render;
|
|
21538
|
+
widgetNode.before_render =
|
|
21539
|
+
(_9 = (_8 = (_7 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_before_render) === null || _7 === void 0 ? void 0 : _7[0]) === null || _8 === void 0 ? void 0 : _8.data) === null || _9 === void 0 ? void 0 : _9.the_before_render;
|
|
21540
|
+
widgetNode.update = (_12 = (_11 = (_10 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_update) === null || _10 === void 0 ? void 0 : _10[0]) === null || _11 === void 0 ? void 0 : _11.data) === null || _12 === void 0 ? void 0 : _12.the_update;
|
|
21541
|
+
widgetNode.widgetId = widgetId;
|
|
21542
|
+
widgetNode.mount_child =
|
|
21543
|
+
(_15 = (_14 = (_13 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_mount_child) === null || _13 === void 0 ? void 0 : _13[0]) === null || _14 === void 0 ? void 0 : _14.data) === null || _15 === void 0 ? void 0 : _15.the_mount_child;
|
|
21544
|
+
const childWidgets = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_s_child;
|
|
21545
|
+
// if there are children present in the widget then convert the children to widget and put it inside of the tree.
|
|
21546
|
+
if (childWidgets === null || childWidgets === void 0 ? void 0 : childWidgets.length) {
|
|
21547
|
+
for (let i = 0; i < childWidgets.length; i++) {
|
|
21548
|
+
const childWidgetId = ((_19 = (_18 = (_17 = (_16 = childWidgets[i]) === null || _16 === void 0 ? void 0 : _16.data.the_child_widget) === null || _17 === void 0 ? void 0 : _17.the_child_widget_info) === null || _18 === void 0 ? void 0 : _18[0]) === null || _19 === void 0 ? void 0 : _19.id) ||
|
|
21549
|
+
((_24 = (_23 = (_22 = (_21 = (_20 = childWidgets[i]) === null || _20 === void 0 ? void 0 : _20.data.the_child_widget) === null || _21 === void 0 ? void 0 : _21.the_child_widget_parent) === null || _22 === void 0 ? void 0 : _22[0]) === null || _23 === void 0 ? void 0 : _23.data) === null || _24 === void 0 ? void 0 : _24.the_parent);
|
|
21550
|
+
const childWidget = yield getWidgetFromId(childWidgetId, visitedWidgets, token);
|
|
21551
|
+
const childWidgetTypeValue = (_30 = (_29 = (_28 = (_27 = (_26 = (_25 = childWidgets[i]) === null || _25 === void 0 ? void 0 : _25.data) === null || _26 === void 0 ? void 0 : _26.the_child_widget) === null || _27 === void 0 ? void 0 : _27.the_child_widget_type) === null || _28 === void 0 ? void 0 : _28[0]) === null || _29 === void 0 ? void 0 : _29.data) === null || _30 === void 0 ? void 0 : _30.the_type;
|
|
21552
|
+
const childWidgetWrapperId = (_36 = (_35 = (_34 = (_33 = (_32 = (_31 = childWidgets[i]) === null || _31 === void 0 ? void 0 : _31.data) === null || _32 === void 0 ? void 0 : _32.the_child_widget) === null || _33 === void 0 ? void 0 : _33.the_child_widget_wrapper) === null || _34 === void 0 ? void 0 : _34[0]) === null || _35 === void 0 ? void 0 : _35.data) === null || _36 === void 0 ? void 0 : _36.the_wrapper;
|
|
21553
|
+
if (childWidgetTypeValue == "null" || childWidgetTypeValue == null) {
|
|
21554
|
+
childWidget.type = "the_element_name";
|
|
21555
|
+
}
|
|
21556
|
+
else {
|
|
21557
|
+
childWidget.type = childWidgetTypeValue;
|
|
21558
|
+
}
|
|
21559
|
+
childWidget.wrapper = childWidgetWrapperId;
|
|
21560
|
+
widgetNode.children.push(childWidget);
|
|
21561
|
+
}
|
|
21562
|
+
}
|
|
21563
|
+
return widgetNode;
|
|
21564
|
+
}
|
|
21565
|
+
catch (ex) {
|
|
21566
|
+
console.error("error", ex);
|
|
21567
|
+
throw ex;
|
|
21568
|
+
}
|
|
21569
|
+
});
|
|
21570
|
+
}
|
|
21571
|
+
/**
|
|
21572
|
+
*
|
|
21573
|
+
* @param tree Widget tree from getWidgetFromId(widgetId);
|
|
21574
|
+
* @param parentElement this is the dom element on which we want to add our widget
|
|
21575
|
+
* @returns the widgetree with widgets attached inside of it.
|
|
21576
|
+
* Also this will add the tree to the dom.
|
|
21577
|
+
*/
|
|
21578
|
+
function convertWidgetTreeToWidget(tree_1, parentElement_1) {
|
|
21579
|
+
return __awaiter(this, arguments, void 0, function* (tree, parentElement, isMain = true, props) {
|
|
21580
|
+
var _a, _b;
|
|
21581
|
+
const newWidget = new _app__WEBPACK_IMPORTED_MODULE_0__.BuilderStatefulWidget();
|
|
21582
|
+
newWidget.html = tree.html;
|
|
21583
|
+
newWidget.widgetType = tree.type;
|
|
21584
|
+
newWidget.componentDidMountFunction = tree.before_render;
|
|
21585
|
+
newWidget.addEventFunction = tree.after_render;
|
|
21586
|
+
newWidget.mountChildWidgetsFunction = tree.mount_child;
|
|
21587
|
+
// newWidget.css = newWidget.css ? newWidget.css : "";
|
|
21588
|
+
if (props)
|
|
21589
|
+
newWidget.data = props;
|
|
21590
|
+
parentElement.innerHTML = "";
|
|
21591
|
+
const newParent = parentElement;
|
|
21592
|
+
//let newParent = appendWidgetContainerToParent(parentElement, tree.id, isMain);
|
|
21593
|
+
isMain = false;
|
|
21594
|
+
if (newParent) {
|
|
21595
|
+
yield newWidget.mount(newParent);
|
|
21596
|
+
tree.widget = newWidget;
|
|
21597
|
+
if (tree.children.length > 0) {
|
|
21598
|
+
if (((_a = newWidget.childWidgetElement) === null || _a === void 0 ? void 0 : _a.length) > 0) {
|
|
21599
|
+
for (let i = 0; i < ((_b = tree.children) === null || _b === void 0 ? void 0 : _b.length); i++) {
|
|
21600
|
+
const child = tree.children[i];
|
|
21601
|
+
for (let j = 0; j < newWidget.childWidgetElement.length; j++) {
|
|
21602
|
+
const widgetElement = newWidget.childWidgetElement[j];
|
|
21603
|
+
if (child.id ===
|
|
21604
|
+
Number(widgetElement.getAttribute("data-widgetid")) &&
|
|
21605
|
+
child.wrapper === widgetElement.id) {
|
|
21606
|
+
const clearedChildWidget = clearDraggedWidget(child);
|
|
21607
|
+
const childWidget = yield convertWidgetTreeToWidget(clearedChildWidget, widgetElement, isMain);
|
|
21608
|
+
newWidget.childWidgets.push(childWidget);
|
|
21609
|
+
newWidget.css =
|
|
21610
|
+
newWidget.css +
|
|
21611
|
+
`div[data-widgetid="${child.id}"] { ${child.css} }`;
|
|
21612
|
+
childWidget.dataChange((value) => {
|
|
21613
|
+
var _a;
|
|
21614
|
+
console.log("This is the data change in child", value);
|
|
21615
|
+
const type = (_a = value === null || value === void 0 ? void 0 : value.type) === null || _a === void 0 ? void 0 : _a.characterValue;
|
|
21616
|
+
if (type) {
|
|
21617
|
+
newWidget.childrenData[type] = value;
|
|
21618
|
+
}
|
|
21619
|
+
console.log("new child data", newWidget.childrenData);
|
|
21620
|
+
});
|
|
21621
|
+
}
|
|
21622
|
+
}
|
|
21623
|
+
}
|
|
21624
|
+
}
|
|
21625
|
+
}
|
|
21626
|
+
}
|
|
21627
|
+
console.log("newWidget ->", newWidget);
|
|
21628
|
+
// Unwrap specific containers
|
|
21629
|
+
yield unwrapContainers(parentElement, ".mftsccs-marking-element");
|
|
21630
|
+
yield unwrapContainers(parentElement, ".widget_container");
|
|
21631
|
+
return newWidget;
|
|
21632
|
+
});
|
|
21633
|
+
}
|
|
21634
|
+
function getWidgetCodeFromId(widgetId, token) {
|
|
21635
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
21636
|
+
try {
|
|
21637
|
+
const searchFirst = new _app__WEBPACK_IMPORTED_MODULE_0__.SearchQuery();
|
|
21638
|
+
searchFirst.composition = widgetId;
|
|
21639
|
+
searchFirst.fullLinkers = [
|
|
21640
|
+
"the_widget",
|
|
21641
|
+
"the_widget_widget",
|
|
21642
|
+
"the_widget_name",
|
|
21643
|
+
"the_widget_html",
|
|
21644
|
+
"the_widget_css",
|
|
21645
|
+
"the_widget_js",
|
|
21646
|
+
"the_widget_timestamp",
|
|
21647
|
+
"the_widget_type",
|
|
21648
|
+
"the_widget_after_render",
|
|
21649
|
+
"the_widget_before_render",
|
|
21650
|
+
"the_widget_update",
|
|
21651
|
+
"the_widget_mount_child",
|
|
21652
|
+
"the_widget_clean",
|
|
21653
|
+
"the_widget_s_child",
|
|
21654
|
+
"the_widget_version",
|
|
21655
|
+
"the_widget_origin",
|
|
21656
|
+
];
|
|
21657
|
+
searchFirst.inpage = 100;
|
|
21658
|
+
const searchSecond = new _app__WEBPACK_IMPORTED_MODULE_0__.SearchQuery();
|
|
21659
|
+
searchSecond.fullLinkers = [
|
|
21660
|
+
"the_child_widget",
|
|
21661
|
+
"the_child_widget_type",
|
|
21662
|
+
"the_child_widget_parent",
|
|
21663
|
+
"the_child_widget_wrapper",
|
|
21664
|
+
"the_child_widget_info",
|
|
21665
|
+
];
|
|
21666
|
+
searchSecond.inpage = 100;
|
|
21667
|
+
const queryParams = [searchFirst, searchSecond];
|
|
21668
|
+
const output = yield (0,_app__WEBPACK_IMPORTED_MODULE_0__.SearchLinkMultipleAll)(queryParams, token);
|
|
21669
|
+
console.log("getWidgetCodeFromId output ->", output);
|
|
21670
|
+
return output;
|
|
21671
|
+
}
|
|
21672
|
+
catch (error) {
|
|
21673
|
+
console.error("error", error);
|
|
21674
|
+
throw error;
|
|
21675
|
+
}
|
|
21676
|
+
});
|
|
21677
|
+
}
|
|
21678
|
+
function clearDraggedWidget(widgetTree) {
|
|
21679
|
+
widgetTree.html = widgetTree.html.replace(/<[^>]*\bclass=["'][^"']*\bwidget_container\b[^"']*["'][^>]*>/g, (match) => {
|
|
21680
|
+
return match.replace(/\bwidget_container\b/g, "").trim();
|
|
21681
|
+
});
|
|
21682
|
+
widgetTree.html = widgetTree.html.replace(/<[^>]*\bdraggable=["'][^"']*\btrue\b[^"']*["'][^>]*>/g, (match) => {
|
|
21683
|
+
return match.replace(/\btrue\b/g, "false").trim();
|
|
21684
|
+
});
|
|
21685
|
+
widgetTree.html = widgetTree.html.replace(/<[^>]*\bclass=["'][^"']*\bhover-element\b[^"']*["'][^>]*>/g, (match) => {
|
|
21686
|
+
return match.replace(/\bhover-element\b/g, "").trim();
|
|
21687
|
+
});
|
|
21688
|
+
widgetTree.html = widgetTree.html.replace(/<[^>]*\bclass=["'][^"']*\bwb-block\b[^"']*["'][^>]*>/g, (match) => {
|
|
21689
|
+
return match.replace(/\bwb-block\b/g, "").trim();
|
|
21690
|
+
});
|
|
21691
|
+
widgetTree.html = widgetTree.html.replace(/<[^>]*onclick="widgetSelected\(event\)"\s*,?\s*ondragover="_dragService\.dragOverWidgetElement\(event\)"\s*,?\s*ondrop="_dragService\.dropWidgetElement\(event\)"\s*,?\s*ondragstart="_dragService\.dragStartWidgetElement\(event\)"\s*,?\s*ondragend="_dragService\.dragEndWidgetElement\(event\)"[^>]*>/g, (match) => {
|
|
21692
|
+
return match
|
|
21693
|
+
.replace(/onclick="widgetSelected\(event\)"/g, 'onclick=""')
|
|
21694
|
+
.replace(/ondragover="_dragService\.dragOverWidgetElement\(event\)"/g, 'ondragover=""')
|
|
21695
|
+
.replace(/ondrop="_dragService\.dropWidgetElement\(event\)"/g, 'ondrop=""')
|
|
21696
|
+
.replace(/ondragstart="_dragService\.dragStartWidgetElement\(event\)"/g, 'ondragstart=""')
|
|
21697
|
+
.replace(/ondragend="_dragService\.dragEndWidgetElement\(event\)"/g, 'ondragend=""')
|
|
21698
|
+
.trim();
|
|
21699
|
+
});
|
|
21700
|
+
widgetTree.html = widgetTree.html.replace(/<[^>]*\bondragstart=["'][^"']*\b_dragService\.onWidgetDragStart\(event\)\b[^"']*["'][^>]*>/g, (match) => {
|
|
21701
|
+
return match
|
|
21702
|
+
.replace(/\b_dragService\.onWidgetDragStart\(event\)\b/g, "")
|
|
21703
|
+
.trim();
|
|
21704
|
+
});
|
|
21705
|
+
return widgetTree;
|
|
21706
|
+
}
|
|
21707
|
+
function unwrapWidgetContainers(widgetContainerEl, queryParam) {
|
|
21708
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
21709
|
+
// Select all div elements with the queryParam
|
|
21710
|
+
const widgetContainers = widgetContainerEl.querySelectorAll(queryParam);
|
|
21711
|
+
// Loop through each div and replace it with its inner content
|
|
21712
|
+
widgetContainers.forEach((element) => {
|
|
21713
|
+
// Move all child nodes of the div before the div
|
|
21714
|
+
while (element.firstChild) {
|
|
21715
|
+
element.parentNode.insertBefore(element.firstChild, element);
|
|
21716
|
+
}
|
|
21717
|
+
// Remove the empty div
|
|
21718
|
+
element.remove();
|
|
21719
|
+
});
|
|
21720
|
+
return widgetContainerEl;
|
|
21721
|
+
});
|
|
21722
|
+
}
|
|
21723
|
+
function unwrapContainers(parentElement, selector) {
|
|
21724
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
21725
|
+
const elements = parentElement.querySelectorAll(selector);
|
|
21726
|
+
for (const el of elements) {
|
|
21727
|
+
const parent = el.parentElement;
|
|
21728
|
+
if (parent) {
|
|
21729
|
+
while (el.firstChild) {
|
|
21730
|
+
const unwrappedChild = yield unwrapWidgetContainers(el.firstChild, selector);
|
|
21731
|
+
parent.insertBefore(unwrappedChild, el);
|
|
21732
|
+
}
|
|
21733
|
+
parent.removeChild(el);
|
|
21734
|
+
}
|
|
21735
|
+
}
|
|
21736
|
+
});
|
|
21737
|
+
}
|
|
21738
|
+
|
|
21739
|
+
|
|
21271
21740
|
/***/ }),
|
|
21272
21741
|
|
|
21273
21742
|
/***/ "./src/Widgets/StatefulWidget.ts":
|
|
@@ -21306,6 +21775,10 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
21306
21775
|
*/
|
|
21307
21776
|
this.childWidgets = [];
|
|
21308
21777
|
this.childWidgetElement = [];
|
|
21778
|
+
/**
|
|
21779
|
+
* store widget state datas to pass through child widgets
|
|
21780
|
+
*/
|
|
21781
|
+
this.widgetState = {};
|
|
21309
21782
|
/**
|
|
21310
21783
|
* This is the id of the parentElement of this widget.
|
|
21311
21784
|
*/
|
|
@@ -21444,6 +21917,43 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
21444
21917
|
*/
|
|
21445
21918
|
after_render() {
|
|
21446
21919
|
}
|
|
21920
|
+
/**
|
|
21921
|
+
* render child widgets
|
|
21922
|
+
*/
|
|
21923
|
+
renderChildWidgets() {
|
|
21924
|
+
var _a;
|
|
21925
|
+
(_a = this.childWidgets) === null || _a === void 0 ? void 0 : _a.forEach((child) => {
|
|
21926
|
+
child.render();
|
|
21927
|
+
});
|
|
21928
|
+
}
|
|
21929
|
+
/**
|
|
21930
|
+
* save widget state data as key and value pair.
|
|
21931
|
+
*/
|
|
21932
|
+
setWidgetState(key, value) {
|
|
21933
|
+
this.widgetState[key] = value;
|
|
21934
|
+
let thisWidget = this;
|
|
21935
|
+
function updateChildStateRecursive(widget) {
|
|
21936
|
+
if (!widget) {
|
|
21937
|
+
return;
|
|
21938
|
+
}
|
|
21939
|
+
widget.childWidgets.forEach((child) => {
|
|
21940
|
+
child.widgetState = Object.assign(Object.assign({}, child.widgetState), widget.widgetState);
|
|
21941
|
+
});
|
|
21942
|
+
}
|
|
21943
|
+
updateChildStateRecursive(thisWidget);
|
|
21944
|
+
this.renderChildWidgets();
|
|
21945
|
+
}
|
|
21946
|
+
/**
|
|
21947
|
+
* get the saved widget state from stateful widget
|
|
21948
|
+
*/
|
|
21949
|
+
getWidgetState(key, defaultValue) {
|
|
21950
|
+
if (Object.keys.length && this.widgetState[key]) {
|
|
21951
|
+
return this.widgetState[key];
|
|
21952
|
+
}
|
|
21953
|
+
else {
|
|
21954
|
+
return defaultValue;
|
|
21955
|
+
}
|
|
21956
|
+
}
|
|
21447
21957
|
}
|
|
21448
21958
|
|
|
21449
21959
|
|
|
@@ -22513,52 +23023,52 @@ function searchLinkMultipleListener(searchQueries, token, format = _Constants_Fo
|
|
|
22513
23023
|
|
|
22514
23024
|
__webpack_require__.r(__webpack_exports__);
|
|
22515
23025
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22516
|
-
/* harmony export */ ADMIN: () => (/* reexport safe */
|
|
22517
|
-
/* harmony export */ ALLID: () => (/* reexport safe */
|
|
22518
|
-
/* harmony export */ AccessTracker: () => (/* reexport safe */
|
|
22519
|
-
/* harmony export */ AddGhostConcept: () => (/* reexport safe */
|
|
22520
|
-
/* harmony export */ Anomaly: () => (/* reexport safe */
|
|
22521
|
-
/* harmony export */ BaseUrl: () => (/* reexport safe */
|
|
22522
|
-
/* harmony export */ BinaryTree: () => (/* reexport safe */
|
|
22523
|
-
/* harmony export */ BuilderStatefulWidget: () => (/* reexport safe */
|
|
22524
|
-
/* harmony export */ Composition: () => (/* reexport safe */
|
|
22525
|
-
/* harmony export */ CompositionBinaryTree: () => (/* reexport safe */
|
|
22526
|
-
/* harmony export */ CompositionNode: () => (/* reexport safe */
|
|
22527
|
-
/* harmony export */ Concept: () => (/* reexport safe */
|
|
22528
|
-
/* harmony export */ ConceptsData: () => (/* reexport safe */
|
|
22529
|
-
/* harmony export */ Connection: () => (/* reexport safe */
|
|
22530
|
-
/* harmony export */ ConnectionData: () => (/* reexport safe */
|
|
23026
|
+
/* harmony export */ ADMIN: () => (/* reexport safe */ _Constants_AccessConstants__WEBPACK_IMPORTED_MODULE_67__.ADMIN),
|
|
23027
|
+
/* harmony export */ ALLID: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_66__.ALLID),
|
|
23028
|
+
/* harmony export */ AccessTracker: () => (/* reexport safe */ _AccessTracker_accessTracker__WEBPACK_IMPORTED_MODULE_118__.AccessTracker),
|
|
23029
|
+
/* harmony export */ AddGhostConcept: () => (/* reexport safe */ _Services_User_UserTranslation__WEBPACK_IMPORTED_MODULE_51__.AddGhostConcept),
|
|
23030
|
+
/* harmony export */ Anomaly: () => (/* reexport safe */ _Anomaly_anomaly__WEBPACK_IMPORTED_MODULE_109__.Anomaly),
|
|
23031
|
+
/* harmony export */ BaseUrl: () => (/* reexport safe */ _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl),
|
|
23032
|
+
/* harmony export */ BinaryTree: () => (/* reexport safe */ _DataStructures_BinaryTree__WEBPACK_IMPORTED_MODULE_84__.BinaryTree),
|
|
23033
|
+
/* harmony export */ BuilderStatefulWidget: () => (/* reexport safe */ _Widgets_BuilderStatefulWidget__WEBPACK_IMPORTED_MODULE_107__.BuilderStatefulWidget),
|
|
23034
|
+
/* harmony export */ Composition: () => (/* reexport safe */ _DataStructures_Composition_Composition__WEBPACK_IMPORTED_MODULE_88__.Composition),
|
|
23035
|
+
/* harmony export */ CompositionBinaryTree: () => (/* reexport safe */ _DataStructures_Composition_CompositionBinaryTree__WEBPACK_IMPORTED_MODULE_89__.CompositionBinaryTree),
|
|
23036
|
+
/* harmony export */ CompositionNode: () => (/* reexport safe */ _DataStructures_Composition_CompositionNode__WEBPACK_IMPORTED_MODULE_90__.CompositionNode),
|
|
23037
|
+
/* harmony export */ Concept: () => (/* reexport safe */ _DataStructures_Concept__WEBPACK_IMPORTED_MODULE_78__.Concept),
|
|
23038
|
+
/* harmony export */ ConceptsData: () => (/* reexport safe */ _DataStructures_ConceptData__WEBPACK_IMPORTED_MODULE_82__.ConceptsData),
|
|
23039
|
+
/* harmony export */ Connection: () => (/* reexport safe */ _DataStructures_Connection__WEBPACK_IMPORTED_MODULE_81__.Connection),
|
|
23040
|
+
/* harmony export */ ConnectionData: () => (/* reexport safe */ _DataStructures_ConnectionData__WEBPACK_IMPORTED_MODULE_83__.ConnectionData),
|
|
22531
23041
|
/* harmony export */ CreateComposition: () => (/* reexport safe */ _Services_CreateTheComposition__WEBPACK_IMPORTED_MODULE_9__["default"]),
|
|
22532
|
-
/* harmony export */ CreateConnectionBetweenEntityLocal: () => (/* reexport safe */
|
|
23042
|
+
/* harmony export */ CreateConnectionBetweenEntityLocal: () => (/* reexport safe */ _Services_CreateConnection_CreateConnectionEntity__WEBPACK_IMPORTED_MODULE_119__.CreateConnectionBetweenEntityLocal),
|
|
22533
23043
|
/* harmony export */ CreateConnectionBetweenTwoConcepts: () => (/* reexport safe */ _Services_CreateConnectionBetweenTwoConcepts__WEBPACK_IMPORTED_MODULE_11__.CreateConnectionBetweenTwoConcepts),
|
|
22534
23044
|
/* harmony export */ CreateConnectionBetweenTwoConceptsGeneral: () => (/* reexport safe */ _Services_CreateConnectionBetweenTwoConcepts__WEBPACK_IMPORTED_MODULE_11__.CreateConnectionBetweenTwoConceptsGeneral),
|
|
22535
|
-
/* harmony export */ CreateConnectionBetweenTwoConceptsLocal: () => (/* reexport safe */
|
|
23045
|
+
/* harmony export */ CreateConnectionBetweenTwoConceptsLocal: () => (/* reexport safe */ _Services_Local_CreateConnectionBetweenTwoConceptsLocal__WEBPACK_IMPORTED_MODULE_61__.CreateConnectionBetweenTwoConceptsLocal),
|
|
22536
23046
|
/* harmony export */ CreateDefaultConcept: () => (/* reexport safe */ _Services_CreateDefaultConcept__WEBPACK_IMPORTED_MODULE_19__.CreateDefaultConcept),
|
|
22537
|
-
/* harmony export */ CreateDefaultLConcept: () => (/* reexport safe */
|
|
22538
|
-
/* harmony export */ CreateSession: () => (/* reexport safe */
|
|
22539
|
-
/* harmony export */ CreateSessionVisit: () => (/* reexport safe */
|
|
23047
|
+
/* harmony export */ CreateDefaultLConcept: () => (/* reexport safe */ _Services_Local_CreateDefaultLConcept__WEBPACK_IMPORTED_MODULE_48__.CreateDefaultLConcept),
|
|
23048
|
+
/* harmony export */ CreateSession: () => (/* reexport safe */ _Api_Session_CreateSession__WEBPACK_IMPORTED_MODULE_43__.CreateSession),
|
|
23049
|
+
/* harmony export */ CreateSessionVisit: () => (/* reexport safe */ _Api_Session_CreateSessionVisit__WEBPACK_IMPORTED_MODULE_44__.CreateSessionVisit),
|
|
22540
23050
|
/* harmony export */ CreateTheCompositionLocal: () => (/* reexport safe */ _Services_Local_CreateTheCompositionLocal__WEBPACK_IMPORTED_MODULE_10__.CreateTheCompositionLocal),
|
|
22541
|
-
/* harmony export */ CreateTheCompositionWithCache: () => (/* reexport safe */
|
|
23051
|
+
/* harmony export */ CreateTheCompositionWithCache: () => (/* reexport safe */ _Services_Composition_CreateCompositionCache__WEBPACK_IMPORTED_MODULE_47__.CreateTheCompositionWithCache),
|
|
22542
23052
|
/* harmony export */ CreateTheConnection: () => (/* reexport safe */ _Services_CreateTheConnection__WEBPACK_IMPORTED_MODULE_16__.createTheConnection),
|
|
22543
|
-
/* harmony export */ CreateTheConnectionGeneral: () => (/* reexport safe */
|
|
22544
|
-
/* harmony export */ CreateTheConnectionLocal: () => (/* reexport safe */
|
|
22545
|
-
/* harmony export */ DATAID: () => (/* reexport safe */
|
|
22546
|
-
/* harmony export */ DATAIDDATE: () => (/* reexport safe */
|
|
22547
|
-
/* harmony export */ DelayFunctionExecution: () => (/* reexport safe */
|
|
23053
|
+
/* harmony export */ CreateTheConnectionGeneral: () => (/* reexport safe */ _Services_CreateTheConnectionGeneral__WEBPACK_IMPORTED_MODULE_49__.CreateTheConnectionGeneral),
|
|
23054
|
+
/* harmony export */ CreateTheConnectionLocal: () => (/* reexport safe */ _Services_Local_CreateTheConnectionLocal__WEBPACK_IMPORTED_MODULE_50__.CreateTheConnectionLocal),
|
|
23055
|
+
/* harmony export */ DATAID: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_66__.DATAID),
|
|
23056
|
+
/* harmony export */ DATAIDDATE: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_66__.DATAIDDATE),
|
|
23057
|
+
/* harmony export */ DelayFunctionExecution: () => (/* reexport safe */ _Services_Common_DelayFunction__WEBPACK_IMPORTED_MODULE_64__.DelayFunctionExecution),
|
|
22548
23058
|
/* harmony export */ DeleteConceptById: () => (/* reexport safe */ _Services_DeleteConcept__WEBPACK_IMPORTED_MODULE_24__.DeleteConceptById),
|
|
22549
|
-
/* harmony export */ DeleteConceptLocal: () => (/* reexport safe */
|
|
23059
|
+
/* harmony export */ DeleteConceptLocal: () => (/* reexport safe */ _Services_Local_DeleteConceptLocal__WEBPACK_IMPORTED_MODULE_62__.DeleteConceptLocal),
|
|
22550
23060
|
/* harmony export */ DeleteConnectionById: () => (/* reexport safe */ _Services_DeleteConnection__WEBPACK_IMPORTED_MODULE_25__.DeleteConnectionById),
|
|
22551
|
-
/* harmony export */ DeleteConnectionByType: () => (/* reexport safe */
|
|
23061
|
+
/* harmony export */ DeleteConnectionByType: () => (/* reexport safe */ _Services_DeleteConnectionByType__WEBPACK_IMPORTED_MODULE_113__.DeleteConnectionByType),
|
|
22552
23062
|
/* harmony export */ DeleteUser: () => (/* reexport safe */ _Services_DeleteConcept__WEBPACK_IMPORTED_MODULE_24__.DeleteUser),
|
|
22553
|
-
/* harmony export */ DependencyObserver: () => (/* reexport safe */
|
|
22554
|
-
/* harmony export */ FilterSearch: () => (/* reexport safe */
|
|
22555
|
-
/* harmony export */ FormatFromConnections: () => (/* reexport safe */
|
|
22556
|
-
/* harmony export */ FormatFromConnectionsAltered: () => (/* reexport safe */
|
|
22557
|
-
/* harmony export */ FreeschemaQuery: () => (/* reexport safe */
|
|
22558
|
-
/* harmony export */ FreeschemaQueryApi: () => (/* reexport safe */
|
|
23063
|
+
/* harmony export */ DependencyObserver: () => (/* reexport safe */ _WrapperFunctions_DepenedencyObserver__WEBPACK_IMPORTED_MODULE_69__.DependencyObserver),
|
|
23064
|
+
/* harmony export */ FilterSearch: () => (/* reexport safe */ _DataStructures_FilterSearch__WEBPACK_IMPORTED_MODULE_93__.FilterSearch),
|
|
23065
|
+
/* harmony export */ FormatFromConnections: () => (/* reexport safe */ _Services_Search_SearchLinkMultiple__WEBPACK_IMPORTED_MODULE_52__.FormatFromConnections),
|
|
23066
|
+
/* harmony export */ FormatFromConnectionsAltered: () => (/* reexport safe */ _Services_Search_SearchLinkMultiple__WEBPACK_IMPORTED_MODULE_52__.FormatFromConnectionsAltered),
|
|
23067
|
+
/* harmony export */ FreeschemaQuery: () => (/* reexport safe */ _DataStructures_Search_FreeschemaQuery__WEBPACK_IMPORTED_MODULE_114__.FreeschemaQuery),
|
|
23068
|
+
/* harmony export */ FreeschemaQueryApi: () => (/* reexport safe */ _Api_Search_FreeschemaQueryApi__WEBPACK_IMPORTED_MODULE_115__.FreeschemaQueryApi),
|
|
22559
23069
|
/* harmony export */ GetAllConnectionsOfComposition: () => (/* reexport safe */ _Api_GetAllConnectionsOfComposition__WEBPACK_IMPORTED_MODULE_6__.GetAllConnectionsOfComposition),
|
|
22560
|
-
/* harmony export */ GetAllConnectionsOfCompositionBulk: () => (/* reexport safe */
|
|
22561
|
-
/* harmony export */ GetAllTheConnectionsByTypeAndOfTheConcept: () => (/* reexport safe */
|
|
23070
|
+
/* harmony export */ GetAllConnectionsOfCompositionBulk: () => (/* reexport safe */ _Api_GetAllConnectionsOfCompositionBulk__WEBPACK_IMPORTED_MODULE_34__.GetAllConnectionsOfCompositionBulk),
|
|
23071
|
+
/* harmony export */ GetAllTheConnectionsByTypeAndOfTheConcept: () => (/* reexport safe */ _Services_DeleteConnectionByType__WEBPACK_IMPORTED_MODULE_113__.GetAllTheConnectionsByTypeAndOfTheConcept),
|
|
22562
23072
|
/* harmony export */ GetComposition: () => (/* reexport safe */ _Services_GetComposition__WEBPACK_IMPORTED_MODULE_7__.GetComposition),
|
|
22563
23073
|
/* harmony export */ GetCompositionBulk: () => (/* reexport safe */ _Services_GetCompositionBulk__WEBPACK_IMPORTED_MODULE_30__.GetCompositionBulk),
|
|
22564
23074
|
/* harmony export */ GetCompositionBulkWithDataId: () => (/* reexport safe */ _Services_GetCompositionBulk__WEBPACK_IMPORTED_MODULE_30__.GetCompositionBulkWithDataId),
|
|
@@ -22572,97 +23082,97 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22572
23082
|
/* harmony export */ GetCompositionList: () => (/* reexport safe */ _Services_GetCompositionList__WEBPACK_IMPORTED_MODULE_4__.GetCompositionList),
|
|
22573
23083
|
/* harmony export */ GetCompositionListAll: () => (/* reexport safe */ _Services_GetCompositionList__WEBPACK_IMPORTED_MODULE_4__.GetCompositionListAll),
|
|
22574
23084
|
/* harmony export */ GetCompositionListAllWithId: () => (/* reexport safe */ _Services_GetCompositionList__WEBPACK_IMPORTED_MODULE_4__.GetCompositionListAllWithId),
|
|
22575
|
-
/* harmony export */ GetCompositionListListener: () => (/* reexport safe */
|
|
23085
|
+
/* harmony export */ GetCompositionListListener: () => (/* reexport safe */ _WrapperFunctions_GetCompositionListObservable__WEBPACK_IMPORTED_MODULE_72__.GetCompositionListListener),
|
|
22576
23086
|
/* harmony export */ GetCompositionListLocal: () => (/* reexport safe */ _Services_Local_GetCompositionListLocal__WEBPACK_IMPORTED_MODULE_5__.GetCompositionListLocal),
|
|
22577
23087
|
/* harmony export */ GetCompositionListLocalWithId: () => (/* reexport safe */ _Services_Local_GetCompositionListLocal__WEBPACK_IMPORTED_MODULE_5__.GetCompositionListLocalWithId),
|
|
22578
23088
|
/* harmony export */ GetCompositionListWithId: () => (/* reexport safe */ _Services_GetCompositionList__WEBPACK_IMPORTED_MODULE_4__.GetCompositionListWithId),
|
|
22579
23089
|
/* harmony export */ GetCompositionListWithIdUpdated: () => (/* reexport safe */ _Services_GetCompositionList__WEBPACK_IMPORTED_MODULE_4__.GetCompositionListWithIdUpdated),
|
|
22580
|
-
/* harmony export */ GetCompositionListener: () => (/* reexport safe */
|
|
23090
|
+
/* harmony export */ GetCompositionListener: () => (/* reexport safe */ _WrapperFunctions_GetCompositionObservable__WEBPACK_IMPORTED_MODULE_71__.GetCompositionListener),
|
|
22581
23091
|
/* harmony export */ GetCompositionLocal: () => (/* reexport safe */ _Services_Local_GetCompositionLocal__WEBPACK_IMPORTED_MODULE_8__.GetCompositionLocal),
|
|
22582
23092
|
/* harmony export */ GetCompositionLocalWithId: () => (/* reexport safe */ _Services_Local_GetCompositionLocal__WEBPACK_IMPORTED_MODULE_8__.GetCompositionLocalWithId),
|
|
22583
23093
|
/* harmony export */ GetCompositionWithAllIds: () => (/* reexport safe */ _Services_GetComposition__WEBPACK_IMPORTED_MODULE_7__.GetCompositionWithAllIds),
|
|
22584
|
-
/* harmony export */ GetCompositionWithCache: () => (/* reexport safe */
|
|
22585
|
-
/* harmony export */ GetCompositionWithDataIdBulk: () => (/* reexport safe */
|
|
22586
|
-
/* harmony export */ GetCompositionWithDataIdWithCache: () => (/* reexport safe */
|
|
23094
|
+
/* harmony export */ GetCompositionWithCache: () => (/* reexport safe */ _Services_Composition_CompositionCache__WEBPACK_IMPORTED_MODULE_42__.GetCompositionWithCache),
|
|
23095
|
+
/* harmony export */ GetCompositionWithDataIdBulk: () => (/* reexport safe */ _Services_Composition_CompositionCache__WEBPACK_IMPORTED_MODULE_42__.GetCompositionWithDataIdBulk),
|
|
23096
|
+
/* harmony export */ GetCompositionWithDataIdWithCache: () => (/* reexport safe */ _Services_Composition_CompositionCache__WEBPACK_IMPORTED_MODULE_42__.GetCompositionWithDataIdWithCache),
|
|
22587
23097
|
/* harmony export */ GetCompositionWithId: () => (/* reexport safe */ _Services_GetComposition__WEBPACK_IMPORTED_MODULE_7__.GetCompositionWithId),
|
|
22588
23098
|
/* harmony export */ GetCompositionWithIdAndDateFromMemory: () => (/* reexport safe */ _Services_GetComposition__WEBPACK_IMPORTED_MODULE_7__.GetCompositionWithIdAndDateFromMemory),
|
|
22589
|
-
/* harmony export */ GetConceptBulk: () => (/* reexport safe */
|
|
23099
|
+
/* harmony export */ GetConceptBulk: () => (/* reexport safe */ _Api_GetConceptBulk__WEBPACK_IMPORTED_MODULE_32__.GetConceptBulk),
|
|
22590
23100
|
/* harmony export */ GetConceptByCharacter: () => (/* reexport safe */ _Services_GetConceptByCharacter__WEBPACK_IMPORTED_MODULE_17__["default"]),
|
|
22591
|
-
/* harmony export */ GetConceptByCharacterAndCategoryLocal: () => (/* reexport safe */
|
|
22592
|
-
/* harmony export */ GetConceptByCharacterAndType: () => (/* reexport safe */
|
|
22593
|
-
/* harmony export */ GetConnectionBetweenTwoConceptsLinker: () => (/* reexport safe */
|
|
22594
|
-
/* harmony export */ GetConnectionBulk: () => (/* reexport safe */
|
|
23101
|
+
/* harmony export */ GetConceptByCharacterAndCategoryLocal: () => (/* reexport safe */ _Services_Local_GetConceptByCharacterLocal__WEBPACK_IMPORTED_MODULE_56__.GetConceptByCharacterAndCategoryLocal),
|
|
23102
|
+
/* harmony export */ GetConceptByCharacterAndType: () => (/* reexport safe */ _Api_GetConceptByCharacterAndType__WEBPACK_IMPORTED_MODULE_65__.GetConceptByCharacterAndType),
|
|
23103
|
+
/* harmony export */ GetConnectionBetweenTwoConceptsLinker: () => (/* reexport safe */ _Services_GetConnectionBetweenTwoConceptsLinker__WEBPACK_IMPORTED_MODULE_63__.GetConnectionBetweenTwoConceptsLinker),
|
|
23104
|
+
/* harmony export */ GetConnectionBulk: () => (/* reexport safe */ _Api_GetConnectionBulk__WEBPACK_IMPORTED_MODULE_33__.GetConnectionBulk),
|
|
22595
23105
|
/* harmony export */ GetConnectionById: () => (/* reexport safe */ _Services_GetConnections__WEBPACK_IMPORTED_MODULE_27__.GetConnectionById),
|
|
22596
23106
|
/* harmony export */ GetConnectionDataPrefetch: () => (/* reexport safe */ _Services_GetCompositionBulk__WEBPACK_IMPORTED_MODULE_30__.GetConnectionDataPrefetch),
|
|
22597
|
-
/* harmony export */ GetConnectionOfTheConcept: () => (/* reexport safe */
|
|
23107
|
+
/* harmony export */ GetConnectionOfTheConcept: () => (/* reexport safe */ _Api_GetConnectionOfTheConcept__WEBPACK_IMPORTED_MODULE_36__.GetConnectionOfTheConcept),
|
|
22598
23108
|
/* harmony export */ GetLink: () => (/* reexport safe */ _Services_GetLink__WEBPACK_IMPORTED_MODULE_18__.GetLink),
|
|
22599
|
-
/* harmony export */ GetLinkListListener: () => (/* reexport safe */
|
|
22600
|
-
/* harmony export */ GetLinkListener: () => (/* reexport safe */
|
|
23109
|
+
/* harmony export */ GetLinkListListener: () => (/* reexport safe */ _WrapperFunctions_GetLinkListObservable__WEBPACK_IMPORTED_MODULE_76__.GetLinkListListener),
|
|
23110
|
+
/* harmony export */ GetLinkListener: () => (/* reexport safe */ _WrapperFunctions_GetLinkObservable__WEBPACK_IMPORTED_MODULE_74__.GetLinkListener),
|
|
22601
23111
|
/* harmony export */ GetLinkRaw: () => (/* reexport safe */ _Services_GetLink__WEBPACK_IMPORTED_MODULE_18__.GetLinkRaw),
|
|
22602
23112
|
/* harmony export */ GetLinkerConnectionFromConcepts: () => (/* reexport safe */ _Services_GetLinkerConnectionFromConcept__WEBPACK_IMPORTED_MODULE_23__.GetLinkerConnectionFromConcepts),
|
|
22603
23113
|
/* harmony export */ GetLinkerConnectionToConcepts: () => (/* reexport safe */ _Services_GetLinkerConnectionFromConcept__WEBPACK_IMPORTED_MODULE_23__.GetLinkerConnectionToConcepts),
|
|
22604
|
-
/* harmony export */ GetRelation: () => (/* reexport safe */
|
|
22605
|
-
/* harmony export */ GetRelationLocal: () => (/* reexport safe */
|
|
22606
|
-
/* harmony export */ GetRelationRaw: () => (/* reexport safe */
|
|
23114
|
+
/* harmony export */ GetRelation: () => (/* reexport safe */ _Services_GetRelation__WEBPACK_IMPORTED_MODULE_45__.GetRelation),
|
|
23115
|
+
/* harmony export */ GetRelationLocal: () => (/* reexport safe */ _Services_Local_GetRelationLocal__WEBPACK_IMPORTED_MODULE_55__.GetRelationLocal),
|
|
23116
|
+
/* harmony export */ GetRelationRaw: () => (/* reexport safe */ _Services_GetRelation__WEBPACK_IMPORTED_MODULE_45__.GetRelationRaw),
|
|
22607
23117
|
/* harmony export */ GetTheConcept: () => (/* reexport safe */ _Services_GetTheConcept__WEBPACK_IMPORTED_MODULE_12__["default"]),
|
|
22608
|
-
/* harmony export */ GetTheConceptLocal: () => (/* reexport safe */
|
|
22609
|
-
/* harmony export */ GetUserGhostId: () => (/* reexport safe */
|
|
22610
|
-
/* harmony export */ JUSTDATA: () => (/* reexport safe */
|
|
22611
|
-
/* harmony export */ LConcept: () => (/* reexport safe */
|
|
22612
|
-
/* harmony export */ LConnection: () => (/* reexport safe */
|
|
22613
|
-
/* harmony export */ LISTNORMAL: () => (/* reexport safe */
|
|
22614
|
-
/* harmony export */ LocalConceptsData: () => (/* reexport safe */
|
|
22615
|
-
/* harmony export */ LocalSyncData: () => (/* reexport safe */
|
|
22616
|
-
/* harmony export */ LocalTransaction: () => (/* reexport safe */
|
|
22617
|
-
/* harmony export */ Logger: () => (/* reexport safe */
|
|
22618
|
-
/* harmony export */ LoginToBackend: () => (/* reexport safe */
|
|
23118
|
+
/* harmony export */ GetTheConceptLocal: () => (/* reexport safe */ _Services_Local_GetTheConceptLocal__WEBPACK_IMPORTED_MODULE_53__.GetTheConceptLocal),
|
|
23119
|
+
/* harmony export */ GetUserGhostId: () => (/* reexport safe */ _Services_User_UserTranslation__WEBPACK_IMPORTED_MODULE_51__.GetUserGhostId),
|
|
23120
|
+
/* harmony export */ JUSTDATA: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_66__.JUSTDATA),
|
|
23121
|
+
/* harmony export */ LConcept: () => (/* reexport safe */ _DataStructures_Local_LConcept__WEBPACK_IMPORTED_MODULE_79__.LConcept),
|
|
23122
|
+
/* harmony export */ LConnection: () => (/* reexport safe */ _DataStructures_Local_LConnection__WEBPACK_IMPORTED_MODULE_80__.LConnection),
|
|
23123
|
+
/* harmony export */ LISTNORMAL: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_66__.LISTNORMAL),
|
|
23124
|
+
/* harmony export */ LocalConceptsData: () => (/* reexport safe */ _DataStructures_Local_LocalConceptData__WEBPACK_IMPORTED_MODULE_95__.LocalConceptsData),
|
|
23125
|
+
/* harmony export */ LocalSyncData: () => (/* reexport safe */ _DataStructures_Local_LocalSyncData__WEBPACK_IMPORTED_MODULE_91__.LocalSyncData),
|
|
23126
|
+
/* harmony export */ LocalTransaction: () => (/* reexport safe */ _Services_Transaction_LocalTransaction__WEBPACK_IMPORTED_MODULE_108__.LocalTransaction),
|
|
23127
|
+
/* harmony export */ Logger: () => (/* reexport safe */ _Middleware_logger_service__WEBPACK_IMPORTED_MODULE_102__.Logger),
|
|
23128
|
+
/* harmony export */ LoginToBackend: () => (/* reexport safe */ _Api_Login__WEBPACK_IMPORTED_MODULE_35__.LoginToBackend),
|
|
22619
23129
|
/* harmony export */ MakeTheInstanceConcept: () => (/* reexport safe */ _Services_MakeTheInstanceConcept__WEBPACK_IMPORTED_MODULE_13__["default"]),
|
|
22620
23130
|
/* harmony export */ MakeTheInstanceConceptLocal: () => (/* reexport safe */ _Services_Local_MakeTheInstanceConceptLocal__WEBPACK_IMPORTED_MODULE_14__.MakeTheInstanceConceptLocal),
|
|
22621
23131
|
/* harmony export */ MakeTheTimestamp: () => (/* reexport safe */ _Services_MakeTheTimestamp__WEBPACK_IMPORTED_MODULE_28__.MakeTheTimestamp),
|
|
22622
23132
|
/* harmony export */ MakeTheTypeConcept: () => (/* reexport safe */ _Services_MakeTheTypeConcept__WEBPACK_IMPORTED_MODULE_21__.MakeTheTypeConcept),
|
|
22623
23133
|
/* harmony export */ MakeTheTypeConceptApi: () => (/* reexport safe */ _Api_MakeTheTypeConceptApi__WEBPACK_IMPORTED_MODULE_22__.MakeTheTypeConceptApi),
|
|
22624
23134
|
/* harmony export */ MakeTheTypeConceptLocal: () => (/* reexport safe */ _Services_Local_MakeTheTypeLocal__WEBPACK_IMPORTED_MODULE_20__.MakeTheTypeConceptLocal),
|
|
22625
|
-
/* harmony export */ NORMAL: () => (/* reexport safe */
|
|
22626
|
-
/* harmony export */ PRIVATE: () => (/* reexport safe */
|
|
22627
|
-
/* harmony export */ PUBLIC: () => (/* reexport safe */
|
|
22628
|
-
/* harmony export */ PatcherStructure: () => (/* reexport safe */
|
|
22629
|
-
/* harmony export */ RAW: () => (/* reexport safe */
|
|
23135
|
+
/* harmony export */ NORMAL: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_66__.NORMAL),
|
|
23136
|
+
/* harmony export */ PRIVATE: () => (/* reexport safe */ _Constants_AccessConstants__WEBPACK_IMPORTED_MODULE_67__.PRIVATE),
|
|
23137
|
+
/* harmony export */ PUBLIC: () => (/* reexport safe */ _Constants_AccessConstants__WEBPACK_IMPORTED_MODULE_67__.PUBLIC),
|
|
23138
|
+
/* harmony export */ PatcherStructure: () => (/* reexport safe */ _DataStructures_PatcherStructure__WEBPACK_IMPORTED_MODULE_86__.PatcherStructure),
|
|
23139
|
+
/* harmony export */ RAW: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_66__.RAW),
|
|
22630
23140
|
/* harmony export */ RecursiveSearchApi: () => (/* reexport safe */ _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__.RecursiveSearchApi),
|
|
22631
23141
|
/* harmony export */ RecursiveSearchApiNewRawFullLinker: () => (/* reexport safe */ _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__.RecursiveSearchApiNewRawFullLinker),
|
|
22632
23142
|
/* harmony export */ RecursiveSearchApiRaw: () => (/* reexport safe */ _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__.RecursiveSearchApiRaw),
|
|
22633
23143
|
/* harmony export */ RecursiveSearchApiRawFullLinker: () => (/* reexport safe */ _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__.RecursiveSearchApiRawFullLinker),
|
|
22634
23144
|
/* harmony export */ RecursiveSearchApiWithInternalConnections: () => (/* reexport safe */ _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__.RecursiveSearchApiWithInternalConnections),
|
|
22635
|
-
/* harmony export */ RecursiveSearchListener: () => (/* reexport safe */
|
|
22636
|
-
/* harmony export */ SchemaQueryListener: () => (/* reexport safe */
|
|
22637
|
-
/* harmony export */ SearchAllConcepts: () => (/* reexport safe */
|
|
22638
|
-
/* harmony export */ SearchLinkInternal: () => (/* reexport safe */
|
|
22639
|
-
/* harmony export */ SearchLinkInternalAll: () => (/* reexport safe */
|
|
22640
|
-
/* harmony export */ SearchLinkMultipleAll: () => (/* reexport safe */
|
|
22641
|
-
/* harmony export */ SearchLinkMultipleAllObservable: () => (/* reexport safe */
|
|
23145
|
+
/* harmony export */ RecursiveSearchListener: () => (/* reexport safe */ _WrapperFunctions_RecursiveSearchObservable__WEBPACK_IMPORTED_MODULE_75__.RecursiveSearchListener),
|
|
23146
|
+
/* harmony export */ SchemaQueryListener: () => (/* reexport safe */ _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_116__.SchemaQueryListener),
|
|
23147
|
+
/* harmony export */ SearchAllConcepts: () => (/* reexport safe */ _Api_Search_Search__WEBPACK_IMPORTED_MODULE_40__.SearchAllConcepts),
|
|
23148
|
+
/* harmony export */ SearchLinkInternal: () => (/* reexport safe */ _Services_Search_SearchLinkInternal__WEBPACK_IMPORTED_MODULE_60__.SearchLinkInternal),
|
|
23149
|
+
/* harmony export */ SearchLinkInternalAll: () => (/* reexport safe */ _Services_Search_SearchLinkInternal__WEBPACK_IMPORTED_MODULE_60__.SearchLinkInternalAll),
|
|
23150
|
+
/* harmony export */ SearchLinkMultipleAll: () => (/* reexport safe */ _Services_Search_SearchLinkMultiple__WEBPACK_IMPORTED_MODULE_52__.SearchLinkMultipleAll),
|
|
23151
|
+
/* harmony export */ SearchLinkMultipleAllObservable: () => (/* reexport safe */ _WrapperFunctions_SearchLinkMultipleAllObservable__WEBPACK_IMPORTED_MODULE_70__.SearchLinkMultipleAllObservable),
|
|
22642
23152
|
/* harmony export */ SearchLinkMultipleApi: () => (/* reexport safe */ _Api_Search_SearchLinkMultipleApi__WEBPACK_IMPORTED_MODULE_2__.SearchLinkMultipleApi),
|
|
22643
|
-
/* harmony export */ SearchQuery: () => (/* reexport safe */
|
|
22644
|
-
/* harmony export */ SearchStructure: () => (/* reexport safe */
|
|
22645
|
-
/* harmony export */ SearchWithLinker: () => (/* reexport safe */
|
|
22646
|
-
/* harmony export */ SearchWithTypeAndLinker: () => (/* reexport safe */
|
|
22647
|
-
/* harmony export */ SearchWithTypeAndLinkerApi: () => (/* reexport safe */
|
|
22648
|
-
/* harmony export */ SessionData: () => (/* reexport safe */
|
|
22649
|
-
/* harmony export */ Signin: () => (/* reexport safe */
|
|
22650
|
-
/* harmony export */ Signup: () => (/* reexport safe */
|
|
22651
|
-
/* harmony export */ SignupEntity: () => (/* reexport safe */
|
|
23153
|
+
/* harmony export */ SearchQuery: () => (/* reexport safe */ _DataStructures_SearchQuery__WEBPACK_IMPORTED_MODULE_85__.SearchQuery),
|
|
23154
|
+
/* harmony export */ SearchStructure: () => (/* reexport safe */ _DataStructures_Search_SearchStructure__WEBPACK_IMPORTED_MODULE_94__.SearchStructure),
|
|
23155
|
+
/* harmony export */ SearchWithLinker: () => (/* reexport safe */ _Api_Search_SearchWithLinker__WEBPACK_IMPORTED_MODULE_41__.SearchWithLinker),
|
|
23156
|
+
/* harmony export */ SearchWithTypeAndLinker: () => (/* reexport safe */ _Services_Search_SearchWithTypeAndLinker__WEBPACK_IMPORTED_MODULE_73__.SearchWithTypeAndLinker),
|
|
23157
|
+
/* harmony export */ SearchWithTypeAndLinkerApi: () => (/* reexport safe */ _Api_Search_SearchWithTypeAndLinker__WEBPACK_IMPORTED_MODULE_68__.SearchWithTypeAndLinkerApi),
|
|
23158
|
+
/* harmony export */ SessionData: () => (/* reexport safe */ _DataStructures_Session_SessionData__WEBPACK_IMPORTED_MODULE_87__.SessionData),
|
|
23159
|
+
/* harmony export */ Signin: () => (/* reexport safe */ _Api_Signin__WEBPACK_IMPORTED_MODULE_38__["default"]),
|
|
23160
|
+
/* harmony export */ Signup: () => (/* reexport safe */ _Api_Signup__WEBPACK_IMPORTED_MODULE_37__["default"]),
|
|
23161
|
+
/* harmony export */ SignupEntity: () => (/* reexport safe */ _Api_Signup__WEBPACK_IMPORTED_MODULE_37__.SignupEntity),
|
|
22652
23162
|
/* harmony export */ SplitStrings: () => (/* reexport safe */ _Services_SplitStrings__WEBPACK_IMPORTED_MODULE_3__.SplitStrings),
|
|
22653
|
-
/* harmony export */ StatefulWidget: () => (/* reexport safe */
|
|
22654
|
-
/* harmony export */ SyncData: () => (/* reexport safe */
|
|
23163
|
+
/* harmony export */ StatefulWidget: () => (/* reexport safe */ _Widgets_StatefulWidget__WEBPACK_IMPORTED_MODULE_112__.StatefulWidget),
|
|
23164
|
+
/* harmony export */ SyncData: () => (/* reexport safe */ _DataStructures_SyncData__WEBPACK_IMPORTED_MODULE_77__.SyncData),
|
|
22655
23165
|
/* harmony export */ TrashTheConcept: () => (/* reexport safe */ _Api_Delete_DeleteConceptInBackend__WEBPACK_IMPORTED_MODULE_26__.TrashTheConcept),
|
|
22656
|
-
/* harmony export */ UpdateComposition: () => (/* reexport safe */
|
|
22657
|
-
/* harmony export */ UpdateCompositionLocal: () => (/* reexport safe */
|
|
22658
|
-
/* harmony export */ UserBinaryTree: () => (/* reexport safe */
|
|
22659
|
-
/* harmony export */ Validator: () => (/* reexport safe */
|
|
22660
|
-
/* harmony export */ ViewInternalData: () => (/* reexport safe */
|
|
22661
|
-
/* harmony export */ ViewInternalDataApi: () => (/* reexport safe */
|
|
22662
|
-
/* harmony export */ WidgetTree: () => (/* reexport safe */
|
|
22663
|
-
/* harmony export */ convertFromConceptToLConcept: () => (/* reexport safe */
|
|
22664
|
-
/* harmony export */ convertFromLConceptToConcept: () => (/* reexport safe */
|
|
22665
|
-
/* harmony export */ createFormFieldData: () => (/* reexport safe */
|
|
23166
|
+
/* harmony export */ UpdateComposition: () => (/* reexport safe */ _Services_UpdateComposition__WEBPACK_IMPORTED_MODULE_39__["default"]),
|
|
23167
|
+
/* harmony export */ UpdateCompositionLocal: () => (/* reexport safe */ _Services_Local_UpdateCompositionLocal__WEBPACK_IMPORTED_MODULE_54__.UpdateCompositionLocal),
|
|
23168
|
+
/* harmony export */ UserBinaryTree: () => (/* reexport safe */ _DataStructures_User_UserBinaryTree__WEBPACK_IMPORTED_MODULE_92__.UserBinaryTree),
|
|
23169
|
+
/* harmony export */ Validator: () => (/* reexport safe */ _Validator_validator__WEBPACK_IMPORTED_MODULE_110__.Validator),
|
|
23170
|
+
/* harmony export */ ViewInternalData: () => (/* reexport safe */ _Services_View_ViewInternalData__WEBPACK_IMPORTED_MODULE_57__.ViewInternalData),
|
|
23171
|
+
/* harmony export */ ViewInternalDataApi: () => (/* reexport safe */ _Api_View_ViewInternalDataApi__WEBPACK_IMPORTED_MODULE_58__.ViewInternalDataApi),
|
|
23172
|
+
/* harmony export */ WidgetTree: () => (/* reexport safe */ _Widgets_WidgetTree__WEBPACK_IMPORTED_MODULE_117__.WidgetTree),
|
|
23173
|
+
/* harmony export */ convertFromConceptToLConcept: () => (/* reexport safe */ _Services_Conversion_ConvertConcepts__WEBPACK_IMPORTED_MODULE_59__.convertFromConceptToLConcept),
|
|
23174
|
+
/* harmony export */ convertFromLConceptToConcept: () => (/* reexport safe */ _Services_Conversion_ConvertConcepts__WEBPACK_IMPORTED_MODULE_59__.convertFromLConceptToConcept),
|
|
23175
|
+
/* harmony export */ createFormFieldData: () => (/* reexport safe */ _Validator_utils__WEBPACK_IMPORTED_MODULE_111__.createFormFieldData),
|
|
22666
23176
|
/* harmony export */ dispatchIdEvent: () => (/* binding */ dispatchIdEvent),
|
|
22667
23177
|
/* harmony export */ getFromDatabaseWithType: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_15__.getFromDatabaseWithType),
|
|
22668
23178
|
/* harmony export */ getObjectsFromIndexDb: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_15__.getObjectsFromIndexDb),
|
|
@@ -22670,14 +23180,22 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22670
23180
|
/* harmony export */ hasActivatedSW: () => (/* binding */ hasActivatedSW),
|
|
22671
23181
|
/* harmony export */ init: () => (/* binding */ init),
|
|
22672
23182
|
/* harmony export */ recursiveFetch: () => (/* reexport safe */ _Services_GetComposition__WEBPACK_IMPORTED_MODULE_7__.recursiveFetch),
|
|
22673
|
-
/* harmony export */ recursiveFetchNew: () => (/* reexport safe */
|
|
22674
|
-
/* harmony export */
|
|
23183
|
+
/* harmony export */ recursiveFetchNew: () => (/* reexport safe */ _Services_Composition_BuildComposition__WEBPACK_IMPORTED_MODULE_46__.recursiveFetchNew),
|
|
23184
|
+
/* harmony export */ renderLatestWidget: () => (/* reexport safe */ _Widgets_RenderWidgetService__WEBPACK_IMPORTED_MODULE_120__.renderLatestWidget),
|
|
23185
|
+
/* harmony export */ renderPage: () => (/* reexport safe */ _Widgets_RenderWidgetService__WEBPACK_IMPORTED_MODULE_120__.renderPage),
|
|
23186
|
+
/* harmony export */ renderWidget: () => (/* reexport safe */ _Widgets_RenderWidgetService__WEBPACK_IMPORTED_MODULE_120__.renderWidget),
|
|
23187
|
+
/* harmony export */ searchLinkMultipleListener: () => (/* reexport safe */ _WrapperFunctions_SearchLinkMultipleAllObservable__WEBPACK_IMPORTED_MODULE_70__.searchLinkMultipleListener),
|
|
22675
23188
|
/* harmony export */ sendMessage: () => (/* binding */ sendMessage),
|
|
22676
23189
|
/* harmony export */ serviceWorker: () => (/* binding */ serviceWorker),
|
|
22677
23190
|
/* harmony export */ setHasActivatedSW: () => (/* binding */ setHasActivatedSW),
|
|
22678
23191
|
/* harmony export */ storeToDatabase: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_15__.storeToDatabase),
|
|
22679
23192
|
/* harmony export */ subscribedListeners: () => (/* binding */ subscribedListeners),
|
|
22680
|
-
/* harmony export */ updateAccessToken: () => (/* binding */ updateAccessToken)
|
|
23193
|
+
/* harmony export */ updateAccessToken: () => (/* binding */ updateAccessToken),
|
|
23194
|
+
/* harmony export */ uploadAttachment: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_31__.uploadAttachment),
|
|
23195
|
+
/* harmony export */ uploadFile: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_31__.uploadFile),
|
|
23196
|
+
/* harmony export */ uploadImage: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_31__.uploadImage),
|
|
23197
|
+
/* harmony export */ validDocumentFormats: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_31__.validDocumentFormats),
|
|
23198
|
+
/* harmony export */ validImageFormats: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_31__.validImageFormats)
|
|
22681
23199
|
/* harmony export */ });
|
|
22682
23200
|
/* harmony import */ var _Services_CreateBinaryTreeFromData__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Services/CreateBinaryTreeFromData */ "./src/Services/CreateBinaryTreeFromData.ts");
|
|
22683
23201
|
/* harmony import */ var _DataStructures_IdentifierFlags__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./DataStructures/IdentifierFlags */ "./src/DataStructures/IdentifierFlags.ts");
|
|
@@ -22710,94 +23228,96 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22710
23228
|
/* harmony import */ var _Services_MakeTheTimestamp__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./Services/MakeTheTimestamp */ "./src/Services/MakeTheTimestamp.ts");
|
|
22711
23229
|
/* harmony import */ var _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./Api/RecursiveSearch */ "./src/Api/RecursiveSearch.ts");
|
|
22712
23230
|
/* harmony import */ var _Services_GetCompositionBulk__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./Services/GetCompositionBulk */ "./src/Services/GetCompositionBulk.ts");
|
|
22713
|
-
/* harmony import */ var
|
|
22714
|
-
/* harmony import */ var
|
|
22715
|
-
/* harmony import */ var
|
|
22716
|
-
/* harmony import */ var
|
|
22717
|
-
/* harmony import */ var
|
|
22718
|
-
/* harmony import */ var
|
|
22719
|
-
/* harmony import */ var
|
|
22720
|
-
/* harmony import */ var
|
|
22721
|
-
/* harmony import */ var
|
|
22722
|
-
/* harmony import */ var
|
|
22723
|
-
/* harmony import */ var
|
|
22724
|
-
/* harmony import */ var
|
|
22725
|
-
/* harmony import */ var
|
|
22726
|
-
/* harmony import */ var
|
|
22727
|
-
/* harmony import */ var
|
|
22728
|
-
/* harmony import */ var
|
|
22729
|
-
/* harmony import */ var
|
|
22730
|
-
/* harmony import */ var
|
|
22731
|
-
/* harmony import */ var
|
|
22732
|
-
/* harmony import */ var
|
|
22733
|
-
/* harmony import */ var
|
|
22734
|
-
/* harmony import */ var
|
|
22735
|
-
/* harmony import */ var
|
|
22736
|
-
/* harmony import */ var
|
|
22737
|
-
/* harmony import */ var
|
|
22738
|
-
/* harmony import */ var
|
|
22739
|
-
/* harmony import */ var
|
|
22740
|
-
/* harmony import */ var
|
|
22741
|
-
/* harmony import */ var
|
|
22742
|
-
/* harmony import */ var
|
|
22743
|
-
/* harmony import */ var
|
|
22744
|
-
/* harmony import */ var
|
|
22745
|
-
/* harmony import */ var
|
|
22746
|
-
/* harmony import */ var
|
|
22747
|
-
/* harmony import */ var
|
|
22748
|
-
/* harmony import */ var
|
|
22749
|
-
/* harmony import */ var
|
|
22750
|
-
/* harmony import */ var
|
|
22751
|
-
/* harmony import */ var
|
|
22752
|
-
/* harmony import */ var
|
|
22753
|
-
/* harmony import */ var
|
|
22754
|
-
/* harmony import */ var
|
|
22755
|
-
/* harmony import */ var
|
|
22756
|
-
/* harmony import */ var
|
|
22757
|
-
/* harmony import */ var
|
|
22758
|
-
/* harmony import */ var
|
|
22759
|
-
/* harmony import */ var
|
|
22760
|
-
/* harmony import */ var
|
|
22761
|
-
/* harmony import */ var
|
|
22762
|
-
/* harmony import */ var
|
|
22763
|
-
/* harmony import */ var
|
|
22764
|
-
/* harmony import */ var
|
|
22765
|
-
/* harmony import */ var
|
|
22766
|
-
/* harmony import */ var
|
|
22767
|
-
/* harmony import */ var
|
|
22768
|
-
/* harmony import */ var
|
|
22769
|
-
/* harmony import */ var
|
|
22770
|
-
/* harmony import */ var
|
|
22771
|
-
/* harmony import */ var
|
|
22772
|
-
/* harmony import */ var
|
|
22773
|
-
/* harmony import */ var
|
|
22774
|
-
/* harmony import */ var
|
|
22775
|
-
/* harmony import */ var
|
|
22776
|
-
/* harmony import */ var
|
|
22777
|
-
/* harmony import */ var
|
|
22778
|
-
/* harmony import */ var
|
|
22779
|
-
/* harmony import */ var
|
|
22780
|
-
/* harmony import */ var
|
|
22781
|
-
/* harmony import */ var
|
|
22782
|
-
/* harmony import */ var
|
|
22783
|
-
/* harmony import */ var
|
|
22784
|
-
/* harmony import */ var
|
|
22785
|
-
/* harmony import */ var
|
|
22786
|
-
/* harmony import */ var
|
|
22787
|
-
/* harmony import */ var
|
|
22788
|
-
/* harmony import */ var
|
|
22789
|
-
/* harmony import */ var
|
|
22790
|
-
/* harmony import */ var
|
|
22791
|
-
/* harmony import */ var
|
|
22792
|
-
/* harmony import */ var
|
|
22793
|
-
/* harmony import */ var
|
|
22794
|
-
/* harmony import */ var
|
|
22795
|
-
/* harmony import */ var
|
|
22796
|
-
/* harmony import */ var
|
|
22797
|
-
/* harmony import */ var
|
|
22798
|
-
/* harmony import */ var
|
|
22799
|
-
/* harmony import */ var
|
|
22800
|
-
/* harmony import */ var
|
|
23231
|
+
/* harmony import */ var _Services_Upload__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./Services/Upload */ "./src/Services/Upload.ts");
|
|
23232
|
+
/* harmony import */ var _Api_GetConceptBulk__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./Api/GetConceptBulk */ "./src/Api/GetConceptBulk.ts");
|
|
23233
|
+
/* harmony import */ var _Api_GetConnectionBulk__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./Api/GetConnectionBulk */ "./src/Api/GetConnectionBulk.ts");
|
|
23234
|
+
/* harmony import */ var _Api_GetAllConnectionsOfCompositionBulk__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./Api/GetAllConnectionsOfCompositionBulk */ "./src/Api/GetAllConnectionsOfCompositionBulk.ts");
|
|
23235
|
+
/* harmony import */ var _Api_Login__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./Api/Login */ "./src/Api/Login.ts");
|
|
23236
|
+
/* harmony import */ var _Api_GetConnectionOfTheConcept__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./Api/GetConnectionOfTheConcept */ "./src/Api/GetConnectionOfTheConcept.ts");
|
|
23237
|
+
/* harmony import */ var _Api_Signup__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./Api/Signup */ "./src/Api/Signup.ts");
|
|
23238
|
+
/* harmony import */ var _Api_Signin__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./Api/Signin */ "./src/Api/Signin.ts");
|
|
23239
|
+
/* harmony import */ var _Services_UpdateComposition__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./Services/UpdateComposition */ "./src/Services/UpdateComposition.ts");
|
|
23240
|
+
/* harmony import */ var _Api_Search_Search__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./Api/Search/Search */ "./src/Api/Search/Search.ts");
|
|
23241
|
+
/* harmony import */ var _Api_Search_SearchWithLinker__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./Api/Search/SearchWithLinker */ "./src/Api/Search/SearchWithLinker.ts");
|
|
23242
|
+
/* harmony import */ var _Services_Composition_CompositionCache__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./Services/Composition/CompositionCache */ "./src/Services/Composition/CompositionCache.ts");
|
|
23243
|
+
/* harmony import */ var _Api_Session_CreateSession__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./Api/Session/CreateSession */ "./src/Api/Session/CreateSession.ts");
|
|
23244
|
+
/* harmony import */ var _Api_Session_CreateSessionVisit__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./Api/Session/CreateSessionVisit */ "./src/Api/Session/CreateSessionVisit.ts");
|
|
23245
|
+
/* harmony import */ var _Services_GetRelation__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./Services/GetRelation */ "./src/Services/GetRelation.ts");
|
|
23246
|
+
/* harmony import */ var _Services_Composition_BuildComposition__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./Services/Composition/BuildComposition */ "./src/Services/Composition/BuildComposition.ts");
|
|
23247
|
+
/* harmony import */ var _Services_Composition_CreateCompositionCache__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./Services/Composition/CreateCompositionCache */ "./src/Services/Composition/CreateCompositionCache.ts");
|
|
23248
|
+
/* harmony import */ var _Services_Local_CreateDefaultLConcept__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./Services/Local/CreateDefaultLConcept */ "./src/Services/Local/CreateDefaultLConcept.ts");
|
|
23249
|
+
/* harmony import */ var _Services_CreateTheConnectionGeneral__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./Services/CreateTheConnectionGeneral */ "./src/Services/CreateTheConnectionGeneral.ts");
|
|
23250
|
+
/* harmony import */ var _Services_Local_CreateTheConnectionLocal__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./Services/Local/CreateTheConnectionLocal */ "./src/Services/Local/CreateTheConnectionLocal.ts");
|
|
23251
|
+
/* harmony import */ var _Services_User_UserTranslation__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./Services/User/UserTranslation */ "./src/Services/User/UserTranslation.ts");
|
|
23252
|
+
/* harmony import */ var _Services_Search_SearchLinkMultiple__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./Services/Search/SearchLinkMultiple */ "./src/Services/Search/SearchLinkMultiple.ts");
|
|
23253
|
+
/* harmony import */ var _Services_Local_GetTheConceptLocal__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./Services/Local/GetTheConceptLocal */ "./src/Services/Local/GetTheConceptLocal.ts");
|
|
23254
|
+
/* harmony import */ var _Services_Local_UpdateCompositionLocal__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./Services/Local/UpdateCompositionLocal */ "./src/Services/Local/UpdateCompositionLocal.ts");
|
|
23255
|
+
/* harmony import */ var _Services_Local_GetRelationLocal__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./Services/Local/GetRelationLocal */ "./src/Services/Local/GetRelationLocal.ts");
|
|
23256
|
+
/* harmony import */ var _Services_Local_GetConceptByCharacterLocal__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./Services/Local/GetConceptByCharacterLocal */ "./src/Services/Local/GetConceptByCharacterLocal.ts");
|
|
23257
|
+
/* harmony import */ var _Services_View_ViewInternalData__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./Services/View/ViewInternalData */ "./src/Services/View/ViewInternalData.ts");
|
|
23258
|
+
/* harmony import */ var _Api_View_ViewInternalDataApi__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./Api/View/ViewInternalDataApi */ "./src/Api/View/ViewInternalDataApi.ts");
|
|
23259
|
+
/* harmony import */ var _Services_Conversion_ConvertConcepts__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Services/Conversion/ConvertConcepts */ "./src/Services/Conversion/ConvertConcepts.ts");
|
|
23260
|
+
/* harmony import */ var _Services_Search_SearchLinkInternal__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./Services/Search/SearchLinkInternal */ "./src/Services/Search/SearchLinkInternal.ts");
|
|
23261
|
+
/* harmony import */ var _Services_Local_CreateConnectionBetweenTwoConceptsLocal__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./Services/Local/CreateConnectionBetweenTwoConceptsLocal */ "./src/Services/Local/CreateConnectionBetweenTwoConceptsLocal.ts");
|
|
23262
|
+
/* harmony import */ var _Services_Local_DeleteConceptLocal__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./Services/Local/DeleteConceptLocal */ "./src/Services/Local/DeleteConceptLocal.ts");
|
|
23263
|
+
/* harmony import */ var _Services_GetConnectionBetweenTwoConceptsLinker__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./Services/GetConnectionBetweenTwoConceptsLinker */ "./src/Services/GetConnectionBetweenTwoConceptsLinker.ts");
|
|
23264
|
+
/* harmony import */ var _Services_Common_DelayFunction__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./Services/Common/DelayFunction */ "./src/Services/Common/DelayFunction.ts");
|
|
23265
|
+
/* harmony import */ var _Api_GetConceptByCharacterAndType__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./Api/GetConceptByCharacterAndType */ "./src/Api/GetConceptByCharacterAndType.ts");
|
|
23266
|
+
/* harmony import */ var _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./Constants/FormatConstants */ "./src/Constants/FormatConstants.ts");
|
|
23267
|
+
/* harmony import */ var _Constants_AccessConstants__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./Constants/AccessConstants */ "./src/Constants/AccessConstants.ts");
|
|
23268
|
+
/* harmony import */ var _Api_Search_SearchWithTypeAndLinker__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./Api/Search/SearchWithTypeAndLinker */ "./src/Api/Search/SearchWithTypeAndLinker.ts");
|
|
23269
|
+
/* harmony import */ var _WrapperFunctions_DepenedencyObserver__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./WrapperFunctions/DepenedencyObserver */ "./src/WrapperFunctions/DepenedencyObserver.ts");
|
|
23270
|
+
/* harmony import */ var _WrapperFunctions_SearchLinkMultipleAllObservable__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./WrapperFunctions/SearchLinkMultipleAllObservable */ "./src/WrapperFunctions/SearchLinkMultipleAllObservable.ts");
|
|
23271
|
+
/* harmony import */ var _WrapperFunctions_GetCompositionObservable__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./WrapperFunctions/GetCompositionObservable */ "./src/WrapperFunctions/GetCompositionObservable.ts");
|
|
23272
|
+
/* harmony import */ var _WrapperFunctions_GetCompositionListObservable__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./WrapperFunctions/GetCompositionListObservable */ "./src/WrapperFunctions/GetCompositionListObservable.ts");
|
|
23273
|
+
/* harmony import */ var _Services_Search_SearchWithTypeAndLinker__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./Services/Search/SearchWithTypeAndLinker */ "./src/Services/Search/SearchWithTypeAndLinker.ts");
|
|
23274
|
+
/* harmony import */ var _WrapperFunctions_GetLinkObservable__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./WrapperFunctions/GetLinkObservable */ "./src/WrapperFunctions/GetLinkObservable.ts");
|
|
23275
|
+
/* harmony import */ var _WrapperFunctions_RecursiveSearchObservable__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./WrapperFunctions/RecursiveSearchObservable */ "./src/WrapperFunctions/RecursiveSearchObservable.ts");
|
|
23276
|
+
/* harmony import */ var _WrapperFunctions_GetLinkListObservable__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./WrapperFunctions/GetLinkListObservable */ "./src/WrapperFunctions/GetLinkListObservable.ts");
|
|
23277
|
+
/* harmony import */ var _DataStructures_SyncData__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./DataStructures/SyncData */ "./src/DataStructures/SyncData.ts");
|
|
23278
|
+
/* harmony import */ var _DataStructures_Concept__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./DataStructures/Concept */ "./src/DataStructures/Concept.ts");
|
|
23279
|
+
/* harmony import */ var _DataStructures_Local_LConcept__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./DataStructures/Local/LConcept */ "./src/DataStructures/Local/LConcept.ts");
|
|
23280
|
+
/* harmony import */ var _DataStructures_Local_LConnection__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./DataStructures/Local/LConnection */ "./src/DataStructures/Local/LConnection.ts");
|
|
23281
|
+
/* harmony import */ var _DataStructures_Connection__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./DataStructures/Connection */ "./src/DataStructures/Connection.ts");
|
|
23282
|
+
/* harmony import */ var _DataStructures_ConceptData__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./DataStructures/ConceptData */ "./src/DataStructures/ConceptData.ts");
|
|
23283
|
+
/* harmony import */ var _DataStructures_ConnectionData__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./DataStructures/ConnectionData */ "./src/DataStructures/ConnectionData.ts");
|
|
23284
|
+
/* harmony import */ var _DataStructures_BinaryTree__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./DataStructures/BinaryTree */ "./src/DataStructures/BinaryTree.ts");
|
|
23285
|
+
/* harmony import */ var _DataStructures_SearchQuery__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./DataStructures/SearchQuery */ "./src/DataStructures/SearchQuery.ts");
|
|
23286
|
+
/* harmony import */ var _DataStructures_PatcherStructure__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./DataStructures/PatcherStructure */ "./src/DataStructures/PatcherStructure.ts");
|
|
23287
|
+
/* harmony import */ var _DataStructures_Session_SessionData__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./DataStructures/Session/SessionData */ "./src/DataStructures/Session/SessionData.ts");
|
|
23288
|
+
/* harmony import */ var _DataStructures_Composition_Composition__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./DataStructures/Composition/Composition */ "./src/DataStructures/Composition/Composition.ts");
|
|
23289
|
+
/* harmony import */ var _DataStructures_Composition_CompositionBinaryTree__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./DataStructures/Composition/CompositionBinaryTree */ "./src/DataStructures/Composition/CompositionBinaryTree.ts");
|
|
23290
|
+
/* harmony import */ var _DataStructures_Composition_CompositionNode__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./DataStructures/Composition/CompositionNode */ "./src/DataStructures/Composition/CompositionNode.ts");
|
|
23291
|
+
/* harmony import */ var _DataStructures_Local_LocalSyncData__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./DataStructures/Local/LocalSyncData */ "./src/DataStructures/Local/LocalSyncData.ts");
|
|
23292
|
+
/* harmony import */ var _DataStructures_User_UserBinaryTree__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./DataStructures/User/UserBinaryTree */ "./src/DataStructures/User/UserBinaryTree.ts");
|
|
23293
|
+
/* harmony import */ var _DataStructures_FilterSearch__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./DataStructures/FilterSearch */ "./src/DataStructures/FilterSearch.ts");
|
|
23294
|
+
/* harmony import */ var _DataStructures_Search_SearchStructure__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./DataStructures/Search/SearchStructure */ "./src/DataStructures/Search/SearchStructure.ts");
|
|
23295
|
+
/* harmony import */ var _DataStructures_Local_LocalConceptData__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./DataStructures/Local/LocalConceptData */ "./src/DataStructures/Local/LocalConceptData.ts");
|
|
23296
|
+
/* harmony import */ var _Services_GetDataFromIndexDb__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./Services/GetDataFromIndexDb */ "./src/Services/GetDataFromIndexDb.ts");
|
|
23297
|
+
/* harmony import */ var _Services_Local_CreateLocalBinaryTreeFromData__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./Services/Local/CreateLocalBinaryTreeFromData */ "./src/Services/Local/CreateLocalBinaryTreeFromData.ts");
|
|
23298
|
+
/* harmony import */ var _Services_InitializeSystem__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./Services/InitializeSystem */ "./src/Services/InitializeSystem.ts");
|
|
23299
|
+
/* harmony import */ var _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./DataStructures/BaseUrl */ "./src/DataStructures/BaseUrl.ts");
|
|
23300
|
+
/* harmony import */ var _DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./DataStructures/Security/TokenStorage */ "./src/DataStructures/Security/TokenStorage.ts");
|
|
23301
|
+
/* harmony import */ var _Constants_general_const__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./Constants/general.const */ "./src/Constants/general.const.ts");
|
|
23302
|
+
/* harmony import */ var _Middleware_logger_service__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./Middleware/logger.service */ "./src/Middleware/logger.service.ts");
|
|
23303
|
+
/* harmony import */ var _Services_Common_ErrorPosting__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./Services/Common/ErrorPosting */ "./src/Services/Common/ErrorPosting.ts");
|
|
23304
|
+
/* harmony import */ var _Middleware_ApplicationMonitor__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./Middleware/ApplicationMonitor */ "./src/Middleware/ApplicationMonitor.ts");
|
|
23305
|
+
/* harmony import */ var _DataStructures_Responses_ErrorResponse__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./DataStructures/Responses/ErrorResponse */ "./src/DataStructures/Responses/ErrorResponse.ts");
|
|
23306
|
+
/* harmony import */ var _app__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./app */ "./src/app.ts");
|
|
23307
|
+
/* harmony import */ var _Widgets_BuilderStatefulWidget__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./Widgets/BuilderStatefulWidget */ "./src/Widgets/BuilderStatefulWidget.ts");
|
|
23308
|
+
/* harmony import */ var _Services_Transaction_LocalTransaction__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./Services/Transaction/LocalTransaction */ "./src/Services/Transaction/LocalTransaction.ts");
|
|
23309
|
+
/* harmony import */ var _Anomaly_anomaly__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./Anomaly/anomaly */ "./src/Anomaly/anomaly.ts");
|
|
23310
|
+
/* harmony import */ var _Validator_validator__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./Validator/validator */ "./src/Validator/validator.ts");
|
|
23311
|
+
/* harmony import */ var _Validator_utils__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./Validator/utils */ "./src/Validator/utils.ts");
|
|
23312
|
+
/* harmony import */ var _Widgets_StatefulWidget__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./Widgets/StatefulWidget */ "./src/Widgets/StatefulWidget.ts");
|
|
23313
|
+
/* harmony import */ var _Services_DeleteConnectionByType__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./Services/DeleteConnectionByType */ "./src/Services/DeleteConnectionByType.ts");
|
|
23314
|
+
/* harmony import */ var _DataStructures_Search_FreeschemaQuery__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./DataStructures/Search/FreeschemaQuery */ "./src/DataStructures/Search/FreeschemaQuery.ts");
|
|
23315
|
+
/* harmony import */ var _Api_Search_FreeschemaQueryApi__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./Api/Search/FreeschemaQueryApi */ "./src/Api/Search/FreeschemaQueryApi.ts");
|
|
23316
|
+
/* harmony import */ var _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./WrapperFunctions/SchemaQueryObservable */ "./src/WrapperFunctions/SchemaQueryObservable.ts");
|
|
23317
|
+
/* harmony import */ var _Widgets_WidgetTree__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./Widgets/WidgetTree */ "./src/Widgets/WidgetTree.ts");
|
|
23318
|
+
/* harmony import */ var _AccessTracker_accessTracker__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./AccessTracker/accessTracker */ "./src/AccessTracker/accessTracker.ts");
|
|
23319
|
+
/* harmony import */ var _Services_CreateConnection_CreateConnectionEntity__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./Services/CreateConnection/CreateConnectionEntity */ "./src/Services/CreateConnection/CreateConnectionEntity.ts");
|
|
23320
|
+
/* harmony import */ var _Widgets_RenderWidgetService__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./Widgets/RenderWidgetService */ "./src/Widgets/RenderWidgetService.ts");
|
|
22801
23321
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
22802
23322
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
22803
23323
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -22933,6 +23453,8 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
|
|
|
22933
23453
|
|
|
22934
23454
|
|
|
22935
23455
|
|
|
23456
|
+
|
|
23457
|
+
|
|
22936
23458
|
|
|
22937
23459
|
|
|
22938
23460
|
|
|
@@ -22951,7 +23473,7 @@ function setHasActivatedSW(value) { hasActivatedSW = value; }
|
|
|
22951
23473
|
* @param accessToken access token got from the sign in process
|
|
22952
23474
|
*/
|
|
22953
23475
|
function updateAccessToken(accessToken = "") {
|
|
22954
|
-
|
|
23476
|
+
_DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_100__.TokenStorage.BearerAccessToken = accessToken;
|
|
22955
23477
|
if (serviceWorker)
|
|
22956
23478
|
sendMessage('updateAccessToken', { accessToken });
|
|
22957
23479
|
}
|
|
@@ -22969,15 +23491,15 @@ function updateAccessToken(accessToken = "") {
|
|
|
22969
23491
|
function init() {
|
|
22970
23492
|
return __awaiter(this, arguments, void 0, function* (url = "", aiurl = "", accessToken = "", nodeUrl = "", enableAi = true, applicationName = "", enableSW = undefined, flags = {}) {
|
|
22971
23493
|
try {
|
|
22972
|
-
|
|
22973
|
-
|
|
22974
|
-
|
|
22975
|
-
|
|
22976
|
-
|
|
23494
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.BASE_URL = url;
|
|
23495
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.AI_URL = aiurl;
|
|
23496
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.NODE_URL = nodeUrl;
|
|
23497
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.BASE_APPLICATION = applicationName;
|
|
23498
|
+
_DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_100__.TokenStorage.BearerAccessToken = accessToken;
|
|
22977
23499
|
let randomizer = Math.floor(Math.random() * 100000000);
|
|
22978
23500
|
// BaseUrl.BASE_RANDOMIZER = randomizer;
|
|
22979
23501
|
// BaseUrl.BASE_RANDOMIZER = 999;
|
|
22980
|
-
|
|
23502
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.setRandomizer(randomizer);
|
|
22981
23503
|
// Change Default Flags
|
|
22982
23504
|
const defaultFlags = {
|
|
22983
23505
|
logApplication: false,
|
|
@@ -22985,10 +23507,10 @@ function init() {
|
|
|
22985
23507
|
accessTracker: false,
|
|
22986
23508
|
isTest: false
|
|
22987
23509
|
};
|
|
22988
|
-
|
|
23510
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.FLAGS = defaultFlags;
|
|
22989
23511
|
// Merge Provided Flags with Defaults
|
|
22990
|
-
|
|
22991
|
-
initializeFlags(
|
|
23512
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.FLAGS = Object.assign(Object.assign({}, defaultFlags), flags);
|
|
23513
|
+
initializeFlags(_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.FLAGS);
|
|
22992
23514
|
// console.log("BaseUrl.FLAGS before sending to service worker : ", BaseUrl.FLAGS)
|
|
22993
23515
|
if (!("serviceWorker" in navigator)) {
|
|
22994
23516
|
yield initConceptConnection();
|
|
@@ -23253,10 +23775,10 @@ function sendMessage(type, payload) {
|
|
|
23253
23775
|
if (((_a = event === null || event === void 0 ? void 0 : event.data) === null || _a === void 0 ? void 0 : _a.messageId) == messageId) { // Check if the message ID matches
|
|
23254
23776
|
if (!event.data.success) {
|
|
23255
23777
|
if (((_b = event === null || event === void 0 ? void 0 : event.data) === null || _b === void 0 ? void 0 : _b.status) == 401) {
|
|
23256
|
-
reject((0,
|
|
23778
|
+
reject((0,_Services_Common_ErrorPosting__WEBPACK_IMPORTED_MODULE_103__.HandleHttpError)(new Response('Unauthorized', { status: 401, statusText: (_c = event === null || event === void 0 ? void 0 : event.data) === null || _c === void 0 ? void 0 : _c.statusText })));
|
|
23257
23779
|
}
|
|
23258
23780
|
else if (((_d = event === null || event === void 0 ? void 0 : event.data) === null || _d === void 0 ? void 0 : _d.status) == 500) {
|
|
23259
|
-
reject((0,
|
|
23781
|
+
reject((0,_Services_Common_ErrorPosting__WEBPACK_IMPORTED_MODULE_103__.HandleInternalError)(new Response('Internal Server Error', { status: 500, statusText: (_e = event === null || event === void 0 ? void 0 : event.data) === null || _e === void 0 ? void 0 : _e.statusText })));
|
|
23260
23782
|
}
|
|
23261
23783
|
else {
|
|
23262
23784
|
console.error('Error in the response from worker:', event);
|
|
@@ -23366,13 +23888,13 @@ const broadcastActions = {
|
|
|
23366
23888
|
serviceWorker = navigator.serviceWorker.controller;
|
|
23367
23889
|
}
|
|
23368
23890
|
yield sendMessage("init", {
|
|
23369
|
-
url:
|
|
23370
|
-
aiurl:
|
|
23371
|
-
accessToken:
|
|
23372
|
-
nodeUrl:
|
|
23891
|
+
url: _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.BASE_URL,
|
|
23892
|
+
aiurl: _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.AI_URL,
|
|
23893
|
+
accessToken: _DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_100__.TokenStorage.BearerAccessToken,
|
|
23894
|
+
nodeUrl: _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.NODE_URL,
|
|
23373
23895
|
enableAi: false,
|
|
23374
|
-
applicationName:
|
|
23375
|
-
flags:
|
|
23896
|
+
applicationName: _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.BASE_APPLICATION,
|
|
23897
|
+
flags: _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_99__.BaseUrl.FLAGS
|
|
23376
23898
|
});
|
|
23377
23899
|
return { success: true };
|
|
23378
23900
|
})
|
|
@@ -23382,7 +23904,7 @@ const broadcastActions = {
|
|
|
23382
23904
|
*/
|
|
23383
23905
|
function listenBroadCastMessages() {
|
|
23384
23906
|
// broadcast event can be listened through both the service worker and other tabs
|
|
23385
|
-
|
|
23907
|
+
_Constants_general_const__WEBPACK_IMPORTED_MODULE_101__.broadcastChannel.addEventListener('message', (event) => __awaiter(this, void 0, void 0, function* () {
|
|
23386
23908
|
const { type, payload } = event.data;
|
|
23387
23909
|
if (!type)
|
|
23388
23910
|
return;
|
|
@@ -23454,7 +23976,7 @@ function initConceptConnection() {
|
|
|
23454
23976
|
* @param enableAi enableAi is a flag that the user can choose to set if they want to use this enable AI feature
|
|
23455
23977
|
* If the developer does not want to use this feature then they can just set enableAi to false.
|
|
23456
23978
|
*/
|
|
23457
|
-
yield (0,
|
|
23979
|
+
yield (0,_Services_InitializeSystem__WEBPACK_IMPORTED_MODULE_98__["default"])();
|
|
23458
23980
|
const start = new Date().getTime();
|
|
23459
23981
|
/**
|
|
23460
23982
|
* This will create a binary tree in the memory from the indexdb.
|
|
@@ -23481,7 +24003,7 @@ function initConceptConnection() {
|
|
|
23481
24003
|
* Local Binary Type tree has been loaded to the index db (flag is set to denote that)
|
|
23482
24004
|
* Character Binary Tree has been loaded from indexdb to memory (flag is set to denote that)
|
|
23483
24005
|
*/
|
|
23484
|
-
yield (0,
|
|
24006
|
+
yield (0,_Services_Local_CreateLocalBinaryTreeFromData__WEBPACK_IMPORTED_MODULE_97__["default"])()
|
|
23485
24007
|
.then(() => {
|
|
23486
24008
|
// IdentifierFlags.isLocalDataLoaded = true;
|
|
23487
24009
|
// IdentifierFlags.isLocalTypeLoaded = true;
|
|
@@ -23497,7 +24019,7 @@ function initConceptConnection() {
|
|
|
23497
24019
|
* a static class called LocalConnectionData.
|
|
23498
24020
|
* This function will also set and IdentifierFlag that tells the whole program that this process has finished.
|
|
23499
24021
|
*/
|
|
23500
|
-
yield (0,
|
|
24022
|
+
yield (0,_Services_GetDataFromIndexDb__WEBPACK_IMPORTED_MODULE_96__.GetConnectionsFromIndexDbLocal)()
|
|
23501
24023
|
.then(() => {
|
|
23502
24024
|
_DataStructures_IdentifierFlags__WEBPACK_IMPORTED_MODULE_1__.IdentifierFlags.isLocalConnectionLoaded = true;
|
|
23503
24025
|
})
|
|
@@ -23510,7 +24032,7 @@ function initConceptConnection() {
|
|
|
23510
24032
|
* is only valid for the browser that creates this. We have a translator in our node server.
|
|
23511
24033
|
* This function does this process in initlization.
|
|
23512
24034
|
*/
|
|
23513
|
-
yield (0,
|
|
24035
|
+
yield (0,_Services_Local_CreateLocalBinaryTreeFromData__WEBPACK_IMPORTED_MODULE_97__.PopulateTheLocalConnectionToMemory)().catch((event) => {
|
|
23514
24036
|
console.log("This is the error in populating binary tree");
|
|
23515
24037
|
throw event;
|
|
23516
24038
|
});
|
|
@@ -23522,7 +24044,7 @@ function initConceptConnection() {
|
|
|
23522
24044
|
* a static class called ConnectionData.
|
|
23523
24045
|
* This function will also set and IdentifierFlag that tells the whole program that this process has finished.
|
|
23524
24046
|
*/
|
|
23525
|
-
yield (0,
|
|
24047
|
+
yield (0,_Services_GetDataFromIndexDb__WEBPACK_IMPORTED_MODULE_96__.GetConnectionsFromIndexDb)()
|
|
23526
24048
|
.then(() => {
|
|
23527
24049
|
_DataStructures_IdentifierFlags__WEBPACK_IMPORTED_MODULE_1__.IdentifierFlags.isConnectionLoaded = true;
|
|
23528
24050
|
_DataStructures_IdentifierFlags__WEBPACK_IMPORTED_MODULE_1__.IdentifierFlags.isConnectionTypeLoaded = true;
|
|
@@ -23548,7 +24070,7 @@ function dispatchIdEvent(id, data = {}) {
|
|
|
23548
24070
|
dispatchEvent(event);
|
|
23549
24071
|
}
|
|
23550
24072
|
else {
|
|
23551
|
-
|
|
24073
|
+
_Constants_general_const__WEBPACK_IMPORTED_MODULE_101__.broadcastChannel.postMessage({ type: 'dispatchEvent', payload: { id } });
|
|
23552
24074
|
}
|
|
23553
24075
|
}
|
|
23554
24076
|
function processMessageQueue() {
|
|
@@ -23561,7 +24083,7 @@ function processMessageQueue() {
|
|
|
23561
24083
|
}
|
|
23562
24084
|
const handleServiceWorkerException = (error) => {
|
|
23563
24085
|
// if (error instanceof FreeSchemaResponse && error.getStatus() != 401) {
|
|
23564
|
-
if (error instanceof
|
|
24086
|
+
if (error instanceof _DataStructures_Responses_ErrorResponse__WEBPACK_IMPORTED_MODULE_105__.FreeSchemaResponse) {
|
|
23565
24087
|
console.error('FreeSchemaResponse Error', error);
|
|
23566
24088
|
throw error;
|
|
23567
24089
|
}
|
|
@@ -23574,16 +24096,16 @@ const handleServiceWorkerException = (error) => {
|
|
|
23574
24096
|
function initializeFlags(flags) {
|
|
23575
24097
|
try {
|
|
23576
24098
|
if (flags.logApplication) {
|
|
23577
|
-
|
|
23578
|
-
|
|
24099
|
+
_Middleware_ApplicationMonitor__WEBPACK_IMPORTED_MODULE_104__.ApplicationMonitor.initialize();
|
|
24100
|
+
_app__WEBPACK_IMPORTED_MODULE_106__.Logger.logApplicationActivationStatus = true;
|
|
23579
24101
|
console.warn("Application log started.");
|
|
23580
24102
|
}
|
|
23581
24103
|
if (flags.logPackage) {
|
|
23582
|
-
|
|
24104
|
+
_app__WEBPACK_IMPORTED_MODULE_106__.Logger.logPackageActivationStatus = true;
|
|
23583
24105
|
console.warn("Package log started.");
|
|
23584
24106
|
}
|
|
23585
24107
|
if (flags.accessTracker) {
|
|
23586
|
-
|
|
24108
|
+
_app__WEBPACK_IMPORTED_MODULE_106__.AccessTracker.activateStatus = true;
|
|
23587
24109
|
console.warn("Access Tracker Activated.");
|
|
23588
24110
|
}
|
|
23589
24111
|
if (flags.isTest) {
|
|
@@ -23828,6 +24350,9 @@ function initializeFlags(flags) {
|
|
|
23828
24350
|
/******/ var __webpack_exports__init = __webpack_exports__.init;
|
|
23829
24351
|
/******/ var __webpack_exports__recursiveFetch = __webpack_exports__.recursiveFetch;
|
|
23830
24352
|
/******/ var __webpack_exports__recursiveFetchNew = __webpack_exports__.recursiveFetchNew;
|
|
24353
|
+
/******/ var __webpack_exports__renderLatestWidget = __webpack_exports__.renderLatestWidget;
|
|
24354
|
+
/******/ var __webpack_exports__renderPage = __webpack_exports__.renderPage;
|
|
24355
|
+
/******/ var __webpack_exports__renderWidget = __webpack_exports__.renderWidget;
|
|
23831
24356
|
/******/ var __webpack_exports__searchLinkMultipleListener = __webpack_exports__.searchLinkMultipleListener;
|
|
23832
24357
|
/******/ var __webpack_exports__sendMessage = __webpack_exports__.sendMessage;
|
|
23833
24358
|
/******/ var __webpack_exports__serviceWorker = __webpack_exports__.serviceWorker;
|
|
@@ -23835,7 +24360,12 @@ function initializeFlags(flags) {
|
|
|
23835
24360
|
/******/ var __webpack_exports__storeToDatabase = __webpack_exports__.storeToDatabase;
|
|
23836
24361
|
/******/ var __webpack_exports__subscribedListeners = __webpack_exports__.subscribedListeners;
|
|
23837
24362
|
/******/ var __webpack_exports__updateAccessToken = __webpack_exports__.updateAccessToken;
|
|
23838
|
-
/******/ export { __webpack_exports__ADMIN as ADMIN, __webpack_exports__ALLID as ALLID, __webpack_exports__AccessTracker as AccessTracker, __webpack_exports__AddGhostConcept as AddGhostConcept, __webpack_exports__Anomaly as Anomaly, __webpack_exports__BaseUrl as BaseUrl, __webpack_exports__BinaryTree as BinaryTree, __webpack_exports__BuilderStatefulWidget as BuilderStatefulWidget, __webpack_exports__Composition as Composition, __webpack_exports__CompositionBinaryTree as CompositionBinaryTree, __webpack_exports__CompositionNode as CompositionNode, __webpack_exports__Concept as Concept, __webpack_exports__ConceptsData as ConceptsData, __webpack_exports__Connection as Connection, __webpack_exports__ConnectionData as ConnectionData, __webpack_exports__CreateComposition as CreateComposition, __webpack_exports__CreateConnectionBetweenEntityLocal as CreateConnectionBetweenEntityLocal, __webpack_exports__CreateConnectionBetweenTwoConcepts as CreateConnectionBetweenTwoConcepts, __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral as CreateConnectionBetweenTwoConceptsGeneral, __webpack_exports__CreateConnectionBetweenTwoConceptsLocal as CreateConnectionBetweenTwoConceptsLocal, __webpack_exports__CreateDefaultConcept as CreateDefaultConcept, __webpack_exports__CreateDefaultLConcept as CreateDefaultLConcept, __webpack_exports__CreateSession as CreateSession, __webpack_exports__CreateSessionVisit as CreateSessionVisit, __webpack_exports__CreateTheCompositionLocal as CreateTheCompositionLocal, __webpack_exports__CreateTheCompositionWithCache as CreateTheCompositionWithCache, __webpack_exports__CreateTheConnection as CreateTheConnection, __webpack_exports__CreateTheConnectionGeneral as CreateTheConnectionGeneral, __webpack_exports__CreateTheConnectionLocal as CreateTheConnectionLocal, __webpack_exports__DATAID as DATAID, __webpack_exports__DATAIDDATE as DATAIDDATE, __webpack_exports__DelayFunctionExecution as DelayFunctionExecution, __webpack_exports__DeleteConceptById as DeleteConceptById, __webpack_exports__DeleteConceptLocal as DeleteConceptLocal, __webpack_exports__DeleteConnectionById as DeleteConnectionById, __webpack_exports__DeleteConnectionByType as DeleteConnectionByType, __webpack_exports__DeleteUser as DeleteUser, __webpack_exports__DependencyObserver as DependencyObserver, __webpack_exports__FilterSearch as FilterSearch, __webpack_exports__FormatFromConnections as FormatFromConnections, __webpack_exports__FormatFromConnectionsAltered as FormatFromConnectionsAltered, __webpack_exports__FreeschemaQuery as FreeschemaQuery, __webpack_exports__FreeschemaQueryApi as FreeschemaQueryApi, __webpack_exports__GetAllConnectionsOfComposition as GetAllConnectionsOfComposition, __webpack_exports__GetAllConnectionsOfCompositionBulk as GetAllConnectionsOfCompositionBulk, __webpack_exports__GetAllTheConnectionsByTypeAndOfTheConcept as GetAllTheConnectionsByTypeAndOfTheConcept, __webpack_exports__GetComposition as GetComposition, __webpack_exports__GetCompositionBulk as GetCompositionBulk, __webpack_exports__GetCompositionBulkWithDataId as GetCompositionBulkWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataId as GetCompositionFromConnectionsWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataIdFromConnections as GetCompositionFromConnectionsWithDataIdFromConnections, __webpack_exports__GetCompositionFromConnectionsWithDataIdInObject as GetCompositionFromConnectionsWithDataIdInObject, __webpack_exports__GetCompositionFromConnectionsWithDataIdIndex as GetCompositionFromConnectionsWithDataIdIndex, __webpack_exports__GetCompositionFromConnectionsWithIndex as GetCompositionFromConnectionsWithIndex, __webpack_exports__GetCompositionFromConnectionsWithIndexFromConnections as GetCompositionFromConnectionsWithIndexFromConnections, __webpack_exports__GetCompositionFromMemoryWithConnections as GetCompositionFromMemoryWithConnections, __webpack_exports__GetCompositionList as GetCompositionList, __webpack_exports__GetCompositionListAll as GetCompositionListAll, __webpack_exports__GetCompositionListAllWithId as GetCompositionListAllWithId, __webpack_exports__GetCompositionListListener as GetCompositionListListener, __webpack_exports__GetCompositionListLocal as GetCompositionListLocal, __webpack_exports__GetCompositionListLocalWithId as GetCompositionListLocalWithId, __webpack_exports__GetCompositionListWithId as GetCompositionListWithId, __webpack_exports__GetCompositionListWithIdUpdated as GetCompositionListWithIdUpdated, __webpack_exports__GetCompositionListener as GetCompositionListener, __webpack_exports__GetCompositionLocal as GetCompositionLocal, __webpack_exports__GetCompositionLocalWithId as GetCompositionLocalWithId, __webpack_exports__GetCompositionWithAllIds as GetCompositionWithAllIds, __webpack_exports__GetCompositionWithCache as GetCompositionWithCache, __webpack_exports__GetCompositionWithDataIdBulk as GetCompositionWithDataIdBulk, __webpack_exports__GetCompositionWithDataIdWithCache as GetCompositionWithDataIdWithCache, __webpack_exports__GetCompositionWithId as GetCompositionWithId, __webpack_exports__GetCompositionWithIdAndDateFromMemory as GetCompositionWithIdAndDateFromMemory, __webpack_exports__GetConceptBulk as GetConceptBulk, __webpack_exports__GetConceptByCharacter as GetConceptByCharacter, __webpack_exports__GetConceptByCharacterAndCategoryLocal as GetConceptByCharacterAndCategoryLocal, __webpack_exports__GetConceptByCharacterAndType as GetConceptByCharacterAndType, __webpack_exports__GetConnectionBetweenTwoConceptsLinker as GetConnectionBetweenTwoConceptsLinker, __webpack_exports__GetConnectionBulk as GetConnectionBulk, __webpack_exports__GetConnectionById as GetConnectionById, __webpack_exports__GetConnectionDataPrefetch as GetConnectionDataPrefetch, __webpack_exports__GetConnectionOfTheConcept as GetConnectionOfTheConcept, __webpack_exports__GetLink as GetLink, __webpack_exports__GetLinkListListener as GetLinkListListener, __webpack_exports__GetLinkListener as GetLinkListener, __webpack_exports__GetLinkRaw as GetLinkRaw, __webpack_exports__GetLinkerConnectionFromConcepts as GetLinkerConnectionFromConcepts, __webpack_exports__GetLinkerConnectionToConcepts as GetLinkerConnectionToConcepts, __webpack_exports__GetRelation as GetRelation, __webpack_exports__GetRelationLocal as GetRelationLocal, __webpack_exports__GetRelationRaw as GetRelationRaw, __webpack_exports__GetTheConcept as GetTheConcept, __webpack_exports__GetTheConceptLocal as GetTheConceptLocal, __webpack_exports__GetUserGhostId as GetUserGhostId, __webpack_exports__JUSTDATA as JUSTDATA, __webpack_exports__LConcept as LConcept, __webpack_exports__LConnection as LConnection, __webpack_exports__LISTNORMAL as LISTNORMAL, __webpack_exports__LocalConceptsData as LocalConceptsData, __webpack_exports__LocalSyncData as LocalSyncData, __webpack_exports__LocalTransaction as LocalTransaction, __webpack_exports__Logger as Logger, __webpack_exports__LoginToBackend as LoginToBackend, __webpack_exports__MakeTheInstanceConcept as MakeTheInstanceConcept, __webpack_exports__MakeTheInstanceConceptLocal as MakeTheInstanceConceptLocal, __webpack_exports__MakeTheTimestamp as MakeTheTimestamp, __webpack_exports__MakeTheTypeConcept as MakeTheTypeConcept, __webpack_exports__MakeTheTypeConceptApi as MakeTheTypeConceptApi, __webpack_exports__MakeTheTypeConceptLocal as MakeTheTypeConceptLocal, __webpack_exports__NORMAL as NORMAL, __webpack_exports__PRIVATE as PRIVATE, __webpack_exports__PUBLIC as PUBLIC, __webpack_exports__PatcherStructure as PatcherStructure, __webpack_exports__RAW as RAW, __webpack_exports__RecursiveSearchApi as RecursiveSearchApi, __webpack_exports__RecursiveSearchApiNewRawFullLinker as RecursiveSearchApiNewRawFullLinker, __webpack_exports__RecursiveSearchApiRaw as RecursiveSearchApiRaw, __webpack_exports__RecursiveSearchApiRawFullLinker as RecursiveSearchApiRawFullLinker, __webpack_exports__RecursiveSearchApiWithInternalConnections as RecursiveSearchApiWithInternalConnections, __webpack_exports__RecursiveSearchListener as RecursiveSearchListener, __webpack_exports__SchemaQueryListener as SchemaQueryListener, __webpack_exports__SearchAllConcepts as SearchAllConcepts, __webpack_exports__SearchLinkInternal as SearchLinkInternal, __webpack_exports__SearchLinkInternalAll as SearchLinkInternalAll, __webpack_exports__SearchLinkMultipleAll as SearchLinkMultipleAll, __webpack_exports__SearchLinkMultipleAllObservable as SearchLinkMultipleAllObservable, __webpack_exports__SearchLinkMultipleApi as SearchLinkMultipleApi, __webpack_exports__SearchQuery as SearchQuery, __webpack_exports__SearchStructure as SearchStructure, __webpack_exports__SearchWithLinker as SearchWithLinker, __webpack_exports__SearchWithTypeAndLinker as SearchWithTypeAndLinker, __webpack_exports__SearchWithTypeAndLinkerApi as SearchWithTypeAndLinkerApi, __webpack_exports__SessionData as SessionData, __webpack_exports__Signin as Signin, __webpack_exports__Signup as Signup, __webpack_exports__SignupEntity as SignupEntity, __webpack_exports__SplitStrings as SplitStrings, __webpack_exports__StatefulWidget as StatefulWidget, __webpack_exports__SyncData as SyncData, __webpack_exports__TrashTheConcept as TrashTheConcept, __webpack_exports__UpdateComposition as UpdateComposition, __webpack_exports__UpdateCompositionLocal as UpdateCompositionLocal, __webpack_exports__UserBinaryTree as UserBinaryTree, __webpack_exports__Validator as Validator, __webpack_exports__ViewInternalData as ViewInternalData, __webpack_exports__ViewInternalDataApi as ViewInternalDataApi, __webpack_exports__WidgetTree as WidgetTree, __webpack_exports__convertFromConceptToLConcept as convertFromConceptToLConcept, __webpack_exports__convertFromLConceptToConcept as convertFromLConceptToConcept, __webpack_exports__createFormFieldData as createFormFieldData, __webpack_exports__dispatchIdEvent as dispatchIdEvent, __webpack_exports__getFromDatabaseWithType as getFromDatabaseWithType, __webpack_exports__getObjectsFromIndexDb as getObjectsFromIndexDb, __webpack_exports__handleServiceWorkerException as handleServiceWorkerException, __webpack_exports__hasActivatedSW as hasActivatedSW, __webpack_exports__init as init, __webpack_exports__recursiveFetch as recursiveFetch, __webpack_exports__recursiveFetchNew as recursiveFetchNew, __webpack_exports__searchLinkMultipleListener as searchLinkMultipleListener, __webpack_exports__sendMessage as sendMessage, __webpack_exports__serviceWorker as serviceWorker, __webpack_exports__setHasActivatedSW as setHasActivatedSW, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken };
|
|
24363
|
+
/******/ var __webpack_exports__uploadAttachment = __webpack_exports__.uploadAttachment;
|
|
24364
|
+
/******/ var __webpack_exports__uploadFile = __webpack_exports__.uploadFile;
|
|
24365
|
+
/******/ var __webpack_exports__uploadImage = __webpack_exports__.uploadImage;
|
|
24366
|
+
/******/ var __webpack_exports__validDocumentFormats = __webpack_exports__.validDocumentFormats;
|
|
24367
|
+
/******/ var __webpack_exports__validImageFormats = __webpack_exports__.validImageFormats;
|
|
24368
|
+
/******/ export { __webpack_exports__ADMIN as ADMIN, __webpack_exports__ALLID as ALLID, __webpack_exports__AccessTracker as AccessTracker, __webpack_exports__AddGhostConcept as AddGhostConcept, __webpack_exports__Anomaly as Anomaly, __webpack_exports__BaseUrl as BaseUrl, __webpack_exports__BinaryTree as BinaryTree, __webpack_exports__BuilderStatefulWidget as BuilderStatefulWidget, __webpack_exports__Composition as Composition, __webpack_exports__CompositionBinaryTree as CompositionBinaryTree, __webpack_exports__CompositionNode as CompositionNode, __webpack_exports__Concept as Concept, __webpack_exports__ConceptsData as ConceptsData, __webpack_exports__Connection as Connection, __webpack_exports__ConnectionData as ConnectionData, __webpack_exports__CreateComposition as CreateComposition, __webpack_exports__CreateConnectionBetweenEntityLocal as CreateConnectionBetweenEntityLocal, __webpack_exports__CreateConnectionBetweenTwoConcepts as CreateConnectionBetweenTwoConcepts, __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral as CreateConnectionBetweenTwoConceptsGeneral, __webpack_exports__CreateConnectionBetweenTwoConceptsLocal as CreateConnectionBetweenTwoConceptsLocal, __webpack_exports__CreateDefaultConcept as CreateDefaultConcept, __webpack_exports__CreateDefaultLConcept as CreateDefaultLConcept, __webpack_exports__CreateSession as CreateSession, __webpack_exports__CreateSessionVisit as CreateSessionVisit, __webpack_exports__CreateTheCompositionLocal as CreateTheCompositionLocal, __webpack_exports__CreateTheCompositionWithCache as CreateTheCompositionWithCache, __webpack_exports__CreateTheConnection as CreateTheConnection, __webpack_exports__CreateTheConnectionGeneral as CreateTheConnectionGeneral, __webpack_exports__CreateTheConnectionLocal as CreateTheConnectionLocal, __webpack_exports__DATAID as DATAID, __webpack_exports__DATAIDDATE as DATAIDDATE, __webpack_exports__DelayFunctionExecution as DelayFunctionExecution, __webpack_exports__DeleteConceptById as DeleteConceptById, __webpack_exports__DeleteConceptLocal as DeleteConceptLocal, __webpack_exports__DeleteConnectionById as DeleteConnectionById, __webpack_exports__DeleteConnectionByType as DeleteConnectionByType, __webpack_exports__DeleteUser as DeleteUser, __webpack_exports__DependencyObserver as DependencyObserver, __webpack_exports__FilterSearch as FilterSearch, __webpack_exports__FormatFromConnections as FormatFromConnections, __webpack_exports__FormatFromConnectionsAltered as FormatFromConnectionsAltered, __webpack_exports__FreeschemaQuery as FreeschemaQuery, __webpack_exports__FreeschemaQueryApi as FreeschemaQueryApi, __webpack_exports__GetAllConnectionsOfComposition as GetAllConnectionsOfComposition, __webpack_exports__GetAllConnectionsOfCompositionBulk as GetAllConnectionsOfCompositionBulk, __webpack_exports__GetAllTheConnectionsByTypeAndOfTheConcept as GetAllTheConnectionsByTypeAndOfTheConcept, __webpack_exports__GetComposition as GetComposition, __webpack_exports__GetCompositionBulk as GetCompositionBulk, __webpack_exports__GetCompositionBulkWithDataId as GetCompositionBulkWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataId as GetCompositionFromConnectionsWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataIdFromConnections as GetCompositionFromConnectionsWithDataIdFromConnections, __webpack_exports__GetCompositionFromConnectionsWithDataIdInObject as GetCompositionFromConnectionsWithDataIdInObject, __webpack_exports__GetCompositionFromConnectionsWithDataIdIndex as GetCompositionFromConnectionsWithDataIdIndex, __webpack_exports__GetCompositionFromConnectionsWithIndex as GetCompositionFromConnectionsWithIndex, __webpack_exports__GetCompositionFromConnectionsWithIndexFromConnections as GetCompositionFromConnectionsWithIndexFromConnections, __webpack_exports__GetCompositionFromMemoryWithConnections as GetCompositionFromMemoryWithConnections, __webpack_exports__GetCompositionList as GetCompositionList, __webpack_exports__GetCompositionListAll as GetCompositionListAll, __webpack_exports__GetCompositionListAllWithId as GetCompositionListAllWithId, __webpack_exports__GetCompositionListListener as GetCompositionListListener, __webpack_exports__GetCompositionListLocal as GetCompositionListLocal, __webpack_exports__GetCompositionListLocalWithId as GetCompositionListLocalWithId, __webpack_exports__GetCompositionListWithId as GetCompositionListWithId, __webpack_exports__GetCompositionListWithIdUpdated as GetCompositionListWithIdUpdated, __webpack_exports__GetCompositionListener as GetCompositionListener, __webpack_exports__GetCompositionLocal as GetCompositionLocal, __webpack_exports__GetCompositionLocalWithId as GetCompositionLocalWithId, __webpack_exports__GetCompositionWithAllIds as GetCompositionWithAllIds, __webpack_exports__GetCompositionWithCache as GetCompositionWithCache, __webpack_exports__GetCompositionWithDataIdBulk as GetCompositionWithDataIdBulk, __webpack_exports__GetCompositionWithDataIdWithCache as GetCompositionWithDataIdWithCache, __webpack_exports__GetCompositionWithId as GetCompositionWithId, __webpack_exports__GetCompositionWithIdAndDateFromMemory as GetCompositionWithIdAndDateFromMemory, __webpack_exports__GetConceptBulk as GetConceptBulk, __webpack_exports__GetConceptByCharacter as GetConceptByCharacter, __webpack_exports__GetConceptByCharacterAndCategoryLocal as GetConceptByCharacterAndCategoryLocal, __webpack_exports__GetConceptByCharacterAndType as GetConceptByCharacterAndType, __webpack_exports__GetConnectionBetweenTwoConceptsLinker as GetConnectionBetweenTwoConceptsLinker, __webpack_exports__GetConnectionBulk as GetConnectionBulk, __webpack_exports__GetConnectionById as GetConnectionById, __webpack_exports__GetConnectionDataPrefetch as GetConnectionDataPrefetch, __webpack_exports__GetConnectionOfTheConcept as GetConnectionOfTheConcept, __webpack_exports__GetLink as GetLink, __webpack_exports__GetLinkListListener as GetLinkListListener, __webpack_exports__GetLinkListener as GetLinkListener, __webpack_exports__GetLinkRaw as GetLinkRaw, __webpack_exports__GetLinkerConnectionFromConcepts as GetLinkerConnectionFromConcepts, __webpack_exports__GetLinkerConnectionToConcepts as GetLinkerConnectionToConcepts, __webpack_exports__GetRelation as GetRelation, __webpack_exports__GetRelationLocal as GetRelationLocal, __webpack_exports__GetRelationRaw as GetRelationRaw, __webpack_exports__GetTheConcept as GetTheConcept, __webpack_exports__GetTheConceptLocal as GetTheConceptLocal, __webpack_exports__GetUserGhostId as GetUserGhostId, __webpack_exports__JUSTDATA as JUSTDATA, __webpack_exports__LConcept as LConcept, __webpack_exports__LConnection as LConnection, __webpack_exports__LISTNORMAL as LISTNORMAL, __webpack_exports__LocalConceptsData as LocalConceptsData, __webpack_exports__LocalSyncData as LocalSyncData, __webpack_exports__LocalTransaction as LocalTransaction, __webpack_exports__Logger as Logger, __webpack_exports__LoginToBackend as LoginToBackend, __webpack_exports__MakeTheInstanceConcept as MakeTheInstanceConcept, __webpack_exports__MakeTheInstanceConceptLocal as MakeTheInstanceConceptLocal, __webpack_exports__MakeTheTimestamp as MakeTheTimestamp, __webpack_exports__MakeTheTypeConcept as MakeTheTypeConcept, __webpack_exports__MakeTheTypeConceptApi as MakeTheTypeConceptApi, __webpack_exports__MakeTheTypeConceptLocal as MakeTheTypeConceptLocal, __webpack_exports__NORMAL as NORMAL, __webpack_exports__PRIVATE as PRIVATE, __webpack_exports__PUBLIC as PUBLIC, __webpack_exports__PatcherStructure as PatcherStructure, __webpack_exports__RAW as RAW, __webpack_exports__RecursiveSearchApi as RecursiveSearchApi, __webpack_exports__RecursiveSearchApiNewRawFullLinker as RecursiveSearchApiNewRawFullLinker, __webpack_exports__RecursiveSearchApiRaw as RecursiveSearchApiRaw, __webpack_exports__RecursiveSearchApiRawFullLinker as RecursiveSearchApiRawFullLinker, __webpack_exports__RecursiveSearchApiWithInternalConnections as RecursiveSearchApiWithInternalConnections, __webpack_exports__RecursiveSearchListener as RecursiveSearchListener, __webpack_exports__SchemaQueryListener as SchemaQueryListener, __webpack_exports__SearchAllConcepts as SearchAllConcepts, __webpack_exports__SearchLinkInternal as SearchLinkInternal, __webpack_exports__SearchLinkInternalAll as SearchLinkInternalAll, __webpack_exports__SearchLinkMultipleAll as SearchLinkMultipleAll, __webpack_exports__SearchLinkMultipleAllObservable as SearchLinkMultipleAllObservable, __webpack_exports__SearchLinkMultipleApi as SearchLinkMultipleApi, __webpack_exports__SearchQuery as SearchQuery, __webpack_exports__SearchStructure as SearchStructure, __webpack_exports__SearchWithLinker as SearchWithLinker, __webpack_exports__SearchWithTypeAndLinker as SearchWithTypeAndLinker, __webpack_exports__SearchWithTypeAndLinkerApi as SearchWithTypeAndLinkerApi, __webpack_exports__SessionData as SessionData, __webpack_exports__Signin as Signin, __webpack_exports__Signup as Signup, __webpack_exports__SignupEntity as SignupEntity, __webpack_exports__SplitStrings as SplitStrings, __webpack_exports__StatefulWidget as StatefulWidget, __webpack_exports__SyncData as SyncData, __webpack_exports__TrashTheConcept as TrashTheConcept, __webpack_exports__UpdateComposition as UpdateComposition, __webpack_exports__UpdateCompositionLocal as UpdateCompositionLocal, __webpack_exports__UserBinaryTree as UserBinaryTree, __webpack_exports__Validator as Validator, __webpack_exports__ViewInternalData as ViewInternalData, __webpack_exports__ViewInternalDataApi as ViewInternalDataApi, __webpack_exports__WidgetTree as WidgetTree, __webpack_exports__convertFromConceptToLConcept as convertFromConceptToLConcept, __webpack_exports__convertFromLConceptToConcept as convertFromLConceptToConcept, __webpack_exports__createFormFieldData as createFormFieldData, __webpack_exports__dispatchIdEvent as dispatchIdEvent, __webpack_exports__getFromDatabaseWithType as getFromDatabaseWithType, __webpack_exports__getObjectsFromIndexDb as getObjectsFromIndexDb, __webpack_exports__handleServiceWorkerException as handleServiceWorkerException, __webpack_exports__hasActivatedSW as hasActivatedSW, __webpack_exports__init as init, __webpack_exports__recursiveFetch as recursiveFetch, __webpack_exports__recursiveFetchNew as recursiveFetchNew, __webpack_exports__renderLatestWidget as renderLatestWidget, __webpack_exports__renderPage as renderPage, __webpack_exports__renderWidget as renderWidget, __webpack_exports__searchLinkMultipleListener as searchLinkMultipleListener, __webpack_exports__sendMessage as sendMessage, __webpack_exports__serviceWorker as serviceWorker, __webpack_exports__setHasActivatedSW as setHasActivatedSW, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken, __webpack_exports__uploadAttachment as uploadAttachment, __webpack_exports__uploadFile as uploadFile, __webpack_exports__uploadImage as uploadImage, __webpack_exports__validDocumentFormats as validDocumentFormats, __webpack_exports__validImageFormats as validImageFormats };
|
|
23839
24369
|
/******/
|
|
23840
24370
|
|
|
23841
24371
|
//# sourceMappingURL=main.bundle.js.map
|