mftsccs-browser 2.2.11-beta → 2.2.12-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 +1 -1
- package/dist/serviceWorker.bundle.js +1 -1
- package/dist/types/Middleware/ApplicationMonitor.d.ts +2 -0
- package/dist/types/Services/AccessControl/AccessControl.d.ts +58 -17
- package/dist/types/Widgets/BuilderStatefulWidget.d.ts +2 -0
- package/dist/types/Widgets/CacheWidget.service.d.ts +17 -0
- package/dist/types/Widgets/RenderWidgetService.d.ts +2 -0
- package/dist/types/Widgets/WidgetTree.d.ts +1 -0
- package/dist/types/app.d.ts +1 -1
- package/package.json +1 -1
- package/dist/bundle-report.html +0 -39
- package/dist/main.bundle.js.map +0 -1
- package/dist/serviceWorker.bundle.js.map +0 -1
- package/dist/types/Api/GetConnections/GetConnectionsByTypesApi.d.ts +0 -3
- package/dist/types/DataStructures/ConnectionByType/GetConnectionsByType.d.ts +0 -4
- package/dist/types/Services/Delete/DeleteConnectionByIdLocal.d.ts +0 -1
- package/dist/types/Services/Search/DataFormat.d.ts +0 -23
- package/dist/types/Services/automated/auotmated-update.d.ts +0 -2
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function DeleteConnectionByIdLocal(toDeleteIds: number[]): void;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { Connection } from "../../app";
|
|
2
|
-
/**
|
|
3
|
-
* ## Format Just-Id ##
|
|
4
|
-
* this function takes in connections and creates a single level objects so that all the data are added to its object/ array.
|
|
5
|
-
* This is then passed on further for stiching.
|
|
6
|
-
* @param connections
|
|
7
|
-
* @param compositionData
|
|
8
|
-
* @param reverse
|
|
9
|
-
* @returns
|
|
10
|
-
*/
|
|
11
|
-
export declare function FormatFunctionDataForClean(connections: Connection[], compositionData: any[], reverse?: number[]): Promise<any[]>;
|
|
12
|
-
/**
|
|
13
|
-
* ############ Format is Just Id and is used for list. ############
|
|
14
|
-
* This is helpful in building a format that has multiple mainCompositions i.e. in the context of the list
|
|
15
|
-
* The list format is helpful because you do not have to go over each individual query.
|
|
16
|
-
* @param connections the type connections that need (external connections) to be passed
|
|
17
|
-
* @param compositionData this is a dictionary type of format that has all the build compositions {id: { actual data}}
|
|
18
|
-
* @param mainComposition this is list of ids of the main composition that builds the tree
|
|
19
|
-
* @param reverse this is the list of connections ids that needs to go to the reverse direction (to---->from)
|
|
20
|
-
* @returns
|
|
21
|
-
*/
|
|
22
|
-
export declare function FormatFromConnectionsAlteredArrayExternalClean(connections: Connection[], compositionData: any[], mainComposition: number[], reverse: number[] | undefined, CountDictionary: any[]): Promise<any[]>;
|
|
23
|
-
export declare function AddCount(ofTheConceptId: number, CountDictionary: any, newData: any): void;
|