mftsccs-browser 2.1.239-dev → 2.1.240-dev
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 +404 -95
- package/dist/main.bundle.js.map +1 -1
- package/dist/serviceWorker.bundle.js +398 -94
- package/dist/serviceWorker.bundle.js.map +1 -1
- package/dist/types/AccessTracker/accessTracker.d.ts +67 -0
- package/dist/types/Anomaly/anomaly.d.ts +103 -0
- package/dist/types/Api/Create/CreateTheCharacter.d.ts +24 -0
- package/dist/types/Api/Create/CreateTheConceptApi.d.ts +20 -0
- package/dist/types/Api/Create/CreateTheConnectionApi.d.ts +18 -0
- package/dist/types/Api/Create/CreateTheGhostConceptApi.d.ts +28 -0
- package/dist/types/Api/Create/CreateTheGhostConnectionApi.d.ts +18 -0
- package/dist/types/Api/Create/CreateTheTextData.d.ts +18 -0
- package/dist/types/Api/Delete/DeleteConceptInBackend.d.ts +14 -0
- package/dist/types/Api/Delete/DeleteUserInBackend.d.ts +19 -0
- package/dist/types/Api/DeleteConnectionBulkApi.d.ts +20 -0
- package/dist/types/Api/DeleteTheConcept.d.ts +20 -0
- package/dist/types/Api/DeleteTheConnection.d.ts +20 -0
- package/dist/types/Api/GetAiData.d.ts +10 -0
- package/dist/types/Api/GetAllConceptsByType.d.ts +12 -0
- package/dist/types/Api/GetAllConnectionsOfComposition.d.ts +23 -0
- package/dist/types/Api/GetAllConnectionsOfCompositionBulk.d.ts +23 -0
- package/dist/types/Api/GetAllLinkerConnectionsFromTheConcept.d.ts +12 -0
- package/dist/types/Api/GetAllLinkerConnectionsToTheConcept.d.ts +12 -0
- package/dist/types/Api/GetCharacterDataByCharacter.d.ts +12 -0
- package/dist/types/Api/GetCompositionConnectionsBetweenTwoConcepts.d.ts +13 -0
- package/dist/types/Api/GetConcept.d.ts +6 -0
- package/dist/types/Api/GetConceptBulk.d.ts +20 -0
- package/dist/types/Api/GetConceptByCharacterAndType.d.ts +15 -0
- package/dist/types/Api/GetConceptByCharacterValue.d.ts +12 -0
- package/dist/types/Api/GetConnection.d.ts +15 -0
- package/dist/types/Api/GetConnectionBulk.d.ts +7 -0
- package/dist/types/Api/GetConnectionOfTheConcept.d.ts +15 -0
- package/dist/types/Api/GetConnectionToTheConcept.d.ts +17 -0
- package/dist/types/Api/GetConnections/GetConnectionsBetweenApi.d.ts +40 -0
- package/dist/types/Api/GetConnections/GetConnectionsByTypeApi.d.ts +15 -0
- package/dist/types/Api/GetInstanceConceptByCharacterType.d.ts +9 -0
- package/dist/types/Api/GetReservedConnectionIds.d.ts +10 -0
- package/dist/types/Api/GetReservedIds.d.ts +10 -0
- package/dist/types/Api/Images/GetImages.d.ts +15 -0
- package/dist/types/Api/Local/GetLocalConceptByCharacterValue.d.ts +13 -0
- package/dist/types/Api/Login.d.ts +78 -0
- package/dist/types/Api/MakeTheNameInBackend.d.ts +14 -0
- package/dist/types/Api/MakeTheTypeConceptApi.d.ts +9 -0
- package/dist/types/Api/Prototype/Selector.d.ts +26 -0
- package/dist/types/Api/RecursiveSearch.d.ts +67 -0
- package/dist/types/Api/Search/FreeschemaQueryApi.d.ts +18 -0
- package/dist/types/Api/Search/Search.d.ts +73 -0
- package/dist/types/Api/Search/SearchInternalApi.d.ts +28 -0
- package/dist/types/Api/Search/SearchLinkMultipleApi.d.ts +15 -0
- package/dist/types/Api/Search/SearchWithLinker.d.ts +16 -0
- package/dist/types/Api/Search/SearchWithTypeAndLinker.d.ts +14 -0
- package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategoryApi.d.ts +12 -0
- package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategoryDirect.d.ts +13 -0
- package/dist/types/Api/SearchConcept/GetTypeConceptByBulk.d.ts +15 -0
- package/dist/types/Api/Session/CreateSession.d.ts +16 -0
- package/dist/types/Api/Session/CreateSessionVisit.d.ts +12 -0
- package/dist/types/Api/Signin.d.ts +24 -0
- package/dist/types/Api/Signup.d.ts +61 -0
- package/dist/types/Api/Translate/TranslateLocalToReal.d.ts +12 -0
- package/dist/types/Api/View/ViewInternalDataApi.d.ts +15 -0
- package/dist/types/Constants/AccessConstants.d.ts +3 -0
- package/dist/types/Constants/ApiConstants.d.ts +23 -0
- package/dist/types/Constants/FormatConstants.d.ts +8 -0
- package/dist/types/Constants/ckeditorCSS.d.ts +1 -0
- package/dist/types/Constants/general.const.d.ts +6 -0
- package/dist/types/Constants/page.const.d.ts +5 -0
- package/dist/types/DataStructures/BaseUrl.d.ts +94 -0
- package/dist/types/DataStructures/BinaryCharacterTree.d.ts +16 -0
- package/dist/types/DataStructures/BinaryTree.d.ts +77 -0
- package/dist/types/DataStructures/BinaryTypeTree.d.ts +17 -0
- package/dist/types/DataStructures/CharacterRepository.d.ts +8 -0
- package/dist/types/DataStructures/Composition/Composition.d.ts +14 -0
- package/dist/types/DataStructures/Composition/CompositionBinaryTree.d.ts +10 -0
- package/dist/types/DataStructures/Composition/CompositionNode.d.ts +21 -0
- package/dist/types/DataStructures/Concept.d.ts +25 -0
- package/dist/types/DataStructures/ConceptData.d.ts +30 -0
- package/dist/types/DataStructures/ConceptsToDraw.d.ts +11 -0
- package/dist/types/DataStructures/Connection.d.ts +23 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionBinaryTree.d.ts +81 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionNode.d.ts +27 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfNode.d.ts +10 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfTheTree.d.ts +24 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionTypeNode.d.ts +10 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionTypeTree.d.ts +20 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/NodePrimitive.d.ts +15 -0
- package/dist/types/DataStructures/ConnectionByType/GetConnectionByType.d.ts +4 -0
- package/dist/types/DataStructures/ConnectionData.d.ts +26 -0
- package/dist/types/DataStructures/Count/CountInfo.d.ts +6 -0
- package/dist/types/DataStructures/FetchConnection.d.ts +64 -0
- package/dist/types/DataStructures/FilterSearch.d.ts +9 -0
- package/dist/types/DataStructures/IdentifierFlags.d.ts +11 -0
- package/dist/types/DataStructures/Local/LConcept.d.ts +23 -0
- package/dist/types/DataStructures/Local/LConnection.d.ts +18 -0
- package/dist/types/DataStructures/Local/LNode.d.ts +29 -0
- package/dist/types/DataStructures/Local/LocalBinaryCharacterTree.d.ts +13 -0
- package/dist/types/DataStructures/Local/LocalBinaryTree.d.ts +13 -0
- package/dist/types/DataStructures/Local/LocalBinaryTypeTree.d.ts +13 -0
- package/dist/types/DataStructures/Local/LocalConceptData.d.ts +21 -0
- package/dist/types/DataStructures/Local/LocalConnectionData.d.ts +20 -0
- package/dist/types/DataStructures/Local/LocalGhostIdTree.d.ts +11 -0
- package/dist/types/DataStructures/Local/LocalId.d.ts +19 -0
- package/dist/types/DataStructures/Local/LocalSyncData.d.ts +33 -0
- package/dist/types/DataStructures/Node.d.ts +30 -0
- package/dist/types/DataStructures/PatcherStructure.d.ts +8 -0
- package/dist/types/DataStructures/Prototype/Prototype.d.ts +19 -0
- package/dist/types/DataStructures/Prototype/PrototypeOption.d.ts +4 -0
- package/dist/types/DataStructures/Prototype/QuerySelector.d.ts +4 -0
- package/dist/types/DataStructures/ReservedIds.d.ts +10 -0
- package/dist/types/DataStructures/Responses/ErrorResponse.d.ts +74 -0
- package/dist/types/DataStructures/Responses/StandardResponses.d.ts +6 -0
- package/dist/types/DataStructures/Returner.d.ts +7 -0
- package/dist/types/DataStructures/Search/FreeschemaQuery.d.ts +25 -0
- package/dist/types/DataStructures/Search/SearchStructure.d.ts +10 -0
- package/dist/types/DataStructures/SearchQuery.d.ts +17 -0
- package/dist/types/DataStructures/Security/SecureStorage.d.ts +14 -0
- package/dist/types/DataStructures/Security/TokenStorage.d.ts +24 -0
- package/dist/types/DataStructures/Session/SessionData.d.ts +13 -0
- package/dist/types/DataStructures/SettingData.d.ts +5 -0
- package/dist/types/DataStructures/Settings.d.ts +4 -0
- package/dist/types/DataStructures/SigninModel.d.ts +4 -0
- package/dist/types/DataStructures/SignupModel.d.ts +4 -0
- package/dist/types/DataStructures/SyncData.d.ts +14 -0
- package/dist/types/DataStructures/TheCharacter.d.ts +13 -0
- package/dist/types/DataStructures/TheTexts.d.ts +14 -0
- package/dist/types/DataStructures/TypeLibrary.d.ts +19 -0
- package/dist/types/DataStructures/TypeNode.d.ts +18 -0
- package/dist/types/DataStructures/User/UserBinaryTree.d.ts +13 -0
- package/dist/types/DataStructures/User/UserNode.d.ts +18 -0
- package/dist/types/DataStructures/WidgetCache/WidgetCache.d.ts +10 -0
- package/dist/types/DataStructures/WidgetCache/WidgetDetails.d.ts +9 -0
- package/dist/types/DataStructures/WidgetCache/WidgetNode.d.ts +18 -0
- package/dist/types/DataStructures/environments/environments.d.ts +48 -0
- package/dist/types/Database/CacheDatabase.d.ts +57 -0
- package/dist/types/Database/IndexUpdate.d.ts +47 -0
- package/dist/types/Database/NoIndexDb.d.ts +9 -0
- package/dist/types/Database/indexdblocal.d.ts +43 -0
- package/dist/types/Database/indexeddb.d.ts +58 -0
- package/dist/types/Helpers/CheckIfExists.d.ts +9 -0
- package/dist/types/Helpers/RemoveFromArray.d.ts +5 -0
- package/dist/types/Helpers/UniqueInsert.d.ts +1 -0
- package/dist/types/Middleware/ApplicationMonitor.d.ts +14 -0
- package/dist/types/Middleware/logger.service.d.ts +144 -0
- package/dist/types/ServiceWorker/actions/connectionActions.d.ts +2 -0
- package/dist/types/ServiceWorker/actions/createActions.d.ts +2 -0
- package/dist/types/ServiceWorker/actions/deleteActions.d.ts +2 -0
- package/dist/types/ServiceWorker/actions/getActions.d.ts +2 -0
- package/dist/types/ServiceWorker/actions/index.d.ts +15 -0
- package/dist/types/ServiceWorker/actions/searchActions.d.ts +2 -0
- package/dist/types/ServiceWorker/actions/syncActions.d.ts +2 -0
- package/dist/types/ServiceWorker/actions/updateActions.d.ts +2 -0
- package/dist/types/ServiceWorker/index.d.ts +11 -0
- package/dist/types/Services/CacheClear.d.ts +7 -0
- package/dist/types/Services/CheckForConnectionDeletion.d.ts +3 -0
- package/dist/types/Services/Common/DecodeCountInfo.d.ts +3 -0
- package/dist/types/Services/Common/DelayFunction.d.ts +7 -0
- package/dist/types/Services/Common/ErrorPosting.d.ts +10 -0
- package/dist/types/Services/Common/MergeArrays.d.ts +7 -0
- package/dist/types/Services/Common/RegexFunction.d.ts +1 -0
- package/dist/types/Services/Common/RemoveAllChild.d.ts +1 -0
- package/dist/types/Services/Composition/BuildComposition.d.ts +3 -0
- package/dist/types/Services/Composition/CompositionCache.d.ts +4 -0
- package/dist/types/Services/Composition/CreateCompositionCache.d.ts +3 -0
- package/dist/types/Services/ConceptFinding/GetConceptByCharacterAndCategory.d.ts +5 -0
- package/dist/types/Services/Conversion/ConvertConcepts.d.ts +5 -0
- package/dist/types/Services/CreateBinaryTreeFromData.d.ts +5 -0
- package/dist/types/Services/CreateConnection/CreateConnectionEntity.d.ts +2 -0
- package/dist/types/Services/CreateConnectionBetweenTwoConcepts.d.ts +5 -0
- package/dist/types/Services/CreateDefaultConcept.d.ts +3 -0
- package/dist/types/Services/CreateTheComposition.d.ts +1 -0
- package/dist/types/Services/CreateTheConcept.d.ts +122 -0
- package/dist/types/Services/CreateTheConnection.d.ts +63 -0
- package/dist/types/Services/CreateTheConnectionGeneral.d.ts +2 -0
- package/dist/types/Services/DeleteConcept.d.ts +2 -0
- package/dist/types/Services/DeleteConnection.d.ts +2 -0
- package/dist/types/Services/DeleteConnectionByType.d.ts +22 -0
- package/dist/types/Services/FindConeceptsFromConnection.d.ts +6 -0
- package/dist/types/Services/FindConnectionsOfCompositionBulkInMemory.d.ts +1 -0
- package/dist/types/Services/GetComposition.d.ts +205 -0
- package/dist/types/Services/GetCompositionBulk.d.ts +100 -0
- package/dist/types/Services/GetCompositionList.d.ts +7 -0
- package/dist/types/Services/GetConceptByCharacter.d.ts +2 -0
- package/dist/types/Services/GetConnectionBetweenTwoConceptsLinker.d.ts +11 -0
- package/dist/types/Services/GetConnections.d.ts +1 -0
- package/dist/types/Services/GetDataFromIndexDb.d.ts +2 -0
- package/dist/types/Services/GetLink.d.ts +3 -0
- package/dist/types/Services/GetLinkerConnectionFromConcept.d.ts +3 -0
- package/dist/types/Services/GetRelation.d.ts +3 -0
- package/dist/types/Services/GetTheConcept.d.ts +96 -0
- package/dist/types/Services/InitializeSystem.d.ts +2 -0
- package/dist/types/Services/Local/ConvertFromLConceptToConcept.d.ts +41 -0
- package/dist/types/Services/Local/ConvertFromLConnectionToConnection.d.ts +47 -0
- package/dist/types/Services/Local/CreateConnectionBetweenTwoConceptsLocal.d.ts +44 -0
- package/dist/types/Services/Local/CreateDefaultLConcept.d.ts +46 -0
- package/dist/types/Services/Local/CreateLocalBinaryTreeFromData.d.ts +34 -0
- package/dist/types/Services/Local/CreateTheCompositionLocal.d.ts +104 -0
- package/dist/types/Services/Local/CreateTheConceptLocal.d.ts +84 -0
- package/dist/types/Services/Local/CreateTheConnectionLocal.d.ts +140 -0
- package/dist/types/Services/Local/DeleteConceptLocal.d.ts +47 -0
- package/dist/types/Services/Local/GetCompositionListLocal.d.ts +37 -0
- package/dist/types/Services/Local/GetCompositionLocal.d.ts +97 -0
- package/dist/types/Services/Local/GetConceptByCharacterLocal.d.ts +56 -0
- package/dist/types/Services/Local/GetConnectionOfTheConceptLocal.d.ts +19 -0
- package/dist/types/Services/Local/GetRelationLocal.d.ts +21 -0
- package/dist/types/Services/Local/GetTheConceptLocal.d.ts +63 -0
- package/dist/types/Services/Local/MakeTheConceptLocal.d.ts +22 -0
- package/dist/types/Services/Local/MakeTheInstanceConceptLocal.d.ts +164 -0
- package/dist/types/Services/Local/MakeTheTypeLocal.d.ts +36 -0
- package/dist/types/Services/Local/UpdateCompositionLocal.d.ts +42 -0
- package/dist/types/Services/Logs/LogEvent.d.ts +1 -0
- package/dist/types/Services/Mail.d.ts +41 -0
- package/dist/types/Services/MakeTheCharacter.d.ts +2 -0
- package/dist/types/Services/MakeTheCharacterData.d.ts +2 -0
- package/dist/types/Services/MakeTheConcept.d.ts +2 -0
- package/dist/types/Services/MakeTheInstanceConcept.d.ts +15 -0
- package/dist/types/Services/MakeTheTimestamp.d.ts +1 -0
- package/dist/types/Services/MakeTheTypeConcept.d.ts +1 -0
- package/dist/types/Services/Mqtt/publishMessage.d.ts +1 -0
- package/dist/types/Services/Search/DataIdFormat.d.ts +32 -0
- package/dist/types/Services/Search/FormatData.d.ts +36 -0
- package/dist/types/Services/Search/JustIdFormat.d.ts +23 -0
- package/dist/types/Services/Search/NewFormat.d.ts +4 -0
- package/dist/types/Services/Search/SearchLinkInternal.d.ts +3 -0
- package/dist/types/Services/Search/SearchLinkMultiple.d.ts +55 -0
- package/dist/types/Services/Search/SearchWithTypeAndLinker.d.ts +82 -0
- package/dist/types/Services/Search/orderingConnections.d.ts +2 -0
- package/dist/types/Services/Security/GetRequestHeader.d.ts +6 -0
- package/dist/types/Services/SplitStrings.d.ts +1 -0
- package/dist/types/Services/Transaction/LocalTransaction.d.ts +117 -0
- package/dist/types/Services/UpdateComposition.d.ts +2 -0
- package/dist/types/Services/Upload.d.ts +111 -0
- package/dist/types/Services/User/UserFromLocalStorage.d.ts +10 -0
- package/dist/types/Services/User/UserTranslation.d.ts +3 -0
- package/dist/types/Services/View/ViewInternalData.d.ts +1 -0
- package/dist/types/Services/assets/GetImageService.d.ts +14 -0
- package/dist/types/Services/automated/automated-concept-connection.d.ts +7 -0
- package/dist/types/Services/cacheService.d.ts +1 -0
- package/dist/types/Validator/constant.d.ts +3 -0
- package/dist/types/Validator/interface.d.ts +19 -0
- package/dist/types/Validator/utils.d.ts +7 -0
- package/dist/types/Validator/validator.d.ts +37 -0
- package/dist/types/Visualize/ConceptCircle.d.ts +35 -0
- package/dist/types/Visualize/ConceptCircleList.d.ts +9 -0
- package/dist/types/Visualize/ConnectionLine.d.ts +21 -0
- package/dist/types/Visualize/ConnectionLineList.d.ts +6 -0
- package/dist/types/Visualize/drawExistingConcepts.d.ts +8 -0
- package/dist/types/Visualize/helper.d.ts +15 -0
- package/dist/types/Widgets/BaseObserver.d.ts +25 -0
- package/dist/types/Widgets/BaseWidget.d.ts +37 -0
- package/dist/types/Widgets/BuilderSpeceficFunctions.d.ts +11 -0
- package/dist/types/Widgets/BuilderStatefulWidget.d.ts +392 -0
- package/dist/types/Widgets/CacheWidget.service.d.ts +77 -0
- package/dist/types/Widgets/NormalizeStyles.service.d.ts +10 -0
- package/dist/types/Widgets/RenderPage.service.d.ts +17 -0
- package/dist/types/Widgets/RenderWidgetLibrary.service.d.ts +22 -0
- package/dist/types/Widgets/RenderWidgetService.d.ts +187 -0
- package/dist/types/Widgets/StatefulWidget.d.ts +167 -0
- package/dist/types/Widgets/WidgetBuild.d.ts +45 -0
- package/dist/types/Widgets/WidgetCacheManager.d.ts +108 -0
- package/dist/types/Widgets/WidgetTree.d.ts +61 -0
- package/dist/types/WrapperFunctions/DepenedencyObserver.d.ts +95 -0
- package/dist/types/WrapperFunctions/GetCompositionListObservable.d.ts +51 -0
- package/dist/types/WrapperFunctions/GetCompositionObservable.d.ts +35 -0
- package/dist/types/WrapperFunctions/GetLinkListObservable.d.ts +57 -0
- package/dist/types/WrapperFunctions/GetLinkObservable.d.ts +50 -0
- package/dist/types/WrapperFunctions/QueryCacheManager.d.ts +107 -0
- package/dist/types/WrapperFunctions/RecursiveSearchObservable.d.ts +55 -0
- package/dist/types/WrapperFunctions/SchemaQueryObservable.d.ts +60 -0
- package/dist/types/WrapperFunctions/SearchLinkMultipleAllObservable.d.ts +36 -0
- package/dist/types/app.d.ts +381 -0
- package/dist/types/prototype/prototype.service.d.ts +25 -0
- package/dist/types/service-worker.d.ts +1 -0
- package/package.json +1 -1
package/dist/main.bundle.js
CHANGED
|
@@ -15272,7 +15272,7 @@ class BaseUrl {
|
|
|
15272
15272
|
//////////////////////////////////////////////////////////////////////
|
|
15273
15273
|
//////////////////////API FOR IMAGE UPLOAD //////////////////////
|
|
15274
15274
|
static uploadImageUrl() {
|
|
15275
|
-
return this.
|
|
15275
|
+
return this.uploadR2StorageUrl();
|
|
15276
15276
|
}
|
|
15277
15277
|
static uploadImageUrlWithSmall() {
|
|
15278
15278
|
return this.BASE_URL + '/api/Image/UploadImageV2';
|
|
@@ -15280,7 +15280,13 @@ class BaseUrl {
|
|
|
15280
15280
|
//////////////////////////////////////////////////////////////////////
|
|
15281
15281
|
//////////////////////API FOR FILE UPLOAD //////////////////////
|
|
15282
15282
|
static uploadFileUrl() {
|
|
15283
|
-
return this.
|
|
15283
|
+
return this.uploadR2StorageUrl();
|
|
15284
|
+
}
|
|
15285
|
+
static uploadR2StorageUrl() {
|
|
15286
|
+
return this.BASE_URL + '/api/R2Storage/upload';
|
|
15287
|
+
}
|
|
15288
|
+
static r2PresignedUploadUrl() {
|
|
15289
|
+
return this.BASE_URL + '/api/R2Storage/presigned-upload-url';
|
|
15284
15290
|
}
|
|
15285
15291
|
//////////////////////////////////////////////////////////////////////
|
|
15286
15292
|
//////////////////////// API FOR SENDING MAIL ////////////////////////
|
|
@@ -15290,6 +15296,9 @@ class BaseUrl {
|
|
|
15290
15296
|
static sendBulkMail() {
|
|
15291
15297
|
return this.BASE_URL + '/api/sendmail/bulk';
|
|
15292
15298
|
}
|
|
15299
|
+
static sendPersonalMail() {
|
|
15300
|
+
return this.BASE_URL + '/api/sendmail/personal';
|
|
15301
|
+
}
|
|
15293
15302
|
static getWidgetData() {
|
|
15294
15303
|
return this.BASE_URL + '/api/get-widget';
|
|
15295
15304
|
}
|
|
@@ -15333,6 +15342,8 @@ BaseUrl.FLAGS = {
|
|
|
15333
15342
|
accessTracker: false,
|
|
15334
15343
|
isTest: false
|
|
15335
15344
|
};
|
|
15345
|
+
BaseUrl.RECAPTCHA_SITE_KEY = "";
|
|
15346
|
+
BaseUrl.RECAPTCHA_ACTION = "send_mail";
|
|
15336
15347
|
BaseUrl.BASE_RANDOMIZER = 999;
|
|
15337
15348
|
|
|
15338
15349
|
|
|
@@ -27721,6 +27732,7 @@ function GetCompositionFromConnectionsWithDataId() {
|
|
|
27721
27732
|
// let oldConnections = await FindConnectionsOfCompositionsBulkInMemory(conceptIds);
|
|
27722
27733
|
//CheckForConnectionDeletionWithIds(connectionIds,oldConnections);
|
|
27723
27734
|
let compositions = [];
|
|
27735
|
+
yield (0,_app__WEBPACK_IMPORTED_MODULE_2__.GetConceptBulk)(conceptIds);
|
|
27724
27736
|
for (let i = 0; i < conceptIds.length; i++) {
|
|
27725
27737
|
let comp = yield (0,_GetComposition__WEBPACK_IMPORTED_MODULE_5__.GetCompositionWithIdFromMemory)(conceptIds[i]);
|
|
27726
27738
|
compositions.push(comp);
|
|
@@ -27756,6 +27768,7 @@ function GetCompositionFromConnectionsWithDataIdFromConnections() {
|
|
|
27756
27768
|
}
|
|
27757
27769
|
}
|
|
27758
27770
|
let newConnections = yield (0,_Api_GetConnectionBulk__WEBPACK_IMPORTED_MODULE_1__.GetConnectionBulk)(connectionIds);
|
|
27771
|
+
yield (0,_app__WEBPACK_IMPORTED_MODULE_2__.GetConceptBulk)(conceptIds);
|
|
27759
27772
|
//CheckForConnectionDeletionWithIds(connectionIds,oldConnections);
|
|
27760
27773
|
let compositions = [];
|
|
27761
27774
|
for (let i = 0; i < conceptIds.length; i++) {
|
|
@@ -31927,7 +31940,8 @@ function LogEvent(EventName, EventDescription, event) {
|
|
|
31927
31940
|
|
|
31928
31941
|
__webpack_require__.r(__webpack_exports__);
|
|
31929
31942
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
31930
|
-
/* harmony export */ sendEmail: () => (/* binding */ sendEmail)
|
|
31943
|
+
/* harmony export */ sendEmail: () => (/* binding */ sendEmail),
|
|
31944
|
+
/* harmony export */ sendPersonalEmail: () => (/* binding */ sendPersonalEmail)
|
|
31931
31945
|
/* harmony export */ });
|
|
31932
31946
|
/* harmony import */ var _app__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../app */ "./src/app.ts");
|
|
31933
31947
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
@@ -31940,45 +31954,169 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
|
|
|
31940
31954
|
});
|
|
31941
31955
|
};
|
|
31942
31956
|
|
|
31957
|
+
const DEFAULT_RECAPTCHA_FIELD_NAME = 'CaptchaToken';
|
|
31958
|
+
const DEFAULT_RECAPTCHA_ACTION_FIELD_NAME = 'recaptchaAction';
|
|
31959
|
+
const DEFAULT_RECAPTCHA_HEADER_NAME = 'X-Recaptcha-Token';
|
|
31960
|
+
let recaptchaScriptPromise = null;
|
|
31961
|
+
function normalizeSendEmailOptions(bulkOrOptions = false, recaptchaToken) {
|
|
31962
|
+
var _a;
|
|
31963
|
+
if (typeof bulkOrOptions === 'boolean') {
|
|
31964
|
+
return {
|
|
31965
|
+
bulk: bulkOrOptions,
|
|
31966
|
+
recaptcha: recaptchaToken,
|
|
31967
|
+
};
|
|
31968
|
+
}
|
|
31969
|
+
return Object.assign(Object.assign({}, bulkOrOptions), { recaptcha: (_a = bulkOrOptions.recaptcha) !== null && _a !== void 0 ? _a : recaptchaToken });
|
|
31970
|
+
}
|
|
31971
|
+
function normalizeRecaptchaOptions(recaptcha) {
|
|
31972
|
+
if (!recaptcha)
|
|
31973
|
+
return null;
|
|
31974
|
+
if (typeof recaptcha === 'string') {
|
|
31975
|
+
return { token: recaptcha };
|
|
31976
|
+
}
|
|
31977
|
+
return recaptcha;
|
|
31978
|
+
}
|
|
31979
|
+
function getBrowserGrecaptcha() {
|
|
31980
|
+
if (typeof window === 'undefined')
|
|
31981
|
+
return undefined;
|
|
31982
|
+
return window.grecaptcha;
|
|
31983
|
+
}
|
|
31984
|
+
function loadRecaptchaScript(siteKey) {
|
|
31985
|
+
if (getBrowserGrecaptcha())
|
|
31986
|
+
return Promise.resolve();
|
|
31987
|
+
if (typeof document === 'undefined') {
|
|
31988
|
+
return Promise.reject(new Error('reCAPTCHA requires a browser document'));
|
|
31989
|
+
}
|
|
31990
|
+
if (!recaptchaScriptPromise) {
|
|
31991
|
+
recaptchaScriptPromise = new Promise((resolve, reject) => {
|
|
31992
|
+
const script = document.createElement('script');
|
|
31993
|
+
script.src = `https://www.google.com/recaptcha/api.js?render=${encodeURIComponent(siteKey)}`;
|
|
31994
|
+
script.async = true;
|
|
31995
|
+
script.defer = true;
|
|
31996
|
+
script.onload = () => resolve();
|
|
31997
|
+
script.onerror = () => reject(new Error('Failed to load reCAPTCHA script'));
|
|
31998
|
+
document.head.appendChild(script);
|
|
31999
|
+
});
|
|
32000
|
+
}
|
|
32001
|
+
return recaptchaScriptPromise;
|
|
32002
|
+
}
|
|
32003
|
+
function executeRecaptcha(siteKey, action) {
|
|
32004
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
32005
|
+
yield loadRecaptchaScript(siteKey);
|
|
32006
|
+
const grecaptcha = getBrowserGrecaptcha();
|
|
32007
|
+
if (!grecaptcha)
|
|
32008
|
+
throw new Error('reCAPTCHA is not available');
|
|
32009
|
+
yield new Promise((resolve) => {
|
|
32010
|
+
grecaptcha.ready(resolve);
|
|
32011
|
+
});
|
|
32012
|
+
return grecaptcha.execute(siteKey, { action });
|
|
32013
|
+
});
|
|
32014
|
+
}
|
|
32015
|
+
function resolveRecaptchaOptions(recaptcha) {
|
|
32016
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
32017
|
+
var _a;
|
|
32018
|
+
if (recaptcha === null || recaptcha === void 0 ? void 0 : recaptcha.token)
|
|
32019
|
+
return recaptcha;
|
|
32020
|
+
if (!_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.RECAPTCHA_SITE_KEY)
|
|
32021
|
+
return recaptcha;
|
|
32022
|
+
const action = (_a = recaptcha === null || recaptcha === void 0 ? void 0 : recaptcha.action) !== null && _a !== void 0 ? _a : _app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.RECAPTCHA_ACTION;
|
|
32023
|
+
const token = yield executeRecaptcha(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.RECAPTCHA_SITE_KEY, action);
|
|
32024
|
+
return Object.assign(Object.assign({}, recaptcha), { token,
|
|
32025
|
+
action });
|
|
32026
|
+
});
|
|
32027
|
+
}
|
|
32028
|
+
function getMailUrl(options) {
|
|
32029
|
+
if (options.personal)
|
|
32030
|
+
return _app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.sendPersonalMail();
|
|
32031
|
+
if (options.bulk)
|
|
32032
|
+
return _app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.sendBulkMail();
|
|
32033
|
+
return _app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.sendMail();
|
|
32034
|
+
}
|
|
32035
|
+
function withRecaptchaBody(body, recaptcha) {
|
|
32036
|
+
var _a, _b, _c, _d;
|
|
32037
|
+
if (body instanceof FormData) {
|
|
32038
|
+
if (!(recaptcha === null || recaptcha === void 0 ? void 0 : recaptcha.token))
|
|
32039
|
+
return body;
|
|
32040
|
+
const tokenFieldName = (_a = recaptcha.fieldName) !== null && _a !== void 0 ? _a : DEFAULT_RECAPTCHA_FIELD_NAME;
|
|
32041
|
+
const actionFieldName = (_b = recaptcha.actionFieldName) !== null && _b !== void 0 ? _b : DEFAULT_RECAPTCHA_ACTION_FIELD_NAME;
|
|
32042
|
+
if (!body.has(tokenFieldName))
|
|
32043
|
+
body.append(tokenFieldName, recaptcha.token);
|
|
32044
|
+
if (recaptcha.action && !body.has(actionFieldName))
|
|
32045
|
+
body.append(actionFieldName, recaptcha.action);
|
|
32046
|
+
return body;
|
|
32047
|
+
}
|
|
32048
|
+
const payload = Object.assign({}, body);
|
|
32049
|
+
if (recaptcha === null || recaptcha === void 0 ? void 0 : recaptcha.token) {
|
|
32050
|
+
const tokenFieldName = (_c = recaptcha.fieldName) !== null && _c !== void 0 ? _c : DEFAULT_RECAPTCHA_FIELD_NAME;
|
|
32051
|
+
const actionFieldName = (_d = recaptcha.actionFieldName) !== null && _d !== void 0 ? _d : DEFAULT_RECAPTCHA_ACTION_FIELD_NAME;
|
|
32052
|
+
if (payload[tokenFieldName] === undefined)
|
|
32053
|
+
payload[tokenFieldName] = recaptcha.token;
|
|
32054
|
+
if (recaptcha.action && payload[actionFieldName] === undefined) {
|
|
32055
|
+
payload[actionFieldName] = recaptcha.action;
|
|
32056
|
+
}
|
|
32057
|
+
}
|
|
32058
|
+
return JSON.stringify(payload);
|
|
32059
|
+
}
|
|
32060
|
+
function getHeaders(isFormData, token, recaptcha) {
|
|
32061
|
+
var _a;
|
|
32062
|
+
const headers = {
|
|
32063
|
+
Authorization: `Bearer ${token}`,
|
|
32064
|
+
};
|
|
32065
|
+
if (!isFormData)
|
|
32066
|
+
headers['Content-Type'] = 'application/json';
|
|
32067
|
+
if (recaptcha === null || recaptcha === void 0 ? void 0 : recaptcha.token) {
|
|
32068
|
+
headers[(_a = recaptcha.headerName) !== null && _a !== void 0 ? _a : DEFAULT_RECAPTCHA_HEADER_NAME] = recaptcha.token;
|
|
32069
|
+
}
|
|
32070
|
+
return headers;
|
|
32071
|
+
}
|
|
31943
32072
|
/**
|
|
31944
32073
|
* Method to send Email to user
|
|
31945
32074
|
* @param body FormData | EmailBody
|
|
31946
32075
|
* @param token string
|
|
31947
|
-
* @param
|
|
32076
|
+
* @param bulkOrOptions boolean | SendEmailOptions
|
|
32077
|
+
* @param recaptchaToken string
|
|
31948
32078
|
* @returns JSON | string | null
|
|
31949
32079
|
*/
|
|
31950
|
-
const sendEmail = (body_1, token_1, ...args_1) => __awaiter(void 0, [body_1, token_1, ...args_1], void 0, function* (body, token,
|
|
32080
|
+
const sendEmail = (body_1, token_1, ...args_1) => __awaiter(void 0, [body_1, token_1, ...args_1], void 0, function* (body, token, bulkOrOptions = false, recaptchaToken) {
|
|
32081
|
+
var _a;
|
|
31951
32082
|
try {
|
|
31952
|
-
|
|
31953
|
-
|
|
31954
|
-
|
|
32083
|
+
const options = normalizeSendEmailOptions(bulkOrOptions, recaptchaToken);
|
|
32084
|
+
const recaptcha = yield resolveRecaptchaOptions(normalizeRecaptchaOptions(options.recaptcha));
|
|
32085
|
+
const isFormData = body instanceof FormData;
|
|
32086
|
+
const url = getMailUrl(options);
|
|
31955
32087
|
const response = yield fetch(url, {
|
|
31956
32088
|
method: 'POST',
|
|
31957
|
-
body: body
|
|
31958
|
-
headers:
|
|
31959
|
-
'Content-Type': 'application/json',
|
|
31960
|
-
Authorization: `Bearer ${token}`,
|
|
31961
|
-
},
|
|
32089
|
+
body: withRecaptchaBody(body, recaptcha),
|
|
32090
|
+
headers: getHeaders(isFormData, token, recaptcha),
|
|
31962
32091
|
});
|
|
31963
|
-
const contentType = response.headers.get('content-type');
|
|
32092
|
+
const contentType = (_a = response.headers.get('content-type')) !== null && _a !== void 0 ? _a : '';
|
|
31964
32093
|
if (!response.ok) {
|
|
31965
|
-
|
|
31966
|
-
|
|
31967
|
-
|
|
32094
|
+
const errorData = contentType.includes('application/json')
|
|
32095
|
+
? yield response.json()
|
|
32096
|
+
: yield response.text();
|
|
31968
32097
|
console.info(`${response.status} ${errorData}`);
|
|
31969
32098
|
return null;
|
|
31970
32099
|
}
|
|
31971
|
-
|
|
31972
|
-
if (contentType && contentType.includes('text/plain')) {
|
|
32100
|
+
if (contentType.includes('text/plain')) {
|
|
31973
32101
|
return yield response.text();
|
|
31974
32102
|
}
|
|
31975
|
-
return
|
|
32103
|
+
return yield response.json();
|
|
31976
32104
|
}
|
|
31977
32105
|
catch (err) {
|
|
31978
32106
|
console.error(err);
|
|
31979
32107
|
return null;
|
|
31980
32108
|
}
|
|
31981
32109
|
});
|
|
32110
|
+
/**
|
|
32111
|
+
* Method to send a personal Email to user.
|
|
32112
|
+
* @param body FormData | EmailBody
|
|
32113
|
+
* @param token string
|
|
32114
|
+
* @param options SendEmailOptions
|
|
32115
|
+
* @returns JSON | string | null
|
|
32116
|
+
*/
|
|
32117
|
+
const sendPersonalEmail = (body_1, token_1, ...args_1) => __awaiter(void 0, [body_1, token_1, ...args_1], void 0, function* (body, token, options = {}) {
|
|
32118
|
+
return sendEmail(body, token, Object.assign(Object.assign({}, options), { personal: true }));
|
|
32119
|
+
});
|
|
31982
32120
|
|
|
31983
32121
|
|
|
31984
32122
|
/***/ }),
|
|
@@ -35382,11 +35520,15 @@ function UpdateComposition(patcherStructure) {
|
|
|
35382
35520
|
|
|
35383
35521
|
__webpack_require__.r(__webpack_exports__);
|
|
35384
35522
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
35523
|
+
/* harmony export */ getR2PresignedUploadUrl: () => (/* binding */ getR2PresignedUploadUrl),
|
|
35385
35524
|
/* harmony export */ getUploadFileLimit: () => (/* binding */ getUploadFileLimit),
|
|
35386
35525
|
/* harmony export */ uploadAttachment: () => (/* binding */ uploadAttachment),
|
|
35387
35526
|
/* harmony export */ uploadFile: () => (/* binding */ uploadFile),
|
|
35388
35527
|
/* harmony export */ uploadImage: () => (/* binding */ uploadImage),
|
|
35389
35528
|
/* harmony export */ uploadImageV2: () => (/* binding */ uploadImageV2),
|
|
35529
|
+
/* harmony export */ uploadR2Storage: () => (/* binding */ uploadR2Storage),
|
|
35530
|
+
/* harmony export */ uploadToR2PresignedUrl: () => (/* binding */ uploadToR2PresignedUrl),
|
|
35531
|
+
/* harmony export */ uploadWithR2PresignedUrl: () => (/* binding */ uploadWithR2PresignedUrl),
|
|
35390
35532
|
/* harmony export */ validDocumentFormats: () => (/* binding */ validDocumentFormats),
|
|
35391
35533
|
/* harmony export */ validImageFormats: () => (/* binding */ validImageFormats)
|
|
35392
35534
|
/* harmony export */ });
|
|
@@ -35418,6 +35560,126 @@ const validDocumentFormats = [
|
|
|
35418
35560
|
"text/plain",
|
|
35419
35561
|
"application/pdf",
|
|
35420
35562
|
];
|
|
35563
|
+
function getUploadResponseUrl(response) {
|
|
35564
|
+
const data = response === null || response === void 0 ? void 0 : response.data;
|
|
35565
|
+
if (typeof data === "string")
|
|
35566
|
+
return data;
|
|
35567
|
+
if (data && typeof data.url === "string")
|
|
35568
|
+
return data.url;
|
|
35569
|
+
if (typeof (response === null || response === void 0 ? void 0 : response.url) === "string")
|
|
35570
|
+
return response.url;
|
|
35571
|
+
return undefined;
|
|
35572
|
+
}
|
|
35573
|
+
function formDataHasField(body, fieldName) {
|
|
35574
|
+
return typeof body.has === "function" && body.has(fieldName);
|
|
35575
|
+
}
|
|
35576
|
+
function getFormDataField(body, fieldName) {
|
|
35577
|
+
return typeof body.get === "function" ? body.get(fieldName) : undefined;
|
|
35578
|
+
}
|
|
35579
|
+
function getUploadFileFromFormData(body) {
|
|
35580
|
+
var _a;
|
|
35581
|
+
return (_a = getFormDataField(body, "file")) !== null && _a !== void 0 ? _a : getFormDataField(body, "image");
|
|
35582
|
+
}
|
|
35583
|
+
function appendFileField(body, value) {
|
|
35584
|
+
const fileName = typeof value === "object" && value ? value.name : undefined;
|
|
35585
|
+
if (fileName) {
|
|
35586
|
+
body.append("file", value, fileName);
|
|
35587
|
+
}
|
|
35588
|
+
else {
|
|
35589
|
+
body.append("file", value);
|
|
35590
|
+
}
|
|
35591
|
+
}
|
|
35592
|
+
function ensureR2FileField(body) {
|
|
35593
|
+
if (formDataHasField(body, "file"))
|
|
35594
|
+
return body;
|
|
35595
|
+
const imageField = getFormDataField(body, "image");
|
|
35596
|
+
if (imageField !== undefined && imageField !== null) {
|
|
35597
|
+
appendFileField(body, imageField);
|
|
35598
|
+
}
|
|
35599
|
+
return body;
|
|
35600
|
+
}
|
|
35601
|
+
function postUploadFormData(url_1, body_1) {
|
|
35602
|
+
return __awaiter(this, arguments, void 0, function* (url, body, token = "") {
|
|
35603
|
+
try {
|
|
35604
|
+
const headers = yield (0,_Security_GetRequestHeader__WEBPACK_IMPORTED_MODULE_2__.GetRequestHeaderWithAuthorization)("", token);
|
|
35605
|
+
delete headers["Content-Type"];
|
|
35606
|
+
const response = yield fetch(url, {
|
|
35607
|
+
method: "POST",
|
|
35608
|
+
body,
|
|
35609
|
+
headers,
|
|
35610
|
+
});
|
|
35611
|
+
if (!response.ok) {
|
|
35612
|
+
const errorData = yield response.text();
|
|
35613
|
+
console.error(`${response.status} ${errorData}`);
|
|
35614
|
+
return null;
|
|
35615
|
+
}
|
|
35616
|
+
return yield response.json();
|
|
35617
|
+
}
|
|
35618
|
+
catch (err) {
|
|
35619
|
+
console.error(err);
|
|
35620
|
+
return null;
|
|
35621
|
+
}
|
|
35622
|
+
});
|
|
35623
|
+
}
|
|
35624
|
+
function postUploadJson(url_1, body_1) {
|
|
35625
|
+
return __awaiter(this, arguments, void 0, function* (url, body, token = "") {
|
|
35626
|
+
try {
|
|
35627
|
+
const response = yield fetch(url, {
|
|
35628
|
+
method: "POST",
|
|
35629
|
+
body: JSON.stringify(body),
|
|
35630
|
+
headers: yield (0,_Security_GetRequestHeader__WEBPACK_IMPORTED_MODULE_2__.GetRequestHeaderWithAuthorization)("application/json", token),
|
|
35631
|
+
});
|
|
35632
|
+
if (!response.ok) {
|
|
35633
|
+
const errorData = yield response.text();
|
|
35634
|
+
console.error(`${response.status} ${errorData}`);
|
|
35635
|
+
return null;
|
|
35636
|
+
}
|
|
35637
|
+
return yield response.json();
|
|
35638
|
+
}
|
|
35639
|
+
catch (err) {
|
|
35640
|
+
console.error(err);
|
|
35641
|
+
return null;
|
|
35642
|
+
}
|
|
35643
|
+
});
|
|
35644
|
+
}
|
|
35645
|
+
function isBlobLike(file) {
|
|
35646
|
+
return typeof Blob !== "undefined" && file instanceof Blob;
|
|
35647
|
+
}
|
|
35648
|
+
function getFileName(file, options) {
|
|
35649
|
+
if (options.fileName)
|
|
35650
|
+
return options.fileName;
|
|
35651
|
+
if (typeof (file === null || file === void 0 ? void 0 : file.name) === "string" && file.name)
|
|
35652
|
+
return file.name;
|
|
35653
|
+
if (typeof (file === null || file === void 0 ? void 0 : file.uri) === "string") {
|
|
35654
|
+
const [path] = file.uri.split("?");
|
|
35655
|
+
const name = path.split("/").pop();
|
|
35656
|
+
if (name)
|
|
35657
|
+
return name;
|
|
35658
|
+
}
|
|
35659
|
+
return "upload";
|
|
35660
|
+
}
|
|
35661
|
+
function getFileContentType(file, options) {
|
|
35662
|
+
return options.contentType || (file === null || file === void 0 ? void 0 : file.type) || "application/octet-stream";
|
|
35663
|
+
}
|
|
35664
|
+
function getPresignedUploadBody(file) {
|
|
35665
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
35666
|
+
if (isBlobLike(file) || typeof file === "string")
|
|
35667
|
+
return file;
|
|
35668
|
+
if (file instanceof ArrayBuffer)
|
|
35669
|
+
return file;
|
|
35670
|
+
if (typeof (file === null || file === void 0 ? void 0 : file.uri) === "string") {
|
|
35671
|
+
try {
|
|
35672
|
+
const response = yield fetch(file.uri);
|
|
35673
|
+
if (response.ok)
|
|
35674
|
+
return yield response.blob();
|
|
35675
|
+
}
|
|
35676
|
+
catch (_a) {
|
|
35677
|
+
// Some runtimes support { uri, name, type } directly as a fetch body.
|
|
35678
|
+
}
|
|
35679
|
+
}
|
|
35680
|
+
return file;
|
|
35681
|
+
});
|
|
35682
|
+
}
|
|
35421
35683
|
/**
|
|
35422
35684
|
* Generic method to upload file or image
|
|
35423
35685
|
* @param file File
|
|
@@ -35428,28 +35690,19 @@ function uploadAttachment(file, token) {
|
|
|
35428
35690
|
const logData = _app__WEBPACK_IMPORTED_MODULE_0__.Logger.logfunction("uploadAttachment");
|
|
35429
35691
|
try {
|
|
35430
35692
|
console.log("File Type", file.type);
|
|
35431
|
-
const formData = new FormData();
|
|
35432
|
-
let response;
|
|
35433
35693
|
const isDocument = validDocumentFormats.includes(file.type) ||
|
|
35434
35694
|
file.name.toLowerCase().endsWith(".md"); // fallback extension check
|
|
35435
|
-
|
|
35436
|
-
|
|
35437
|
-
formData.append("file", file, file.name);
|
|
35438
|
-
response = yield uploadFile(formData, token);
|
|
35439
|
-
}
|
|
35440
|
-
else if (validImageFormats.includes(file.type)) {
|
|
35441
|
-
// Image
|
|
35442
|
-
formData.append("image", file, file.name);
|
|
35443
|
-
response = yield uploadImage(formData, token);
|
|
35444
|
-
}
|
|
35445
|
-
else {
|
|
35695
|
+
const isImage = validImageFormats.includes(file.type);
|
|
35696
|
+
if (!isDocument && !isImage) {
|
|
35446
35697
|
return { message: "Invalid File Format", success: false };
|
|
35447
35698
|
}
|
|
35448
|
-
|
|
35449
|
-
|
|
35699
|
+
const response = yield uploadWithR2PresignedUrl(file, {}, token);
|
|
35700
|
+
const uploadUrl = getUploadResponseUrl(response);
|
|
35701
|
+
if (!uploadUrl) {
|
|
35702
|
+
return { message: response.message || "File Upload Failed", success: false };
|
|
35450
35703
|
}
|
|
35451
35704
|
_app__WEBPACK_IMPORTED_MODULE_0__.Logger.logUpdate(logData);
|
|
35452
|
-
return { message: "Upload Success", success: true, url:
|
|
35705
|
+
return { message: response.message || "Upload Success", success: true, url: uploadUrl };
|
|
35453
35706
|
}
|
|
35454
35707
|
catch (err) {
|
|
35455
35708
|
console.error(err);
|
|
@@ -35458,6 +35711,93 @@ function uploadAttachment(file, token) {
|
|
|
35458
35711
|
}
|
|
35459
35712
|
});
|
|
35460
35713
|
}
|
|
35714
|
+
/**
|
|
35715
|
+
* Method to upload a file or image to R2 storage.
|
|
35716
|
+
* @param body FormData. Append the file under the "file" key.
|
|
35717
|
+
* @param token string?
|
|
35718
|
+
* @returns UploadResponse<R2UploadData> | null
|
|
35719
|
+
*/
|
|
35720
|
+
function uploadR2Storage(body_1) {
|
|
35721
|
+
return __awaiter(this, arguments, void 0, function* (body, token = "") {
|
|
35722
|
+
return postUploadFormData(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.uploadR2StorageUrl(), ensureR2FileField(body), token);
|
|
35723
|
+
});
|
|
35724
|
+
}
|
|
35725
|
+
/**
|
|
35726
|
+
* Method to request an R2 pre-signed upload URL from the backend.
|
|
35727
|
+
* @param body Request metadata for the file to upload.
|
|
35728
|
+
* @param token string?
|
|
35729
|
+
* @returns UploadResponse<R2PresignedUploadUrlData> | null
|
|
35730
|
+
*/
|
|
35731
|
+
function getR2PresignedUploadUrl(body_1) {
|
|
35732
|
+
return __awaiter(this, arguments, void 0, function* (body, token = "") {
|
|
35733
|
+
return postUploadJson(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.r2PresignedUploadUrl(), body, token);
|
|
35734
|
+
});
|
|
35735
|
+
}
|
|
35736
|
+
/**
|
|
35737
|
+
* Method to upload a file body to a pre-signed R2 URL.
|
|
35738
|
+
* @param uploadUrl URL returned by getR2PresignedUploadUrl
|
|
35739
|
+
* @param file Blob/File, raw body, or compatible file-like object
|
|
35740
|
+
* @param contentType Must match the contentType used when creating the signed URL.
|
|
35741
|
+
* @returns Response from R2
|
|
35742
|
+
*/
|
|
35743
|
+
function uploadToR2PresignedUrl(uploadUrl, file, contentType) {
|
|
35744
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
35745
|
+
return fetch(uploadUrl, {
|
|
35746
|
+
method: "PUT",
|
|
35747
|
+
headers: {
|
|
35748
|
+
"Content-Type": contentType,
|
|
35749
|
+
},
|
|
35750
|
+
body: yield getPresignedUploadBody(file),
|
|
35751
|
+
});
|
|
35752
|
+
});
|
|
35753
|
+
}
|
|
35754
|
+
/**
|
|
35755
|
+
* Full R2 pre-signed upload workflow: create URL, PUT file to R2, return public URL.
|
|
35756
|
+
* @param file Blob/File, raw body, or compatible file-like object
|
|
35757
|
+
* @param options Optional fileName/contentType/folder/expiresInSeconds overrides.
|
|
35758
|
+
* @param token string?
|
|
35759
|
+
* @returns R2PresignedUploadResult
|
|
35760
|
+
*/
|
|
35761
|
+
function uploadWithR2PresignedUrl(file_1) {
|
|
35762
|
+
return __awaiter(this, arguments, void 0, function* (file, options = {}, token = "") {
|
|
35763
|
+
var _a, _b, _c, _d;
|
|
35764
|
+
const contentType = getFileContentType(file, options);
|
|
35765
|
+
const presignedResponse = yield getR2PresignedUploadUrl({
|
|
35766
|
+
fileName: getFileName(file, options),
|
|
35767
|
+
contentType,
|
|
35768
|
+
folder: (_a = options.folder) !== null && _a !== void 0 ? _a : "",
|
|
35769
|
+
expiresInSeconds: (_b = options.expiresInSeconds) !== null && _b !== void 0 ? _b : 900,
|
|
35770
|
+
}, token);
|
|
35771
|
+
if (!(presignedResponse === null || presignedResponse === void 0 ? void 0 : presignedResponse.success) || !((_c = presignedResponse.data) === null || _c === void 0 ? void 0 : _c.uploadUrl)) {
|
|
35772
|
+
return {
|
|
35773
|
+
message: (_d = presignedResponse === null || presignedResponse === void 0 ? void 0 : presignedResponse.message) !== null && _d !== void 0 ? _d : "Unable to create pre-signed R2 upload URL.",
|
|
35774
|
+
success: false,
|
|
35775
|
+
};
|
|
35776
|
+
}
|
|
35777
|
+
const uploadResponse = yield uploadToR2PresignedUrl(presignedResponse.data.uploadUrl, file, presignedResponse.data.contentType || contentType);
|
|
35778
|
+
if (!uploadResponse.ok) {
|
|
35779
|
+
let details = "";
|
|
35780
|
+
try {
|
|
35781
|
+
details = yield uploadResponse.text();
|
|
35782
|
+
}
|
|
35783
|
+
catch (_e) {
|
|
35784
|
+
details = "";
|
|
35785
|
+
}
|
|
35786
|
+
return {
|
|
35787
|
+
message: `R2 upload failed with HTTP ${uploadResponse.status}${details ? `: ${details}` : ""}`,
|
|
35788
|
+
success: false,
|
|
35789
|
+
data: presignedResponse.data,
|
|
35790
|
+
};
|
|
35791
|
+
}
|
|
35792
|
+
return {
|
|
35793
|
+
message: "Upload Success",
|
|
35794
|
+
success: true,
|
|
35795
|
+
url: presignedResponse.data.publicUrl,
|
|
35796
|
+
data: presignedResponse.data,
|
|
35797
|
+
eTag: uploadResponse.headers.get("etag"),
|
|
35798
|
+
};
|
|
35799
|
+
});
|
|
35800
|
+
}
|
|
35461
35801
|
/**
|
|
35462
35802
|
* Method to upload image to server
|
|
35463
35803
|
* @param body FormData
|
|
@@ -35468,30 +35808,19 @@ function uploadImage(body_1) {
|
|
|
35468
35808
|
return __awaiter(this, arguments, void 0, function* (body, token = "") {
|
|
35469
35809
|
const logData = _app__WEBPACK_IMPORTED_MODULE_0__.Logger.logfunction("uploadImage");
|
|
35470
35810
|
try {
|
|
35471
|
-
const
|
|
35472
|
-
|
|
35473
|
-
body,
|
|
35474
|
-
headers: {
|
|
35475
|
-
Authorization: `Bearer ${token}`,
|
|
35476
|
-
},
|
|
35477
|
-
});
|
|
35478
|
-
if (!response.ok) {
|
|
35479
|
-
// Check content type before parsing
|
|
35480
|
-
const contentType = response.headers.get("content-type");
|
|
35481
|
-
if (contentType && contentType.includes("text/plain")) {
|
|
35482
|
-
console.info(response === null || response === void 0 ? void 0 : response.text());
|
|
35483
|
-
}
|
|
35484
|
-
const errorData = yield (response === null || response === void 0 ? void 0 : response.text());
|
|
35485
|
-
console.error(`${response.status} ${errorData}`); // Log error response data
|
|
35811
|
+
const file = getUploadFileFromFormData(body);
|
|
35812
|
+
if (file === undefined || file === null) {
|
|
35486
35813
|
_app__WEBPACK_IMPORTED_MODULE_0__.Logger.logUpdate(logData);
|
|
35487
|
-
return
|
|
35814
|
+
return { message: "Missing image file", success: false };
|
|
35488
35815
|
}
|
|
35489
|
-
|
|
35816
|
+
const response = yield uploadWithR2PresignedUrl(file, {}, token);
|
|
35817
|
+
_app__WEBPACK_IMPORTED_MODULE_0__.Logger.logUpdate(logData);
|
|
35818
|
+
return response;
|
|
35490
35819
|
}
|
|
35491
35820
|
catch (err) {
|
|
35492
35821
|
console.error(err);
|
|
35493
35822
|
(0,_Common_ErrorPosting__WEBPACK_IMPORTED_MODULE_1__.UpdatePackageLogWithError)(logData, 'uploadImage', err);
|
|
35494
|
-
return
|
|
35823
|
+
return { message: "File Upload Failed", success: false };
|
|
35495
35824
|
}
|
|
35496
35825
|
});
|
|
35497
35826
|
}
|
|
@@ -35505,25 +35834,9 @@ function uploadImageV2(body_1) {
|
|
|
35505
35834
|
return __awaiter(this, arguments, void 0, function* (body, token = "") {
|
|
35506
35835
|
const logData = _app__WEBPACK_IMPORTED_MODULE_0__.Logger.logfunction("uploadImageV2");
|
|
35507
35836
|
try {
|
|
35508
|
-
const response = yield
|
|
35509
|
-
|
|
35510
|
-
|
|
35511
|
-
headers: {
|
|
35512
|
-
Authorization: `Bearer ${token}`,
|
|
35513
|
-
},
|
|
35514
|
-
});
|
|
35515
|
-
if (!response.ok) {
|
|
35516
|
-
// Check content type before parsing
|
|
35517
|
-
const contentType = response.headers.get("content-type");
|
|
35518
|
-
if (contentType && contentType.includes("text/plain")) {
|
|
35519
|
-
console.info(response === null || response === void 0 ? void 0 : response.text());
|
|
35520
|
-
}
|
|
35521
|
-
const errorData = yield (response === null || response === void 0 ? void 0 : response.text());
|
|
35522
|
-
console.error(`${response.status} ${errorData}`); // Log error response data
|
|
35523
|
-
_app__WEBPACK_IMPORTED_MODULE_0__.Logger.logUpdate(logData);
|
|
35524
|
-
return null;
|
|
35525
|
-
}
|
|
35526
|
-
return yield response.json();
|
|
35837
|
+
const response = yield postUploadFormData(_app__WEBPACK_IMPORTED_MODULE_0__.BaseUrl.uploadImageUrlWithSmall(), body, token);
|
|
35838
|
+
_app__WEBPACK_IMPORTED_MODULE_0__.Logger.logUpdate(logData);
|
|
35839
|
+
return response;
|
|
35527
35840
|
}
|
|
35528
35841
|
catch (err) {
|
|
35529
35842
|
console.error(err);
|
|
@@ -35542,25 +35855,9 @@ function uploadFile(body_1) {
|
|
|
35542
35855
|
return __awaiter(this, arguments, void 0, function* (body, token = "") {
|
|
35543
35856
|
const logData = _app__WEBPACK_IMPORTED_MODULE_0__.Logger.logfunction("uploadFile");
|
|
35544
35857
|
try {
|
|
35545
|
-
const response = yield
|
|
35546
|
-
method: "POST",
|
|
35547
|
-
body,
|
|
35548
|
-
headers: {
|
|
35549
|
-
Authorization: `Bearer ${token}`,
|
|
35550
|
-
},
|
|
35551
|
-
});
|
|
35552
|
-
if (!response.ok) {
|
|
35553
|
-
// Check content type before parsing
|
|
35554
|
-
const contentType = response.headers.get("content-type");
|
|
35555
|
-
if (contentType && contentType.includes("text/plain")) {
|
|
35556
|
-
console.info(response.text());
|
|
35557
|
-
}
|
|
35558
|
-
const errorData = yield response.text();
|
|
35559
|
-
console.error(`${response.status} ${errorData}`); // Log error response data
|
|
35560
|
-
return null;
|
|
35561
|
-
}
|
|
35858
|
+
const response = yield uploadR2Storage(body, token);
|
|
35562
35859
|
_app__WEBPACK_IMPORTED_MODULE_0__.Logger.logUpdate(logData);
|
|
35563
|
-
return
|
|
35860
|
+
return response;
|
|
35564
35861
|
}
|
|
35565
35862
|
catch (err) {
|
|
35566
35863
|
console.error(err);
|
|
@@ -42092,6 +42389,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42092
42389
|
/* harmony export */ dispatchIdEvent: () => (/* binding */ dispatchIdEvent),
|
|
42093
42390
|
/* harmony export */ getFromDatabaseWithType: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_17__.getFromDatabaseWithType),
|
|
42094
42391
|
/* harmony export */ getObjectsFromIndexDb: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_17__.getObjectsFromIndexDb),
|
|
42392
|
+
/* harmony export */ getR2PresignedUploadUrl: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.getR2PresignedUploadUrl),
|
|
42095
42393
|
/* harmony export */ getUploadFileLimit: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.getUploadFileLimit),
|
|
42096
42394
|
/* harmony export */ getUserDetails: () => (/* reexport safe */ _Services_User_UserFromLocalStorage__WEBPACK_IMPORTED_MODULE_131__.getUserDetails),
|
|
42097
42395
|
/* harmony export */ getUserDetailsWithRefresh: () => (/* reexport safe */ _Services_User_UserFromLocalStorage__WEBPACK_IMPORTED_MODULE_131__.getUserDetailsWithRefresh),
|
|
@@ -42113,6 +42411,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42113
42411
|
/* harmony export */ searchLinkMultipleListener: () => (/* reexport safe */ _WrapperFunctions_SearchLinkMultipleAllObservable__WEBPACK_IMPORTED_MODULE_72__.searchLinkMultipleListener),
|
|
42114
42412
|
/* harmony export */ sendEmail: () => (/* reexport safe */ _Services_Mail__WEBPACK_IMPORTED_MODULE_112__.sendEmail),
|
|
42115
42413
|
/* harmony export */ sendMessage: () => (/* binding */ sendMessage),
|
|
42414
|
+
/* harmony export */ sendPersonalEmail: () => (/* reexport safe */ _Services_Mail__WEBPACK_IMPORTED_MODULE_112__.sendPersonalEmail),
|
|
42116
42415
|
/* harmony export */ serviceWorker: () => (/* binding */ serviceWorker),
|
|
42117
42416
|
/* harmony export */ setHasActivatedSW: () => (/* binding */ setHasActivatedSW),
|
|
42118
42417
|
/* harmony export */ storeToDatabase: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_17__.storeToDatabase),
|
|
@@ -42123,6 +42422,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42123
42422
|
/* harmony export */ uploadFile: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.uploadFile),
|
|
42124
42423
|
/* harmony export */ uploadImage: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.uploadImage),
|
|
42125
42424
|
/* harmony export */ uploadImageV2: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.uploadImageV2),
|
|
42425
|
+
/* harmony export */ uploadR2Storage: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.uploadR2Storage),
|
|
42426
|
+
/* harmony export */ uploadToR2PresignedUrl: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.uploadToR2PresignedUrl),
|
|
42427
|
+
/* harmony export */ uploadWithR2PresignedUrl: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.uploadWithR2PresignedUrl),
|
|
42126
42428
|
/* harmony export */ validDocumentFormats: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.validDocumentFormats),
|
|
42127
42429
|
/* harmony export */ validImageFormats: () => (/* reexport safe */ _Services_Upload__WEBPACK_IMPORTED_MODULE_32__.validImageFormats)
|
|
42128
42430
|
/* harmony export */ });
|
|
@@ -42652,13 +42954,15 @@ function updateAccessToken(accessToken = "", session, refreshToken = "") {
|
|
|
42652
42954
|
*/
|
|
42653
42955
|
function init() {
|
|
42654
42956
|
return __awaiter(this, arguments, void 0, function* (url = "", aiurl = "", accessToken = "", nodeUrl = "", enableAi = true, applicationName = "", enableSW = undefined, flags = {}, parameters = {}) {
|
|
42655
|
-
var _a, _b, _c;
|
|
42957
|
+
var _a, _b, _c, _d, _e;
|
|
42656
42958
|
try {
|
|
42657
42959
|
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.BASE_URL = url;
|
|
42658
42960
|
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.AI_URL = aiurl;
|
|
42659
42961
|
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.NODE_URL = nodeUrl;
|
|
42660
42962
|
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.BASE_APPLICATION = applicationName;
|
|
42661
42963
|
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.LOG_SERVER = (_a = parameters.logserver) !== null && _a !== void 0 ? _a : "https://logdev.freeschema.com";
|
|
42964
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.RECAPTCHA_SITE_KEY = (_b = parameters.recaptchaSiteKey) !== null && _b !== void 0 ? _b : "";
|
|
42965
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.RECAPTCHA_ACTION = (_c = parameters.recaptchaAction) !== null && _c !== void 0 ? _c : "send_mail";
|
|
42662
42966
|
updateAccessToken(accessToken);
|
|
42663
42967
|
//TokenStorage.BearerAccessToken = accessToken;
|
|
42664
42968
|
// Decrypt stored profile into memory so getUserDetails() works synchronously
|
|
@@ -42667,8 +42971,8 @@ function init() {
|
|
|
42667
42971
|
// BaseUrl.BASE_RANDOMIZER = randomizer;
|
|
42668
42972
|
// BaseUrl.BASE_RANDOMIZER = 999;
|
|
42669
42973
|
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.setRandomizer(randomizer);
|
|
42670
|
-
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.isPwa = (
|
|
42671
|
-
_DataStructures_environments_environments__WEBPACK_IMPORTED_MODULE_105__.Environments.setValue('enableCache', (
|
|
42974
|
+
_DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_103__.BaseUrl.isPwa = (_d = parameters.isPwa) !== null && _d !== void 0 ? _d : false;
|
|
42975
|
+
_DataStructures_environments_environments__WEBPACK_IMPORTED_MODULE_105__.Environments.setValue('enableCache', (_e = parameters.enableCache) !== null && _e !== void 0 ? _e : true);
|
|
42672
42976
|
// Change Default Flags
|
|
42673
42977
|
const defaultFlags = {
|
|
42674
42978
|
logApplication: false,
|
|
@@ -43879,6 +44183,7 @@ function AddPrototypeConnections(types_1, prototype_1, allConcepts_1, passedTran
|
|
|
43879
44183
|
/******/ const __webpack_exports__dispatchIdEvent = __webpack_exports__.dispatchIdEvent;
|
|
43880
44184
|
/******/ const __webpack_exports__getFromDatabaseWithType = __webpack_exports__.getFromDatabaseWithType;
|
|
43881
44185
|
/******/ const __webpack_exports__getObjectsFromIndexDb = __webpack_exports__.getObjectsFromIndexDb;
|
|
44186
|
+
/******/ const __webpack_exports__getR2PresignedUploadUrl = __webpack_exports__.getR2PresignedUploadUrl;
|
|
43882
44187
|
/******/ const __webpack_exports__getUploadFileLimit = __webpack_exports__.getUploadFileLimit;
|
|
43883
44188
|
/******/ const __webpack_exports__getUserDetails = __webpack_exports__.getUserDetails;
|
|
43884
44189
|
/******/ const __webpack_exports__getUserDetailsWithRefresh = __webpack_exports__.getUserDetailsWithRefresh;
|
|
@@ -43900,6 +44205,7 @@ function AddPrototypeConnections(types_1, prototype_1, allConcepts_1, passedTran
|
|
|
43900
44205
|
/******/ const __webpack_exports__searchLinkMultipleListener = __webpack_exports__.searchLinkMultipleListener;
|
|
43901
44206
|
/******/ const __webpack_exports__sendEmail = __webpack_exports__.sendEmail;
|
|
43902
44207
|
/******/ const __webpack_exports__sendMessage = __webpack_exports__.sendMessage;
|
|
44208
|
+
/******/ const __webpack_exports__sendPersonalEmail = __webpack_exports__.sendPersonalEmail;
|
|
43903
44209
|
/******/ const __webpack_exports__serviceWorker = __webpack_exports__.serviceWorker;
|
|
43904
44210
|
/******/ const __webpack_exports__setHasActivatedSW = __webpack_exports__.setHasActivatedSW;
|
|
43905
44211
|
/******/ const __webpack_exports__storeToDatabase = __webpack_exports__.storeToDatabase;
|
|
@@ -43910,9 +44216,12 @@ function AddPrototypeConnections(types_1, prototype_1, allConcepts_1, passedTran
|
|
|
43910
44216
|
/******/ const __webpack_exports__uploadFile = __webpack_exports__.uploadFile;
|
|
43911
44217
|
/******/ const __webpack_exports__uploadImage = __webpack_exports__.uploadImage;
|
|
43912
44218
|
/******/ const __webpack_exports__uploadImageV2 = __webpack_exports__.uploadImageV2;
|
|
44219
|
+
/******/ const __webpack_exports__uploadR2Storage = __webpack_exports__.uploadR2Storage;
|
|
44220
|
+
/******/ const __webpack_exports__uploadToR2PresignedUrl = __webpack_exports__.uploadToR2PresignedUrl;
|
|
44221
|
+
/******/ const __webpack_exports__uploadWithR2PresignedUrl = __webpack_exports__.uploadWithR2PresignedUrl;
|
|
43913
44222
|
/******/ const __webpack_exports__validDocumentFormats = __webpack_exports__.validDocumentFormats;
|
|
43914
44223
|
/******/ const __webpack_exports__validImageFormats = __webpack_exports__.validImageFormats;
|
|
43915
|
-
/******/ 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__BuildWidgetFromId as BuildWidgetFromId, __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__CountInfo as CountInfo, __webpack_exports__CreateComposition as CreateComposition, __webpack_exports__CreateConnection as CreateConnection, __webpack_exports__CreateConnectionBetweenEntityLocal as CreateConnectionBetweenEntityLocal, __webpack_exports__CreateConnectionBetweenTwoConcepts as CreateConnectionBetweenTwoConcepts, __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral as CreateConnectionBetweenTwoConceptsGeneral, __webpack_exports__CreateConnectionBetweenTwoConceptsLocal as CreateConnectionBetweenTwoConceptsLocal, __webpack_exports__CreateData as CreateData, __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__DATAV2 as DATAV2, __webpack_exports__DelayFunctionExecution as DelayFunctionExecution, __webpack_exports__DeleteConceptById as DeleteConceptById, __webpack_exports__DeleteConceptLocal as DeleteConceptLocal, __webpack_exports__DeleteConnectionById as DeleteConnectionById, __webpack_exports__DeleteConnectionByIdBulk as DeleteConnectionByIdBulk, __webpack_exports__DeleteConnectionByType as DeleteConnectionByType, __webpack_exports__DeleteConnectionByTypeBulk as DeleteConnectionByTypeBulk, __webpack_exports__DeleteUser as DeleteUser, __webpack_exports__DependencyObserver as DependencyObserver, __webpack_exports__Environments as Environments, __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__GetConnectionTypeForCount as GetConnectionTypeForCount, __webpack_exports__GetConnectionsBetweenApi as GetConnectionsBetweenApi, __webpack_exports__GetFreeschemaImage as GetFreeschemaImage, __webpack_exports__GetFreeschemaImageUrl as GetFreeschemaImageUrl, __webpack_exports__GetImageApi as GetImageApi, __webpack_exports__GetInstanceConceptByCharacterType as GetInstanceConceptByCharacterType, __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__GetRelationNew as GetRelationNew, __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__LogEvent as LogEvent, __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__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__Prototype as Prototype, __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__SchemaQuery as SchemaQuery, __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__Selector as Selector, __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__TokenStorage as TokenStorage, __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__buildFetchConnection as buildFetchConnection, __webpack_exports__clearAllCaches as clearAllCaches, __webpack_exports__convertFromConceptToLConcept as convertFromConceptToLConcept, __webpack_exports__convertFromLConceptToConcept as convertFromLConceptToConcept, __webpack_exports__convertWidgetTreeToWidget as convertWidgetTreeToWidget, __webpack_exports__convertWidgetTreeToWidgetWithWrapper as convertWidgetTreeToWidgetWithWrapper, __webpack_exports__createFormFieldData as createFormFieldData, __webpack_exports__createPrototypeLocal as createPrototypeLocal, __webpack_exports__dispatchIdEvent as dispatchIdEvent, __webpack_exports__getFromDatabaseWithType as getFromDatabaseWithType, __webpack_exports__getObjectsFromIndexDb as getObjectsFromIndexDb, __webpack_exports__getUploadFileLimit as getUploadFileLimit, __webpack_exports__getUserDetails as getUserDetails, __webpack_exports__getUserDetailsWithRefresh as getUserDetailsWithRefresh, __webpack_exports__getWidgetBulkFromId as getWidgetBulkFromId, __webpack_exports__getWidgetFromId as getWidgetFromId, __webpack_exports__handleServiceWorkerException as handleServiceWorkerException, __webpack_exports__hasActivatedSW as hasActivatedSW, __webpack_exports__importLatestWidget as importLatestWidget, __webpack_exports__importRecentWidget as importRecentWidget, __webpack_exports__init as init, __webpack_exports__orderTheConnections as orderTheConnections, __webpack_exports__recursiveFetch as recursiveFetch, __webpack_exports__recursiveFetchNew as recursiveFetchNew, __webpack_exports__removeAllChildren as removeAllChildren, __webpack_exports__renderImportedWidget as renderImportedWidget, __webpack_exports__renderLatestWidget as renderLatestWidget, __webpack_exports__renderPage as renderPage, __webpack_exports__renderWidget as renderWidget, __webpack_exports__searchLinkMultipleListener as searchLinkMultipleListener, __webpack_exports__sendEmail as sendEmail, __webpack_exports__sendMessage as sendMessage, __webpack_exports__serviceWorker as serviceWorker, __webpack_exports__setHasActivatedSW as setHasActivatedSW, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__unwrapContainers as unwrapContainers, __webpack_exports__updateAccessToken as updateAccessToken, __webpack_exports__uploadAttachment as uploadAttachment, __webpack_exports__uploadFile as uploadFile, __webpack_exports__uploadImage as uploadImage, __webpack_exports__uploadImageV2 as uploadImageV2, __webpack_exports__validDocumentFormats as validDocumentFormats, __webpack_exports__validImageFormats as validImageFormats };
|
|
44224
|
+
/******/ 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__BuildWidgetFromId as BuildWidgetFromId, __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__CountInfo as CountInfo, __webpack_exports__CreateComposition as CreateComposition, __webpack_exports__CreateConnection as CreateConnection, __webpack_exports__CreateConnectionBetweenEntityLocal as CreateConnectionBetweenEntityLocal, __webpack_exports__CreateConnectionBetweenTwoConcepts as CreateConnectionBetweenTwoConcepts, __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral as CreateConnectionBetweenTwoConceptsGeneral, __webpack_exports__CreateConnectionBetweenTwoConceptsLocal as CreateConnectionBetweenTwoConceptsLocal, __webpack_exports__CreateData as CreateData, __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__DATAV2 as DATAV2, __webpack_exports__DelayFunctionExecution as DelayFunctionExecution, __webpack_exports__DeleteConceptById as DeleteConceptById, __webpack_exports__DeleteConceptLocal as DeleteConceptLocal, __webpack_exports__DeleteConnectionById as DeleteConnectionById, __webpack_exports__DeleteConnectionByIdBulk as DeleteConnectionByIdBulk, __webpack_exports__DeleteConnectionByType as DeleteConnectionByType, __webpack_exports__DeleteConnectionByTypeBulk as DeleteConnectionByTypeBulk, __webpack_exports__DeleteUser as DeleteUser, __webpack_exports__DependencyObserver as DependencyObserver, __webpack_exports__Environments as Environments, __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__GetConnectionTypeForCount as GetConnectionTypeForCount, __webpack_exports__GetConnectionsBetweenApi as GetConnectionsBetweenApi, __webpack_exports__GetFreeschemaImage as GetFreeschemaImage, __webpack_exports__GetFreeschemaImageUrl as GetFreeschemaImageUrl, __webpack_exports__GetImageApi as GetImageApi, __webpack_exports__GetInstanceConceptByCharacterType as GetInstanceConceptByCharacterType, __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__GetRelationNew as GetRelationNew, __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__LogEvent as LogEvent, __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__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__Prototype as Prototype, __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__SchemaQuery as SchemaQuery, __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__Selector as Selector, __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__TokenStorage as TokenStorage, __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__buildFetchConnection as buildFetchConnection, __webpack_exports__clearAllCaches as clearAllCaches, __webpack_exports__convertFromConceptToLConcept as convertFromConceptToLConcept, __webpack_exports__convertFromLConceptToConcept as convertFromLConceptToConcept, __webpack_exports__convertWidgetTreeToWidget as convertWidgetTreeToWidget, __webpack_exports__convertWidgetTreeToWidgetWithWrapper as convertWidgetTreeToWidgetWithWrapper, __webpack_exports__createFormFieldData as createFormFieldData, __webpack_exports__createPrototypeLocal as createPrototypeLocal, __webpack_exports__dispatchIdEvent as dispatchIdEvent, __webpack_exports__getFromDatabaseWithType as getFromDatabaseWithType, __webpack_exports__getObjectsFromIndexDb as getObjectsFromIndexDb, __webpack_exports__getR2PresignedUploadUrl as getR2PresignedUploadUrl, __webpack_exports__getUploadFileLimit as getUploadFileLimit, __webpack_exports__getUserDetails as getUserDetails, __webpack_exports__getUserDetailsWithRefresh as getUserDetailsWithRefresh, __webpack_exports__getWidgetBulkFromId as getWidgetBulkFromId, __webpack_exports__getWidgetFromId as getWidgetFromId, __webpack_exports__handleServiceWorkerException as handleServiceWorkerException, __webpack_exports__hasActivatedSW as hasActivatedSW, __webpack_exports__importLatestWidget as importLatestWidget, __webpack_exports__importRecentWidget as importRecentWidget, __webpack_exports__init as init, __webpack_exports__orderTheConnections as orderTheConnections, __webpack_exports__recursiveFetch as recursiveFetch, __webpack_exports__recursiveFetchNew as recursiveFetchNew, __webpack_exports__removeAllChildren as removeAllChildren, __webpack_exports__renderImportedWidget as renderImportedWidget, __webpack_exports__renderLatestWidget as renderLatestWidget, __webpack_exports__renderPage as renderPage, __webpack_exports__renderWidget as renderWidget, __webpack_exports__searchLinkMultipleListener as searchLinkMultipleListener, __webpack_exports__sendEmail as sendEmail, __webpack_exports__sendMessage as sendMessage, __webpack_exports__sendPersonalEmail as sendPersonalEmail, __webpack_exports__serviceWorker as serviceWorker, __webpack_exports__setHasActivatedSW as setHasActivatedSW, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__unwrapContainers as unwrapContainers, __webpack_exports__updateAccessToken as updateAccessToken, __webpack_exports__uploadAttachment as uploadAttachment, __webpack_exports__uploadFile as uploadFile, __webpack_exports__uploadImage as uploadImage, __webpack_exports__uploadImageV2 as uploadImageV2, __webpack_exports__uploadR2Storage as uploadR2Storage, __webpack_exports__uploadToR2PresignedUrl as uploadToR2PresignedUrl, __webpack_exports__uploadWithR2PresignedUrl as uploadWithR2PresignedUrl, __webpack_exports__validDocumentFormats as validDocumentFormats, __webpack_exports__validImageFormats as validImageFormats };
|
|
43916
44225
|
/******/
|
|
43917
44226
|
|
|
43918
44227
|
//# sourceMappingURL=main.bundle.js.map
|