mftsccs-browser 2.0.6-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 +107 -44
- package/dist/main.bundle.js.map +1 -1
- package/dist/serviceWorker.bundle.js +105 -43
- package/dist/serviceWorker.bundle.js.map +1 -1
- package/dist/types/AccessTracker/accessTracker.d.ts +1 -1
- package/dist/types/Anomaly/anomaly.d.ts +5 -0
- 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
|
|
|
@@ -318,6 +315,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
318
315
|
/* harmony export */ Anomaly: () => (/* binding */ Anomaly)
|
|
319
316
|
/* harmony export */ });
|
|
320
317
|
/* harmony import */ var _Validator_constant__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Validator/constant */ "./src/Validator/constant.ts");
|
|
318
|
+
/* harmony import */ var _src_app__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../src/app */ "./src/app.ts");
|
|
321
319
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
322
320
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
323
321
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -328,6 +326,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
|
|
|
328
326
|
});
|
|
329
327
|
};
|
|
330
328
|
|
|
329
|
+
|
|
331
330
|
/**
|
|
332
331
|
* Class representing the Anomaly detection logic for checking data validity based on predefined rules.
|
|
333
332
|
* This class contains methods for initializing, caching, and fetching anomaly parameters from an external API,
|
|
@@ -534,6 +533,21 @@ class Anomaly {
|
|
|
534
533
|
}
|
|
535
534
|
});
|
|
536
535
|
}
|
|
536
|
+
/**
|
|
537
|
+
* List all the exported functions of the package
|
|
538
|
+
* @returns Keys of the Object which has exported functions
|
|
539
|
+
*/
|
|
540
|
+
static getExportedFunction() {
|
|
541
|
+
console.log("Main : ", _src_app__WEBPACK_IMPORTED_MODULE_1__);
|
|
542
|
+
const the_exported_list = Object.keys(_src_app__WEBPACK_IMPORTED_MODULE_1__);
|
|
543
|
+
let the_function_s_name = [];
|
|
544
|
+
// the_exported_list.forEach(the_function_name => {
|
|
545
|
+
// if (typeof main[the_function_name] === 'function') {
|
|
546
|
+
// the_function_s_name.push(the_function_name);
|
|
547
|
+
// }
|
|
548
|
+
// });
|
|
549
|
+
return the_function_s_name;
|
|
550
|
+
}
|
|
537
551
|
}
|
|
538
552
|
/**
|
|
539
553
|
* Static cache for storing fetched anomaly parameters.
|
|
@@ -9565,6 +9579,7 @@ class FreeschemaQuery {
|
|
|
9565
9579
|
this.outputFormat = _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_0__.NORMAL;
|
|
9566
9580
|
this.name = "";
|
|
9567
9581
|
this.reverse = false;
|
|
9582
|
+
this.limit = false;
|
|
9568
9583
|
this.includeInFilter = false;
|
|
9569
9584
|
this.isOldConnectionType = false;
|
|
9570
9585
|
}
|
|
@@ -11260,7 +11275,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11260
11275
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
11261
11276
|
/* harmony export */ ApplicationMonitor: () => (/* binding */ ApplicationMonitor)
|
|
11262
11277
|
/* harmony export */ });
|
|
11263
|
-
/* 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");
|
|
11264
11280
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
11265
11281
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
11266
11282
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -11271,6 +11287,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
|
|
|
11271
11287
|
});
|
|
11272
11288
|
};
|
|
11273
11289
|
|
|
11290
|
+
|
|
11274
11291
|
class ApplicationMonitor {
|
|
11275
11292
|
static initialize() {
|
|
11276
11293
|
console.warn("Initialized Application Moniroring...");
|
|
@@ -11286,7 +11303,7 @@ class ApplicationMonitor {
|
|
|
11286
11303
|
stack: (_b = event.error) === null || _b === void 0 ? void 0 : _b.stack
|
|
11287
11304
|
};
|
|
11288
11305
|
const message = "Unhandled Error";
|
|
11289
|
-
|
|
11306
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("Error", message, errorDetails);
|
|
11290
11307
|
});
|
|
11291
11308
|
// Log unhandled promise rejections
|
|
11292
11309
|
window.addEventListener("unhandledrejection", (event) => {
|
|
@@ -11297,7 +11314,7 @@ class ApplicationMonitor {
|
|
|
11297
11314
|
stack: (_a = event.reason) === null || _a === void 0 ? void 0 : _a.stack,
|
|
11298
11315
|
};
|
|
11299
11316
|
const message = "Unhandled Promise Rejection";
|
|
11300
|
-
|
|
11317
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("Error", message, errorDetails);
|
|
11301
11318
|
});
|
|
11302
11319
|
// Log user interactions
|
|
11303
11320
|
this.logUserInteractions();
|
|
@@ -11318,7 +11335,7 @@ class ApplicationMonitor {
|
|
|
11318
11335
|
classes: target.className,
|
|
11319
11336
|
text: (_a = target.innerText) === null || _a === void 0 ? void 0 : _a.slice(0, 50),
|
|
11320
11337
|
};
|
|
11321
|
-
|
|
11338
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, details);
|
|
11322
11339
|
});
|
|
11323
11340
|
document.addEventListener("input", (event) => {
|
|
11324
11341
|
const target = event.target;
|
|
@@ -11328,14 +11345,14 @@ class ApplicationMonitor {
|
|
|
11328
11345
|
id: target.id,
|
|
11329
11346
|
value: target.value,
|
|
11330
11347
|
};
|
|
11331
|
-
|
|
11348
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, details);
|
|
11332
11349
|
});
|
|
11333
11350
|
document.addEventListener("scroll", () => {
|
|
11334
11351
|
const message = "User Scroll";
|
|
11335
11352
|
const details = {
|
|
11336
11353
|
position: window.scrollY,
|
|
11337
11354
|
};
|
|
11338
|
-
|
|
11355
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, details);
|
|
11339
11356
|
});
|
|
11340
11357
|
}
|
|
11341
11358
|
static logNetworkRequests() {
|
|
@@ -11348,15 +11365,21 @@ class ApplicationMonitor {
|
|
|
11348
11365
|
throw new Error("Original fetch is not available.");
|
|
11349
11366
|
}
|
|
11350
11367
|
// Define ignored URLs
|
|
11351
|
-
|
|
11368
|
+
const ignoredUrls = [_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.PostLogger(), _app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.PostPrefetchConceptConnections()];
|
|
11352
11369
|
window.fetch = (...args) => __awaiter(this, void 0, void 0, function* () {
|
|
11353
11370
|
const [url, options] = args;
|
|
11354
11371
|
const urlString = url instanceof Request ? url.url : (url instanceof URL ? url.toString() : url);
|
|
11355
11372
|
// Check if the URL is in the ignored URLs list
|
|
11356
|
-
|
|
11357
|
-
|
|
11358
|
-
|
|
11359
|
-
|
|
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
|
+
}
|
|
11360
11383
|
let networkDetails = {
|
|
11361
11384
|
"request": {
|
|
11362
11385
|
type: "REQUEST",
|
|
@@ -11375,7 +11398,7 @@ class ApplicationMonitor {
|
|
|
11375
11398
|
url: urlString,
|
|
11376
11399
|
status: response.status,
|
|
11377
11400
|
};
|
|
11378
|
-
|
|
11401
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", "Network Request", networkDetails);
|
|
11379
11402
|
return response;
|
|
11380
11403
|
}
|
|
11381
11404
|
catch (error) {
|
|
@@ -11393,7 +11416,7 @@ class ApplicationMonitor {
|
|
|
11393
11416
|
error: error instanceof Error ? error.message : String(error),
|
|
11394
11417
|
};
|
|
11395
11418
|
// Log or process networkDetails if needed
|
|
11396
|
-
|
|
11419
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("ERROR", "Network Request", networkDetails);
|
|
11397
11420
|
// Throw a standard Error object (not the networkDetails object)
|
|
11398
11421
|
throw new Error(`Network request failed for ${urlString}: ${error.message}`);
|
|
11399
11422
|
}
|
|
@@ -11409,7 +11432,7 @@ class ApplicationMonitor {
|
|
|
11409
11432
|
loadTime: timing.loadEventEnd - timing.navigationStart,
|
|
11410
11433
|
domContentLoadedTime: timing.domContentLoadedEventEnd - timing.navigationStart,
|
|
11411
11434
|
};
|
|
11412
|
-
|
|
11435
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", "Performance Metrics", details);
|
|
11413
11436
|
});
|
|
11414
11437
|
}
|
|
11415
11438
|
// Log route changes (SPAs)
|
|
@@ -11420,14 +11443,14 @@ class ApplicationMonitor {
|
|
|
11420
11443
|
const urlChange = {
|
|
11421
11444
|
url: (_a = args[2]) === null || _a === void 0 ? void 0 : _a.toString(),
|
|
11422
11445
|
};
|
|
11423
|
-
|
|
11446
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", "Route Change", urlChange);
|
|
11424
11447
|
return pushState.apply(this, args);
|
|
11425
11448
|
};
|
|
11426
11449
|
window === null || window === void 0 ? void 0 : window.addEventListener("popstate", () => {
|
|
11427
11450
|
const urlChange = {
|
|
11428
11451
|
url: location.href
|
|
11429
11452
|
};
|
|
11430
|
-
|
|
11453
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", "Route Changed (Back/Forward)", urlChange);
|
|
11431
11454
|
});
|
|
11432
11455
|
}
|
|
11433
11456
|
// Log WebSocket events
|
|
@@ -11443,14 +11466,14 @@ class ApplicationMonitor {
|
|
|
11443
11466
|
const data = {
|
|
11444
11467
|
"url": url.toString()
|
|
11445
11468
|
};
|
|
11446
|
-
|
|
11469
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, data);
|
|
11447
11470
|
this.addEventListener("message", (event) => {
|
|
11448
11471
|
const message = "WebSocket Message";
|
|
11449
11472
|
const data = {
|
|
11450
11473
|
"url": url,
|
|
11451
11474
|
"data": event.data
|
|
11452
11475
|
};
|
|
11453
|
-
|
|
11476
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, data);
|
|
11454
11477
|
});
|
|
11455
11478
|
this.addEventListener("error", (error) => {
|
|
11456
11479
|
const message = "WebSocket Error";
|
|
@@ -11458,14 +11481,14 @@ class ApplicationMonitor {
|
|
|
11458
11481
|
"url": url,
|
|
11459
11482
|
"error": error instanceof Error ? error.message : String(error),
|
|
11460
11483
|
};
|
|
11461
|
-
|
|
11484
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("ERROR", message, data);
|
|
11462
11485
|
});
|
|
11463
11486
|
this.addEventListener("close", () => {
|
|
11464
11487
|
const message = "WebSocket Closed";
|
|
11465
11488
|
const data = {
|
|
11466
11489
|
"url": url,
|
|
11467
11490
|
};
|
|
11468
|
-
|
|
11491
|
+
_logger_service__WEBPACK_IMPORTED_MODULE_1__.Logger.logApplication("INFO", message, data);
|
|
11469
11492
|
});
|
|
11470
11493
|
}
|
|
11471
11494
|
};
|
|
@@ -11586,8 +11609,6 @@ class Logger {
|
|
|
11586
11609
|
return;
|
|
11587
11610
|
}
|
|
11588
11611
|
Logger.nextSyncTime = Date.now() + Logger.SYNC_INTERVAL_MS;
|
|
11589
|
-
// console.log("NextTimeToSync for Upcoming : ", this.nextSyncTime)
|
|
11590
|
-
// this.autoSyncInterval = window?.setInterval(() => {
|
|
11591
11612
|
setInterval(() => {
|
|
11592
11613
|
const currentTime = Date.now();
|
|
11593
11614
|
// console.log("Current Time : ",currentTime);
|
|
@@ -11749,15 +11770,14 @@ class Logger {
|
|
|
11749
11770
|
}
|
|
11750
11771
|
const accessToken = _DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_1__.TokenStorage.BearerAccessToken;
|
|
11751
11772
|
const storedLogs = this.applicationLogsData;
|
|
11773
|
+
console.log("Application Logs of AppLog : ", storedLogs);
|
|
11752
11774
|
if (!accessToken)
|
|
11753
11775
|
return;
|
|
11754
11776
|
if (storedLogs.length === 0)
|
|
11755
11777
|
return;
|
|
11756
|
-
// console.log("Stored Logs : ", storedLogs);
|
|
11757
11778
|
const chunkSize = 50;
|
|
11758
11779
|
for (let i = 0; i < storedLogs.length; i += chunkSize) {
|
|
11759
11780
|
const chunk = storedLogs.slice(i, i + chunkSize);
|
|
11760
|
-
// console.log("The PostLogger URL on Applciation Log : ", BaseUrl.PostLogger());
|
|
11761
11781
|
const response = yield fetch(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.PostLogger(), {
|
|
11762
11782
|
method: "POST",
|
|
11763
11783
|
headers: {
|
|
@@ -11775,7 +11795,10 @@ class Logger {
|
|
|
11775
11795
|
return;
|
|
11776
11796
|
}
|
|
11777
11797
|
}
|
|
11778
|
-
//
|
|
11798
|
+
// clear application log from memory
|
|
11799
|
+
this.applicationLogsData = [];
|
|
11800
|
+
// this.clearLogsFromLocalStorage(this.appLogs)
|
|
11801
|
+
// Logger.log("INFO", "Sync Application Logs to server")
|
|
11779
11802
|
}
|
|
11780
11803
|
catch (error) {
|
|
11781
11804
|
console.error("Error while sending logs to server:", error);
|
|
@@ -11787,13 +11810,11 @@ class Logger {
|
|
|
11787
11810
|
try {
|
|
11788
11811
|
console.warn("Log sending to server...");
|
|
11789
11812
|
// console.log("Log To Server : \n", this.logsData);
|
|
11790
|
-
if (this.logsData.length
|
|
11813
|
+
if (this.logsData.length === 0)
|
|
11791
11814
|
return;
|
|
11792
|
-
}
|
|
11793
11815
|
const accessToken = _DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_1__.TokenStorage.BearerAccessToken;
|
|
11794
|
-
// const storedLogs = JSON.parse(localStorage?.getItem(this.mftsccsBrowser) || "[]");
|
|
11795
11816
|
const storedLogs = this.logsData;
|
|
11796
|
-
|
|
11817
|
+
console.log("Package Logs for syncing... ", storedLogs);
|
|
11797
11818
|
if (!accessToken)
|
|
11798
11819
|
return;
|
|
11799
11820
|
// const storedLogs = this.logs
|
|
@@ -11802,8 +11823,6 @@ class Logger {
|
|
|
11802
11823
|
const chunkSize = 50;
|
|
11803
11824
|
for (let i = 0; i < storedLogs.length; i += chunkSize) {
|
|
11804
11825
|
const chunk = storedLogs.slice(i, i + chunkSize);
|
|
11805
|
-
// console.log("The PostLogger URL on Logs is : ", BaseUrl.PostLogger());
|
|
11806
|
-
// const response = await fetch(Logger.SERVER_URL, {
|
|
11807
11826
|
const response = yield fetch(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.PostLogger(), {
|
|
11808
11827
|
method: "POST",
|
|
11809
11828
|
headers: {
|
|
@@ -11821,12 +11840,13 @@ class Logger {
|
|
|
11821
11840
|
return;
|
|
11822
11841
|
}
|
|
11823
11842
|
}
|
|
11824
|
-
//
|
|
11825
|
-
|
|
11843
|
+
// clear mftsccs log from memory
|
|
11844
|
+
this.logsData = [];
|
|
11845
|
+
// this.clearLogsFromLocalStorage(this.mftsccsBrowser)
|
|
11846
|
+
// Logger.log("INFO", "Sync Application Logs to server")
|
|
11826
11847
|
}
|
|
11827
11848
|
catch (error) {
|
|
11828
11849
|
console.error("Error while sending logs to server:", error);
|
|
11829
|
-
// HandleNetworkError("Request", error)
|
|
11830
11850
|
}
|
|
11831
11851
|
});
|
|
11832
11852
|
}
|
|
@@ -11850,7 +11870,7 @@ class Logger {
|
|
|
11850
11870
|
Logger.log("ERROR", "Error while saving log in local storage");
|
|
11851
11871
|
}
|
|
11852
11872
|
}
|
|
11853
|
-
static
|
|
11873
|
+
static clearLogsFromLocalStorage(logType) {
|
|
11854
11874
|
if (typeof localStorage === undefined) {
|
|
11855
11875
|
console.warn('localStorage is not available');
|
|
11856
11876
|
return;
|
|
@@ -11873,7 +11893,6 @@ Logger.mftsccsBrowser = "mftsccs";
|
|
|
11873
11893
|
Logger.autoSyncInterval = null;
|
|
11874
11894
|
// Ensure logs are managed automatically
|
|
11875
11895
|
(() => {
|
|
11876
|
-
// console.log("Initializing Logger with auto-sync mechanism.");
|
|
11877
11896
|
Logger.startAutoSync();
|
|
11878
11897
|
})();
|
|
11879
11898
|
/**
|
|
@@ -12820,6 +12839,46 @@ function CreateConnectionBetweenTwoConceptsGeneral(ofTheConcept_1, toTheConcept_
|
|
|
12820
12839
|
}
|
|
12821
12840
|
|
|
12822
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
|
+
|
|
12823
12882
|
/***/ }),
|
|
12824
12883
|
|
|
12825
12884
|
/***/ "./src/Services/CreateDefaultConcept.ts":
|
|
@@ -22425,6 +22484,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22425
22484
|
/* harmony export */ Connection: () => (/* reexport safe */ _DataStructures_Connection__WEBPACK_IMPORTED_MODULE_80__.Connection),
|
|
22426
22485
|
/* harmony export */ ConnectionData: () => (/* reexport safe */ _DataStructures_ConnectionData__WEBPACK_IMPORTED_MODULE_82__.ConnectionData),
|
|
22427
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),
|
|
22428
22488
|
/* harmony export */ CreateConnectionBetweenTwoConcepts: () => (/* reexport safe */ _Services_CreateConnectionBetweenTwoConcepts__WEBPACK_IMPORTED_MODULE_11__.CreateConnectionBetweenTwoConcepts),
|
|
22429
22489
|
/* harmony export */ CreateConnectionBetweenTwoConceptsGeneral: () => (/* reexport safe */ _Services_CreateConnectionBetweenTwoConcepts__WEBPACK_IMPORTED_MODULE_11__.CreateConnectionBetweenTwoConceptsGeneral),
|
|
22430
22490
|
/* harmony export */ CreateConnectionBetweenTwoConceptsLocal: () => (/* reexport safe */ _Services_Local_CreateConnectionBetweenTwoConceptsLocal__WEBPACK_IMPORTED_MODULE_60__.CreateConnectionBetweenTwoConceptsLocal),
|
|
@@ -22690,6 +22750,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22690
22750
|
/* harmony import */ var _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./WrapperFunctions/SchemaQueryObservable */ "./src/WrapperFunctions/SchemaQueryObservable.ts");
|
|
22691
22751
|
/* harmony import */ var _Widgets_WidgetTree__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./Widgets/WidgetTree */ "./src/Widgets/WidgetTree.ts");
|
|
22692
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");
|
|
22693
22754
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
22694
22755
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
22695
22756
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -22824,6 +22885,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
|
|
|
22824
22885
|
|
|
22825
22886
|
|
|
22826
22887
|
|
|
22888
|
+
|
|
22827
22889
|
|
|
22828
22890
|
|
|
22829
22891
|
var serviceWorker;
|
|
@@ -23500,6 +23562,7 @@ const handleServiceWorkerException = (error) => {
|
|
|
23500
23562
|
/******/ var __webpack_exports__Connection = __webpack_exports__.Connection;
|
|
23501
23563
|
/******/ var __webpack_exports__ConnectionData = __webpack_exports__.ConnectionData;
|
|
23502
23564
|
/******/ var __webpack_exports__CreateComposition = __webpack_exports__.CreateComposition;
|
|
23565
|
+
/******/ var __webpack_exports__CreateConnectionBetweenEntityLocal = __webpack_exports__.CreateConnectionBetweenEntityLocal;
|
|
23503
23566
|
/******/ var __webpack_exports__CreateConnectionBetweenTwoConcepts = __webpack_exports__.CreateConnectionBetweenTwoConcepts;
|
|
23504
23567
|
/******/ var __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral = __webpack_exports__.CreateConnectionBetweenTwoConceptsGeneral;
|
|
23505
23568
|
/******/ var __webpack_exports__CreateConnectionBetweenTwoConceptsLocal = __webpack_exports__.CreateConnectionBetweenTwoConceptsLocal;
|
|
@@ -23646,7 +23709,7 @@ const handleServiceWorkerException = (error) => {
|
|
|
23646
23709
|
/******/ var __webpack_exports__storeToDatabase = __webpack_exports__.storeToDatabase;
|
|
23647
23710
|
/******/ var __webpack_exports__subscribedListeners = __webpack_exports__.subscribedListeners;
|
|
23648
23711
|
/******/ var __webpack_exports__updateAccessToken = __webpack_exports__.updateAccessToken;
|
|
23649
|
-
/******/ 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 };
|
|
23650
23713
|
/******/
|
|
23651
23714
|
|
|
23652
23715
|
//# sourceMappingURL=main.bundle.js.map
|