mftsccs-browser 2.2.11-beta → 2.2.13-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.
Files changed (28) hide show
  1. package/dist/bundle.js +2 -0
  2. package/dist/bundle.js.LICENSE.txt +1 -0
  3. package/dist/main.bundle.js +1 -1
  4. package/dist/serviceWorker.bundle.js +1 -1
  5. package/dist/types/DataStructures/Transaction/Transaction.d.ts +30 -0
  6. package/dist/types/Middleware/ApplicationMonitor.d.ts +2 -0
  7. package/dist/types/Services/AccessControl/AccessControl.d.ts +58 -17
  8. package/dist/types/Services/AccessControl/AccessControlCacheService.d.ts +19 -0
  9. package/dist/types/Services/AccessControl/AccessControlService.d.ts +267 -0
  10. package/dist/types/Services/AccessControl/PermissionSet.d.ts +8 -0
  11. package/dist/types/Services/Delete/GetAllConnectionByType.d.ts +16 -0
  12. package/dist/types/Services/MakeTheLocalConcept.d.ts +0 -0
  13. package/dist/types/Services/MakeTheName.d.ts +2 -0
  14. package/dist/types/Services/auth/AuthService.d.ts +1 -0
  15. package/dist/types/Widgets/BuilderStatefulWidget.d.ts +2 -0
  16. package/dist/types/Widgets/CacheWidget.service.d.ts +17 -0
  17. package/dist/types/Widgets/RenderWidgetService.d.ts +2 -0
  18. package/dist/types/Widgets/WidgetTree.d.ts +1 -0
  19. package/dist/types/app.d.ts +1 -1
  20. package/package.json +1 -1
  21. package/dist/bundle-report.html +0 -39
  22. package/dist/main.bundle.js.map +0 -1
  23. package/dist/serviceWorker.bundle.js.map +0 -1
  24. package/dist/types/Api/GetConnections/GetConnectionsByTypesApi.d.ts +0 -3
  25. package/dist/types/DataStructures/ConnectionByType/GetConnectionsByType.d.ts +0 -4
  26. package/dist/types/Services/Delete/DeleteConnectionByIdLocal.d.ts +0 -1
  27. package/dist/types/Services/Search/DataFormat.d.ts +0 -23
  28. package/dist/types/Services/automated/auotmated-update.d.ts +0 -2
@@ -1,3 +0,0 @@
1
- import { Connection } from "../../app";
2
- import { GetConnectionsByTypes } from "../../DataStructures/ConnectionByType/GetConnectionsByType";
3
- export declare function GetConnectionsByApiTypes(connectionTypes: GetConnectionsByTypes): Promise<Connection[]>;
@@ -1,4 +0,0 @@
1
- export declare class GetConnectionsByTypes {
2
- ofTheConceptId: number;
3
- connectionTypes: string[];
4
- }
@@ -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;
@@ -1,2 +0,0 @@
1
- import { Concept } from "../../app";
2
- export declare function UpdateData(json: any, ofConcept: Concept, typeStrings?: string[]): Promise<void>;