mftsccs-browser 2.0.7-beta → 2.0.8-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 +90 -44
- package/dist/main.bundle.js.map +1 -1
- package/dist/serviceWorker.bundle.js +88 -43
- package/dist/serviceWorker.bundle.js.map +1 -1
- package/dist/types/AccessTracker/accessTracker.d.ts +1 -1
- package/dist/types/DataStructures/Search/FreeschemaQuery.d.ts +1 -0
- package/dist/types/Middleware/logger.service.d.ts +1 -1
- package/dist/types/Services/CreateConnection/CreateConnectionEntity.d.ts +2 -0
- package/dist/types/app.d.ts +1 -0
- package/package.json +1 -1
package/dist/main.bundle.js
CHANGED
|
@@ -32,7 +32,6 @@ class AccessTracker {
|
|
|
32
32
|
try {
|
|
33
33
|
if (conceptId) {
|
|
34
34
|
this.conceptsData[conceptId] = (this.conceptsData[conceptId] || 0) + 1;
|
|
35
|
-
// this.saveDataToLocalStorage()
|
|
36
35
|
}
|
|
37
36
|
}
|
|
38
37
|
catch (error) {
|
|
@@ -46,7 +45,6 @@ class AccessTracker {
|
|
|
46
45
|
try {
|
|
47
46
|
if (connectionId) {
|
|
48
47
|
this.connectionsData[connectionId] = (this.connectionsData[connectionId] || 0) + 1;
|
|
49
|
-
// this.saveDataToLocalStorage()
|
|
50
48
|
}
|
|
51
49
|
}
|
|
52
50
|
catch (error) {
|
|
@@ -117,6 +115,7 @@ class AccessTracker {
|
|
|
117
115
|
// Ensure conceptsData and connectionsData are not undefined or null
|
|
118
116
|
const conceptsToSend = this.conceptsData && Object.keys(this.conceptsData).length > 0 ? this.conceptsData : {};
|
|
119
117
|
const connectionsToSend = this.connectionsData && Object.keys(this.connectionsData).length > 0 ? this.connectionsData : {};
|
|
118
|
+
console.log("Access Tracker Sent to SERVER..", conceptsToSend, connectionsToSend);
|
|
120
119
|
const response = yield fetch(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.PostPrefetchConceptConnections(), {
|
|
121
120
|
method: 'POST',
|
|
122
121
|
headers: {
|
|
@@ -132,12 +131,10 @@ class AccessTracker {
|
|
|
132
131
|
throw new Error('Failed to sync data to the server.');
|
|
133
132
|
}
|
|
134
133
|
const serverData = yield response.json();
|
|
135
|
-
// console.log("Server Data after sync : ", serverData);
|
|
136
134
|
this.conceptsData = {};
|
|
137
135
|
this.connectionsData = {};
|
|
138
136
|
this.setNextSyncTime();
|
|
139
|
-
|
|
140
|
-
// localStorage?.removeItem(this.accessData)
|
|
137
|
+
// Logger.log("INFO", "Sync access tracker to server")
|
|
141
138
|
}
|
|
142
139
|
catch (error) {
|
|
143
140
|
console.error('Sync error:', error);
|
|
@@ -150,6 +147,7 @@ class AccessTracker {
|
|
|
150
147
|
static setNextSyncTime() {
|
|
151
148
|
// Calculate next sync time (current time + time interval)
|
|
152
149
|
this.nextSyncTime = Date.now() + this.SYNC_INTERVAL_MS;
|
|
150
|
+
// Logger.log("INFO", "Setip access tracker next time to sync to server")
|
|
153
151
|
}
|
|
154
152
|
/**
|
|
155
153
|
* Starts auto-syncing to the server every specified time interval.
|
|
@@ -170,7 +168,7 @@ class AccessTracker {
|
|
|
170
168
|
}, 60000); // Check every 60 Seconds
|
|
171
169
|
}
|
|
172
170
|
/**
|
|
173
|
-
* Sync immediately
|
|
171
|
+
* Sync immediately called by setInterval when time to sync has arrived.
|
|
174
172
|
*/
|
|
175
173
|
static syncNow() {
|
|
176
174
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -300,7 +298,6 @@ AccessTracker.nextSyncTime = Date.now();
|
|
|
300
298
|
AccessTracker.activateStatus = false;
|
|
301
299
|
AccessTracker.accessData = "Access Data";
|
|
302
300
|
(() => {
|
|
303
|
-
// console.log(`[INIT] Next Sync Time set to: ${new Date(this.nextSyncTime).toLocaleString()}`);
|
|
304
301
|
_a.startAutoSync();
|
|
305
302
|
})();
|
|
306
303
|
|
|
@@ -9582,6 +9579,7 @@ class FreeschemaQuery {
|
|
|
9582
9579
|
this.outputFormat = _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_0__.NORMAL;
|
|
9583
9580
|
this.name = "";
|
|
9584
9581
|
this.reverse = false;
|
|
9582
|
+
this.limit = false;
|
|
9585
9583
|
this.includeInFilter = false;
|
|
9586
9584
|
this.isOldConnectionType = false;
|
|
9587
9585
|
}
|
|
@@ -11277,7 +11275,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11277
11275
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
11278
11276
|
/* harmony export */ ApplicationMonitor: () => (/* binding */ ApplicationMonitor)
|
|
11279
11277
|
/* harmony export */ });
|
|
11280
|
-
/* harmony import */ var
|
|
11278
|
+
/* harmony import */ var _app__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../app */ "./src/app.ts");
|
|
11279
|
+
/* harmony import */ var _logger_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./logger.service */ "./src/Middleware/logger.service.ts");
|
|
11281
11280
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
11282
11281
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
11283
11282
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -11288,6 +11287,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
|
|
|
11288
11287
|
});
|
|
11289
11288
|
};
|
|
11290
11289
|
|
|
11290
|
+
|
|
11291
11291
|
class ApplicationMonitor {
|
|
11292
11292
|
static initialize() {
|
|
11293
11293
|
console.warn("Initialized Application Moniroring...");
|
|
@@ -11303,7 +11303,7 @@ class ApplicationMonitor {
|
|
|
11303
11303
|
stack: (_b = event.error) === null || _b === void 0 ? void 0 : _b.stack
|
|
11304
11304
|
};
|
|
11305
11305
|
const message = "Unhandled Error";
|
|
11306
|
-
|
|
11306
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("Error", message, errorDetails);
|
|
11307
11307
|
});
|
|
11308
11308
|
// Log unhandled promise rejections
|
|
11309
11309
|
window.addEventListener("unhandledrejection", (event) => {
|
|
@@ -11314,7 +11314,7 @@ class ApplicationMonitor {
|
|
|
11314
11314
|
stack: (_a = event.reason) === null || _a === void 0 ? void 0 : _a.stack,
|
|
11315
11315
|
};
|
|
11316
11316
|
const message = "Unhandled Promise Rejection";
|
|
11317
|
-
|
|
11317
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("Error", message, errorDetails);
|
|
11318
11318
|
});
|
|
11319
11319
|
// Log user interactions
|
|
11320
11320
|
this.logUserInteractions();
|
|
@@ -11335,7 +11335,7 @@ class ApplicationMonitor {
|
|
|
11335
11335
|
classes: target.className,
|
|
11336
11336
|
text: (_a = target.innerText) === null || _a === void 0 ? void 0 : _a.slice(0, 50),
|
|
11337
11337
|
};
|
|
11338
|
-
|
|
11338
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, details);
|
|
11339
11339
|
});
|
|
11340
11340
|
document.addEventListener("input", (event) => {
|
|
11341
11341
|
const target = event.target;
|
|
@@ -11345,14 +11345,14 @@ class ApplicationMonitor {
|
|
|
11345
11345
|
id: target.id,
|
|
11346
11346
|
value: target.value,
|
|
11347
11347
|
};
|
|
11348
|
-
|
|
11348
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, details);
|
|
11349
11349
|
});
|
|
11350
11350
|
document.addEventListener("scroll", () => {
|
|
11351
11351
|
const message = "User Scroll";
|
|
11352
11352
|
const details = {
|
|
11353
11353
|
position: window.scrollY,
|
|
11354
11354
|
};
|
|
11355
|
-
|
|
11355
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, details);
|
|
11356
11356
|
});
|
|
11357
11357
|
}
|
|
11358
11358
|
static logNetworkRequests() {
|
|
@@ -11365,15 +11365,21 @@ class ApplicationMonitor {
|
|
|
11365
11365
|
throw new Error("Original fetch is not available.");
|
|
11366
11366
|
}
|
|
11367
11367
|
// Define ignored URLs
|
|
11368
|
-
|
|
11368
|
+
const ignoredUrls = [_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.PostLogger(), _app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.PostPrefetchConceptConnections()];
|
|
11369
11369
|
window.fetch = (...args) => __awaiter(this, void 0, void 0, function* () {
|
|
11370
11370
|
const [url, options] = args;
|
|
11371
11371
|
const urlString = url instanceof Request ? url.url : (url instanceof URL ? url.toString() : url);
|
|
11372
11372
|
// Check if the URL is in the ignored URLs list
|
|
11373
|
-
|
|
11374
|
-
|
|
11375
|
-
|
|
11376
|
-
|
|
11373
|
+
if (ignoredUrls.includes(urlString)) {
|
|
11374
|
+
console.log("Ignored URLs detected : ", urlString);
|
|
11375
|
+
let networkDetails = {
|
|
11376
|
+
'url': urlString,
|
|
11377
|
+
'detail': 'skip'
|
|
11378
|
+
};
|
|
11379
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", "Network Request", networkDetails);
|
|
11380
|
+
return originalFetch(...args);
|
|
11381
|
+
// return new Response(null, { status: 200 });
|
|
11382
|
+
}
|
|
11377
11383
|
let networkDetails = {
|
|
11378
11384
|
"request": {
|
|
11379
11385
|
type: "REQUEST",
|
|
@@ -11392,7 +11398,7 @@ class ApplicationMonitor {
|
|
|
11392
11398
|
url: urlString,
|
|
11393
11399
|
status: response.status,
|
|
11394
11400
|
};
|
|
11395
|
-
|
|
11401
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", "Network Request", networkDetails);
|
|
11396
11402
|
return response;
|
|
11397
11403
|
}
|
|
11398
11404
|
catch (error) {
|
|
@@ -11410,7 +11416,7 @@ class ApplicationMonitor {
|
|
|
11410
11416
|
error: error instanceof Error ? error.message : String(error),
|
|
11411
11417
|
};
|
|
11412
11418
|
// Log or process networkDetails if needed
|
|
11413
|
-
|
|
11419
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("ERROR", "Network Request", networkDetails);
|
|
11414
11420
|
// Throw a standard Error object (not the networkDetails object)
|
|
11415
11421
|
throw new Error(`Network request failed for ${urlString}: ${error.message}`);
|
|
11416
11422
|
}
|
|
@@ -11426,7 +11432,7 @@ class ApplicationMonitor {
|
|
|
11426
11432
|
loadTime: timing.loadEventEnd - timing.navigationStart,
|
|
11427
11433
|
domContentLoadedTime: timing.domContentLoadedEventEnd - timing.navigationStart,
|
|
11428
11434
|
};
|
|
11429
|
-
|
|
11435
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", "Performance Metrics", details);
|
|
11430
11436
|
});
|
|
11431
11437
|
}
|
|
11432
11438
|
// Log route changes (SPAs)
|
|
@@ -11437,14 +11443,14 @@ class ApplicationMonitor {
|
|
|
11437
11443
|
const urlChange = {
|
|
11438
11444
|
url: (_a = args[2]) === null || _a === void 0 ? void 0 : _a.toString(),
|
|
11439
11445
|
};
|
|
11440
|
-
|
|
11446
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", "Route Change", urlChange);
|
|
11441
11447
|
return pushState.apply(this, args);
|
|
11442
11448
|
};
|
|
11443
11449
|
window === null || window === void 0 ? void 0 : window.addEventListener("popstate", () => {
|
|
11444
11450
|
const urlChange = {
|
|
11445
11451
|
url: location.href
|
|
11446
11452
|
};
|
|
11447
|
-
|
|
11453
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", "Route Changed (Back/Forward)", urlChange);
|
|
11448
11454
|
});
|
|
11449
11455
|
}
|
|
11450
11456
|
// Log WebSocket events
|
|
@@ -11460,14 +11466,14 @@ class ApplicationMonitor {
|
|
|
11460
11466
|
const data = {
|
|
11461
11467
|
"url": url.toString()
|
|
11462
11468
|
};
|
|
11463
|
-
|
|
11469
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, data);
|
|
11464
11470
|
this.addEventListener("message", (event) => {
|
|
11465
11471
|
const message = "WebSocket Message";
|
|
11466
11472
|
const data = {
|
|
11467
11473
|
"url": url,
|
|
11468
11474
|
"data": event.data
|
|
11469
11475
|
};
|
|
11470
|
-
|
|
11476
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, data);
|
|
11471
11477
|
});
|
|
11472
11478
|
this.addEventListener("error", (error) => {
|
|
11473
11479
|
const message = "WebSocket Error";
|
|
@@ -11475,14 +11481,14 @@ class ApplicationMonitor {
|
|
|
11475
11481
|
"url": url,
|
|
11476
11482
|
"error": error instanceof Error ? error.message : String(error),
|
|
11477
11483
|
};
|
|
11478
|
-
|
|
11484
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("ERROR", message, data);
|
|
11479
11485
|
});
|
|
11480
11486
|
this.addEventListener("close", () => {
|
|
11481
11487
|
const message = "WebSocket Closed";
|
|
11482
11488
|
const data = {
|
|
11483
11489
|
"url": url,
|
|
11484
11490
|
};
|
|
11485
|
-
|
|
11491
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, data);
|
|
11486
11492
|
});
|
|
11487
11493
|
}
|
|
11488
11494
|
};
|
|
@@ -11603,8 +11609,6 @@ class Logger {
|
|
|
11603
11609
|
return;
|
|
11604
11610
|
}
|
|
11605
11611
|
Logger.nextSyncTime = Date.now() + Logger.SYNC_INTERVAL_MS;
|
|
11606
|
-
// console.log("NextTimeToSync for Upcoming : ", this.nextSyncTime)
|
|
11607
|
-
// this.autoSyncInterval = window?.setInterval(() => {
|
|
11608
11612
|
setInterval(() => {
|
|
11609
11613
|
const currentTime = Date.now();
|
|
11610
11614
|
// console.log("Current Time : ",currentTime);
|
|
@@ -11766,15 +11770,14 @@ class Logger {
|
|
|
11766
11770
|
}
|
|
11767
11771
|
const accessToken = _DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_1__.TokenStorage.BearerAccessToken;
|
|
11768
11772
|
const storedLogs = this.applicationLogsData;
|
|
11773
|
+
console.log("Application Logs of AppLog : ", storedLogs);
|
|
11769
11774
|
if (!accessToken)
|
|
11770
11775
|
return;
|
|
11771
11776
|
if (storedLogs.length === 0)
|
|
11772
11777
|
return;
|
|
11773
|
-
// console.log("Stored Logs : ", storedLogs);
|
|
11774
11778
|
const chunkSize = 50;
|
|
11775
11779
|
for (let i = 0; i < storedLogs.length; i += chunkSize) {
|
|
11776
11780
|
const chunk = storedLogs.slice(i, i + chunkSize);
|
|
11777
|
-
// console.log("The PostLogger URL on Applciation Log : ", BaseUrl.PostLogger());
|
|
11778
11781
|
const response = yield fetch(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.PostLogger(), {
|
|
11779
11782
|
method: "POST",
|
|
11780
11783
|
headers: {
|
|
@@ -11792,7 +11795,10 @@ class Logger {
|
|
|
11792
11795
|
return;
|
|
11793
11796
|
}
|
|
11794
11797
|
}
|
|
11795
|
-
//
|
|
11798
|
+
// clear application log from memory
|
|
11799
|
+
this.applicationLogsData = [];
|
|
11800
|
+
// this.clearLogsFromLocalStorage(this.appLogs)
|
|
11801
|
+
// Logger.log("INFO", "Sync Application Logs to server")
|
|
11796
11802
|
}
|
|
11797
11803
|
catch (error) {
|
|
11798
11804
|
console.error("Error while sending logs to server:", error);
|
|
@@ -11804,13 +11810,11 @@ class Logger {
|
|
|
11804
11810
|
try {
|
|
11805
11811
|
console.warn("Log sending to server...");
|
|
11806
11812
|
// console.log("Log To Server : \n", this.logsData);
|
|
11807
|
-
if (this.logsData.length
|
|
11813
|
+
if (this.logsData.length === 0)
|
|
11808
11814
|
return;
|
|
11809
|
-
}
|
|
11810
11815
|
const accessToken = _DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_1__.TokenStorage.BearerAccessToken;
|
|
11811
|
-
// const storedLogs = JSON.parse(localStorage?.getItem(this.mftsccsBrowser) || "[]");
|
|
11812
11816
|
const storedLogs = this.logsData;
|
|
11813
|
-
|
|
11817
|
+
console.log("Package Logs for syncing... ", storedLogs);
|
|
11814
11818
|
if (!accessToken)
|
|
11815
11819
|
return;
|
|
11816
11820
|
// const storedLogs = this.logs
|
|
@@ -11819,8 +11823,6 @@ class Logger {
|
|
|
11819
11823
|
const chunkSize = 50;
|
|
11820
11824
|
for (let i = 0; i < storedLogs.length; i += chunkSize) {
|
|
11821
11825
|
const chunk = storedLogs.slice(i, i + chunkSize);
|
|
11822
|
-
// console.log("The PostLogger URL on Logs is : ", BaseUrl.PostLogger());
|
|
11823
|
-
// const response = await fetch(Logger.SERVER_URL, {
|
|
11824
11826
|
const response = yield fetch(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.PostLogger(), {
|
|
11825
11827
|
method: "POST",
|
|
11826
11828
|
headers: {
|
|
@@ -11838,12 +11840,13 @@ class Logger {
|
|
|
11838
11840
|
return;
|
|
11839
11841
|
}
|
|
11840
11842
|
}
|
|
11841
|
-
//
|
|
11842
|
-
|
|
11843
|
+
// clear mftsccs log from memory
|
|
11844
|
+
this.logsData = [];
|
|
11845
|
+
// this.clearLogsFromLocalStorage(this.mftsccsBrowser)
|
|
11846
|
+
// Logger.log("INFO", "Sync Application Logs to server")
|
|
11843
11847
|
}
|
|
11844
11848
|
catch (error) {
|
|
11845
11849
|
console.error("Error while sending logs to server:", error);
|
|
11846
|
-
// HandleNetworkError("Request", error)
|
|
11847
11850
|
}
|
|
11848
11851
|
});
|
|
11849
11852
|
}
|
|
@@ -11867,7 +11870,7 @@ class Logger {
|
|
|
11867
11870
|
Logger.log("ERROR", "Error while saving log in local storage");
|
|
11868
11871
|
}
|
|
11869
11872
|
}
|
|
11870
|
-
static
|
|
11873
|
+
static clearLogsFromLocalStorage(logType) {
|
|
11871
11874
|
if (typeof localStorage === undefined) {
|
|
11872
11875
|
console.warn('localStorage is not available');
|
|
11873
11876
|
return;
|
|
@@ -11890,7 +11893,6 @@ Logger.mftsccsBrowser = "mftsccs";
|
|
|
11890
11893
|
Logger.autoSyncInterval = null;
|
|
11891
11894
|
// Ensure logs are managed automatically
|
|
11892
11895
|
(() => {
|
|
11893
|
-
// console.log("Initializing Logger with auto-sync mechanism.");
|
|
11894
11896
|
Logger.startAutoSync();
|
|
11895
11897
|
})();
|
|
11896
11898
|
/**
|
|
@@ -12837,6 +12839,46 @@ function CreateConnectionBetweenTwoConceptsGeneral(ofTheConcept_1, toTheConcept_
|
|
|
12837
12839
|
}
|
|
12838
12840
|
|
|
12839
12841
|
|
|
12842
|
+
/***/ }),
|
|
12843
|
+
|
|
12844
|
+
/***/ "./src/Services/CreateConnection/CreateConnectionEntity.ts":
|
|
12845
|
+
/*!*****************************************************************!*\
|
|
12846
|
+
!*** ./src/Services/CreateConnection/CreateConnectionEntity.ts ***!
|
|
12847
|
+
\*****************************************************************/
|
|
12848
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12849
|
+
|
|
12850
|
+
__webpack_require__.r(__webpack_exports__);
|
|
12851
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12852
|
+
/* harmony export */ CreateConnectionBetweenEntityLocal: () => (/* binding */ CreateConnectionBetweenEntityLocal)
|
|
12853
|
+
/* harmony export */ });
|
|
12854
|
+
/* harmony import */ var _Local_CreateTheConnectionLocal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Local/CreateTheConnectionLocal */ "./src/Services/Local/CreateTheConnectionLocal.ts");
|
|
12855
|
+
/* harmony import */ var _Local_MakeTheTypeLocal__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Local/MakeTheTypeLocal */ "./src/Services/Local/MakeTheTypeLocal.ts");
|
|
12856
|
+
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
12857
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
12858
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
12859
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
12860
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
12861
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
12862
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
12863
|
+
});
|
|
12864
|
+
};
|
|
12865
|
+
|
|
12866
|
+
|
|
12867
|
+
function CreateConnectionBetweenEntityLocal(concept1Data, concept2Data, linker) {
|
|
12868
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
12869
|
+
var _a;
|
|
12870
|
+
const userId = concept1Data.userId;
|
|
12871
|
+
const sessionInformationId = 999;
|
|
12872
|
+
const sessionInformationUserId = 999;
|
|
12873
|
+
const prefix = (_a = concept1Data.type) === null || _a === void 0 ? void 0 : _a.characterValue;
|
|
12874
|
+
const linkerAdd = linker;
|
|
12875
|
+
const forwardLinker = prefix + "_" + linkerAdd;
|
|
12876
|
+
const connectionConcept = yield (0,_Local_MakeTheTypeLocal__WEBPACK_IMPORTED_MODULE_1__.MakeTheTypeConceptLocal)(forwardLinker, sessionInformationId, sessionInformationUserId, userId);
|
|
12877
|
+
console.log(yield (0,_Local_CreateTheConnectionLocal__WEBPACK_IMPORTED_MODULE_0__.CreateTheConnectionLocal)(concept1Data.id, concept2Data.id, connectionConcept.id, 1000));
|
|
12878
|
+
});
|
|
12879
|
+
}
|
|
12880
|
+
|
|
12881
|
+
|
|
12840
12882
|
/***/ }),
|
|
12841
12883
|
|
|
12842
12884
|
/***/ "./src/Services/CreateDefaultConcept.ts":
|
|
@@ -22442,6 +22484,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22442
22484
|
/* harmony export */ Connection: () => (/* reexport safe */ _DataStructures_Connection__WEBPACK_IMPORTED_MODULE_80__.Connection),
|
|
22443
22485
|
/* harmony export */ ConnectionData: () => (/* reexport safe */ _DataStructures_ConnectionData__WEBPACK_IMPORTED_MODULE_82__.ConnectionData),
|
|
22444
22486
|
/* harmony export */ CreateComposition: () => (/* reexport safe */ _Services_CreateTheComposition__WEBPACK_IMPORTED_MODULE_9__["default"]),
|
|
22487
|
+
/* harmony export */ CreateConnectionBetweenEntityLocal: () => (/* reexport safe */ _Services_CreateConnection_CreateConnectionEntity__WEBPACK_IMPORTED_MODULE_118__.CreateConnectionBetweenEntityLocal),
|
|
22445
22488
|
/* harmony export */ CreateConnectionBetweenTwoConcepts: () => (/* reexport safe */ _Services_CreateConnectionBetweenTwoConcepts__WEBPACK_IMPORTED_MODULE_11__.CreateConnectionBetweenTwoConcepts),
|
|
22446
22489
|
/* harmony export */ CreateConnectionBetweenTwoConceptsGeneral: () => (/* reexport safe */ _Services_CreateConnectionBetweenTwoConcepts__WEBPACK_IMPORTED_MODULE_11__.CreateConnectionBetweenTwoConceptsGeneral),
|
|
22447
22490
|
/* harmony export */ CreateConnectionBetweenTwoConceptsLocal: () => (/* reexport safe */ _Services_Local_CreateConnectionBetweenTwoConceptsLocal__WEBPACK_IMPORTED_MODULE_60__.CreateConnectionBetweenTwoConceptsLocal),
|
|
@@ -22707,6 +22750,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22707
22750
|
/* harmony import */ var _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./WrapperFunctions/SchemaQueryObservable */ "./src/WrapperFunctions/SchemaQueryObservable.ts");
|
|
22708
22751
|
/* harmony import */ var _Widgets_WidgetTree__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./Widgets/WidgetTree */ "./src/Widgets/WidgetTree.ts");
|
|
22709
22752
|
/* harmony import */ var _AccessTracker_accessTracker__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./AccessTracker/accessTracker */ "./src/AccessTracker/accessTracker.ts");
|
|
22753
|
+
/* harmony import */ var _Services_CreateConnection_CreateConnectionEntity__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./Services/CreateConnection/CreateConnectionEntity */ "./src/Services/CreateConnection/CreateConnectionEntity.ts");
|
|
22710
22754
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
22711
22755
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
22712
22756
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -22841,6 +22885,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
|
|
|
22841
22885
|
|
|
22842
22886
|
|
|
22843
22887
|
|
|
22888
|
+
|
|
22844
22889
|
|
|
22845
22890
|
|
|
22846
22891
|
var serviceWorker;
|
|
@@ -23517,6 +23562,7 @@ const handleServiceWorkerException = (error) => {
|
|
|
23517
23562
|
/******/ var __webpack_exports__Connection = __webpack_exports__.Connection;
|
|
23518
23563
|
/******/ var __webpack_exports__ConnectionData = __webpack_exports__.ConnectionData;
|
|
23519
23564
|
/******/ var __webpack_exports__CreateComposition = __webpack_exports__.CreateComposition;
|
|
23565
|
+
/******/ var __webpack_exports__CreateConnectionBetweenEntityLocal = __webpack_exports__.CreateConnectionBetweenEntityLocal;
|
|
23520
23566
|
/******/ var __webpack_exports__CreateConnectionBetweenTwoConcepts = __webpack_exports__.CreateConnectionBetweenTwoConcepts;
|
|
23521
23567
|
/******/ var __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral = __webpack_exports__.CreateConnectionBetweenTwoConceptsGeneral;
|
|
23522
23568
|
/******/ var __webpack_exports__CreateConnectionBetweenTwoConceptsLocal = __webpack_exports__.CreateConnectionBetweenTwoConceptsLocal;
|
|
@@ -23663,7 +23709,7 @@ const handleServiceWorkerException = (error) => {
|
|
|
23663
23709
|
/******/ var __webpack_exports__storeToDatabase = __webpack_exports__.storeToDatabase;
|
|
23664
23710
|
/******/ var __webpack_exports__subscribedListeners = __webpack_exports__.subscribedListeners;
|
|
23665
23711
|
/******/ var __webpack_exports__updateAccessToken = __webpack_exports__.updateAccessToken;
|
|
23666
|
-
/******/ 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__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__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__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken };
|
|
23712
|
+
/******/ 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__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__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken };
|
|
23667
23713
|
/******/
|
|
23668
23714
|
|
|
23669
23715
|
//# sourceMappingURL=main.bundle.js.map
|